diff --git a/.env.example b/.env.example index 6a1065c5db..cc9a1d466e 100644 --- a/.env.example +++ b/.env.example @@ -1,7 +1,8 @@ -DATABASE_URL=postgres://postgres:password@postgres:5432/ +DATABASE_URL=postgres://postgres:password@postgres:5432/?sslmode=require DISCORD_API_TOKEN= MISSKEY_API_TOKEN= MISSKEY_DOMAIN= +MISSKEY_FEDERATION=false MODE= OPENAI_API_KEY= SLACK_API_TOKEN= diff --git a/.github/workflows/add-to-task-list.yml b/.github/workflows/add-to-task-list.yml index a37ca91e56..b93ccc5572 100644 --- a/.github/workflows/add-to-task-list.yml +++ b/.github/workflows/add-to-task-list.yml @@ -14,11 +14,11 @@ jobs: steps: - name: Generate a token id: generate_token - uses: actions/create-github-app-token@7bfa3a4717ef143a604ee0a99d859b8886a96d00 # v1.9.3 + uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0 with: app-id: ${{ secrets.PROJECT_AUTOMATION_APP_ID }} private-key: ${{ secrets.PROJECT_AUTOMATION_PRIVATE_KEY }} - - uses: dev-hato/actions-add-to-projects@4559e05fd53509ad4ae2bedff142dd8003ec59d3 # v0.0.65 + - uses: dev-hato/actions-add-to-projects@6b85916c6dcb4f2d40888c3ba373c783615538ee # v0.0.81 with: github-token: ${{steps.generate_token.outputs.token}} project-url: https://github.com/orgs/dev-hato/projects/1 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml deleted file mode 100644 index 4e83a402ec..0000000000 --- a/.github/workflows/codeql-analysis.yml +++ /dev/null @@ -1,80 +0,0 @@ -# For most projects, this workflow file will not need changing; you simply need -# to commit it to your repository. -# -# You may wish to alter this file to override the set of languages analyzed, -# or to provide custom queries or build logic. -# -# ******** NOTE ******** -# We have attempted to detect the languages in your repository. Please check -# the `language` matrix defined below to confirm you have the correct set of -# supported CodeQL languages. -# -name: "CodeQL" -on: - push: - branches: ["develop", "master"] - pull_request: - branches: ["develop", "master"] - schedule: - - cron: '19 8 * * 5' -jobs: - analyze: - name: Analyze - # Runner size impacts CodeQL analysis time. To learn more, please see: - # - https://gh.io/recommended-hardware-resources-for-running-codeql - # - https://gh.io/supported-runners-and-hardware-resources - # - https://gh.io/using-larger-runners - # Consider using larger runners for possible analysis time improvements. - runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} - timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }} - permissions: - actions: read - contents: read - security-events: write - strategy: - fail-fast: false - matrix: - language: ['javascript-typescript', 'python'] - # CodeQL supports [ 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' ] - # Use only 'java-kotlin' to analyze code written in Java, Kotlin or both - # Use only 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both - # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support - steps: - - name: Checkout repository - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 - - name: Set up Python - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 - if: matrix.language == 'python' - with: - python-version-file: .python-version - cache: pipenv - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@c7f9125735019aa87cfc361530512d50ea439c71 # v3.25.1 - with: - languages: ${{ matrix.language }} - # If you wish to specify custom queries, you can do so here or in a config file. - # By default, queries listed here will override any specified in a config file. - # Prefix the list here with "+" to use these queries and those in the config file. - # Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift). - # If this step fails, then you should remove it and run the build manually (see below) - - name: Autobuild - # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs - # queries: security-extended,security-and-quality - - uses: github/codeql-action/autobuild@c7f9125735019aa87cfc361530512d50ea439c71 # v3.25.1 - # - run: | - # echo "Run, Build Application using script" - # ./location_of_script_within_repo/buildscript.sh - - name: Perform CodeQL Analysis - # ℹ️ Command-line programs to run using the OS shell. - # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun - - # If the Autobuild fails above, remove it and uncomment the following three lines. - # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. - uses: github/codeql-action/analyze@c7f9125735019aa87cfc361530512d50ea439c71 # v3.25.1 - with: - category: "/language:${{matrix.language}}" -concurrency: - group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} - cancel-in-progress: true diff --git a/.github/workflows/deploy-hato-bot.yml b/.github/workflows/deploy-hato-bot.yml index 2e07198d1b..d21bd5701a 100644 --- a/.github/workflows/deploy-hato-bot.yml +++ b/.github/workflows/deploy-hato-bot.yml @@ -26,22 +26,22 @@ jobs: packages: write if: github.event_name == 'release' || (github.event_name == 'pull_request' && github.event.action != 'closed' && github.repository == github.event.pull_request.head.repo.full_name) steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: fetch-depth: 0 - name: Set .env run: cp .env.example .env - name: Login to GitHub Container Registry - uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0 + uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Set up QEMU - uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0 + uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0 - name: Set up Docker Buildx id: buildx - uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0 + uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1 - run: echo "TAG_NAME=${HEAD_REF//\//-}" >> "$GITHUB_ENV" env: HEAD_REF: ${{github.head_ref}} @@ -49,21 +49,21 @@ jobs: - run: echo 'TAG_NAME=${{ github.event.release.tag_name }}' >> "$GITHUB_ENV" if: ${{ github.event_name == 'release' }} - name: Build and push (build) - uses: docker/bake-action@017aa056d6bfc9797de5a5dd354a209dc07b490e # v4.3.0 + uses: docker/bake-action@e626c7390c9f95508a135a89e65ec698e061fb2a # v5.8.0 env: DOCKER_CONTENT_TRUST: 1 with: push: true files: build.docker-compose.yml - name: Build and push (main) - uses: docker/bake-action@017aa056d6bfc9797de5a5dd354a209dc07b490e # v4.3.0 + uses: docker/bake-action@e626c7390c9f95508a135a89e65ec698e061fb2a # v5.8.0 env: DOCKER_CONTENT_TRUST: 1 with: push: true files: docker-compose.yml - name: Build and push (dev) - uses: docker/bake-action@017aa056d6bfc9797de5a5dd354a209dc07b490e # v4.3.0 + uses: docker/bake-action@e626c7390c9f95508a135a89e65ec698e061fb2a # v5.8.0 env: DOCKER_CONTENT_TRUST: 1 with: @@ -72,7 +72,7 @@ jobs: - run: echo 'TAG_NAME=latest' >> "$GITHUB_ENV" if: ${{ github.event_name == 'release' }} - name: Build and push (build) (latest) - uses: docker/bake-action@017aa056d6bfc9797de5a5dd354a209dc07b490e # v4.3.0 + uses: docker/bake-action@e626c7390c9f95508a135a89e65ec698e061fb2a # v5.8.0 if: ${{ github.event_name == 'release' }} env: DOCKER_CONTENT_TRUST: 1 @@ -80,7 +80,7 @@ jobs: push: true files: build.docker-compose.yml - name: Build and push (main) (latest) - uses: docker/bake-action@017aa056d6bfc9797de5a5dd354a209dc07b490e # v4.3.0 + uses: docker/bake-action@e626c7390c9f95508a135a89e65ec698e061fb2a # v5.8.0 if: ${{ github.event_name == 'release' }} env: DOCKER_CONTENT_TRUST: 1 @@ -88,7 +88,7 @@ jobs: push: true files: docker-compose.yml - name: Build and push (dev) (latest) - uses: docker/bake-action@017aa056d6bfc9797de5a5dd354a209dc07b490e # v4.3.0 + uses: docker/bake-action@e626c7390c9f95508a135a89e65ec698e061fb2a # v5.8.0 if: ${{ github.event_name == 'release' }} env: DOCKER_CONTENT_TRUST: 1 @@ -111,7 +111,7 @@ jobs: needs: deploy_docker_image if: always() && (needs.deploy_docker_image.result == 'success' || (github.event_name == 'pull_request' && github.event.action == 'closed')) steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 if: github.event_name != 'pull_request' || github.event.action != 'closed' with: fetch-depth: 0 @@ -122,20 +122,75 @@ jobs: run: bash "${GITHUB_WORKSPACE}/scripts/deploy_hato_bot/update_version_python_version/get_python_version.sh" env: HEAD_REF: ${{github.head_ref || github.event.release.tag_name}} - - uses: dev-hato/actions-diff-pr-management@128afc4203b4e391e03868be91c987b2ddba7ea5 # v1.1.12 + - uses: dev-hato/actions-diff-pr-management@7cc8ab103917849f6995064afae9f4cbcfd009ae # v1.1.13 with: github-token: ${{secrets.GITHUB_TOKEN}} branch-name-prefix: fix-version-python-version pr-title-prefix: .python-versionを直してあげたよ! + pr-update-version: + runs-on: ubuntu-latest + needs: deploy_docker_image + if: always() && (needs.deploy_docker_image.result == 'success' || (github.event_name == 'pull_request' && github.event.action == 'closed')) + permissions: + contents: write + pull-requests: write + steps: + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 + if: github.event_name != 'pull_request' || github.event.action != 'closed' + with: + fetch-depth: 0 + ref: ${{ github.event.pull_request.head.sha }} + - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + if: github.event_name != 'pull_request' || github.event.action != 'closed' + with: + cache: npm + node-version-file: package.json + - name: Get npm version + id: get_npm_version + if: github.event_name != 'pull_request' || github.event.action != 'closed' + run: bash "${GITHUB_WORKSPACE}/scripts/deploy_hato_bot/pr_update_version/get_npm_version.sh" + env: + HEAD_REF: ${{github.head_ref || github.event.release.tag_name}} + - uses: dev-hato/actions-diff-pr-management@7cc8ab103917849f6995064afae9f4cbcfd009ae # v1.1.13 + with: + github-token: ${{secrets.GITHUB_TOKEN}} + branch-name-prefix: fix-version + pr-title-prefix: nodeをアップデートしてあげたよ! + # package.jsonに差分があれば、package.jsonからpackage-lock.jsonを作り出す + pr-check-npm: + runs-on: ubuntu-latest + needs: pr-update-version + steps: + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 + if: github.event_name != 'pull_request' || github.event.action != 'closed' + with: + # ここでsubmodule持ってくるとdetached headにcommitして死ぬ + # submodule: 'recursive' + fetch-depth: 0 + ref: ${{ github.event.pull_request.head.sha }} + - name: Set up Node.js + uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + if: github.event_name != 'pull_request' || github.event.action != 'closed' + with: + cache: npm + node-version-file: package.json + - name: Install dependencies + if: github.event_name != 'pull_request' || github.event.action != 'closed' + run: bash "${GITHUB_WORKSPACE}/scripts/deploy_hato_bot/npm_install.sh" + - uses: dev-hato/actions-diff-pr-management@7cc8ab103917849f6995064afae9f4cbcfd009ae # v1.1.13 + with: + github-token: ${{secrets.GITHUB_TOKEN}} + branch-name-prefix: npm + pr-title-prefix: package.jsonやpackage-lock.jsonが更新されたので直してあげたよ! update-dockle: runs-on: ubuntu-latest steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 if: github.event_name != 'pull_request' || github.event.action != 'closed' with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} - - uses: dev-hato/actions-update-dockle@c92b0e505cc4ed6dc1b4c2c6851193d02ce5fcba # v0.0.81 + - uses: dev-hato/actions-update-dockle@c826f84c72bdedef7eb84c90d4370405b984f0dc # v0.0.97 with: github-token: ${{secrets.GITHUB_TOKEN}} dockle: @@ -147,7 +202,7 @@ jobs: DOCKER_CONTENT_TRUST: 1 REPOSITORY: ${{github.repository}} steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 - run: bash "${GITHUB_WORKSPACE}/scripts/deploy_hato_bot/dockle/run_dockle.sh" env: HEAD_REF: ${{github.head_ref || github.event.release.tag_name}} @@ -156,12 +211,13 @@ jobs: if: always() needs: - update-version-python-version + - pr-check-npm - update-dockle - dockle steps: - - if: needs.update-dockle.result == 'success' && (github.event_name == 'push' || (github.event_name == 'pull_request' && github.repository != github.event.pull_request.head.repo.full_name) || (needs.update-version-python-version.result == 'success' && (github.event.action == 'closed' || needs.dockle.result == 'success'))) + - if: needs.update-dockle.result == 'success' && (github.event_name == 'push' || (github.event_name == 'pull_request' && github.repository != github.event.pull_request.head.repo.full_name) || (needs.update-version-python-version.result == 'success' && (github.event.action == 'closed' || (needs.pr-check-npm.result == 'success' && needs.dockle.result == 'success')))) run: exit 0 - - if: ${{ !(needs.update-dockle.result == 'success' && (github.event_name == 'push' || (github.event_name == 'pull_request' && github.repository != github.event.pull_request.head.repo.full_name) || (needs.update-version-python-version.result == 'success' && (github.event.action == 'closed' || needs.dockle.result == 'success')))) }} + - if: ${{ !(needs.update-dockle.result == 'success' && (github.event_name == 'push' || (github.event_name == 'pull_request' && github.repository != github.event.pull_request.head.repo.full_name) || (needs.update-version-python-version.result == 'success' && (github.event.action == 'closed' || (needs.pr-check-npm.result == 'success' && needs.dockle.result == 'success'))))) }} run: exit 1 concurrency: group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} diff --git a/.github/workflows/format-json-yml.yml b/.github/workflows/format-json-yml.yml index 790a78d2fe..d5a628a94c 100644 --- a/.github/workflows/format-json-yml.yml +++ b/.github/workflows/format-json-yml.yml @@ -20,17 +20,17 @@ jobs: steps: - name: Generate a token id: generate_token - uses: actions/create-github-app-token@7bfa3a4717ef143a604ee0a99d859b8886a96d00 # v1.9.3 + uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0 with: app-id: ${{ secrets.PROJECT_AUTOMATION_APP_ID }} private-key: ${{ secrets.PROJECT_AUTOMATION_PRIVATE_KEY }} - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 if: github.event_name != 'pull_request' || github.event.action != 'closed' with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} token: ${{steps.generate_token.outputs.token}} - - uses: dev-hato/actions-format-json-yml@8bc54d29568af8a0ef93d36db8fc559a8f76fd73 # v0.0.61 + - uses: dev-hato/actions-format-json-yml@bae3230b89fddb12957fc2a7b869ef833956ec78 # v0.0.72 with: github-token: ${{steps.generate_token.outputs.token}} concurrency: diff --git a/.github/workflows/github-actions-cache-cleaner.yml b/.github/workflows/github-actions-cache-cleaner.yml index ed3fdc9750..d6cf72f082 100644 --- a/.github/workflows/github-actions-cache-cleaner.yml +++ b/.github/workflows/github-actions-cache-cleaner.yml @@ -6,14 +6,14 @@ on: - develop - master schedule: - - cron: '0 21 * * *' # 06:00 JST + - cron: "0 21 * * *" # 06:00 JST workflow_dispatch: jobs: github-actions-cache-cleaner: runs-on: ubuntu-latest steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 - - uses: dev-hato/github-actions-cache-cleaner@8631f246ce2cc3142a954ada28c9c6671d4655ca # v0.0.37 + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 + - uses: dev-hato/github-actions-cache-cleaner@d37872269f7da1f1763264f96f3d571c39fb91e1 # v0.0.52 with: github-token: ${{secrets.GITHUB_TOKEN}} concurrency: diff --git a/.github/workflows/pr-check-npm.yml b/.github/workflows/pr-check-npm.yml deleted file mode 100644 index 30576f9fbc..0000000000 --- a/.github/workflows/pr-check-npm.yml +++ /dev/null @@ -1,78 +0,0 @@ ---- -name: pr-check-npm -on: - pull_request: - types: - - opened - - synchronize - - reopened - - closed - push: - branches: - - master - - develop -permissions: - contents: write - pull-requests: write -jobs: - pr-update-version: - runs-on: ubuntu-latest - permissions: - contents: write - pull-requests: write - steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 - if: github.event_name != 'pull_request' || github.event.action != 'closed' - with: - fetch-depth: 0 - ref: ${{ github.event.pull_request.head.sha }} - - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 - if: github.event_name != 'pull_request' || github.event.action != 'closed' - with: - cache: npm - - name: Get npm version - id: get_npm_version - if: github.event_name != 'pull_request' || github.event.action != 'closed' - run: bash "${GITHUB_WORKSPACE}/scripts/pr_check_npm/pr_update_version/get_npm_version.sh" - - uses: dev-hato/actions-diff-pr-management@128afc4203b4e391e03868be91c987b2ddba7ea5 # v1.1.12 - with: - github-token: ${{secrets.GITHUB_TOKEN}} - branch-name-prefix: fix-version - pr-title-prefix: nodeをアップデートしてあげたよ! - # package.jsonに差分があれば、package.jsonからpackage-lock.jsonを作り出す - pr-check-npm: - runs-on: ubuntu-latest - needs: pr-update-version - steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 - if: github.event_name != 'pull_request' || github.event.action != 'closed' - with: - # ここでsubmodule持ってくるとdetached headにcommitして死ぬ - # submodule: 'recursive' - fetch-depth: 0 - ref: ${{ github.event.pull_request.head.sha }} - - name: Set up Node.js - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 - if: github.event_name != 'pull_request' || github.event.action != 'closed' - with: - cache: npm - - name: Install dependencies - if: github.event_name != 'pull_request' || github.event.action != 'closed' - run: bash "${GITHUB_WORKSPACE}/scripts/pr_check_npm/npm_install.sh" - - uses: dev-hato/actions-diff-pr-management@128afc4203b4e391e03868be91c987b2ddba7ea5 # v1.1.12 - with: - github-token: ${{secrets.GITHUB_TOKEN}} - branch-name-prefix: npm - pr-title-prefix: package.jsonやpackage-lock.jsonが更新されたので直してあげたよ! - pr-check-npm-complete: - runs-on: ubuntu-latest - if: always() - needs: pr-check-npm - steps: - - if: needs.pr-check-npm.result == 'success' - run: exit 0 - - if: needs.pr-check-npm.result != 'success' - run: exit 1 -concurrency: - group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} - cancel-in-progress: true diff --git a/.github/workflows/pr-copy-ci-hato-bot.yml b/.github/workflows/pr-copy-ci-hato-bot.yml index 208dbc9deb..048696013b 100644 --- a/.github/workflows/pr-copy-ci-hato-bot.yml +++ b/.github/workflows/pr-copy-ci-hato-bot.yml @@ -9,10 +9,10 @@ jobs: pr-copy-ci: runs-on: ubuntu-latest steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 - name: Generate a token id: generate_token - uses: actions/create-github-app-token@7bfa3a4717ef143a604ee0a99d859b8886a96d00 # v1.9.3 + uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0 with: app-id: ${{ secrets.PROJECT_AUTOMATION_APP_ID }} private-key: ${{ secrets.PROJECT_AUTOMATION_PRIVATE_KEY }} diff --git a/.github/workflows/pr-format.yml b/.github/workflows/pr-format.yml index d8e73d5264..9c9d523149 100644 --- a/.github/workflows/pr-format.yml +++ b/.github/workflows/pr-format.yml @@ -19,7 +19,7 @@ jobs: pr-format: runs-on: ubuntu-latest steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 if: github.event_name != 'pull_request' || github.event.action != 'closed' with: # ここでsubmodule持ってくるとdetached headにcommitして死ぬ @@ -27,7 +27,7 @@ jobs: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} - name: Set up Python - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 + uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 id: setup_python if: github.event_name != 'pull_request' || github.event.action != 'closed' with: @@ -35,20 +35,16 @@ jobs: cache: pipenv - if: github.event_name != 'pull_request' || github.event.action != 'closed' run: sed -i -e "s/python_version = \".*\"/python_version = \"$(echo ${{ steps.setup_python.outputs.python-version }} | sed -e 's/\([0-9]*\.[0-9]*\).*/\1/g')\"/g" Pipfile - - name: Install pipenv - id: install_pipenv - if: github.event_name != 'pull_request' || github.event.action != 'closed' - run: bash "${GITHUB_WORKSPACE}/scripts/pr_format/pr_format/install_pipenv.sh" - name: Install dependencies if: github.event_name != 'pull_request' || github.event.action != 'closed' - run: bash "${GITHUB_WORKSPACE}/scripts/pr_format/pr_format/pipenv_install.sh" + run: bash "${GITHUB_WORKSPACE}/scripts/pipenv_install.sh" # formatする # --exit-codeをつけることで、autopep8内でエラーが起きれば1、差分があれば2のエラーステータスコードが返ってくる。正常時は0が返る - name: Format files id: format if: github.event_name != 'pull_request' || github.event.action != 'closed' run: bash "${GITHUB_WORKSPACE}/scripts/pr_format/pr_format/format.sh" - - uses: dev-hato/actions-diff-pr-management@128afc4203b4e391e03868be91c987b2ddba7ea5 # v1.1.12 + - uses: dev-hato/actions-diff-pr-management@7cc8ab103917849f6995064afae9f4cbcfd009ae # v1.1.13 if: success() || failure() with: github-token: ${{secrets.GITHUB_TOKEN}} diff --git a/.github/workflows/pr-merge-develop-hato-bot.yml b/.github/workflows/pr-merge-develop-hato-bot.yml index d8622c986d..9ca747088d 100644 --- a/.github/workflows/pr-merge-develop-hato-bot.yml +++ b/.github/workflows/pr-merge-develop-hato-bot.yml @@ -10,7 +10,7 @@ jobs: pr-master-to-develop: runs-on: ubuntu-latest steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: fetch-depth: 0 - name: Get PullRequests diff --git a/.github/workflows/pr-release-hato-bot.yml b/.github/workflows/pr-release-hato-bot.yml index 96138d3a9e..2cf385a32e 100644 --- a/.github/workflows/pr-release-hato-bot.yml +++ b/.github/workflows/pr-release-hato-bot.yml @@ -9,7 +9,7 @@ jobs: pr-release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: fetch-depth: 0 - name: Get diff diff --git a/.github/workflows/pr-test-hato-bot.yml b/.github/workflows/pr-test-hato-bot.yml index 025e2ce46f..48e4980a44 100644 --- a/.github/workflows/pr-test-hato-bot.yml +++ b/.github/workflows/pr-test-hato-bot.yml @@ -13,14 +13,16 @@ jobs: pr-test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: submodules: "recursive" - name: Set up Python - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 + uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 with: python-version-file: .python-version cache: pipenv + - name: Install dependencies + run: bash "${GITHUB_WORKSPACE}/scripts/pipenv_install.sh" - name: Test run: bash "${GITHUB_WORKSPACE}/scripts/pr_test_hato_bot/pr_test/test.sh" concurrency: diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index f8a69359ed..24eb8c5229 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -10,31 +10,37 @@ jobs: pr-super-lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: submodules: "recursive" fetch-depth: 0 - name: Set up Python - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 + uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 with: python-version-file: .python-version cache: pipenv - name: Install pipenv + run: bash "${GITHUB_WORKSPACE}/scripts/pipenv_install.sh" + - name: Set venv path env: DEST_PATH: "/home/runner/work/_temp/_github_workflow/.venv" - run: bash "${GITHUB_WORKSPACE}/scripts/pr_test/pr_super_lint/install_pipenv.sh" + run: bash "${GITHUB_WORKSPACE}/scripts/pr_test/pr_super_lint/set_venv_path.sh" - name: Set up Node.js - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 + uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 with: cache: npm + node-version-file: package.json - name: Install dependencies run: bash "${GITHUB_WORKSPACE}/scripts/pr_test/pr_super_lint/npm_ci.sh" - name: Lint files - uses: super-linter/super-linter/slim@92e2606383320f72e6129f8a50d8537cf9c84ed6 # v6.3.1 + uses: super-linter/super-linter/slim@b92721f792f381cedc002ecdbb9847a15ece5bb8 # v7.1.0 env: VALIDATE_ALL_CODEBASE: true VALIDATE_SQLFLUFF: false VALIDATE_CHECKOV: false # TODO: checkovが依存するopenaiのバージョンがアップデートされたら削除 + VALIDATE_JSCPD: false + JAVASCRIPT_DEFAULT_STYLE: prettier + VALIDATE_JAVASCRIPT_STANDARD: false LINTER_RULES_PATH: . FILTER_REGEX_EXCLUDE: ".*assets/.*.txt" GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -44,12 +50,12 @@ jobs: pr-dotenv-linter: runs-on: ubuntu-latest steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: submodules: "recursive" fetch-depth: 0 - name: Lint dotenv - uses: dotenv-linter/action-dotenv-linter@2358fce7165b02bf363eeabc5d2c2db3eb3aaadd # v2.20.0 + uses: dotenv-linter/action-dotenv-linter@9c9a09ba60235ae0b92b2e2ed8f4268ac76d075f # v2.23.0 concurrency: group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} cancel-in-progress: true diff --git a/.github/workflows/pr-update-gitleaks.yml b/.github/workflows/pr-update-gitleaks.yml index 10c67ed0da..b47ecbbf6c 100644 --- a/.github/workflows/pr-update-gitleaks.yml +++ b/.github/workflows/pr-update-gitleaks.yml @@ -17,19 +17,20 @@ jobs: pr-update-gitleaks: runs-on: ubuntu-latest steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 if: github.event_name != 'pull_request' || github.event.action != 'closed' with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} - - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 + - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 if: github.event_name != 'pull_request' || github.event.action != 'closed' with: cache: npm + node-version-file: package.json - name: Install packages if: github.event_name != 'pull_request' || github.event.action != 'closed' run: bash "${GITHUB_WORKSPACE}/scripts/npm_ci.sh" - - uses: dev-hato/actions-update-gitleaks@34f266de641d346891e8f15ddae1e0a774583e98 # v0.0.68 + - uses: dev-hato/actions-update-gitleaks@ad280e179bc19989512ff2bf22a91807f9b11451 # v0.0.77 with: github-token: ${{secrets.GITHUB_TOKEN}} concurrency: diff --git a/.github/workflows/update-readme-hato-bot.yml b/.github/workflows/update-readme-hato-bot.yml index 7a8dbbaa67..c604a97aed 100644 --- a/.github/workflows/update-readme-hato-bot.yml +++ b/.github/workflows/update-readme-hato-bot.yml @@ -14,14 +14,14 @@ jobs: update-readme: runs-on: ubuntu-latest steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 if: github.event_name != 'pull_request' || github.event.action != 'closed' with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} - run: perl -pe "s/{commands}/$(sed -e '2,$s/^/ /' commands.txt)/g" < README.template.md > README.md if: github.event_name != 'pull_request' || github.event.action != 'closed' - - uses: dev-hato/actions-diff-pr-management@128afc4203b4e391e03868be91c987b2ddba7ea5 # v1.1.12 + - uses: dev-hato/actions-diff-pr-management@7cc8ab103917849f6995064afae9f4cbcfd009ae # v1.1.13 with: github-token: ${{secrets.GITHUB_TOKEN}} branch-name-prefix: update-readme diff --git a/.gitignore b/.gitignore index 25d5a65dc4..67adb4a167 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ __pycache__/ .vscode/ .mypy_cache/ node_modules/ +fly.toml diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e00d2083b7..93d7490b9f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ --- repos: - repo: https://github.com/zricethezav/gitleaks - rev: v8.18.2 + rev: v8.18.4 hooks: - id: gitleaks diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000000..8f4dc5cfcf --- /dev/null +++ b/.prettierignore @@ -0,0 +1 @@ +Pipfile.lock diff --git a/.python-version b/.python-version index 871f80a34b..35f236d6e5 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.12.3 +3.12.6 diff --git a/.textlintrc b/.textlintrc index 6112fb76d0..2be2af714e 100644 --- a/.textlintrc +++ b/.textlintrc @@ -21,7 +21,8 @@ "no-dead-link": { "ignore": [ "https://github.com/dev-hato/hato-bot/releases/latest", - "https://platform.openai.com/api-keys" + "https://platform.openai.com/api-keys", + "https://fly.io/dashboard/" ] }, "no-mixed-zenkaku-and-hankaku-alphabet": true, diff --git a/CHANGELOG.md b/CHANGELOG.md index 526078c5c3..e9841f36b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,320 +1,333 @@ + # Changelog -* このプロジェクトに対するすべての重要な変更は、このファイルに文書化されます。 -* バージョンごとに変更点を記載します。変更の種類については次のとおりです。 - * `Added` 新機能について。 - * `Changed` 既存機能の変更について。 - * `Removed` 削除された機能について。 - * `Fixed` バグ修正について。 +- このプロジェクトに対するすべての重要な変更は、このファイルに文書化されます。 +- バージョンごとに変更点を記載します。変更の種類については次のとおりです。 + - `Added` 新機能について。 + - `Changed` 既存機能の変更について。 + - `Removed` 削除された機能について。 + - `Fixed` バグ修正について。 + +## v3.0.5 + +### Added + +- Misskeyモード時に、連合先からのメンションに応答するかを選べるようになりました。(#4267) +- fly.ioで動かすための設定を追加しました。(#3942) + +### Changed + +- Misskeyモード時に、CW付きのメンションにはCW付きで返すようになりました。(#4031) +- 温度表記を、摂氏〜度に変更しました。(#4101) ## v3.0.4 ### Note -* Misskeyのトークン発行時に、リアクションを操作するの権限が必要になりました。(#3834) +- Misskeyのトークン発行時に、リアクションを操作するの権限が必要になりました。(#3834) ### Added -* Misskeyでコマンドを受理した際に、リアクションを付与するようになりました。(#3834) +- Misskeyでコマンドを受理した際に、リアクションを付与するようになりました。(#3834) ### Changed -* Misskey投稿時に、フォロワーやダイレクトのリプライに対して、同じ投稿範囲で返すようになりました。(#3837) +- Misskey投稿時に、フォロワーやダイレクトのリプライに対して、同じ投稿範囲で返すようになりました。(#3837) ### Fixed -* ログが出力されない問題を修正しました。(#3838) -* Misskeyでtext listの結果がコードブロックとして表示されない問題を修正しました。(#3833) +- ログが出力されない問題を修正しました。(#3838) +- Misskeyでtext listの結果がコードブロックとして表示されない問題を修正しました。(#3833) ## v3.0.3 ### Changed -* Misskey投稿時の投稿範囲はホームになりました。(#3771) +- Misskey投稿時の投稿範囲はホームになりました。(#3771) ## v3.0.2 ### Note -* Misskey v2023.12.2以降では、tokenにアカウントの情報を見るの権限が必要になりました。(#3529) +- Misskey v2023.12.2以降では、tokenにアカウントの情報を見るの権限が必要になりました。(#3529) ### Added -* pingしたらpongを返すようになりました。(#2768) +- pingしたらpongを返すようになりました。(#2768) ### Changed -* slack sdkを置き換えました。(#2668, #2697) +- slack sdkを置き換えました。(#2668, #2697) ### Fixed -* Misskeyと切断されるとエラーが出て復帰しない問題を修正しました。(#2764) -* MisskeyではUTF-8絵文字は変換済みにして送信するように修正しました。(#2489) -* Misskeyでメンションに反応しない問題を修正しました。(#2763) +- Misskeyと切断されるとエラーが出て復帰しない問題を修正しました。(#2764) +- MisskeyではUTF-8絵文字は変換済みにして送信するように修正しました。(#2489) +- Misskeyでメンションに反応しない問題を修正しました。(#2763) ## v3.0.1 - 2023-04-06 ### Fixed -* helpコマンドが動かない問題を修正しました。(#2429) +- helpコマンドが動かない問題を修正しました。(#2429) ## v3.0.0 - 2023-03-09 ### Added -* Discordに対応しました。(#2372) -* Misskeyに対応しました。(#2386) -* ChatGPTで文章を作成する機能を追加しました。(#2364) -* openAIのImage generationで画像生成する機能を追加しました。(#2383) +- Discordに対応しました。(#2372) +- Misskeyに対応しました。(#2386) +- ChatGPTで文章を作成する機能を追加しました。(#2364) +- openAIのImage generationで画像生成する機能を追加しました。(#2383) ## v2.4.4 - 2022-11-30 ### Fixed -* textlintコマンドが動作しない問題を再修正しました。(#1970) +- textlintコマンドが動作しない問題を再修正しました。(#1970) ## v2.4.3 - 2022-11-29 ### Fixed -* textlintコマンドが動作しない問題を修正しました。(#1970) +- textlintコマンドが動作しない問題を修正しました。(#1970) ## v2.4.2 - 2022-11-28 ### Added -* textlintコマンドを追加しました。 (#1919) +- textlintコマンドを追加しました。 (#1919) ### Changed -* ameshの描画エンジンを新しくしました。(#997) +- ameshの描画エンジンを新しくしました。(#997) ### Removed -* Herokuのサポートを終了しました。(#1454, #1719) +- Herokuのサポートを終了しました。(#1454, #1719) ## v2.4.1 - 2022-07-15 ### Fixed -* ameshが動作しない問題を修正しました。(#1229) +- ameshが動作しない問題を修正しました。(#1229) ## v2.4.0 - 2022-04-06 ### Added -* 東京電力管内の電力使用率を取得する機能を追加しました。(#902) -* botの開発時にlinterが使用可能になりました。(#875) +- 東京電力管内の電力使用率を取得する機能を追加しました。(#902) +- botの開発時にlinterが使用可能になりました。(#875) ### Fixed -* おみくじ機能の小吉の絵文字が表示されない問題を修正しました。(#893) +- おみくじ機能の小吉の絵文字が表示されない問題を修正しました。(#893) ## v2.3.0 - 2022-03-09 ### Added -* おみくじ機能を追加しました。(#253) +- おみくじ機能を追加しました。(#253) ## v2.2.3 - 2022-02-23 ### Changed -* Python 3.9.10をサポート対象に変更しました。(#807) -* 使用するdockerイメージをalpineからbullseyeへ変更しました。(#832) +- Python 3.9.10をサポート対象に変更しました。(#807) +- 使用するdockerイメージをalpineからbullseyeへ変更しました。(#832) ## v2.2.2 - 2022-02-11 ### Changed -* 死活監視のためのページにバージョン情報を追加しました。(#804) +- 死活監視のためのページにバージョン情報を追加しました。(#804) ### Fixed -* docker compose時の `TAG_NAME` を指定する際のコマンドを修正しました。(#802) +- docker compose時の `TAG_NAME` を指定する際のコマンドを修正しました。(#802) ## v2.2.1 - 2022-02-11 ### Fixed -* docker compose時に `TAG_NAME` を指定する記述を追加しました。(#788) +- docker compose時に `TAG_NAME` を指定する記述を追加しました。(#788) ## v2.2.0 - 2022-02-10 ### Added -* `amesh [郵便番号]` で郵便番号の雨雲情報を取得できる様になりました。 -* 死活監視のため200レスポンスを返却するページを追加しました。(#782) -* Docker imageをGitHub Packagesへ登録しました。(#784) +- `amesh [郵便番号]` で郵便番号の雨雲情報を取得できる様になりました。 +- 死活監視のため200レスポンスを返却するページを追加しました。(#782) +- Docker imageをGitHub Packagesへ登録しました。(#784) ### Changed -* OS再起動時にdockerコンテナも自動起動するように変更しました。(#734, #785) +- OS再起動時にdockerコンテナも自動起動するように変更しました。(#734, #785) ### Fixed -* コードやURLを含むコマンドも平文として解釈するように修正しました。(#778) +- コードやURLを含むコマンドも平文として解釈するように修正しました。(#778) ## v2.1.1 - 2021-06-17 ### Fixed -* リクエスト再送による重複投稿をなくしました。(#620) +- リクエスト再送による重複投稿をなくしました。(#620) ## v2.1.0 - 2021-06-13 ### Changed -* Python3.9でも動作するようにしました。(3.7以前については動作確認を実施しません) +- Python3.9でも動作するようにしました。(3.7以前については動作確認を実施しません) ### Fixed -* `amesh` が機能しない問題を修正しました。 -* バージョン情報でコミットハッシュがCommit Noneとなってしまう問題を修正しました。 +- `amesh` が機能しない問題を修正しました。 +- バージョン情報でコミットハッシュがCommit Noneとなってしまう問題を修正しました。 ## v2.0.2 - 2020-11-03 ### Added -* 標高を取得できる機能を追加しました。(#358) -* 「にゃーん」と呟くと「よしよし」と慰める機能を追加しました。(#428) +- 標高を取得できる機能を追加しました。(#358) +- 「にゃーん」と呟くと「よしよし」と慰める機能を追加しました。(#428) ### Fixed -* `docker-compose up` で鳩botが起動しない問題を修正しました。 +- `docker-compose up` で鳩botが起動しない問題を修正しました。 ### Changed -* postgresqlのバージョンが変更になりました。setup/pgsql-dataを使用している場合、データを移行する必要があります。 -* ライブラリのバージョンアップ対応しました。 -* バージョン情報でコミットハッシュが表示されるようになりました。(#287) +- postgresqlのバージョンが変更になりました。setup/pgsql-dataを使用している場合、データを移行する必要があります。 +- ライブラリのバージョンアップ対応しました。 +- バージョン情報でコミットハッシュが表示されるようになりました。(#287) ## v2.0.1 - 2020-08-23 ### Fixed -* `docker-compose up` で鳩botが起動しない問題を修正しました。(#281) -* `post_command.py` が動作しない問題を修正しました。(#270) -* 初回起動時に不要なテーブルをデータベースに作成する問題を修正しました。(#231) +- `docker-compose up` で鳩botが起動しない問題を修正しました。(#281) +- `post_command.py` が動作しない問題を修正しました。(#270) +- 初回起動時に不要なテーブルをデータベースに作成する問題を修正しました。(#231) ## v2.0.0 - 2020-08-15 ### Added -* 新しいSlack API(Event API)に対応しました。(この対応により、Slack API Tokenの取得方法が変更になります) (#127) -* `amesh [地名]` で地名の雨雲情報を取得できる様になりました。(#97) +- 新しいSlack API(Event API)に対応しました。(この対応により、Slack API Tokenの取得方法が変更になります) (#127) +- `amesh [地名]` で地名の雨雲情報を取得できる様になりました。(#97) ### Changed -* `text add` 時の文字列にはプレーンテキストのみ指定可能となりました。 -* Botの起動時に返答が複数回返ってくることがあります。(#146) +- `text add` 時の文字列にはプレーンテキストのみ指定可能となりました。 +- Botの起動時に返答が複数回返ってくることがあります。(#146) ### Removed -* 天気コマンドは利用していたAPIサービスが終了したため廃止しました。(#189) -* らぼったあ機能は廃止しました。(#191) +- 天気コマンドは利用していたAPIサービスが終了したため廃止しました。(#189) +- らぼったあ機能は廃止しました。(#191) ## v1.1.0 - 2020-07-18 ### Added -* hato-botがDockerでも動くようになりました。(#100) +- hato-botがDockerでも動くようになりました。(#100) ### Changed -* Python3.7でも動作するように修正しました。(#108) -* DBライブラリをpg8000からpsycopg2へ変更しました。(#112) +- Python3.7でも動作するように修正しました。(#108) +- DBライブラリをpg8000からpsycopg2へ変更しました。(#112) ## v1.0.4 - 2020-06-06 ### Changed -* DockerのpostgresqlもSSLに対応しました。(#66) -* Readmeに機能説明とTokenを発行する手順ページのリンクを追加しました。(#78) -* 天気コマンドを入力したときに全角スペースでも反応するように修正しました。(#80) +- DockerのpostgresqlもSSLに対応しました。(#66) +- Readmeに機能説明とTokenを発行する手順ページのリンクを追加しました。(#78) +- 天気コマンドを入力したときに全角スペースでも反応するように修正しました。(#80) ### Removed -* `amesh kyoto` コマンドは削除されました。(#83) +- `amesh kyoto` コマンドは削除されました。(#83) ## v1.0.3 - 2020-05-23 ### Added -* Botのアイコン画像を同梱しました。(#46) -* `text random` でパワーワードをランダム表示できるようになりました。(#50) +- Botのアイコン画像を同梱しました。(#46) +- `text random` でパワーワードをランダム表示できるようになりました。(#50) ### Fixed -* 不要なライブラリの削除やリファクタリングを行いました。 -* `help` に記載していなかったコマンドを記載しました。 +- 不要なライブラリの削除やリファクタリングを行いました。 +- `help` に記載していなかったコマンドを記載しました。 ## v1.0.2 - 2020-05-11 ### Fixed -* Deploy to HerokuしたときにDBが作成されない問題を修正しました。 +- Deploy to HerokuしたときにDBが作成されない問題を修正しました。 ## v1.0.1 - 2020-05-11 ### Changed -* `><` 実行時の文字列に「鳩」を含めると「鳩は唐揚げ」と返すようにしました。 +- `><` 実行時の文字列に「鳩」を含めると「鳩は唐揚げ」と返すようにしました。 ## v1.0.0 - 2020-05-09 ### Fixed -* コピー&ペーストしたコマンドで反応しなかった問題を修正しました。 -* eqコマンドで最大震度が取得できなかった場合にエラーとなる問題を修正しました。 +- コピー&ペーストしたコマンドで反応しなかった問題を修正しました。 +- eqコマンドで最大震度が取得できなかった場合にエラーとなる問題を修正しました。 ## v0.4.0 - 2020-05-09 ### Changed -* amesh時にYahoo APIを使うように変更しました。 +- amesh時にYahoo APIを使うように変更しました。 ## v0.3.2 - 2020-02-14 ### Fixed -* `text list` したときに登録されている単語がない場合、その旨を返すように修正しました。 +- `text list` したときに登録されている単語がない場合、その旨を返すように修正しました。 ## v0.3.1 - 2020-01-26 ### Added -* 地震情報を表示できるようになりました。 +- 地震情報を表示できるようになりました。 ## v0.3.0 - 2020-01-26 ### Added -* パワーワードを覚えられるようになりました。 -* 出退勤時間を計算する機能を追加しました。(簡易版labotter) +- パワーワードを覚えられるようになりました。 +- 出退勤時間を計算する機能を追加しました。(簡易版labotter) ### Changed -* 動作環境にPostgreSQLが必須となりました。 -* バージョン管理システムにpipenvを使うようになりました。 +- 動作環境にPostgreSQLが必須となりました。 +- バージョン管理システムにpipenvを使うようになりました。 ### Fixed -* Deploy to Herokuボタンを押下し、60秒経つとbotが落ちる問題を修正しました。 +- Deploy to Herokuボタンを押下し、60秒経つとbotが落ちる問題を修正しました。 ## v0.2.0 - 2020-01-18 ### Added -* READMEにDeploy to Herokuボタンを追加しました。 -* Changelogを追加しました。 -* `.env` ファイルで環境変数を設定できるようにしました。 +- READMEにDeploy to Herokuボタンを追加しました。 +- Changelogを追加しました。 +- `.env` ファイルで環境変数を設定できるようにしました。 ### Changed -* amesh時にbotがメッセージを返すタイミングを早くしました。(体感時間を短縮するため) +- amesh時にbotがメッセージを返すタイミングを早くしました。(体感時間を短縮するため) ### Fixed -* amesh時に使用する画像が削除されない問題を修正しました。 +- amesh時に使用する画像が削除されない問題を修正しました。 diff --git a/Dockerfile b/Dockerfile index 6b5568eea9..d5c9d4320a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,13 @@ +FROM python:3.12.6-slim AS base + # バージョン情報に表示する commit hash を埋め込む -FROM debian:bullseye-slim AS commit-hash +FROM base AS commit-hash COPY .git slackbot_settings.py / RUN apt-get update \ && apt-get install -y --no-install-recommends git \ && sed -i "s/^\(GIT_COMMIT_HASH = \).*\$/\1'$(git rev-parse HEAD)'/" slackbot_settings.py -FROM python:3.12.3-slim-bullseye +FROM base SHELL ["/bin/bash", "-o", "pipefail", "-c"] @@ -14,7 +16,10 @@ ENV ENV="${ENV}" WORKDIR /usr/src/app +COPY .npmrc .npmrc +COPY requirements.txt requirements.txt COPY Pipfile Pipfile +COPY Pipfile.lock Pipfile.lock COPY package.json package.json COPY package-lock.json package-lock.json @@ -28,14 +33,14 @@ RUN apt-get update && \ apt-get install -y --no-install-recommends git gcc libc6-dev libopencv-dev libgl1-mesa-dev libglib2.0-0 curl gnupg && \ mkdir -p /etc/apt/keyrings && \ curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \ - echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_18.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && \ + echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && \ apt-get update && \ apt-get install -y --no-install-recommends nodejs && \ - pip install pipenv==2023.12.1 --no-cache-dir && \ + pip install -r requirements.txt --no-cache-dir && \ if [ "${ENV}" = 'dev' ]; then \ - pipenv install --system --skip-lock --dev; \ + pipenv install --system --dev; \ else \ - pipenv install --system --skip-lock; \ + pipenv install --system; \ fi && \ npm install && \ pip uninstall -y pipenv virtualenv && \ @@ -49,6 +54,9 @@ RUN apt-get update && \ chown -R nonroot /usr/src/app USER nonroot +# Matplotlib用のフォントキャッシュ生成 +RUN python -c 'import matplotlib.pyplot' + COPY *.py ./ COPY library library COPY plugins plugins diff --git a/Pipfile b/Pipfile index 0572436581..e539467cb6 100644 --- a/Pipfile +++ b/Pipfile @@ -7,40 +7,41 @@ verify_ssl = true python_version = "3.12" [dev-packages] -autopep8 = "==2.1.0" +autopep8 = "==2.3.1" requests-mock = "==1.12.1" -pylint = "==3.1.0" -sqlfluff = "==3.0.5" -mypy = "==1.9.0" -flake8 = "==7.0.0" -black = "==24.4.0" +pylint = "==3.3.1" +sqlfluff = "==3.2.0" +mypy = "==1.11.2" +flake8 = "==7.1.1" +black = "==24.8.0" isort = "==5.13.2" -pre-commit = "==3.7.0" -importlib-metadata = "==7.1.0" +pre-commit = "==3.8.0" +importlib-metadata = "==8.5.0" toml = "==0.10.2" types-toml = "==0.10.8.20240310" +pyink = "==24.8.0" [packages] python-dotenv = "==1.0.1" -requests = "==2.31.0" +requests = "==2.32.3" Pillow = ">=7.1.2" -opencv-python = "==4.9.0.80" -pyperclip = "==1.8.2" +opencv-python = "==4.10.0.84" +pyperclip = "==1.9.0" click = "==8.1.7" psycopg2-binary = "==2.9.9" -slack-bolt = "==1.18.1" -slack-sdk = "==3.27.1" +slack-bolt = "==1.20.1" +slack-sdk = "==3.33.1" gitpython = "==3.1.43" -pandas = "==2.2.2" -matplotlib = "==3.8.4" -openai = "==1.23.2" -"discord.py" = "==2.3.2" +pandas = "==2.2.3" +matplotlib = "==3.9.2" +openai = "==1.50.2" +"discord.py" = "==2.4.0" "misskey.py" = "==4.1.0" -websockets = "==12.0" +websockets = "==13.1" flask = "==3.0.3" markupsafe = "==2.1.5" -numpy = "==1.26.4" -emoji = "==2.11.1" +numpy = "==2.1.1" +emoji = "==2.13.2" [packages.sudden-death] git = "https://github.com/dev-hato/sudden-death" diff --git a/Pipfile.lock b/Pipfile.lock index 7cb4b89a42..b5d176edbc 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "3368dc068c0be8bb8f29bb223dcdc773003e3e5d62bc8103b8bc3238ee963a05" + "sha256": "9078762a975b73d0c1f8da10b77c0a1337c81bf5e83a2490907dc680fa1940c0" }, "pipfile-spec": 6, "requires": { @@ -16,87 +16,110 @@ ] }, "default": { + "aiohappyeyeballs": { + "hashes": [ + "sha256:4ca893e6c5c1f5bf3888b04cb5a3bee24995398efef6e0b9f747b5e89d84fd74", + "sha256:8522691d9a154ba1145b157d6d5c15e5c692527ce6a53c5e5f9876977f6dab2f" + ], + "markers": "python_version >= '3.8'", + "version": "==2.4.2" + }, "aiohttp": { "hashes": [ - "sha256:0605cc2c0088fcaae79f01c913a38611ad09ba68ff482402d3410bf59039bfb8", - "sha256:0a158704edf0abcac8ac371fbb54044f3270bdbc93e254a82b6c82be1ef08f3c", - "sha256:0cbf56238f4bbf49dab8c2dc2e6b1b68502b1e88d335bea59b3f5b9f4c001475", - "sha256:1732102949ff6087589408d76cd6dea656b93c896b011ecafff418c9661dc4ed", - "sha256:18f634d540dd099c262e9f887c8bbacc959847cfe5da7a0e2e1cf3f14dbf2daf", - "sha256:239f975589a944eeb1bad26b8b140a59a3a320067fb3cd10b75c3092405a1372", - "sha256:2faa61a904b83142747fc6a6d7ad8fccff898c849123030f8e75d5d967fd4a81", - "sha256:320e8618eda64e19d11bdb3bd04ccc0a816c17eaecb7e4945d01deee2a22f95f", - "sha256:38d80498e2e169bc61418ff36170e0aad0cd268da8b38a17c4cf29d254a8b3f1", - "sha256:3916c8692dbd9d55c523374a3b8213e628424d19116ac4308e434dbf6d95bbdd", - "sha256:393c7aba2b55559ef7ab791c94b44f7482a07bf7640d17b341b79081f5e5cd1a", - "sha256:3b7b30258348082826d274504fbc7c849959f1989d86c29bc355107accec6cfb", - "sha256:3fcb4046d2904378e3aeea1df51f697b0467f2aac55d232c87ba162709478c46", - "sha256:4109adee842b90671f1b689901b948f347325045c15f46b39797ae1bf17019de", - "sha256:4558e5012ee03d2638c681e156461d37b7a113fe13970d438d95d10173d25f78", - "sha256:45731330e754f5811c314901cebdf19dd776a44b31927fa4b4dbecab9e457b0c", - "sha256:4715a9b778f4293b9f8ae7a0a7cef9829f02ff8d6277a39d7f40565c737d3771", - "sha256:471f0ef53ccedec9995287f02caf0c068732f026455f07db3f01a46e49d76bbb", - "sha256:4d3ebb9e1316ec74277d19c5f482f98cc65a73ccd5430540d6d11682cd857430", - "sha256:4ff550491f5492ab5ed3533e76b8567f4b37bd2995e780a1f46bca2024223233", - "sha256:52c27110f3862a1afbcb2af4281fc9fdc40327fa286c4625dfee247c3ba90156", - "sha256:55b39c8684a46e56ef8c8d24faf02de4a2b2ac60d26cee93bc595651ff545de9", - "sha256:5a7ee16aab26e76add4afc45e8f8206c95d1d75540f1039b84a03c3b3800dd59", - "sha256:5ca51eadbd67045396bc92a4345d1790b7301c14d1848feaac1d6a6c9289e888", - "sha256:5d6b3f1fabe465e819aed2c421a6743d8debbde79b6a8600739300630a01bf2c", - "sha256:60cdbd56f4cad9f69c35eaac0fbbdf1f77b0ff9456cebd4902f3dd1cf096464c", - "sha256:6380c039ec52866c06d69b5c7aad5478b24ed11696f0e72f6b807cfb261453da", - "sha256:639d0042b7670222f33b0028de6b4e2fad6451462ce7df2af8aee37dcac55424", - "sha256:66331d00fb28dc90aa606d9a54304af76b335ae204d1836f65797d6fe27f1ca2", - "sha256:67c3119f5ddc7261d47163ed86d760ddf0e625cd6246b4ed852e82159617b5fb", - "sha256:694d828b5c41255e54bc2dddb51a9f5150b4eefa9886e38b52605a05d96566e8", - "sha256:6ae79c1bc12c34082d92bf9422764f799aee4746fd7a392db46b7fd357d4a17a", - "sha256:702e2c7c187c1a498a4e2b03155d52658fdd6fda882d3d7fbb891a5cf108bb10", - "sha256:714d4e5231fed4ba2762ed489b4aec07b2b9953cf4ee31e9871caac895a839c0", - "sha256:7b179eea70833c8dee51ec42f3b4097bd6370892fa93f510f76762105568cf09", - "sha256:7f64cbd44443e80094309875d4f9c71d0401e966d191c3d469cde4642bc2e031", - "sha256:82a6a97d9771cb48ae16979c3a3a9a18b600a8505b1115cfe354dfb2054468b4", - "sha256:84dabd95154f43a2ea80deffec9cb44d2e301e38a0c9d331cc4aa0166fe28ae3", - "sha256:8676e8fd73141ded15ea586de0b7cda1542960a7b9ad89b2b06428e97125d4fa", - "sha256:88e311d98cc0bf45b62fc46c66753a83445f5ab20038bcc1b8a1cc05666f428a", - "sha256:8b4f72fbb66279624bfe83fd5eb6aea0022dad8eec62b71e7bf63ee1caadeafe", - "sha256:8c64a6dc3fe5db7b1b4d2b5cb84c4f677768bdc340611eca673afb7cf416ef5a", - "sha256:8cf142aa6c1a751fcb364158fd710b8a9be874b81889c2bd13aa8893197455e2", - "sha256:8d1964eb7617907c792ca00b341b5ec3e01ae8c280825deadbbd678447b127e1", - "sha256:93e22add827447d2e26d67c9ac0161756007f152fdc5210277d00a85f6c92323", - "sha256:9c69e77370cce2d6df5d12b4e12bdcca60c47ba13d1cbbc8645dd005a20b738b", - "sha256:9dbc053ac75ccc63dc3a3cc547b98c7258ec35a215a92bd9f983e0aac95d3d5b", - "sha256:9e3a1ae66e3d0c17cf65c08968a5ee3180c5a95920ec2731f53343fac9bad106", - "sha256:a6ea1a5b409a85477fd8e5ee6ad8f0e40bf2844c270955e09360418cfd09abac", - "sha256:a81b1143d42b66ffc40a441379387076243ef7b51019204fd3ec36b9f69e77d6", - "sha256:ad7f2919d7dac062f24d6f5fe95d401597fbb015a25771f85e692d043c9d7832", - "sha256:afc52b8d969eff14e069a710057d15ab9ac17cd4b6753042c407dcea0e40bf75", - "sha256:b3df71da99c98534be076196791adca8819761f0bf6e08e07fd7da25127150d6", - "sha256:c088c4d70d21f8ca5c0b8b5403fe84a7bc8e024161febdd4ef04575ef35d474d", - "sha256:c26959ca7b75ff768e2776d8055bf9582a6267e24556bb7f7bd29e677932be72", - "sha256:c413016880e03e69d166efb5a1a95d40f83d5a3a648d16486592c49ffb76d0db", - "sha256:c6021d296318cb6f9414b48e6a439a7f5d1f665464da507e8ff640848ee2a58a", - "sha256:c671dc117c2c21a1ca10c116cfcd6e3e44da7fcde37bf83b2be485ab377b25da", - "sha256:c7a4b7a6cf5b6eb11e109a9755fd4fda7d57395f8c575e166d363b9fc3ec4678", - "sha256:c8a02fbeca6f63cb1f0475c799679057fc9268b77075ab7cf3f1c600e81dd46b", - "sha256:cd2adf5c87ff6d8b277814a28a535b59e20bfea40a101db6b3bdca7e9926bc24", - "sha256:d1469f228cd9ffddd396d9948b8c9cd8022b6d1bf1e40c6f25b0fb90b4f893ed", - "sha256:d153f652a687a8e95ad367a86a61e8d53d528b0530ef382ec5aaf533140ed00f", - "sha256:d5ab8e1f6bee051a4bf6195e38a5c13e5e161cb7bad83d8854524798bd9fcd6e", - "sha256:da00da442a0e31f1c69d26d224e1efd3a1ca5bcbf210978a2ca7426dfcae9f58", - "sha256:da22dab31d7180f8c3ac7c7635f3bcd53808f374f6aa333fe0b0b9e14b01f91a", - "sha256:e0ae53e33ee7476dd3d1132f932eeb39bf6125083820049d06edcdca4381f342", - "sha256:e7a6a8354f1b62e15d48e04350f13e726fa08b62c3d7b8401c0a1314f02e3558", - "sha256:e9a3d838441bebcf5cf442700e3963f58b5c33f015341f9ea86dcd7d503c07e2", - "sha256:edea7d15772ceeb29db4aff55e482d4bcfb6ae160ce144f2682de02f6d693551", - "sha256:f22eb3a6c1080d862befa0a89c380b4dafce29dc6cd56083f630073d102eb595", - "sha256:f26383adb94da5e7fb388d441bf09c61e5e35f455a3217bfd790c6b6bc64b2ee", - "sha256:f3c2890ca8c59ee683fd09adf32321a40fe1cf164e3387799efb2acebf090c11", - "sha256:f64fd07515dad67f24b6ea4a66ae2876c01031de91c93075b8093f07c0a2d93d", - "sha256:fcde4c397f673fdec23e6b05ebf8d4751314fa7c24f93334bf1f1364c1c69ac7", - "sha256:ff84aeb864e0fac81f676be9f4685f0527b660f1efdc40dcede3c251ef1e867f" + "sha256:0245e1a71f3503b01d2c304529779a70277ccc0fe9847b48d437363de6e4336e", + "sha256:0246659d9a54a23a83f11842bdd58f335a1370aa66b376eeae16b7cf29009dde", + "sha256:02b4aa816cd3ab876f96ce8c6986648392137cbd6feddbf4189322515f34e1f6", + "sha256:0b210484fccff00cafa9bd8abedea8749b6d975df8c8e21c82d92bb25403db85", + "sha256:0d09e40e2ae6723af487ffde019055d0b6ce4eae0749fcfe9de624b61f1af6ec", + "sha256:0f25a79ac4ac0bd94cf283d3e86e6f3ec78fc39e2de6949b902c342148b7b5f6", + "sha256:10d19997f2f8d49d53b76163b71e263bb7b23f48041d0d4050a43445a0052c35", + "sha256:13085c0129a906b001d87dd43e247155f6c76820d98147c079b746e8a0665b17", + "sha256:1378164474a3866f7684a95efede1bee4016cd104bc10bf885e492c4459b715a", + "sha256:14dbfb208ffe3388e0770fd23bf9114cc933c10bb1dba35b538f3c9d685334d8", + "sha256:150deb28d5302cfec89fc31ea4bce774df06f5c03d95519f7588ca6517a472d7", + "sha256:164068b338c52dfe44f3490c70ef7b33c0e73d441c89f599ae2d93f7dcf3e395", + "sha256:171f1f5364a0ef5873480e6fddc3870ee37f1dfe216fa67507bbd4c91306f110", + "sha256:189979c7e9d8f40236534760daf5b41d2026d5ebabdf913e771d9b6bfbc992af", + "sha256:18c72a69ba20713f26fa40932cac17437b0c1d25edff2e27437a204c12275bd9", + "sha256:1d26881d98274ef0dbd4f069f383e5e90eb6e42e957289db14c47186386832ce", + "sha256:278cd430ba93a157ad1faf490fdd6051801085ffa31a27762133472555e56888", + "sha256:2b7794b3d23451e355b4a87959943125afff8dd31d8059651c2734de12f9e7f2", + "sha256:2c6140d6cbf8eebbcf1528364ce0b26d0a95788111659cfc008fba3a12fc874f", + "sha256:2d8d12d6a192f7b9f8a335cad8634a4f081d8319b75dd42257a1a3e557848d00", + "sha256:318824b98a2bdf84e9a21d413737a3c4f27bbad0a9ce16141488f631dbffb9b2", + "sha256:342600665e74eea20b3286045ebeb0aa2f9cececf2eb0acc6f6817205b112b29", + "sha256:365eff442a47b13e0e12c37240a6f75940ebee0b7943af43c84d5b43643fc80c", + "sha256:3915944c87c9bf488db4ca1ae6edca40b5bc77c4c2cf2f49b69886bc47b97db1", + "sha256:4296dd120e7e9728625eef1091039aff1a454c7147913d47839876c94b202226", + "sha256:431852e77cd72f60a0278f8cf557c8e568cd856f755a4b6c5232c7d8c6343d2e", + "sha256:4d23df9f01c8945d03cffcdd9ba9bfd88aa21ac567a39d0ac4d0c80499ed0d23", + "sha256:4f6b014f2176d2774b759b8e2951af4a613385ebcc08841cb5c0ca6d5dee74ee", + "sha256:582536d3d7f95a6d4d072d2326dd03eeb1549c1cc86d02c9bcec71899f4c66f2", + "sha256:5fc3538efae4e4df222a563559f8766234f49e845e8dbb2dd477eb8f3fd97242", + "sha256:636e3efb0bb024817cefa1ef86d678d1a73eb210ae162aff4234214060011ff5", + "sha256:63c9de949e05a5f729aecba6bf4b3d5403846caf546ea5020f8b9bf315bd8f12", + "sha256:68120c12c98bfc0e024ef1279be5f41327a54a5094710adc970ecc9724b91871", + "sha256:6bae913cbb183cd34863905088ef26a17c75332bd6bdd451ee8bf158c987cf19", + "sha256:73f151a1e21369a84d56b91a209590c23270c847463029fdcbda710516217644", + "sha256:77bc82d7b10f377957ba8e99bb1b13d946e9e9038fe89ba0888ad0b12e60c9c0", + "sha256:7a372f9ea521741667cec2ef4a64419448030411af2e844dfa8dbbb8074baea6", + "sha256:7b75cfa1e5fc7c87fc5f9de7124bb039b898791bb87207d2107bed5e3509670f", + "sha256:7ce1b54feaaf264e28a4474e13635d302a59aafb720b18c3c2885b8f35ce5040", + "sha256:7ed4435dcf507ef2de5b4be64276933eb19c78e5c7d00ca376fcd9a67d0139a0", + "sha256:80531f6f4fff5a1f7e495afbc4aff5c4230b605f26d56c40ecad27a269665608", + "sha256:81d3fc1b187656b6b465ed4ed4c9858f16ff2d9864da6225d80b8018abd7739b", + "sha256:82fa5fb983922b03f2b08d1140550c68b50313305115639e19b13489c284c30c", + "sha256:85d8a1d716516ef92c769eadb020600d27223899018ef8d07c09c117001cc7d5", + "sha256:871c2bf68ecc55056e5e3b0ae5929a1149f41c4255bbf99b1f858005f63360d1", + "sha256:87652147515031dafc1b37c9c3c42fbe9e2697af6264ec26080a6fe603cc5196", + "sha256:87d0e52b2905dbc1aeffcbf0611fa82e27874764332c11b984293a4b91cc8e9f", + "sha256:87e243b1df27ff685ab08228b7a938c0530beb60ad3dea7554da1554d46c9ad4", + "sha256:8ddf2c8c9ec6bb3f5c057e5c95605adb8e3f1e2d999e8801736f448aff29280e", + "sha256:8fbf91559400fe1a98d84af36f5a66aa59c359ac3cb113b17d304ced6a4601b4", + "sha256:99c11c5d632fa2222cc5805105841f6f3c40df116368fde40fbd71f8b14ea692", + "sha256:9cd67e5c84cb75a471b2e35f3fb0da52e6d359d1794d3465a87052fb240e64b5", + "sha256:a1fe407bec2f14a3d79ec92aa767b930857a6782589ea87ac76fd8081dea3dab", + "sha256:a84fe27904dbb43a236532d6d841d6132200b7bb53ba73d0300b0b586ceab6cc", + "sha256:aa42c4e78925a438a6f7df0d9b165d29cdc0a44fc5ce838d6c293a0161a2bd9a", + "sha256:aeea07c89a5a53463c70957feb85d4b846982c0f054b521fc44f52862e7871cf", + "sha256:af10344fb1ee195b2cd5840b61d8c8121b16d3b3baa2da5a86cf4001a7e5bd98", + "sha256:b5d8c94fd23f41007799ec657e18661f9f8c5b566a1e4fe944e3514e505a6b49", + "sha256:b5f8270946777d6971c27479cb6e7f54578be960928a8922cb59130e856d8484", + "sha256:b6fb89edeadfd69df75f8cea97c3533805a9960cc56034ad296abe9b18771842", + "sha256:b92100555f86b314ed840ed61d937fc30ca39ad453c9aa9020414a3cce955d9b", + "sha256:bab2544f09cd1db154c105e03b1c941032fd7237da5da184595771999ca90daa", + "sha256:bc1f4e0f4b1ae9289b4d0cc3bf5d6d55176c38ef1d41484550f3f9a0a78bedae", + "sha256:beda1abd7b23d489a5b66a46eba5a9e0db58e4ad91d68697409eeabda343fb9d", + "sha256:befc2f0794bc4bbbb1f8d0e245d32ee13331205b58f54910789e9e78d2a6fbf5", + "sha256:bf1cd9bfd598899396bdb8a4dc5234144a77e482e7489972b7956cf66e272872", + "sha256:bfa8c8af8c92e3d6c1eff02cf5127f62c1e7564e7b0f1a9767035f81a2e6bb20", + "sha256:bff7ef30cb6fc186ea6dda9e19d6105b1c213e3a3f759b5a23c271c778027260", + "sha256:c161f9e353f291d23069a8f67180fd52c76d72d4671f4f53602ea9ac29f47d50", + "sha256:c6052d92b47b8cf3736b1f01ac8f83cf02f188ef7542848055a5e227db0e16cb", + "sha256:caf083bf26b1e286ab1929dbd8d8cab6230160576a0ed5e3bfb3487bb19474c2", + "sha256:cd658aeaa65fb99fcc3b93882bb33cbd600501d40473488aec163a981d7b05ee", + "sha256:ce7c12bfbb1579e81cdf2e7db4338f8c768da2493aa0db60a858a542d551563c", + "sha256:ced77f4dd0c4f0107ee96f8df162b984470ac9f94ef93dd44dba62838fd85cde", + "sha256:da5a03cbe746f182f7b61e119dde24d388cf77965fea320bc8aba61b75039d06", + "sha256:dd8a0a0ef895e4c3f1afd31c2a6f89d68a94baacdbe2eb9bf90ac54b997cf99b", + "sha256:df23cb35bec54b73fba371c7c904994433651458acf8bfb7c84464fef5834c0a", + "sha256:e083e29b6db8e34a507cd678f89eab3ae5f307486ea6010c6473436d3769628d", + "sha256:e152296b2c50417445eacdb2353d3c10e702f6593aa774277510fb7761304302", + "sha256:e19337d6552af197ebb8c886daea0b938ae34eff776c1fa914ad433f6db3970f", + "sha256:e1a9b4026b6fe41adde784e308b0ad0d6a8b5cc9062f9c349125fd57149bc8a9", + "sha256:e2783754bfcee0b13b8e55932b418cf8984c17099fd1b37341d4696447d0c328", + "sha256:e2e0083e6f9f9cb0a0bedd694782e7fb8a54eb4de40e1743d9bb526f1c1eea88", + "sha256:e8ccaa99871303323bd2cda120043039729497642da5c6f53e066b19f73d9df8", + "sha256:eea89c47ae8d592f7563f4355132fe844b5e2f8660292deacc292253bef291cd", + "sha256:f33a6d023b207ad8227e607814c0020b42c53e01a66004fc0f2555e1a4941282", + "sha256:f44f09b67a458400215d9efedb9cfb5e3256dbeb2cc2da68e4592b7b36bac0c9", + "sha256:f8aaa0bc8e39352684982b378ba3f7e32e78a746da433aaeceb7e93d7fdf9ce3", + "sha256:fcfabf9338fed009fd9e11bf496a927ea67b1ce15d34847cb0a98aa6f042b989", + "sha256:fee4d2246b091b7e252cd5bcdbd4362fa21c3cc6a445fef54de793731546ab24", + "sha256:feff2170b23921a526f31d78c8f76bbb9cde825e78035286d8571ce0c81901ab" ], "markers": "python_version >= '3.8'", - "version": "==3.9.5" + "version": "==3.10.7" }, "aiosignal": { "hashes": [ @@ -108,43 +131,43 @@ }, "annotated-types": { "hashes": [ - "sha256:0641064de18ba7a25dee8f96403ebc39113d0cb953a01429249d5c7564666a43", - "sha256:563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d" + "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", + "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89" ], "markers": "python_version >= '3.8'", - "version": "==0.6.0" + "version": "==0.7.0" }, "anyio": { "hashes": [ - "sha256:048e05d0f6caeed70d731f3db756d35dcc1f35747c8c403364a8332c630441b8", - "sha256:f75253795a87df48568485fd18cdd2a3fa5c4f7c5be8e5e36637733fce06fed6" + "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb", + "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a" ], - "markers": "python_version >= '3.8'", - "version": "==4.3.0" + "markers": "python_version >= '3.9'", + "version": "==4.6.0" }, "attrs": { "hashes": [ - "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30", - "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1" + "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346", + "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2" ], "markers": "python_version >= '3.7'", - "version": "==23.2.0" + "version": "==24.2.0" }, "blinker": { "hashes": [ - "sha256:c3f865d4d54db7abc53758a01601cf343fe55b84c1de4e3fa910e420b438d5b9", - "sha256:e6820ff6fa4e4d1d8e2747c2283749c3f547e4fee112b98555cdcdae32996182" + "sha256:1779309f71bf239144b9399d06ae925637cf6634cf6bd131104184531bf67c01", + "sha256:8f77b09d3bf7c795e969e9486f39c2c5e9c39d4ee07424be2bc594ece9642d83" ], "markers": "python_version >= '3.8'", - "version": "==1.7.0" + "version": "==1.8.2" }, "certifi": { "hashes": [ - "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f", - "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1" + "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8", + "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9" ], "markers": "python_version >= '3.6'", - "version": "==2024.2.2" + "version": "==2024.8.30" }, "charset-normalizer": { "hashes": [ @@ -253,53 +276,74 @@ }, "contourpy": { "hashes": [ - "sha256:00e5388f71c1a0610e6fe56b5c44ab7ba14165cdd6d695429c5cd94021e390b2", - "sha256:10a37ae557aabf2509c79715cd20b62e4c7c28b8cd62dd7d99e5ed3ce28c3fd9", - "sha256:11959f0ce4a6f7b76ec578576a0b61a28bdc0696194b6347ba3f1c53827178b9", - "sha256:187fa1d4c6acc06adb0fae5544c59898ad781409e61a926ac7e84b8f276dcef4", - "sha256:1a07fc092a4088ee952ddae19a2b2a85757b923217b7eed584fdf25f53a6e7ce", - "sha256:1cac0a8f71a041aa587410424ad46dfa6a11f6149ceb219ce7dd48f6b02b87a7", - "sha256:1d59e739ab0e3520e62a26c60707cc3ab0365d2f8fecea74bfe4de72dc56388f", - "sha256:2855c8b0b55958265e8b5888d6a615ba02883b225f2227461aa9127c578a4922", - "sha256:2e785e0f2ef0d567099b9ff92cbfb958d71c2d5b9259981cd9bee81bd194c9a4", - "sha256:309be79c0a354afff9ff7da4aaed7c3257e77edf6c1b448a779329431ee79d7e", - "sha256:39f3ecaf76cd98e802f094e0d4fbc6dc9c45a8d0c4d185f0f6c2234e14e5f75b", - "sha256:457499c79fa84593f22454bbd27670227874cd2ff5d6c84e60575c8b50a69619", - "sha256:49e70d111fee47284d9dd867c9bb9a7058a3c617274900780c43e38d90fe1205", - "sha256:4c75507d0a55378240f781599c30e7776674dbaf883a46d1c90f37e563453480", - "sha256:4c863140fafc615c14a4bf4efd0f4425c02230eb8ef02784c9a156461e62c965", - "sha256:4d8908b3bee1c889e547867ca4cdc54e5ab6be6d3e078556814a22457f49423c", - "sha256:5b9eb0ca724a241683c9685a484da9d35c872fd42756574a7cfbf58af26677fd", - "sha256:6022cecf8f44e36af10bd9118ca71f371078b4c168b6e0fab43d4a889985dbb5", - "sha256:6150ffa5c767bc6332df27157d95442c379b7dce3a38dff89c0f39b63275696f", - "sha256:62828cada4a2b850dbef89c81f5a33741898b305db244904de418cc957ff05dc", - "sha256:7b4182299f251060996af5249c286bae9361fa8c6a9cda5efc29fe8bfd6062ec", - "sha256:94b34f32646ca0414237168d68a9157cb3889f06b096612afdd296003fdd32fd", - "sha256:9ce6889abac9a42afd07a562c2d6d4b2b7134f83f18571d859b25624a331c90b", - "sha256:9cffe0f850e89d7c0012a1fb8730f75edd4320a0a731ed0c183904fe6ecfc3a9", - "sha256:a12a813949e5066148712a0626895c26b2578874e4cc63160bb007e6df3436fe", - "sha256:a1eea9aecf761c661d096d39ed9026574de8adb2ae1c5bd7b33558af884fb2ce", - "sha256:a31f94983fecbac95e58388210427d68cd30fe8a36927980fab9c20062645609", - "sha256:ac58bdee53cbeba2ecad824fa8159493f0bf3b8ea4e93feb06c9a465d6c87da8", - "sha256:af3f4485884750dddd9c25cb7e3915d83c2db92488b38ccb77dd594eac84c4a0", - "sha256:b33d2bc4f69caedcd0a275329eb2198f560b325605810895627be5d4b876bf7f", - "sha256:b59c0ffceff8d4d3996a45f2bb6f4c207f94684a96bf3d9728dbb77428dd8cb8", - "sha256:bb6834cbd983b19f06908b45bfc2dad6ac9479ae04abe923a275b5f48f1a186b", - "sha256:bd3db01f59fdcbce5b22afad19e390260d6d0222f35a1023d9adc5690a889364", - "sha256:bd7c23df857d488f418439686d3b10ae2fbf9bc256cd045b37a8c16575ea1040", - "sha256:c2528d60e398c7c4c799d56f907664673a807635b857df18f7ae64d3e6ce2d9f", - "sha256:d31a63bc6e6d87f77d71e1abbd7387ab817a66733734883d1fc0021ed9bfa083", - "sha256:d4492d82b3bc7fbb7e3610747b159869468079fe149ec5c4d771fa1f614a14df", - "sha256:ddcb8581510311e13421b1f544403c16e901c4e8f09083c881fab2be80ee31ba", - "sha256:e1d59258c3c67c865435d8fbeb35f8c59b8bef3d6f46c1f29f6123556af28445", - "sha256:eb3315a8a236ee19b6df481fc5f997436e8ade24a9f03dfdc6bd490fea20c6da", - "sha256:ef2b055471c0eb466033760a521efb9d8a32b99ab907fc8358481a1dd29e3bd3", - "sha256:ef5adb9a3b1d0c645ff694f9bca7702ec2c70f4d734f9922ea34de02294fdf72", - "sha256:f32c38afb74bd98ce26de7cc74a67b40afb7b05aae7b42924ea990d51e4dac02", - "sha256:fe0ccca550bb8e5abc22f530ec0466136379c01321fd94f30a22231e8a48d985" + "sha256:00ccd0dbaad6d804ab259820fa7cb0b8036bda0686ef844d24125d8287178ce0", + "sha256:0be4d8425bfa755e0fd76ee1e019636ccc7c29f77a7c86b4328a9eb6a26d0639", + "sha256:0dce35502151b6bd35027ac39ba6e5a44be13a68f55735c3612c568cac3805fd", + "sha256:0fa4c02abe6c446ba70d96ece336e621efa4aecae43eaa9b030ae5fb92b309ad", + "sha256:14e262f67bd7e6eb6880bc564dcda30b15e351a594657e55b7eec94b6ef72843", + "sha256:167d6c890815e1dac9536dca00828b445d5d0df4d6a8c6adb4a7ec3166812fa8", + "sha256:1ec4dc6bf570f5b22ed0d7efba0dfa9c5b9e0431aeea7581aa217542d9e809a4", + "sha256:303c252947ab4b14c08afeb52375b26781ccd6a5ccd81abcdfc1fafd14cf93c1", + "sha256:31cd3a85dbdf1fc002280c65caa7e2b5f65e4a973fcdf70dd2fdcb9868069294", + "sha256:32b238b3b3b649e09ce9aaf51f0c261d38644bdfa35cbaf7b263457850957a84", + "sha256:33c92cdae89ec5135d036e7218e69b0bb2851206077251f04a6c4e0e21f03927", + "sha256:345af746d7766821d05d72cb8f3845dfd08dd137101a2cb9b24de277d716def8", + "sha256:3634b5385c6716c258d0419c46d05c8aa7dc8cb70326c9a4fb66b69ad2b52e09", + "sha256:364174c2a76057feef647c802652f00953b575723062560498dc7930fc9b1cb7", + "sha256:36e0cff201bcb17a0a8ecc7f454fe078437fa6bda730e695a92f2d9932bd507f", + "sha256:36f965570cff02b874773c49bfe85562b47030805d7d8360748f3eca570f4cab", + "sha256:3bb3808858a9dc68f6f03d319acd5f1b8a337e6cdda197f02f4b8ff67ad2057b", + "sha256:3e1c7fa44aaae40a2247e2e8e0627f4bea3dd257014764aa644f319a5f8600e3", + "sha256:3faeb2998e4fcb256542e8a926d08da08977f7f5e62cf733f3c211c2a5586223", + "sha256:420d39daa61aab1221567b42eecb01112908b2cab7f1b4106a52caaec8d36973", + "sha256:4553c421929ec95fb07b3aaca0fae668b2eb5a5203d1217ca7c34c063c53d087", + "sha256:4865cd1d419e0c7a7bf6de1777b185eebdc51470800a9f42b9e9decf17762081", + "sha256:4cfb5c62ce023dfc410d6059c936dcf96442ba40814aefbfa575425a3a7f19dc", + "sha256:4d63ee447261e963af02642ffcb864e5a2ee4cbfd78080657a9880b8b1868e18", + "sha256:570ef7cf892f0afbe5b2ee410c507ce12e15a5fa91017a0009f79f7d93a1268f", + "sha256:637f674226be46f6ba372fd29d9523dd977a291f66ab2a74fbeb5530bb3f445d", + "sha256:68a32389b06b82c2fdd68276148d7b9275b5f5cf13e5417e4252f6d1a34f72a2", + "sha256:69375194457ad0fad3a839b9e29aa0b0ed53bb54db1bfb6c3ae43d111c31ce41", + "sha256:6cb6cc968059db9c62cb35fbf70248f40994dfcd7aa10444bbf8b3faeb7c2d67", + "sha256:710a26b3dc80c0e4febf04555de66f5fd17e9cf7170a7b08000601a10570bda6", + "sha256:732896af21716b29ab3e988d4ce14bc5133733b85956316fb0c56355f398099b", + "sha256:75ee7cb1a14c617f34a51d11fa7524173e56551646828353c4af859c56b766e2", + "sha256:76a896b2f195b57db25d6b44e7e03f221d32fe318d03ede41f8b4d9ba1bff53c", + "sha256:76c905ef940a4474a6289c71d53122a4f77766eef23c03cd57016ce19d0f7b42", + "sha256:7a52040312b1a858b5e31ef28c2e865376a386c60c0e248370bbea2d3f3b760d", + "sha256:7ffa0db17717a8ffb127efd0c95a4362d996b892c2904db72428d5b52e1938a4", + "sha256:81cb5ed4952aae6014bc9d0421dec7c5835c9c8c31cdf51910b708f548cf58e5", + "sha256:834e0cfe17ba12f79963861e0f908556b2cedd52e1f75e6578801febcc6a9f49", + "sha256:87ddffef1dbe5e669b5c2440b643d3fdd8622a348fe1983fad7a0f0ccb1cd67b", + "sha256:880ea32e5c774634f9fcd46504bf9f080a41ad855f4fef54f5380f5133d343c7", + "sha256:8ca947601224119117f7c19c9cdf6b3ab54c5726ef1d906aa4a69dfb6dd58102", + "sha256:90f73a5116ad1ba7174341ef3ea5c3150ddf20b024b98fb0c3b29034752c8aeb", + "sha256:92f8557cbb07415a4d6fa191f20fd9d2d9eb9c0b61d1b2f52a8926e43c6e9af7", + "sha256:94e848a6b83da10898cbf1311a815f770acc9b6a3f2d646f330d57eb4e87592e", + "sha256:9c0da700bf58f6e0b65312d0a5e695179a71d0163957fa381bb3c1f72972537c", + "sha256:a11077e395f67ffc2c44ec2418cfebed032cd6da3022a94fc227b6faf8e2acb8", + "sha256:aea348f053c645100612b333adc5983d87be69acdc6d77d3169c090d3b01dc35", + "sha256:b11b39aea6be6764f84360fce6c82211a9db32a7c7de8fa6dd5397cf1d079c3b", + "sha256:c6c7c2408b7048082932cf4e641fa3b8ca848259212f51c8c59c45aa7ac18f14", + "sha256:c6ec93afeb848a0845a18989da3beca3eec2c0f852322efe21af1931147d12cb", + "sha256:cacd81e2d4b6f89c9f8a5b69b86490152ff39afc58a95af002a398273e5ce589", + "sha256:d402880b84df3bec6eab53cd0cf802cae6a2ef9537e70cf75e91618a3801c20c", + "sha256:d51fca85f9f7ad0b65b4b9fe800406d0d77017d7270d31ec3fb1cc07358fdea0", + "sha256:d73f659398a0904e125280836ae6f88ba9b178b2fed6884f3b1f95b989d2c8da", + "sha256:d78ab28a03c854a873787a0a42254a0ccb3cb133c672f645c9f9c8f3ae9d0800", + "sha256:da84c537cb8b97d153e9fb208c221c45605f73147bd4cadd23bdae915042aad6", + "sha256:dbc4c3217eee163fa3984fd1567632b48d6dfd29216da3ded3d7b844a8014a66", + "sha256:e12968fdfd5bb45ffdf6192a590bd8ddd3ba9e58360b29683c6bb71a7b41edca", + "sha256:e1fd23e9d01591bab45546c089ae89d926917a66dceb3abcf01f6105d927e2cb", + "sha256:e8134301d7e204c88ed7ab50028ba06c683000040ede1d617298611f9dc6240c", + "sha256:eb8b141bb00fa977d9122636b16aa67d37fd40a3d8b52dd837e536d64b9a4d06", + "sha256:eca7e17a65f72a5133bdbec9ecf22401c62bcf4821361ef7811faee695799779", + "sha256:f317576606de89da6b7e0861cf6061f6146ead3528acabff9236458a6ba467f8", + "sha256:fd2a0fc506eccaaa7595b7e1418951f213cf8255be2600f1ea1b61e46a60c55f", + "sha256:fe41b41505a5a33aeaed2a613dccaeaa74e0e3ead6dd6fd3a118fb471644fd6c" ], "markers": "python_version >= '3.9'", - "version": "==1.2.1" + "version": "==1.3.0" }, "cycler": { "hashes": [ @@ -311,11 +355,11 @@ }, "discord.py": { "hashes": [ - "sha256:4560f70f2eddba7e83370ecebd237ac09fbb4980dc66507482b0c0e5b8f76b9c", - "sha256:9da4679fc3cb10c64b388284700dc998663e0e57328283bbfcfc2525ec5960a6" + "sha256:b8af6711c70f7e62160bfbecb55be699b5cb69d007426759ab8ab06b1bd77d1d", + "sha256:d07cb2a223a185873a1d0ee78b9faa9597e45b3f6186df21a95cec1e9bcdc9a5" ], - "markers": "python_full_version >= '3.8.0'", - "version": "==2.3.2" + "markers": "python_version >= '3.8'", + "version": "==2.4.0" }, "distro": { "hashes": [ @@ -327,12 +371,12 @@ }, "emoji": { "hashes": [ - "sha256:062ff0b3154b6219143f8b9f4b3e5c64c35bc2b146e6e2349ab5f29e218ce1ee", - "sha256:b7ba25299bbf520cc8727848ae66b986da32aee27dc2887eaea2bff07226ce49" + "sha256:ef6f2ee63b245e934c763b1a9a0637713955aa3d9e322432e036bb60559de4d6", + "sha256:f95d10d96c5f21299ed2c4b32511611ba890b8c07f5f2bf5b04d5d3eee91fd19" ], "index": "pypi", - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", - "version": "==2.11.1" + "markers": "python_version >= '3.7'", + "version": "==2.13.2" }, "flask": { "hashes": [ @@ -345,51 +389,57 @@ }, "fonttools": { "hashes": [ - "sha256:0118ef998a0699a96c7b28457f15546815015a2710a1b23a7bf6c1be60c01636", - "sha256:0d145976194a5242fdd22df18a1b451481a88071feadf251221af110ca8f00ce", - "sha256:0e19bd9e9964a09cd2433a4b100ca7f34e34731e0758e13ba9a1ed6e5468cc0f", - "sha256:0f08c901d3866a8905363619e3741c33f0a83a680d92a9f0e575985c2634fcc1", - "sha256:1250e818b5f8a679ad79660855528120a8f0288f8f30ec88b83db51515411fcc", - "sha256:15c94eeef6b095831067f72c825eb0e2d48bb4cea0647c1b05c981ecba2bf39f", - "sha256:1621ee57da887c17312acc4b0e7ac30d3a4fb0fec6174b2e3754a74c26bbed1e", - "sha256:180194c7fe60c989bb627d7ed5011f2bef1c4d36ecf3ec64daec8302f1ae0716", - "sha256:278e50f6b003c6aed19bae2242b364e575bcb16304b53f2b64f6551b9c000e15", - "sha256:32b17504696f605e9e960647c5f64b35704782a502cc26a37b800b4d69ff3c77", - "sha256:3bee3f3bd9fa1d5ee616ccfd13b27ca605c2b4270e45715bd2883e9504735034", - "sha256:4060acc2bfa2d8e98117828a238889f13b6f69d59f4f2d5857eece5277b829ba", - "sha256:54dcf21a2f2d06ded676e3c3f9f74b2bafded3a8ff12f0983160b13e9f2fb4a7", - "sha256:56fc244f2585d6c00b9bcc59e6593e646cf095a96fe68d62cd4da53dd1287b55", - "sha256:599bdb75e220241cedc6faebfafedd7670335d2e29620d207dd0378a4e9ccc5a", - "sha256:5f6bc991d1610f5c3bbe997b0233cbc234b8e82fa99fc0b2932dc1ca5e5afec0", - "sha256:60a3409c9112aec02d5fb546f557bca6efa773dcb32ac147c6baf5f742e6258b", - "sha256:68b3fb7775a923be73e739f92f7e8a72725fd333eab24834041365d2278c3671", - "sha256:76f1777d8b3386479ffb4a282e74318e730014d86ce60f016908d9801af9ca2a", - "sha256:806e7912c32a657fa39d2d6eb1d3012d35f841387c8fc6cf349ed70b7c340039", - "sha256:84d7751f4468dd8cdd03ddada18b8b0857a5beec80bce9f435742abc9a851a74", - "sha256:865a58b6e60b0938874af0968cd0553bcd88e0b2cb6e588727117bd099eef836", - "sha256:8ac27f436e8af7779f0bb4d5425aa3535270494d3bc5459ed27de3f03151e4c2", - "sha256:8b4850fa2ef2cfbc1d1f689bc159ef0f45d8d83298c1425838095bf53ef46308", - "sha256:8b5ad456813d93b9c4b7ee55302208db2b45324315129d85275c01f5cb7e61a2", - "sha256:8e2f1a4499e3b5ee82c19b5ee57f0294673125c65b0a1ff3764ea1f9db2f9ef5", - "sha256:9696fe9f3f0c32e9a321d5268208a7cc9205a52f99b89479d1b035ed54c923f1", - "sha256:96a48e137c36be55e68845fc4284533bda2980f8d6f835e26bca79d7e2006438", - "sha256:a8feca65bab31479d795b0d16c9a9852902e3a3c0630678efb0b2b7941ea9c74", - "sha256:aefa011207ed36cd280babfaa8510b8176f1a77261833e895a9d96e57e44802f", - "sha256:b2b92381f37b39ba2fc98c3a45a9d6383bfc9916a87d66ccb6553f7bdd129097", - "sha256:b3c61423f22165541b9403ee39874dcae84cd57a9078b82e1dce8cb06b07fa2e", - "sha256:b5b48a1121117047d82695d276c2af2ee3a24ffe0f502ed581acc2673ecf1037", - "sha256:c18b49adc721a7d0b8dfe7c3130c89b8704baf599fb396396d07d4aa69b824a1", - "sha256:c5b8cab0c137ca229433570151b5c1fc6af212680b58b15abd797dcdd9dd5051", - "sha256:c7e91abdfae1b5c9e3a543f48ce96013f9a08c6c9668f1e6be0beabf0a569c1b", - "sha256:cadf4e12a608ef1d13e039864f484c8a968840afa0258b0b843a0556497ea9ed", - "sha256:dc0673361331566d7a663d7ce0f6fdcbfbdc1f59c6e3ed1165ad7202ca183c68", - "sha256:de7c29bdbdd35811f14493ffd2534b88f0ce1b9065316433b22d63ca1cd21f14", - "sha256:e9d9298be7a05bb4801f558522adbe2feea1b0b103d5294ebf24a92dd49b78e5", - "sha256:ee1af4be1c5afe4c96ca23badd368d8dc75f611887fb0c0dac9f71ee5d6f110e", - "sha256:f7e89853d8bea103c8e3514b9f9dc86b5b4120afb4583b57eb10dfa5afbe0936" + "sha256:07e005dc454eee1cc60105d6a29593459a06321c21897f769a281ff2d08939f6", + "sha256:0a911591200114969befa7f2cb74ac148bce5a91df5645443371aba6d222e263", + "sha256:0d1d353ef198c422515a3e974a1e8d5b304cd54a4c2eebcae708e37cd9eeffb1", + "sha256:0e88e3018ac809b9662615072dcd6b84dca4c2d991c6d66e1970a112503bba7e", + "sha256:1d152d1be65652fc65e695e5619e0aa0982295a95a9b29b52b85775243c06556", + "sha256:262705b1663f18c04250bd1242b0515d3bbae177bee7752be67c979b7d47f43d", + "sha256:278913a168f90d53378c20c23b80f4e599dca62fbffae4cc620c8eed476b723e", + "sha256:301540e89cf4ce89d462eb23a89464fef50915255ece765d10eee8b2bf9d75b2", + "sha256:31c32d7d4b0958600eac75eaf524b7b7cb68d3a8c196635252b7a2c30d80e986", + "sha256:357cacb988a18aace66e5e55fe1247f2ee706e01debc4b1a20d77400354cddeb", + "sha256:37cddd62d83dc4f72f7c3f3c2bcf2697e89a30efb152079896544a93907733bd", + "sha256:41bb0b250c8132b2fcac148e2e9198e62ff06f3cc472065dff839327945c5882", + "sha256:4aa4817f0031206e637d1e685251ac61be64d1adef111060df84fdcbc6ab6c44", + "sha256:4e10d2e0a12e18f4e2dd031e1bf7c3d7017be5c8dbe524d07706179f355c5dac", + "sha256:5419771b64248484299fa77689d4f3aeed643ea6630b2ea750eeab219588ba20", + "sha256:54471032f7cb5fca694b5f1a0aaeba4af6e10ae989df408e0216f7fd6cdc405d", + "sha256:58974b4987b2a71ee08ade1e7f47f410c367cdfc5a94fabd599c88165f56213a", + "sha256:58d29b9a294573d8319f16f2f79e42428ba9b6480442fa1836e4eb89c4d9d61c", + "sha256:5eb2474a7c5be8a5331146758debb2669bf5635c021aee00fd7c353558fc659d", + "sha256:6e37561751b017cf5c40fce0d90fd9e8274716de327ec4ffb0df957160be3bff", + "sha256:76ae5091547e74e7efecc3cbf8e75200bc92daaeb88e5433c5e3e95ea8ce5aa7", + "sha256:7965af9b67dd546e52afcf2e38641b5be956d68c425bef2158e95af11d229f10", + "sha256:7e3b7d44e18c085fd8c16dcc6f1ad6c61b71ff463636fcb13df7b1b818bd0c02", + "sha256:7ed7ee041ff7b34cc62f07545e55e1468808691dddfd315d51dd82a6b37ddef2", + "sha256:82834962b3d7c5ca98cb56001c33cf20eb110ecf442725dc5fdf36d16ed1ab07", + "sha256:8583e563df41fdecef31b793b4dd3af8a9caa03397be648945ad32717a92885b", + "sha256:8fa92cb248e573daab8d032919623cc309c005086d743afb014c836636166f08", + "sha256:93d458c8a6a354dc8b48fc78d66d2a8a90b941f7fec30e94c7ad9982b1fa6bab", + "sha256:957f669d4922f92c171ba01bef7f29410668db09f6c02111e22b2bce446f3285", + "sha256:9dc080e5a1c3b2656caff2ac2633d009b3a9ff7b5e93d0452f40cd76d3da3b3c", + "sha256:9ef1b167e22709b46bf8168368b7b5d3efeaaa746c6d39661c1b4405b6352e58", + "sha256:a7a310c6e0471602fe3bf8efaf193d396ea561486aeaa7adc1f132e02d30c4b9", + "sha256:ab774fa225238986218a463f3fe151e04d8c25d7de09df7f0f5fce27b1243dbc", + "sha256:ada215fd079e23e060157aab12eba0d66704316547f334eee9ff26f8c0d7b8ab", + "sha256:c39287f5c8f4a0c5a55daf9eaf9ccd223ea59eed3f6d467133cc727d7b943a55", + "sha256:c9c563351ddc230725c4bdf7d9e1e92cbe6ae8553942bd1fb2b2ff0884e8b714", + "sha256:d26732ae002cc3d2ecab04897bb02ae3f11f06dd7575d1df46acd2f7c012a8d8", + "sha256:d3b659d1029946f4ff9b6183984578041b520ce0f8fb7078bb37ec7445806b33", + "sha256:dd9cc95b8d6e27d01e1e1f1fae8559ef3c02c76317da650a19047f249acd519d", + "sha256:e4564cf40cebcb53f3dc825e85910bf54835e8a8b6880d59e5159f0f325e637e", + "sha256:e7d82b9e56716ed32574ee106cabca80992e6bbdcf25a88d97d21f73a0aae664", + "sha256:e8a4b261c1ef91e7188a30571be6ad98d1c6d9fa2427244c545e2fa0a2494dd7", + "sha256:e96bc94c8cda58f577277d4a71f51c8e2129b8b36fd05adece6320dd3d57de8a", + "sha256:ed2f80ca07025551636c555dec2b755dd005e2ea8fbeb99fc5cdff319b70b23b", + "sha256:f5b8a096e649768c2f4233f947cf9737f8dbf8728b90e2771e2497c6e3d21d13", + "sha256:f8e953cc0bddc2beaf3a3c3b5dd9ab7554677da72dfaf46951e193c9653e515a", + "sha256:fda582236fee135d4daeca056c8c88ec5f6f6d88a004a79b84a02547c8f57386", + "sha256:fdb062893fd6d47b527d39346e0c5578b7957dcea6d6a3b6794569370013d9ac" ], "markers": "python_version >= '3.8'", - "version": "==4.51.0" + "version": "==4.54.1" }, "frozenlist": { "hashes": [ @@ -509,19 +559,19 @@ }, "httpx": { "hashes": [ - "sha256:71d5465162c13681bff01ad59b2cc68dd838ea1f10e51574bac27103f00c91a5", - "sha256:a0cb88a46f32dc874e04ee956e4c2764aba2aa228f650b06788ba6bda2962ab5" + "sha256:7bb2708e112d8fdd7829cd4243970f0c223274051cb35ee80c03301ee29a3df0", + "sha256:f7c2be1d2f3c3c3160d441802406b206c2b76f5947b11115e6df10c6c65e66c2" ], "markers": "python_version >= '3.8'", - "version": "==0.27.0" + "version": "==0.27.2" }, "idna": { "hashes": [ - "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", - "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0" + "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", + "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3" ], - "markers": "python_version >= '3.5'", - "version": "==3.7" + "markers": "python_version >= '3.6'", + "version": "==3.10" }, "itsdangerous": { "hashes": [ @@ -533,121 +583,198 @@ }, "jinja2": { "hashes": [ - "sha256:7d6d50dd97d52cbc355597bd845fabfbac3f551e1f99619e39a35ce8c370b5fa", - "sha256:ac8bd6544d4bb2c9792bf3a159e80bba8fda7f07e81bc3aed565432d5925ba90" + "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369", + "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d" ], "markers": "python_version >= '3.7'", - "version": "==3.1.3" + "version": "==3.1.4" + }, + "jiter": { + "hashes": [ + "sha256:044f2f1148b5248ad2c8c3afb43430dccf676c5a5834d2f5089a4e6c5bbd64df", + "sha256:04d461ad0aebf696f8da13c99bc1b3e06f66ecf6cfd56254cc402f6385231c06", + "sha256:0af3838cfb7e6afee3f00dc66fa24695199e20ba87df26e942820345b0afc566", + "sha256:1c834133e59a8521bc87ebcad773608c6fa6ab5c7a022df24a45030826cf10bc", + "sha256:1d916ba875bcab5c5f7d927df998c4cb694d27dceddf3392e58beaf10563368a", + "sha256:1ece0a115c05efca597c6d938f88c9357c843f8c245dbbb53361a1c01afd7148", + "sha256:26351cc14507bdf466b5f99aba3df3143a59da75799bf64a53a3ad3155ecded9", + "sha256:2a063f71c4b06225543dddadbe09d203dc0c95ba352d8b85f1221173480a71d5", + "sha256:2cec323a853c24fd0472517113768c92ae0be8f8c384ef4441d3632da8baa646", + "sha256:308fce789a2f093dca1ff91ac391f11a9f99c35369117ad5a5c6c4903e1b3e3a", + "sha256:335942557162ad372cc367ffaf93217117401bf930483b4b3ebdb1223dbddfa7", + "sha256:368084d8d5c4fc40ff7c3cc513c4f73e02c85f6009217922d0823a48ee7adf61", + "sha256:44dfc9ddfb9b51a5626568ef4e55ada462b7328996294fe4d36de02fce42721f", + "sha256:462a52be85b53cd9bffd94e2d788a09984274fe6cebb893d6287e1c296d50653", + "sha256:4829df14d656b3fb87e50ae8b48253a8851c707da9f30d45aacab2aa2ba2d614", + "sha256:489875bf1a0ffb3cb38a727b01e6673f0f2e395b2aad3c9387f94187cb214bbf", + "sha256:503b2c27d87dfff5ab717a8200fbbcf4714516c9d85558048b1fc14d2de7d8dc", + "sha256:5206144578831a6de278a38896864ded4ed96af66e1e63ec5dd7f4a1fce38a3a", + "sha256:5280e68e7740c8c128d3ae5ab63335ce6d1fb6603d3b809637b11713487af9e6", + "sha256:528d742dcde73fad9d63e8242c036ab4a84389a56e04efd854062b660f559544", + "sha256:550b11d669600dbc342364fd4adbe987f14d0bbedaf06feb1b983383dcc4b961", + "sha256:583c57fc30cc1fec360e66323aadd7fc3edeec01289bfafc35d3b9dcb29495e4", + "sha256:63314832e302cc10d8dfbda0333a384bf4bcfce80d65fe99b0f3c0da8945a91a", + "sha256:649b0ee97a6e6da174bffcb3c8c051a5935d7d4f2f52ea1583b5b3e7822fbf14", + "sha256:6baa88334e7af3f4d7a5c66c3a63808e5efbc3698a1c57626541ddd22f8e4fbf", + "sha256:6d1f3d27cce923713933a844872d213d244e09b53ec99b7a7fdf73d543529d6d", + "sha256:6f1223f88b6d76b519cb033a4d3687ca157c272ec5d6015c322fc5b3074d8a5e", + "sha256:6f433a4169ad22fcb550b11179bb2b4fd405de9b982601914ef448390b2954f3", + "sha256:702e3520384c88b6e270c55c772d4bd6d7b150608dcc94dea87ceba1b6391248", + "sha256:7f5ad4a7c6b0d90776fdefa294f662e8a86871e601309643de30bf94bb93a64e", + "sha256:8120c60f8121ac3d6f072b97ef0e71770cc72b3c23084c72c4189428b1b1d3b6", + "sha256:8cf80e5fe6ab582c82f0c3331df27a7e1565e2dcf06265afd5173d809cdbf9ba", + "sha256:8ea18e01f785c6667ca15407cd6dabbe029d77474d53595a189bdc813347218e", + "sha256:92cc68b48d50fa472c79c93965e19bd48f40f207cb557a8346daa020d6ba973b", + "sha256:9f664e7351604f91dcdd557603c57fc0d551bc65cc0a732fdacbf73ad335049a", + "sha256:a25fbd8a5a58061e433d6fae6d5298777c0814a8bcefa1e5ecfff20c594bd749", + "sha256:a42a4bdcf7307b86cb863b2fb9bb55029b422d8f86276a50487982d99eed7c6e", + "sha256:a586832f70c3f1481732919215f36d41c59ca080fa27a65cf23d9490e75b2ef5", + "sha256:aa1db0967130b5cab63dfe4d6ff547c88b2a394c3410db64744d491df7f069bb", + "sha256:aa9d2b85b2ed7dc7697597dcfaac66e63c1b3028652f751c81c65a9f220899ae", + "sha256:ab3a71ff31cf2d45cb216dc37af522d335211f3a972d2fe14ea99073de6cb104", + "sha256:acc0d5b8b3dd12e91dd184b87273f864b363dfabc90ef29a1092d269f18c7e28", + "sha256:ad4a6398c85d3a20067e6c69890ca01f68659da94d74c800298581724e426c7e", + "sha256:afa66939d834b0ce063f57d9895e8036ffc41c4bd90e4a99631e5f261d9b518e", + "sha256:b250ca2594f5599ca82ba7e68785a669b352156260c5362ea1b4e04a0f3e2389", + "sha256:b2950e4798e82dd9176935ef6a55cf6a448b5c71515a556da3f6b811a7844f1e", + "sha256:b599f4e89b3def9a94091e6ee52e1d7ad7bc33e238ebb9c4c63f211d74822c3f", + "sha256:c22541f0b672f4d741382a97c65609332a783501551445ab2df137ada01e019e", + "sha256:c451f7922992751a936b96c5f5b9bb9312243d9b754c34b33d0cb72c84669f4e", + "sha256:c59614b225d9f434ea8fc0d0bec51ef5fa8c83679afedc0433905994fb36d631", + "sha256:c6f16e21276074a12d8421692515b3fd6d2ea9c94fd0734c39a12960a20e85f3", + "sha256:c95980207b3998f2c3b3098f357994d3fd7661121f30669ca7cb945f09510a87", + "sha256:cccd3af9c48ac500c95e1bcbc498020c87e1781ff0345dd371462d67b76643eb", + "sha256:ce03f7b4129eb72f1687fa11300fbf677b02990618428934662406d2a76742a1", + "sha256:d4c8e1ed0ef31ad29cae5ea16b9e41529eb50a7fba70600008e9f8de6376d553", + "sha256:e3bbe3910c724b877846186c25fe3c802e105a2c1fc2b57d6688b9f8772026e4", + "sha256:e6375923c5f19888c9226582a124b77b622f8fd0018b843c45eeb19d9701c403", + "sha256:ea189db75f8eca08807d02ae27929e890c7d47599ce3d0a6a5d41f2419ecf338", + "sha256:f04bc2fc50dc77be9d10f73fcc4e39346402ffe21726ff41028f36e179b587e6", + "sha256:f16ca8f10e62f25fd81d5310e852df6649af17824146ca74647a018424ddeccf", + "sha256:f4be354c5de82157886ca7f5925dbda369b77344b4b4adf2723079715f823989" + ], + "markers": "python_version >= '3.8'", + "version": "==0.5.0" }, "kiwisolver": { "hashes": [ - "sha256:00bd361b903dc4bbf4eb165f24d1acbee754fce22ded24c3d56eec268658a5cf", - "sha256:040c1aebeda72197ef477a906782b5ab0d387642e93bda547336b8957c61022e", - "sha256:05703cf211d585109fcd72207a31bb170a0f22144d68298dc5e61b3c946518af", - "sha256:06f54715b7737c2fecdbf140d1afb11a33d59508a47bf11bb38ecf21dc9ab79f", - "sha256:0dc9db8e79f0036e8173c466d21ef18e1befc02de8bf8aa8dc0813a6dc8a7046", - "sha256:0f114aa76dc1b8f636d077979c0ac22e7cd8f3493abbab152f20eb8d3cda71f3", - "sha256:11863aa14a51fd6ec28688d76f1735f8f69ab1fabf388851a595d0721af042f5", - "sha256:11c7de8f692fc99816e8ac50d1d1aef4f75126eefc33ac79aac02c099fd3db71", - "sha256:11d011a7574eb3b82bcc9c1a1d35c1d7075677fdd15de527d91b46bd35e935ee", - "sha256:146d14bebb7f1dc4d5fbf74f8a6cb15ac42baadee8912eb84ac0b3b2a3dc6ac3", - "sha256:15568384086b6df3c65353820a4473575dbad192e35010f622c6ce3eebd57af9", - "sha256:19df6e621f6d8b4b9c4d45f40a66839294ff2bb235e64d2178f7522d9170ac5b", - "sha256:1b04139c4236a0f3aff534479b58f6f849a8b351e1314826c2d230849ed48985", - "sha256:210ef2c3a1f03272649aff1ef992df2e724748918c4bc2d5a90352849eb40bea", - "sha256:2270953c0d8cdab5d422bee7d2007f043473f9d2999631c86a223c9db56cbd16", - "sha256:2400873bccc260b6ae184b2b8a4fec0e4082d30648eadb7c3d9a13405d861e89", - "sha256:2a40773c71d7ccdd3798f6489aaac9eee213d566850a9533f8d26332d626b82c", - "sha256:2c5674c4e74d939b9d91dda0fae10597ac7521768fec9e399c70a1f27e2ea2d9", - "sha256:3195782b26fc03aa9c6913d5bad5aeb864bdc372924c093b0f1cebad603dd712", - "sha256:31a82d498054cac9f6d0b53d02bb85811185bcb477d4b60144f915f3b3126342", - "sha256:32d5cf40c4f7c7b3ca500f8985eb3fb3a7dfc023215e876f207956b5ea26632a", - "sha256:346f5343b9e3f00b8db8ba359350eb124b98c99efd0b408728ac6ebf38173958", - "sha256:378a214a1e3bbf5ac4a8708304318b4f890da88c9e6a07699c4ae7174c09a68d", - "sha256:39b42c68602539407884cf70d6a480a469b93b81b7701378ba5e2328660c847a", - "sha256:3a2b053a0ab7a3960c98725cfb0bf5b48ba82f64ec95fe06f1d06c99b552e130", - "sha256:3aba7311af82e335dd1e36ffff68aaca609ca6290c2cb6d821a39aa075d8e3ff", - "sha256:3cd32d6c13807e5c66a7cbb79f90b553642f296ae4518a60d8d76243b0ad2898", - "sha256:3edd2fa14e68c9be82c5b16689e8d63d89fe927e56debd6e1dbce7a26a17f81b", - "sha256:4c380469bd3f970ef677bf2bcba2b6b0b4d5c75e7a020fb863ef75084efad66f", - "sha256:4e66e81a5779b65ac21764c295087de82235597a2293d18d943f8e9e32746265", - "sha256:53abb58632235cd154176ced1ae8f0d29a6657aa1aa9decf50b899b755bc2b93", - "sha256:5794cf59533bc3f1b1c821f7206a3617999db9fbefc345360aafe2e067514929", - "sha256:59415f46a37f7f2efeec758353dd2eae1b07640d8ca0f0c42548ec4125492635", - "sha256:59ec7b7c7e1a61061850d53aaf8e93db63dce0c936db1fda2658b70e4a1be709", - "sha256:59edc41b24031bc25108e210c0def6f6c2191210492a972d585a06ff246bb79b", - "sha256:5a580c91d686376f0f7c295357595c5a026e6cbc3d77b7c36e290201e7c11ecb", - "sha256:5b94529f9b2591b7af5f3e0e730a4e0a41ea174af35a4fd067775f9bdfeee01a", - "sha256:5c7b3b3a728dc6faf3fc372ef24f21d1e3cee2ac3e9596691d746e5a536de920", - "sha256:5c90ae8c8d32e472be041e76f9d2f2dbff4d0b0be8bd4041770eddb18cf49a4e", - "sha256:5e7139af55d1688f8b960ee9ad5adafc4ac17c1c473fe07133ac092310d76544", - "sha256:5ff5cf3571589b6d13bfbfd6bcd7a3f659e42f96b5fd1c4830c4cf21d4f5ef45", - "sha256:620ced262a86244e2be10a676b646f29c34537d0d9cc8eb26c08f53d98013390", - "sha256:6512cb89e334e4700febbffaaa52761b65b4f5a3cf33f960213d5656cea36a77", - "sha256:6c08e1312a9cf1074d17b17728d3dfce2a5125b2d791527f33ffbe805200a355", - "sha256:6c3bd3cde54cafb87d74d8db50b909705c62b17c2099b8f2e25b461882e544ff", - "sha256:6ef7afcd2d281494c0a9101d5c571970708ad911d028137cd558f02b851c08b4", - "sha256:7269d9e5f1084a653d575c7ec012ff57f0c042258bf5db0954bf551c158466e7", - "sha256:72d40b33e834371fd330fb1472ca19d9b8327acb79a5821d4008391db8e29f20", - "sha256:74d1b44c6cfc897df648cc9fdaa09bc3e7679926e6f96df05775d4fb3946571c", - "sha256:74db36e14a7d1ce0986fa104f7d5637aea5c82ca6326ed0ec5694280942d1162", - "sha256:763773d53f07244148ccac5b084da5adb90bfaee39c197554f01b286cf869228", - "sha256:76c6a5964640638cdeaa0c359382e5703e9293030fe730018ca06bc2010c4437", - "sha256:76d9289ed3f7501012e05abb8358bbb129149dbd173f1f57a1bf1c22d19ab7cc", - "sha256:7931d8f1f67c4be9ba1dd9c451fb0eeca1a25b89e4d3f89e828fe12a519b782a", - "sha256:7b8b454bac16428b22560d0a1cf0a09875339cab69df61d7805bf48919415901", - "sha256:7e5bab140c309cb3a6ce373a9e71eb7e4873c70c2dda01df6820474f9889d6d4", - "sha256:83d78376d0d4fd884e2c114d0621624b73d2aba4e2788182d286309ebdeed770", - "sha256:852542f9481f4a62dbb5dd99e8ab7aedfeb8fb6342349a181d4036877410f525", - "sha256:85267bd1aa8880a9c88a8cb71e18d3d64d2751a790e6ca6c27b8ccc724bcd5ad", - "sha256:88a2df29d4724b9237fc0c6eaf2a1adae0cdc0b3e9f4d8e7dc54b16812d2d81a", - "sha256:88b9f257ca61b838b6f8094a62418421f87ac2a1069f7e896c36a7d86b5d4c29", - "sha256:8ab3919a9997ab7ef2fbbed0cc99bb28d3c13e6d4b1ad36e97e482558a91be90", - "sha256:92dea1ffe3714fa8eb6a314d2b3c773208d865a0e0d35e713ec54eea08a66250", - "sha256:9407b6a5f0d675e8a827ad8742e1d6b49d9c1a1da5d952a67d50ef5f4170b18d", - "sha256:9408acf3270c4b6baad483865191e3e582b638b1654a007c62e3efe96f09a9a3", - "sha256:955e8513d07a283056b1396e9a57ceddbd272d9252c14f154d450d227606eb54", - "sha256:9db8ea4c388fdb0f780fe91346fd438657ea602d58348753d9fb265ce1bca67f", - "sha256:9eaa8b117dc8337728e834b9c6e2611f10c79e38f65157c4c38e9400286f5cb1", - "sha256:a51a263952b1429e429ff236d2f5a21c5125437861baeed77f5e1cc2d2c7c6da", - "sha256:a6aa6315319a052b4ee378aa171959c898a6183f15c1e541821c5c59beaa0238", - "sha256:aa12042de0171fad672b6c59df69106d20d5596e4f87b5e8f76df757a7c399aa", - "sha256:aaf7be1207676ac608a50cd08f102f6742dbfc70e8d60c4db1c6897f62f71523", - "sha256:b0157420efcb803e71d1b28e2c287518b8808b7cf1ab8af36718fd0a2c453eb0", - "sha256:b3f7e75f3015df442238cca659f8baa5f42ce2a8582727981cbfa15fee0ee205", - "sha256:b9098e0049e88c6a24ff64545cdfc50807818ba6c1b739cae221bbbcbc58aad3", - "sha256:ba55dce0a9b8ff59495ddd050a0225d58bd0983d09f87cfe2b6aec4f2c1234e4", - "sha256:bb86433b1cfe686da83ce32a9d3a8dd308e85c76b60896d58f082136f10bffac", - "sha256:bbea0db94288e29afcc4c28afbf3a7ccaf2d7e027489c449cf7e8f83c6346eb9", - "sha256:bbf1d63eef84b2e8c89011b7f2235b1e0bf7dacc11cac9431fc6468e99ac77fb", - "sha256:c7940c1dc63eb37a67721b10d703247552416f719c4188c54e04334321351ced", - "sha256:c9bf3325c47b11b2e51bca0824ea217c7cd84491d8ac4eefd1e409705ef092bd", - "sha256:cdc8a402aaee9a798b50d8b827d7ecf75edc5fb35ea0f91f213ff927c15f4ff0", - "sha256:ceec1a6bc6cab1d6ff5d06592a91a692f90ec7505d6463a88a52cc0eb58545da", - "sha256:cfe6ab8da05c01ba6fbea630377b5da2cd9bcbc6338510116b01c1bc939a2c18", - "sha256:d099e745a512f7e3bbe7249ca835f4d357c586d78d79ae8f1dcd4d8adeb9bda9", - "sha256:d0ef46024e6a3d79c01ff13801cb19d0cad7fd859b15037aec74315540acc276", - "sha256:d2e5a98f0ec99beb3c10e13b387f8db39106d53993f498b295f0c914328b1333", - "sha256:da4cfb373035def307905d05041c1d06d8936452fe89d464743ae7fb8371078b", - "sha256:da802a19d6e15dffe4b0c24b38b3af68e6c1a68e6e1d8f30148c83864f3881db", - "sha256:dced8146011d2bc2e883f9bd68618b8247387f4bbec46d7392b3c3b032640126", - "sha256:dfdd7c0b105af050eb3d64997809dc21da247cf44e63dc73ff0fd20b96be55a9", - "sha256:e368f200bbc2e4f905b8e71eb38b3c04333bddaa6a2464a6355487b02bb7fb09", - "sha256:e391b1f0a8a5a10ab3b9bb6afcfd74f2175f24f8975fb87ecae700d1503cdee0", - "sha256:e57e563a57fb22a142da34f38acc2fc1a5c864bc29ca1517a88abc963e60d6ec", - "sha256:e5d706eba36b4c4d5bc6c6377bb6568098765e990cfc21ee16d13963fab7b3e7", - "sha256:ec20916e7b4cbfb1f12380e46486ec4bcbaa91a9c448b97023fde0d5bbf9e4ff", - "sha256:f1d072c2eb0ad60d4c183f3fb44ac6f73fb7a8f16a2694a91f988275cbf352f9", - "sha256:f846c260f483d1fd217fe5ed7c173fb109efa6b1fc8381c8b7552c5781756192", - "sha256:f91de7223d4c7b793867797bacd1ee53bfe7359bd70d27b7b58a04efbb9436c8", - "sha256:faae4860798c31530dd184046a900e652c95513796ef51a12bc086710c2eec4d", - "sha256:fc579bf0f502e54926519451b920e875f433aceb4624a3646b3252b5caa9e0b6", - "sha256:fcc700eadbbccbf6bc1bcb9dbe0786b4b1cb91ca0dcda336eef5c2beed37b797", - "sha256:fd32ea360bcbb92d28933fc05ed09bffcb1704ba3fc7942e81db0fd4f81a7892", - "sha256:fdb7adb641a0d13bdcd4ef48e062363d8a9ad4a182ac7647ec88f695e719ae9f" + "sha256:073a36c8273647592ea332e816e75ef8da5c303236ec0167196793eb1e34657a", + "sha256:08471d4d86cbaec61f86b217dd938a83d85e03785f51121e791a6e6689a3be95", + "sha256:0c18ec74c0472de033e1bebb2911c3c310eef5649133dd0bedf2a169a1b269e5", + "sha256:0c6c43471bc764fad4bc99c5c2d6d16a676b1abf844ca7c8702bdae92df01ee0", + "sha256:10849fb2c1ecbfae45a693c070e0320a91b35dd4bcf58172c023b994283a124d", + "sha256:18077b53dc3bb490e330669a99920c5e6a496889ae8c63b58fbc57c3d7f33a18", + "sha256:18e0cca3e008e17fe9b164b55735a325140a5a35faad8de92dd80265cd5eb80b", + "sha256:22f499f6157236c19f4bbbd472fa55b063db77a16cd74d49afe28992dff8c258", + "sha256:2a8781ac3edc42ea4b90bc23e7d37b665d89423818e26eb6df90698aa2287c95", + "sha256:2e6039dcbe79a8e0f044f1c39db1986a1b8071051efba3ee4d74f5b365f5226e", + "sha256:34ea1de54beef1c104422d210c47c7d2a4999bdecf42c7b5718fbe59a4cac383", + "sha256:3ab58c12a2cd0fc769089e6d38466c46d7f76aced0a1f54c77652446733d2d02", + "sha256:3abc5b19d24af4b77d1598a585b8a719beb8569a71568b66f4ebe1fb0449460b", + "sha256:3bf1ed55088f214ba6427484c59553123fdd9b218a42bbc8c6496d6754b1e523", + "sha256:3ce6b2b0231bda412463e152fc18335ba32faf4e8c23a754ad50ffa70e4091ee", + "sha256:3da53da805b71e41053dc670f9a820d1157aae77b6b944e08024d17bcd51ef88", + "sha256:3f9362ecfca44c863569d3d3c033dbe8ba452ff8eed6f6b5806382741a1334bd", + "sha256:409afdfe1e2e90e6ee7fc896f3df9a7fec8e793e58bfa0d052c8a82f99c37abb", + "sha256:40fa14dbd66b8b8f470d5fc79c089a66185619d31645f9b0773b88b19f7223c4", + "sha256:4322872d5772cae7369f8351da1edf255a604ea7087fe295411397d0cfd9655e", + "sha256:44756f9fd339de0fb6ee4f8c1696cfd19b2422e0d70b4cefc1cc7f1f64045a8c", + "sha256:46707a10836894b559e04b0fd143e343945c97fd170d69a2d26d640b4e297935", + "sha256:48b571ecd8bae15702e4f22d3ff6a0f13e54d3d00cd25216d5e7f658242065ee", + "sha256:48be928f59a1f5c8207154f935334d374e79f2b5d212826307d072595ad76a2e", + "sha256:4bfa75a048c056a411f9705856abfc872558e33c055d80af6a380e3658766038", + "sha256:4c00336b9dd5ad96d0a558fd18a8b6f711b7449acce4c157e7343ba92dd0cf3d", + "sha256:4c26ed10c4f6fa6ddb329a5120ba3b6db349ca192ae211e882970bfc9d91420b", + "sha256:4d05d81ecb47d11e7f8932bd8b61b720bf0b41199358f3f5e36d38e28f0532c5", + "sha256:4e77f2126c3e0b0d055f44513ed349038ac180371ed9b52fe96a32aa071a5107", + "sha256:5337ec7809bcd0f424c6b705ecf97941c46279cf5ed92311782c7c9c2026f07f", + "sha256:5360cc32706dab3931f738d3079652d20982511f7c0ac5711483e6eab08efff2", + "sha256:58370b1ffbd35407444d57057b57da5d6549d2d854fa30249771775c63b5fe17", + "sha256:58cb20602b18f86f83a5c87d3ee1c766a79c0d452f8def86d925e6c60fbf7bfb", + "sha256:599b5c873c63a1f6ed7eead644a8a380cfbdf5db91dcb6f85707aaab213b1674", + "sha256:5b7dfa3b546da08a9f622bb6becdb14b3e24aaa30adba66749d38f3cc7ea9706", + "sha256:5b9c3f4ee0b9a439d2415012bd1b1cc2df59e4d6a9939f4d669241d30b414327", + "sha256:5d34eb8494bea691a1a450141ebb5385e4b69d38bb8403b5146ad279f4b30fa3", + "sha256:5d5abf8f8ec1f4e22882273c423e16cae834c36856cac348cfbfa68e01c40f3a", + "sha256:5e3bc157fed2a4c02ec468de4ecd12a6e22818d4f09cde2c31ee3226ffbefab2", + "sha256:612a10bdae23404a72941a0fc8fa2660c6ea1217c4ce0dbcab8a8f6543ea9e7f", + "sha256:657a05857bda581c3656bfc3b20e353c232e9193eb167766ad2dc58b56504948", + "sha256:65e720d2ab2b53f1f72fb5da5fb477455905ce2c88aaa671ff0a447c2c80e8e3", + "sha256:693902d433cf585133699972b6d7c42a8b9f8f826ebcaf0132ff55200afc599e", + "sha256:6af936f79086a89b3680a280c47ea90b4df7047b5bdf3aa5c524bbedddb9e545", + "sha256:71bb308552200fb2c195e35ef05de12f0c878c07fc91c270eb3d6e41698c3bcc", + "sha256:764202cc7e70f767dab49e8df52c7455e8de0df5d858fa801a11aa0d882ccf3f", + "sha256:76c8094ac20ec259471ac53e774623eb62e6e1f56cd8690c67ce6ce4fcb05650", + "sha256:78a42513018c41c2ffd262eb676442315cbfe3c44eed82385c2ed043bc63210a", + "sha256:79849239c39b5e1fd906556c474d9b0439ea6792b637511f3fe3a41158d89ca8", + "sha256:7ab9ccab2b5bd5702ab0803676a580fffa2aa178c2badc5557a84cc943fcf750", + "sha256:7bbfcb7165ce3d54a3dfbe731e470f65739c4c1f85bb1018ee912bae139e263b", + "sha256:7c06a4c7cf15ec739ce0e5971b26c93638730090add60e183530d70848ebdd34", + "sha256:801fa7802e5cfabe3ab0c81a34c323a319b097dfb5004be950482d882f3d7225", + "sha256:803b8e1459341c1bb56d1c5c010406d5edec8a0713a0945851290a7930679b51", + "sha256:82a5c2f4b87c26bb1a0ef3d16b5c4753434633b83d365cc0ddf2770c93829e3c", + "sha256:84ec80df401cfee1457063732d90022f93951944b5b58975d34ab56bb150dfb3", + "sha256:8705f17dfeb43139a692298cb6637ee2e59c0194538153e83e9ee0c75c2eddde", + "sha256:88a9ca9c710d598fd75ee5de59d5bda2684d9db36a9f50b6125eaea3969c2599", + "sha256:88f17c5ffa8e9462fb79f62746428dd57b46eb931698e42e990ad63103f35e6c", + "sha256:8a3ec5aa8e38fc4c8af308917ce12c536f1c88452ce554027e55b22cbbfbff76", + "sha256:8a9c83f75223d5e48b0bc9cb1bf2776cf01563e00ade8775ffe13b0b6e1af3a6", + "sha256:8b01aac285f91ca889c800042c35ad3b239e704b150cfd3382adfc9dcc780e39", + "sha256:8d53103597a252fb3ab8b5845af04c7a26d5e7ea8122303dd7a021176a87e8b9", + "sha256:8e045731a5416357638d1700927529e2b8ab304811671f665b225f8bf8d8f933", + "sha256:8f0ea6da6d393d8b2e187e6a5e3fb81f5862010a40c3945e2c6d12ae45cfb2ad", + "sha256:90da3b5f694b85231cf93586dad5e90e2d71b9428f9aad96952c99055582f520", + "sha256:913983ad2deb14e66d83c28b632fd35ba2b825031f2fa4ca29675e665dfecbe1", + "sha256:9242795d174daa40105c1d86aba618e8eab7bf96ba8c3ee614da8302a9f95503", + "sha256:929e294c1ac1e9f615c62a4e4313ca1823ba37326c164ec720a803287c4c499b", + "sha256:933d4de052939d90afbe6e9d5273ae05fb836cc86c15b686edd4b3560cc0ee36", + "sha256:942216596dc64ddb25adb215c3c783215b23626f8d84e8eff8d6d45c3f29f75a", + "sha256:94252291e3fe68001b1dd747b4c0b3be12582839b95ad4d1b641924d68fd4643", + "sha256:9893ff81bd7107f7b685d3017cc6583daadb4fc26e4a888350df530e41980a60", + "sha256:9e838bba3a3bac0fe06d849d29772eb1afb9745a59710762e4ba3f4cb8424483", + "sha256:a0f64a48bb81af7450e641e3fe0b0394d7381e342805479178b3d335d60ca7cf", + "sha256:a17f6a29cf8935e587cc8a4dbfc8368c55edc645283db0ce9801016f83526c2d", + "sha256:a1ecf0ac1c518487d9d23b1cd7139a6a65bc460cd101ab01f1be82ecf09794b6", + "sha256:a79ae34384df2b615eefca647a2873842ac3b596418032bef9a7283675962644", + "sha256:a91b5f9f1205845d488c928e8570dcb62b893372f63b8b6e98b863ebd2368ff2", + "sha256:aa0abdf853e09aff551db11fce173e2177d00786c688203f52c87ad7fcd91ef9", + "sha256:ac542bf38a8a4be2dc6b15248d36315ccc65f0743f7b1a76688ffb6b5129a5c2", + "sha256:ad42ba922c67c5f219097b28fae965e10045ddf145d2928bfac2eb2e17673640", + "sha256:aeb3531b196ef6f11776c21674dba836aeea9d5bd1cf630f869e3d90b16cfade", + "sha256:b38ac83d5f04b15e515fd86f312479d950d05ce2368d5413d46c088dda7de90a", + "sha256:b7d755065e4e866a8086c9bdada157133ff466476a2ad7861828e17b6026e22c", + "sha256:bd3de6481f4ed8b734da5df134cd5a6a64fe32124fe83dde1e5b5f29fe30b1e6", + "sha256:bfa1acfa0c54932d5607e19a2c24646fb4c1ae2694437789129cf099789a3b00", + "sha256:c619b101e6de2222c1fcb0531e1b17bbffbe54294bfba43ea0d411d428618c27", + "sha256:ce8be0466f4c0d585cdb6c1e2ed07232221df101a4c6f28821d2aa754ca2d9e2", + "sha256:cf0438b42121a66a3a667de17e779330fc0f20b0d97d59d2f2121e182b0505e4", + "sha256:cf8bcc23ceb5a1b624572a1623b9f79d2c3b337c8c455405ef231933a10da379", + "sha256:d2b0e12a42fb4e72d509fc994713d099cbb15ebf1103545e8a45f14da2dfca54", + "sha256:d83db7cde68459fc803052a55ace60bea2bae361fc3b7a6d5da07e11954e4b09", + "sha256:dda56c24d869b1193fcc763f1284b9126550eaf84b88bbc7256e15028f19188a", + "sha256:dea0bf229319828467d7fca8c7c189780aa9ff679c94539eed7532ebe33ed37c", + "sha256:e1631290ee9271dffe3062d2634c3ecac02c83890ada077d225e081aca8aab89", + "sha256:e28c7fea2196bf4c2f8d46a0415c77a1c480cc0724722f23d7410ffe9842c407", + "sha256:e2e6c39bd7b9372b0be21456caab138e8e69cc0fc1190a9dfa92bd45a1e6e904", + "sha256:e33e8fbd440c917106b237ef1a2f1449dfbb9b6f6e1ce17c94cd6a1e0d438376", + "sha256:e8df2eb9b2bac43ef8b082e06f750350fbbaf2887534a5be97f6cf07b19d9583", + "sha256:e968b84db54f9d42046cf154e02911e39c0435c9801681e3fc9ce8a3c4130278", + "sha256:eb542fe7933aa09d8d8f9d9097ef37532a7df6497819d16efe4359890a2f417a", + "sha256:edcfc407e4eb17e037bca59be0e85a2031a2ac87e4fed26d3e9df88b4165f92d", + "sha256:eee3ea935c3d227d49b4eb85660ff631556841f6e567f0f7bda972df6c2c9935", + "sha256:ef97b8df011141c9b0f6caf23b29379f87dd13183c978a30a3c546d2c47314cb", + "sha256:f106407dda69ae456dd1227966bf445b157ccc80ba0dff3802bb63f30b74e895", + "sha256:f3160309af4396e0ed04db259c3ccbfdc3621b5559b5453075e5de555e1f3a1b", + "sha256:f32d6edbc638cde7652bd690c3e728b25332acbadd7cad670cc4a02558d9c417", + "sha256:f37cfe618a117e50d8c240555331160d73d0411422b59b5ee217843d7b693608", + "sha256:f4c9aee212bc89d4e13f58be11a56cc8036cabad119259d12ace14b34476fd07", + "sha256:f4d742cb7af1c28303a51b7a27aaee540e71bb8e24f68c736f6f2ffc82f2bf05", + "sha256:f5a8b53bdc0b3961f8b6125e198617c40aeed638b387913bf1ce78afb1b0be2a", + "sha256:f816dd2277f8d63d79f9c8473a79fe54047bc0467754962840782c575522224d", + "sha256:f9a9e8a507420fe35992ee9ecb302dab68550dedc0da9e2880dd88071c5fb052" ], - "markers": "python_version >= '3.7'", - "version": "==1.4.5" + "markers": "python_version >= '3.8'", + "version": "==1.4.7" }, "markupsafe": { "hashes": [ @@ -718,38 +845,50 @@ }, "matplotlib": { "hashes": [ - "sha256:1c13f041a7178f9780fb61cc3a2b10423d5e125480e4be51beaf62b172413b67", - "sha256:232ce322bfd020a434caaffbd9a95333f7c2491e59cfc014041d95e38ab90d1c", - "sha256:493e9f6aa5819156b58fce42b296ea31969f2aab71c5b680b4ea7a3cb5c07d94", - "sha256:50bac6e4d77e4262c4340d7a985c30912054745ec99756ce213bfbc3cb3808eb", - "sha256:606e3b90897554c989b1e38a258c626d46c873523de432b1462f295db13de6f9", - "sha256:6209e5c9aaccc056e63b547a8152661324404dd92340a6e479b3a7f24b42a5d0", - "sha256:6485ac1f2e84676cff22e693eaa4fbed50ef5dc37173ce1f023daef4687df616", - "sha256:6addbd5b488aedb7f9bc19f91cd87ea476206f45d7116fcfe3d31416702a82fa", - "sha256:72f9322712e4562e792b2961971891b9fbbb0e525011e09ea0d1f416c4645661", - "sha256:7a6769f58ce51791b4cb8b4d7642489df347697cd3e23d88266aaaee93b41d9a", - "sha256:8080d5081a86e690d7688ffa542532e87f224c38a6ed71f8fbed34dd1d9fedae", - "sha256:843cbde2f0946dadd8c5c11c6d91847abd18ec76859dc319362a0964493f0ba6", - "sha256:8aac397d5e9ec158960e31c381c5ffc52ddd52bd9a47717e2a694038167dffea", - "sha256:8f65c9f002d281a6e904976007b2d46a1ee2bcea3a68a8c12dda24709ddc9106", - "sha256:90df07db7b599fe7035d2f74ab7e438b656528c68ba6bb59b7dc46af39ee48ef", - "sha256:9bb0189011785ea794ee827b68777db3ca3f93f3e339ea4d920315a0e5a78d54", - "sha256:a0e47eda4eb2614300fc7bb4657fced3e83d6334d03da2173b09e447418d499f", - "sha256:abc9d838f93583650c35eca41cfcec65b2e7cb50fd486da6f0c49b5e1ed23014", - "sha256:ac24233e8f2939ac4fd2919eed1e9c0871eac8057666070e94cbf0b33dd9c338", - "sha256:b12ba985837e4899b762b81f5b2845bd1a28f4fdd1a126d9ace64e9c4eb2fb25", - "sha256:b7a2a253d3b36d90c8993b4620183b55665a429da8357a4f621e78cd48b2b30b", - "sha256:c7064120a59ce6f64103c9cefba8ffe6fba87f2c61d67c401186423c9a20fd35", - "sha256:c89ee9314ef48c72fe92ce55c4e95f2f39d70208f9f1d9db4e64079420d8d732", - "sha256:cc4ccdc64e3039fc303defd119658148f2349239871db72cd74e2eeaa9b80b71", - "sha256:ce1edd9f5383b504dbc26eeea404ed0a00656c526638129028b758fd43fc5f10", - "sha256:ecd79298550cba13a43c340581a3ec9c707bd895a6a061a78fa2524660482fc0", - "sha256:f51c4c869d4b60d769f7b4406eec39596648d9d70246428745a681c327a8ad30", - "sha256:fb44f53af0a62dc80bba4443d9b27f2fde6acfdac281d95bc872dc148a6509cc" + "sha256:039082812cacd6c6bec8e17a9c1e6baca230d4116d522e81e1f63a74d01d2e21", + "sha256:03ba9c1299c920964e8d3857ba27173b4dbb51ca4bab47ffc2c2ba0eb5e2cbc5", + "sha256:050598c2b29e0b9832cde72bcf97627bf00262adbc4a54e2b856426bb2ef0697", + "sha256:18128cc08f0d3cfff10b76baa2f296fc28c4607368a8402de61bb3f2eb33c7d9", + "sha256:1cd93b91ab47a3616b4d3c42b52f8363b88ca021e340804c6ab2536344fad9ca", + "sha256:1d94ff717eb2bd0b58fe66380bd8b14ac35f48a98e7c6765117fe67fb7684e64", + "sha256:306c8dfc73239f0e72ac50e5a9cf19cc4e8e331dd0c54f5e69ca8758550f1e1e", + "sha256:37e51dd1c2db16ede9cfd7b5cabdfc818b2c6397c83f8b10e0e797501c963a03", + "sha256:3fd595f34aa8a55b7fc8bf9ebea8aa665a84c82d275190a61118d33fbc82ccae", + "sha256:4876d7d40219e8ae8bb70f9263bcbe5714415acfdf781086601211335e24f8aa", + "sha256:5413401594cfaff0052f9d8b1aafc6d305b4bd7c4331dccd18f561ff7e1d3bd3", + "sha256:5816b1e1fe8c192cbc013f8f3e3368ac56fbecf02fb41b8f8559303f24c5015e", + "sha256:65aacf95b62272d568044531e41de26285d54aec8cb859031f511f84bd8b495a", + "sha256:6758baae2ed64f2331d4fd19be38b7b4eae3ecec210049a26b6a4f3ae1c85dcc", + "sha256:6d1ce5ed2aefcdce11904fc5bbea7d9c21fff3d5f543841edf3dea84451a09ea", + "sha256:6d9f07a80deab4bb0b82858a9e9ad53d1382fd122be8cde11080f4e7dfedb38b", + "sha256:7741f26a58a240f43bee74965c4882b6c93df3e7eb3de160126d8c8f53a6ae6e", + "sha256:8912ef7c2362f7193b5819d17dae8629b34a95c58603d781329712ada83f9447", + "sha256:909645cce2dc28b735674ce0931a4ac94e12f5b13f6bb0b5a5e65e7cea2c192b", + "sha256:96ab43906269ca64a6366934106fa01534454a69e471b7bf3d79083981aaab92", + "sha256:9d78bbc0cbc891ad55b4f39a48c22182e9bdaea7fc0e5dbd364f49f729ca1bbb", + "sha256:ab68d50c06938ef28681073327795c5db99bb4666214d2d5f880ed11aeaded66", + "sha256:ac43031375a65c3196bee99f6001e7fa5bdfb00ddf43379d3c0609bdca042df9", + "sha256:ae82a14dab96fbfad7965403c643cafe6515e386de723e498cf3eeb1e0b70cc7", + "sha256:b2696efdc08648536efd4e1601b5fd491fd47f4db97a5fbfd175549a7365c1b2", + "sha256:b82c5045cebcecd8496a4d694d43f9cc84aeeb49fe2133e036b207abe73f4d30", + "sha256:be0fc24a5e4531ae4d8e858a1a548c1fe33b176bb13eff7f9d0d38ce5112a27d", + "sha256:bf81de2926c2db243c9b2cbc3917619a0fc85796c6ba4e58f541df814bbf83c7", + "sha256:c375cc72229614632c87355366bdf2570c2dac01ac66b8ad048d2dabadf2d0d4", + "sha256:c797dac8bb9c7a3fd3382b16fe8f215b4cf0f22adccea36f1545a6d7be310b41", + "sha256:cef2a73d06601437be399908cf13aee74e86932a5ccc6ccdf173408ebc5f6bb2", + "sha256:d52a3b618cb1cbb769ce2ee1dcdb333c3ab6e823944e9a2d36e37253815f9556", + "sha256:d719465db13267bcef19ea8954a971db03b9f48b4647e3860e4bc8e6ed86610f", + "sha256:d8dd059447824eec055e829258ab092b56bb0579fc3164fa09c64f3acd478772", + "sha256:dbe196377a8248972f5cede786d4c5508ed5f5ca4a1e09b44bda889958b33f8c", + "sha256:e0830e188029c14e891fadd99702fd90d317df294c3298aad682739c5533721a", + "sha256:f053c40f94bc51bc03832a41b4f153d83f2062d88c72b5e79997072594e97e51", + "sha256:f32c7410c7f246838a77d6d1eff0c0f87f3cb0e7c4247aebea71a6d5a68cab49", + "sha256:f6ee45bc4245533111ced13f1f2cace1e7f89d1c793390392a80c139d6cf0e6c", + "sha256:f7c0410f181a531ec4e93bbc27692f2c71a15c2da16766f5ba9761e7ae518413" ], "index": "pypi", "markers": "python_version >= '3.9'", - "version": "==3.8.4" + "version": "==3.9.2" }, "misskey.py": { "hashes": [ @@ -759,285 +898,328 @@ }, "multidict": { "hashes": [ - "sha256:01265f5e40f5a17f8241d52656ed27192be03bfa8764d88e8220141d1e4b3556", - "sha256:0275e35209c27a3f7951e1ce7aaf93ce0d163b28948444bec61dd7badc6d3f8c", - "sha256:04bde7a7b3de05732a4eb39c94574db1ec99abb56162d6c520ad26f83267de29", - "sha256:04da1bb8c8dbadf2a18a452639771951c662c5ad03aefe4884775454be322c9b", - "sha256:09a892e4a9fb47331da06948690ae38eaa2426de97b4ccbfafbdcbe5c8f37ff8", - "sha256:0d63c74e3d7ab26de115c49bffc92cc77ed23395303d496eae515d4204a625e7", - "sha256:107c0cdefe028703fb5dafe640a409cb146d44a6ae201e55b35a4af8e95457dd", - "sha256:141b43360bfd3bdd75f15ed811850763555a251e38b2405967f8e25fb43f7d40", - "sha256:14c2976aa9038c2629efa2c148022ed5eb4cb939e15ec7aace7ca932f48f9ba6", - "sha256:19fe01cea168585ba0f678cad6f58133db2aa14eccaf22f88e4a6dccadfad8b3", - "sha256:1d147090048129ce3c453f0292e7697d333db95e52616b3793922945804a433c", - "sha256:1d9ea7a7e779d7a3561aade7d596649fbecfa5c08a7674b11b423783217933f9", - "sha256:215ed703caf15f578dca76ee6f6b21b7603791ae090fbf1ef9d865571039ade5", - "sha256:21fd81c4ebdb4f214161be351eb5bcf385426bf023041da2fd9e60681f3cebae", - "sha256:220dd781e3f7af2c2c1053da9fa96d9cf3072ca58f057f4c5adaaa1cab8fc442", - "sha256:228b644ae063c10e7f324ab1ab6b548bdf6f8b47f3ec234fef1093bc2735e5f9", - "sha256:29bfeb0dff5cb5fdab2023a7a9947b3b4af63e9c47cae2a10ad58394b517fddc", - "sha256:2f4848aa3baa109e6ab81fe2006c77ed4d3cd1e0ac2c1fbddb7b1277c168788c", - "sha256:2faa5ae9376faba05f630d7e5e6be05be22913782b927b19d12b8145968a85ea", - "sha256:2ffc42c922dbfddb4a4c3b438eb056828719f07608af27d163191cb3e3aa6cc5", - "sha256:37b15024f864916b4951adb95d3a80c9431299080341ab9544ed148091b53f50", - "sha256:3cc2ad10255f903656017363cd59436f2111443a76f996584d1077e43ee51182", - "sha256:3d25f19500588cbc47dc19081d78131c32637c25804df8414463ec908631e453", - "sha256:403c0911cd5d5791605808b942c88a8155c2592e05332d2bf78f18697a5fa15e", - "sha256:411bf8515f3be9813d06004cac41ccf7d1cd46dfe233705933dd163b60e37600", - "sha256:425bf820055005bfc8aa9a0b99ccb52cc2f4070153e34b701acc98d201693733", - "sha256:435a0984199d81ca178b9ae2c26ec3d49692d20ee29bc4c11a2a8d4514c67eda", - "sha256:4a6a4f196f08c58c59e0b8ef8ec441d12aee4125a7d4f4fef000ccb22f8d7241", - "sha256:4cc0ef8b962ac7a5e62b9e826bd0cd5040e7d401bc45a6835910ed699037a461", - "sha256:51d035609b86722963404f711db441cf7134f1889107fb171a970c9701f92e1e", - "sha256:53689bb4e102200a4fafa9de9c7c3c212ab40a7ab2c8e474491914d2305f187e", - "sha256:55205d03e8a598cfc688c71ca8ea5f66447164efff8869517f175ea632c7cb7b", - "sha256:5c0631926c4f58e9a5ccce555ad7747d9a9f8b10619621f22f9635f069f6233e", - "sha256:5cb241881eefd96b46f89b1a056187ea8e9ba14ab88ba632e68d7a2ecb7aadf7", - "sha256:60d698e8179a42ec85172d12f50b1668254628425a6bd611aba022257cac1386", - "sha256:612d1156111ae11d14afaf3a0669ebf6c170dbb735e510a7438ffe2369a847fd", - "sha256:6214c5a5571802c33f80e6c84713b2c79e024995b9c5897f794b43e714daeec9", - "sha256:6939c95381e003f54cd4c5516740faba40cf5ad3eeff460c3ad1d3e0ea2549bf", - "sha256:69db76c09796b313331bb7048229e3bee7928eb62bab5e071e9f7fcc4879caee", - "sha256:6bf7a982604375a8d49b6cc1b781c1747f243d91b81035a9b43a2126c04766f5", - "sha256:766c8f7511df26d9f11cd3a8be623e59cca73d44643abab3f8c8c07620524e4a", - "sha256:76c0de87358b192de7ea9649beb392f107dcad9ad27276324c24c91774ca5271", - "sha256:76f067f5121dcecf0d63a67f29080b26c43c71a98b10c701b0677e4a065fbd54", - "sha256:7901c05ead4b3fb75113fb1dd33eb1253c6d3ee37ce93305acd9d38e0b5f21a4", - "sha256:79660376075cfd4b2c80f295528aa6beb2058fd289f4c9252f986751a4cd0496", - "sha256:79a6d2ba910adb2cbafc95dad936f8b9386e77c84c35bc0add315b856d7c3abb", - "sha256:7afcdd1fc07befad18ec4523a782cde4e93e0a2bf71239894b8d61ee578c1319", - "sha256:7be7047bd08accdb7487737631d25735c9a04327911de89ff1b26b81745bd4e3", - "sha256:7c6390cf87ff6234643428991b7359b5f59cc15155695deb4eda5c777d2b880f", - "sha256:7df704ca8cf4a073334e0427ae2345323613e4df18cc224f647f251e5e75a527", - "sha256:85f67aed7bb647f93e7520633d8f51d3cbc6ab96957c71272b286b2f30dc70ed", - "sha256:896ebdcf62683551312c30e20614305f53125750803b614e9e6ce74a96232604", - "sha256:92d16a3e275e38293623ebf639c471d3e03bb20b8ebb845237e0d3664914caef", - "sha256:99f60d34c048c5c2fabc766108c103612344c46e35d4ed9ae0673d33c8fb26e8", - "sha256:9fe7b0653ba3d9d65cbe7698cca585bf0f8c83dbbcc710db9c90f478e175f2d5", - "sha256:a3145cb08d8625b2d3fee1b2d596a8766352979c9bffe5d7833e0503d0f0b5e5", - "sha256:aeaf541ddbad8311a87dd695ed9642401131ea39ad7bc8cf3ef3967fd093b626", - "sha256:b55358304d7a73d7bdf5de62494aaf70bd33015831ffd98bc498b433dfe5b10c", - "sha256:b82cc8ace10ab5bd93235dfaab2021c70637005e1ac787031f4d1da63d493c1d", - "sha256:c0868d64af83169e4d4152ec612637a543f7a336e4a307b119e98042e852ad9c", - "sha256:c1c1496e73051918fcd4f58ff2e0f2f3066d1c76a0c6aeffd9b45d53243702cc", - "sha256:c9bf56195c6bbd293340ea82eafd0071cb3d450c703d2c93afb89f93b8386ccc", - "sha256:cbebcd5bcaf1eaf302617c114aa67569dd3f090dd0ce8ba9e35e9985b41ac35b", - "sha256:cd6c8fca38178e12c00418de737aef1261576bd1b6e8c6134d3e729a4e858b38", - "sha256:ceb3b7e6a0135e092de86110c5a74e46bda4bd4fbfeeb3a3bcec79c0f861e450", - "sha256:cf590b134eb70629e350691ecca88eac3e3b8b3c86992042fb82e3cb1830d5e1", - "sha256:d3eb1ceec286eba8220c26f3b0096cf189aea7057b6e7b7a2e60ed36b373b77f", - "sha256:d65f25da8e248202bd47445cec78e0025c0fe7582b23ec69c3b27a640dd7a8e3", - "sha256:d6f6d4f185481c9669b9447bf9d9cf3b95a0e9df9d169bbc17e363b7d5487755", - "sha256:d84a5c3a5f7ce6db1f999fb9438f686bc2e09d38143f2d93d8406ed2dd6b9226", - "sha256:d946b0a9eb8aaa590df1fe082cee553ceab173e6cb5b03239716338629c50c7a", - "sha256:dce1c6912ab9ff5f179eaf6efe7365c1f425ed690b03341911bf4939ef2f3046", - "sha256:de170c7b4fe6859beb8926e84f7d7d6c693dfe8e27372ce3b76f01c46e489fcf", - "sha256:e02021f87a5b6932fa6ce916ca004c4d441509d33bbdbeca70d05dff5e9d2479", - "sha256:e030047e85cbcedbfc073f71836d62dd5dadfbe7531cae27789ff66bc551bd5e", - "sha256:e0e79d91e71b9867c73323a3444724d496c037e578a0e1755ae159ba14f4f3d1", - "sha256:e4428b29611e989719874670fd152b6625500ad6c686d464e99f5aaeeaca175a", - "sha256:e4972624066095e52b569e02b5ca97dbd7a7ddd4294bf4e7247d52635630dd83", - "sha256:e7be68734bd8c9a513f2b0cfd508802d6609da068f40dc57d4e3494cefc92929", - "sha256:e8e94e6912639a02ce173341ff62cc1201232ab86b8a8fcc05572741a5dc7d93", - "sha256:ea1456df2a27c73ce51120fa2f519f1bea2f4a03a917f4a43c8707cf4cbbae1a", - "sha256:ebd8d160f91a764652d3e51ce0d2956b38efe37c9231cd82cfc0bed2e40b581c", - "sha256:eca2e9d0cc5a889850e9bbd68e98314ada174ff6ccd1129500103df7a94a7a44", - "sha256:edd08e6f2f1a390bf137080507e44ccc086353c8e98c657e666c017718561b89", - "sha256:f285e862d2f153a70586579c15c44656f888806ed0e5b56b64489afe4a2dbfba", - "sha256:f2a1dee728b52b33eebff5072817176c172050d44d67befd681609b4746e1c2e", - "sha256:f7e301075edaf50500f0b341543c41194d8df3ae5caf4702f2095f3ca73dd8da", - "sha256:fb616be3538599e797a2017cccca78e354c767165e8858ab5116813146041a24", - "sha256:fce28b3c8a81b6b36dfac9feb1de115bab619b3c13905b419ec71d03a3fc1423", - "sha256:fe5d7785250541f7f5019ab9cba2c71169dc7d74d0f45253f8313f436458a4ef" + "sha256:052e10d2d37810b99cc170b785945421141bf7bb7d2f8799d431e7db229c385f", + "sha256:06809f4f0f7ab7ea2cabf9caca7d79c22c0758b58a71f9d32943ae13c7ace056", + "sha256:071120490b47aa997cca00666923a83f02c7fbb44f71cf7f136df753f7fa8761", + "sha256:0c3f390dc53279cbc8ba976e5f8035eab997829066756d811616b652b00a23a3", + "sha256:0e2b90b43e696f25c62656389d32236e049568b39320e2735d51f08fd362761b", + "sha256:0e5f362e895bc5b9e67fe6e4ded2492d8124bdf817827f33c5b46c2fe3ffaca6", + "sha256:10524ebd769727ac77ef2278390fb0068d83f3acb7773792a5080f2b0abf7748", + "sha256:10a9b09aba0c5b48c53761b7c720aaaf7cf236d5fe394cd399c7ba662d5f9966", + "sha256:16e5f4bf4e603eb1fdd5d8180f1a25f30056f22e55ce51fb3d6ad4ab29f7d96f", + "sha256:188215fc0aafb8e03341995e7c4797860181562380f81ed0a87ff455b70bf1f1", + "sha256:189f652a87e876098bbc67b4da1049afb5f5dfbaa310dd67c594b01c10388db6", + "sha256:1ca0083e80e791cffc6efce7660ad24af66c8d4079d2a750b29001b53ff59ada", + "sha256:1e16bf3e5fc9f44632affb159d30a437bfe286ce9e02754759be5536b169b305", + "sha256:2090f6a85cafc5b2db085124d752757c9d251548cedabe9bd31afe6363e0aff2", + "sha256:20b9b5fbe0b88d0bdef2012ef7dee867f874b72528cf1d08f1d59b0e3850129d", + "sha256:22ae2ebf9b0c69d206c003e2f6a914ea33f0a932d4aa16f236afc049d9958f4a", + "sha256:22f3105d4fb15c8f57ff3959a58fcab6ce36814486500cd7485651230ad4d4ef", + "sha256:23bfd518810af7de1116313ebd9092cb9aa629beb12f6ed631ad53356ed6b86c", + "sha256:27e5fc84ccef8dfaabb09d82b7d179c7cf1a3fbc8a966f8274fcb4ab2eb4cadb", + "sha256:3380252550e372e8511d49481bd836264c009adb826b23fefcc5dd3c69692f60", + "sha256:3702ea6872c5a2a4eeefa6ffd36b042e9773f05b1f37ae3ef7264b1163c2dcf6", + "sha256:37bb93b2178e02b7b618893990941900fd25b6b9ac0fa49931a40aecdf083fe4", + "sha256:3914f5aaa0f36d5d60e8ece6a308ee1c9784cd75ec8151062614657a114c4478", + "sha256:3a37ffb35399029b45c6cc33640a92bef403c9fd388acce75cdc88f58bd19a81", + "sha256:3c8b88a2ccf5493b6c8da9076fb151ba106960a2df90c2633f342f120751a9e7", + "sha256:3e97b5e938051226dc025ec80980c285b053ffb1e25a3db2a3aa3bc046bf7f56", + "sha256:3ec660d19bbc671e3a6443325f07263be452c453ac9e512f5eb935e7d4ac28b3", + "sha256:3efe2c2cb5763f2f1b275ad2bf7a287d3f7ebbef35648a9726e3b69284a4f3d6", + "sha256:483a6aea59cb89904e1ceabd2b47368b5600fb7de78a6e4a2c2987b2d256cf30", + "sha256:4867cafcbc6585e4b678876c489b9273b13e9fff9f6d6d66add5e15d11d926cb", + "sha256:48e171e52d1c4d33888e529b999e5900356b9ae588c2f09a52dcefb158b27506", + "sha256:4a9cb68166a34117d6646c0023c7b759bf197bee5ad4272f420a0141d7eb03a0", + "sha256:4b820514bfc0b98a30e3d85462084779900347e4d49267f747ff54060cc33925", + "sha256:4e18b656c5e844539d506a0a06432274d7bd52a7487e6828c63a63d69185626c", + "sha256:4e9f48f58c2c523d5a06faea47866cd35b32655c46b443f163d08c6d0ddb17d6", + "sha256:50b3a2710631848991d0bf7de077502e8994c804bb805aeb2925a981de58ec2e", + "sha256:55b6d90641869892caa9ca42ff913f7ff1c5ece06474fbd32fb2cf6834726c95", + "sha256:57feec87371dbb3520da6192213c7d6fc892d5589a93db548331954de8248fd2", + "sha256:58130ecf8f7b8112cdb841486404f1282b9c86ccb30d3519faf301b2e5659133", + "sha256:5845c1fd4866bb5dd3125d89b90e57ed3138241540897de748cdf19de8a2fca2", + "sha256:59bfeae4b25ec05b34f1956eaa1cb38032282cd4dfabc5056d0a1ec4d696d3aa", + "sha256:5b48204e8d955c47c55b72779802b219a39acc3ee3d0116d5080c388970b76e3", + "sha256:5c09fcfdccdd0b57867577b719c69e347a436b86cd83747f179dbf0cc0d4c1f3", + "sha256:6180c0ae073bddeb5a97a38c03f30c233e0a4d39cd86166251617d1bbd0af436", + "sha256:682b987361e5fd7a139ed565e30d81fd81e9629acc7d925a205366877d8c8657", + "sha256:6b5d83030255983181005e6cfbac1617ce9746b219bc2aad52201ad121226581", + "sha256:6bb5992037f7a9eff7991ebe4273ea7f51f1c1c511e6a2ce511d0e7bdb754492", + "sha256:73eae06aa53af2ea5270cc066dcaf02cc60d2994bbb2c4ef5764949257d10f43", + "sha256:76f364861c3bfc98cbbcbd402d83454ed9e01a5224bb3a28bf70002a230f73e2", + "sha256:820c661588bd01a0aa62a1283f20d2be4281b086f80dad9e955e690c75fb54a2", + "sha256:82176036e65644a6cc5bd619f65f6f19781e8ec2e5330f51aa9ada7504cc1926", + "sha256:87701f25a2352e5bf7454caa64757642734da9f6b11384c1f9d1a8e699758057", + "sha256:9079dfc6a70abe341f521f78405b8949f96db48da98aeb43f9907f342f627cdc", + "sha256:90f8717cb649eea3504091e640a1b8568faad18bd4b9fcd692853a04475a4b80", + "sha256:957cf8e4b6e123a9eea554fa7ebc85674674b713551de587eb318a2df3e00255", + "sha256:99f826cbf970077383d7de805c0681799491cb939c25450b9b5b3ced03ca99f1", + "sha256:9f636b730f7e8cb19feb87094949ba54ee5357440b9658b2a32a5ce4bce53972", + "sha256:a114d03b938376557927ab23f1e950827c3b893ccb94b62fd95d430fd0e5cf53", + "sha256:a185f876e69897a6f3325c3f19f26a297fa058c5e456bfcff8015e9a27e83ae1", + "sha256:a7a9541cd308eed5e30318430a9c74d2132e9a8cb46b901326272d780bf2d423", + "sha256:aa466da5b15ccea564bdab9c89175c762bc12825f4659c11227f515cee76fa4a", + "sha256:aaed8b0562be4a0876ee3b6946f6869b7bcdb571a5d1496683505944e268b160", + "sha256:ab7c4ceb38d91570a650dba194e1ca87c2b543488fe9309b4212694174fd539c", + "sha256:ac10f4c2b9e770c4e393876e35a7046879d195cd123b4f116d299d442b335bcd", + "sha256:b04772ed465fa3cc947db808fa306d79b43e896beb677a56fb2347ca1a49c1fa", + "sha256:b1c416351ee6271b2f49b56ad7f308072f6f44b37118d69c2cad94f3fa8a40d5", + "sha256:b225d95519a5bf73860323e633a664b0d85ad3d5bede6d30d95b35d4dfe8805b", + "sha256:b2f59caeaf7632cc633b5cf6fc449372b83bbdf0da4ae04d5be36118e46cc0aa", + "sha256:b58c621844d55e71c1b7f7c498ce5aa6985d743a1a59034c57a905b3f153c1ef", + "sha256:bf6bea52ec97e95560af5ae576bdac3aa3aae0b6758c6efa115236d9e07dae44", + "sha256:c08be4f460903e5a9d0f76818db3250f12e9c344e79314d1d570fc69d7f4eae4", + "sha256:c7053d3b0353a8b9de430a4f4b4268ac9a4fb3481af37dfe49825bf45ca24156", + "sha256:c943a53e9186688b45b323602298ab727d8865d8c9ee0b17f8d62d14b56f0753", + "sha256:ce2186a7df133a9c895dea3331ddc5ddad42cdd0d1ea2f0a51e5d161e4762f28", + "sha256:d093be959277cb7dee84b801eb1af388b6ad3ca6a6b6bf1ed7585895789d027d", + "sha256:d094ddec350a2fb899fec68d8353c78233debde9b7d8b4beeafa70825f1c281a", + "sha256:d1a9dd711d0877a1ece3d2e4fea11a8e75741ca21954c919406b44e7cf971304", + "sha256:d569388c381b24671589335a3be6e1d45546c2988c2ebe30fdcada8457a31008", + "sha256:d618649d4e70ac6efcbba75be98b26ef5078faad23592f9b51ca492953012429", + "sha256:d83a047959d38a7ff552ff94be767b7fd79b831ad1cd9920662db05fec24fe72", + "sha256:d8fff389528cad1618fb4b26b95550327495462cd745d879a8c7c2115248e399", + "sha256:da1758c76f50c39a2efd5e9859ce7d776317eb1dd34317c8152ac9251fc574a3", + "sha256:db7457bac39421addd0c8449933ac32d8042aae84a14911a757ae6ca3eef1392", + "sha256:e27bbb6d14416713a8bd7aaa1313c0fc8d44ee48d74497a0ff4c3a1b6ccb5167", + "sha256:e617fb6b0b6953fffd762669610c1c4ffd05632c138d61ac7e14ad187870669c", + "sha256:e9aa71e15d9d9beaad2c6b9319edcdc0a49a43ef5c0a4c8265ca9ee7d6c67774", + "sha256:ec2abea24d98246b94913b76a125e855eb5c434f7c46546046372fe60f666351", + "sha256:f179dee3b863ab1c59580ff60f9d99f632f34ccb38bf67a33ec6b3ecadd0fd76", + "sha256:f4c035da3f544b1882bac24115f3e2e8760f10a0107614fc9839fd232200b875", + "sha256:f67f217af4b1ff66c68a87318012de788dd95fcfeb24cc889011f4e1c7454dfd", + "sha256:f90c822a402cb865e396a504f9fc8173ef34212a342d92e362ca498cad308e28", + "sha256:ff3827aef427c89a25cc96ded1759271a93603aba9fb977a6d264648ebf989db" ], - "markers": "python_version >= '3.7'", - "version": "==6.0.5" + "markers": "python_version >= '3.8'", + "version": "==6.1.0" }, "numpy": { "hashes": [ - "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b", - "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818", - "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20", - "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0", - "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010", - "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a", - "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea", - "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c", - "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71", - "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110", - "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be", - "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a", - "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a", - "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5", - "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed", - "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd", - "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c", - "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e", - "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0", - "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c", - "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a", - "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b", - "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0", - "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6", - "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2", - "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a", - "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30", - "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218", - "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5", - "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07", - "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2", - "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4", - "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764", - "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef", - "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3", - "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f" + "sha256:046356b19d7ad1890c751b99acad5e82dc4a02232013bd9a9a712fddf8eb60f5", + "sha256:0b8cc2715a84b7c3b161f9ebbd942740aaed913584cae9cdc7f8ad5ad41943d0", + "sha256:0d07841fd284718feffe7dd17a63a2e6c78679b2d386d3e82f44f0108c905550", + "sha256:13cc11c00000848702322af4de0147ced365c81d66053a67c2e962a485b3717c", + "sha256:13ce49a34c44b6de5241f0b38b07e44c1b2dcacd9e36c30f9c2fcb1bb5135db7", + "sha256:24c2ad697bd8593887b019817ddd9974a7f429c14a5469d7fad413f28340a6d2", + "sha256:251105b7c42abe40e3a689881e1793370cc9724ad50d64b30b358bbb3a97553b", + "sha256:2ca4b53e1e0b279142113b8c5eb7d7a877e967c306edc34f3b58e9be12fda8df", + "sha256:3269c9eb8745e8d975980b3a7411a98976824e1fdef11f0aacf76147f662b15f", + "sha256:397bc5ce62d3fb73f304bec332171535c187e0643e176a6e9421a6e3eacef06d", + "sha256:3fc5eabfc720db95d68e6646e88f8b399bfedd235994016351b1d9e062c4b270", + "sha256:50a95ca3560a6058d6ea91d4629a83a897ee27c00630aed9d933dff191f170cd", + "sha256:52ac2e48f5ad847cd43c4755520a2317f3380213493b9d8a4c5e37f3b87df504", + "sha256:53e27293b3a2b661c03f79aa51c3987492bd4641ef933e366e0f9f6c9bf257ec", + "sha256:57eb525e7c2a8fdee02d731f647146ff54ea8c973364f3b850069ffb42799647", + "sha256:5889dd24f03ca5a5b1e8a90a33b5a0846d8977565e4ae003a63d22ecddf6782f", + "sha256:59ca673ad11d4b84ceb385290ed0ebe60266e356641428c845b39cd9df6713ab", + "sha256:6435c48250c12f001920f0751fe50c0348f5f240852cfddc5e2f97e007544cbe", + "sha256:6e5a9cb2be39350ae6c8f79410744e80154df658d5bea06e06e0ac5bb75480d5", + "sha256:7be6a07520b88214ea85d8ac8b7d6d8a1839b0b5cb87412ac9f49fa934eb15d5", + "sha256:7c803b7934a7f59563db459292e6aa078bb38b7ab1446ca38dd138646a38203e", + "sha256:7dd86dfaf7c900c0bbdcb8b16e2f6ddf1eb1fe39c6c8cca6e94844ed3152a8fd", + "sha256:8661c94e3aad18e1ea17a11f60f843a4933ccaf1a25a7c6a9182af70610b2313", + "sha256:8ae0fd135e0b157365ac7cc31fff27f07a5572bdfc38f9c2d43b2aff416cc8b0", + "sha256:910b47a6d0635ec1bd53b88f86120a52bf56dcc27b51f18c7b4a2e2224c29f0f", + "sha256:913cc1d311060b1d409e609947fa1b9753701dac96e6581b58afc36b7ee35af6", + "sha256:920b0911bb2e4414c50e55bd658baeb78281a47feeb064ab40c2b66ecba85553", + "sha256:950802d17a33c07cba7fd7c3dcfa7d64705509206be1606f196d179e539111ed", + "sha256:981707f6b31b59c0c24bcda52e5605f9701cb46da4b86c2e8023656ad3e833cb", + "sha256:98ce7fb5b8063cfdd86596b9c762bf2b5e35a2cdd7e967494ab78a1fa7f8b86e", + "sha256:99f4a9ee60eed1385a86e82288971a51e71df052ed0b2900ed30bc840c0f2e39", + "sha256:9a8e06c7a980869ea67bbf551283bbed2856915f0a792dc32dd0f9dd2fb56728", + "sha256:ae8ce252404cdd4de56dcfce8b11eac3c594a9c16c231d081fb705cf23bd4d9e", + "sha256:afd9c680df4de71cd58582b51e88a61feed4abcc7530bcd3d48483f20fc76f2a", + "sha256:b49742cdb85f1f81e4dc1b39dcf328244f4d8d1ded95dea725b316bd2cf18c95", + "sha256:b5613cfeb1adfe791e8e681128f5f49f22f3fcaa942255a6124d58ca59d9528f", + "sha256:bab7c09454460a487e631ffc0c42057e3d8f2a9ddccd1e60c7bb8ed774992480", + "sha256:c8a0e34993b510fc19b9a2ce7f31cb8e94ecf6e924a40c0c9dd4f62d0aac47d9", + "sha256:caf5d284ddea7462c32b8d4a6b8af030b6c9fd5332afb70e7414d7fdded4bfd0", + "sha256:cea427d1350f3fd0d2818ce7350095c1a2ee33e30961d2f0fef48576ddbbe90f", + "sha256:d0cf7d55b1051387807405b3898efafa862997b4cba8aa5dbe657be794afeafd", + "sha256:d10c39947a2d351d6d466b4ae83dad4c37cd6c3cdd6d5d0fa797da56f710a6ae", + "sha256:d2b9cd92c8f8e7b313b80e93cedc12c0112088541dcedd9197b5dee3738c1201", + "sha256:d4c57b68c8ef5e1ebf47238e99bf27657511ec3f071c465f6b1bccbef12d4136", + "sha256:d51fc141ddbe3f919e91a096ec739f49d686df8af254b2053ba21a910ae518bf", + "sha256:e097507396c0be4e547ff15b13dc3866f45f3680f789c1a1301b07dadd3fbc78", + "sha256:e30356d530528a42eeba51420ae8bf6c6c09559051887196599d96ee5f536468", + "sha256:e8d5f8a8e3bc87334f025194c6193e408903d21ebaeb10952264943a985066ca", + "sha256:e8dfa9e94fc127c40979c3eacbae1e61fda4fe71d84869cc129e2721973231ef", + "sha256:f212d4f46b67ff604d11fff7cc62d36b3e8714edf68e44e9760e19be38c03eb0", + "sha256:f7506387e191fe8cdb267f912469a3cccc538ab108471291636a96a54e599556", + "sha256:fac6e277a41163d27dfab5f4ec1f7a83fac94e170665a4a50191b545721c6521", + "sha256:fcd8f556cdc8cfe35e70efb92463082b7f43dd7e547eb071ffc36abc0ca4699b" ], "index": "pypi", - "markers": "python_version >= '3.9'", - "version": "==1.26.4" + "markers": "python_version >= '3.10'", + "version": "==2.1.1" }, "openai": { "hashes": [ - "sha256:293a36effde29946eb221040c89c46a4850f2f2e30b37ef09ff6d75226d71b42", - "sha256:b84aa3005357ceb38f22a269e0e22ee58ce103897f447032d021906f18178a8e" + "sha256:3987ae027152fc8bea745d60b02c8f4c4a76e1b5c70e73565fa556db6f78c9e6", + "sha256:822dd2051baa3393d0d5406990611975dd6f533020dc9375a34d4fe67e8b75f7" ], "index": "pypi", "markers": "python_full_version >= '3.7.1'", - "version": "==1.23.2" + "version": "==1.50.2" }, "opencv-python": { "hashes": [ - "sha256:1a9f0e6267de3a1a1db0c54213d022c7c8b5b9ca4b580e80bdc58516c922c9e1", - "sha256:3f16f08e02b2a2da44259c7cc712e779eff1dd8b55fdb0323e8cab09548086c0", - "sha256:71dfb9555ccccdd77305fc3dcca5897fbf0cf28b297c51ee55e079c065d812a3", - "sha256:7b34a52e9da36dda8c151c6394aed602e4b17fa041df0b9f5b93ae10b0fcca2a", - "sha256:7e5f7aa4486651a6ebfa8ed4b594b65bd2d2f41beeb4241a3e4b1b85acbbbadb", - "sha256:dcf000c36dd1651118a2462257e3a9e76db789a78432e1f303c7bac54f63ef6c", - "sha256:e4088cab82b66a3b37ffc452976b14a3c599269c247895ae9ceb4066d8188a57" + "sha256:09a332b50488e2dda866a6c5573ee192fe3583239fb26ff2f7f9ceb0bc119ea6", + "sha256:2db02bb7e50b703f0a2d50c50ced72e95c574e1e5a0bb35a8a86d0b35c98c236", + "sha256:32dbbd94c26f611dc5cc6979e6b7aa1f55a64d6b463cc1dcd3c95505a63e48fe", + "sha256:71e575744f1d23f79741450254660442785f45a0797212852ee5199ef12eed98", + "sha256:72d234e4582e9658ffea8e9cae5b63d488ad06994ef12d81dc303b17472f3526", + "sha256:9ace140fc6d647fbe1c692bcb2abce768973491222c067c131d80957c595b71f", + "sha256:fc182f8f4cda51b45f01c64e4cbedfc2f00aff799debebc305d8d0210c43f251" ], "index": "pypi", "markers": "python_version >= '3.6'", - "version": "==4.9.0.80" + "version": "==4.10.0.84" }, "packaging": { "hashes": [ - "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5", - "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9" + "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002", + "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124" ], - "markers": "python_version >= '3.7'", - "version": "==24.0" + "markers": "python_version >= '3.8'", + "version": "==24.1" }, "pandas": { "hashes": [ - "sha256:001910ad31abc7bf06f49dcc903755d2f7f3a9186c0c040b827e522e9cef0863", - "sha256:0ca6377b8fca51815f382bd0b697a0814c8bda55115678cbc94c30aacbb6eff2", - "sha256:0cace394b6ea70c01ca1595f839cf193df35d1575986e484ad35c4aeae7266c1", - "sha256:1cb51fe389360f3b5a4d57dbd2848a5f033350336ca3b340d1c53a1fad33bcad", - "sha256:2925720037f06e89af896c70bca73459d7e6a4be96f9de79e2d440bd499fe0db", - "sha256:3e374f59e440d4ab45ca2fffde54b81ac3834cf5ae2cdfa69c90bc03bde04d76", - "sha256:40ae1dffb3967a52203105a077415a86044a2bea011b5f321c6aa64b379a3f51", - "sha256:43498c0bdb43d55cb162cdc8c06fac328ccb5d2eabe3cadeb3529ae6f0517c32", - "sha256:4abfe0be0d7221be4f12552995e58723c7422c80a659da13ca382697de830c08", - "sha256:58b84b91b0b9f4bafac2a0ac55002280c094dfc6402402332c0913a59654ab2b", - "sha256:640cef9aa381b60e296db324337a554aeeb883ead99dc8f6c18e81a93942f5f4", - "sha256:66b479b0bd07204e37583c191535505410daa8df638fd8e75ae1b383851fe921", - "sha256:696039430f7a562b74fa45f540aca068ea85fa34c244d0deee539cb6d70aa288", - "sha256:6d2123dc9ad6a814bcdea0f099885276b31b24f7edf40f6cdbc0912672e22eee", - "sha256:8635c16bf3d99040fdf3ca3db669a7250ddf49c55dc4aa8fe0ae0fa8d6dcc1f0", - "sha256:873d13d177501a28b2756375d59816c365e42ed8417b41665f346289adc68d24", - "sha256:8e5a0b00e1e56a842f922e7fae8ae4077aee4af0acb5ae3622bd4b4c30aedf99", - "sha256:8e90497254aacacbc4ea6ae5e7a8cd75629d6ad2b30025a4a8b09aa4faf55151", - "sha256:9057e6aa78a584bc93a13f0a9bf7e753a5e9770a30b4d758b8d5f2a62a9433cd", - "sha256:90c6fca2acf139569e74e8781709dccb6fe25940488755716d1d354d6bc58bce", - "sha256:92fd6b027924a7e178ac202cfbe25e53368db90d56872d20ffae94b96c7acc57", - "sha256:9dfde2a0ddef507a631dc9dc4af6a9489d5e2e740e226ad426a05cabfbd7c8ef", - "sha256:9e79019aba43cb4fda9e4d983f8e88ca0373adbb697ae9c6c43093218de28b54", - "sha256:a77e9d1c386196879aa5eb712e77461aaee433e54c68cf253053a73b7e49c33a", - "sha256:c7adfc142dac335d8c1e0dcbd37eb8617eac386596eb9e1a1b77791cf2498238", - "sha256:d187d355ecec3629624fccb01d104da7d7f391db0311145817525281e2804d23", - "sha256:ddf818e4e6c7c6f4f7c8a12709696d193976b591cc7dc50588d3d1a6b5dc8772", - "sha256:e9b79011ff7a0f4b1d6da6a61aa1aa604fb312d6647de5bad20013682d1429ce", - "sha256:eee3a87076c0756de40b05c5e9a6069c035ba43e8dd71c379e68cab2c20f16ad" + "sha256:062309c1b9ea12a50e8ce661145c6aab431b1e99530d3cd60640e255778bd43a", + "sha256:15c0e1e02e93116177d29ff83e8b1619c93ddc9c49083f237d4312337a61165d", + "sha256:1948ddde24197a0f7add2bdc4ca83bf2b1ef84a1bc8ccffd95eda17fd836ecb5", + "sha256:1db71525a1538b30142094edb9adc10be3f3e176748cd7acc2240c2f2e5aa3a4", + "sha256:22a9d949bfc9a502d320aa04e5d02feab689d61da4e7764b62c30b991c42c5f0", + "sha256:29401dbfa9ad77319367d36940cd8a0b3a11aba16063e39632d98b0e931ddf32", + "sha256:31d0ced62d4ea3e231a9f228366919a5ea0b07440d9d4dac345376fd8e1477ea", + "sha256:3508d914817e153ad359d7e069d752cdd736a247c322d932eb89e6bc84217f28", + "sha256:37e0aced3e8f539eccf2e099f65cdb9c8aa85109b0be6e93e2baff94264bdc6f", + "sha256:381175499d3802cde0eabbaf6324cce0c4f5d52ca6f8c377c29ad442f50f6348", + "sha256:38cf8125c40dae9d5acc10fa66af8ea6fdf760b2714ee482ca691fc66e6fcb18", + "sha256:3b71f27954685ee685317063bf13c7709a7ba74fc996b84fc6821c59b0f06468", + "sha256:3fc6873a41186404dad67245896a6e440baacc92f5b716ccd1bc9ed2995ab2c5", + "sha256:4850ba03528b6dd51d6c5d273c46f183f39a9baf3f0143e566b89450965b105e", + "sha256:4f18ba62b61d7e192368b84517265a99b4d7ee8912f8708660fb4a366cc82667", + "sha256:56534ce0746a58afaf7942ba4863e0ef81c9c50d3f0ae93e9497d6a41a057645", + "sha256:59ef3764d0fe818125a5097d2ae867ca3fa64df032331b7e0917cf5d7bf66b13", + "sha256:5dbca4c1acd72e8eeef4753eeca07de9b1db4f398669d5994086f788a5d7cc30", + "sha256:5de54125a92bb4d1c051c0659e6fcb75256bf799a732a87184e5ea503965bce3", + "sha256:61c5ad4043f791b61dd4752191d9f07f0ae412515d59ba8f005832a532f8736d", + "sha256:6374c452ff3ec675a8f46fd9ab25c4ad0ba590b71cf0656f8b6daa5202bca3fb", + "sha256:63cc132e40a2e084cf01adf0775b15ac515ba905d7dcca47e9a251819c575ef3", + "sha256:66108071e1b935240e74525006034333f98bcdb87ea116de573a6a0dccb6c039", + "sha256:6dfcb5ee8d4d50c06a51c2fffa6cff6272098ad6540aed1a76d15fb9318194d8", + "sha256:7c2875855b0ff77b2a64a0365e24455d9990730d6431b9e0ee18ad8acee13dbd", + "sha256:7eee9e7cea6adf3e3d24e304ac6b8300646e2a5d1cd3a3c2abed9101b0846761", + "sha256:800250ecdadb6d9c78eae4990da62743b857b470883fa27f652db8bdde7f6659", + "sha256:86976a1c5b25ae3f8ccae3a5306e443569ee3c3faf444dfd0f41cda24667ad57", + "sha256:8cd6d7cc958a3910f934ea8dbdf17b2364827bb4dafc38ce6eef6bb3d65ff09c", + "sha256:99df71520d25fade9db7c1076ac94eb994f4d2673ef2aa2e86ee039b6746d20c", + "sha256:a5a1595fe639f5988ba6a8e5bc9649af3baf26df3998a0abe56c02609392e0a4", + "sha256:ad5b65698ab28ed8d7f18790a0dc58005c7629f227be9ecc1072aa74c0c1d43a", + "sha256:b1d432e8d08679a40e2a6d8b2f9770a5c21793a6f9f47fdd52c5ce1948a5a8a9", + "sha256:b8661b0238a69d7aafe156b7fa86c44b881387509653fdf857bebc5e4008ad42", + "sha256:ba96630bc17c875161df3818780af30e43be9b166ce51c9a18c1feae342906c2", + "sha256:bc6b93f9b966093cb0fd62ff1a7e4c09e6d546ad7c1de191767baffc57628f39", + "sha256:c124333816c3a9b03fbeef3a9f230ba9a737e9e5bb4060aa2107a86cc0a497fc", + "sha256:cd8d0c3be0515c12fed0bdbae072551c8b54b7192c7b1fda0ba56059a0179698", + "sha256:d9c45366def9a3dd85a6454c0e7908f2b3b8e9c138f5dc38fed7ce720d8453ed", + "sha256:f00d1345d84d8c86a63e476bb4955e46458b304b9575dcf71102b5c705320015", + "sha256:f3a255b2c19987fbbe62a9dfd6cff7ff2aa9ccab3fc75218fd4b7530f01efa24", + "sha256:fffb8ae78d8af97f849404f21411c95062db1496aeb3e56f146f0355c9989319" ], "index": "pypi", "markers": "python_version >= '3.9'", - "version": "==2.2.2" + "version": "==2.2.3" }, "pillow": { "hashes": [ - "sha256:048ad577748b9fa4a99a0548c64f2cb8d672d5bf2e643a739ac8faff1164238c", - "sha256:048eeade4c33fdf7e08da40ef402e748df113fd0b4584e32c4af74fe78baaeb2", - "sha256:0ba26351b137ca4e0db0342d5d00d2e355eb29372c05afd544ebf47c0956ffeb", - "sha256:0ea2a783a2bdf2a561808fe4a7a12e9aa3799b701ba305de596bc48b8bdfce9d", - "sha256:1530e8f3a4b965eb6a7785cf17a426c779333eb62c9a7d1bbcf3ffd5bf77a4aa", - "sha256:16563993329b79513f59142a6b02055e10514c1a8e86dca8b48a893e33cf91e3", - "sha256:19aeb96d43902f0a783946a0a87dbdad5c84c936025b8419da0a0cd7724356b1", - "sha256:1a1d1915db1a4fdb2754b9de292642a39a7fb28f1736699527bb649484fb966a", - "sha256:1b87bd9d81d179bd8ab871603bd80d8645729939f90b71e62914e816a76fc6bd", - "sha256:1dfc94946bc60ea375cc39cff0b8da6c7e5f8fcdc1d946beb8da5c216156ddd8", - "sha256:2034f6759a722da3a3dbd91a81148cf884e91d1b747992ca288ab88c1de15999", - "sha256:261ddb7ca91fcf71757979534fb4c128448b5b4c55cb6152d280312062f69599", - "sha256:2ed854e716a89b1afcedea551cd85f2eb2a807613752ab997b9974aaa0d56936", - "sha256:3102045a10945173d38336f6e71a8dc71bcaeed55c3123ad4af82c52807b9375", - "sha256:339894035d0ede518b16073bdc2feef4c991ee991a29774b33e515f1d308e08d", - "sha256:412444afb8c4c7a6cc11a47dade32982439925537e483be7c0ae0cf96c4f6a0b", - "sha256:4203efca580f0dd6f882ca211f923168548f7ba334c189e9eab1178ab840bf60", - "sha256:45ebc7b45406febf07fef35d856f0293a92e7417ae7933207e90bf9090b70572", - "sha256:4b5ec25d8b17217d635f8935dbc1b9aa5907962fae29dff220f2659487891cd3", - "sha256:4c8e73e99da7db1b4cad7f8d682cf6abad7844da39834c288fbfa394a47bbced", - "sha256:4e6f7d1c414191c1199f8996d3f2282b9ebea0945693fb67392c75a3a320941f", - "sha256:4eaa22f0d22b1a7e93ff0a596d57fdede2e550aecffb5a1ef1106aaece48e96b", - "sha256:50b8eae8f7334ec826d6eeffaeeb00e36b5e24aa0b9df322c247539714c6df19", - "sha256:50fd3f6b26e3441ae07b7c979309638b72abc1a25da31a81a7fbd9495713ef4f", - "sha256:51243f1ed5161b9945011a7360e997729776f6e5d7005ba0c6879267d4c5139d", - "sha256:5d512aafa1d32efa014fa041d38868fda85028e3f930a96f85d49c7d8ddc0383", - "sha256:5f77cf66e96ae734717d341c145c5949c63180842a545c47a0ce7ae52ca83795", - "sha256:6b02471b72526ab8a18c39cb7967b72d194ec53c1fd0a70b050565a0f366d355", - "sha256:6fb1b30043271ec92dc65f6d9f0b7a830c210b8a96423074b15c7bc999975f57", - "sha256:7161ec49ef0800947dc5570f86568a7bb36fa97dd09e9827dc02b718c5643f09", - "sha256:72d622d262e463dfb7595202d229f5f3ab4b852289a1cd09650362db23b9eb0b", - "sha256:74d28c17412d9caa1066f7a31df8403ec23d5268ba46cd0ad2c50fb82ae40462", - "sha256:78618cdbccaa74d3f88d0ad6cb8ac3007f1a6fa5c6f19af64b55ca170bfa1edf", - "sha256:793b4e24db2e8742ca6423d3fde8396db336698c55cd34b660663ee9e45ed37f", - "sha256:798232c92e7665fe82ac085f9d8e8ca98826f8e27859d9a96b41d519ecd2e49a", - "sha256:81d09caa7b27ef4e61cb7d8fbf1714f5aec1c6b6c5270ee53504981e6e9121ad", - "sha256:8ab74c06ffdab957d7670c2a5a6e1a70181cd10b727cd788c4dd9005b6a8acd9", - "sha256:8eb0908e954d093b02a543dc963984d6e99ad2b5e36503d8a0aaf040505f747d", - "sha256:90b9e29824800e90c84e4022dd5cc16eb2d9605ee13f05d47641eb183cd73d45", - "sha256:9797a6c8fe16f25749b371c02e2ade0efb51155e767a971c61734b1bf6293994", - "sha256:9d2455fbf44c914840c793e89aa82d0e1763a14253a000743719ae5946814b2d", - "sha256:9d3bea1c75f8c53ee4d505c3e67d8c158ad4df0d83170605b50b64025917f338", - "sha256:9e2ec1e921fd07c7cda7962bad283acc2f2a9ccc1b971ee4b216b75fad6f0463", - "sha256:9e91179a242bbc99be65e139e30690e081fe6cb91a8e77faf4c409653de39451", - "sha256:a0eaa93d054751ee9964afa21c06247779b90440ca41d184aeb5d410f20ff591", - "sha256:a2c405445c79c3f5a124573a051062300936b0281fee57637e706453e452746c", - "sha256:aa7e402ce11f0885305bfb6afb3434b3cd8f53b563ac065452d9d5654c7b86fd", - "sha256:aff76a55a8aa8364d25400a210a65ff59d0168e0b4285ba6bf2bd83cf675ba32", - "sha256:b09b86b27a064c9624d0a6c54da01c1beaf5b6cadfa609cf63789b1d08a797b9", - "sha256:b14f16f94cbc61215115b9b1236f9c18403c15dd3c52cf629072afa9d54c1cbf", - "sha256:b50811d664d392f02f7761621303eba9d1b056fb1868c8cdf4231279645c25f5", - "sha256:b7bc2176354defba3edc2b9a777744462da2f8e921fbaf61e52acb95bafa9828", - "sha256:c78e1b00a87ce43bb37642c0812315b411e856a905d58d597750eb79802aaaa3", - "sha256:c83341b89884e2b2e55886e8fbbf37c3fa5efd6c8907124aeb72f285ae5696e5", - "sha256:ca2870d5d10d8726a27396d3ca4cf7976cec0f3cb706debe88e3a5bd4610f7d2", - "sha256:ccce24b7ad89adb5a1e34a6ba96ac2530046763912806ad4c247356a8f33a67b", - "sha256:cd5e14fbf22a87321b24c88669aad3a51ec052eb145315b3da3b7e3cc105b9a2", - "sha256:ce49c67f4ea0609933d01c0731b34b8695a7a748d6c8d186f95e7d085d2fe475", - "sha256:d33891be6df59d93df4d846640f0e46f1a807339f09e79a8040bc887bdcd7ed3", - "sha256:d3b2348a78bc939b4fed6552abfd2e7988e0f81443ef3911a4b8498ca084f6eb", - "sha256:d886f5d353333b4771d21267c7ecc75b710f1a73d72d03ca06df49b09015a9ef", - "sha256:d93480005693d247f8346bc8ee28c72a2191bdf1f6b5db469c096c0c867ac015", - "sha256:dc1a390a82755a8c26c9964d457d4c9cbec5405896cba94cf51f36ea0d855002", - "sha256:dd78700f5788ae180b5ee8902c6aea5a5726bac7c364b202b4b3e3ba2d293170", - "sha256:e46f38133e5a060d46bd630faa4d9fa0202377495df1f068a8299fd78c84de84", - "sha256:e4b878386c4bf293578b48fc570b84ecfe477d3b77ba39a6e87150af77f40c57", - "sha256:f0d0591a0aeaefdaf9a5e545e7485f89910c977087e7de2b6c388aec32011e9f", - "sha256:fdcbb4068117dfd9ce0138d068ac512843c52295ed996ae6dd1faf537b6dbc27", - "sha256:ff61bfd9253c3915e6d41c651d5f962da23eda633cf02262990094a18a55371a" + "sha256:02a2be69f9c9b8c1e97cf2713e789d4e398c751ecfd9967c18d0ce304efbf885", + "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea", + "sha256:06b2f7898047ae93fad74467ec3d28fe84f7831370e3c258afa533f81ef7f3df", + "sha256:0755ffd4a0c6f267cccbae2e9903d95477ca2f77c4fcf3a3a09570001856c8a5", + "sha256:0a9ec697746f268507404647e531e92889890a087e03681a3606d9b920fbee3c", + "sha256:0ae24a547e8b711ccaaf99c9ae3cd975470e1a30caa80a6aaee9a2f19c05701d", + "sha256:134ace6dc392116566980ee7436477d844520a26a4b1bd4053f6f47d096997fd", + "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06", + "sha256:1b5dea9831a90e9d0721ec417a80d4cbd7022093ac38a568db2dd78363b00908", + "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a", + "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be", + "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0", + "sha256:298478fe4f77a4408895605f3482b6cc6222c018b2ce565c2b6b9c354ac3229b", + "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80", + "sha256:2db98790afc70118bd0255c2eeb465e9767ecf1f3c25f9a1abb8ffc8cfd1fe0a", + "sha256:32cda9e3d601a52baccb2856b8ea1fc213c90b340c542dcef77140dfa3278a9e", + "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9", + "sha256:416d3a5d0e8cfe4f27f574362435bc9bae57f679a7158e0096ad2beb427b8696", + "sha256:43efea75eb06b95d1631cb784aa40156177bf9dd5b4b03ff38979e048258bc6b", + "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309", + "sha256:4d9667937cfa347525b319ae34375c37b9ee6b525440f3ef48542fcf66f2731e", + "sha256:5161eef006d335e46895297f642341111945e2c1c899eb406882a6c61a4357ab", + "sha256:543f3dc61c18dafb755773efc89aae60d06b6596a63914107f75459cf984164d", + "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060", + "sha256:59291fb29317122398786c2d44427bbd1a6d7ff54017075b22be9d21aa59bd8d", + "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d", + "sha256:5b4815f2e65b30f5fbae9dfffa8636d992d49705723fe86a3661806e069352d4", + "sha256:5dc6761a6efc781e6a1544206f22c80c3af4c8cf461206d46a1e6006e4429ff3", + "sha256:5e84b6cc6a4a3d76c153a6b19270b3526a5a8ed6b09501d3af891daa2a9de7d6", + "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb", + "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94", + "sha256:6c762a5b0997f5659a5ef2266abc1d8851ad7749ad9a6a5506eb23d314e4f46b", + "sha256:7086cc1d5eebb91ad24ded9f58bec6c688e9f0ed7eb3dbbf1e4800280a896496", + "sha256:73664fe514b34c8f02452ffb73b7a92c6774e39a647087f83d67f010eb9a0cf0", + "sha256:76a911dfe51a36041f2e756b00f96ed84677cdeb75d25c767f296c1c1eda1319", + "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b", + "sha256:7928ecbf1ece13956b95d9cbcfc77137652b02763ba384d9ab508099a2eca856", + "sha256:7970285ab628a3779aecc35823296a7869f889b8329c16ad5a71e4901a3dc4ef", + "sha256:7a8d4bade9952ea9a77d0c3e49cbd8b2890a399422258a77f357b9cc9be8d680", + "sha256:7c1ee6f42250df403c5f103cbd2768a28fe1a0ea1f0f03fe151c8741e1469c8b", + "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42", + "sha256:812f7342b0eee081eaec84d91423d1b4650bb9828eb53d8511bcef8ce5aecf1e", + "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597", + "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a", + "sha256:87dd88ded2e6d74d31e1e0a99a726a6765cda32d00ba72dc37f0651f306daaa8", + "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3", + "sha256:8d4d5063501b6dd4024b8ac2f04962d661222d120381272deea52e3fc52d3736", + "sha256:8f0aef4ef59694b12cadee839e2ba6afeab89c0f39a3adc02ed51d109117b8da", + "sha256:930044bb7679ab003b14023138b50181899da3f25de50e9dbee23b61b4de2126", + "sha256:950be4d8ba92aca4b2bb0741285a46bfae3ca699ef913ec8416c1b78eadd64cd", + "sha256:961a7293b2457b405967af9c77dcaa43cc1a8cd50d23c532e62d48ab6cdd56f5", + "sha256:9b885f89040bb8c4a1573566bbb2f44f5c505ef6e74cec7ab9068c900047f04b", + "sha256:9f4727572e2918acaa9077c919cbbeb73bd2b3ebcfe033b72f858fc9fbef0026", + "sha256:a02364621fe369e06200d4a16558e056fe2805d3468350df3aef21e00d26214b", + "sha256:a985e028fc183bf12a77a8bbf36318db4238a3ded7fa9df1b9a133f1cb79f8fc", + "sha256:ac1452d2fbe4978c2eec89fb5a23b8387aba707ac72810d9490118817d9c0b46", + "sha256:b15e02e9bb4c21e39876698abf233c8c579127986f8207200bc8a8f6bb27acf2", + "sha256:b2724fdb354a868ddf9a880cb84d102da914e99119211ef7ecbdc613b8c96b3c", + "sha256:bbc527b519bd3aa9d7f429d152fea69f9ad37c95f0b02aebddff592688998abe", + "sha256:bcd5e41a859bf2e84fdc42f4edb7d9aba0a13d29a2abadccafad99de3feff984", + "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a", + "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70", + "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca", + "sha256:c76e5786951e72ed3686e122d14c5d7012f16c8303a674d18cdcd6d89557fc5b", + "sha256:cbed61494057c0f83b83eb3a310f0bf774b09513307c434d4366ed64f4128a91", + "sha256:cfdd747216947628af7b259d274771d84db2268ca062dd5faf373639d00113a3", + "sha256:d7480af14364494365e89d6fddc510a13e5a2c3584cb19ef65415ca57252fb84", + "sha256:dbc6ae66518ab3c5847659e9988c3b60dc94ffb48ef9168656e0019a93dbf8a1", + "sha256:dc3e2db6ba09ffd7d02ae9141cfa0ae23393ee7687248d46a7507b75d610f4f5", + "sha256:dfe91cb65544a1321e631e696759491ae04a2ea11d36715eca01ce07284738be", + "sha256:e4d49b85c4348ea0b31ea63bc75a9f3857869174e2bf17e7aba02945cd218e6f", + "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc", + "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9", + "sha256:e88d5e6ad0d026fba7bdab8c3f225a69f063f116462c49892b0149e21b6c0a0e", + "sha256:ecd85a8d3e79cd7158dec1c9e5808e821feea088e2f69a974db5edf84dc53141", + "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef", + "sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22", + "sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27", + "sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e", + "sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==10.3.0" + "version": "==10.4.0" }, "psycopg2-binary": { "hashes": [ @@ -1120,118 +1302,128 @@ }, "pydantic": { "hashes": [ - "sha256:9dee74a271705f14f9a1567671d144a851c675b072736f0a7b2608fd9e495352", - "sha256:b5ecdd42262ca2462e2624793551e80911a1e989f462910bb81aef974b4bb383" + "sha256:d155cef71265d1e9807ed1c32b4c8deec042a44a50a4188b25ac67ecd81a9c0f", + "sha256:f048cec7b26778210e28a0459867920654d48e5e62db0958433636cde4254f12" ], "markers": "python_version >= '3.8'", - "version": "==2.7.0" + "version": "==2.9.2" }, "pydantic-core": { "hashes": [ - "sha256:030e4f9516f9947f38179249778709a460a3adb516bf39b5eb9066fcfe43d0e6", - "sha256:09f03dfc0ef8c22622eaa8608caa4a1e189cfb83ce847045eca34f690895eccb", - "sha256:12a05db5013ec0ca4a32cc6433f53faa2a014ec364031408540ba858c2172bb0", - "sha256:14fe73881cf8e4cbdaded8ca0aa671635b597e42447fec7060d0868b52d074e6", - "sha256:1a0c3e718f4e064efde68092d9d974e39572c14e56726ecfaeebbe6544521f47", - "sha256:1be91ad664fc9245404a789d60cba1e91c26b1454ba136d2a1bf0c2ac0c0505a", - "sha256:201713f2f462e5c015b343e86e68bd8a530a4f76609b33d8f0ec65d2b921712a", - "sha256:2027493cc44c23b598cfaf200936110433d9caa84e2c6cf487a83999638a96ac", - "sha256:250ae39445cb5475e483a36b1061af1bc233de3e9ad0f4f76a71b66231b07f88", - "sha256:2533ad2883f001efa72f3d0e733fb846710c3af6dcdd544fe5bf14fa5fe2d7db", - "sha256:25595ac311f20e5324d1941909b0d12933f1fd2171075fcff763e90f43e92a0d", - "sha256:2684a94fdfd1b146ff10689c6e4e815f6a01141781c493b97342cdc5b06f4d5d", - "sha256:27f1009dc292f3b7ca77feb3571c537276b9aad5dd4efb471ac88a8bd09024e9", - "sha256:2adaeea59849ec0939af5c5d476935f2bab4b7f0335b0110f0f069a41024278e", - "sha256:2ae80f72bb7a3e397ab37b53a2b49c62cc5496412e71bc4f1277620a7ce3f52b", - "sha256:2d5728e93d28a3c63ee513d9ffbac9c5989de8c76e049dbcb5bfe4b923a9739d", - "sha256:2e91711e36e229978d92642bfc3546333a9127ecebb3f2761372e096395fc649", - "sha256:2fe0c1ce5b129455e43f941f7a46f61f3d3861e571f2905d55cdbb8b5c6f5e2c", - "sha256:38a5024de321d672a132b1834a66eeb7931959c59964b777e8f32dbe9523f6b1", - "sha256:3e352f0191d99fe617371096845070dee295444979efb8f27ad941227de6ad09", - "sha256:48dd883db92e92519201f2b01cafa881e5f7125666141a49ffba8b9facc072b0", - "sha256:54764c083bbe0264f0f746cefcded6cb08fbbaaf1ad1d78fb8a4c30cff999a90", - "sha256:54c7375c62190a7845091f521add19b0f026bcf6ae674bdb89f296972272e86d", - "sha256:561cf62c8a3498406495cfc49eee086ed2bb186d08bcc65812b75fda42c38294", - "sha256:56823a92075780582d1ffd4489a2e61d56fd3ebb4b40b713d63f96dd92d28144", - "sha256:582cf2cead97c9e382a7f4d3b744cf0ef1a6e815e44d3aa81af3ad98762f5a9b", - "sha256:58aca931bef83217fca7a390e0486ae327c4af9c3e941adb75f8772f8eeb03a1", - "sha256:5f7973c381283783cd1043a8c8f61ea5ce7a3a58b0369f0ee0ee975eaf2f2a1b", - "sha256:6395a4435fa26519fd96fdccb77e9d00ddae9dd6c742309bd0b5610609ad7fb2", - "sha256:63d7523cd95d2fde0d28dc42968ac731b5bb1e516cc56b93a50ab293f4daeaad", - "sha256:641a018af4fe48be57a2b3d7a1f0f5dbca07c1d00951d3d7463f0ac9dac66622", - "sha256:667880321e916a8920ef49f5d50e7983792cf59f3b6079f3c9dac2b88a311d17", - "sha256:684d840d2c9ec5de9cb397fcb3f36d5ebb6fa0d94734f9886032dd796c1ead06", - "sha256:68717c38a68e37af87c4da20e08f3e27d7e4212e99e96c3d875fbf3f4812abfc", - "sha256:6b7bbb97d82659ac8b37450c60ff2e9f97e4eb0f8a8a3645a5568b9334b08b50", - "sha256:72722ce529a76a4637a60be18bd789d8fb871e84472490ed7ddff62d5fed620d", - "sha256:73c1bc8a86a5c9e8721a088df234265317692d0b5cd9e86e975ce3bc3db62a59", - "sha256:76909849d1a6bffa5a07742294f3fa1d357dc917cb1fe7b470afbc3a7579d539", - "sha256:76b86e24039c35280ceee6dce7e62945eb93a5175d43689ba98360ab31eebc4a", - "sha256:7a5d83efc109ceddb99abd2c1316298ced2adb4570410defe766851a804fcd5b", - "sha256:80e0e57cc704a52fb1b48f16d5b2c8818da087dbee6f98d9bf19546930dc64b5", - "sha256:85233abb44bc18d16e72dc05bf13848a36f363f83757541f1a97db2f8d58cfd9", - "sha256:907a4d7720abfcb1c81619863efd47c8a85d26a257a2dbebdb87c3b847df0278", - "sha256:9376d83d686ec62e8b19c0ac3bf8d28d8a5981d0df290196fb6ef24d8a26f0d6", - "sha256:94b9769ba435b598b547c762184bcfc4783d0d4c7771b04a3b45775c3589ca44", - "sha256:9a29726f91c6cb390b3c2338f0df5cd3e216ad7a938762d11c994bb37552edb0", - "sha256:9b6431559676a1079eac0f52d6d0721fb8e3c5ba43c37bc537c8c83724031feb", - "sha256:9ece8a49696669d483d206b4474c367852c44815fca23ac4e48b72b339807f80", - "sha256:a139fe9f298dc097349fb4f28c8b81cc7a202dbfba66af0e14be5cfca4ef7ce5", - "sha256:a32204489259786a923e02990249c65b0f17235073149d0033efcebe80095570", - "sha256:a3982b0a32d0a88b3907e4b0dc36809fda477f0757c59a505d4e9b455f384b8b", - "sha256:aad17e462f42ddbef5984d70c40bfc4146c322a2da79715932cd8976317054de", - "sha256:b560b72ed4816aee52783c66854d96157fd8175631f01ef58e894cc57c84f0f6", - "sha256:b6b0e4912030c6f28bcb72b9ebe4989d6dc2eebcd2a9cdc35fefc38052dd4fe8", - "sha256:baf1c7b78cddb5af00971ad5294a4583188bda1495b13760d9f03c9483bb6203", - "sha256:c0295d52b012cbe0d3059b1dba99159c3be55e632aae1999ab74ae2bd86a33d7", - "sha256:c562b49c96906b4029b5685075fe1ebd3b5cc2601dfa0b9e16c2c09d6cbce048", - "sha256:c69567ddbac186e8c0aadc1f324a60a564cfe25e43ef2ce81bcc4b8c3abffbae", - "sha256:ca71d501629d1fa50ea7fa3b08ba884fe10cefc559f5c6c8dfe9036c16e8ae89", - "sha256:ca976884ce34070799e4dfc6fbd68cb1d181db1eefe4a3a94798ddfb34b8867f", - "sha256:d0491006a6ad20507aec2be72e7831a42efc93193d2402018007ff827dc62926", - "sha256:d074b07a10c391fc5bbdcb37b2f16f20fcd9e51e10d01652ab298c0d07908ee2", - "sha256:d2ce426ee691319d4767748c8e0895cfc56593d725594e415f274059bcf3cb76", - "sha256:d4284c621f06a72ce2cb55f74ea3150113d926a6eb78ab38340c08f770eb9b4d", - "sha256:d5e6b7155b8197b329dc787356cfd2684c9d6a6b1a197f6bbf45f5555a98d411", - "sha256:d816f44a51ba5175394bc6c7879ca0bd2be560b2c9e9f3411ef3a4cbe644c2e9", - "sha256:dd3f79e17b56741b5177bcc36307750d50ea0698df6aa82f69c7db32d968c1c2", - "sha256:dd63cec4e26e790b70544ae5cc48d11b515b09e05fdd5eff12e3195f54b8a586", - "sha256:de9d3e8717560eb05e28739d1b35e4eac2e458553a52a301e51352a7ffc86a35", - "sha256:df4249b579e75094f7e9bb4bd28231acf55e308bf686b952f43100a5a0be394c", - "sha256:e178e5b66a06ec5bf51668ec0d4ac8cfb2bdcb553b2c207d58148340efd00143", - "sha256:e60defc3c15defb70bb38dd605ff7e0fae5f6c9c7cbfe0ad7868582cb7e844a6", - "sha256:ee2794111c188548a4547eccc73a6a8527fe2af6cf25e1a4ebda2fd01cdd2e60", - "sha256:ee7ccc7fb7e921d767f853b47814c3048c7de536663e82fbc37f5eb0d532224b", - "sha256:ee9cf33e7fe14243f5ca6977658eb7d1042caaa66847daacbd2117adb258b226", - "sha256:f0f17814c505f07806e22b28856c59ac80cee7dd0fbb152aed273e116378f519", - "sha256:f3202a429fe825b699c57892d4371c74cc3456d8d71b7f35d6028c96dfecad31", - "sha256:f7054fdc556f5421f01e39cbb767d5ec5c1139ea98c3e5b350e02e62201740c7", - "sha256:fd1a9edb9dd9d79fbeac1ea1f9a8dd527a6113b18d2e9bcc0d541d308dae639b" + "sha256:0a7df63886be5e270da67e0966cf4afbae86069501d35c8c1b3b6c168f42cb36", + "sha256:0cb3da3fd1b6a5d0279a01877713dbda118a2a4fc6f0d821a57da2e464793f05", + "sha256:0dbd8dbed2085ed23b5c04afa29d8fd2771674223135dc9bc937f3c09284d071", + "sha256:0dff76e0602ca7d4cdaacc1ac4c005e0ce0dcfe095d5b5259163a80d3a10d327", + "sha256:1278e0d324f6908e872730c9102b0112477a7f7cf88b308e4fc36ce1bdb6d58c", + "sha256:128585782e5bfa515c590ccee4b727fb76925dd04a98864182b22e89a4e6ed36", + "sha256:1498bec4c05c9c787bde9125cfdcc63a41004ff167f495063191b863399b1a29", + "sha256:19442362866a753485ba5e4be408964644dd6a09123d9416c54cd49171f50744", + "sha256:1b84d168f6c48fabd1f2027a3d1bdfe62f92cade1fb273a5d68e621da0e44e6d", + "sha256:1e90d2e3bd2c3863d48525d297cd143fe541be8bbf6f579504b9712cb6b643ec", + "sha256:20152074317d9bed6b7a95ade3b7d6054845d70584216160860425f4fbd5ee9e", + "sha256:216f9b2d7713eb98cb83c80b9c794de1f6b7e3145eef40400c62e86cee5f4e1e", + "sha256:233710f069d251feb12a56da21e14cca67994eab08362207785cf8c598e74577", + "sha256:255a8ef062cbf6674450e668482456abac99a5583bbafb73f9ad469540a3a232", + "sha256:2584f7cf844ac4d970fba483a717dbe10c1c1c96a969bf65d61ffe94df1b2863", + "sha256:2971bb5ffe72cc0f555c13e19b23c85b654dd2a8f7ab493c262071377bfce9f6", + "sha256:29d2c342c4bc01b88402d60189f3df065fb0dda3654744d5a165a5288a657368", + "sha256:2e203fdf807ac7e12ab59ca2bfcabb38c7cf0b33c41efeb00f8e5da1d86af480", + "sha256:33e3d65a85a2a4a0dc3b092b938a4062b1a05f3a9abde65ea93b233bca0e03f2", + "sha256:374a5e5049eda9e0a44c696c7ade3ff355f06b1fe0bb945ea3cac2bc336478a2", + "sha256:37b0fe330e4a58d3c58b24d91d1eb102aeec675a3db4c292ec3928ecd892a9a6", + "sha256:3d5639516376dce1940ea36edf408c554475369f5da2abd45d44621cb616f769", + "sha256:42c6dcb030aefb668a2b7009c85b27f90e51e6a3b4d5c9bc4c57631292015b0d", + "sha256:4a7cd62e831afe623fbb7aabbb4fe583212115b3ef38a9f6b71869ba644624a2", + "sha256:4ba762ed58e8d68657fc1281e9bb72e1c3e79cc5d464be146e260c541ec12d84", + "sha256:4fc714bdbfb534f94034efaa6eadd74e5b93c8fa6315565a222f7b6f42ca1166", + "sha256:4ffa2ebd4c8530079140dd2d7f794a9d9a73cbb8e9d59ffe24c63436efa8f271", + "sha256:5a1504ad17ba4210df3a045132a7baeeba5a200e930f57512ee02909fc5c4cb5", + "sha256:5c364564d17da23db1106787675fc7af45f2f7b58b4173bfdd105564e132e6fb", + "sha256:5e11661ce0fd30a6790e8bcdf263b9ec5988e95e63cf901972107efc49218b13", + "sha256:5f54b118ce5de9ac21c363d9b3caa6c800341e8c47a508787e5868c6b79c9323", + "sha256:5f5ff8d839f4566a474a969508fe1c5e59c31c80d9e140566f9a37bba7b8d556", + "sha256:61817945f2fe7d166e75fbfb28004034b48e44878177fc54d81688e7b85a3665", + "sha256:624e278a7d29b6445e4e813af92af37820fafb6dcc55c012c834f9e26f9aaaef", + "sha256:63e46b3169866bd62849936de036f901a9356e36376079b05efa83caeaa02ceb", + "sha256:6531b7ca5f951d663c339002e91aaebda765ec7d61b7d1e3991051906ddde119", + "sha256:68665f4c17edcceecc112dfed5dbe6f92261fb9d6054b47d01bf6371a6196126", + "sha256:696dd8d674d6ce621ab9d45b205df149399e4bb9aa34102c970b721554828510", + "sha256:6f783e0ec4803c787bcea93e13e9932edab72068f68ecffdf86a99fd5918878b", + "sha256:723314c1d51722ab28bfcd5240d858512ffd3116449c557a1336cbe3919beb87", + "sha256:74b9127ffea03643e998e0c5ad9bd3811d3dac8c676e47db17b0ee7c3c3bf35f", + "sha256:7530e201d10d7d14abce4fb54cfe5b94a0aefc87da539d0346a484ead376c3cc", + "sha256:77733e3892bb0a7fa797826361ce8a9184d25c8dffaec60b7ffe928153680ba8", + "sha256:78ddaaa81421a29574a682b3179d4cf9e6d405a09b99d93ddcf7e5239c742e21", + "sha256:7c9129eb40958b3d4500fa2467e6a83356b3b61bfff1b414c7361d9220f9ae8f", + "sha256:7d32706badfe136888bdea71c0def994644e09fff0bfe47441deaed8e96fdbc6", + "sha256:81965a16b675b35e1d09dd14df53f190f9129c0202356ed44ab2728b1c905658", + "sha256:8394d940e5d400d04cad4f75c0598665cbb81aecefaca82ca85bd28264af7f9b", + "sha256:86d2f57d3e1379a9525c5ab067b27dbb8a0642fb5d454e17a9ac434f9ce523e3", + "sha256:883a91b5dd7d26492ff2f04f40fbb652de40fcc0afe07e8129e8ae779c2110eb", + "sha256:88ad334a15b32a791ea935af224b9de1bf99bcd62fabf745d5f3442199d86d59", + "sha256:9261d3ce84fa1d38ed649c3638feefeae23d32ba9182963e465d58d62203bd24", + "sha256:97df63000f4fea395b2824da80e169731088656d1818a11b95f3b173747b6cd9", + "sha256:98d134c954828488b153d88ba1f34e14259284f256180ce659e8d83e9c05eaa3", + "sha256:996a38a83508c54c78a5f41456b0103c30508fed9abcad0a59b876d7398f25fd", + "sha256:9a5bce9d23aac8f0cf0836ecfc033896aa8443b501c58d0602dbfd5bd5b37753", + "sha256:9a6b5099eeec78827553827f4c6b8615978bb4b6a88e5d9b93eddf8bb6790f55", + "sha256:9d18368b137c6295db49ce7218b1a9ba15c5bc254c96d7c9f9e924a9bc7825ad", + "sha256:a4fa4fc04dff799089689f4fd502ce7d59de529fc2f40a2c8836886c03e0175a", + "sha256:a5c7ba8ffb6d6f8f2ab08743be203654bb1aaa8c9dcb09f82ddd34eadb695605", + "sha256:aea443fffa9fbe3af1a9ba721a87f926fe548d32cab71d188a6ede77d0ff244e", + "sha256:b10bd51f823d891193d4717448fab065733958bdb6a6b351967bd349d48d5c9b", + "sha256:ba1a0996f6c2773bd83e63f18914c1de3c9dd26d55f4ac302a7efe93fb8e7433", + "sha256:bb2802e667b7051a1bebbfe93684841cc9351004e2badbd6411bf357ab8d5ac8", + "sha256:cfdd16ab5e59fc31b5e906d1a3f666571abc367598e3e02c83403acabc092e07", + "sha256:d06b0c8da4f16d1d1e352134427cb194a0a6e19ad5db9161bf32b2113409e728", + "sha256:d0776dea117cf5272382634bd2a5c1b6eb16767c223c6a5317cd3e2a757c61a0", + "sha256:d18ca8148bebe1b0a382a27a8ee60350091a6ddaf475fa05ef50dc35b5df6327", + "sha256:d4488a93b071c04dc20f5cecc3631fc78b9789dd72483ba15d423b5b3689b555", + "sha256:d5f7a395a8cf1621939692dba2a6b6a830efa6b3cee787d82c7de1ad2930de64", + "sha256:d7a80d21d613eec45e3d41eb22f8f94ddc758a6c4720842dc74c0581f54993d6", + "sha256:d97683ddee4723ae8c95d1eddac7c192e8c552da0c73a925a89fa8649bf13eea", + "sha256:dcedcd19a557e182628afa1d553c3895a9f825b936415d0dbd3cd0bbcfd29b4b", + "sha256:de6d1d1b9e5101508cb37ab0d972357cac5235f5c6533d1071964c47139257df", + "sha256:df49e7a0861a8c36d089c1ed57d308623d60416dab2647a4a17fe050ba85de0e", + "sha256:df933278128ea1cd77772673c73954e53a1c95a4fdf41eef97c2b779271bd0bd", + "sha256:e08277a400de01bc72436a0ccd02bdf596631411f592ad985dcee21445bd0068", + "sha256:e38e63e6f3d1cec5a27e0afe90a085af8b6806ee208b33030e65b6516353f1a3", + "sha256:e55541f756f9b3ee346b840103f32779c695a19826a4c442b7954550a0972040", + "sha256:ec4e55f79b1c4ffb2eecd8a0cfba9955a2588497d96851f4c8f99aa4a1d39b12", + "sha256:ed1a53de42fbe34853ba90513cea21673481cd81ed1be739f7f2efb931b24916", + "sha256:ed541d70698978a20eb63d8c5d72f2cc6d7079d9d90f6b50bad07826f1320f5f", + "sha256:f09e2ff1f17c2b51f2bc76d1cc33da96298f0a036a137f5440ab3ec5360b624f", + "sha256:f220b0eea5965dec25480b6333c788fb72ce5f9129e8759ef876a1d805d00801", + "sha256:f3e0da4ebaef65158d4dfd7d3678aad692f7666877df0002b8a522cdf088f231", + "sha256:f455ee30a9d61d3e1a15abd5068827773d6e4dc513e795f380cdd59932c782d5", + "sha256:f5ef8f42bec47f21d07668a043f077d507e5bf4e668d5c6dfe6aaba89de1a5b8", + "sha256:f69a8e0b033b747bb3e36a44e7732f0c99f7edd5cea723d45bc0d6e95377ffee", + "sha256:ff02b6d461a6de369f07ec15e465a88895f3223eb75073ffea56b84d9331f607" ], "markers": "python_version >= '3.8'", - "version": "==2.18.1" + "version": "==2.23.4" }, "pyparsing": { "hashes": [ - "sha256:a1bac0ce561155ecc3ed78ca94d3c9378656ad4c94c1270de543f621420f94ad", - "sha256:f9db75911801ed778fe61bb643079ff86601aca99fcae6345aa67292038fb742" + "sha256:a6a7ee4235a3f944aa1fa2249307708f893fe5717dc603503c6c7969c070fb7c", + "sha256:f86ec8d1a83f11977c9a6ea7598e8c27fc5cddfa5b07ea2241edbbde1d7bc032" ], "markers": "python_full_version >= '3.6.8'", - "version": "==3.1.2" + "version": "==3.1.4" }, "pyperclip": { "hashes": [ - "sha256:105254a8b04934f0bc84e9c24eb360a591aaf6535c9def5f29d92af107a9bf57" + "sha256:b7de0142ddc81bfc5c7507eea19da920b92252b548b96186caf94a5e2527d310" ], "index": "pypi", - "version": "==1.8.2" + "version": "==1.9.0" }, "python-dateutil": { "hashes": [ "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'", + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==2.9.0.post0" }, "python-dotenv": { @@ -1245,45 +1437,45 @@ }, "pytz": { "hashes": [ - "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812", - "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319" + "sha256:2aa355083c50a0f93fa581709deac0c9ad65cca8a9e9beac660adcbd493c798a", + "sha256:31c7c1817eb7fae7ca4b8c7ee50c72f93aa2dd863de768e1ef4245d426aa0725" ], - "version": "==2024.1" + "version": "==2024.2" }, "requests": { "hashes": [ - "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f", - "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1" + "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", + "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6" ], "index": "pypi", - "markers": "python_version >= '3.7'", - "version": "==2.31.0" + "markers": "python_version >= '3.8'", + "version": "==2.32.3" }, "six": { "hashes": [ "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'", + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.16.0" }, "slack-bolt": { "hashes": [ - "sha256:2509e5bb43898a593667bf37965057a9b9a41008b29628e3b57a6136b650b90e", - "sha256:694f84a81ba1c4c428ba7daa01d599d3e9fba7a54ad10c11008aa22573b23ff0" + "sha256:4657e592339797b9b804547a21e6b35dd8e2cd1eab676bfb23960660aae049fd", + "sha256:8fa26e72b0e55c18c1d34a73558e7fe2150bdc7c947de780b938fdb1d7e854fe" ], "index": "pypi", "markers": "python_version >= '3.6'", - "version": "==1.18.1" + "version": "==1.20.1" }, "slack-sdk": { "hashes": [ - "sha256:85d86b34d807c26c8bb33c1569ec0985876f06ae4a2692afba765b7a5490d28c", - "sha256:c108e509160cf1324c5c8b1f47ca52fb5e287021b8caf9f4ec78ad737ab7b1d9" + "sha256:e328bb661d95db5f66b993b1d64288ac7c72201a745b4c7cf8848dafb7b74e40", + "sha256:ef93beec3ce9c8f64da02fd487598a05ec4bc9c92ceed58f122dbe632691cbe2" ], "index": "pypi", "markers": "python_version >= '3.6'", - "version": "==3.27.1" + "version": "==3.33.1" }, "smmap": { "hashes": [ @@ -1303,222 +1495,238 @@ }, "sudden-death": { "git": "https://github.com/dev-hato/sudden-death", - "ref": "31032787c600be4d3e1a3347469df18ee37baac7" + "ref": "6df6657be29910a23ed541a6f8c2e205558d088a" }, "tqdm": { "hashes": [ - "sha256:1ee4f8a893eb9bef51c6e35730cebf234d5d0b6bd112b0271e10ed7c24a02bd9", - "sha256:6cd52cdf0fef0e0f543299cfc96fec90d7b8a7e88745f411ec33eb44d5ed3531" + "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd", + "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad" ], "markers": "python_version >= '3.7'", - "version": "==4.66.2" + "version": "==4.66.5" }, "typing-extensions": { "hashes": [ - "sha256:83f085bd5ca59c80295fc2a82ab5dac679cbe02b9f33f7d83af68e241bea51b0", - "sha256:c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a" + "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", + "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8" ], "markers": "python_version >= '3.8'", - "version": "==4.11.0" + "version": "==4.12.2" }, "tzdata": { "hashes": [ - "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd", - "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252" + "sha256:7d85cc416e9382e69095b7bdf4afd9e3880418a2413feec7069d533d6b4e31cc", + "sha256:a48093786cdcde33cad18c2555e8532f34422074448fbc874186f0abd79565cd" ], "markers": "python_version >= '2'", - "version": "==2024.1" + "version": "==2024.2" }, "urllib3": { "hashes": [ - "sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d", - "sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19" + "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac", + "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9" ], "markers": "python_version >= '3.8'", - "version": "==2.2.1" + "version": "==2.2.3" }, "websockets": { "hashes": [ - "sha256:00700340c6c7ab788f176d118775202aadea7602c5cc6be6ae127761c16d6b0b", - "sha256:0bee75f400895aef54157b36ed6d3b308fcab62e5260703add87f44cee9c82a6", - "sha256:0e6e2711d5a8e6e482cacb927a49a3d432345dfe7dea8ace7b5790df5932e4df", - "sha256:12743ab88ab2af1d17dd4acb4645677cb7063ef4db93abffbf164218a5d54c6b", - "sha256:1a9d160fd080c6285e202327aba140fc9a0d910b09e423afff4ae5cbbf1c7205", - "sha256:1bf386089178ea69d720f8db6199a0504a406209a0fc23e603b27b300fdd6892", - "sha256:1df2fbd2c8a98d38a66f5238484405b8d1d16f929bb7a33ed73e4801222a6f53", - "sha256:1e4b3f8ea6a9cfa8be8484c9221ec0257508e3a1ec43c36acdefb2a9c3b00aa2", - "sha256:1f38a7b376117ef7aff996e737583172bdf535932c9ca021746573bce40165ed", - "sha256:23509452b3bc38e3a057382c2e941d5ac2e01e251acce7adc74011d7d8de434c", - "sha256:248d8e2446e13c1d4326e0a6a4e9629cb13a11195051a73acf414812700badbd", - "sha256:25eb766c8ad27da0f79420b2af4b85d29914ba0edf69f547cc4f06ca6f1d403b", - "sha256:27a5e9964ef509016759f2ef3f2c1e13f403725a5e6a1775555994966a66e931", - "sha256:2c71bd45a777433dd9113847af751aae36e448bc6b8c361a566cb043eda6ec30", - "sha256:2cb388a5bfb56df4d9a406783b7f9dbefb888c09b71629351cc6b036e9259370", - "sha256:2d225bb6886591b1746b17c0573e29804619c8f755b5598d875bb4235ea639be", - "sha256:2e5fc14ec6ea568200ea4ef46545073da81900a2b67b3e666f04adf53ad452ec", - "sha256:363f57ca8bc8576195d0540c648aa58ac18cf85b76ad5202b9f976918f4219cf", - "sha256:3c6cc1360c10c17463aadd29dd3af332d4a1adaa8796f6b0e9f9df1fdb0bad62", - "sha256:3d829f975fc2e527a3ef2f9c8f25e553eb7bc779c6665e8e1d52aa22800bb38b", - "sha256:3e3aa8c468af01d70332a382350ee95f6986db479ce7af14d5e81ec52aa2b402", - "sha256:3f61726cae9f65b872502ff3c1496abc93ffbe31b278455c418492016e2afc8f", - "sha256:423fc1ed29f7512fceb727e2d2aecb952c46aa34895e9ed96071821309951123", - "sha256:46e71dbbd12850224243f5d2aeec90f0aaa0f2dde5aeeb8fc8df21e04d99eff9", - "sha256:4d87be612cbef86f994178d5186add3d94e9f31cc3cb499a0482b866ec477603", - "sha256:5693ef74233122f8ebab026817b1b37fe25c411ecfca084b29bc7d6efc548f45", - "sha256:5aa9348186d79a5f232115ed3fa9020eab66d6c3437d72f9d2c8ac0c6858c558", - "sha256:5d873c7de42dea355d73f170be0f23788cf3fa9f7bed718fd2830eefedce01b4", - "sha256:5f6ffe2c6598f7f7207eef9a1228b6f5c818f9f4d53ee920aacd35cec8110438", - "sha256:604428d1b87edbf02b233e2c207d7d528460fa978f9e391bd8aaf9c8311de137", - "sha256:6350b14a40c95ddd53e775dbdbbbc59b124a5c8ecd6fbb09c2e52029f7a9f480", - "sha256:6e2df67b8014767d0f785baa98393725739287684b9f8d8a1001eb2839031447", - "sha256:6e96f5ed1b83a8ddb07909b45bd94833b0710f738115751cdaa9da1fb0cb66e8", - "sha256:6e9e7db18b4539a29cc5ad8c8b252738a30e2b13f033c2d6e9d0549b45841c04", - "sha256:70ec754cc2a769bcd218ed8d7209055667b30860ffecb8633a834dde27d6307c", - "sha256:7b645f491f3c48d3f8a00d1fce07445fab7347fec54a3e65f0725d730d5b99cb", - "sha256:7fa3d25e81bfe6a89718e9791128398a50dec6d57faf23770787ff441d851967", - "sha256:81df9cbcbb6c260de1e007e58c011bfebe2dafc8435107b0537f393dd38c8b1b", - "sha256:8572132c7be52632201a35f5e08348137f658e5ffd21f51f94572ca6c05ea81d", - "sha256:87b4aafed34653e465eb77b7c93ef058516cb5acf3eb21e42f33928616172def", - "sha256:8e332c210b14b57904869ca9f9bf4ca32f5427a03eeb625da9b616c85a3a506c", - "sha256:9893d1aa45a7f8b3bc4510f6ccf8db8c3b62120917af15e3de247f0780294b92", - "sha256:9edf3fc590cc2ec20dc9d7a45108b5bbaf21c0d89f9fd3fd1685e223771dc0b2", - "sha256:9fdf06fd06c32205a07e47328ab49c40fc1407cdec801d698a7c41167ea45113", - "sha256:a02413bc474feda2849c59ed2dfb2cddb4cd3d2f03a2fedec51d6e959d9b608b", - "sha256:a1d9697f3337a89691e3bd8dc56dea45a6f6d975f92e7d5f773bc715c15dde28", - "sha256:a571f035a47212288e3b3519944f6bf4ac7bc7553243e41eac50dd48552b6df7", - "sha256:ab3d732ad50a4fbd04a4490ef08acd0517b6ae6b77eb967251f4c263011a990d", - "sha256:ae0a5da8f35a5be197f328d4727dbcfafa53d1824fac3d96cdd3a642fe09394f", - "sha256:b067cb952ce8bf40115f6c19f478dc71c5e719b7fbaa511359795dfd9d1a6468", - "sha256:b2ee7288b85959797970114deae81ab41b731f19ebcd3bd499ae9ca0e3f1d2c8", - "sha256:b81f90dcc6c85a9b7f29873beb56c94c85d6f0dac2ea8b60d995bd18bf3e2aae", - "sha256:ba0cab91b3956dfa9f512147860783a1829a8d905ee218a9837c18f683239611", - "sha256:baa386875b70cbd81798fa9f71be689c1bf484f65fd6fb08d051a0ee4e79924d", - "sha256:bbe6013f9f791944ed31ca08b077e26249309639313fff132bfbf3ba105673b9", - "sha256:bea88d71630c5900690fcb03161ab18f8f244805c59e2e0dc4ffadae0a7ee0ca", - "sha256:befe90632d66caaf72e8b2ed4d7f02b348913813c8b0a32fae1cc5fe3730902f", - "sha256:c3181df4583c4d3994d31fb235dc681d2aaad744fbdbf94c4802485ececdecf2", - "sha256:c4e37d36f0d19f0a4413d3e18c0d03d0c268ada2061868c1e6f5ab1a6d575077", - "sha256:c588f6abc13f78a67044c6b1273a99e1cf31038ad51815b3b016ce699f0d75c2", - "sha256:cbe83a6bbdf207ff0541de01e11904827540aa069293696dd528a6640bd6a5f6", - "sha256:d554236b2a2006e0ce16315c16eaa0d628dab009c33b63ea03f41c6107958374", - "sha256:dbcf72a37f0b3316e993e13ecf32f10c0e1259c28ffd0a85cee26e8549595fbc", - "sha256:dc284bbc8d7c78a6c69e0c7325ab46ee5e40bb4d50e494d8131a07ef47500e9e", - "sha256:dff6cdf35e31d1315790149fee351f9e52978130cef6c87c4b6c9b3baf78bc53", - "sha256:e469d01137942849cff40517c97a30a93ae79917752b34029f0ec72df6b46399", - "sha256:eb809e816916a3b210bed3c82fb88eaf16e8afcf9c115ebb2bacede1797d2547", - "sha256:ed2fcf7a07334c77fc8a230755c2209223a7cc44fc27597729b8ef5425aa61a3", - "sha256:f44069528d45a933997a6fef143030d8ca8042f0dfaad753e2906398290e2870", - "sha256:f764ba54e33daf20e167915edc443b6f88956f37fb606449b4a5b10ba42235a5", - "sha256:fc4e7fa5414512b481a2483775a8e8be7803a35b30ca805afa4998a84f9fd9e8", - "sha256:ffefa1374cd508d633646d51a8e9277763a9b78ae71324183693959cf94635a7" + "sha256:004280a140f220c812e65f36944a9ca92d766b6cc4560be652a0a3883a79ed8a", + "sha256:035233b7531fb92a76beefcbf479504db8c72eb3bff41da55aecce3a0f729e54", + "sha256:149e622dc48c10ccc3d2760e5f36753db9cacf3ad7bc7bbbfd7d9c819e286f23", + "sha256:163e7277e1a0bd9fb3c8842a71661ad19c6aa7bb3d6678dc7f89b17fbcc4aeb7", + "sha256:18503d2c5f3943e93819238bf20df71982d193f73dcecd26c94514f417f6b135", + "sha256:1971e62d2caa443e57588e1d82d15f663b29ff9dfe7446d9964a4b6f12c1e700", + "sha256:204e5107f43095012b00f1451374693267adbb832d29966a01ecc4ce1db26faf", + "sha256:2510c09d8e8df777177ee3d40cd35450dc169a81e747455cc4197e63f7e7bfe5", + "sha256:25c35bf84bf7c7369d247f0b8cfa157f989862c49104c5cf85cb5436a641d93e", + "sha256:2f85cf4f2a1ba8f602298a853cec8526c2ca42a9a4b947ec236eaedb8f2dc80c", + "sha256:308e20f22c2c77f3f39caca508e765f8725020b84aa963474e18c59accbf4c02", + "sha256:325b1ccdbf5e5725fdcb1b0e9ad4d2545056479d0eee392c291c1bf76206435a", + "sha256:327b74e915cf13c5931334c61e1a41040e365d380f812513a255aa804b183418", + "sha256:346bee67a65f189e0e33f520f253d5147ab76ae42493804319b5716e46dddf0f", + "sha256:38377f8b0cdeee97c552d20cf1865695fcd56aba155ad1b4ca8779a5b6ef4ac3", + "sha256:3c78383585f47ccb0fcf186dcb8a43f5438bd7d8f47d69e0b56f71bf431a0a68", + "sha256:4059f790b6ae8768471cddb65d3c4fe4792b0ab48e154c9f0a04cefaabcd5978", + "sha256:459bf774c754c35dbb487360b12c5727adab887f1622b8aed5755880a21c4a20", + "sha256:463e1c6ec853202dd3657f156123d6b4dad0c546ea2e2e38be2b3f7c5b8e7295", + "sha256:4676df3fe46956fbb0437d8800cd5f2b6d41143b6e7e842e60554398432cf29b", + "sha256:485307243237328c022bc908b90e4457d0daa8b5cf4b3723fd3c4a8012fce4c6", + "sha256:48a2ef1381632a2f0cb4efeff34efa97901c9fbc118e01951ad7cfc10601a9bb", + "sha256:4b889dbd1342820cc210ba44307cf75ae5f2f96226c0038094455a96e64fb07a", + "sha256:586a356928692c1fed0eca68b4d1c2cbbd1ca2acf2ac7e7ebd3b9052582deefa", + "sha256:58cf7e75dbf7e566088b07e36ea2e3e2bd5676e22216e4cad108d4df4a7402a0", + "sha256:5993260f483d05a9737073be197371940c01b257cc45ae3f1d5d7adb371b266a", + "sha256:5dd6da9bec02735931fccec99d97c29f47cc61f644264eb995ad6c0c27667238", + "sha256:5f2e75431f8dc4a47f31565a6e1355fb4f2ecaa99d6b89737527ea917066e26c", + "sha256:5f9fee94ebafbc3117c30be1844ed01a3b177bb6e39088bc6b2fa1dc15572084", + "sha256:61fc0dfcda609cda0fc9fe7977694c0c59cf9d749fbb17f4e9483929e3c48a19", + "sha256:624459daabeb310d3815b276c1adef475b3e6804abaf2d9d2c061c319f7f187d", + "sha256:62d516c325e6540e8a57b94abefc3459d7dab8ce52ac75c96cad5549e187e3a7", + "sha256:6548f29b0e401eea2b967b2fdc1c7c7b5ebb3eeb470ed23a54cd45ef078a0db9", + "sha256:6d2aad13a200e5934f5a6767492fb07151e1de1d6079c003ab31e1823733ae79", + "sha256:6d6855bbe70119872c05107e38fbc7f96b1d8cb047d95c2c50869a46c65a8e96", + "sha256:70c5be9f416aa72aab7a2a76c90ae0a4fe2755c1816c153c1a2bcc3333ce4ce6", + "sha256:730f42125ccb14602f455155084f978bd9e8e57e89b569b4d7f0f0c17a448ffe", + "sha256:7a43cfdcddd07f4ca2b1afb459824dd3c6d53a51410636a2c7fc97b9a8cf4842", + "sha256:7bd6abf1e070a6b72bfeb71049d6ad286852e285f146682bf30d0296f5fbadfa", + "sha256:7c1e90228c2f5cdde263253fa5db63e6653f1c00e7ec64108065a0b9713fa1b3", + "sha256:7c65ffa900e7cc958cd088b9a9157a8141c991f8c53d11087e6fb7277a03f81d", + "sha256:80c421e07973a89fbdd93e6f2003c17d20b69010458d3a8e37fb47874bd67d51", + "sha256:82d0ba76371769d6a4e56f7e83bb8e81846d17a6190971e38b5de108bde9b0d7", + "sha256:83f91d8a9bb404b8c2c41a707ac7f7f75b9442a0a876df295de27251a856ad09", + "sha256:87c6e35319b46b99e168eb98472d6c7d8634ee37750d7693656dc766395df096", + "sha256:8d23b88b9388ed85c6faf0e74d8dec4f4d3baf3ecf20a65a47b836d56260d4b9", + "sha256:9156c45750b37337f7b0b00e6248991a047be4aa44554c9886fe6bdd605aab3b", + "sha256:91a0fa841646320ec0d3accdff5b757b06e2e5c86ba32af2e0815c96c7a603c5", + "sha256:95858ca14a9f6fa8413d29e0a585b31b278388aa775b8a81fa24830123874678", + "sha256:95df24ca1e1bd93bbca51d94dd049a984609687cb2fb08a7f2c56ac84e9816ea", + "sha256:9b37c184f8b976f0c0a231a5f3d6efe10807d41ccbe4488df8c74174805eea7d", + "sha256:9b6f347deb3dcfbfde1c20baa21c2ac0751afaa73e64e5b693bb2b848efeaa49", + "sha256:9d75baf00138f80b48f1eac72ad1535aac0b6461265a0bcad391fc5aba875cfc", + "sha256:9ef8aa8bdbac47f4968a5d66462a2a0935d044bf35c0e5a8af152d58516dbeb5", + "sha256:a11e38ad8922c7961447f35c7b17bffa15de4d17c70abd07bfbe12d6faa3e027", + "sha256:a1b54689e38d1279a51d11e3467dd2f3a50f5f2e879012ce8f2d6943f00e83f0", + "sha256:a3b3366087c1bc0a2795111edcadddb8b3b59509d5db5d7ea3fdd69f954a8878", + "sha256:a569eb1b05d72f9bce2ebd28a1ce2054311b66677fcd46cf36204ad23acead8c", + "sha256:a7affedeb43a70351bb811dadf49493c9cfd1ed94c9c70095fd177e9cc1541fa", + "sha256:a9a396a6ad26130cdae92ae10c36af09d9bfe6cafe69670fd3b6da9b07b4044f", + "sha256:a9ab1e71d3d2e54a0aa646ab6d4eebfaa5f416fe78dfe4da2839525dc5d765c6", + "sha256:a9cd1af7e18e5221d2878378fbc287a14cd527fdd5939ed56a18df8a31136bb2", + "sha256:a9dcaf8b0cc72a392760bb8755922c03e17a5a54e08cca58e8b74f6902b433cf", + "sha256:b9d7439d7fab4dce00570bb906875734df13d9faa4b48e261c440a5fec6d9708", + "sha256:bcc03c8b72267e97b49149e4863d57c2d77f13fae12066622dc78fe322490fe6", + "sha256:c11d4d16e133f6df8916cc5b7e3e96ee4c44c936717d684a94f48f82edb7c92f", + "sha256:c1dca61c6db1166c48b95198c0b7d9c990b30c756fc2923cc66f68d17dc558fd", + "sha256:c518e84bb59c2baae725accd355c8dc517b4a3ed8db88b4bc93c78dae2974bf2", + "sha256:c7934fd0e920e70468e676fe7f1b7261c1efa0d6c037c6722278ca0228ad9d0d", + "sha256:c7e72ce6bda6fb9409cc1e8164dd41d7c91466fb599eb047cfda72fe758a34a7", + "sha256:c90d6dec6be2c7d03378a574de87af9b1efea77d0c52a8301dd831ece938452f", + "sha256:ceec59f59d092c5007e815def4ebb80c2de330e9588e101cf8bd94c143ec78a5", + "sha256:cf1781ef73c073e6b0f90af841aaf98501f975d306bbf6221683dd594ccc52b6", + "sha256:d04f13a1d75cb2b8382bdc16ae6fa58c97337253826dfe136195b7f89f661557", + "sha256:d6d300f8ec35c24025ceb9b9019ae9040c1ab2f01cddc2bcc0b518af31c75c14", + "sha256:d8dbb1bf0c0a4ae8b40bdc9be7f644e2f3fb4e8a9aca7145bfa510d4a374eeb7", + "sha256:de58647e3f9c42f13f90ac7e5f58900c80a39019848c5547bc691693098ae1bd", + "sha256:deeb929efe52bed518f6eb2ddc00cc496366a14c726005726ad62c2dd9017a3c", + "sha256:df01aea34b6e9e33572c35cd16bae5a47785e7d5c8cb2b54b2acdb9678315a17", + "sha256:e2620453c075abeb0daa949a292e19f56de518988e079c36478bacf9546ced23", + "sha256:e4450fc83a3df53dec45922b576e91e94f5578d06436871dce3a6be38e40f5db", + "sha256:e54affdeb21026329fb0744ad187cf812f7d3c2aa702a5edb562b325191fcab6", + "sha256:e9875a0143f07d74dc5e1ded1c4581f0d9f7ab86c78994e2ed9e95050073c94d", + "sha256:f1c3cf67185543730888b20682fb186fc8d0fa6f07ccc3ef4390831ab4b388d9", + "sha256:f48c749857f8fb598fb890a75f540e3221d0976ed0bf879cf3c7eef34151acee", + "sha256:f779498eeec470295a2b1a5d97aa1bc9814ecd25e1eb637bd9d1c73a327387f6" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==12.0" + "version": "==13.1" }, "werkzeug": { "hashes": [ - "sha256:3aac3f5da756f93030740bc235d3e09449efcf65f2f55e3602e1d851b8f48795", - "sha256:e39b645a6ac92822588e7b39a692e7828724ceae0b0d702ef96701f90e70128d" + "sha256:02c9eb92b7d6c06f31a782811505d2157837cea66aaede3e217c7c27c039476c", + "sha256:34f2371506b250df4d4f84bfe7b0921e4762525762bbd936614909fe25cd7306" ], "markers": "python_version >= '3.8'", - "version": "==3.0.2" + "version": "==3.0.4" }, "yarl": { "hashes": [ - "sha256:008d3e808d03ef28542372d01057fd09168419cdc8f848efe2804f894ae03e51", - "sha256:03caa9507d3d3c83bca08650678e25364e1843b484f19986a527630ca376ecce", - "sha256:07574b007ee20e5c375a8fe4a0789fad26db905f9813be0f9fef5a68080de559", - "sha256:09efe4615ada057ba2d30df871d2f668af661e971dfeedf0c159927d48bbeff0", - "sha256:0d2454f0aef65ea81037759be5ca9947539667eecebca092733b2eb43c965a81", - "sha256:0e9d124c191d5b881060a9e5060627694c3bdd1fe24c5eecc8d5d7d0eb6faabc", - "sha256:18580f672e44ce1238b82f7fb87d727c4a131f3a9d33a5e0e82b793362bf18b4", - "sha256:1f23e4fe1e8794f74b6027d7cf19dc25f8b63af1483d91d595d4a07eca1fb26c", - "sha256:206a55215e6d05dbc6c98ce598a59e6fbd0c493e2de4ea6cc2f4934d5a18d130", - "sha256:23d32a2594cb5d565d358a92e151315d1b2268bc10f4610d098f96b147370136", - "sha256:26a1dc6285e03f3cc9e839a2da83bcbf31dcb0d004c72d0730e755b33466c30e", - "sha256:29e0f83f37610f173eb7e7b5562dd71467993495e568e708d99e9d1944f561ec", - "sha256:2b134fd795e2322b7684155b7855cc99409d10b2e408056db2b93b51a52accc7", - "sha256:2d47552b6e52c3319fede1b60b3de120fe83bde9b7bddad11a69fb0af7db32f1", - "sha256:357495293086c5b6d34ca9616a43d329317feab7917518bc97a08f9e55648455", - "sha256:35a2b9396879ce32754bd457d31a51ff0a9d426fd9e0e3c33394bf4b9036b099", - "sha256:3777ce5536d17989c91696db1d459574e9a9bd37660ea7ee4d3344579bb6f129", - "sha256:3986b6f41ad22988e53d5778f91855dc0399b043fc8946d4f2e68af22ee9ff10", - "sha256:44d8ffbb9c06e5a7f529f38f53eda23e50d1ed33c6c869e01481d3fafa6b8142", - "sha256:49a180c2e0743d5d6e0b4d1a9e5f633c62eca3f8a86ba5dd3c471060e352ca98", - "sha256:4aa9741085f635934f3a2583e16fcf62ba835719a8b2b28fb2917bb0537c1dfa", - "sha256:4b21516d181cd77ebd06ce160ef8cc2a5e9ad35fb1c5930882baff5ac865eee7", - "sha256:4b3c1ffe10069f655ea2d731808e76e0f452fc6c749bea04781daf18e6039525", - "sha256:4c7d56b293cc071e82532f70adcbd8b61909eec973ae9d2d1f9b233f3d943f2c", - "sha256:4e9035df8d0880b2f1c7f5031f33f69e071dfe72ee9310cfc76f7b605958ceb9", - "sha256:54525ae423d7b7a8ee81ba189f131054defdb122cde31ff17477951464c1691c", - "sha256:549d19c84c55d11687ddbd47eeb348a89df9cb30e1993f1b128f4685cd0ebbf8", - "sha256:54beabb809ffcacbd9d28ac57b0db46e42a6e341a030293fb3185c409e626b8b", - "sha256:566db86717cf8080b99b58b083b773a908ae40f06681e87e589a976faf8246bf", - "sha256:5a2e2433eb9344a163aced6a5f6c9222c0786e5a9e9cac2c89f0b28433f56e23", - "sha256:5aef935237d60a51a62b86249839b51345f47564208c6ee615ed2a40878dccdd", - "sha256:604f31d97fa493083ea21bd9b92c419012531c4e17ea6da0f65cacdcf5d0bd27", - "sha256:63b20738b5aac74e239622d2fe30df4fca4942a86e31bf47a81a0e94c14df94f", - "sha256:686a0c2f85f83463272ddffd4deb5e591c98aac1897d65e92319f729c320eece", - "sha256:6a962e04b8f91f8c4e5917e518d17958e3bdee71fd1d8b88cdce74dd0ebbf434", - "sha256:6ad6d10ed9b67a382b45f29ea028f92d25bc0bc1daf6c5b801b90b5aa70fb9ec", - "sha256:6f5cb257bc2ec58f437da2b37a8cd48f666db96d47b8a3115c29f316313654ff", - "sha256:6fe79f998a4052d79e1c30eeb7d6c1c1056ad33300f682465e1b4e9b5a188b78", - "sha256:7855426dfbddac81896b6e533ebefc0af2f132d4a47340cee6d22cac7190022d", - "sha256:7d5aaac37d19b2904bb9dfe12cdb08c8443e7ba7d2852894ad448d4b8f442863", - "sha256:801e9264d19643548651b9db361ce3287176671fb0117f96b5ac0ee1c3530d53", - "sha256:81eb57278deb6098a5b62e88ad8281b2ba09f2f1147c4767522353eaa6260b31", - "sha256:824d6c50492add5da9374875ce72db7a0733b29c2394890aef23d533106e2b15", - "sha256:8397a3817d7dcdd14bb266283cd1d6fc7264a48c186b986f32e86d86d35fbac5", - "sha256:848cd2a1df56ddbffeb375535fb62c9d1645dde33ca4d51341378b3f5954429b", - "sha256:84fc30f71689d7fc9168b92788abc977dc8cefa806909565fc2951d02f6b7d57", - "sha256:8619d6915b3b0b34420cf9b2bb6d81ef59d984cb0fde7544e9ece32b4b3043c3", - "sha256:8a854227cf581330ffa2c4824d96e52ee621dd571078a252c25e3a3b3d94a1b1", - "sha256:8be9e837ea9113676e5754b43b940b50cce76d9ed7d2461df1af39a8ee674d9f", - "sha256:928cecb0ef9d5a7946eb6ff58417ad2fe9375762382f1bf5c55e61645f2c43ad", - "sha256:957b4774373cf6f709359e5c8c4a0af9f6d7875db657adb0feaf8d6cb3c3964c", - "sha256:992f18e0ea248ee03b5a6e8b3b4738850ae7dbb172cc41c966462801cbf62cf7", - "sha256:9fc5fc1eeb029757349ad26bbc5880557389a03fa6ada41703db5e068881e5f2", - "sha256:a00862fb23195b6b8322f7d781b0dc1d82cb3bcac346d1e38689370cc1cc398b", - "sha256:a3a6ed1d525bfb91b3fc9b690c5a21bb52de28c018530ad85093cc488bee2dd2", - "sha256:a6327976c7c2f4ee6816eff196e25385ccc02cb81427952414a64811037bbc8b", - "sha256:a7409f968456111140c1c95301cadf071bd30a81cbd7ab829169fb9e3d72eae9", - "sha256:a825ec844298c791fd28ed14ed1bffc56a98d15b8c58a20e0e08c1f5f2bea1be", - "sha256:a8c1df72eb746f4136fe9a2e72b0c9dc1da1cbd23b5372f94b5820ff8ae30e0e", - "sha256:a9bd00dc3bc395a662900f33f74feb3e757429e545d831eef5bb280252631984", - "sha256:aa102d6d280a5455ad6a0f9e6d769989638718e938a6a0a2ff3f4a7ff8c62cc4", - "sha256:aaaea1e536f98754a6e5c56091baa1b6ce2f2700cc4a00b0d49eca8dea471074", - "sha256:ad4d7a90a92e528aadf4965d685c17dacff3df282db1121136c382dc0b6014d2", - "sha256:b8477c1ee4bd47c57d49621a062121c3023609f7a13b8a46953eb6c9716ca392", - "sha256:ba6f52cbc7809cd8d74604cce9c14868306ae4aa0282016b641c661f981a6e91", - "sha256:bac8d525a8dbc2a1507ec731d2867025d11ceadcb4dd421423a5d42c56818541", - "sha256:bef596fdaa8f26e3d66af846bbe77057237cb6e8efff8cd7cc8dff9a62278bbf", - "sha256:c0ec0ed476f77db9fb29bca17f0a8fcc7bc97ad4c6c1d8959c507decb22e8572", - "sha256:c38c9ddb6103ceae4e4498f9c08fac9b590c5c71b0370f98714768e22ac6fa66", - "sha256:c7224cab95645c7ab53791022ae77a4509472613e839dab722a72abe5a684575", - "sha256:c74018551e31269d56fab81a728f683667e7c28c04e807ba08f8c9e3bba32f14", - "sha256:ca06675212f94e7a610e85ca36948bb8fc023e458dd6c63ef71abfd482481aa5", - "sha256:d1d2532b340b692880261c15aee4dc94dd22ca5d61b9db9a8a361953d36410b1", - "sha256:d25039a474c4c72a5ad4b52495056f843a7ff07b632c1b92ea9043a3d9950f6e", - "sha256:d5ff2c858f5f6a42c2a8e751100f237c5e869cbde669a724f2062d4c4ef93551", - "sha256:d7d7f7de27b8944f1fee2c26a88b4dabc2409d2fea7a9ed3df79b67277644e17", - "sha256:d7eeb6d22331e2fd42fce928a81c697c9ee2d51400bd1a28803965883e13cead", - "sha256:d8a1c6c0be645c745a081c192e747c5de06e944a0d21245f4cf7c05e457c36e0", - "sha256:d8b889777de69897406c9fb0b76cdf2fd0f31267861ae7501d93003d55f54fbe", - "sha256:d9e09c9d74f4566e905a0b8fa668c58109f7624db96a2171f21747abc7524234", - "sha256:db8e58b9d79200c76956cefd14d5c90af54416ff5353c5bfd7cbe58818e26ef0", - "sha256:ddb2a5c08a4eaaba605340fdee8fc08e406c56617566d9643ad8bf6852778fc7", - "sha256:e0381b4ce23ff92f8170080c97678040fc5b08da85e9e292292aba67fdac6c34", - "sha256:e23a6d84d9d1738dbc6e38167776107e63307dfc8ad108e580548d1f2c587f42", - "sha256:e516dc8baf7b380e6c1c26792610230f37147bb754d6426462ab115a02944385", - "sha256:ea65804b5dc88dacd4a40279af0cdadcfe74b3e5b4c897aa0d81cf86927fee78", - "sha256:ec61d826d80fc293ed46c9dd26995921e3a82146feacd952ef0757236fc137be", - "sha256:ee04010f26d5102399bd17f8df8bc38dc7ccd7701dc77f4a68c5b8d733406958", - "sha256:f3bc6af6e2b8f92eced34ef6a96ffb248e863af20ef4fde9448cc8c9b858b749", - "sha256:f7d6b36dd2e029b6bcb8a13cf19664c7b8e19ab3a58e0fefbb5b8461447ed5ec" + "sha256:08d7148ff11cb8e886d86dadbfd2e466a76d5dd38c7ea8ebd9b0e07946e76e4b", + "sha256:098b870c18f1341786f290b4d699504e18f1cd050ed179af8123fd8232513424", + "sha256:11b3ca8b42a024513adce810385fcabdd682772411d95bbbda3b9ed1a4257644", + "sha256:1891d69a6ba16e89473909665cd355d783a8a31bc84720902c5911dbb6373465", + "sha256:1bbb418f46c7f7355084833051701b2301092e4611d9e392360c3ba2e3e69f88", + "sha256:1d0828e17fa701b557c6eaed5edbd9098eb62d8838344486248489ff233998b8", + "sha256:1d8e3ca29f643dd121f264a7c89f329f0fcb2e4461833f02de6e39fef80f89da", + "sha256:1fa56f34b2236f5192cb5fceba7bbb09620e5337e0b6dfe2ea0ddbd19dd5b154", + "sha256:216a6785f296169ed52cd7dcdc2612f82c20f8c9634bf7446327f50398732a51", + "sha256:22b739f99c7e4787922903f27a892744189482125cc7b95b747f04dd5c83aa9f", + "sha256:2430cf996113abe5aee387d39ee19529327205cda975d2b82c0e7e96e5fdabdc", + "sha256:269c201bbc01d2cbba5b86997a1e0f73ba5e2f471cfa6e226bcaa7fd664b598d", + "sha256:298c1eecfd3257aa16c0cb0bdffb54411e3e831351cd69e6b0739be16b1bdaa8", + "sha256:2a93a4557f7fc74a38ca5a404abb443a242217b91cd0c4840b1ebedaad8919d4", + "sha256:2b2442a415a5f4c55ced0fade7b72123210d579f7d950e0b5527fc598866e62c", + "sha256:2db874dd1d22d4c2c657807562411ffdfabec38ce4c5ce48b4c654be552759dc", + "sha256:309c104ecf67626c033845b860d31594a41343766a46fa58c3309c538a1e22b2", + "sha256:31497aefd68036d8e31bfbacef915826ca2e741dbb97a8d6c7eac66deda3b606", + "sha256:373f16f38721c680316a6a00ae21cc178e3a8ef43c0227f88356a24c5193abd6", + "sha256:396e59b8de7e4d59ff5507fb4322d2329865b909f29a7ed7ca37e63ade7f835c", + "sha256:3bb83a0f12701c0b91112a11148b5217617982e1e466069d0555be9b372f2734", + "sha256:3de86547c820e4f4da4606d1c8ab5765dd633189791f15247706a2eeabc783ae", + "sha256:3fdbf0418489525231723cdb6c79e7738b3cbacbaed2b750cb033e4ea208f220", + "sha256:40c6e73c03a6befb85b72da213638b8aaa80fe4136ec8691560cf98b11b8ae6e", + "sha256:44a4c40a6f84e4d5955b63462a0e2a988f8982fba245cf885ce3be7618f6aa7d", + "sha256:44b07e1690f010c3c01d353b5790ec73b2f59b4eae5b0000593199766b3f7a5c", + "sha256:45d23c4668d4925688e2ea251b53f36a498e9ea860913ce43b52d9605d3d8177", + "sha256:45f209fb4bbfe8630e3d2e2052535ca5b53d4ce2d2026bed4d0637b0416830da", + "sha256:4afdf84610ca44dcffe8b6c22c68f309aff96be55f5ea2fa31c0c225d6b83e23", + "sha256:4feaaa4742517eaceafcbe74595ed335a494c84634d33961214b278126ec1485", + "sha256:576365c9f7469e1f6124d67b001639b77113cfd05e85ce0310f5f318fd02fe85", + "sha256:5820bd4178e6a639b3ef1db8b18500a82ceab6d8b89309e121a6859f56585b05", + "sha256:5989a38ba1281e43e4663931a53fbf356f78a0325251fd6af09dd03b1d676a09", + "sha256:5a9bacedbb99685a75ad033fd4de37129449e69808e50e08034034c0bf063f99", + "sha256:5b66c87da3c6da8f8e8b648878903ca54589038a0b1e08dde2c86d9cd92d4ac9", + "sha256:5c5e32fef09ce101fe14acd0f498232b5710effe13abac14cd95de9c274e689e", + "sha256:658e8449b84b92a4373f99305de042b6bd0d19bf2080c093881e0516557474a5", + "sha256:6a2acde25be0cf9be23a8f6cbd31734536a264723fca860af3ae5e89d771cd71", + "sha256:6a5185ad722ab4dd52d5fb1f30dcc73282eb1ed494906a92d1a228d3f89607b0", + "sha256:6b7f6e699304717fdc265a7e1922561b02a93ceffdaefdc877acaf9b9f3080b8", + "sha256:703b0f584fcf157ef87816a3c0ff868e8c9f3c370009a8b23b56255885528f10", + "sha256:7055bbade838d68af73aea13f8c86588e4bcc00c2235b4b6d6edb0dbd174e246", + "sha256:78f271722423b2d4851cf1f4fa1a1c4833a128d020062721ba35e1a87154a049", + "sha256:7addd26594e588503bdef03908fc207206adac5bd90b6d4bc3e3cf33a829f57d", + "sha256:81bad32c8f8b5897c909bf3468bf601f1b855d12f53b6af0271963ee67fff0d2", + "sha256:82e692fb325013a18a5b73a4fed5a1edaa7c58144dc67ad9ef3d604eccd451ad", + "sha256:84bbcdcf393139f0abc9f642bf03f00cac31010f3034faa03224a9ef0bb74323", + "sha256:86c438ce920e089c8c2388c7dcc8ab30dfe13c09b8af3d306bcabb46a053d6f7", + "sha256:8be8cdfe20787e6a5fcbd010f8066227e2bb9058331a4eccddec6c0db2bb85b2", + "sha256:8c723c91c94a3bc8033dd2696a0f53e5d5f8496186013167bddc3fb5d9df46a3", + "sha256:8ca53632007c69ddcdefe1e8cbc3920dd88825e618153795b57e6ebcc92e752a", + "sha256:8f722f30366474a99745533cc4015b1781ee54b08de73260b2bbe13316079851", + "sha256:942c80a832a79c3707cca46bd12ab8aa58fddb34b1626d42b05aa8f0bcefc206", + "sha256:94a993f976cdcb2dc1b855d8b89b792893220db8862d1a619efa7451817c836b", + "sha256:95c6737f28069153c399d875317f226bbdea939fd48a6349a3b03da6829fb550", + "sha256:9915300fe5a0aa663c01363db37e4ae8e7c15996ebe2c6cce995e7033ff6457f", + "sha256:9a18595e6a2ee0826bf7dfdee823b6ab55c9b70e8f80f8b77c37e694288f5de1", + "sha256:9c8854b9f80693d20cec797d8e48a848c2fb273eb6f2587b57763ccba3f3bd4b", + "sha256:9cec42a20eae8bebf81e9ce23fb0d0c729fc54cf00643eb251ce7c0215ad49fe", + "sha256:9d2e1626be8712333a9f71270366f4a132f476ffbe83b689dd6dc0d114796c74", + "sha256:9d74f3c335cfe9c21ea78988e67f18eb9822f5d31f88b41aec3a1ec5ecd32da5", + "sha256:9fb4134cc6e005b99fa29dbc86f1ea0a298440ab6b07c6b3ee09232a3b48f495", + "sha256:a0ae6637b173d0c40b9c1462e12a7a2000a71a3258fa88756a34c7d38926911c", + "sha256:a31d21089894942f7d9a8df166b495101b7258ff11ae0abec58e32daf8088813", + "sha256:a3442c31c11088e462d44a644a454d48110f0588de830921fd201060ff19612a", + "sha256:ab9524e45ee809a083338a749af3b53cc7efec458c3ad084361c1dbf7aaf82a2", + "sha256:b1481c048fe787f65e34cb06f7d6824376d5d99f1231eae4778bbe5c3831076d", + "sha256:b8c837ab90c455f3ea8e68bee143472ee87828bff19ba19776e16ff961425b57", + "sha256:bbf2c3f04ff50f16404ce70f822cdc59760e5e2d7965905f0e700270feb2bbfc", + "sha256:bbf9c2a589be7414ac4a534d54e4517d03f1cbb142c0041191b729c2fa23f320", + "sha256:bcd5bf4132e6a8d3eb54b8d56885f3d3a38ecd7ecae8426ecf7d9673b270de43", + "sha256:c14c16831b565707149c742d87a6203eb5597f4329278446d5c0ae7a1a43928e", + "sha256:c49f3e379177f4477f929097f7ed4b0622a586b0aa40c07ac8c0f8e40659a1ac", + "sha256:c92b89bffc660f1274779cb6fbb290ec1f90d6dfe14492523a0667f10170de26", + "sha256:cd66152561632ed4b2a9192e7f8e5a1d41e28f58120b4761622e0355f0fe034c", + "sha256:cf1ad338620249f8dd6d4b6a91a69d1f265387df3697ad5dc996305cf6c26fb2", + "sha256:d07b52c8c450f9366c34aa205754355e933922c79135125541daae6cbf31c799", + "sha256:d0d12fe78dcf60efa205e9a63f395b5d343e801cf31e5e1dda0d2c1fb618073d", + "sha256:d4ee1d240b84e2f213565f0ec08caef27a0e657d4c42859809155cf3a29d1735", + "sha256:d959fe96e5c2712c1876d69af0507d98f0b0e8d81bee14cfb3f6737470205419", + "sha256:dcaef817e13eafa547cdfdc5284fe77970b891f731266545aae08d6cce52161e", + "sha256:df4e82e68f43a07735ae70a2d84c0353e58e20add20ec0af611f32cd5ba43fb4", + "sha256:ec8cfe2295f3e5e44c51f57272afbd69414ae629ec7c6b27f5a410efc78b70a0", + "sha256:ec9dd328016d8d25702a24ee274932aebf6be9787ed1c28d021945d264235b3c", + "sha256:ef9b85fa1bc91c4db24407e7c4da93a5822a73dd4513d67b454ca7064e8dc6a3", + "sha256:f3bf60444269345d712838bb11cc4eadaf51ff1a364ae39ce87a5ca8ad3bb2c8", + "sha256:f452cc1436151387d3d50533523291d5f77c6bc7913c116eb985304abdbd9ec9", + "sha256:f7917697bcaa3bc3e83db91aa3a0e448bf5cde43c84b7fc1ae2427d2417c0224", + "sha256:f90575e9fe3aae2c1e686393a9689c724cd00045275407f71771ae5d690ccf38", + "sha256:fb382fd7b4377363cc9f13ba7c819c3c78ed97c36a82f16f3f92f108c787cbbf", + "sha256:fb9f59f3848edf186a76446eb8bcf4c900fe147cb756fbbd730ef43b2e67c6a7", + "sha256:fc2931ac9ce9c61c9968989ec831d3a5e6fcaaff9474e7cfa8de80b7aff5a093" ], - "markers": "python_version >= '3.7'", - "version": "==1.9.4" + "markers": "python_version >= '3.8'", + "version": "==1.13.1" } }, "develop": { @@ -1531,57 +1739,57 @@ }, "astroid": { "hashes": [ - "sha256:951798f922990137ac090c53af473db7ab4e70c770e6d7fae0cec59f74411819", - "sha256:ac248253bfa4bd924a0de213707e7ebeeb3138abeb48d798784ead1e56d419d4" + "sha256:5eba185467253501b62a9f113c263524b4f5d55e1b30456370eed4cdbd6438fd", + "sha256:e73d0b62dd680a7c07cb2cd0ce3c22570b044dd01bd994bc3a2dd16c6cbba162" ], - "markers": "python_full_version >= '3.8.0'", - "version": "==3.1.0" + "markers": "python_full_version >= '3.9.0'", + "version": "==3.3.4" }, "autopep8": { "hashes": [ - "sha256:1fa8964e4618929488f4ec36795c7ff12924a68b8bf01366c094fc52f770b6e7", - "sha256:2bb76888c5edbcafe6aabab3c47ba534f5a2c2d245c2eddced4a30c4b4946357" + "sha256:8d6c87eba648fdcfc83e29b788910b8643171c395d9c4bcf115ece035b9c9dda", + "sha256:a203fe0fcad7939987422140ab17a930f684763bf7335bdb6709991dd7ef6c2d" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==2.1.0" + "version": "==2.3.1" }, "black": { "hashes": [ - "sha256:1bb9ca06e556a09f7f7177bc7cb604e5ed2d2df1e9119e4f7d2f1f7071c32e5d", - "sha256:21f9407063ec71c5580b8ad975653c66508d6a9f57bd008bb8691d273705adcd", - "sha256:4396ca365a4310beef84d446ca5016f671b10f07abdba3e4e4304218d2c71d33", - "sha256:44d99dfdf37a2a00a6f7a8dcbd19edf361d056ee51093b2445de7ca09adac965", - "sha256:5cd5b4f76056cecce3e69b0d4c228326d2595f506797f40b9233424e2524c070", - "sha256:64578cf99b6b46a6301bc28bdb89f9d6f9b592b1c5837818a177c98525dbe397", - "sha256:64e60a7edd71fd542a10a9643bf369bfd2644de95ec71e86790b063aa02ff745", - "sha256:652e55bb722ca026299eb74e53880ee2315b181dfdd44dca98e43448620ddec1", - "sha256:6644f97a7ef6f401a150cca551a1ff97e03c25d8519ee0bbc9b0058772882665", - "sha256:6ad001a9ddd9b8dfd1b434d566be39b1cd502802c8d38bbb1ba612afda2ef436", - "sha256:71d998b73c957444fb7c52096c3843875f4b6b47a54972598741fe9a7f737fcb", - "sha256:74eb9b5420e26b42c00a3ff470dc0cd144b80a766128b1771d07643165e08d0e", - "sha256:75a2d0b4f5eb81f7eebc31f788f9830a6ce10a68c91fbe0fade34fff7a2836e6", - "sha256:7852b05d02b5b9a8c893ab95863ef8986e4dda29af80bbbda94d7aee1abf8702", - "sha256:7f2966b9b2b3b7104fca9d75b2ee856fe3fdd7ed9e47c753a4bb1a675f2caab8", - "sha256:8e5537f456a22cf5cfcb2707803431d2feeb82ab3748ade280d6ccd0b40ed2e8", - "sha256:d4e71cdebdc8efeb6deaf5f2deb28325f8614d48426bed118ecc2dcaefb9ebf3", - "sha256:dae79397f367ac8d7adb6c779813328f6d690943f64b32983e896bcccd18cbad", - "sha256:e3a3a092b8b756c643fe45f4624dbd5a389f770a4ac294cf4d0fce6af86addaf", - "sha256:eb949f56a63c5e134dfdca12091e98ffb5fd446293ebae123d10fc1abad00b9e", - "sha256:f07b69fda20578367eaebbd670ff8fc653ab181e1ff95d84497f9fa20e7d0641", - "sha256:f95cece33329dc4aa3b0e1a771c41075812e46cf3d6e3f1dfe3d91ff09826ed2" + "sha256:09cdeb74d494ec023ded657f7092ba518e8cf78fa8386155e4a03fdcc44679e6", + "sha256:1f13f7f386f86f8121d76599114bb8c17b69d962137fc70efe56137727c7047e", + "sha256:2500945420b6784c38b9ee885af039f5e7471ef284ab03fa35ecdde4688cd83f", + "sha256:2b59b250fdba5f9a9cd9d0ece6e6d993d91ce877d121d161e4698af3eb9c1018", + "sha256:3c4285573d4897a7610054af5a890bde7c65cb466040c5f0c8b732812d7f0e5e", + "sha256:505289f17ceda596658ae81b61ebbe2d9b25aa78067035184ed0a9d855d18afd", + "sha256:62e8730977f0b77998029da7971fa896ceefa2c4c4933fcd593fa599ecbf97a4", + "sha256:649f6d84ccbae73ab767e206772cc2d7a393a001070a4c814a546afd0d423aed", + "sha256:6e55d30d44bed36593c3163b9bc63bf58b3b30e4611e4d88a0c3c239930ed5b2", + "sha256:707a1ca89221bc8a1a64fb5e15ef39cd755633daa672a9db7498d1c19de66a42", + "sha256:72901b4913cbac8972ad911dc4098d5753704d1f3c56e44ae8dce99eecb0e3af", + "sha256:73bbf84ed136e45d451a260c6b73ed674652f90a2b3211d6a35e78054563a9bb", + "sha256:7c046c1d1eeb7aea9335da62472481d3bbf3fd986e093cffd35f4385c94ae368", + "sha256:81c6742da39f33b08e791da38410f32e27d632260e599df7245cccee2064afeb", + "sha256:837fd281f1908d0076844bc2b801ad2d369c78c45cf800cad7b61686051041af", + "sha256:972085c618ee94f402da1af548a4f218c754ea7e5dc70acb168bfaca4c2542ed", + "sha256:9e84e33b37be070ba135176c123ae52a51f82306def9f7d063ee302ecab2cf47", + "sha256:b19c9ad992c7883ad84c9b22aaa73562a16b819c1d8db7a1a1a49fb7ec13c7d2", + "sha256:d6417535d99c37cee4091a2f24eb2b6d5ec42b144d50f1f2e436d9fe1916fe1a", + "sha256:eab4dd44ce80dea27dc69db40dab62d4ca96112f87996bca68cd75639aeb2e4c", + "sha256:f490dbd59680d809ca31efdae20e634f3fae27fba3ce0ba3208333b713bc3920", + "sha256:fb6e2c0b86bbd43dee042e48059c9ad7830abd5c94b0bc518c0eeec57c3eddc1" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==24.4.0" + "version": "==24.8.0" }, "certifi": { "hashes": [ - "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f", - "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1" + "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8", + "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9" ], "markers": "python_version >= '3.6'", - "version": "==2024.2.2" + "version": "==2024.8.30" }, "cfgv": { "hashes": [ @@ -1714,11 +1922,11 @@ }, "diff-cover": { "hashes": [ - "sha256:1dc851d3f3f320c048d03618e4c0d9861fa4a1506b425d2d09a564b20c95674a", - "sha256:31b308259b79e2cab5f30aff499a3ea3ba9475f0d495d82ba9b6caa7487bca03" + "sha256:1e24edc51c39e810c47dd9986e76c333ed95859655c091f572e590c39cabbdbe", + "sha256:85a0b353ebbb678f9e87ea303f75b545bd0baca38f563219bb72f2ae862bba36" ], "markers": "python_full_version >= '3.8.10' and python_full_version < '4.0.0'", - "version": "==9.0.0" + "version": "==9.2.0" }, "dill": { "hashes": [ @@ -1737,45 +1945,45 @@ }, "filelock": { "hashes": [ - "sha256:404e5e9253aa60ad457cae1be07c0f0ca90a63931200a47d9b6a6af84fd7b45f", - "sha256:d13f466618bfde72bd2c18255e269f72542c6e70e7bac83a0232d6b1cc5c8cf4" + "sha256:2082e5703d51fbf98ea75855d9d5527e33d8ff23099bec374a134febee6946b0", + "sha256:c249fbfcd5db47e5e2d6d62198e565475ee65e4831e2561c8e313fa7eb961435" ], "markers": "python_version >= '3.8'", - "version": "==3.13.4" + "version": "==3.16.1" }, "flake8": { "hashes": [ - "sha256:33f96621059e65eec474169085dc92bf26e7b2d47366b70be2f67ab80dc25132", - "sha256:a6dfbb75e03252917f2473ea9653f7cd799c3064e54d4c8140044c5c065f53c3" + "sha256:049d058491e228e03e67b390f311bbf88fce2dbaa8fa673e7aea87b7198b8d38", + "sha256:597477df7860daa5aa0fdd84bf5208a043ab96b8e96ab708770ae0364dd03213" ], "index": "pypi", "markers": "python_full_version >= '3.8.1'", - "version": "==7.0.0" + "version": "==7.1.1" }, "identify": { "hashes": [ - "sha256:37d93f380f4de590500d9dba7db359d0d3da95ffe7f9de1753faa159e71e7dfa", - "sha256:e5e00f54165f9047fbebeb4a560f9acfb8af4c88232be60a488e9b68d122745d" + "sha256:53863bcac7caf8d2ed85bd20312ea5dcfc22226800f6d6881f232d861db5a8f0", + "sha256:91478c5fb7c3aac5ff7bf9b4344f803843dc586832d5f110d672b19aa1984c98" ], "markers": "python_version >= '3.8'", - "version": "==2.5.36" + "version": "==2.6.1" }, "idna": { "hashes": [ - "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", - "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0" + "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", + "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3" ], - "markers": "python_version >= '3.5'", - "version": "==3.7" + "markers": "python_version >= '3.6'", + "version": "==3.10" }, "importlib-metadata": { "hashes": [ - "sha256:30962b96c0c223483ed6cc7280e7f0199feb01a0e40cfae4d4450fc6fab1f570", - "sha256:b78938b926ee8d5f020fc4772d487045805a55ddbad2ecf21c6d60938dc7fcd2" + "sha256:45e54197d28b7a7f1559e60b95e7c567032b602131fbd588f1497f47880aa68b", + "sha256:71522656f0abace1d072b9e5481a48f07c138e00f079c38c8f883823f9c26bd7" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==7.1.0" + "version": "==8.5.0" }, "iniconfig": { "hashes": [ @@ -1796,11 +2004,11 @@ }, "jinja2": { "hashes": [ - "sha256:7d6d50dd97d52cbc355597bd845fabfbac3f551e1f99619e39a35ce8c370b5fa", - "sha256:ac8bd6544d4bb2c9792bf3a159e80bba8fda7f07e81bc3aed565432d5925ba90" + "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369", + "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d" ], "markers": "python_version >= '3.7'", - "version": "==3.1.3" + "version": "==3.1.4" }, "markupsafe": { "hashes": [ @@ -1879,37 +2087,37 @@ }, "mypy": { "hashes": [ - "sha256:0235391f1c6f6ce487b23b9dbd1327b4ec33bb93934aa986efe8a9563d9349e6", - "sha256:190da1ee69b427d7efa8aa0d5e5ccd67a4fb04038c380237a0d96829cb157913", - "sha256:2418488264eb41f69cc64a69a745fad4a8f86649af4b1041a4c64ee61fc61129", - "sha256:3a3c007ff3ee90f69cf0a15cbcdf0995749569b86b6d2f327af01fd1b8aee9dc", - "sha256:3cc5da0127e6a478cddd906068496a97a7618a21ce9b54bde5bf7e539c7af974", - "sha256:48533cdd345c3c2e5ef48ba3b0d3880b257b423e7995dada04248725c6f77374", - "sha256:49c87c15aed320de9b438ae7b00c1ac91cd393c1b854c2ce538e2a72d55df150", - "sha256:4d3dbd346cfec7cb98e6cbb6e0f3c23618af826316188d587d1c1bc34f0ede03", - "sha256:571741dc4194b4f82d344b15e8837e8c5fcc462d66d076748142327626a1b6e9", - "sha256:587ce887f75dd9700252a3abbc9c97bbe165a4a630597845c61279cf32dfbf02", - "sha256:5d741d3fc7c4da608764073089e5f58ef6352bedc223ff58f2f038c2c4698a89", - "sha256:5e6061f44f2313b94f920e91b204ec600982961e07a17e0f6cd83371cb23f5c2", - "sha256:61758fabd58ce4b0720ae1e2fea5cfd4431591d6d590b197775329264f86311d", - "sha256:653265f9a2784db65bfca694d1edd23093ce49740b2244cde583aeb134c008f3", - "sha256:68edad3dc7d70f2f17ae4c6c1b9471a56138ca22722487eebacfd1eb5321d612", - "sha256:81a10926e5473c5fc3da8abb04119a1f5811a236dc3a38d92015cb1e6ba4cb9e", - "sha256:85ca5fcc24f0b4aeedc1d02f93707bccc04733f21d41c88334c5482219b1ccb3", - "sha256:a260627a570559181a9ea5de61ac6297aa5af202f06fd7ab093ce74e7181e43e", - "sha256:aceb1db093b04db5cd390821464504111b8ec3e351eb85afd1433490163d60cd", - "sha256:b685154e22e4e9199fc95f298661deea28aaede5ae16ccc8cbb1045e716b3e04", - "sha256:d357423fa57a489e8c47b7c85dfb96698caba13d66e086b412298a1a0ea3b0ed", - "sha256:d4d5ddc13421ba3e2e082a6c2d74c2ddb3979c39b582dacd53dd5d9431237185", - "sha256:e49499be624dead83927e70c756970a0bc8240e9f769389cdf5714b0784ca6bf", - "sha256:e54396d70be04b34f31d2edf3362c1edd023246c82f1730bbf8768c28db5361b", - "sha256:f88566144752999351725ac623471661c9d1cd8caa0134ff98cceeea181789f4", - "sha256:f8a67616990062232ee4c3952f41c779afac41405806042a8126fe96e098419f", - "sha256:fe28657de3bfec596bbeef01cb219833ad9d38dd5393fc649f4b366840baefe6" + "sha256:06d26c277962f3fb50e13044674aa10553981ae514288cb7d0a738f495550b36", + "sha256:2ff93107f01968ed834f4256bc1fc4475e2fecf6c661260066a985b52741ddce", + "sha256:36383a4fcbad95f2657642a07ba22ff797de26277158f1cc7bd234821468b1b6", + "sha256:37c7fa6121c1cdfcaac97ce3d3b5588e847aa79b580c1e922bb5d5d2902df19b", + "sha256:3a66169b92452f72117e2da3a576087025449018afc2d8e9bfe5ffab865709ca", + "sha256:3f14cd3d386ac4d05c5a39a51b84387403dadbd936e17cb35882134d4f8f0d24", + "sha256:41ea707d036a5307ac674ea172875f40c9d55c5394f888b168033177fce47383", + "sha256:478db5f5036817fe45adb7332d927daa62417159d49783041338921dcf646fc7", + "sha256:4a8a53bc3ffbd161b5b2a4fff2f0f1e23a33b0168f1c0778ec70e1a3d66deb86", + "sha256:539c570477a96a4e6fb718b8d5c3e0c0eba1f485df13f86d2970c91f0673148d", + "sha256:57555a7715c0a34421013144a33d280e73c08df70f3a18a552938587ce9274f4", + "sha256:6e658bd2d20565ea86da7d91331b0eed6d2eee22dc031579e6297f3e12c758c8", + "sha256:6e7184632d89d677973a14d00ae4d03214c8bc301ceefcdaf5c474866814c987", + "sha256:75746e06d5fa1e91bfd5432448d00d34593b52e7e91a187d981d08d1f33d4385", + "sha256:7f9993ad3e0ffdc95c2a14b66dee63729f021968bff8ad911867579c65d13a79", + "sha256:801780c56d1cdb896eacd5619a83e427ce436d86a3bdf9112527f24a66618fef", + "sha256:801ca29f43d5acce85f8e999b1e431fb479cb02d0e11deb7d2abb56bdaf24fd6", + "sha256:969ea3ef09617aff826885a22ece0ddef69d95852cdad2f60c8bb06bf1f71f70", + "sha256:a976775ab2256aadc6add633d44f100a2517d2388906ec4f13231fafbb0eccca", + "sha256:af8d155170fcf87a2afb55b35dc1a0ac21df4431e7d96717621962e4b9192e70", + "sha256:b499bc07dbdcd3de92b0a8b29fdf592c111276f6a12fe29c30f6c417dd546d12", + "sha256:cd953f221ac1379050a8a646585a29574488974f79d8082cedef62744f0a0104", + "sha256:d42a6dd818ffce7be66cce644f1dff482f1d97c53ca70908dff0b9ddc120b77a", + "sha256:e8960dbbbf36906c5c0b7f4fbf2f0c7ffb20f4898e6a879fcf56a41a08b0d318", + "sha256:edb91dded4df17eae4537668b23f0ff6baf3707683734b6a818d5b9d0c0c31a1", + "sha256:ee23de8530d99b6db0573c4ef4bd8f39a2a6f9b60655bf7a1357e585a3486f2b", + "sha256:f7821776e5c4286b6a13138cc935e2e9b6fde05e081bdebf5cdb2bb97c9df81d" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==1.9.0" + "version": "==1.11.2" }, "mypy-extensions": { "hashes": [ @@ -1921,19 +2129,19 @@ }, "nodeenv": { "hashes": [ - "sha256:d51e0c37e64fbf47d017feac3145cdbb58836d7eee8c6f6d3b6880c5456227d2", - "sha256:df865724bb3c3adc86b3876fa209771517b0cfe596beff01a92700e0e8be4cec" + "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f", + "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'", - "version": "==1.8.0" + "version": "==1.9.1" }, "packaging": { "hashes": [ - "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5", - "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9" + "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002", + "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124" ], - "markers": "python_version >= '3.7'", - "version": "==24.0" + "markers": "python_version >= '3.8'", + "version": "==24.1" }, "pathspec": { "hashes": [ @@ -1945,11 +2153,11 @@ }, "platformdirs": { "hashes": [ - "sha256:0614df2a2f37e1a662acbd8e2b25b92ccf8632929bc6d43467e17fe89c75e068", - "sha256:ef0cc731df711022c174543cb70a9b5bd22e5a9337c8624ef2c2ceb8ddad8768" + "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907", + "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb" ], "markers": "python_version >= '3.8'", - "version": "==4.2.0" + "version": "==4.3.6" }, "pluggy": { "hashes": [ @@ -1961,20 +2169,20 @@ }, "pre-commit": { "hashes": [ - "sha256:5eae9e10c2b5ac51577c3452ec0a490455c45a0533f7960f993a0d01e59decab", - "sha256:e209d61b8acdcf742404408531f0c37d49d2c734fd7cff2d6076083d191cb060" + "sha256:8bb6494d4a20423842e198980c9ecf9f96607a07ea29549e180eef9ae80fe7af", + "sha256:9a90a53bf82fdd8778d58085faf8d83df56e40dfe18f45b19446e26bf1b3a63f" ], "index": "pypi", "markers": "python_version >= '3.9'", - "version": "==3.7.0" + "version": "==3.8.0" }, "pycodestyle": { "hashes": [ - "sha256:41ba0e7afc9752dfb53ced5489e89f8186be00e599e712660695b7a75ff2663f", - "sha256:44fe31000b2d866f2e41841b18528a505fbd7fef9017b04eff4e2648a0fadc67" + "sha256:46f0fb92069a7c28ab7bb558f05bfc0110dac69a0cd23c61ea0040283a9d78b3", + "sha256:6838eae08bbce4f6accd5d5572075c63626a15ee3e6f842df996bf62f6d73521" ], "markers": "python_version >= '3.8'", - "version": "==2.11.1" + "version": "==2.12.1" }, "pyflakes": { "hashes": [ @@ -1986,193 +2194,205 @@ }, "pygments": { "hashes": [ - "sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c", - "sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367" + "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199", + "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a" ], - "markers": "python_version >= '3.7'", - "version": "==2.17.2" + "markers": "python_version >= '3.8'", + "version": "==2.18.0" + }, + "pyink": { + "hashes": [ + "sha256:90468db7148bcef7d4ceb3513f75346331f4f61cc13db940d996728602925603", + "sha256:9d6b42bb208abe710a59bf8cec3bd625c1943cd678a9f33b1893309966d7dfdb" + ], + "index": "pypi", + "markers": "python_version >= '3.8'", + "version": "==24.8.0" }, "pylint": { "hashes": [ - "sha256:507a5b60953874766d8a366e8e8c7af63e058b26345cfcb5f91f89d987fd6b74", - "sha256:6a69beb4a6f63debebaab0a3477ecd0f559aa726af4954fc948c51f7a2549e23" + "sha256:2f846a466dd023513240bc140ad2dd73bfc080a5d85a710afdb728c420a5a2b9", + "sha256:9f3dcc87b1203e612b78d91a896407787e708b3f189b5fa0b307712d49ff0c6e" ], "index": "pypi", - "markers": "python_full_version >= '3.8.0'", - "version": "==3.1.0" + "markers": "python_full_version >= '3.9.0'", + "version": "==3.3.1" }, "pytest": { "hashes": [ - "sha256:2a8386cfc11fa9d2c50ee7b2a57e7d898ef90470a7a34c4b949ff59662bb78b7", - "sha256:ac978141a75948948817d360297b7aae0fcb9d6ff6bc9ec6d514b85d5a65c044" + "sha256:70b98107bd648308a7952b06e6ca9a50bc660be218d53c257cc1fc94fda10181", + "sha256:a6853c7375b2663155079443d2e45de913a911a11d669df02a50814944db57b2" ], "markers": "python_version >= '3.8'", - "version": "==8.1.1" + "version": "==8.3.3" }, "pyyaml": { "hashes": [ - "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5", - "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc", - "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df", - "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741", - "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206", - "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27", - "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595", - "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62", - "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98", - "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696", - "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290", - "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9", - "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d", - "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6", - "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867", - "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47", - "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486", - "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6", - "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3", - "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007", - "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938", - "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0", - "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c", - "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735", - "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d", - "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28", - "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4", - "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba", - "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8", - "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef", - "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5", - "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd", - "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3", - "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0", - "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515", - "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c", - "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c", - "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924", - "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34", - "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43", - "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859", - "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673", - "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54", - "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a", - "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b", - "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab", - "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa", - "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c", - "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585", - "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d", - "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f" + "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff", + "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48", + "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086", + "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e", + "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133", + "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5", + "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484", + "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee", + "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5", + "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68", + "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a", + "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf", + "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99", + "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8", + "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85", + "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19", + "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc", + "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a", + "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1", + "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317", + "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c", + "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631", + "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d", + "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", + "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5", + "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e", + "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b", + "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8", + "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476", + "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706", + "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", + "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237", + "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b", + "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083", + "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180", + "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425", + "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e", + "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f", + "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725", + "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", + "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab", + "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774", + "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725", + "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", + "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5", + "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d", + "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290", + "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44", + "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed", + "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4", + "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", + "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12", + "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4" ], - "markers": "python_version >= '3.6'", - "version": "==6.0.1" + "markers": "python_version >= '3.8'", + "version": "==6.0.2" }, "regex": { "hashes": [ - "sha256:00169caa125f35d1bca6045d65a662af0202704489fada95346cfa092ec23f39", - "sha256:03576e3a423d19dda13e55598f0fd507b5d660d42c51b02df4e0d97824fdcae3", - "sha256:03e68f44340528111067cecf12721c3df4811c67268b897fbe695c95f860ac42", - "sha256:0534b034fba6101611968fae8e856c1698da97ce2efb5c2b895fc8b9e23a5834", - "sha256:08dea89f859c3df48a440dbdcd7b7155bc675f2fa2ec8c521d02dc69e877db70", - "sha256:0a38d151e2cdd66d16dab550c22f9521ba79761423b87c01dae0a6e9add79c0d", - "sha256:0c8290b44d8b0af4e77048646c10c6e3aa583c1ca67f3b5ffb6e06cf0c6f0f89", - "sha256:10188fe732dec829c7acca7422cdd1bf57d853c7199d5a9e96bb4d40db239c73", - "sha256:1210365faba7c2150451eb78ec5687871c796b0f1fa701bfd2a4a25420482d26", - "sha256:12f6a3f2f58bb7344751919a1876ee1b976fe08b9ffccb4bbea66f26af6017b9", - "sha256:159dc4e59a159cb8e4e8f8961eb1fa5d58f93cb1acd1701d8aff38d45e1a84a6", - "sha256:20b7a68444f536365af42a75ccecb7ab41a896a04acf58432db9e206f4e525d6", - "sha256:23cff1b267038501b179ccbbd74a821ac4a7192a1852d1d558e562b507d46013", - "sha256:2c72608e70f053643437bd2be0608f7f1c46d4022e4104d76826f0839199347a", - "sha256:3399dd8a7495bbb2bacd59b84840eef9057826c664472e86c91d675d007137f5", - "sha256:34422d5a69a60b7e9a07a690094e824b66f5ddc662a5fc600d65b7c174a05f04", - "sha256:370c68dc5570b394cbaadff50e64d705f64debed30573e5c313c360689b6aadc", - "sha256:3a1018e97aeb24e4f939afcd88211ace472ba566efc5bdf53fd8fd7f41fa7170", - "sha256:3d5ac5234fb5053850d79dd8eb1015cb0d7d9ed951fa37aa9e6249a19aa4f336", - "sha256:4313ab9bf6a81206c8ac28fdfcddc0435299dc88cad12cc6305fd0e78b81f9e4", - "sha256:445ca8d3c5a01309633a0c9db57150312a181146315693273e35d936472df912", - "sha256:479595a4fbe9ed8f8f72c59717e8cf222da2e4c07b6ae5b65411e6302af9708e", - "sha256:4918fd5f8b43aa7ec031e0fef1ee02deb80b6afd49c85f0790be1dc4ce34cb50", - "sha256:4aba818dcc7263852aabb172ec27b71d2abca02a593b95fa79351b2774eb1d2b", - "sha256:4e819a806420bc010489f4e741b3036071aba209f2e0989d4750b08b12a9343f", - "sha256:4facc913e10bdba42ec0aee76d029aedda628161a7ce4116b16680a0413f658a", - "sha256:549c3584993772e25f02d0656ac48abdda73169fe347263948cf2b1cead622f3", - "sha256:5c02fcd2bf45162280613d2e4a1ca3ac558ff921ae4e308ecb307650d3a6ee51", - "sha256:5f580c651a72b75c39e311343fe6875d6f58cf51c471a97f15a938d9fe4e0d37", - "sha256:62120ed0de69b3649cc68e2965376048793f466c5a6c4370fb27c16c1beac22d", - "sha256:6295004b2dd37b0835ea5c14a33e00e8cfa3c4add4d587b77287825f3418d310", - "sha256:65436dce9fdc0aeeb0a0effe0839cb3d6a05f45aa45a4d9f9c60989beca78b9c", - "sha256:684008ec44ad275832a5a152f6e764bbe1914bea10968017b6feaecdad5736e0", - "sha256:684e52023aec43bdf0250e843e1fdd6febbe831bd9d52da72333fa201aaa2335", - "sha256:6cc38067209354e16c5609b66285af17a2863a47585bcf75285cab33d4c3b8df", - "sha256:6f2f017c5be19984fbbf55f8af6caba25e62c71293213f044da3ada7091a4455", - "sha256:743deffdf3b3481da32e8a96887e2aa945ec6685af1cfe2bcc292638c9ba2f48", - "sha256:7571f19f4a3fd00af9341c7801d1ad1967fc9c3f5e62402683047e7166b9f2b4", - "sha256:7731728b6568fc286d86745f27f07266de49603a6fdc4d19c87e8c247be452af", - "sha256:785c071c982dce54d44ea0b79cd6dfafddeccdd98cfa5f7b86ef69b381b457d9", - "sha256:78fddb22b9ef810b63ef341c9fcf6455232d97cfe03938cbc29e2672c436670e", - "sha256:7bb966fdd9217e53abf824f437a5a2d643a38d4fd5fd0ca711b9da683d452969", - "sha256:7cbc5d9e8a1781e7be17da67b92580d6ce4dcef5819c1b1b89f49d9678cc278c", - "sha256:803b8905b52de78b173d3c1e83df0efb929621e7b7c5766c0843704d5332682f", - "sha256:80b696e8972b81edf0af2a259e1b2a4a661f818fae22e5fa4fa1a995fb4a40fd", - "sha256:81500ed5af2090b4a9157a59dbc89873a25c33db1bb9a8cf123837dcc9765047", - "sha256:89ec7f2c08937421bbbb8b48c54096fa4f88347946d4747021ad85f1b3021b3c", - "sha256:8ba6745440b9a27336443b0c285d705ce73adb9ec90e2f2004c64d95ab5a7598", - "sha256:8c91e1763696c0eb66340c4df98623c2d4e77d0746b8f8f2bee2c6883fd1fe18", - "sha256:8d015604ee6204e76569d2f44e5a210728fa917115bef0d102f4107e622b08d5", - "sha256:8d1f86f3f4e2388aa3310b50694ac44daefbd1681def26b4519bd050a398dc5a", - "sha256:8f83b6fd3dc3ba94d2b22717f9c8b8512354fd95221ac661784df2769ea9bba9", - "sha256:8fc6976a3395fe4d1fbeb984adaa8ec652a1e12f36b56ec8c236e5117b585427", - "sha256:904c883cf10a975b02ab3478bce652f0f5346a2c28d0a8521d97bb23c323cc8b", - "sha256:911742856ce98d879acbea33fcc03c1d8dc1106234c5e7d068932c945db209c0", - "sha256:91797b98f5e34b6a49f54be33f72e2fb658018ae532be2f79f7c63b4ae225145", - "sha256:95399831a206211d6bc40224af1c635cb8790ddd5c7493e0bd03b85711076a53", - "sha256:956b58d692f235cfbf5b4f3abd6d99bf102f161ccfe20d2fd0904f51c72c4c66", - "sha256:98c1165f3809ce7774f05cb74e5408cd3aa93ee8573ae959a97a53db3ca3180d", - "sha256:9ab40412f8cd6f615bfedea40c8bf0407d41bf83b96f6fc9ff34976d6b7037fd", - "sha256:9df1bfef97db938469ef0a7354b2d591a2d438bc497b2c489471bec0e6baf7c4", - "sha256:a01fe2305e6232ef3e8f40bfc0f0f3a04def9aab514910fa4203bafbc0bb4682", - "sha256:a70b51f55fd954d1f194271695821dd62054d949efd6368d8be64edd37f55c86", - "sha256:a7ccdd1c4a3472a7533b0a7aa9ee34c9a2bef859ba86deec07aff2ad7e0c3b94", - "sha256:b340cccad138ecb363324aa26893963dcabb02bb25e440ebdf42e30963f1a4e0", - "sha256:b74586dd0b039c62416034f811d7ee62810174bb70dffcca6439f5236249eb09", - "sha256:b9d320b3bf82a39f248769fc7f188e00f93526cc0fe739cfa197868633d44701", - "sha256:ba2336d6548dee3117520545cfe44dc28a250aa091f8281d28804aa8d707d93d", - "sha256:ba8122e3bb94ecda29a8de4cf889f600171424ea586847aa92c334772d200331", - "sha256:bd727ad276bb91928879f3aa6396c9a1d34e5e180dce40578421a691eeb77f47", - "sha256:c21fc21a4c7480479d12fd8e679b699f744f76bb05f53a1d14182b31f55aac76", - "sha256:c2d0e7cbb6341e830adcbfa2479fdeebbfbb328f11edd6b5675674e7a1e37730", - "sha256:c2ef6f7990b6e8758fe48ad08f7e2f66c8f11dc66e24093304b87cae9037bb4a", - "sha256:c4ed75ea6892a56896d78f11006161eea52c45a14994794bcfa1654430984b22", - "sha256:cccc79a9be9b64c881f18305a7c715ba199e471a3973faeb7ba84172abb3f317", - "sha256:d0800631e565c47520aaa04ae38b96abc5196fe8b4aa9bd864445bd2b5848a7a", - "sha256:d2da13568eff02b30fd54fccd1e042a70fe920d816616fda4bf54ec705668d81", - "sha256:d61ae114d2a2311f61d90c2ef1358518e8f05eafda76eaf9c772a077e0b465ec", - "sha256:d83c2bc678453646f1a18f8db1e927a2d3f4935031b9ad8a76e56760461105dd", - "sha256:dd5acc0a7d38fdc7a3a6fd3ad14c880819008ecb3379626e56b163165162cc46", - "sha256:df79012ebf6f4efb8d307b1328226aef24ca446b3ff8d0e30202d7ebcb977a8c", - "sha256:e0a2df336d1135a0b3a67f3bbf78a75f69562c1199ed9935372b82215cddd6e2", - "sha256:e2f142b45c6fed48166faeb4303b4b58c9fcd827da63f4cf0a123c3480ae11fb", - "sha256:e697e1c0238133589e00c244a8b676bc2cfc3ab4961318d902040d099fec7483", - "sha256:e757d475953269fbf4b441207bb7dbdd1c43180711b6208e129b637792ac0b93", - "sha256:e87ab229332ceb127a165612d839ab87795972102cb9830e5f12b8c9a5c1b508", - "sha256:ea355eb43b11764cf799dda62c658c4d2fdb16af41f59bb1ccfec517b60bcb07", - "sha256:ec7e0043b91115f427998febaa2beb82c82df708168b35ece3accb610b91fac1", - "sha256:eeaa0b5328b785abc344acc6241cffde50dc394a0644a968add75fcefe15b9d4", - "sha256:f2d80a6749724b37853ece57988b39c4e79d2b5fe2869a86e8aeae3bbeef9eb0", - "sha256:fa454d26f2e87ad661c4f0c5a5fe4cf6aab1e307d1b94f16ffdfcb089ba685c0", - "sha256:fb83cc090eac63c006871fd24db5e30a1f282faa46328572661c0a24a2323a08", - "sha256:fd80d1280d473500d8086d104962a82d77bfbf2b118053824b7be28cd5a79ea5" + "sha256:01c2acb51f8a7d6494c8c5eafe3d8e06d76563d8a8a4643b37e9b2dd8a2ff623", + "sha256:02087ea0a03b4af1ed6ebab2c54d7118127fee8d71b26398e8e4b05b78963199", + "sha256:040562757795eeea356394a7fb13076ad4f99d3c62ab0f8bdfb21f99a1f85664", + "sha256:042c55879cfeb21a8adacc84ea347721d3d83a159da6acdf1116859e2427c43f", + "sha256:079400a8269544b955ffa9e31f186f01d96829110a3bf79dc338e9910f794fca", + "sha256:07f45f287469039ffc2c53caf6803cd506eb5f5f637f1d4acb37a738f71dd066", + "sha256:09d77559e80dcc9d24570da3745ab859a9cf91953062e4ab126ba9d5993688ca", + "sha256:0cbff728659ce4bbf4c30b2a1be040faafaa9eca6ecde40aaff86f7889f4ab39", + "sha256:0e12c481ad92d129c78f13a2a3662317e46ee7ef96c94fd332e1c29131875b7d", + "sha256:0ea51dcc0835eea2ea31d66456210a4e01a076d820e9039b04ae8d17ac11dee6", + "sha256:0ffbcf9221e04502fc35e54d1ce9567541979c3fdfb93d2c554f0ca583a19b35", + "sha256:1494fa8725c285a81d01dc8c06b55287a1ee5e0e382d8413adc0a9197aac6408", + "sha256:16e13a7929791ac1216afde26f712802e3df7bf0360b32e4914dca3ab8baeea5", + "sha256:18406efb2f5a0e57e3a5881cd9354c1512d3bb4f5c45d96d110a66114d84d23a", + "sha256:18e707ce6c92d7282dfce370cd205098384b8ee21544e7cb29b8aab955b66fa9", + "sha256:220e92a30b426daf23bb67a7962900ed4613589bab80382be09b48896d211e92", + "sha256:23b30c62d0f16827f2ae9f2bb87619bc4fba2044911e2e6c2eb1af0161cdb766", + "sha256:23f9985c8784e544d53fc2930fc1ac1a7319f5d5332d228437acc9f418f2f168", + "sha256:297f54910247508e6e5cae669f2bc308985c60540a4edd1c77203ef19bfa63ca", + "sha256:2b08fce89fbd45664d3df6ad93e554b6c16933ffa9d55cb7e01182baaf971508", + "sha256:2cce2449e5927a0bf084d346da6cd5eb016b2beca10d0013ab50e3c226ffc0df", + "sha256:313ea15e5ff2a8cbbad96ccef6be638393041b0a7863183c2d31e0c6116688cf", + "sha256:323c1f04be6b2968944d730e5c2091c8c89767903ecaa135203eec4565ed2b2b", + "sha256:35f4a6f96aa6cb3f2f7247027b07b15a374f0d5b912c0001418d1d55024d5cb4", + "sha256:3b37fa423beefa44919e009745ccbf353d8c981516e807995b2bd11c2c77d268", + "sha256:3ce4f1185db3fbde8ed8aa223fc9620f276c58de8b0d4f8cc86fd1360829edb6", + "sha256:46989629904bad940bbec2106528140a218b4a36bb3042d8406980be1941429c", + "sha256:4838e24ee015101d9f901988001038f7f0d90dc0c3b115541a1365fb439add62", + "sha256:49b0e06786ea663f933f3710a51e9385ce0cba0ea56b67107fd841a55d56a231", + "sha256:4db21ece84dfeefc5d8a3863f101995de646c6cb0536952c321a2650aa202c36", + "sha256:54c4a097b8bc5bb0dfc83ae498061d53ad7b5762e00f4adaa23bee22b012e6ba", + "sha256:54d9ff35d4515debf14bc27f1e3b38bfc453eff3220f5bce159642fa762fe5d4", + "sha256:55b96e7ce3a69a8449a66984c268062fbaa0d8ae437b285428e12797baefce7e", + "sha256:57fdd2e0b2694ce6fc2e5ccf189789c3e2962916fb38779d3e3521ff8fe7a822", + "sha256:587d4af3979376652010e400accc30404e6c16b7df574048ab1f581af82065e4", + "sha256:5b513b6997a0b2f10e4fd3a1313568e373926e8c252bd76c960f96fd039cd28d", + "sha256:5ddcd9a179c0a6fa8add279a4444015acddcd7f232a49071ae57fa6e278f1f71", + "sha256:6113c008a7780792efc80f9dfe10ba0cd043cbf8dc9a76ef757850f51b4edc50", + "sha256:635a1d96665f84b292e401c3d62775851aedc31d4f8784117b3c68c4fcd4118d", + "sha256:64ce2799bd75039b480cc0360907c4fb2f50022f030bf9e7a8705b636e408fad", + "sha256:69dee6a020693d12a3cf892aba4808fe168d2a4cef368eb9bf74f5398bfd4ee8", + "sha256:6a2644a93da36c784e546de579ec1806bfd2763ef47babc1b03d765fe560c9f8", + "sha256:6b41e1adc61fa347662b09398e31ad446afadff932a24807d3ceb955ed865cc8", + "sha256:6c188c307e8433bcb63dc1915022deb553b4203a70722fc542c363bf120a01fd", + "sha256:6edd623bae6a737f10ce853ea076f56f507fd7726bee96a41ee3d68d347e4d16", + "sha256:73d6d2f64f4d894c96626a75578b0bf7d9e56dcda8c3d037a2118fdfe9b1c664", + "sha256:7a22ccefd4db3f12b526eccb129390942fe874a3a9fdbdd24cf55773a1faab1a", + "sha256:7fb89ee5d106e4a7a51bce305ac4efb981536301895f7bdcf93ec92ae0d91c7f", + "sha256:846bc79ee753acf93aef4184c040d709940c9d001029ceb7b7a52747b80ed2dd", + "sha256:85ab7824093d8f10d44330fe1e6493f756f252d145323dd17ab6b48733ff6c0a", + "sha256:8dee5b4810a89447151999428fe096977346cf2f29f4d5e29609d2e19e0199c9", + "sha256:8e5fb5f77c8745a60105403a774fe2c1759b71d3e7b4ca237a5e67ad066c7199", + "sha256:98eeee2f2e63edae2181c886d7911ce502e1292794f4c5ee71e60e23e8d26b5d", + "sha256:9d4a76b96f398697fe01117093613166e6aa8195d63f1b4ec3f21ab637632963", + "sha256:9e8719792ca63c6b8340380352c24dcb8cd7ec49dae36e963742a275dfae6009", + "sha256:a0b2b80321c2ed3fcf0385ec9e51a12253c50f146fddb2abbb10f033fe3d049a", + "sha256:a4cc92bb6db56ab0c1cbd17294e14f5e9224f0cc6521167ef388332604e92679", + "sha256:a738b937d512b30bf75995c0159c0ddf9eec0775c9d72ac0202076c72f24aa96", + "sha256:a8f877c89719d759e52783f7fe6e1c67121076b87b40542966c02de5503ace42", + "sha256:a906ed5e47a0ce5f04b2c981af1c9acf9e8696066900bf03b9d7879a6f679fc8", + "sha256:ae2941333154baff9838e88aa71c1d84f4438189ecc6021a12c7573728b5838e", + "sha256:b0d0a6c64fcc4ef9c69bd5b3b3626cc3776520a1637d8abaa62b9edc147a58f7", + "sha256:b5b029322e6e7b94fff16cd120ab35a253236a5f99a79fb04fda7ae71ca20ae8", + "sha256:b7aaa315101c6567a9a45d2839322c51c8d6e81f67683d529512f5bcfb99c802", + "sha256:be1c8ed48c4c4065ecb19d882a0ce1afe0745dfad8ce48c49586b90a55f02366", + "sha256:c0256beda696edcf7d97ef16b2a33a8e5a875affd6fa6567b54f7c577b30a137", + "sha256:c157bb447303070f256e084668b702073db99bbb61d44f85d811025fcf38f784", + "sha256:c57d08ad67aba97af57a7263c2d9006d5c404d721c5f7542f077f109ec2a4a29", + "sha256:c69ada171c2d0e97a4b5aa78fbb835e0ffbb6b13fc5da968c09811346564f0d3", + "sha256:c94bb0a9f1db10a1d16c00880bdebd5f9faf267273b8f5bd1878126e0fbde771", + "sha256:cb130fccd1a37ed894824b8c046321540263013da72745d755f2d35114b81a60", + "sha256:ced479f601cd2f8ca1fd7b23925a7e0ad512a56d6e9476f79b8f381d9d37090a", + "sha256:d05ac6fa06959c4172eccd99a222e1fbf17b5670c4d596cb1e5cde99600674c4", + "sha256:d552c78411f60b1fdaafd117a1fca2f02e562e309223b9d44b7de8be451ec5e0", + "sha256:dd4490a33eb909ef5078ab20f5f000087afa2a4daa27b4c072ccb3cb3050ad84", + "sha256:df5cbb1fbc74a8305b6065d4ade43b993be03dbe0f8b30032cced0d7740994bd", + "sha256:e28f9faeb14b6f23ac55bfbbfd3643f5c7c18ede093977f1df249f73fd22c7b1", + "sha256:e464b467f1588e2c42d26814231edecbcfe77f5ac414d92cbf4e7b55b2c2a776", + "sha256:e4c22e1ac1f1ec1e09f72e6c44d8f2244173db7eb9629cc3a346a8d7ccc31142", + "sha256:e53b5fbab5d675aec9f0c501274c467c0f9a5d23696cfc94247e1fb56501ed89", + "sha256:e93f1c331ca8e86fe877a48ad64e77882c0c4da0097f2212873a69bbfea95d0c", + "sha256:e997fd30430c57138adc06bba4c7c2968fb13d101e57dd5bb9355bf8ce3fa7e8", + "sha256:e9a091b0550b3b0207784a7d6d0f1a00d1d1c8a11699c1a4d93db3fbefc3ad35", + "sha256:eab4bb380f15e189d1313195b062a6aa908f5bd687a0ceccd47c8211e9cf0d4a", + "sha256:eb1ae19e64c14c7ec1995f40bd932448713d3c73509e82d8cd7744dc00e29e86", + "sha256:ecea58b43a67b1b79805f1a0255730edaf5191ecef84dbc4cc85eb30bc8b63b9", + "sha256:ee439691d8c23e76f9802c42a95cfeebf9d47cf4ffd06f18489122dbb0a7ad64", + "sha256:eee9130eaad130649fd73e5cd92f60e55708952260ede70da64de420cdcad554", + "sha256:f47cd43a5bfa48f86925fe26fbdd0a488ff15b62468abb5d2a1e092a4fb10e85", + "sha256:f6fff13ef6b5f29221d6904aa816c34701462956aa72a77f1f151a8ec4f56aeb", + "sha256:f745ec09bc1b0bd15cfc73df6fa4f726dcc26bb16c23a03f9e3367d357eeedd0", + "sha256:f8404bf61298bb6f8224bb9176c1424548ee1181130818fcd2cbffddc768bed8", + "sha256:f9268774428ec173654985ce55fc6caf4c6d11ade0f6f914d48ef4719eb05ebb", + "sha256:faa3c142464efec496967359ca99696c896c591c56c53506bac1ad465f66e919" ], - "markers": "python_version >= '3.7'", - "version": "==2024.4.16" + "markers": "python_version >= '3.8'", + "version": "==2024.9.11" }, "requests": { "hashes": [ - "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f", - "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1" + "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", + "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6" ], "index": "pypi", - "markers": "python_version >= '3.7'", - "version": "==2.31.0" + "markers": "python_version >= '3.8'", + "version": "==2.32.3" }, "requests-mock": { "hashes": [ @@ -2183,22 +2403,14 @@ "markers": "python_version >= '3.5'", "version": "==1.12.1" }, - "setuptools": { - "hashes": [ - "sha256:6c1fccdac05a97e598fb0ae3bbed5904ccb317337a51139dcd51453611bbb987", - "sha256:c636ac361bc47580504644275c9ad802c50415c7522212252c033bd15f301f32" - ], - "markers": "python_version >= '3.8'", - "version": "==69.5.1" - }, "sqlfluff": { "hashes": [ - "sha256:5a4a08e4e4dedcadf4f544de83a7edab66e1decf7d946ec5fdbe59db49d6c2fe", - "sha256:b7818ea9954d9efc5b2f913df6e3d2270c42532cbad815f73ab582a410d9a39e" + "sha256:65d91dac2b27a248fb3d388d3c3f91c0c704bfa77e6b10b72a599a684795fe76", + "sha256:f80832d4d280e8d7cb05afbd77634b3282b757d00bf513a428fcf4ed670634d8" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==3.0.5" + "version": "==3.2.0" }, "tblib": { "hashes": [ @@ -2214,24 +2426,24 @@ "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f" ], "index": "pypi", - "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2'", + "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==0.10.2" }, "tomlkit": { "hashes": [ - "sha256:5cd82d48a3dd89dee1f9d64420aa20ae65cfbd00668d6f094d7578a78efbb77b", - "sha256:7ca1cfc12232806517a8515047ba66a19369e71edf2439d0f5824f91032b6cc3" + "sha256:7a974427f6e119197f670fbbbeae7bef749a6c14e793db934baefc1b5f03efde", + "sha256:fff5fe59a87295b278abd31bec92c15d9bc4a06885ab12bcea52c71119392e79" ], - "markers": "python_version >= '3.7'", - "version": "==0.12.4" + "markers": "python_version >= '3.8'", + "version": "==0.13.2" }, "tqdm": { "hashes": [ - "sha256:1ee4f8a893eb9bef51c6e35730cebf234d5d0b6bd112b0271e10ed7c24a02bd9", - "sha256:6cd52cdf0fef0e0f543299cfc96fec90d7b8a7e88745f411ec33eb44d5ed3531" + "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd", + "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad" ], "markers": "python_version >= '3.7'", - "version": "==4.66.2" + "version": "==4.66.5" }, "types-toml": { "hashes": [ @@ -2244,35 +2456,35 @@ }, "typing-extensions": { "hashes": [ - "sha256:83f085bd5ca59c80295fc2a82ab5dac679cbe02b9f33f7d83af68e241bea51b0", - "sha256:c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a" + "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", + "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8" ], "markers": "python_version >= '3.8'", - "version": "==4.11.0" + "version": "==4.12.2" }, "urllib3": { "hashes": [ - "sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d", - "sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19" + "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac", + "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9" ], "markers": "python_version >= '3.8'", - "version": "==2.2.1" + "version": "==2.2.3" }, "virtualenv": { "hashes": [ - "sha256:7bb554bbdfeaacc3349fa614ea5bff6ac300fc7c335e9facf3a3bcfc703f45be", - "sha256:8aac4332f2ea6ef519c648d0bc48a5b1d324994753519919bddbb1aff25a104e" + "sha256:280aede09a2a5c317e409a00102e7077c6432c5a38f0ef938e643805a7ad2c48", + "sha256:7345cc5b25405607a624d8418154577459c3e0277f5466dd79c49d5e492995f2" ], "markers": "python_version >= '3.7'", - "version": "==20.25.3" + "version": "==20.26.6" }, "zipp": { "hashes": [ - "sha256:206f5a15f2af3dbaee80769fb7dc6f249695e940acca08dfb2a4769fe61e538b", - "sha256:2884ed22e7d8961de1c9a05142eb69a247f120291bc0206a00a7642f09b5b715" + "sha256:a817ac80d6cf4b23bf7f2828b7cabf326f15a001bea8b1f9b49631780ba28350", + "sha256:bc9eb26f4506fda01b81bcde0ca78103b6e62f991b381fec825435c836edbc29" ], "markers": "python_version >= '3.8'", - "version": "==3.18.1" + "version": "==3.20.2" } } } diff --git a/README.md b/README.md index 7979276d64..f45b57cf47 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,39 @@ - Yahoo API Token ([Yahoo API Tokenの取得手順](./doc/05_Get_Yahoo_API_Token.md)) - OpenAI API Key ([OpenAI API Keyの取得手順](./doc/06_Get_OpenAI_API_Token.md)) +### fly.io上で動かす + +1. 事前にSlack API TokenとYahoo API Tokenを取得します。 +2. [Launch a demo app · Fly Docs](https://fly.io/docs/getting-started/launch-demo/#1-install-flyctl)に記載されている手順で `fly` コマンドをインストールします。 +3. [Launch a demo app · Fly Docs](https://fly.io/docs/getting-started/launch-demo/#2-sign-up-or-sign-in)に記載されている手順でfly.ioへの登録・ログインを行います。 +4. [Dashboard · Fly](https://fly.io/dashboard/)内の `Billing` からクレジットカードを登録します (無料枠で使用する場合も必須)。 +5. [`yq` コマンドのGitHub](https://github.com/mikefarah/yq/?tab=readme-ov-file#install)に記載されている手順で `yq` コマンドをインストールします。 +6. このリポジトリをcloneします。 + + 安定版を使う場合は `-b master` を指定します。最新の開発版を使う場合は指定不要です。 + + ```sh + git clone -b master https://github.com/dev-hato/hato-bot.git + cd hato-bot + ``` + +7. `.env` ファイルを作成しSlack API Token、PostgreSQLの認証情報、Yahoo API Tokenなどを記述します。 + + `.env.example` をコピーして使うとよいでしょう。 + + MODEに `discord` を指定すると、DiscordのBotとして動作します。 + + MODEに `misskey` を指定すると、自分のいるサーバーからのメンションに限って反応するMisskeyのBotとして動作します。 + +8. `fly.toml` ファイルを作成します。 + + `fly.template.toml` をコピーし、TODOコメントに従って編集すると良いでしょう。 + +9. 次のコマンドを実行してfly.ioへのデプロイを行います。 + ```sh + ./flyio_deploy.sh + ``` + ### 自分のPC上で動かす 自分のPCで動かすこともできます。 @@ -35,51 +68,51 @@ 3. このリポジトリをcloneします。 - 安定版を使う場合は `-b master` を指定します。最新の開発版を使う場合は指定不要です。 + 安定版を使う場合は `-b master` を指定します。最新の開発版を使う場合は指定不要です。 - ```sh - git clone -b master https://github.com/dev-hato/hato-bot.git - cd hato-bot - ``` + ```sh + git clone -b master https://github.com/dev-hato/hato-bot.git + cd hato-bot + ``` - または [Release](https://github.com/dev-hato/hato-bot/releases/latest) から最新の安定版をダウンロードして解凍します。 + または [Release](https://github.com/dev-hato/hato-bot/releases/latest) から最新の安定版をダウンロードして解凍します。 4. 必要に応じてパッケージをインストールします。 - ```sh - pipenv install - npm install - ``` + ```sh + pipenv install + npm install + ``` -5. `.env` ファイルを作成し Slack API Token、PostgreSQLの認証情報、Yahoo API Tokenなどを記述します。 +5. `.env` ファイルを作成しSlack API Token、PostgreSQLの認証情報、Yahoo API Tokenなどを記述します。 - `.env.example` をコピーして使うとよいでしょう + `.env.example` をコピーして使うとよいでしょう - MODEに `discord` を指定すると、DiscordのBotとして動作します。 + MODEに `discord` を指定すると、DiscordのBotとして動作します。 - MODEに `misskey` を指定すると、自分のいるサーバーからのメンションに限って反応するMisskeyのBotとして動作します。 + MODEに `misskey` を指定すると、自分のいるサーバーからのメンションに限って反応するMisskeyのBotとして動作します。 6. docker composeで鳩botとPostgreSQLを起動します。 - ```sh - export TAG_NAME=$(git symbolic-ref --short HEAD | sed -e "s:/:-:g") - docker compose up -d --wait - ``` + ```sh + export TAG_NAME=$(git symbolic-ref --short HEAD | sed -e "s:/:-:g") + docker compose up -d --wait + ``` - 開発時は代わりに次のコマンドを実行します。 + 開発時は代わりに次のコマンドを実行します。 - ```sh - export TAG_NAME=$(git symbolic-ref --short HEAD | sed -e "s:/:-:g") - docker compose -f docker-compose.yml -f dev.base.docker-compose.yml -f dev.docker-compose.yml build - docker compose -f docker-compose.yml -f dev.base.docker-compose.yml -f dev.docker-compose.yml watch - ``` + ```sh + export TAG_NAME=$(git symbolic-ref --short HEAD | sed -e "s:/:-:g") + docker compose -f docker-compose.yml -f dev.base.docker-compose.yml -f dev.docker-compose.yml build + docker compose -f docker-compose.yml -f dev.base.docker-compose.yml -f dev.docker-compose.yml watch + ``` 7. コードの変更はdocker composeの再起動で適用できます。 - ```sh - export TAG_NAME=$(git symbolic-ref --short HEAD | sed -e "s:/:-:g") - docker compose restart - ``` + ```sh + export TAG_NAME=$(git symbolic-ref --short HEAD | sed -e "s:/:-:g") + docker compose restart + ``` 開発時は自動的にDockerイメージの再ビルドが行われ反映されます。 @@ -93,17 +126,17 @@ npm run lint - 鳩botに対しコマンドを実行したいときは `post_command.py` を使うと便利です。 - ```sh - pipenv run python post_command.py --channel {投稿先のチャンネルのchannel id} \ - --user {自分のuser_id} \ - "{hato-botのコマンド}" - ``` + ```sh + pipenv run python post_command.py --channel {投稿先のチャンネルのchannel id} \ + --user {自分のuser_id} \ + "{hato-botのコマンド}" + ``` - または[ngrok](https://ngrok.com/)を使うこともできます。 - ```sh - ./ngrok http 3000 - ``` + ```sh + ./ngrok http 3000 + ``` #### コミットする前に行うこと @@ -122,8 +155,8 @@ pipenv run pre-commit install - 鳩botで使用可能なコマンドは次の通りです。 - ```text - amesh ... 東京のamesh(雨雲情報)を表示する。 + ```text + amesh ... 東京のamesh(雨雲情報)を表示する。 amesh [text] ... 指定した地名・住所・郵便番号[text]のamesh(雨雲情報)を表示する。 amesh [緯度 (float)] [経度 (float)] ... 指定した座標([緯度 (float)], [経度 (float)])のamesh(雨雲情報)を表示する。 amedas ... 東京のamedas(気象情報)を表示する。 @@ -147,7 +180,7 @@ pipenv run pre-commit install chat [text] ... ChatGPTで文章生成する。 画像生成 [text] ... openAIのImage generationで画像生成する。[text]は英語での入力推奨。 ping ... 「ping」したら「PONG」と返す。 - ``` + ``` ## バージョンアップによる変更点 @@ -156,7 +189,7 @@ pipenv run pre-commit install ## バグ報告や機能の要望について - バグ報告や機能追加の要望がある場合は [Issues](https://github.com/dev-hato/hato-bot/issues) の - `New Issue` から報告をお願いします。 + `New Issue` から報告をお願いします。 - プルリクエストも大歓迎です。 diff --git a/README.template.md b/README.template.md index 23de02ab09..30d6985c94 100644 --- a/README.template.md +++ b/README.template.md @@ -26,6 +26,39 @@ - Yahoo API Token ([Yahoo API Tokenの取得手順](./doc/05_Get_Yahoo_API_Token.md)) - OpenAI API Key ([OpenAI API Keyの取得手順](./doc/06_Get_OpenAI_API_Token.md)) +### fly.io上で動かす + +1. 事前にSlack API TokenとYahoo API Tokenを取得します。 +2. [Launch a demo app · Fly Docs](https://fly.io/docs/getting-started/launch-demo/#1-install-flyctl)に記載されている手順で `fly` コマンドをインストールします。 +3. [Launch a demo app · Fly Docs](https://fly.io/docs/getting-started/launch-demo/#2-sign-up-or-sign-in)に記載されている手順でfly.ioへの登録・ログインを行います。 +4. [Dashboard · Fly](https://fly.io/dashboard/)内の `Billing` からクレジットカードを登録します (無料枠で使用する場合も必須)。 +5. [`yq` コマンドのGitHub](https://github.com/mikefarah/yq/?tab=readme-ov-file#install)に記載されている手順で `yq` コマンドをインストールします。 +6. このリポジトリをcloneします。 + + 安定版を使う場合は `-b master` を指定します。最新の開発版を使う場合は指定不要です。 + + ```sh + git clone -b master https://github.com/dev-hato/hato-bot.git + cd hato-bot + ``` + +7. `.env` ファイルを作成しSlack API Token、PostgreSQLの認証情報、Yahoo API Tokenなどを記述します。 + + `.env.example` をコピーして使うとよいでしょう。 + + MODEに `discord` を指定すると、DiscordのBotとして動作します。 + + MODEに `misskey` を指定すると、自分のいるサーバーからのメンションに限って反応するMisskeyのBotとして動作します。 + +8. `fly.toml` ファイルを作成します。 + + `fly.template.toml` をコピーし、TODOコメントに従って編集すると良いでしょう。 + +9. 次のコマンドを実行してfly.ioへのデプロイを行います。 + ```sh + ./flyio_deploy.sh + ``` + ### 自分のPC上で動かす 自分のPCで動かすこともできます。 @@ -35,51 +68,51 @@ 3. このリポジトリをcloneします。 - 安定版を使う場合は `-b master` を指定します。最新の開発版を使う場合は指定不要です。 + 安定版を使う場合は `-b master` を指定します。最新の開発版を使う場合は指定不要です。 - ```sh - git clone -b master https://github.com/dev-hato/hato-bot.git - cd hato-bot - ``` + ```sh + git clone -b master https://github.com/dev-hato/hato-bot.git + cd hato-bot + ``` - または [Release](https://github.com/dev-hato/hato-bot/releases/latest) から最新の安定版をダウンロードして解凍します。 + または [Release](https://github.com/dev-hato/hato-bot/releases/latest) から最新の安定版をダウンロードして解凍します。 4. 必要に応じてパッケージをインストールします。 - ```sh - pipenv install - npm install - ``` + ```sh + pipenv install + npm install + ``` -5. `.env` ファイルを作成し Slack API Token、PostgreSQLの認証情報、Yahoo API Tokenなどを記述します。 +5. `.env` ファイルを作成しSlack API Token、PostgreSQLの認証情報、Yahoo API Tokenなどを記述します。 - `.env.example` をコピーして使うとよいでしょう + `.env.example` をコピーして使うとよいでしょう - MODEに `discord` を指定すると、DiscordのBotとして動作します。 + MODEに `discord` を指定すると、DiscordのBotとして動作します。 - MODEに `misskey` を指定すると、自分のいるサーバーからのメンションに限って反応するMisskeyのBotとして動作します。 + MODEに `misskey` を指定すると、自分のいるサーバーからのメンションに限って反応するMisskeyのBotとして動作します。 6. docker composeで鳩botとPostgreSQLを起動します。 - ```sh - export TAG_NAME=$(git symbolic-ref --short HEAD | sed -e "s:/:-:g") - docker compose up -d --wait - ``` + ```sh + export TAG_NAME=$(git symbolic-ref --short HEAD | sed -e "s:/:-:g") + docker compose up -d --wait + ``` - 開発時は代わりに次のコマンドを実行します。 + 開発時は代わりに次のコマンドを実行します。 - ```sh - export TAG_NAME=$(git symbolic-ref --short HEAD | sed -e "s:/:-:g") - docker compose -f docker-compose.yml -f dev.base.docker-compose.yml -f dev.docker-compose.yml build - docker compose -f docker-compose.yml -f dev.base.docker-compose.yml -f dev.docker-compose.yml watch - ``` + ```sh + export TAG_NAME=$(git symbolic-ref --short HEAD | sed -e "s:/:-:g") + docker compose -f docker-compose.yml -f dev.base.docker-compose.yml -f dev.docker-compose.yml build + docker compose -f docker-compose.yml -f dev.base.docker-compose.yml -f dev.docker-compose.yml watch + ``` 7. コードの変更はdocker composeの再起動で適用できます。 - ```sh - export TAG_NAME=$(git symbolic-ref --short HEAD | sed -e "s:/:-:g") - docker compose restart - ``` + ```sh + export TAG_NAME=$(git symbolic-ref --short HEAD | sed -e "s:/:-:g") + docker compose restart + ``` 開発時は自動的にDockerイメージの再ビルドが行われ反映されます。 @@ -93,17 +126,17 @@ npm run lint - 鳩botに対しコマンドを実行したいときは `post_command.py` を使うと便利です。 - ```sh - pipenv run python post_command.py --channel {投稿先のチャンネルのchannel id} \ - --user {自分のuser_id} \ - "{hato-botのコマンド}" - ``` + ```sh + pipenv run python post_command.py --channel {投稿先のチャンネルのchannel id} \ + --user {自分のuser_id} \ + "{hato-botのコマンド}" + ``` - または[ngrok](https://ngrok.com/)を使うこともできます。 - ```sh - ./ngrok http 3000 - ``` + ```sh + ./ngrok http 3000 + ``` #### コミットする前に行うこと @@ -122,9 +155,9 @@ pipenv run pre-commit install - 鳩botで使用可能なコマンドは次の通りです。 - ```text - {commands} - ``` + ```text + {commands} + ``` ## バージョンアップによる変更点 @@ -133,7 +166,7 @@ pipenv run pre-commit install ## バグ報告や機能の要望について - バグ報告や機能追加の要望がある場合は [Issues](https://github.com/dev-hato/hato-bot/issues) の - `New Issue` から報告をお願いします。 + `New Issue` から報告をお願いします。 - プルリクエストも大歓迎です。 diff --git a/build.docker-compose.yml b/build.docker-compose.yml index 2b5949b4ee..54b077c5ea 100644 --- a/build.docker-compose.yml +++ b/build.docker-compose.yml @@ -1,5 +1,4 @@ --- -version: "3.7" services: commit-hash: build: diff --git a/dev.base.docker-compose.yml b/dev.base.docker-compose.yml index 90c9c23e7b..5c2074a21e 100644 --- a/dev.base.docker-compose.yml +++ b/dev.base.docker-compose.yml @@ -1,5 +1,4 @@ --- -version: "3.8" services: hato-bot: build: diff --git a/dev.docker-compose.yml b/dev.docker-compose.yml index b0540b09c0..9b92be6b6c 100644 --- a/dev.docker-compose.yml +++ b/dev.docker-compose.yml @@ -1,5 +1,4 @@ --- -version: "3.8" services: postgres: develop: diff --git a/doc/01_Get_Slack_API_Token.md b/doc/01_Get_Slack_API_Token.md index 480b279e37..e150bb1f4f 100644 --- a/doc/01_Get_Slack_API_Token.md +++ b/doc/01_Get_Slack_API_Token.md @@ -6,22 +6,24 @@ 1. `App Name` に `hato` と入力し、 `Development Slack Workspace` にBotを動かすSlack Workspaceを選択します。 - その後 `Create App` をクリックします。 + その後 `Create App` をクリックします。 1. 左側にある `OAuth & Permissions` をクリックします。 1. `Bot Token Scopes` で次の権限を付与します。 - * app_mentions:read - * chat:write - * files:write - * users:read + + - app_mentions:read + - chat:write + - files:write + - users:read 1. `User Token Scopes` で次の権限を付与します。 - * chat:write + + - chat:write 1. ページ上部にある `Install App to Workspace` をクリックします。 1. `Bot User OAuth Access Token` の値をメモします。 1. 左側にある `Basic Information` をクリックし、遷移後のページにある `Signing Secret` の値をメモします。 - (マスクされているので `show` を押して生の値を確認します) + (マスクされているので `show` を押して生の値を確認します) diff --git a/doc/02_Setting_to_Event_URL.md b/doc/02_Setting_to_Event_URL.md index fd1becb5df..83da4b1aab 100644 --- a/doc/02_Setting_to_Event_URL.md +++ b/doc/02_Setting_to_Event_URL.md @@ -8,9 +8,9 @@ 1. `Request URL` にURLを入力します。この時、次の様にURL末尾に `slack/events` を追加します。 - ```text - https://example.com/slack/events - ``` + ```text + https://example.com/slack/events + ``` 1. `Verified` が表示されたら下にある `Subscribe to bot events` をクリックし `app_mention` を追加します。 diff --git a/doc/03_Get_Discord_Bot_Token.md b/doc/03_Get_Discord_Bot_Token.md index caba8af2ea..05228083f6 100644 --- a/doc/03_Get_Discord_Bot_Token.md +++ b/doc/03_Get_Discord_Bot_Token.md @@ -2,12 +2,20 @@ 1. Discordのアカウントを取得します。 -1. [Discord Developer Portal — My Applications](https://discord.com/developers/applications)を開きます。 +2. [Discord Developer Portal — My Applications](https://discord.com/developers/applications)を開きます。 -1. `New Application` をクリックし、Applicationを作成します。 +3. `New Application` をクリックし、Applicationを作成します。 -1. 左ペインの `Bot` をクリックします。 +4. 左ペインの `OAuth2` をクリックします。 -1. `Bot Permissions` セクション内の `Read Messages/View Channels` と、 `Send Messages` にチェックを入れます。 +5. `OAuth2 URL Generator` セクション内の `bot` にチェックを入れます。 -1. `TOKEN` セクションの `Copy` をクリックし、Bot Tokenをコピーします。 +6. `BOT PERMISSIONS` セクション内の `Read Messages/View Channels` と、 `Send Messages` にチェックを入れます。 + +7. `GENERATED URL` セクション内の `Copy` をクリックします。 + +8. コピーしたURLを開き、DiscordサーバーにBotをインストールします。 + +9. 左ペインの `Bot` をクリックします。 + +10. `TOKEN` セクション内の `Reset Token` をクリックし、Bot Tokenを発行します。 diff --git a/doc/05_Get_Yahoo_API_Token.md b/doc/05_Get_Yahoo_API_Token.md index 8017388e14..89d5f83391 100644 --- a/doc/05_Get_Yahoo_API_Token.md +++ b/doc/05_Get_Yahoo_API_Token.md @@ -3,8 +3,9 @@ 1. Yahoo! JAPAN IDを取得します。 1. [新しいアプリケーションを開発](https://e.developer.yahoo.co.jp/register) で情報を入力します。 - * アプリケーションの種類は `クライアントサイド` を選択します。 - * アプリケーション名は好きな名前を入力します。(例: `hato-bot` ) + + - アプリケーションの種類は `クライアントサイド` を選択します。 + - アプリケーション名は好きな名前を入力します。(例: `hato-bot` ) 1. ガイドラインに同意して `確認` ボタンをクリックします。 diff --git a/doc/06_Get_OpenAI_API_Token.md b/doc/06_Get_OpenAI_API_Token.md index a3c451865a..e7b959a6bc 100644 --- a/doc/06_Get_OpenAI_API_Token.md +++ b/doc/06_Get_OpenAI_API_Token.md @@ -7,6 +7,7 @@ 1. `Create new secret key` をクリックします。 1. 次のように入力し `Create secret key` をクリックします。 - * `Permissions`: `Restricted` にしたうえで `Model capabilities` を `Write` にする + + - `Permissions`: `Restricted` にしたうえで `Model capabilities` を `Write` にする 1. 発行されたAPI keyをメモします。 diff --git a/docker-compose.yml b/docker-compose.yml index 36ac1c18b4..90115b6d78 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,4 @@ --- -version: "3.8" volumes: postgres-data: driver: "local" diff --git a/fly.template.toml b/fly.template.toml new file mode 100644 index 0000000000..2c1d4670bf --- /dev/null +++ b/fly.template.toml @@ -0,0 +1,24 @@ +# fly.toml app configuration file generated for hato-bot on 2024-05-18T23:08:03+09:00 +# +# See https://fly.io/docs/reference/configuration/ for information about how to use this file. +# + +# TODO: アプリ名設定 +app = 'hato-bot' + +primary_region = 'nrt' + +[build] + image = 'tmp-hato-bot-flyio' + +[http_service] + internal_port = 3000 + force_https = true + auto_stop_machines = true + auto_start_machines = true + min_machines_running = 0 + processes = ['app'] + +[[vm]] + size = 'shared-cpu-1x' + memory = '256' diff --git a/flyio_deploy.sh b/flyio_deploy.sh new file mode 100755 index 0000000000..bb29338443 --- /dev/null +++ b/flyio_deploy.sh @@ -0,0 +1,17 @@ +#!/usr/bin/env bash +set -xe -o pipefail + +# shellcheck disable=SC2034 +TAG_NAME=$(git symbolic-ref --short HEAD | sed -e "s:/:-:g") + +DOCKER_SERVICE_NAME=hato-bot +docker compose build "$DOCKER_SERVICE_NAME" +APP_NAME=$(yq '.app' fly.toml) +fly apps create --name="$APP_NAME" +grep -v DATABASE_URL .env | fly secrets import +POSTGRES_APP_NAME="${APP_NAME}-db" +fly postgres create --name="$POSTGRES_APP_NAME" --region="$(yq '.primary_region' fly.toml)" --initial-cluster-size=1 \ + --vm-size="$(yq '.vm.[0].size' fly.toml)" --volume-size=1 +fly postgres attach "$POSTGRES_APP_NAME" +docker tag "$(docker compose images "$DOCKER_SERVICE_NAME" --format json | yq '.[0].ID')" tmp-hato-bot-flyio +fly deploy --local-only diff --git a/library/chat_gpt.py b/library/chat_gpt.py index f2ec6a56bb..8076d9a0af 100644 --- a/library/chat_gpt.py +++ b/library/chat_gpt.py @@ -13,7 +13,7 @@ def chat_gpt(message: str) -> Optional[str]: messages=[ { "role": "system", - "content": "自然な感じで「鳩は唐揚げ!」という文章を混ぜて発言してください。", + "content": "あなたは鳩のbotです。自然な感じで「鳩は唐揚げ!」という文章を混ぜて発言してください。", }, {"role": "user", "content": message}, ], diff --git a/library/clientclass.py b/library/clientclass.py index 4331b5b110..9c9660e300 100644 --- a/library/clientclass.py +++ b/library/clientclass.py @@ -171,11 +171,17 @@ def _post(self, text=None, file_ids=None): if self.message["visibility"] == "public": visibility = NoteVisibility.HOME + if self.message["cw"]: + cw = "隠すっぽ!" + else: + cw = None + self.client.notes_create( text=text, visibility=visibility, reply_id=self.message["id"], file_ids=file_ids, + cw=cw, ) def get_send_user(self): diff --git a/library/database.py b/library/database.py index f8e9f9569e..4f795f62fe 100644 --- a/library/database.py +++ b/library/database.py @@ -12,7 +12,7 @@ class Database: def __init__(self): try: - self.conn = psycopg2.connect(conf.DB_URL, sslmode="require") + self.conn = psycopg2.connect(conf.DB_URL) except psycopg2.Error as _e: print("Can not connect to database.") raise _e diff --git a/library/geo.py b/library/geo.py index 34820f1442..8d02ccb2b3 100644 --- a/library/geo.py +++ b/library/geo.py @@ -34,7 +34,8 @@ def get_yahoo_geo_data(place: str) -> Optional[Dict[str, str]]: :param place: 地名・住所・郵便番号 :return: place: 地名, lat: 緯度, lon: 経度 """ - is_zip_code = re.match(r"[0-9]{3}-[0-9]{4}", place) + # 曖昧な指定に対応できるよう、3桁以上で始まっているなら郵便番号としている + is_zip_code = re.match(r"^[0-9]{3}", place) if is_zip_code: url = "https://map.yahooapis.jp/search/zip/V1/zipCodeSearch" diff --git a/library/hatomap.py b/library/hatomap.py index 86a7b48266..7772f7029f 100644 --- a/library/hatomap.py +++ b/library/hatomap.py @@ -220,6 +220,7 @@ def request(self, bbox: WebMercatorPixelBBox) -> np.ndarray: @dataclass class Layer(metaclass=ABCMeta): + @abstractmethod def get_image(self, bbox: WebMercatorPixelBBox) -> np.ndarray: pass diff --git a/package-lock.json b/package-lock.json index a24b185b81..75b29be9b7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,8 +7,8 @@ "devDependencies": { "@proofdict/textlint-rule-proofdict": "3.1.2", "@textlint-ja/textlint-rule-no-insert-dropping-sa": "2.0.1", - "markdownlint-cli": "0.39.0", - "textlint": "14.0.4", + "markdownlint-cli": "0.42.0", + "textlint": "14.2.0", "textlint-filter-rule-comments": "1.2.2", "textlint-rule-abbr-within-parentheses": "1.0.2", "textlint-rule-footnote-order": "1.0.3", @@ -16,46 +16,64 @@ "textlint-rule-ja-hiragana-fukushi": "1.3.0", "textlint-rule-ja-hiragana-hojodoushi": "1.1.0", "textlint-rule-ja-hiragana-keishikimeishi": "1.1.0", - "textlint-rule-no-dead-link": "5.1.2", + "textlint-rule-no-dead-link": "5.2.0", "textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet": "1.0.1", "textlint-rule-prefer-tari-tari": "1.0.3", - "textlint-rule-preset-ja-spacing": "2.4.1", + "textlint-rule-preset-ja-spacing": "2.4.3", "textlint-rule-preset-ja-technical-writing": "10.0.1", - "textlint-rule-terminology": "4.0.1" + "textlint-rule-terminology": "5.2.12" }, "engines": { - "npm": "^10.5.0 || ^8.19.2" - } - }, - "node_modules/@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "node": ">=20", + "npm": "^10.8.2 || ^10.8.2 || ^8.19.2" } }, "node_modules/@azu/format-text": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@azu/format-text/-/format-text-1.0.2.tgz", "integrity": "sha512-Swi4N7Edy1Eqq82GxgEECXSSLyn6GOb5htRFPzBDdUkECGXtlf12ynO5oJSpWKPwCaUssOu7NfhDcCWpIC6Ywg==", - "dev": true + "dev": true, + "license": "BSD-3-Clause" }, "node_modules/@azu/style-format": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@azu/style-format/-/style-format-1.0.1.tgz", "integrity": "sha512-AHcTojlNBdD/3/KxIKlg8sxIWHfOtQszLvOpagLTO+bjC3u7SAszu1lf//u7JJC50aUSH+BVWDD/KvaA6Gfn5g==", "dev": true, + "license": "WTFPL", "dependencies": { "@azu/format-text": "^1.0.1" } }, + "node_modules/@babel/helper-string-parser": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", + "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", + "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/parser": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.4.tgz", - "integrity": "sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.6.tgz", + "integrity": "sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==", "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.25.6" + }, "bin": { "parser": "bin/babel-parser.js" }, @@ -63,11 +81,27 @@ "node": ">=6.0.0" } }, + "node_modules/@babel/types": { + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.6.tgz", + "integrity": "sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@isaacs/cliui": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", "dev": true, + "license": "ISC", "dependencies": { "string-width": "^5.1.2", "string-width-cjs": "npm:string-width@^4.2.0", @@ -81,10 +115,11 @@ } }, "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -96,13 +131,15 @@ "version": "9.2.2", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@isaacs/cliui/node_modules/string-width": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dev": true, + "license": "MIT", "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", @@ -120,6 +157,7 @@ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, + "license": "MIT", "dependencies": { "ansi-regex": "^6.0.1" }, @@ -135,6 +173,7 @@ "resolved": "https://registry.npmjs.org/@kvs/env/-/env-1.2.0.tgz", "integrity": "sha512-MJVudIYrHg1E0AKrognxK5EdqKFjYSsHsa47WQf8rIyzoeSK614mnqJ+2+ZJr7nY9nUYkYsFivxXbQffIzcqcg==", "dev": true, + "license": "MIT", "dependencies": { "@kvs/indexeddb": "^1.2.0", "@kvs/node-localstorage": "^1.2.0" @@ -145,6 +184,7 @@ "resolved": "https://registry.npmjs.org/@kvs/indexeddb/-/indexeddb-1.2.0.tgz", "integrity": "sha512-elB0vtvM33ayqHVSL2jl5TMtoW/YaESuJVGf9yEO+8KZjhs+xxSDoUIEJYn9qD7pZc/LyMXVFBglr5Pxf2vWAQ==", "dev": true, + "license": "MIT", "dependencies": { "@kvs/types": "^1.2.0" } @@ -154,6 +194,7 @@ "resolved": "https://registry.npmjs.org/@kvs/node-localstorage/-/node-localstorage-1.2.0.tgz", "integrity": "sha512-KJU0o2wjavwfTMpvfzA2vqPFOqb67n2UGvbsHi0bgwfVtkzd0fS/Ev/my9sayDHrXLx7SJJvXtqE8VM4nzEjqw==", "dev": true, + "license": "MIT", "dependencies": { "@kvs/storage": "^1.2.0", "app-root-path": "^3.0.0", @@ -166,6 +207,7 @@ "resolved": "https://registry.npmjs.org/@kvs/storage/-/storage-1.2.0.tgz", "integrity": "sha512-Zd9rA4U3/h8n3CxNUzMnsz5+UPOng1dXOc0MyEy0RQzF0XlWSTyOrxErn57bPbO0MHoHdw11MEzhDDRYsNj7ZA==", "dev": true, + "license": "MIT", "dependencies": { "@kvs/types": "^1.2.0" } @@ -174,13 +216,15 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/@kvs/types/-/types-1.2.0.tgz", "integrity": "sha512-88x1wFRMYg6DyCuX2jeLx2s8q7H3ayRtPD+OVhsSC5v7ek+FP7cv9ooVCC/+Ib5QzNWzkZpd4Uap6O9HrAxq6g==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, + "license": "MIT", "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" @@ -194,6 +238,7 @@ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, + "license": "MIT", "engines": { "node": ">= 8" } @@ -203,6 +248,7 @@ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, + "license": "MIT", "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" @@ -216,6 +262,7 @@ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", "dev": true, + "license": "MIT", "optional": true, "engines": { "node": ">=14" @@ -226,6 +273,7 @@ "resolved": "https://registry.npmjs.org/@proofdict/tester/-/tester-3.1.0.tgz", "integrity": "sha512-qzeYjOfNwpt4WF6rN9YHLUsGF3OEGD+Zt3ZfJ1KDw2tKH8e2lr9bVsEIbq7v3KBgoGo43zgx3bNsPM/CuE027w==", "dev": true, + "license": "MIT", "dependencies": { "@proofdict/types": "^3.1.0", "prh": "5.4.4" @@ -236,6 +284,7 @@ "resolved": "https://registry.npmjs.org/@proofdict/textlint-rule-proofdict/-/textlint-rule-proofdict-3.1.2.tgz", "integrity": "sha512-UoAedRyxwbtWXbjLvxxSA0BcN5Ao5cNdM/kQUzs4ontygBxz2SON/4gg605RQa9VzF9yqURzk25nChRJXtCRzQ==", "dev": true, + "license": "MIT", "dependencies": { "@kvs/env": "^1.0.0", "@proofdict/tester": "^3.1.0", @@ -253,13 +302,15 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/@proofdict/types/-/types-3.1.0.tgz", "integrity": "sha512-f8cxZ35ylr4n8TW/eUJ9KynEc484Tiocgl4a/ZZNS1dAH5G4vkJ+1AFw2ob/4dCiafy5tcue6TiZuWBFAmsS5g==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@textlint-ja/textlint-rule-no-insert-dropping-sa": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@textlint-ja/textlint-rule-no-insert-dropping-sa/-/textlint-rule-no-insert-dropping-sa-2.0.1.tgz", "integrity": "sha512-ayBSq7K54TeA23dJt/oZeC4532+IwJ6J7ejHvbLV3AgdqlyXEC3xkVsBFmxT90sUegWxpzJwu9qBeByfVXR2FA==", "dev": true, + "license": "MIT", "dependencies": { "array-find-index": "^1.0.2", "kuromojin": "^3.0.0", @@ -267,19 +318,21 @@ } }, "node_modules/@textlint-rule/textlint-rule-no-invalid-control-character": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@textlint-rule/textlint-rule-no-invalid-control-character/-/textlint-rule-no-invalid-control-character-2.0.0.tgz", - "integrity": "sha512-EmTC9mrmI5tm9AS+/jv46CzQVycdPjAvH5sk0DjjYCXYNv2oTWk+7naAyKJ3kKQlLzG4KHmX/JDHerVF2T6S2Q==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@textlint-rule/textlint-rule-no-invalid-control-character/-/textlint-rule-no-invalid-control-character-2.1.0.tgz", + "integrity": "sha512-Bi/mOIbCOeQMKGgk+hTR4Q8CASkDPi2IQkDaNDkvP3zdrlvHoKbosBu4tQ55bE8jPpT+Q78Km59ZVin5xiogxw==", "dev": true, + "license": "MIT", "dependencies": { "execall": "^1.0.0" } }, "node_modules/@textlint-rule/textlint-rule-no-unmatched-pair": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@textlint-rule/textlint-rule-no-unmatched-pair/-/textlint-rule-no-unmatched-pair-2.0.2.tgz", - "integrity": "sha512-oE7vVmjCsKcbLy2/igBh0qvDmfbcAgjFfOCbhaOxxgXqD9hDKbnG+vxIPmRl27u2PwijZCQI+5r7FyiVVS/kyw==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@textlint-rule/textlint-rule-no-unmatched-pair/-/textlint-rule-no-unmatched-pair-2.0.3.tgz", + "integrity": "sha512-asZI8nYuXP6TNHRKPSDAqBzL/7LWdX5QgFp1ZSezJOzmWinI9r9JK9ywl71T7YZbR8IN06/g35rSFJVziidc2Q==", "dev": true, + "license": "MIT", "dependencies": { "sentence-splitter": "^5.0.0", "textlint-rule-helper": "^2.3.1" @@ -289,13 +342,15 @@ "version": "4.4.3", "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-4.4.3.tgz", "integrity": "sha512-qi2jjgO6Tn3KNPGnm6B7p6QTEPvY95NFsIAaJuwbulur8iJUEenp1OnoUfiDaC/g2WPPEFkcfXpmnu8XEMFo2A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@textlint/ast-tester": { "version": "2.3.5", "resolved": "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-2.3.5.tgz", "integrity": "sha512-sbw0Edx22/Fa9fwObpus5KyhCnGKhyP1tU7flA7kwTi9EqQq2KFztz1c/QQWpgqymbdSPWg7HpAvGf4ru4FDZg==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/ast-node-types": "^4.4.3" } @@ -305,110 +360,122 @@ "resolved": "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-2.3.5.tgz", "integrity": "sha512-yo1gIoXDx2bNs1JjC9viRxJpErNsfPtzb585KcVwWxxWmu3tXlT2iz13iKdjj5FMYPJe/PORe7lYqymkSUZ7kg==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/ast-node-types": "^4.4.3" } }, "node_modules/@textlint/config-loader": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/config-loader/-/config-loader-14.0.4.tgz", - "integrity": "sha512-qgAvZ1RcTq58+yNbzhaKHsb52yHRxt8SRpG7S4WFjYj2DEStjIxzssSQvlZtEBjSUQ7RZNJ93d+pL0YK8MIVoA==", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/config-loader/-/config-loader-14.2.0.tgz", + "integrity": "sha512-LDIr0zykTVsIWz/q+NIiYXoF0Fqdl1X+JLGIAG6E2CTKJhsGW4naKvt2d9zWhCjSM7E9ZX6XAdvo16WDJALYlg==", "dev": true, + "license": "MIT", "dependencies": { - "@textlint/kernel": "^14.0.4", - "@textlint/module-interop": "^14.0.4", - "@textlint/types": "^14.0.4", - "@textlint/utils": "^14.0.4", + "@textlint/kernel": "^14.2.0", + "@textlint/module-interop": "^14.2.0", + "@textlint/types": "^14.2.0", + "@textlint/utils": "^14.2.0", "debug": "^4.3.4", "rc-config-loader": "^4.1.3", "try-resolve": "^1.0.1" } }, "node_modules/@textlint/config-loader/node_modules/@textlint/ast-node-types": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-14.0.4.tgz", - "integrity": "sha512-O7L1pgle030Co9ou1+6e2/6GgcIpKgqwEc0XiBabokc22Yl0QEkrf00K/usBDmSx+wo1ficWBux2mfBEF0jnDA==", - "dev": true + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-14.2.0.tgz", + "integrity": "sha512-dOnBuqvsmiNkhHHp1ZaZed1uwvDpVNZWGvZlrckWaJpzsrTTNtxtd627MkMRCdGvIT3+RkfmV9OHqh51JfexRg==", + "dev": true, + "license": "MIT" }, "node_modules/@textlint/config-loader/node_modules/@textlint/ast-tester": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-14.0.4.tgz", - "integrity": "sha512-SQ/2DjxVlDVeCEjVlD8c8R2Sl3VGDZEx8o9+i8bV8NUdY8qsSHbo29/BfiUZf/uaX6eeNpZsurtstJ25hbVrsQ==", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-14.2.0.tgz", + "integrity": "sha512-k7HAVjv5hUFNWUeb1h+3yaoSnwhjKJ55FaFVlUPsW5qFRIAkWaZ0Xpo2IEAyGaa5jgulWe8vEX6ZTmvwi6bzUA==", "dev": true, + "license": "MIT", "dependencies": { - "@textlint/ast-node-types": "^14.0.4", + "@textlint/ast-node-types": "^14.2.0", "debug": "^4.3.4" } }, "node_modules/@textlint/config-loader/node_modules/@textlint/ast-traverse": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-14.0.4.tgz", - "integrity": "sha512-bzFC7UJ2FvhjH5ekXGQ0i9vjK+xzMT69gHBsYVEl+TtbplnH2YY3+sbw6B1j3LocJuo6xngZ2YWXXqmQlKgzLg==", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-14.2.0.tgz", + "integrity": "sha512-qmB+bbLTndlgIObMxoXhdE/t1o6JUQxgw1pzLEtd7rvZO7sNH4Agui1ddlWjaIczj+K40tm8jsfi/74NJtJ9fg==", "dev": true, + "license": "MIT", "dependencies": { - "@textlint/ast-node-types": "^14.0.4" + "@textlint/ast-node-types": "^14.2.0" } }, "node_modules/@textlint/config-loader/node_modules/@textlint/feature-flag": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-14.0.4.tgz", - "integrity": "sha512-1FMZqnjOA4KVpt/aloI1fNs46P0rUeHWcCRKl33/08wRHHMdcbaN4EsHkq7UfriuSfFgUuiyeo0bPjCpv15hhQ==", - "dev": true + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-14.2.0.tgz", + "integrity": "sha512-KjO4ACoKhA10XUi4Wp3dKixfEMFQAE+WLgCDEB5k+cAKPkwaFYjN5vezA1TGe+fSHcQiBjv268F0r3hmtsPf8Q==", + "dev": true, + "license": "MIT" }, "node_modules/@textlint/config-loader/node_modules/@textlint/kernel": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/kernel/-/kernel-14.0.4.tgz", - "integrity": "sha512-6WNoEBZ4lYTYOGK4EEEdjp+kgxSSC1nIFwN6tY9XGVkd4OACzDNothVTvJBwaX73FWFG5zoSjnNQxBDPUHMc8g==", - "dev": true, - "dependencies": { - "@textlint/ast-node-types": "^14.0.4", - "@textlint/ast-tester": "^14.0.4", - "@textlint/ast-traverse": "^14.0.4", - "@textlint/feature-flag": "^14.0.4", - "@textlint/source-code-fixer": "^14.0.4", - "@textlint/types": "^14.0.4", - "@textlint/utils": "^14.0.4", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/kernel/-/kernel-14.2.0.tgz", + "integrity": "sha512-QYF2ZGnkLhd+GYGWL2wpZNjK0ec8HqwGjAsmc49E0g5NKMDvX3U/TYGwjsM8g6WCxGVGS625wr0tm6UxIAK5+Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@textlint/ast-node-types": "^14.2.0", + "@textlint/ast-tester": "^14.2.0", + "@textlint/ast-traverse": "^14.2.0", + "@textlint/feature-flag": "^14.2.0", + "@textlint/source-code-fixer": "^14.2.0", + "@textlint/types": "^14.2.0", + "@textlint/utils": "^14.2.0", "debug": "^4.3.4", "fast-equals": "^4.0.3", "structured-source": "^4.0.0" } }, "node_modules/@textlint/config-loader/node_modules/@textlint/source-code-fixer": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/source-code-fixer/-/source-code-fixer-14.0.4.tgz", - "integrity": "sha512-gIUeWjF0WdSwgCUhW310hKJsWOyRyFe6PGaqqCk7Mhc+vVcePfmC8mmmhVgeuyys/Dhe+0iaP4M1eJf4COaIQw==", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/source-code-fixer/-/source-code-fixer-14.2.0.tgz", + "integrity": "sha512-xMFtpwcs5Z1WTiFBmLN2Fe2GQg3u0kEZgF42AvFHKphbmToKYlGUMw1jaMsEXaxrTOTjqwj3SycRR7rrgKgOxg==", "dev": true, + "license": "MIT", "dependencies": { - "@textlint/types": "^14.0.4", + "@textlint/types": "^14.2.0", "debug": "^4.3.4" } }, "node_modules/@textlint/config-loader/node_modules/@textlint/types": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/types/-/types-14.0.4.tgz", - "integrity": "sha512-SNdFG/GB6utYeHmNfoAMlI+K1NykPxK9TtilkEfhr/fF9TqmeeJ+6CMk5NLQzEvfKm6jUbv2pp5DPS27vo6GKg==", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/types/-/types-14.2.0.tgz", + "integrity": "sha512-lK8HCnkNg+spOHVw1HX0AvwP1BZVlJsbL4OLIHnwfvakfUxLQFXtJ6x2asAXMNMQGqwSWKQrLBCmWZWVsDtReg==", "dev": true, + "license": "MIT", "dependencies": { - "@textlint/ast-node-types": "^14.0.4" + "@textlint/ast-node-types": "^14.2.0" } }, "node_modules/@textlint/config-loader/node_modules/@textlint/utils": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/utils/-/utils-14.0.4.tgz", - "integrity": "sha512-/ThtVZCB/vB2e8+MnKquCFNO2cKXCPEGxFlkdvJ5g9q9ODpVyFcf2ogYoIlvR7cNotvq67zVjENS7dsGDNFEmw==", - "dev": true + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/utils/-/utils-14.2.0.tgz", + "integrity": "sha512-eXRygFRC1CK+BHRqIe2RRFiC8VJMpV7NwsLdBKsFMcivgNRgL6hkhhbrMI6MbPg+jdWM+nK5Z9+QpPYL9c9/pg==", + "dev": true, + "license": "MIT" }, "node_modules/@textlint/config-loader/node_modules/boundary": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/boundary/-/boundary-2.0.0.tgz", "integrity": "sha512-rJKn5ooC9u8q13IMCrW0RSp31pxBCHE3y9V/tp3TdWSLf8Em3p6Di4NBpfzbJge9YjjFEsD0RtFEjtvHL5VyEA==", - "dev": true + "dev": true, + "license": "BSD-2-Clause" }, "node_modules/@textlint/config-loader/node_modules/structured-source": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/structured-source/-/structured-source-4.0.0.tgz", "integrity": "sha512-qGzRFNJDjFieQkl/sVOI2dUjHKRyL9dAJi2gCPGJLbJHBIkyOHxjuocpIEfbLioX+qSJpvbYdT49/YCdMznKxA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "boundary": "^2.0.0" } @@ -418,18 +485,20 @@ "resolved": "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-3.3.5.tgz", "integrity": "sha512-S4JhbDQGu1Sutnvqs96nwxqwaErHrL49/QQDR8i/YNsINlurfKJbmktotb+w+qzeSibDibKzB8feOMVBXmO9Ww==", "dev": true, + "license": "MIT", "dependencies": { "map-like": "^2.0.0" } }, "node_modules/@textlint/fixer-formatter": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/fixer-formatter/-/fixer-formatter-14.0.4.tgz", - "integrity": "sha512-HkMxzGPo/pgA9UvddqJG6qm62ICNgil3AmBVp0QpOv5uTV1u9gCSQ5jOdb/aOJBw7W8fd+CcnEsEBYn9HT8e6A==", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/fixer-formatter/-/fixer-formatter-14.2.0.tgz", + "integrity": "sha512-Ji4Kq0hckDj1WranfNwnN87nUE4EldMyf7z2AEQ51vDSqLeYk+WCQo6/Gc+a+ytQt5s/QPyfcpiHItr75xHF8g==", "dev": true, + "license": "MIT", "dependencies": { - "@textlint/module-interop": "^14.0.4", - "@textlint/types": "^14.0.4", + "@textlint/module-interop": "^14.2.0", + "@textlint/types": "^14.2.0", "chalk": "^4.1.2", "debug": "^4.3.4", "diff": "^5.2.0", @@ -440,18 +509,20 @@ } }, "node_modules/@textlint/fixer-formatter/node_modules/@textlint/ast-node-types": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-14.0.4.tgz", - "integrity": "sha512-O7L1pgle030Co9ou1+6e2/6GgcIpKgqwEc0XiBabokc22Yl0QEkrf00K/usBDmSx+wo1ficWBux2mfBEF0jnDA==", - "dev": true + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-14.2.0.tgz", + "integrity": "sha512-dOnBuqvsmiNkhHHp1ZaZed1uwvDpVNZWGvZlrckWaJpzsrTTNtxtd627MkMRCdGvIT3+RkfmV9OHqh51JfexRg==", + "dev": true, + "license": "MIT" }, "node_modules/@textlint/fixer-formatter/node_modules/@textlint/types": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/types/-/types-14.0.4.tgz", - "integrity": "sha512-SNdFG/GB6utYeHmNfoAMlI+K1NykPxK9TtilkEfhr/fF9TqmeeJ+6CMk5NLQzEvfKm6jUbv2pp5DPS27vo6GKg==", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/types/-/types-14.2.0.tgz", + "integrity": "sha512-lK8HCnkNg+spOHVw1HX0AvwP1BZVlJsbL4OLIHnwfvakfUxLQFXtJ6x2asAXMNMQGqwSWKQrLBCmWZWVsDtReg==", "dev": true, + "license": "MIT", "dependencies": { - "@textlint/ast-node-types": "^14.0.4" + "@textlint/ast-node-types": "^14.2.0" } }, "node_modules/@textlint/fixer-formatter/node_modules/diff": { @@ -459,6 +530,7 @@ "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">=0.3.1" } @@ -468,6 +540,7 @@ "resolved": "https://registry.npmjs.org/@textlint/kernel/-/kernel-3.4.5.tgz", "integrity": "sha512-KGeOq4mbjPe3okDtPw7mbnTX/wP66ndmRKAoOz8gOKDIDRlH8nOG/av6k6xbVhdMk9+ZnomqU8jSSYwTZHzAnA==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/ast-node-types": "^4.4.3", "@textlint/ast-tester": "^2.3.5", @@ -483,15 +556,16 @@ } }, "node_modules/@textlint/linter-formatter": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-14.0.4.tgz", - "integrity": "sha512-EQZJPydExEIvBARkdmkoGsKWie1ekNAiqerQgIqwPb3SqOzKnlaDGrZOMy40HufTcacZrrvlbByDyai6m30+Lw==", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-14.2.0.tgz", + "integrity": "sha512-9+5n3UIhbKGNCvI5s0BJexHrWqw/TZQnUQLpvbL04SnJqwSH2xlUQfEwPAybPO1Tb9coUGHYlBZObRxy9tRwig==", "dev": true, + "license": "MIT", "dependencies": { "@azu/format-text": "^1.0.2", "@azu/style-format": "^1.0.1", - "@textlint/module-interop": "^14.0.4", - "@textlint/types": "^14.0.4", + "@textlint/module-interop": "^14.2.0", + "@textlint/types": "^14.2.0", "chalk": "^4.1.2", "debug": "^4.3.4", "js-yaml": "^3.14.1", @@ -505,103 +579,65 @@ } }, "node_modules/@textlint/linter-formatter/node_modules/@textlint/ast-node-types": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-14.0.4.tgz", - "integrity": "sha512-O7L1pgle030Co9ou1+6e2/6GgcIpKgqwEc0XiBabokc22Yl0QEkrf00K/usBDmSx+wo1ficWBux2mfBEF0jnDA==", - "dev": true + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-14.2.0.tgz", + "integrity": "sha512-dOnBuqvsmiNkhHHp1ZaZed1uwvDpVNZWGvZlrckWaJpzsrTTNtxtd627MkMRCdGvIT3+RkfmV9OHqh51JfexRg==", + "dev": true, + "license": "MIT" }, "node_modules/@textlint/linter-formatter/node_modules/@textlint/types": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/types/-/types-14.0.4.tgz", - "integrity": "sha512-SNdFG/GB6utYeHmNfoAMlI+K1NykPxK9TtilkEfhr/fF9TqmeeJ+6CMk5NLQzEvfKm6jUbv2pp5DPS27vo6GKg==", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/types/-/types-14.2.0.tgz", + "integrity": "sha512-lK8HCnkNg+spOHVw1HX0AvwP1BZVlJsbL4OLIHnwfvakfUxLQFXtJ6x2asAXMNMQGqwSWKQrLBCmWZWVsDtReg==", "dev": true, + "license": "MIT", "dependencies": { - "@textlint/ast-node-types": "^14.0.4" + "@textlint/ast-node-types": "^14.2.0" } }, "node_modules/@textlint/markdown-to-ast": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-14.0.4.tgz", - "integrity": "sha512-D9UUxnRJoNROVjOa9bhoQPDdRvlvS/xP3MJo0Kl6b/mJFi0dOlW31WUfpOFjZkp4uXkL+oo0ji7AMnmV6JORsQ==", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-14.2.0.tgz", + "integrity": "sha512-vDcj8fuo1ZJinLtDwMO8yh9hxWujDFQRJ/MDd4Y+vxGDJRnB0c9ZVPOOPlQjaumlVNI7CB1fDsz+jx8z6/d8iw==", "dev": true, + "license": "MIT", "dependencies": { - "@textlint/ast-node-types": "^14.0.4", + "@textlint/ast-node-types": "^14.2.0", "debug": "^4.3.4", "mdast-util-gfm-autolink-literal": "^0.1.3", + "neotraverse": "^0.6.15", "remark-footnotes": "^3.0.0", "remark-frontmatter": "^3.0.0", "remark-gfm": "^1.0.0", "remark-parse": "^9.0.0", - "traverse": "^0.6.8", "unified": "^9.2.2" } }, "node_modules/@textlint/markdown-to-ast/node_modules/@textlint/ast-node-types": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-14.0.4.tgz", - "integrity": "sha512-O7L1pgle030Co9ou1+6e2/6GgcIpKgqwEc0XiBabokc22Yl0QEkrf00K/usBDmSx+wo1ficWBux2mfBEF0jnDA==", - "dev": true + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-14.2.0.tgz", + "integrity": "sha512-dOnBuqvsmiNkhHHp1ZaZed1uwvDpVNZWGvZlrckWaJpzsrTTNtxtd627MkMRCdGvIT3+RkfmV9OHqh51JfexRg==", + "dev": true, + "license": "MIT" }, "node_modules/@textlint/module-interop": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-14.0.4.tgz", - "integrity": "sha512-okv52pRSQ1aeC8rim8qp2D2Fmj/oKDYGY2itdeZhj9E/vdkU9/r7OpdcxyuNiuqLEd/sWw03EAwt3S6mlfNIOw==", - "dev": true + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-14.2.0.tgz", + "integrity": "sha512-1X3DfCwF3y07eVyK41K6As0L+Ekyn5lAh98hVoUNOGDJQtjRvM3aKZ8z0o0BtbCeH7nYTyExo31lUgURWuDWnQ==", + "dev": true, + "license": "MIT" }, "node_modules/@textlint/regexp-string-matcher": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@textlint/regexp-string-matcher/-/regexp-string-matcher-1.1.1.tgz", - "integrity": "sha512-rrNUCKGKYBrZALotSF8D5A8xD05VHX6kxv0BP805Ig2M73Ha6LK+de31+ZocGm4CO+sikVFYyMCPPJhp7bCXcw==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@textlint/regexp-string-matcher/-/regexp-string-matcher-2.0.2.tgz", + "integrity": "sha512-OXLD9XRxMhd3S0LWuPHpiARQOI7z9tCOs0FsynccW2lmyZzHHFJ9/eR6kuK9xF459Qf+740qI5h+/0cx+NljzA==", "dev": true, + "license": "MIT", "dependencies": { - "escape-string-regexp": "^2.0.0", - "execall": "^2.0.0", + "escape-string-regexp": "^4.0.0", "lodash.sortby": "^4.7.0", "lodash.uniq": "^4.5.0", - "lodash.uniqwith": "^4.5.0", - "to-regex": "^3.0.2" - } - }, - "node_modules/@textlint/regexp-string-matcher/node_modules/clone-regexp": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clone-regexp/-/clone-regexp-2.2.0.tgz", - "integrity": "sha512-beMpP7BOtTipFuW8hrJvREQ2DrRu3BE7by0ZpibtfBA+qfHYvMGTc2Yb1JMYPKg/JUw0CHYvpg796aNTSW9z7Q==", - "dev": true, - "dependencies": { - "is-regexp": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@textlint/regexp-string-matcher/node_modules/escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@textlint/regexp-string-matcher/node_modules/execall": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/execall/-/execall-2.0.0.tgz", - "integrity": "sha512-0FU2hZ5Hh6iQnarpRtQurM/aAvp3RIbfvgLHrcqJYzhXyV2KFruhuChf9NC6waAhiUR7FFtlugkI4p7f2Fqlow==", - "dev": true, - "dependencies": { - "clone-regexp": "^2.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@textlint/regexp-string-matcher/node_modules/is-regexp": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-2.1.0.tgz", - "integrity": "sha512-OZ4IlER3zmRIoB9AqNhEggVxqIH4ofDns5nRrPS6yQxXE1TPCUpFznBfRQmQa8uC+pXqjMnukiJBxCisIxiLGA==", - "dev": true, - "engines": { - "node": ">=6" + "lodash.uniqwith": "^4.5.0" } }, "node_modules/@textlint/source-code-fixer": { @@ -609,42 +645,47 @@ "resolved": "https://registry.npmjs.org/@textlint/source-code-fixer/-/source-code-fixer-3.4.5.tgz", "integrity": "sha512-YUcBg6zs7H5ycLwWdfv5LHWlBx7iBAQL6vHY2uPw8AMPYgzU6/f91NGBU/QR7/FVw0e7v9zMngcRN1hMOxpFCw==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/types": "^1.5.5", "debug": "^4.3.1" } }, "node_modules/@textlint/text-to-ast": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-14.0.4.tgz", - "integrity": "sha512-r2KSnKzhsCIvX72yX+7sEuu9nDQIS4+xRsSffuXYB0etRQUI6VTTsE6Ibd6yMbEsMDUF4BfKWzNGn+bQ8U7oHA==", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-14.2.0.tgz", + "integrity": "sha512-i71ksLnlkb6epmeOiRv/xiHHLBWOtCx3gUBiTr8YC/9xbdhzBehFblJ6IjeikIJYPTfpzDECRmDqDNq7Cvos3Q==", "dev": true, + "license": "MIT", "dependencies": { - "@textlint/ast-node-types": "^14.0.4" + "@textlint/ast-node-types": "^14.2.0" } }, "node_modules/@textlint/text-to-ast/node_modules/@textlint/ast-node-types": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-14.0.4.tgz", - "integrity": "sha512-O7L1pgle030Co9ou1+6e2/6GgcIpKgqwEc0XiBabokc22Yl0QEkrf00K/usBDmSx+wo1ficWBux2mfBEF0jnDA==", - "dev": true + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-14.2.0.tgz", + "integrity": "sha512-dOnBuqvsmiNkhHHp1ZaZed1uwvDpVNZWGvZlrckWaJpzsrTTNtxtd627MkMRCdGvIT3+RkfmV9OHqh51JfexRg==", + "dev": true, + "license": "MIT" }, "node_modules/@textlint/textlint-plugin-markdown": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.0.4.tgz", - "integrity": "sha512-mqQieI9U5GTRTjkK4Cj57Axl6fVloaA8g0+sCsp3TjmNWyEgGBvt3aw+FIUiFTvheg9L3RGe/aXgvp5ORADOAA==", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.2.0.tgz", + "integrity": "sha512-TDd132D816R5q+/ZDfxe15Cxua6RNegkQzPv0iaZZKob6t8lhMND6lUHfbXEEGHCtyignxZUXQXZGZcjKtWL4A==", "dev": true, + "license": "MIT", "dependencies": { - "@textlint/markdown-to-ast": "^14.0.4" + "@textlint/markdown-to-ast": "^14.2.0" } }, "node_modules/@textlint/textlint-plugin-text": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.0.4.tgz", - "integrity": "sha512-HwTQyOcwDRrPPHyD8lwSMyGR1ETasR2WK6BLO0PRbowRe6K/K4b9OBBd6+nJcRFa+9Nd6p7nxPzA2WxDi1X/Zg==", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.2.0.tgz", + "integrity": "sha512-5E39BWG9T5c0XOz5Vxdffa17FDwu9Woud29bYyq3OQ+JjwMQXSz3JPQ1MTNsJbqn0R58+ZKXfaWEZ/Gsoau5UA==", "dev": true, + "license": "MIT", "dependencies": { - "@textlint/text-to-ast": "^14.0.4" + "@textlint/text-to-ast": "^14.2.0" } }, "node_modules/@textlint/types": { @@ -652,6 +693,7 @@ "resolved": "https://registry.npmjs.org/@textlint/types/-/types-1.5.5.tgz", "integrity": "sha512-80P6fcqgsG9bP6JgR6W/E/oIx+71pplaicYCvvB4vMIeGk0OnWls4Q21kCpDYmq/C/ABtZ/Gy/Ov/8ExQPeQ7A==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/ast-node-types": "^4.4.3" } @@ -660,19 +702,22 @@ "version": "1.2.5", "resolved": "https://registry.npmjs.org/@textlint/utils/-/utils-1.2.5.tgz", "integrity": "sha512-2vgz4x3tKK+R9N0OlOovJClRCHubxZi86ki218cvRVpoU9pPrHwkwZud+rjItDl2xFBj7Gujww7c0W1wyytWVQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/debug": { "version": "0.0.30", "resolved": "https://registry.npmjs.org/@types/debug/-/debug-0.0.30.tgz", "integrity": "sha512-orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/glob": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", "dev": true, + "license": "MIT", "dependencies": { "@types/minimatch": "*", "@types/node": "*" @@ -683,6 +728,7 @@ "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz", "integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==", "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^2" } @@ -691,33 +737,37 @@ "version": "5.1.2", "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/node": { - "version": "20.12.7", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.7.tgz", - "integrity": "sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==", + "version": "22.5.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.5.5.tgz", + "integrity": "sha512-Xjs4y5UPO/CLdzpgR6GirZJx36yScjh73+2NlLlkFRSoQN8B0DpfXPdZGnvVmLRLOsqDpOfTNv7D9trgGhmOIA==", "dev": true, + "license": "MIT", "dependencies": { - "undici-types": "~5.26.4" + "undici-types": "~6.19.2" } }, "node_modules/@types/unist": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", - "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==", - "dev": true + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", + "dev": true, + "license": "MIT" }, "node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "dev": true, + "license": "MIT", "dependencies": { - "fast-deep-equal": "^3.1.1", + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "require-from-string": "^2.0.2" }, "funding": { "type": "github", @@ -729,6 +779,7 @@ "resolved": "https://registry.npmjs.org/analyze-desumasu-dearu/-/analyze-desumasu-dearu-5.0.1.tgz", "integrity": "sha512-r7ruCOqvqKxAzcvDzj7PdZOstOZP9wtw/wSIoV3FmNxF16CvytxhJnHYbSRhUwqzR542OO/J9CDRWS3SSp4hZA==", "dev": true, + "license": "MIT", "dependencies": { "kuromojin": "^3.0.0" } @@ -738,6 +789,7 @@ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -747,6 +799,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -762,6 +815,7 @@ "resolved": "https://registry.npmjs.org/app-root-path/-/app-root-path-3.1.0.tgz", "integrity": "sha512-biN3PwB2gUtjaYy/isrU3aNWI5w+fAfvHkSvCKeQGxhmYpwKFUxudR3Yya+KqVRHBmEDYh+/lTozYCFbmzX4nA==", "dev": true, + "license": "MIT", "engines": { "node": ">= 6.0.0" } @@ -771,6 +825,7 @@ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, + "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" } @@ -780,6 +835,7 @@ "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.5", "is-array-buffer": "^3.0.4" @@ -796,6 +852,7 @@ "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", "integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -805,6 +862,7 @@ "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -814,6 +872,7 @@ "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", "dev": true, + "license": "MIT", "dependencies": { "array-buffer-byte-length": "^1.0.1", "call-bind": "^1.0.5", @@ -836,6 +895,7 @@ "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -845,6 +905,7 @@ "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -854,6 +915,7 @@ "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", "dev": true, + "license": "MIT", "dependencies": { "lodash": "^4.17.14" } @@ -863,6 +925,7 @@ "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "dev": true, + "license": "MIT", "dependencies": { "possible-typed-array-names": "^1.0.0" }, @@ -878,6 +941,7 @@ "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz", "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -887,7 +951,8 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/boundary": { "version": "1.0.1", @@ -900,18 +965,20 @@ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, + "license": "MIT", "dependencies": { - "fill-range": "^7.0.1" + "fill-range": "^7.1.1" }, "engines": { "node": ">=8" @@ -922,6 +989,7 @@ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", "dev": true, + "license": "MIT", "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", @@ -941,6 +1009,7 @@ "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.1.0.tgz", "integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -951,6 +1020,7 @@ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -967,6 +1037,7 @@ "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -977,6 +1048,7 @@ "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -987,6 +1059,7 @@ "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -997,6 +1070,7 @@ "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": "*" } @@ -1006,21 +1080,24 @@ "resolved": "https://registry.npmjs.org/check-ends-with-period/-/check-ends-with-period-3.0.2.tgz", "integrity": "sha512-/Bw+avucqqZ7PjKCVDod1QDGyZjo7Ht2701pdgcpTXzK5jI73/OUh3VR+m18jNUoJx5DSOUv0AxELZF7FYtcDA==", "dev": true, + "license": "MIT", "dependencies": { "emoji-regex": "^10.1.0" } }, "node_modules/check-ends-with-period/node_modules/emoji-regex": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz", - "integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==", - "dev": true + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", + "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==", + "dev": true, + "license": "MIT" }, "node_modules/clone-regexp": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/clone-regexp/-/clone-regexp-1.0.1.tgz", "integrity": "sha512-Fcij9IwRW27XedRIJnSOEupS7RVcXtObJXbcUOX93UCLqqOdRpkvzKywOOSizmEK/Is3S/RHX9dLdfo6R1Q1mw==", "dev": true, + "license": "MIT", "dependencies": { "is-regexp": "^1.0.0", "is-supported-regexp-flag": "^1.0.0" @@ -1034,6 +1111,7 @@ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -1045,44 +1123,50 @@ "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/comma-separated-tokens": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz", "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" } }, "node_modules/commander": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", - "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", + "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", "dev": true, + "license": "MIT", "engines": { - "node": ">=16" + "node": ">=18" } }, "node_modules/commandpost": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/commandpost/-/commandpost-1.4.0.tgz", "integrity": "sha512-aE2Y4MTFJ870NuB/+2z1cXBhSBBzRydVVjzhFC4gtenEhpnj15yu0qptWGJsO9YGrcPZ3ezX8AWb1VA391MKpQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, + "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -1097,6 +1181,7 @@ "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": "*" } @@ -1106,6 +1191,7 @@ "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.6", "es-errors": "^1.3.0", @@ -1123,6 +1209,7 @@ "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", @@ -1140,6 +1227,7 @@ "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.6", "es-errors": "^1.3.0", @@ -1153,12 +1241,13 @@ } }, "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", "dev": true, + "license": "MIT", "dependencies": { - "ms": "2.1.2" + "ms": "^2.1.3" }, "engines": { "node": ">=6.0" @@ -1174,6 +1263,7 @@ "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.2.tgz", "integrity": "sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==", "dev": true, + "license": "MIT", "dependencies": { "is-arguments": "^1.1.1", "is-date-object": "^1.0.5", @@ -1194,6 +1284,7 @@ "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", "dev": true, + "license": "MIT", "engines": { "node": ">=4.0.0" } @@ -1202,13 +1293,15 @@ "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/define-data-property": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "dev": true, + "license": "MIT", "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", @@ -1226,6 +1319,7 @@ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "dev": true, + "license": "MIT", "dependencies": { "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", @@ -1243,6 +1337,7 @@ "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", "dev": true, + "license": "MIT", "dependencies": { "is-descriptor": "^1.0.2", "isobject": "^3.0.1" @@ -1256,6 +1351,7 @@ "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">=0.3.1" } @@ -1265,6 +1361,7 @@ "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, + "license": "MIT", "dependencies": { "path-type": "^4.0.0" }, @@ -1276,25 +1373,29 @@ "version": "0.0.2", "resolved": "https://registry.npmjs.org/doublearray/-/doublearray-0.0.2.tgz", "integrity": "sha512-aw55FtZzT6AmiamEj2kvmR6BuFqvYgKZUkfQ7teqVRNqD5UE0rw8IeW/3gieHNKQ5sPuDKlljWEn4bzv5+1bHw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/eastasianwidth": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/entities": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">=0.12" }, @@ -1307,6 +1408,7 @@ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, + "license": "MIT", "dependencies": { "is-arrayish": "^0.2.1" } @@ -1316,6 +1418,7 @@ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", "dev": true, + "license": "MIT", "dependencies": { "array-buffer-byte-length": "^1.0.1", "arraybuffer.prototype.slice": "^1.0.3", @@ -1376,6 +1479,7 @@ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", "dev": true, + "license": "MIT", "dependencies": { "get-intrinsic": "^1.2.4" }, @@ -1388,6 +1492,7 @@ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" } @@ -1397,6 +1502,7 @@ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", "dev": true, + "license": "MIT", "dependencies": { "es-errors": "^1.3.0" }, @@ -1409,6 +1515,7 @@ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", "dev": true, + "license": "MIT", "dependencies": { "get-intrinsic": "^1.2.4", "has-tostringtag": "^1.0.2", @@ -1423,6 +1530,7 @@ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, + "license": "MIT", "dependencies": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", @@ -1440,6 +1548,7 @@ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -1452,6 +1561,7 @@ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true, + "license": "BSD-2-Clause", "bin": { "esparse": "bin/esparse.js", "esvalidate": "bin/esvalidate.js" @@ -1464,19 +1574,22 @@ "version": "0.5.2", "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.5.2.tgz", "integrity": "sha512-XpCnW/AE10ws/kDAs37cngSkvgIR8aN3G0MS85m7dUpuK2EREo9VJ00uvw6Dg/hXEpfsE1I1TvJOJr+Z+TL+ig==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/eventemitter3": { "version": "4.0.7", "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/execall": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/execall/-/execall-1.0.0.tgz", "integrity": "sha512-/J0Q8CvOvlAdpvhfkD/WnTQ4H1eU0exze2nFGPj/RSC7jpQ0NkKe2r28T5eMkhEEs+fzepMZNy1kVRKNlC04nQ==", "dev": true, + "license": "MIT", "dependencies": { "clone-regexp": "^1.0.0" }, @@ -1488,13 +1601,15 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/extend-shallow": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", "dev": true, + "license": "MIT", "dependencies": { "assign-symbols": "^1.0.0", "is-extendable": "^1.0.1" @@ -1507,19 +1622,22 @@ "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/fast-equals": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-4.0.3.tgz", "integrity": "sha512-G3BSX9cfKttjr+2o1O22tYMLq0DPluZnYtq1rXumE1SpL/F/SLIfHx08WYQoWSIpeMYf8sRbJ8++71+v6Pnxfg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/fast-glob": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dev": true, + "license": "MIT", "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", @@ -1535,13 +1653,22 @@ "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true + "dev": true, + "license": "MIT" + }, + "node_modules/fast-uri": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz", + "integrity": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==", + "dev": true, + "license": "MIT" }, "node_modules/fastq": { "version": "1.17.1", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", "dev": true, + "license": "ISC", "dependencies": { "reusify": "^1.0.4" } @@ -1551,6 +1678,7 @@ "resolved": "https://registry.npmjs.org/fault/-/fault-1.0.4.tgz", "integrity": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==", "dev": true, + "license": "MIT", "dependencies": { "format": "^0.2.0" }, @@ -1564,6 +1692,7 @@ "resolved": "https://registry.npmjs.org/fetch-ponyfill/-/fetch-ponyfill-6.1.1.tgz", "integrity": "sha512-rWLgTr5A44/XhvCQPYj0X9Tc+cjUaHofSM4lcwjc9MavD5lkjIhJ+h8JQlavPlTIgDpwhuRozaIykBvX9ItaSA==", "dev": true, + "license": "MIT", "dependencies": { "node-fetch": "~2.6.0" } @@ -1573,6 +1702,7 @@ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", "dev": true, + "license": "MIT", "dependencies": { "flat-cache": "^2.0.1" }, @@ -1581,10 +1711,11 @@ } }, "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, + "license": "MIT", "dependencies": { "to-regex-range": "^5.0.1" }, @@ -1597,6 +1728,7 @@ "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", "dev": true, + "license": "MIT", "dependencies": { "locate-path": "^2.0.0" }, @@ -1609,6 +1741,7 @@ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", "dev": true, + "license": "MIT", "dependencies": { "flatted": "^2.0.0", "rimraf": "2.6.3", @@ -1622,22 +1755,25 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/for-each": { "version": "0.3.3", "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dev": true, + "license": "MIT", "dependencies": { "is-callable": "^1.1.3" } }, "node_modules/foreground-child": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", "dev": true, + "license": "ISC", "dependencies": { "cross-spawn": "^7.0.0", "signal-exit": "^4.0.1" @@ -1663,6 +1799,7 @@ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", "dev": true, + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^4.0.0", @@ -1676,13 +1813,15 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/function-bind": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", "dev": true, + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -1692,6 +1831,7 @@ "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", @@ -1710,6 +1850,7 @@ "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", "dev": true, + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -1719,6 +1860,7 @@ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", "dev": true, + "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2", @@ -1738,6 +1880,7 @@ "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-9.0.0.tgz", "integrity": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -1750,6 +1893,7 @@ "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.5", "es-errors": "^1.3.0", @@ -1766,13 +1910,16 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/get-url-origin/-/get-url-origin-1.0.1.tgz", "integrity": "sha512-MMSKo16gB2+6CjWy55jNdIAqUEaKgw3LzZCb8wVVtFrhoQ78EXyuYXxDdn3COI3A4Xr4ZfM3fZa9RTjO6DOTxw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, + "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -1793,6 +1940,7 @@ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, + "license": "ISC", "dependencies": { "is-glob": "^4.0.1" }, @@ -1801,12 +1949,14 @@ } }, "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", "dev": true, + "license": "MIT", "dependencies": { - "define-properties": "^1.1.3" + "define-properties": "^1.2.1", + "gopd": "^1.0.1" }, "engines": { "node": ">= 0.4" @@ -1820,6 +1970,7 @@ "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", "integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", "dev": true, + "license": "MIT", "dependencies": { "@types/glob": "^7.1.1", "array-union": "^2.1.0", @@ -1839,6 +1990,7 @@ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dev": true, + "license": "MIT", "dependencies": { "get-intrinsic": "^1.1.3" }, @@ -1850,13 +2002,15 @@ "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/has-bigints": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", "dev": true, + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -1866,6 +2020,7 @@ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -1875,6 +2030,7 @@ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "dev": true, + "license": "MIT", "dependencies": { "es-define-property": "^1.0.0" }, @@ -1887,6 +2043,7 @@ "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -1899,6 +2056,7 @@ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -1911,6 +2069,7 @@ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dev": true, + "license": "MIT", "dependencies": { "has-symbols": "^1.0.3" }, @@ -1926,6 +2085,7 @@ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dev": true, + "license": "MIT", "dependencies": { "function-bind": "^1.1.2" }, @@ -1938,6 +2098,7 @@ "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-5.0.3.tgz", "integrity": "sha512-gOc8UB99F6eWVWFtM9jUikjN7QkWxB3nY0df5Z0Zq1/Nkwl5V4hAAsl0tmwlgWl/1shlTF8DnNYLO8X6wRV9pA==", "dev": true, + "license": "MIT", "dependencies": { "ccount": "^1.0.3", "hastscript": "^5.0.0", @@ -1955,6 +2116,7 @@ "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz", "integrity": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==", "dev": true, + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -1965,6 +2127,7 @@ "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-5.1.2.tgz", "integrity": "sha512-WlztFuK+Lrvi3EggsqOkQ52rKbxkXL3RwB6t5lwoa8QLMemoWfBuL43eDrwOamJyR7uKQKdmKYaBH1NZBiIRrQ==", "dev": true, + "license": "MIT", "dependencies": { "comma-separated-tokens": "^1.0.0", "hast-util-parse-selector": "^2.0.0", @@ -1980,13 +2143,15 @@ "version": "2.8.9", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, + "license": "MIT", "engines": { "node": ">= 4" } @@ -1996,6 +2161,7 @@ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8.19" } @@ -2004,7 +2170,9 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, + "license": "ISC", "dependencies": { "once": "^1.3.0", "wrappy": "1" @@ -2014,13 +2182,15 @@ "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/ini": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.2.tgz", - "integrity": "sha512-AMB1mvwR1pyBFY/nSevUX6y8nJWS63/SzUKD3JyQn97s4xgIdgQPT75IRouIiBAN4yLQBUShNYVW0+UG25daCw==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.3.tgz", + "integrity": "sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==", "dev": true, + "license": "ISC", "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } @@ -2030,6 +2200,7 @@ "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", "dev": true, + "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "hasown": "^2.0.0", @@ -2044,6 +2215,7 @@ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", "dev": true, + "license": "MIT", "dependencies": { "hasown": "^2.0.0" }, @@ -2056,6 +2228,7 @@ "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -2066,6 +2239,7 @@ "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", "dev": true, + "license": "MIT", "dependencies": { "is-alphabetical": "^1.0.0", "is-decimal": "^1.0.0" @@ -2080,6 +2254,7 @@ "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -2096,6 +2271,7 @@ "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.2.1" @@ -2111,13 +2287,15 @@ "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/is-bigint": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dev": true, + "license": "MIT", "dependencies": { "has-bigints": "^1.0.1" }, @@ -2130,6 +2308,7 @@ "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -2145,13 +2324,15 @@ "version": "1.1.6", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/is-callable": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -2160,12 +2341,16 @@ } }, "node_modules/is-core-module": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", "dev": true, + "license": "MIT", "dependencies": { - "hasown": "^2.0.0" + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -2176,6 +2361,7 @@ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", "dev": true, + "license": "MIT", "dependencies": { "hasown": "^2.0.0" }, @@ -2188,6 +2374,7 @@ "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", "dev": true, + "license": "MIT", "dependencies": { "is-typed-array": "^1.1.13" }, @@ -2203,6 +2390,7 @@ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "dev": true, + "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -2218,6 +2406,7 @@ "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -2228,6 +2417,7 @@ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", "dev": true, + "license": "MIT", "dependencies": { "is-accessor-descriptor": "^1.0.1", "is-data-descriptor": "^1.0.1" @@ -2241,6 +2431,7 @@ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "dev": true, + "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4" }, @@ -2253,6 +2444,7 @@ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -2262,6 +2454,7 @@ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -2271,6 +2464,7 @@ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, + "license": "MIT", "dependencies": { "is-extglob": "^2.1.1" }, @@ -2283,6 +2477,7 @@ "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -2293,6 +2488,7 @@ "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -2305,6 +2501,7 @@ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.12.0" } @@ -2314,6 +2511,7 @@ "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dev": true, + "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -2329,6 +2527,7 @@ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -2338,6 +2537,7 @@ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, + "license": "MIT", "dependencies": { "isobject": "^3.0.1" }, @@ -2350,6 +2550,7 @@ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -2366,6 +2567,7 @@ "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -2375,6 +2577,7 @@ "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7" }, @@ -2390,6 +2593,7 @@ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dev": true, + "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -2405,6 +2609,7 @@ "resolved": "https://registry.npmjs.org/is-supported-regexp-flag/-/is-supported-regexp-flag-1.0.1.tgz", "integrity": "sha512-3vcJecUUrpgCqc/ca0aWeNu64UGgxcvO60K/Fkr1N6RSvfGCTU60UKN68JDmKokgba0rFFJs12EnzOQa14ubKQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -2414,6 +2619,7 @@ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dev": true, + "license": "MIT", "dependencies": { "has-symbols": "^1.0.2" }, @@ -2429,6 +2635,7 @@ "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", "dev": true, + "license": "MIT", "dependencies": { "which-typed-array": "^1.1.14" }, @@ -2443,13 +2650,15 @@ "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/is-weakref": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2" }, @@ -2461,34 +2670,35 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/jackspeak": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", - "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { "@isaacs/cliui": "^8.0.2" }, - "engines": { - "node": ">=14" - }, "funding": { "url": "https://github.com/sponsors/isaacs" }, @@ -2500,13 +2710,15 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/japanese-numerals-to-number/-/japanese-numerals-to-number-1.0.2.tgz", "integrity": "sha512-rgs/V7G8Gfy8Z4XtnVBYXzWMAb9oUWp1pDdRmwHmh0hcjcy1kOu+DOpC5rwoHUAN4TqANwb7WD6z5W2v7v7PQQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/js-yaml": { "version": "3.14.1", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, + "license": "MIT", "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" @@ -2519,19 +2731,22 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/json-schema-traverse": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/json5": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, + "license": "MIT", "bin": { "json5": "lib/cli.js" }, @@ -2540,31 +2755,45 @@ } }, "node_modules/jsonc-parser": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.1.tgz", - "integrity": "sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==", - "dev": true + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz", + "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==", + "dev": true, + "license": "MIT" }, "node_modules/jsonfile": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", "dev": true, + "license": "MIT", "optionalDependencies": { "graceful-fs": "^4.1.6" } }, + "node_modules/jsonpointer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", + "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/kansuji": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/kansuji/-/kansuji-1.1.0.tgz", "integrity": "sha512-zw+QQSoH/nLvm5yJVPUY6kCP9lDSfVxO8poib8lOwruHqxOUZgKzMEdog1/PAen4G8ppoMulffzeVfCGgHgyhw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/kuromoji": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/kuromoji/-/kuromoji-0.1.2.tgz", "integrity": "sha512-V0dUf+C2LpcPEXhoHLMAop/bOht16Dyr+mDiIE39yX3vqau7p80De/koFqpiTcL1zzdZlc3xuHZ8u5gjYRfFaQ==", "dev": true, + "license": "Apache-2.0", "dependencies": { "async": "^2.0.1", "doublearray": "0.0.2", @@ -2576,6 +2805,7 @@ "resolved": "https://registry.npmjs.org/kuromojin/-/kuromojin-3.0.0.tgz", "integrity": "sha512-3h3qnn/NVVhqoKFP4oc7e6apO2B01Atc056oiVlIY7Uoup4rhrnBe28g3y9lK1HTmLDQEejvXB+3I3qxAneF7A==", "dev": true, + "license": "MIT", "dependencies": { "kuromoji": "0.1.2", "lru_map": "^0.4.1" @@ -2586,6 +2816,7 @@ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, + "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" @@ -2599,6 +2830,7 @@ "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz", "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==", "dev": true, + "license": "MIT", "dependencies": { "uc.micro": "^2.0.0" } @@ -2608,6 +2840,7 @@ "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", "dev": true, + "license": "MIT", "dependencies": { "graceful-fs": "^4.1.2", "parse-json": "^2.2.0", @@ -2624,6 +2857,7 @@ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", "dev": true, + "license": "MIT", "dependencies": { "p-locate": "^2.0.0", "path-exists": "^3.0.0" @@ -2636,37 +2870,43 @@ "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.sortby": { "version": "4.7.0", "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.truncate": { "version": "4.4.2", "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.uniq": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.uniqwith": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.uniqwith/-/lodash.uniqwith-4.5.0.tgz", "integrity": "sha512-7lYL8bLopMoy4CTICbxygAUq6CdRJ36vFc80DucPueUee+d5NBRxz3FdT9Pes/HEx5mPoT9jwnsEJWz1N7uq7Q==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/longest-streak": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz", "integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -2676,22 +2916,22 @@ "version": "0.4.1", "resolved": "https://registry.npmjs.org/lru_map/-/lru_map-0.4.1.tgz", "integrity": "sha512-I+lBvqMMFfqaV8CJCISjI3wbjmwVu/VyOoU7+qtu9d7ioW5klMgsTTiUOUp+DJvfTTzKXoPbyC6YfgkNcyPSOg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lru-cache": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", - "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", "dev": true, - "engines": { - "node": "14 || >=16.14" - } + "license": "ISC" }, "node_modules/map-age-cleaner": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", "dev": true, + "license": "MIT", "dependencies": { "p-defer": "^1.0.0" }, @@ -2703,20 +2943,22 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/map-like/-/map-like-2.0.0.tgz", "integrity": "sha512-CbgcN622YzXC+k9oUroBSPFVX4in/w66mab/zpvSfFeUezSGD8C13c2RetyM1eo1jkp3sKrzvmf2HFEp5QOdZA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/markdown-it": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.0.0.tgz", - "integrity": "sha512-seFjF0FIcPt4P9U39Bq1JYblX0KZCjDLFFQPHpL5AzHpqPEKtosxmdq/LTVZnjfH7tjt9BxStm+wXcDBNuYmzw==", + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz", + "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==", "dev": true, + "license": "MIT", "dependencies": { "argparse": "^2.0.1", "entities": "^4.4.0", "linkify-it": "^5.0.0", "mdurl": "^2.0.0", "punycode.js": "^2.3.1", - "uc.micro": "^2.0.0" + "uc.micro": "^2.1.0" }, "bin": { "markdown-it": "bin/markdown-it.mjs" @@ -2726,13 +2968,15 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true + "dev": true, + "license": "Python-2.0" }, "node_modules/markdown-table": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-2.0.0.tgz", "integrity": "sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==", "dev": true, + "license": "MIT", "dependencies": { "repeat-string": "^1.0.0" }, @@ -2742,13 +2986,14 @@ } }, "node_modules/markdownlint": { - "version": "0.33.0", - "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.33.0.tgz", - "integrity": "sha512-4lbtT14A3m0LPX1WS/3d1m7Blg+ZwiLq36WvjQqFGsX3Gik99NV+VXp/PW3n+Q62xyPdbvGOCfjPqjW+/SKMig==", + "version": "0.35.0", + "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.35.0.tgz", + "integrity": "sha512-wgp8yesWjFBL7bycA3hxwHRdsZGJhjhyP1dSxKVKrza0EPFYtn+mHtkVy6dvP1kGSjovyG5B8yNP6Frj0UFUJg==", "dev": true, + "license": "MIT", "dependencies": { - "markdown-it": "14.0.0", - "markdownlint-micromark": "0.1.8" + "markdown-it": "14.1.0", + "markdownlint-micromark": "0.1.10" }, "engines": { "node": ">=18" @@ -2758,20 +3003,23 @@ } }, "node_modules/markdownlint-cli": { - "version": "0.39.0", - "resolved": "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.39.0.tgz", - "integrity": "sha512-ZuFN7Xpsbn1Nbp0YYkeLOfXOMOfLQBik2lKRy8pVI/llmKQ2uW7x+8k5OMgF6o7XCsTDSYC/OOmeJ+3qplvnJQ==", + "version": "0.42.0", + "resolved": "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.42.0.tgz", + "integrity": "sha512-AjkzhhZa3TmEGi/CE2Wpmny69x1IrzqK2gPB0k8SmNMRgnSAJfyEO5FgZdWTHtJ6Nrdv5FWt5c4C5pkG6Dk30A==", "dev": true, + "license": "MIT", "dependencies": { - "commander": "~11.1.0", + "commander": "~12.1.0", "get-stdin": "~9.0.0", - "glob": "~10.3.10", - "ignore": "~5.3.0", + "glob": "~11.0.0", + "ignore": "~6.0.2", "js-yaml": "^4.1.0", - "jsonc-parser": "~3.2.1", - "markdownlint": "~0.33.0", - "minimatch": "~9.0.3", - "run-con": "~1.3.2" + "jsonc-parser": "~3.3.1", + "jsonpointer": "5.0.1", + "markdownlint": "~0.35.0", + "minimatch": "~10.0.1", + "run-con": "~1.3.2", + "smol-toml": "~1.3.0" }, "bin": { "markdownlint": "markdownlint.js" @@ -2784,34 +3032,64 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true + "dev": true, + "license": "Python-2.0" }, "node_modules/markdownlint-cli/node_modules/brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" } }, "node_modules/markdownlint-cli/node_modules/glob": { - "version": "10.3.12", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz", - "integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==", + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.0.tgz", + "integrity": "sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==", "dev": true, + "license": "ISC", "dependencies": { "foreground-child": "^3.1.0", - "jackspeak": "^2.3.6", - "minimatch": "^9.0.1", - "minipass": "^7.0.4", - "path-scurry": "^1.10.2" + "jackspeak": "^4.0.1", + "minimatch": "^10.0.0", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^2.0.0" }, "bin": { "glob": "dist/esm/bin.mjs" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/markdownlint-cli/node_modules/ignore": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-6.0.2.tgz", + "integrity": "sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/markdownlint-cli/node_modules/jackspeak": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.2.tgz", + "integrity": "sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": "20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" @@ -2822,6 +3100,7 @@ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, + "license": "MIT", "dependencies": { "argparse": "^2.0.1" }, @@ -2829,38 +3108,68 @@ "js-yaml": "bin/js-yaml.js" } }, + "node_modules/markdownlint-cli/node_modules/lru-cache": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.0.1.tgz", + "integrity": "sha512-CgeuL5uom6j/ZVrg7G/+1IXqRY8JXX4Hghfy5YE0EhoYQWvndP1kufu58cmZLNIDKnRhZrXfdS9urVWx98AipQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": "20 || >=22" + } + }, "node_modules/markdownlint-cli/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", + "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", "dev": true, + "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": "20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/markdownlint-micromark": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/markdownlint-micromark/-/markdownlint-micromark-0.1.8.tgz", - "integrity": "sha512-1ouYkMRo9/6gou9gObuMDnvZM8jC/ly3QCFQyoSPCS2XV1ZClU0xpKbL1Ar3bWWRT1RnBZkWUEiNKrI2CwiBQA==", + "node_modules/markdownlint-cli/node_modules/path-scurry": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz", + "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==", "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^11.0.0", + "minipass": "^7.1.2" + }, "engines": { - "node": ">=16" + "node": "20 || >=22" }, "funding": { - "url": "https://github.com/sponsors/DavidAnson" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/match-index": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/match-index/-/match-index-1.0.3.tgz", - "integrity": "sha512-1XjyBWqCvEFFUDW/MPv0RwbITRD4xQXOvKoPYtLDq8IdZTfdF/cQSo5Yn4qvhfSSZgjgkTFsqJD2wOUG4ovV8Q==", + "node_modules/markdownlint-micromark": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/markdownlint-micromark/-/markdownlint-micromark-0.1.10.tgz", + "integrity": "sha512-no5ZfdqAdWGxftCLlySHSgddEjyW4kui4z7amQcGsSKfYC5v/ou+8mIQVyg9KQMeEZLNtz9OPDTj7nnTnoR4FQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/DavidAnson" + } + }, + "node_modules/match-index": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/match-index/-/match-index-1.0.3.tgz", + "integrity": "sha512-1XjyBWqCvEFFUDW/MPv0RwbITRD4xQXOvKoPYtLDq8IdZTfdF/cQSo5Yn4qvhfSSZgjgkTFsqJD2wOUG4ovV8Q==", "dev": true, + "license": "MIT", "dependencies": { "regexp.prototype.flags": "^1.1.1" } @@ -2870,6 +3179,7 @@ "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "charenc": "0.0.2", "crypt": "0.0.2", @@ -2881,6 +3191,7 @@ "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-1.1.1.tgz", "integrity": "sha512-9cKl33Y21lyckGzpSmEQnIDjEfeeWelN5s1kUW1LwdB0Fkuq2u+4GdqcGEygYxJE8GVqCl0741bYXHgamfWAZA==", "dev": true, + "license": "MIT", "dependencies": { "escape-string-regexp": "^4.0.0", "unist-util-is": "^4.0.0", @@ -2896,6 +3207,7 @@ "resolved": "https://registry.npmjs.org/mdast-util-footnote/-/mdast-util-footnote-0.1.7.tgz", "integrity": "sha512-QxNdO8qSxqbO2e3m09KwDKfWiLgqyCurdWTQ198NpbZ2hxntdc+VKS4fDJCmNWbAroUdYnSthu+XbZ8ovh8C3w==", "dev": true, + "license": "MIT", "dependencies": { "mdast-util-to-markdown": "^0.6.0", "micromark": "~2.11.0" @@ -2910,6 +3222,7 @@ "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz", "integrity": "sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==", "dev": true, + "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", "mdast-util-to-string": "^2.0.0", @@ -2927,6 +3240,7 @@ "resolved": "https://registry.npmjs.org/mdast-util-frontmatter/-/mdast-util-frontmatter-0.2.0.tgz", "integrity": "sha512-FHKL4w4S5fdt1KjJCwB0178WJ0evnyyQr5kXTM3wrOVpytD0hrkvd+AOOjU9Td8onOejCkmZ+HQRT3CZ3coHHQ==", "dev": true, + "license": "MIT", "dependencies": { "micromark-extension-frontmatter": "^0.2.0" }, @@ -2940,6 +3254,7 @@ "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-0.1.2.tgz", "integrity": "sha512-NNkhDx/qYcuOWB7xHUGWZYVXvjPFFd6afg6/e2g+SV4r9q5XUcCbV4Wfa3DLYIiD+xAEZc6K4MGaE/m0KDcPwQ==", "dev": true, + "license": "MIT", "dependencies": { "mdast-util-gfm-autolink-literal": "^0.1.0", "mdast-util-gfm-strikethrough": "^0.2.0", @@ -2957,6 +3272,7 @@ "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-0.1.3.tgz", "integrity": "sha512-GjmLjWrXg1wqMIO9+ZsRik/s7PLwTaeCHVB7vRxUwLntZc8mzmTsLVr6HW1yLokcnhfURsn5zmSVdi3/xWWu1A==", "dev": true, + "license": "MIT", "dependencies": { "ccount": "^1.0.0", "mdast-util-find-and-replace": "^1.1.0", @@ -2972,6 +3288,7 @@ "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-0.2.3.tgz", "integrity": "sha512-5OQLXpt6qdbttcDG/UxYY7Yjj3e8P7X16LzvpX8pIQPYJ/C2Z1qFGMmcw+1PZMUM3Z8wt8NRfYTvCni93mgsgA==", "dev": true, + "license": "MIT", "dependencies": { "mdast-util-to-markdown": "^0.6.0" }, @@ -2985,6 +3302,7 @@ "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-0.1.6.tgz", "integrity": "sha512-j4yDxQ66AJSBwGkbpFEp9uG/LS1tZV3P33fN1gkyRB2LoRL+RR3f76m0HPHaby6F4Z5xr9Fv1URmATlRRUIpRQ==", "dev": true, + "license": "MIT", "dependencies": { "markdown-table": "^2.0.0", "mdast-util-to-markdown": "~0.6.0" @@ -2999,6 +3317,7 @@ "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-0.1.6.tgz", "integrity": "sha512-/d51FFIfPsSmCIRNp7E6pozM9z1GYPIkSy1urQ8s/o4TC22BZ7DqfHFWiqBD23bc7J3vV1Fc9O4QIHBlfuit8A==", "dev": true, + "license": "MIT", "dependencies": { "mdast-util-to-markdown": "~0.6.0" }, @@ -3012,6 +3331,7 @@ "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz", "integrity": "sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==", "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "longest-streak": "^2.0.0", @@ -3030,6 +3350,7 @@ "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz", "integrity": "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==", "dev": true, + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -3039,13 +3360,15 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz", "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/mem": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", "dev": true, + "license": "MIT", "dependencies": { "map-age-cleaner": "^0.1.1", "mimic-fn": "^2.0.0", @@ -3060,6 +3383,7 @@ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 8" } @@ -3079,6 +3403,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "debug": "^4.0.0", "parse-entities": "^2.0.0" @@ -3089,6 +3414,7 @@ "resolved": "https://registry.npmjs.org/micromark-extension-footnote/-/micromark-extension-footnote-0.3.2.tgz", "integrity": "sha512-gr/BeIxbIWQoUm02cIfK7mdMZ/fbroRpLsck4kvFtjbzP4yi+OPVbnukTc/zy0i7spC2xYE/dbX1Sur8BEDJsQ==", "dev": true, + "license": "MIT", "dependencies": { "micromark": "~2.11.0" }, @@ -3102,6 +3428,7 @@ "resolved": "https://registry.npmjs.org/micromark-extension-frontmatter/-/micromark-extension-frontmatter-0.2.2.tgz", "integrity": "sha512-q6nPLFCMTLtfsctAuS0Xh4vaolxSFUWUWR6PZSrXXiRy+SANGllpcqdXFv2z07l0Xz/6Hl40hK0ffNCJPH2n1A==", "dev": true, + "license": "MIT", "dependencies": { "fault": "^1.0.0" }, @@ -3115,6 +3442,7 @@ "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-0.3.3.tgz", "integrity": "sha512-oVN4zv5/tAIA+l3GbMi7lWeYpJ14oQyJ3uEim20ktYFAcfX1x3LNlFGGlmrZHt7u9YlKExmyJdDGaTt6cMSR/A==", "dev": true, + "license": "MIT", "dependencies": { "micromark": "~2.11.0", "micromark-extension-gfm-autolink-literal": "~0.5.0", @@ -3133,6 +3461,7 @@ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-0.5.7.tgz", "integrity": "sha512-ePiDGH0/lhcngCe8FtH4ARFoxKTUelMp4L7Gg2pujYD5CSMb9PbblnyL+AAMud/SNMyusbS2XDSiPIRcQoNFAw==", "dev": true, + "license": "MIT", "dependencies": { "micromark": "~2.11.3" }, @@ -3146,6 +3475,7 @@ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-0.6.5.tgz", "integrity": "sha512-PpOKlgokpQRwUesRwWEp+fHjGGkZEejj83k9gU5iXCbDG+XBA92BqnRKYJdfqfkrRcZRgGuPuXb7DaK/DmxOhw==", "dev": true, + "license": "MIT", "dependencies": { "micromark": "~2.11.0" }, @@ -3159,6 +3489,7 @@ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-0.4.3.tgz", "integrity": "sha512-hVGvESPq0fk6ALWtomcwmgLvH8ZSVpcPjzi0AjPclB9FsVRgMtGZkUcpE0zgjOCFAznKepF4z3hX8z6e3HODdA==", "dev": true, + "license": "MIT", "dependencies": { "micromark": "~2.11.0" }, @@ -3172,6 +3503,7 @@ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-0.3.0.tgz", "integrity": "sha512-9GU0xBatryXifL//FJH+tAZ6i240xQuFrSL7mYi8f4oZSbc+NvXjkrHemeYP0+L4ZUT+Ptz3b95zhUZnMtoi/Q==", "dev": true, + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -3182,6 +3514,7 @@ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-0.3.3.tgz", "integrity": "sha512-0zvM5iSLKrc/NQl84pZSjGo66aTGd57C1idmlWmE87lkMcXrTxg1uXa/nXomxJytoje9trP0NDLvw4bZ/Z/XCQ==", "dev": true, + "license": "MIT", "dependencies": { "micromark": "~2.11.0" }, @@ -3191,12 +3524,13 @@ } }, "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, + "license": "MIT", "dependencies": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" }, "engines": { @@ -3208,6 +3542,7 @@ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -3217,6 +3552,7 @@ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, + "license": "ISC", "dependencies": { "brace-expansion": "^1.1.7" }, @@ -3229,15 +3565,17 @@ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/minipass": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", - "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "dev": true, + "license": "ISC", "engines": { "node": ">=16 || 14 >=14.17" } @@ -3247,6 +3585,7 @@ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "dev": true, + "license": "MIT", "bin": { "mkdirp": "bin/cmd.js" }, @@ -3259,6 +3598,7 @@ "resolved": "https://registry.npmjs.org/moji/-/moji-0.5.1.tgz", "integrity": "sha512-xYylXOjBS9mE/d690InK3Y74NpE0El0TmAKDmKJveWk9jds/0Tl7MQP4yhavS0U64diEq+5ey2905nhCpIHE+Q==", "dev": true, + "license": "MIT", "dependencies": { "object-assign": "^3.0.0" } @@ -3267,13 +3607,15 @@ "version": "2.0.4", "resolved": "https://registry.npmjs.org/morpheme-match/-/morpheme-match-2.0.4.tgz", "integrity": "sha512-C3U5g2h47dpztGVePLA8w2O1aQEvuJORwIcahWaCG91YPrq+0u7qcPsF9Nqqe8noFvHwgO7b2EEk3iPnYuGTew==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/morpheme-match-all": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/morpheme-match-all/-/morpheme-match-all-2.0.5.tgz", "integrity": "sha512-a6B6Nh4AhjMoEzVz8NOT5M9f3XwFVPM395gqnFNUXG/KTqQFTb9qM5JJFHJe+SvWfRVXTZSejyXNt+h+jmHUuQ==", "dev": true, + "license": "MIT", "dependencies": { "morpheme-match": "^2.0.4" } @@ -3283,22 +3625,35 @@ "resolved": "https://registry.npmjs.org/morpheme-match-textlint/-/morpheme-match-textlint-2.0.6.tgz", "integrity": "sha512-CX+iQaUjjPMLvas+hZ8zg6Csxx5j1RLaytr+5w6lpBi/oTEV2pv6sgW5Vu3+pNJHbYcaqcuofQZsKocMNUNH8g==", "dev": true, + "license": "MIT", "dependencies": { "morpheme-match": "^2.0.4", "morpheme-match-all": "^2.0.5" } }, "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/neotraverse": { + "version": "0.6.18", + "resolved": "https://registry.npmjs.org/neotraverse/-/neotraverse-0.6.18.tgz", + "integrity": "sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + } }, "node_modules/nlcst-parse-japanese": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/nlcst-parse-japanese/-/nlcst-parse-japanese-1.4.0.tgz", "integrity": "sha512-92YsW4AO9iqSKKLgKPrbfRrvR4XtYuZNaErSP+jq0mpWCu4uLMn8tJFLMM6H/+3SWiV2WBSnv5BY2lFhxCqFSg==", "dev": true, + "license": "MIT", "dependencies": { "kuromojin": "^1.4.0", "nlcst-types": "^1.4.0", @@ -3310,6 +3665,7 @@ "resolved": "https://registry.npmjs.org/kuromoji/-/kuromoji-0.1.1.tgz", "integrity": "sha512-B7ctEuhoYzRDbgsRn/3NQVee/Q4WRFVuCxkYtnQLl+t/5tw2f7JL0GQH/CQQ3gqlaEvBJgfnGNA6st09wmqkRA==", "dev": true, + "license": "Apache-2.0", "dependencies": { "async": "^2.0.1", "doublearray": "0.0.2", @@ -3321,6 +3677,7 @@ "resolved": "https://registry.npmjs.org/kuromojin/-/kuromojin-1.5.1.tgz", "integrity": "sha512-tzt3UUqWqzwHMsahchyrcs9kgbn6OM7xP4QRCd0w5vqE0lA/cjCH0OxjLaekz5cnxGmcy8RfN7La3xOxZOvJ1w==", "dev": true, + "license": "MIT", "dependencies": { "kuromoji": "0.1.1" } @@ -3339,6 +3696,7 @@ "resolved": "https://registry.npmjs.org/nlcst-pattern-match/-/nlcst-pattern-match-1.4.0.tgz", "integrity": "sha512-hHxjmB5CRNep8g5sGadT0+AZGdk47N52UttZztX+gUNu+JTzPLS7RaR0aFe59jpg8jNjlIR/1TPQuZU40JFY5g==", "dev": true, + "license": "MIT", "dependencies": { "@types/debug": "^0.0.30", "debug": "^3.1.0", @@ -3353,6 +3711,7 @@ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, + "license": "MIT", "dependencies": { "ms": "^2.1.1" } @@ -3362,6 +3721,7 @@ "resolved": "https://registry.npmjs.org/nlcst-to-string/-/nlcst-to-string-2.0.4.tgz", "integrity": "sha512-3x3jwTd6UPG7vi5k4GEzvxJ5rDA7hVUIRNHPblKuMVP9Z3xmlsd9cgLcpAMkc5uPOBna82EeshROFhsPkbnTZg==", "dev": true, + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -3372,6 +3732,7 @@ "resolved": "https://registry.npmjs.org/nlcst-types/-/nlcst-types-1.4.0.tgz", "integrity": "sha512-zVKrIbX9LojI8AwYwiVv9QBS8ulReh32pnGABrqXpFKCm0vbVx9Zzn1bsrs7ebuUR0iuihkif48EM+gfsMCx5g==", "dev": true, + "license": "MIT", "dependencies": { "unist-types": "^1.4.0" } @@ -3381,6 +3742,7 @@ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.13.tgz", "integrity": "sha512-StxNAxh15zr77QvvkmveSQ8uCQ4+v5FkvNTj0OESmiHu+VRi/gXArXtkWMElOsOUNLtUEvI4yS+rdtOHZTwlQA==", "dev": true, + "license": "MIT", "dependencies": { "whatwg-url": "^5.0.0" }, @@ -3401,6 +3763,7 @@ "resolved": "https://registry.npmjs.org/node-localstorage/-/node-localstorage-2.2.1.tgz", "integrity": "sha512-vv8fJuOUCCvSPjDjBLlMqYMHob4aGjkmrkaE42/mZr0VT+ZAU10jRF8oTnX9+pgU9/vYJ8P7YT3Vd6ajkmzSCw==", "dev": true, + "license": "MIT", "dependencies": { "write-file-atomic": "^1.1.4" }, @@ -3413,6 +3776,7 @@ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", @@ -3425,15 +3789,20 @@ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", "integrity": "sha512-jHP15vXVGeVh1HuaA2wY6lxk+whK/x4KBG88VXeRma7CCun7iGD5qPc4eYykQ9sdQvg8jkwFKsSxHln2ybW3xQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -3443,6 +3812,7 @@ "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1" @@ -3459,6 +3829,7 @@ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" } @@ -3468,6 +3839,7 @@ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.5", "define-properties": "^1.2.1", @@ -3486,22 +3858,24 @@ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, + "license": "ISC", "dependencies": { "wrappy": "1" } }, "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, + "license": "MIT", "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" }, "engines": { "node": ">= 0.8.0" @@ -3512,6 +3886,7 @@ "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", "integrity": "sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -3521,6 +3896,7 @@ "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -3530,6 +3906,7 @@ "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -3539,6 +3916,7 @@ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", "dev": true, + "license": "MIT", "dependencies": { "p-try": "^1.0.0" }, @@ -3551,6 +3929,7 @@ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", "dev": true, + "license": "MIT", "dependencies": { "p-limit": "^1.1.0" }, @@ -3563,6 +3942,7 @@ "resolved": "https://registry.npmjs.org/p-memoize/-/p-memoize-3.1.0.tgz", "integrity": "sha512-e5tIvrsr7ydUUnxb534iQWtXxWgk/86IsH+H+nV4FHouIggBt4coXboKBt26o4lTu7JbEnGSeXdEsYR8BhAHFA==", "dev": true, + "license": "MIT", "dependencies": { "mem": "^4.3.0", "mimic-fn": "^2.1.0" @@ -3576,6 +3956,7 @@ "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz", "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==", "dev": true, + "license": "MIT", "dependencies": { "eventemitter3": "^4.0.4", "p-timeout": "^3.2.0" @@ -3592,6 +3973,7 @@ "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", "dev": true, + "license": "MIT", "dependencies": { "p-finally": "^1.0.0" }, @@ -3604,15 +3986,24 @@ "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } }, + "node_modules/package-json-from-dist": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", + "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", + "dev": true, + "license": "BlueOak-1.0.0" + }, "node_modules/parse-entities": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", "dev": true, + "license": "MIT", "dependencies": { "character-entities": "^1.0.0", "character-entities-legacy": "^1.0.0", @@ -3631,6 +4022,7 @@ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", "dev": true, + "license": "MIT", "dependencies": { "error-ex": "^1.2.0" }, @@ -3642,13 +4034,15 @@ "version": "5.1.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz", "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/path-exists": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -3658,6 +4052,7 @@ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -3667,6 +4062,7 @@ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -3675,19 +4071,21 @@ "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/path-scurry": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.2.tgz", - "integrity": "sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=16 || 14 >=14.18" }, "funding": { "url": "https://github.com/sponsors/isaacs" @@ -3697,13 +4095,15 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/path-to-glob-pattern/-/path-to-glob-pattern-2.0.1.tgz", "integrity": "sha512-tmciSlVyHnX0LC86+zSr+0LURw9rDPw8ilhXcmTpVUOnI6OsKdCzXQs5fTG10Bjz26IBdnKL3XIaP+QvGsk5YQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -3713,6 +4113,7 @@ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, + "license": "MIT", "engines": { "node": ">=8.6" }, @@ -3725,6 +4126,7 @@ "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -3734,6 +4136,7 @@ "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -3743,6 +4146,7 @@ "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", "dev": true, + "license": "MIT", "dependencies": { "pinkie": "^2.0.0" }, @@ -3754,13 +4158,15 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-2.0.0.tgz", "integrity": "sha512-TqNZzQCD4S42De9IfnnBvILN7HAW7riLqsCyp8lgjXeysyPlX5HhqKAcJHHHb9XskE4/a+7VGC9zzx8Ls0jOAw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/possible-typed-array-names": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" } @@ -3770,6 +4176,7 @@ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8.0" } @@ -3779,6 +4186,7 @@ "resolved": "https://registry.npmjs.org/prh/-/prh-5.4.4.tgz", "integrity": "sha512-UATF+R/2H8owxwPvF12Knihu9aYGTuZttGHrEEq5NBWz38mREh23+WvCVKX3fhnIZIMV7ye6E1fnqAl+V6WYEw==", "dev": true, + "license": "MIT", "dependencies": { "commandpost": "^1.2.1", "diff": "^4.0.1", @@ -3793,6 +4201,7 @@ "resolved": "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz", "integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==", "dev": true, + "license": "MIT", "dependencies": { "xtend": "^4.0.0" }, @@ -3801,20 +4210,12 @@ "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/punycode.js": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz", "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -3837,13 +4238,15 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "node_modules/rc-config-loader": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-4.1.3.tgz", "integrity": "sha512-kD7FqML7l800i6pS6pvLyIE2ncbk9Du8Q0gp/4hMPhJU6ZxApkoLcGD8ZeqgiAlfwZ6BlETq6qqe+12DUL207w==", "dev": true, + "license": "MIT", "dependencies": { "debug": "^4.3.4", "js-yaml": "^4.1.0", @@ -3855,13 +4258,15 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true + "dev": true, + "license": "Python-2.0" }, "node_modules/rc-config-loader/node_modules/js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, + "license": "MIT", "dependencies": { "argparse": "^2.0.1" }, @@ -3874,6 +4279,7 @@ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", "dev": true, + "license": "MIT", "dependencies": { "load-json-file": "^1.0.0", "normalize-package-data": "^2.3.2", @@ -3888,6 +4294,7 @@ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz", "integrity": "sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==", "dev": true, + "license": "MIT", "dependencies": { "find-up": "^2.0.0", "read-pkg": "^3.0.0" @@ -3901,6 +4308,7 @@ "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", "dev": true, + "license": "MIT", "dependencies": { "graceful-fs": "^4.1.2", "parse-json": "^4.0.0", @@ -3916,6 +4324,7 @@ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", "dev": true, + "license": "MIT", "dependencies": { "error-ex": "^1.3.1", "json-parse-better-errors": "^1.0.1" @@ -3929,6 +4338,7 @@ "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", "dev": true, + "license": "MIT", "dependencies": { "pify": "^3.0.0" }, @@ -3941,6 +4351,7 @@ "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -3950,6 +4361,7 @@ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", "dev": true, + "license": "MIT", "dependencies": { "load-json-file": "^4.0.0", "normalize-package-data": "^2.3.2", @@ -3964,6 +4376,7 @@ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -3973,6 +4386,7 @@ "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", "dev": true, + "license": "MIT", "dependencies": { "graceful-fs": "^4.1.2", "pify": "^2.0.0", @@ -3987,6 +4401,7 @@ "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", "dev": true, + "license": "MIT", "dependencies": { "extend-shallow": "^3.0.2", "safe-regex": "^1.1.0" @@ -4000,6 +4415,7 @@ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.6", "define-properties": "^1.2.1", @@ -4017,13 +4433,15 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/regx/-/regx-1.0.4.tgz", "integrity": "sha512-Z/5ochRUyD5TkJgFq+66ajKePlj6KzpSLfDO2lOLOLu7E82xAjNux0m8mx1DAXBj5ECHiRCBWoqL25b4lkwcgw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/rehype-parse": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/rehype-parse/-/rehype-parse-6.0.2.tgz", "integrity": "sha512-0S3CpvpTAgGmnz8kiCyFLGuW5yA4OQhyNTm/nwPopZ7+PI11WnGl1TTWTGv/2hPEe/g2jRLlhVVSsoDH8waRug==", "dev": true, + "license": "MIT", "dependencies": { "hast-util-from-parse5": "^5.0.0", "parse5": "^5.0.0", @@ -4039,6 +4457,7 @@ "resolved": "https://registry.npmjs.org/remark-footnotes/-/remark-footnotes-3.0.0.tgz", "integrity": "sha512-ZssAvH9FjGYlJ/PBVKdSmfyPc3Cz4rTWgZLI4iE/SX8Nt5l3o3oEjv3wwG5VD7xOjktzdwp5coac+kJV9l4jgg==", "dev": true, + "license": "MIT", "dependencies": { "mdast-util-footnote": "^0.1.0", "micromark-extension-footnote": "^0.3.0" @@ -4053,6 +4472,7 @@ "resolved": "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-3.0.0.tgz", "integrity": "sha512-mSuDd3svCHs+2PyO29h7iijIZx4plX0fheacJcAoYAASfgzgVIcXGYSq9GFyYocFLftQs8IOmmkgtOovs6d4oA==", "dev": true, + "license": "MIT", "dependencies": { "mdast-util-frontmatter": "^0.2.0", "micromark-extension-frontmatter": "^0.2.0" @@ -4067,6 +4487,7 @@ "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-1.0.0.tgz", "integrity": "sha512-KfexHJCiqvrdBZVbQ6RopMZGwaXz6wFJEfByIuEwGf0arvITHjiKKZ1dpXujjH9KZdm1//XJQwgfnJ3lmXaDPA==", "dev": true, + "license": "MIT", "dependencies": { "mdast-util-gfm": "^0.1.0", "micromark-extension-gfm": "^0.3.0" @@ -4081,6 +4502,7 @@ "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-9.0.0.tgz", "integrity": "sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw==", "dev": true, + "license": "MIT", "dependencies": { "mdast-util-from-markdown": "^0.8.0" }, @@ -4094,6 +4516,7 @@ "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10" } @@ -4103,6 +4526,7 @@ "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -4112,6 +4536,7 @@ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", "dev": true, + "license": "MIT", "dependencies": { "is-core-module": "^2.13.0", "path-parse": "^1.0.7", @@ -4129,6 +4554,7 @@ "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.12" } @@ -4138,6 +4564,7 @@ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true, + "license": "MIT", "engines": { "iojs": ">=1.0.0", "node": ">=0.10.0" @@ -4147,7 +4574,9 @@ "version": "2.6.3", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, + "license": "ISC", "dependencies": { "glob": "^7.1.3" }, @@ -4160,6 +4589,7 @@ "resolved": "https://registry.npmjs.org/run-con/-/run-con-1.3.2.tgz", "integrity": "sha512-CcfE+mYiTcKEzg0IqS08+efdnH0oJ3zV0wSUFBNrMHMuxCtXvBCLzCJHatwuXDcu/RlhjTziTo/a1ruQik6/Yg==", "dev": true, + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", "dependencies": { "deep-extend": "^0.6.0", "ini": "~4.1.0", @@ -4189,6 +4619,7 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "dependencies": { "queue-microtask": "^1.2.2" } @@ -4198,6 +4629,7 @@ "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "get-intrinsic": "^1.2.4", @@ -4216,6 +4648,7 @@ "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", "dev": true, + "license": "MIT", "dependencies": { "ret": "~0.1.10" } @@ -4225,6 +4658,7 @@ "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.6", "es-errors": "^1.3.0", @@ -4242,6 +4676,7 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver" } @@ -4251,6 +4686,7 @@ "resolved": "https://registry.npmjs.org/sentence-splitter/-/sentence-splitter-5.0.0.tgz", "integrity": "sha512-9Mvf7L8vwpPzkH0/HtXzCbmVkyj4aQXdeG7h8ighRvO0hvcZEy2OUEjeIlnM/z4EX4vBacEfpESC65Oa2rWOig==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/ast-node-types": "^13.4.1", "structured-source": "^4.0.0" @@ -4260,19 +4696,22 @@ "version": "13.4.1", "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz", "integrity": "sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/sentence-splitter/node_modules/boundary": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/boundary/-/boundary-2.0.0.tgz", "integrity": "sha512-rJKn5ooC9u8q13IMCrW0RSp31pxBCHE3y9V/tp3TdWSLf8Em3p6Di4NBpfzbJge9YjjFEsD0RtFEjtvHL5VyEA==", - "dev": true + "dev": true, + "license": "BSD-2-Clause" }, "node_modules/sentence-splitter/node_modules/structured-source": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/structured-source/-/structured-source-4.0.0.tgz", "integrity": "sha512-qGzRFNJDjFieQkl/sVOI2dUjHKRyL9dAJi2gCPGJLbJHBIkyOHxjuocpIEfbLioX+qSJpvbYdT49/YCdMznKxA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "boundary": "^2.0.0" } @@ -4282,6 +4721,7 @@ "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", "dev": true, + "license": "MIT", "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", @@ -4299,6 +4739,7 @@ "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", "dev": true, + "license": "MIT", "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", @@ -4314,6 +4755,7 @@ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, + "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" }, @@ -4326,6 +4768,7 @@ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -4335,6 +4778,7 @@ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", @@ -4353,6 +4797,7 @@ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, + "license": "ISC", "engines": { "node": ">=14" }, @@ -4365,6 +4810,7 @@ "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -4374,6 +4820,7 @@ "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", @@ -4391,15 +4838,30 @@ "resolved": "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz", "integrity": "sha512-NwrtjCg+lZoqhFU8fOwl4ay2ei8PaqCBOUV3/ektPY9trO1yQ1oXEfmHAhKArUVUr/hOHvy5f6AdP17dCM0zMw==", "dev": true, + "license": "ISC", "engines": { "node": "*" } }, + "node_modules/smol-toml": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/smol-toml/-/smol-toml-1.3.0.tgz", + "integrity": "sha512-tWpi2TsODPScmi48b/OQZGi2lgUmBCHy6SZrhi/FdnnHiU1GwebbCfuQuxsC3nHaLwtYeJGPrDZDIeodDOc4pA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">= 18" + }, + "funding": { + "url": "https://github.com/sponsors/cyyynthia" + } + }, "node_modules/space-separated-tokens": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -4410,6 +4872,7 @@ "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", "dev": true, + "license": "Apache-2.0", "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" @@ -4419,35 +4882,40 @@ "version": "2.5.0", "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", - "dev": true + "dev": true, + "license": "CC-BY-3.0" }, "node_modules/spdx-expression-parse": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, + "license": "MIT", "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, "node_modules/spdx-license-ids": { - "version": "3.0.17", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz", - "integrity": "sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==", - "dev": true + "version": "3.0.20", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz", + "integrity": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==", + "dev": true, + "license": "CC0-1.0" }, "node_modules/sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true + "dev": true, + "license": "BSD-3-Clause" }, "node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, + "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -4463,6 +4931,7 @@ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, + "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -4477,6 +4946,7 @@ "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -4495,6 +4965,7 @@ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -4509,6 +4980,7 @@ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -4526,6 +4998,7 @@ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, + "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, @@ -4539,6 +5012,7 @@ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, + "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, @@ -4551,6 +5025,7 @@ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", "dev": true, + "license": "MIT", "dependencies": { "is-utf8": "^0.2.0" }, @@ -4563,6 +5038,7 @@ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" }, @@ -4584,6 +5060,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -4596,6 +5073,7 @@ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -4608,6 +5086,7 @@ "resolved": "https://registry.npmjs.org/table/-/table-6.8.2.tgz", "integrity": "sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "ajv": "^8.0.1", "lodash.truncate": "^4.4.2", @@ -4623,30 +5102,32 @@ "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/textlint": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/textlint/-/textlint-14.0.4.tgz", - "integrity": "sha512-xPQkC/BftPjizjs31wci/791EjwfN11iRLrNKiPVBogYd1r+6TnSxbCERZhgXCGcD9tEHss0kOYc0+vPEEG8jg==", - "dev": true, - "dependencies": { - "@textlint/ast-node-types": "^14.0.4", - "@textlint/ast-traverse": "^14.0.4", - "@textlint/config-loader": "^14.0.4", - "@textlint/feature-flag": "^14.0.4", - "@textlint/fixer-formatter": "^14.0.4", - "@textlint/kernel": "^14.0.4", - "@textlint/linter-formatter": "^14.0.4", - "@textlint/module-interop": "^14.0.4", - "@textlint/textlint-plugin-markdown": "^14.0.4", - "@textlint/textlint-plugin-text": "^14.0.4", - "@textlint/types": "^14.0.4", - "@textlint/utils": "^14.0.4", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/textlint/-/textlint-14.2.0.tgz", + "integrity": "sha512-f3vT1mwpHuP2IWNG7AiE7n4nRKiOI/4Rxz7wQSv6KWaCgigcwi9x4JCMWKn1gpEvC/bssKW1/G0XxzHvKybCKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@textlint/ast-node-types": "^14.2.0", + "@textlint/ast-traverse": "^14.2.0", + "@textlint/config-loader": "^14.2.0", + "@textlint/feature-flag": "^14.2.0", + "@textlint/fixer-formatter": "^14.2.0", + "@textlint/kernel": "^14.2.0", + "@textlint/linter-formatter": "^14.2.0", + "@textlint/module-interop": "^14.2.0", + "@textlint/textlint-plugin-markdown": "^14.2.0", + "@textlint/textlint-plugin-text": "^14.2.0", + "@textlint/types": "^14.2.0", + "@textlint/utils": "^14.2.0", "debug": "^4.3.4", "file-entry-cache": "^5.0.1", "get-stdin": "^5.0.1", - "glob": "^7.2.3", + "glob": "^10.4.5", "md5": "^2.3.0", "mkdirp": "^0.5.6", "optionator": "^0.9.3", @@ -4670,6 +5151,7 @@ "resolved": "https://registry.npmjs.org/textlint-filter-rule-comments/-/textlint-filter-rule-comments-1.2.2.tgz", "integrity": "sha512-AtyxreCPb3Hq/bd6Qd6szY1OGgnW34LOjQXAHzE8NoXbTUudQqALPdRe+hvRsf81rnmGLxBiCUXZbnbpIseFyw==", "dev": true, + "license": "MIT", "peerDependencies": { "textlint": ">=6.8.0" } @@ -4679,6 +5161,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-abbr-within-parentheses/-/textlint-rule-abbr-within-parentheses-1.0.2.tgz", "integrity": "sha512-GcAtxXttLsZfN75tSCo3V8/RTlglvhnn7McNTgI0uS4ADr67RoD64bSVIs4p/nY3sMNsf1taPjKnhZIQLuVjZg==", "dev": true, + "license": "MIT", "dependencies": { "match-index": "^1.0.1" } @@ -4687,12 +5170,14 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/textlint-rule-footnote-order/-/textlint-rule-footnote-order-1.0.3.tgz", "integrity": "sha512-HH4AWGi05S88XJ0HTzihOpVPDV+BRpnqt/MXnVcQBHTc6wGxNgVoBWN19o43G3D8m3GYnoUAR8UF/IbAYbKolA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/textlint-rule-general-novel-style-ja": { "version": "1.3.0", "resolved": "git+ssh://git@github.com/dev-hato/textlint-rule-general-novel-style-ja-markdown.git#ff32d5297fa6162bef3307e4769234181354253b", "dev": true, + "license": "MIT", "dependencies": { "kansuji": "^1.1.0", "textlint-rule-helper": "^1.1.5" @@ -4703,6 +5188,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-helper/-/textlint-rule-helper-1.2.0.tgz", "integrity": "sha512-yJmVbmyuUPOndKsxOijpx/G7mwybXXf4M10U2up0BeIZSN+6drUl+aSKAoC+RUHY7bG4ogLwRcmWoNG1lSrRIQ==", "dev": true, + "license": "MIT", "dependencies": { "unist-util-visit": "^1.1.0" } @@ -4711,13 +5197,15 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-3.0.0.tgz", "integrity": "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/textlint-rule-general-novel-style-ja/node_modules/unist-util-visit": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.4.1.tgz", "integrity": "sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==", "dev": true, + "license": "MIT", "dependencies": { "unist-util-visit-parents": "^2.0.0" } @@ -4727,6 +5215,7 @@ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-2.1.2.tgz", "integrity": "sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==", "dev": true, + "license": "MIT", "dependencies": { "unist-util-is": "^3.0.0" } @@ -4736,6 +5225,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-helper/-/textlint-rule-helper-2.3.1.tgz", "integrity": "sha512-b1bijvyiUmKinfFE5hkQMSXs3Ky8jyZ3Y6SOoTRJKV9HLL2LWUVFAUezO7z4FpAkVvYruDYWCwA5qWV8GmvyUw==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/ast-node-types": "^13.4.1", "structured-source": "^4.0.0", @@ -4746,19 +5236,22 @@ "version": "13.4.1", "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz", "integrity": "sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/textlint-rule-helper/node_modules/boundary": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/boundary/-/boundary-2.0.0.tgz", "integrity": "sha512-rJKn5ooC9u8q13IMCrW0RSp31pxBCHE3y9V/tp3TdWSLf8Em3p6Di4NBpfzbJge9YjjFEsD0RtFEjtvHL5VyEA==", - "dev": true + "dev": true, + "license": "BSD-2-Clause" }, "node_modules/textlint-rule-helper/node_modules/structured-source": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/structured-source/-/structured-source-4.0.0.tgz", "integrity": "sha512-qGzRFNJDjFieQkl/sVOI2dUjHKRyL9dAJi2gCPGJLbJHBIkyOHxjuocpIEfbLioX+qSJpvbYdT49/YCdMznKxA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "boundary": "^2.0.0" } @@ -4768,6 +5261,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-ja-hiragana-fukushi/-/textlint-rule-ja-hiragana-fukushi-1.3.0.tgz", "integrity": "sha512-j8+5XUDnUKbc87GUklCEOl/UrR9HPvokgKJmPN52Ask1y67rQT594pjGkiRvdmv3wESqe6PKOKK8mUFKCwiDYw==", "dev": true, + "license": "MIT", "dependencies": { "js-yaml": "^3.8.2", "kuromojin": "^2.1.1", @@ -4780,6 +5274,7 @@ "resolved": "https://registry.npmjs.org/kuromoji/-/kuromoji-0.1.1.tgz", "integrity": "sha512-B7ctEuhoYzRDbgsRn/3NQVee/Q4WRFVuCxkYtnQLl+t/5tw2f7JL0GQH/CQQ3gqlaEvBJgfnGNA6st09wmqkRA==", "dev": true, + "license": "Apache-2.0", "dependencies": { "async": "^2.0.1", "doublearray": "0.0.2", @@ -4791,6 +5286,7 @@ "resolved": "https://registry.npmjs.org/kuromojin/-/kuromojin-2.1.1.tgz", "integrity": "sha512-bd5dfE9CdRBoRPiquE5uhzBrDOn2K3WuFeOWqZgM7DNtQhvS7P9IALy5MtDxXcnw7DLBAZ1A7DByPO5BhXdgew==", "dev": true, + "license": "MIT", "dependencies": { "kuromoji": "0.1.1" } @@ -4799,13 +5295,15 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/morpheme-match/-/morpheme-match-1.2.1.tgz", "integrity": "sha512-SSIcFPas4Dctx5PbrfKbW5XNADlkcn38LI+fqgB9QtminQ7FXeOR3//rnAmooZ1/5zTGeFoi8H9kFBAH9y1nfQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/textlint-rule-ja-hiragana-fukushi/node_modules/morpheme-match-all": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/morpheme-match-all/-/morpheme-match-all-1.2.0.tgz", "integrity": "sha512-z8F1k4U8fAMcjkGBDWwVrKZLR8VSvKtYh6+5GZ9hi5mtXrYMILwDMgiPwfNGJvk/liQEG9/oNAJUcwLpyjI9Xg==", "dev": true, + "license": "MIT", "dependencies": { "morpheme-match": "^1.2.1" } @@ -4824,6 +5322,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-ja-hiragana-hojodoushi/-/textlint-rule-ja-hiragana-hojodoushi-1.1.0.tgz", "integrity": "sha512-J+7thUQx5/o4grCbgiQPwT5uFhXYulaP+rf+QnA8H5fYrEjwDrvSlU/RVuibbrYIjigDso09FU8lft02y+XgMA==", "dev": true, + "license": "MIT", "dependencies": { "js-yaml": "^3.8.2", "kuromojin": "^2.1.1", @@ -4836,6 +5335,7 @@ "resolved": "https://registry.npmjs.org/kuromoji/-/kuromoji-0.1.1.tgz", "integrity": "sha512-B7ctEuhoYzRDbgsRn/3NQVee/Q4WRFVuCxkYtnQLl+t/5tw2f7JL0GQH/CQQ3gqlaEvBJgfnGNA6st09wmqkRA==", "dev": true, + "license": "Apache-2.0", "dependencies": { "async": "^2.0.1", "doublearray": "0.0.2", @@ -4847,6 +5347,7 @@ "resolved": "https://registry.npmjs.org/kuromojin/-/kuromojin-2.1.1.tgz", "integrity": "sha512-bd5dfE9CdRBoRPiquE5uhzBrDOn2K3WuFeOWqZgM7DNtQhvS7P9IALy5MtDxXcnw7DLBAZ1A7DByPO5BhXdgew==", "dev": true, + "license": "MIT", "dependencies": { "kuromoji": "0.1.1" } @@ -4855,13 +5356,15 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/morpheme-match/-/morpheme-match-1.2.1.tgz", "integrity": "sha512-SSIcFPas4Dctx5PbrfKbW5XNADlkcn38LI+fqgB9QtminQ7FXeOR3//rnAmooZ1/5zTGeFoi8H9kFBAH9y1nfQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/textlint-rule-ja-hiragana-hojodoushi/node_modules/morpheme-match-all": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/morpheme-match-all/-/morpheme-match-all-1.2.0.tgz", "integrity": "sha512-z8F1k4U8fAMcjkGBDWwVrKZLR8VSvKtYh6+5GZ9hi5mtXrYMILwDMgiPwfNGJvk/liQEG9/oNAJUcwLpyjI9Xg==", "dev": true, + "license": "MIT", "dependencies": { "morpheme-match": "^1.2.1" } @@ -4880,6 +5383,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-ja-hiragana-keishikimeishi/-/textlint-rule-ja-hiragana-keishikimeishi-1.1.0.tgz", "integrity": "sha512-rNwTzQdwGopLxesjXMYQi1MVzZbQOx7fap7dAcbajtvMCKMtucYcvOIptgegagpHctaRa303NqbHLhqMv3OIeg==", "dev": true, + "license": "MIT", "dependencies": { "kuromojin": "^2.1.1", "morpheme-match-all": "^1.1.0" @@ -4890,6 +5394,7 @@ "resolved": "https://registry.npmjs.org/kuromoji/-/kuromoji-0.1.1.tgz", "integrity": "sha512-B7ctEuhoYzRDbgsRn/3NQVee/Q4WRFVuCxkYtnQLl+t/5tw2f7JL0GQH/CQQ3gqlaEvBJgfnGNA6st09wmqkRA==", "dev": true, + "license": "Apache-2.0", "dependencies": { "async": "^2.0.1", "doublearray": "0.0.2", @@ -4901,6 +5406,7 @@ "resolved": "https://registry.npmjs.org/kuromojin/-/kuromojin-2.1.1.tgz", "integrity": "sha512-bd5dfE9CdRBoRPiquE5uhzBrDOn2K3WuFeOWqZgM7DNtQhvS7P9IALy5MtDxXcnw7DLBAZ1A7DByPO5BhXdgew==", "dev": true, + "license": "MIT", "dependencies": { "kuromoji": "0.1.1" } @@ -4909,13 +5415,15 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/morpheme-match/-/morpheme-match-1.2.1.tgz", "integrity": "sha512-SSIcFPas4Dctx5PbrfKbW5XNADlkcn38LI+fqgB9QtminQ7FXeOR3//rnAmooZ1/5zTGeFoi8H9kFBAH9y1nfQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/textlint-rule-ja-hiragana-keishikimeishi/node_modules/morpheme-match-all": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/morpheme-match-all/-/morpheme-match-all-1.2.0.tgz", "integrity": "sha512-z8F1k4U8fAMcjkGBDWwVrKZLR8VSvKtYh6+5GZ9hi5mtXrYMILwDMgiPwfNGJvk/liQEG9/oNAJUcwLpyjI9Xg==", "dev": true, + "license": "MIT", "dependencies": { "morpheme-match": "^1.2.1" } @@ -4930,12 +5438,12 @@ } }, "node_modules/textlint-rule-ja-nakaguro-or-halfwidth-space-between-katakana": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/textlint-rule-ja-nakaguro-or-halfwidth-space-between-katakana/-/textlint-rule-ja-nakaguro-or-halfwidth-space-between-katakana-2.4.1.tgz", - "integrity": "sha512-GKRbiHPV4qFVJidBCvJeRcnJRUIjVtowYZylo5i3fvcuUrvyt0959GUvOk7SkmUW0YKMYuzlyiBorPEugnomew==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/textlint-rule-ja-nakaguro-or-halfwidth-space-between-katakana/-/textlint-rule-ja-nakaguro-or-halfwidth-space-between-katakana-2.4.3.tgz", + "integrity": "sha512-xIpEAgpaPTnavzCMLcSB/tlZ3Tq9paclyyMEgAQxkM9adv8TrwddZ+Ys+BSd4zjuVa94NED0bajYWtahSjZ53g==", "dev": true, + "license": "MIT", "dependencies": { - "match-index": "^1.0.3", "textlint-rule-helper": "^2.2.4" } }, @@ -4944,6 +5452,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-ja-no-abusage/-/textlint-rule-ja-no-abusage-3.0.0.tgz", "integrity": "sha512-DIqPZgYTwTsvjX6Bgj7GA8vlwGMObagJpNoUtkucOaoy7E7GwUOL+knqFjcTtlkWSmoKpIkw5OWW5CV3kivlfQ==", "dev": true, + "license": "MIT", "dependencies": { "kuromojin": "^3.0.0", "morpheme-match-textlint": "^2.0.6", @@ -4955,6 +5464,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-ja-no-mixed-period/-/textlint-rule-ja-no-mixed-period-3.0.1.tgz", "integrity": "sha512-h5sljMUPD/buXR7B6DYPdd7B5EkXz5+wKtVhU4juti/QCJ8ngXpv55owhzWEV4ZqH1pTNnBess+38Yy4sI+R+w==", "dev": true, + "license": "MIT", "dependencies": { "check-ends-with-period": "^3.0.2", "textlint-rule-helper": "^2.2.4" @@ -4965,6 +5475,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-ja-no-redundant-expression/-/textlint-rule-ja-no-redundant-expression-4.0.1.tgz", "integrity": "sha512-r8Qe6S7u9N97wD0gcrASqBUdZs5CMEVlgc8Ul+D2NQFiOi1BoseOMo5I9yUsEZMAL46yh/eaw9+EWz6IDlPWeA==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/regexp-string-matcher": "^1.1.0", "kuromojin": "^3.0.0", @@ -4978,19 +5489,83 @@ "version": "13.4.1", "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz", "integrity": "sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ==", - "dev": true + "dev": true, + "license": "MIT" + }, + "node_modules/textlint-rule-ja-no-redundant-expression/node_modules/@textlint/regexp-string-matcher": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@textlint/regexp-string-matcher/-/regexp-string-matcher-1.1.1.tgz", + "integrity": "sha512-rrNUCKGKYBrZALotSF8D5A8xD05VHX6kxv0BP805Ig2M73Ha6LK+de31+ZocGm4CO+sikVFYyMCPPJhp7bCXcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0", + "execall": "^2.0.0", + "lodash.sortby": "^4.7.0", + "lodash.uniq": "^4.5.0", + "lodash.uniqwith": "^4.5.0", + "to-regex": "^3.0.2" + } }, "node_modules/textlint-rule-ja-no-redundant-expression/node_modules/boundary": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/boundary/-/boundary-2.0.0.tgz", "integrity": "sha512-rJKn5ooC9u8q13IMCrW0RSp31pxBCHE3y9V/tp3TdWSLf8Em3p6Di4NBpfzbJge9YjjFEsD0RtFEjtvHL5VyEA==", - "dev": true + "dev": true, + "license": "BSD-2-Clause" + }, + "node_modules/textlint-rule-ja-no-redundant-expression/node_modules/clone-regexp": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clone-regexp/-/clone-regexp-2.2.0.tgz", + "integrity": "sha512-beMpP7BOtTipFuW8hrJvREQ2DrRu3BE7by0ZpibtfBA+qfHYvMGTc2Yb1JMYPKg/JUw0CHYvpg796aNTSW9z7Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-regexp": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/textlint-rule-ja-no-redundant-expression/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/textlint-rule-ja-no-redundant-expression/node_modules/execall": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/execall/-/execall-2.0.0.tgz", + "integrity": "sha512-0FU2hZ5Hh6iQnarpRtQurM/aAvp3RIbfvgLHrcqJYzhXyV2KFruhuChf9NC6waAhiUR7FFtlugkI4p7f2Fqlow==", + "dev": true, + "license": "MIT", + "dependencies": { + "clone-regexp": "^2.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/textlint-rule-ja-no-redundant-expression/node_modules/is-regexp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-2.1.0.tgz", + "integrity": "sha512-OZ4IlER3zmRIoB9AqNhEggVxqIH4ofDns5nRrPS6yQxXE1TPCUpFznBfRQmQa8uC+pXqjMnukiJBxCisIxiLGA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } }, "node_modules/textlint-rule-ja-no-redundant-expression/node_modules/structured-source": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/structured-source/-/structured-source-4.0.0.tgz", "integrity": "sha512-qGzRFNJDjFieQkl/sVOI2dUjHKRyL9dAJi2gCPGJLbJHBIkyOHxjuocpIEfbLioX+qSJpvbYdT49/YCdMznKxA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "boundary": "^2.0.0" } @@ -5000,6 +5575,7 @@ "resolved": "https://registry.npmjs.org/textlint-util-to-string/-/textlint-util-to-string-3.3.4.tgz", "integrity": "sha512-XF4Qfw0ES+czKy03BwuvBUoXC8NAg920VuRxW0pd72fW76zMeMbPI/bRN5PHq3SbCdOm7U69/Pk+DX34xqIYqA==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/ast-node-types": "^13.4.1", "rehype-parse": "^6.0.1", @@ -5012,6 +5588,7 @@ "resolved": "https://registry.npmjs.org/unified/-/unified-8.4.2.tgz", "integrity": "sha512-JCrmN13jI4+h9UAyKEoGcDZV+i1E7BLFuG7OsaDvTXI5P0qhHX+vZO/kOhz9jn8HGENDKbwSeB0nVOg4gVStGA==", "dev": true, + "license": "MIT", "dependencies": { "bail": "^1.0.0", "extend": "^3.0.0", @@ -5025,20 +5602,22 @@ } }, "node_modules/textlint-rule-ja-no-space-around-parentheses": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/textlint-rule-ja-no-space-around-parentheses/-/textlint-rule-ja-no-space-around-parentheses-2.4.1.tgz", - "integrity": "sha512-lnGaKdBj65jMhLvVIU+4aC9hM+YCow2dQv7hl/qdK22L6UhTr8GSYEf6oCOX/4K0s6CU6PzRJdVDWwBPr1BFGQ==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/textlint-rule-ja-no-space-around-parentheses/-/textlint-rule-ja-no-space-around-parentheses-2.4.2.tgz", + "integrity": "sha512-DmmWEKu2hFJs/C4Ruxm/Zkp5gc9W+8kTgUULx54J00MJyJgLWm0XY9BH3OdN66+4+3BFutvxzCLU9y/M1+Dx7w==", "dev": true, + "license": "MIT", "dependencies": { "match-index": "^1.0.3", "textlint-rule-helper": "^2.2.4" } }, "node_modules/textlint-rule-ja-no-space-between-full-width": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/textlint-rule-ja-no-space-between-full-width/-/textlint-rule-ja-no-space-between-full-width-2.4.1.tgz", - "integrity": "sha512-Sar4B6o3ioxOQFO8HfztsDV3KCwHLcmR4UwcsfSET0tpscFuTSgGn/J3MYynJa6TncyH7YNR/CiB3/H+Nr0Bkg==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/textlint-rule-ja-no-space-between-full-width/-/textlint-rule-ja-no-space-between-full-width-2.4.2.tgz", + "integrity": "sha512-yDiZrJYX2cVO85tLw+ojUntky44ijEfIX2sWinIEN0IdYMCINjYwmgRYFmnqwQ+MZyo+foAt2vLUZtaSZlk/Lw==", "dev": true, + "license": "MIT", "dependencies": { "match-index": "^1.0.3", "regx": "^1.0.4", @@ -5050,16 +5629,79 @@ "resolved": "https://registry.npmjs.org/textlint-rule-ja-no-successive-word/-/textlint-rule-ja-no-successive-word-2.0.1.tgz", "integrity": "sha512-XKTXkHwMu86SnGaj73B67U4apDdTquDKF3SfG24tRbzMyJoGe/Iba5VMId8sp8QHeTonp1bYOSxjZsbkpGyCNw==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/regexp-string-matcher": "^1.1.0", "kuromojin": "^3.0.0" } }, + "node_modules/textlint-rule-ja-no-successive-word/node_modules/@textlint/regexp-string-matcher": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@textlint/regexp-string-matcher/-/regexp-string-matcher-1.1.1.tgz", + "integrity": "sha512-rrNUCKGKYBrZALotSF8D5A8xD05VHX6kxv0BP805Ig2M73Ha6LK+de31+ZocGm4CO+sikVFYyMCPPJhp7bCXcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0", + "execall": "^2.0.0", + "lodash.sortby": "^4.7.0", + "lodash.uniq": "^4.5.0", + "lodash.uniqwith": "^4.5.0", + "to-regex": "^3.0.2" + } + }, + "node_modules/textlint-rule-ja-no-successive-word/node_modules/clone-regexp": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clone-regexp/-/clone-regexp-2.2.0.tgz", + "integrity": "sha512-beMpP7BOtTipFuW8hrJvREQ2DrRu3BE7by0ZpibtfBA+qfHYvMGTc2Yb1JMYPKg/JUw0CHYvpg796aNTSW9z7Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-regexp": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/textlint-rule-ja-no-successive-word/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/textlint-rule-ja-no-successive-word/node_modules/execall": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/execall/-/execall-2.0.0.tgz", + "integrity": "sha512-0FU2hZ5Hh6iQnarpRtQurM/aAvp3RIbfvgLHrcqJYzhXyV2KFruhuChf9NC6waAhiUR7FFtlugkI4p7f2Fqlow==", + "dev": true, + "license": "MIT", + "dependencies": { + "clone-regexp": "^2.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/textlint-rule-ja-no-successive-word/node_modules/is-regexp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-2.1.0.tgz", + "integrity": "sha512-OZ4IlER3zmRIoB9AqNhEggVxqIH4ofDns5nRrPS6yQxXE1TPCUpFznBfRQmQa8uC+pXqjMnukiJBxCisIxiLGA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/textlint-rule-ja-no-weak-phrase": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/textlint-rule-ja-no-weak-phrase/-/textlint-rule-ja-no-weak-phrase-2.0.0.tgz", "integrity": "sha512-jZ1/3VnE8Bz/p0CCe/+BVOmWE1cZwpDkjKb6hnq39nGk3OD4XPW7biYavK/4/mZhk4bh2+Vtu1xV26lg8d+vBw==", "dev": true, + "license": "MIT", "dependencies": { "kuromojin": "^3.0.0", "morpheme-match": "^2.0.4", @@ -5067,51 +5709,57 @@ } }, "node_modules/textlint-rule-ja-space-after-exclamation": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/textlint-rule-ja-space-after-exclamation/-/textlint-rule-ja-space-after-exclamation-2.4.1.tgz", - "integrity": "sha512-R+JjCCMPC9QKHcMHBIbhe33BPnsojgxqIZWrUje1/z+VJFEzJdBcv7LBsDbWuAtmAcvG962wq/swXZAQSalYWg==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/textlint-rule-ja-space-after-exclamation/-/textlint-rule-ja-space-after-exclamation-2.4.2.tgz", + "integrity": "sha512-3qH0aIG48MrA8qhcljGSGxPmvrrmOQsP/kTfj8SGDKdkBUs05z1x1bgw106RVNVv1enz2v+ZafuVdgFViRKWfA==", "dev": true, + "license": "MIT", "dependencies": { "match-index": "^1.0.3", "textlint-rule-helper": "^2.2.4" } }, "node_modules/textlint-rule-ja-space-after-question": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/textlint-rule-ja-space-after-question/-/textlint-rule-ja-space-after-question-2.4.1.tgz", - "integrity": "sha512-Kl0zj4dJB2YiXtYPqESdPYHT3h7My9l0CY+45ro37UeH4Fo6kgEr48FtefUeZVT1geHEED7VHPFXupsU1NRk2Q==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/textlint-rule-ja-space-after-question/-/textlint-rule-ja-space-after-question-2.4.2.tgz", + "integrity": "sha512-ie1R03y1606QApXu+ZF6X+bAJLccRy/lA5JityfTO9M4EM+7ENMle9fTMoEEKJkNkjHaLi530IzqAZ+CLEe8Qw==", "dev": true, + "license": "MIT", "dependencies": { "match-index": "^1.0.1", "textlint-rule-helper": "^2.2.4" } }, "node_modules/textlint-rule-ja-space-around-code": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/textlint-rule-ja-space-around-code/-/textlint-rule-ja-space-around-code-2.4.1.tgz", - "integrity": "sha512-CB44/txVnq388MkNbjgbcYYIZeAFEb6CLgsAJ6qZn5qBdmoSKGRJFEQ0mCAj5HFP0Z1xcl8JzWVVKvZeaNRPjg==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/textlint-rule-ja-space-around-code/-/textlint-rule-ja-space-around-code-2.4.2.tgz", + "integrity": "sha512-DM4OF7seafTKrxPFjUJyxx/lwlg8CO3wgwmTJWhQ+6po3mQVV6QaBHpc0861/32kUAJm1ZgRpiBlDWUdraXFFA==", "dev": true, + "license": "MIT", "dependencies": { "match-index": "^1.0.1", "textlint-rule-helper": "^2.2.4" } }, "node_modules/textlint-rule-ja-space-around-link": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/textlint-rule-ja-space-around-link/-/textlint-rule-ja-space-around-link-2.4.1.tgz", - "integrity": "sha512-3nf4NAGXxtTGVo0LNkenR2LgdLlBYJVTqGgRlElyFf1ipiAt0XvX3P7WNl7FDrwoKNzwlg0pbA3Av5+i6Lk8bg==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/textlint-rule-ja-space-around-link/-/textlint-rule-ja-space-around-link-2.4.2.tgz", + "integrity": "sha512-++o4wwCnDiubgE60QuOv0xW/0EcF2ta4EfjOycYsLYqvJ6DzFEZFGv3S/TujzmrIdRc8sHAO62489flvPu1DsQ==", "dev": true, + "license": "MIT", "dependencies": { "match-index": "^1.0.1", "textlint-rule-helper": "^2.2.4" } }, "node_modules/textlint-rule-ja-space-between-half-and-full-width": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/textlint-rule-ja-space-between-half-and-full-width/-/textlint-rule-ja-space-between-half-and-full-width-2.4.1.tgz", - "integrity": "sha512-zy3K2nbIdrKwQpWf8XzpoOjKDnsMZGq22uqC3A0fD1VWDe2t0yja8D9GBiwf8sqZayBV7Ng2CMU4QzhZpjb/1Q==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/textlint-rule-ja-space-between-half-and-full-width/-/textlint-rule-ja-space-between-half-and-full-width-2.4.2.tgz", + "integrity": "sha512-GqwSy0ivm4Q5Bok9LaOwfg+H1auLRMoMi2aY/7aSIrgvX/RD5aZ2Rk2lm3TTX42mR1UrQu8GDqktUEZfvQ913w==", "dev": true, + "license": "MIT", "dependencies": { + "@textlint/regexp-string-matcher": "^2.0.2", "match-index": "^1.0.1", "textlint-rule-helper": "^2.2.4" } @@ -5121,17 +5769,80 @@ "resolved": "https://registry.npmjs.org/textlint-rule-ja-unnatural-alphabet/-/textlint-rule-ja-unnatural-alphabet-2.0.1.tgz", "integrity": "sha512-n93V8qh6OKdh8OB6yLT+9Xl8DSoZ7gWi51tWdhlLEPIWgBm18nLMgm6Ck+nVc3eENOdRcQURWUpCGotI8wTemA==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/regexp-string-matcher": "^1.0.2", "match-index": "^1.0.1", "regx": "^1.0.4" } }, + "node_modules/textlint-rule-ja-unnatural-alphabet/node_modules/@textlint/regexp-string-matcher": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@textlint/regexp-string-matcher/-/regexp-string-matcher-1.1.1.tgz", + "integrity": "sha512-rrNUCKGKYBrZALotSF8D5A8xD05VHX6kxv0BP805Ig2M73Ha6LK+de31+ZocGm4CO+sikVFYyMCPPJhp7bCXcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0", + "execall": "^2.0.0", + "lodash.sortby": "^4.7.0", + "lodash.uniq": "^4.5.0", + "lodash.uniqwith": "^4.5.0", + "to-regex": "^3.0.2" + } + }, + "node_modules/textlint-rule-ja-unnatural-alphabet/node_modules/clone-regexp": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clone-regexp/-/clone-regexp-2.2.0.tgz", + "integrity": "sha512-beMpP7BOtTipFuW8hrJvREQ2DrRu3BE7by0ZpibtfBA+qfHYvMGTc2Yb1JMYPKg/JUw0CHYvpg796aNTSW9z7Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-regexp": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/textlint-rule-ja-unnatural-alphabet/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/textlint-rule-ja-unnatural-alphabet/node_modules/execall": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/execall/-/execall-2.0.0.tgz", + "integrity": "sha512-0FU2hZ5Hh6iQnarpRtQurM/aAvp3RIbfvgLHrcqJYzhXyV2KFruhuChf9NC6waAhiUR7FFtlugkI4p7f2Fqlow==", + "dev": true, + "license": "MIT", + "dependencies": { + "clone-regexp": "^2.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/textlint-rule-ja-unnatural-alphabet/node_modules/is-regexp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-2.1.0.tgz", + "integrity": "sha512-OZ4IlER3zmRIoB9AqNhEggVxqIH4ofDns5nRrPS6yQxXE1TPCUpFznBfRQmQa8uC+pXqjMnukiJBxCisIxiLGA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/textlint-rule-max-comma": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/textlint-rule-max-comma/-/textlint-rule-max-comma-4.0.0.tgz", "integrity": "sha512-2vKKXNg1YuTqr9/FrHvOGEHFe+6lNSDtzuEv+KRB+tuaj++UNa/YPvyY34UdDYuHUSKNcYdto8GlIUhAJDW9WQ==", "dev": true, + "license": "MIT", "dependencies": { "sentence-splitter": "^5.0.0", "textlint-util-to-string": "^3.3.4" @@ -5141,19 +5852,22 @@ "version": "13.4.1", "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz", "integrity": "sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/textlint-rule-max-comma/node_modules/boundary": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/boundary/-/boundary-2.0.0.tgz", "integrity": "sha512-rJKn5ooC9u8q13IMCrW0RSp31pxBCHE3y9V/tp3TdWSLf8Em3p6Di4NBpfzbJge9YjjFEsD0RtFEjtvHL5VyEA==", - "dev": true + "dev": true, + "license": "BSD-2-Clause" }, "node_modules/textlint-rule-max-comma/node_modules/structured-source": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/structured-source/-/structured-source-4.0.0.tgz", "integrity": "sha512-qGzRFNJDjFieQkl/sVOI2dUjHKRyL9dAJi2gCPGJLbJHBIkyOHxjuocpIEfbLioX+qSJpvbYdT49/YCdMznKxA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "boundary": "^2.0.0" } @@ -5163,6 +5877,7 @@ "resolved": "https://registry.npmjs.org/textlint-util-to-string/-/textlint-util-to-string-3.3.4.tgz", "integrity": "sha512-XF4Qfw0ES+czKy03BwuvBUoXC8NAg920VuRxW0pd72fW76zMeMbPI/bRN5PHq3SbCdOm7U69/Pk+DX34xqIYqA==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/ast-node-types": "^13.4.1", "rehype-parse": "^6.0.1", @@ -5175,6 +5890,7 @@ "resolved": "https://registry.npmjs.org/unified/-/unified-8.4.2.tgz", "integrity": "sha512-JCrmN13jI4+h9UAyKEoGcDZV+i1E7BLFuG7OsaDvTXI5P0qhHX+vZO/kOhz9jn8HGENDKbwSeB0nVOg4gVStGA==", "dev": true, + "license": "MIT", "dependencies": { "bail": "^1.0.0", "extend": "^3.0.0", @@ -5192,6 +5908,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-max-kanji-continuous-len/-/textlint-rule-max-kanji-continuous-len-1.1.1.tgz", "integrity": "sha512-os+p7dS9Op4PtZV7B9/wnzN5qpDO2WR2kj7nTnqEPbApS06AXX+qf5eH3fKdm4blzUCcPF5ozMN8zbs3AJUAug==", "dev": true, + "license": "MIT", "dependencies": { "match-index": "^1.0.1", "textlint-rule-helper": "^2.0.0" @@ -5202,6 +5919,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-max-ten/-/textlint-rule-max-ten-5.0.0.tgz", "integrity": "sha512-EWOvbEa3Ukxz0+GAUEJ91DYFSC3IkyJ10dBcsU6VlL33k1BvTRoFr3m26w6upnXJffXQUI70Etn39I++2duyhA==", "dev": true, + "license": "MIT", "dependencies": { "kuromojin": "^3.0.0", "sentence-splitter": "^5.0.0", @@ -5213,19 +5931,22 @@ "version": "13.4.1", "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz", "integrity": "sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/textlint-rule-max-ten/node_modules/boundary": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/boundary/-/boundary-2.0.0.tgz", "integrity": "sha512-rJKn5ooC9u8q13IMCrW0RSp31pxBCHE3y9V/tp3TdWSLf8Em3p6Di4NBpfzbJge9YjjFEsD0RtFEjtvHL5VyEA==", - "dev": true + "dev": true, + "license": "BSD-2-Clause" }, "node_modules/textlint-rule-max-ten/node_modules/structured-source": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/structured-source/-/structured-source-4.0.0.tgz", "integrity": "sha512-qGzRFNJDjFieQkl/sVOI2dUjHKRyL9dAJi2gCPGJLbJHBIkyOHxjuocpIEfbLioX+qSJpvbYdT49/YCdMznKxA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "boundary": "^2.0.0" } @@ -5235,6 +5956,7 @@ "resolved": "https://registry.npmjs.org/textlint-util-to-string/-/textlint-util-to-string-3.3.4.tgz", "integrity": "sha512-XF4Qfw0ES+czKy03BwuvBUoXC8NAg920VuRxW0pd72fW76zMeMbPI/bRN5PHq3SbCdOm7U69/Pk+DX34xqIYqA==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/ast-node-types": "^13.4.1", "rehype-parse": "^6.0.1", @@ -5247,6 +5969,7 @@ "resolved": "https://registry.npmjs.org/unified/-/unified-8.4.2.tgz", "integrity": "sha512-JCrmN13jI4+h9UAyKEoGcDZV+i1E7BLFuG7OsaDvTXI5P0qhHX+vZO/kOhz9jn8HGENDKbwSeB0nVOg4gVStGA==", "dev": true, + "license": "MIT", "dependencies": { "bail": "^1.0.0", "extend": "^3.0.0", @@ -5260,10 +5983,11 @@ } }, "node_modules/textlint-rule-no-dead-link": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/textlint-rule-no-dead-link/-/textlint-rule-no-dead-link-5.1.2.tgz", - "integrity": "sha512-TXJKXL5WU6dtSbRuNli91D0emY8hQTBP1VUSbq2Ka+zDMoE/vqkzsAyVl7V7YuiwW8URXfc98BzYHu4NDAdQLw==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/textlint-rule-no-dead-link/-/textlint-rule-no-dead-link-5.2.0.tgz", + "integrity": "sha512-P8a0gN6eT9Ks2ucYFU2q6qzubcX+H5leTP0h1vtTlTGX4IpMf0klvzAX+cVeE1hL0jPk8WJwV/avGK4pSKM2hw==", "dev": true, + "license": "MIT", "dependencies": { "fs-extra": "^8.1.0", "get-url-origin": "^1.0.1", @@ -5290,6 +6014,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-no-double-negative-ja/-/textlint-rule-no-double-negative-ja-2.0.1.tgz", "integrity": "sha512-LRofmNt+nd2mp+AHmG0ltk9AlbzKbWPE+EToYQ1zORCd8N8suE1YxNEplz9OeQ59ea9ITtudDIWoqeHaZnbDsg==", "dev": true, + "license": "MIT", "dependencies": { "kuromojin": "^3.0.0" } @@ -5299,6 +6024,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-no-doubled-conjunction/-/textlint-rule-no-doubled-conjunction-3.0.0.tgz", "integrity": "sha512-Ja7AK2MRVe/fpG7XmTPRbq6JEDqlzDrNjH1EQoaMqFhlGKzrlHmdMfRLAZ3Lh3FSR0Lkk2GgR3MDnXzlFAp1/Q==", "dev": true, + "license": "MIT", "dependencies": { "kuromojin": "^3.0.0", "sentence-splitter": "^5.0.0", @@ -5310,6 +6036,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-no-doubled-conjunctive-particle-ga/-/textlint-rule-no-doubled-conjunctive-particle-ga-3.0.0.tgz", "integrity": "sha512-4IowX2YlTlD9VifThZwpENRh918BpPNTks0i4bOL7Gn82jUiXK0EZuV8Jtksm7i+RYG1xsO0U7P9AnxmuSxeDg==", "dev": true, + "license": "MIT", "dependencies": { "kuromojin": "^3.0.0", "sentence-splitter": "^5.0.0", @@ -5321,19 +6048,22 @@ "version": "13.4.1", "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz", "integrity": "sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/textlint-rule-no-doubled-conjunctive-particle-ga/node_modules/boundary": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/boundary/-/boundary-2.0.0.tgz", "integrity": "sha512-rJKn5ooC9u8q13IMCrW0RSp31pxBCHE3y9V/tp3TdWSLf8Em3p6Di4NBpfzbJge9YjjFEsD0RtFEjtvHL5VyEA==", - "dev": true + "dev": true, + "license": "BSD-2-Clause" }, "node_modules/textlint-rule-no-doubled-conjunctive-particle-ga/node_modules/structured-source": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/structured-source/-/structured-source-4.0.0.tgz", "integrity": "sha512-qGzRFNJDjFieQkl/sVOI2dUjHKRyL9dAJi2gCPGJLbJHBIkyOHxjuocpIEfbLioX+qSJpvbYdT49/YCdMznKxA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "boundary": "^2.0.0" } @@ -5343,6 +6073,7 @@ "resolved": "https://registry.npmjs.org/textlint-util-to-string/-/textlint-util-to-string-3.3.4.tgz", "integrity": "sha512-XF4Qfw0ES+czKy03BwuvBUoXC8NAg920VuRxW0pd72fW76zMeMbPI/bRN5PHq3SbCdOm7U69/Pk+DX34xqIYqA==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/ast-node-types": "^13.4.1", "rehype-parse": "^6.0.1", @@ -5355,6 +6086,7 @@ "resolved": "https://registry.npmjs.org/unified/-/unified-8.4.2.tgz", "integrity": "sha512-JCrmN13jI4+h9UAyKEoGcDZV+i1E7BLFuG7OsaDvTXI5P0qhHX+vZO/kOhz9jn8HGENDKbwSeB0nVOg4gVStGA==", "dev": true, + "license": "MIT", "dependencies": { "bail": "^1.0.0", "extend": "^3.0.0", @@ -5372,6 +6104,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-no-doubled-joshi/-/textlint-rule-no-doubled-joshi-5.1.0.tgz", "integrity": "sha512-2KkzlSlGZSM9W44SqYgtJYf1qOCBnzHS8Xs4LEZkgY78+TFsPg5kSLnC/PaAI6KdBDZJY0aI/yyAFZ7MJp/caw==", "dev": true, + "license": "MIT", "dependencies": { "kuromojin": "^3.0.0", "sentence-splitter": "^5.0.0", @@ -5383,19 +6116,22 @@ "version": "13.4.1", "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz", "integrity": "sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/textlint-rule-no-doubled-joshi/node_modules/boundary": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/boundary/-/boundary-2.0.0.tgz", "integrity": "sha512-rJKn5ooC9u8q13IMCrW0RSp31pxBCHE3y9V/tp3TdWSLf8Em3p6Di4NBpfzbJge9YjjFEsD0RtFEjtvHL5VyEA==", - "dev": true + "dev": true, + "license": "BSD-2-Clause" }, "node_modules/textlint-rule-no-doubled-joshi/node_modules/structured-source": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/structured-source/-/structured-source-4.0.0.tgz", "integrity": "sha512-qGzRFNJDjFieQkl/sVOI2dUjHKRyL9dAJi2gCPGJLbJHBIkyOHxjuocpIEfbLioX+qSJpvbYdT49/YCdMznKxA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "boundary": "^2.0.0" } @@ -5405,6 +6141,7 @@ "resolved": "https://registry.npmjs.org/textlint-util-to-string/-/textlint-util-to-string-3.3.4.tgz", "integrity": "sha512-XF4Qfw0ES+czKy03BwuvBUoXC8NAg920VuRxW0pd72fW76zMeMbPI/bRN5PHq3SbCdOm7U69/Pk+DX34xqIYqA==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/ast-node-types": "^13.4.1", "rehype-parse": "^6.0.1", @@ -5417,6 +6154,7 @@ "resolved": "https://registry.npmjs.org/unified/-/unified-8.4.2.tgz", "integrity": "sha512-JCrmN13jI4+h9UAyKEoGcDZV+i1E7BLFuG7OsaDvTXI5P0qhHX+vZO/kOhz9jn8HGENDKbwSeB0nVOg4gVStGA==", "dev": true, + "license": "MIT", "dependencies": { "bail": "^1.0.0", "extend": "^3.0.0", @@ -5434,6 +6172,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-no-dropping-the-ra/-/textlint-rule-no-dropping-the-ra-3.0.0.tgz", "integrity": "sha512-KbSIlcxj1kLs4sGSMSLGA8OmgRoaPAWtodJaGEyEUiy7uiZM/VPqYALpuD8vf16N1OR5SM/bXXeZFME65r8ZgQ==", "dev": true, + "license": "MIT", "dependencies": { "kuromojin": "^3.0.0", "textlint-rule-helper": "^2.1.1" @@ -5444,17 +6183,80 @@ "resolved": "https://registry.npmjs.org/textlint-rule-no-exclamation-question-mark/-/textlint-rule-no-exclamation-question-mark-1.1.0.tgz", "integrity": "sha512-FcBH3uH2qp5VG7I9LKwolUCcPigONcsdam1JhAFPcu10YZNYX0r1l2y9Hzg+E4+1fXLgtGyiObWwfsfelTx8Bw==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/regexp-string-matcher": "^1.1.0", "match-index": "^1.0.3", "textlint-rule-helper": "^2.1.1" } }, + "node_modules/textlint-rule-no-exclamation-question-mark/node_modules/@textlint/regexp-string-matcher": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@textlint/regexp-string-matcher/-/regexp-string-matcher-1.1.1.tgz", + "integrity": "sha512-rrNUCKGKYBrZALotSF8D5A8xD05VHX6kxv0BP805Ig2M73Ha6LK+de31+ZocGm4CO+sikVFYyMCPPJhp7bCXcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0", + "execall": "^2.0.0", + "lodash.sortby": "^4.7.0", + "lodash.uniq": "^4.5.0", + "lodash.uniqwith": "^4.5.0", + "to-regex": "^3.0.2" + } + }, + "node_modules/textlint-rule-no-exclamation-question-mark/node_modules/clone-regexp": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clone-regexp/-/clone-regexp-2.2.0.tgz", + "integrity": "sha512-beMpP7BOtTipFuW8hrJvREQ2DrRu3BE7by0ZpibtfBA+qfHYvMGTc2Yb1JMYPKg/JUw0CHYvpg796aNTSW9z7Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-regexp": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/textlint-rule-no-exclamation-question-mark/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/textlint-rule-no-exclamation-question-mark/node_modules/execall": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/execall/-/execall-2.0.0.tgz", + "integrity": "sha512-0FU2hZ5Hh6iQnarpRtQurM/aAvp3RIbfvgLHrcqJYzhXyV2KFruhuChf9NC6waAhiUR7FFtlugkI4p7f2Fqlow==", + "dev": true, + "license": "MIT", + "dependencies": { + "clone-regexp": "^2.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/textlint-rule-no-exclamation-question-mark/node_modules/is-regexp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-2.1.0.tgz", + "integrity": "sha512-OZ4IlER3zmRIoB9AqNhEggVxqIH4ofDns5nRrPS6yQxXE1TPCUpFznBfRQmQa8uC+pXqjMnukiJBxCisIxiLGA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/textlint-rule-no-hankaku-kana": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/textlint-rule-no-hankaku-kana/-/textlint-rule-no-hankaku-kana-2.0.1.tgz", "integrity": "sha512-39s94HK6V1xnII1haYiYQnWy1YQAKK7Zj0mcpUMFHHC4M5JdsRnhGs6DQPVEff0gQIFV0iuDNlofXt15kjMtEA==", "dev": true, + "license": "MIT", "dependencies": { "textlint-rule-helper": "^2.3.0", "textlint-tester": "^13.3.1" @@ -5465,6 +6267,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-no-mix-dearu-desumasu/-/textlint-rule-no-mix-dearu-desumasu-6.0.2.tgz", "integrity": "sha512-h/Vs6qltBlkm7bmKT2rtJ6jZriNV3uTr5fxKuPMBUHVUMnAuQvz3lI7oFrGC10Pxny+Ofng5fbLiYntHq/ymaA==", "dev": true, + "license": "MIT", "dependencies": { "analyze-desumasu-dearu": "^5.0.1", "textlint-rule-helper": "^2.3.1" @@ -5475,6 +6278,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet/-/textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet-1.0.1.tgz", "integrity": "sha512-jRiBtdslvtFNgWhCT1FZW0Ct5lfO3Af39iKJV20hxOZMhxM0sz+pnfmooEQ9wpAQm5kL+W1kJoX2O9uKw01AvA==", "dev": true, + "license": "MIT", "dependencies": { "match-index": "^1.0.1", "moji": "^0.5.1", @@ -5486,6 +6290,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-no-nfd/-/textlint-rule-no-nfd-2.0.2.tgz", "integrity": "sha512-lIUvcQ+wqtConpPQU2YwEJl2dRcRyyrxPYZ3V76UwnkVg++XPLIrE5mLDgyNE/UIQ34e/KitJfMLqKWvnkFbNQ==", "dev": true, + "license": "MIT", "dependencies": { "match-index": "^1.0.3", "textlint-rule-helper": "^2.3.0" @@ -5496,6 +6301,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-no-zero-width-spaces/-/textlint-rule-no-zero-width-spaces-1.0.1.tgz", "integrity": "sha512-AkxpzBILGB4YsXddzHx2xqpXmqMv5Yd+PQm4anUV+ADSJuwLP1Jd6yHf/LOtu9j3ps8K3XM9vQrXRK73z0bU3A==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/hata6502" @@ -5506,6 +6312,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-prefer-tari-tari/-/textlint-rule-prefer-tari-tari-1.0.3.tgz", "integrity": "sha512-86jSAIDX+o9zCANePo0OkRRgxJkfSoWrrJd6pF3P8X+AAYvlSYeq11HcnLfQIwodQLxkPpjJD7Y7XhmnGWSXRA==", "dev": true, + "license": "MIT", "dependencies": { "nlcst-parse-japanese": "^1.1.2", "nlcst-pattern-match": "^1.3.3", @@ -5515,19 +6322,20 @@ } }, "node_modules/textlint-rule-preset-ja-spacing": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/textlint-rule-preset-ja-spacing/-/textlint-rule-preset-ja-spacing-2.4.1.tgz", - "integrity": "sha512-cNUPAG7d8xg/f7RCC8Bwhq2KYqhMZqYTBIiBWHLKg1fVJSiI8gU91RFmgF3/Hd5mFJRIJQIOMc3Oc29UW0IFkw==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/textlint-rule-preset-ja-spacing/-/textlint-rule-preset-ja-spacing-2.4.3.tgz", + "integrity": "sha512-WAiWY9TOE8/bRdl14XJdjkPQcV0hLS4O+PCUYU1yxXmJhZ8V3ciw2GYqpA9GL73qAxL25UD6mkf1yfz6aJ4qSA==", "dev": true, + "license": "MIT", "dependencies": { - "textlint-rule-ja-nakaguro-or-halfwidth-space-between-katakana": "^2.4.1", - "textlint-rule-ja-no-space-around-parentheses": "^2.4.1", - "textlint-rule-ja-no-space-between-full-width": "^2.4.1", - "textlint-rule-ja-space-after-exclamation": "^2.4.1", - "textlint-rule-ja-space-after-question": "^2.4.1", - "textlint-rule-ja-space-around-code": "^2.4.1", - "textlint-rule-ja-space-around-link": "^2.4.1", - "textlint-rule-ja-space-between-half-and-full-width": "^2.4.1" + "textlint-rule-ja-nakaguro-or-halfwidth-space-between-katakana": "^2.4.3", + "textlint-rule-ja-no-space-around-parentheses": "^2.4.2", + "textlint-rule-ja-no-space-between-full-width": "^2.4.2", + "textlint-rule-ja-space-after-exclamation": "^2.4.2", + "textlint-rule-ja-space-after-question": "^2.4.2", + "textlint-rule-ja-space-around-code": "^2.4.2", + "textlint-rule-ja-space-around-link": "^2.4.2", + "textlint-rule-ja-space-between-half-and-full-width": "^2.4.2" } }, "node_modules/textlint-rule-preset-ja-technical-writing": { @@ -5535,6 +6343,7 @@ "resolved": "https://registry.npmjs.org/textlint-rule-preset-ja-technical-writing/-/textlint-rule-preset-ja-technical-writing-10.0.1.tgz", "integrity": "sha512-GC7sUPsn65UOZcBQ+SLvt3RRmGcm3Fb8t/o8/hD/zyRr1NpYYNrtte0HckVnCPH3TD8zbMt4mov2nlnfA8f7gg==", "dev": true, + "license": "MIT", "dependencies": { "@textlint-rule/textlint-rule-no-invalid-control-character": "^2.0.0", "@textlint-rule/textlint-rule-no-unmatched-pair": "^2.0.2", @@ -5566,13 +6375,15 @@ "version": "13.4.1", "resolved": "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-13.4.1.tgz", "integrity": "sha512-keM5zHwyifijEDqEvAFhhXHC5UbmZjfGytRJzPPJaW3C3UsGbIzDCnfOSE9jUVTWZcngHuSJ7aKGv42Rhy9nEg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/textlint-rule-preset-jtf-style": { "version": "2.3.14", "resolved": "https://registry.npmjs.org/textlint-rule-preset-jtf-style/-/textlint-rule-preset-jtf-style-2.3.14.tgz", "integrity": "sha512-xkVclRrC921eejsDP79dt7UhwT15825etgQSQx8SvOqaPRNwDdQ7kzep4LIyrdLgPm/3k/gX8qyw0BrN02U27w==", "dev": true, + "license": "MIT", "dependencies": { "analyze-desumasu-dearu": "^2.1.2", "japanese-numerals-to-number": "^1.0.2", @@ -5591,13 +6402,15 @@ "version": "2.1.5", "resolved": "https://registry.npmjs.org/analyze-desumasu-dearu/-/analyze-desumasu-dearu-2.1.5.tgz", "integrity": "sha512-4YPL7IRAuaZflE10+BVhKr6k5KQl/DiLeNCIF7ISqKr0ogM2hqm9ztRNCPqL/xYDI7hfuIHR8T+U7mIDRLQNXw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/textlint-rule-prh": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/textlint-rule-prh/-/textlint-rule-prh-5.3.0.tgz", "integrity": "sha512-gdod+lL1SWUDyXs1ICEwvQawaSshT3mvPGufBIjF2R5WFPdKQDMsiuzsjkLm+aF+9d97dA6pFsiyC8gSW7mSgg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/parser": "^7.7.5", "prh": "^5.4.4", @@ -5610,15 +6423,17 @@ "resolved": "https://registry.npmjs.org/untildify/-/untildify-3.0.3.tgz", "integrity": "sha512-iSk/J8efr8uPT/Z4eSUywnqyrQU7DSdMfdqK4iWEaUVVmcP5JcnpRqmVMwcwcnmI1ATFNgC5V90u09tBynNFKA==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/textlint-rule-sentence-length": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/textlint-rule-sentence-length/-/textlint-rule-sentence-length-5.0.0.tgz", - "integrity": "sha512-NRbzbMYSKZVZWTarJo/uVpHMGe91uZyR4td6fipWmDAwJjjX2HYa6aYEfLM/X99ymo9aLUnOD6wWaUttgViRbw==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/textlint-rule-sentence-length/-/textlint-rule-sentence-length-5.2.0.tgz", + "integrity": "sha512-d7H29IYOEulzT7hLX3pfP0RMch0Ng8TFiRgtmCjD6ubXoXDzBNCDAJK5D9QkUnO1hSHLdG3s3rxNdcBM5/rfCQ==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/regexp-string-matcher": "^2.0.2", "sentence-splitter": "^5.0.0", @@ -5630,31 +6445,22 @@ "version": "13.4.1", "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz", "integrity": "sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ==", - "dev": true - }, - "node_modules/textlint-rule-sentence-length/node_modules/@textlint/regexp-string-matcher": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@textlint/regexp-string-matcher/-/regexp-string-matcher-2.0.2.tgz", - "integrity": "sha512-OXLD9XRxMhd3S0LWuPHpiARQOI7z9tCOs0FsynccW2lmyZzHHFJ9/eR6kuK9xF459Qf+740qI5h+/0cx+NljzA==", "dev": true, - "dependencies": { - "escape-string-regexp": "^4.0.0", - "lodash.sortby": "^4.7.0", - "lodash.uniq": "^4.5.0", - "lodash.uniqwith": "^4.5.0" - } + "license": "MIT" }, "node_modules/textlint-rule-sentence-length/node_modules/boundary": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/boundary/-/boundary-2.0.0.tgz", "integrity": "sha512-rJKn5ooC9u8q13IMCrW0RSp31pxBCHE3y9V/tp3TdWSLf8Em3p6Di4NBpfzbJge9YjjFEsD0RtFEjtvHL5VyEA==", - "dev": true + "dev": true, + "license": "BSD-2-Clause" }, "node_modules/textlint-rule-sentence-length/node_modules/structured-source": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/structured-source/-/structured-source-4.0.0.tgz", "integrity": "sha512-qGzRFNJDjFieQkl/sVOI2dUjHKRyL9dAJi2gCPGJLbJHBIkyOHxjuocpIEfbLioX+qSJpvbYdT49/YCdMznKxA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "boundary": "^2.0.0" } @@ -5664,6 +6470,7 @@ "resolved": "https://registry.npmjs.org/textlint-util-to-string/-/textlint-util-to-string-3.3.4.tgz", "integrity": "sha512-XF4Qfw0ES+czKy03BwuvBUoXC8NAg920VuRxW0pd72fW76zMeMbPI/bRN5PHq3SbCdOm7U69/Pk+DX34xqIYqA==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/ast-node-types": "^13.4.1", "rehype-parse": "^6.0.1", @@ -5676,6 +6483,7 @@ "resolved": "https://registry.npmjs.org/unified/-/unified-8.4.2.tgz", "integrity": "sha512-JCrmN13jI4+h9UAyKEoGcDZV+i1E7BLFuG7OsaDvTXI5P0qhHX+vZO/kOhz9jn8HGENDKbwSeB0nVOg4gVStGA==", "dev": true, + "license": "MIT", "dependencies": { "bail": "^1.0.0", "extend": "^3.0.0", @@ -5689,17 +6497,31 @@ } }, "node_modules/textlint-rule-terminology": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/textlint-rule-terminology/-/textlint-rule-terminology-4.0.1.tgz", - "integrity": "sha512-wKiVhc2B9HP2MFU4x7ZDx+oM5u43ETpKWTLHKvdhPRZ0+davi4M8mFmkZVovDIMO7igsGjixikcvFmnCMg3kmQ==", + "version": "5.2.12", + "resolved": "https://registry.npmjs.org/textlint-rule-terminology/-/textlint-rule-terminology-5.2.12.tgz", + "integrity": "sha512-qLyuqbGN7GBqKR7NT2yLyo8mmYmoCkk8bu3szvLxUkM+1Cc0D9G6MDyaYFrMM26GZuNbTREmuFxon/vTBDR/pw==", "dev": true, + "license": "MIT", "dependencies": { - "lodash": "^4.17.15", - "strip-json-comments": "^3.0.1", - "textlint-rule-helper": "^2.1.1" + "lodash": "^4.17.21", + "strip-json-comments": "^5.0.1", + "textlint-rule-helper": "^2.3.1" }, "engines": { - "node": ">=18" + "node": ">=20" + } + }, + "node_modules/textlint-rule-terminology/node_modules/strip-json-comments": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-5.0.1.tgz", + "integrity": "sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/textlint-tester": { @@ -5707,6 +6529,7 @@ "resolved": "https://registry.npmjs.org/textlint-tester/-/textlint-tester-13.4.1.tgz", "integrity": "sha512-Ubm9kUZ/NyY0Ggo1RkW2o5QSx6EJ/ogMT1kD5b5pk4cdFTWpUSs8StDMROgcz29wPhvS6sY/35qYALzqyZh8ew==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/feature-flag": "^13.4.1", "@textlint/kernel": "^13.4.1", @@ -5718,13 +6541,15 @@ "version": "13.4.1", "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz", "integrity": "sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/textlint-tester/node_modules/@textlint/ast-tester": { "version": "13.4.1", "resolved": "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-13.4.1.tgz", "integrity": "sha512-YSHUR1qDgMPGF5+nvrquEhif6zRJ667xUnfP/9rTNtThIhoTQINvczr5/7xa43F1PDWplL6Curw+2jrE1qHwGQ==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/ast-node-types": "^13.4.1", "debug": "^4.3.4" @@ -5735,6 +6560,7 @@ "resolved": "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-13.4.1.tgz", "integrity": "sha512-uucuC7+NHWkXx2TX5vuyreuHeb+GFiA83V65I+FnYP5EC4dAMOQ86rTSPrZmCwLz+qIWgfDgihGzPccpj3EZGg==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/ast-node-types": "^13.4.1" } @@ -5743,13 +6569,15 @@ "version": "13.4.1", "resolved": "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-13.4.1.tgz", "integrity": "sha512-qY8gKUf30XtzWMTkwYeKytCo6KPx6milpz8YZhuRsEPjT/5iNdakJp5USWDQWDrwbQf7RbRncQdU+LX5JbM9YA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/textlint-tester/node_modules/@textlint/kernel": { "version": "13.4.1", "resolved": "https://registry.npmjs.org/@textlint/kernel/-/kernel-13.4.1.tgz", "integrity": "sha512-r2sUhjPysFjl2Ax37x9AfWkJM8jgKN0bL4SX3xRzOukdcj69Dst5On5qBZtULaVMX1LDkwkdxA6ZEADmq27qQA==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/ast-node-types": "^13.4.1", "@textlint/ast-tester": "^13.4.1", @@ -5768,6 +6596,7 @@ "resolved": "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-13.4.1.tgz", "integrity": "sha512-jUa5bTNmxjEgfCXW4xfn7eSJqzUXyNKiIDWLKtI4MUKRNhT3adEaa/NuQl0Mii3Hu3HraZR7hYhRHLh+eeM43w==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/ast-node-types": "^13.4.1", "debug": "^4.3.4", @@ -5785,6 +6614,7 @@ "resolved": "https://registry.npmjs.org/@textlint/source-code-fixer/-/source-code-fixer-13.4.1.tgz", "integrity": "sha512-Sl29f3Tpimp0uVE3ysyJBjxaFTVYLOXiJX14eWCQ/kC5ZhIXGosEbStzkP1n8Urso1rs1W4p/2UemVAm3NH2ng==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/types": "^13.4.1", "debug": "^4.3.4" @@ -5795,6 +6625,7 @@ "resolved": "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-13.4.1.tgz", "integrity": "sha512-vCA7uMmbjRv06sEHPbwxTV5iS8OQedC5s7qwmXnWAn2LLWxg4Yp98mONPS1o4D5cPomzYyKNCSfbLwu6yJBUQA==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/ast-node-types": "^13.4.1" } @@ -5804,6 +6635,7 @@ "resolved": "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-13.4.1.tgz", "integrity": "sha512-OcLkFKYmbYeGJ0kj2487qcicCYTiE2vJLwfPcUDJrNoMYak5JtvHJfWffck8gON2mEM00DPkHH0UdxZpFjDfeg==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/markdown-to-ast": "^13.4.1" } @@ -5813,6 +6645,7 @@ "resolved": "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-13.4.1.tgz", "integrity": "sha512-z0p5B8WUfTCIRmhjVHFfJv719oIElDDKWOIZei4CyYkfMGo0kq8fkrYBkUR6VZ6gofHwc+mwmIABdUf1rDHzYA==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/text-to-ast": "^13.4.1" } @@ -5822,6 +6655,7 @@ "resolved": "https://registry.npmjs.org/@textlint/types/-/types-13.4.1.tgz", "integrity": "sha512-1ApwQa31sFmiJeJ5yTNFqjbb2D1ICZvIDW0tFSM0OtmQCSDFNcKD3YrrwDBgSokZ6gWQq/FpNjlhi6iETUWt0Q==", "dev": true, + "license": "MIT", "dependencies": { "@textlint/ast-node-types": "^13.4.1" } @@ -5830,19 +6664,22 @@ "version": "13.4.1", "resolved": "https://registry.npmjs.org/@textlint/utils/-/utils-13.4.1.tgz", "integrity": "sha512-wX8RT1ejHAPTDmqlzngf0zI5kYoe3QvGDcj+skoTxSv+m/wOs/NyEr92d+ahCP32YqFYzXlqU7aDx2FkULKT+g==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/textlint-tester/node_modules/boundary": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/boundary/-/boundary-2.0.0.tgz", "integrity": "sha512-rJKn5ooC9u8q13IMCrW0RSp31pxBCHE3y9V/tp3TdWSLf8Em3p6Di4NBpfzbJge9YjjFEsD0RtFEjtvHL5VyEA==", - "dev": true + "dev": true, + "license": "BSD-2-Clause" }, "node_modules/textlint-tester/node_modules/structured-source": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/structured-source/-/structured-source-4.0.0.tgz", "integrity": "sha512-qGzRFNJDjFieQkl/sVOI2dUjHKRyL9dAJi2gCPGJLbJHBIkyOHxjuocpIEfbLioX+qSJpvbYdT49/YCdMznKxA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "boundary": "^2.0.0" } @@ -5852,6 +6689,7 @@ "resolved": "https://registry.npmjs.org/textlint-util-to-string/-/textlint-util-to-string-2.1.1.tgz", "integrity": "sha512-PW6rXqLNGL3xZ6d5/INrX+pt8qbffmeDPLcvkBOlfNpDRFhVvNNjFmZXH86ZQjrOz9t/nNZDBXqnzqJuioJbSQ==", "dev": true, + "license": "MIT", "dependencies": { "object-assign": "^4.0.1", "structured-source": "^3.0.2" @@ -5862,104 +6700,163 @@ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/textlint/node_modules/@textlint/ast-node-types": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-14.0.4.tgz", - "integrity": "sha512-O7L1pgle030Co9ou1+6e2/6GgcIpKgqwEc0XiBabokc22Yl0QEkrf00K/usBDmSx+wo1ficWBux2mfBEF0jnDA==", - "dev": true + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-14.2.0.tgz", + "integrity": "sha512-dOnBuqvsmiNkhHHp1ZaZed1uwvDpVNZWGvZlrckWaJpzsrTTNtxtd627MkMRCdGvIT3+RkfmV9OHqh51JfexRg==", + "dev": true, + "license": "MIT" }, "node_modules/textlint/node_modules/@textlint/ast-tester": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-14.0.4.tgz", - "integrity": "sha512-SQ/2DjxVlDVeCEjVlD8c8R2Sl3VGDZEx8o9+i8bV8NUdY8qsSHbo29/BfiUZf/uaX6eeNpZsurtstJ25hbVrsQ==", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-14.2.0.tgz", + "integrity": "sha512-k7HAVjv5hUFNWUeb1h+3yaoSnwhjKJ55FaFVlUPsW5qFRIAkWaZ0Xpo2IEAyGaa5jgulWe8vEX6ZTmvwi6bzUA==", "dev": true, + "license": "MIT", "dependencies": { - "@textlint/ast-node-types": "^14.0.4", + "@textlint/ast-node-types": "^14.2.0", "debug": "^4.3.4" } }, "node_modules/textlint/node_modules/@textlint/ast-traverse": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-14.0.4.tgz", - "integrity": "sha512-bzFC7UJ2FvhjH5ekXGQ0i9vjK+xzMT69gHBsYVEl+TtbplnH2YY3+sbw6B1j3LocJuo6xngZ2YWXXqmQlKgzLg==", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-14.2.0.tgz", + "integrity": "sha512-qmB+bbLTndlgIObMxoXhdE/t1o6JUQxgw1pzLEtd7rvZO7sNH4Agui1ddlWjaIczj+K40tm8jsfi/74NJtJ9fg==", "dev": true, + "license": "MIT", "dependencies": { - "@textlint/ast-node-types": "^14.0.4" + "@textlint/ast-node-types": "^14.2.0" } }, "node_modules/textlint/node_modules/@textlint/feature-flag": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-14.0.4.tgz", - "integrity": "sha512-1FMZqnjOA4KVpt/aloI1fNs46P0rUeHWcCRKl33/08wRHHMdcbaN4EsHkq7UfriuSfFgUuiyeo0bPjCpv15hhQ==", - "dev": true + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-14.2.0.tgz", + "integrity": "sha512-KjO4ACoKhA10XUi4Wp3dKixfEMFQAE+WLgCDEB5k+cAKPkwaFYjN5vezA1TGe+fSHcQiBjv268F0r3hmtsPf8Q==", + "dev": true, + "license": "MIT" }, "node_modules/textlint/node_modules/@textlint/kernel": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/kernel/-/kernel-14.0.4.tgz", - "integrity": "sha512-6WNoEBZ4lYTYOGK4EEEdjp+kgxSSC1nIFwN6tY9XGVkd4OACzDNothVTvJBwaX73FWFG5zoSjnNQxBDPUHMc8g==", - "dev": true, - "dependencies": { - "@textlint/ast-node-types": "^14.0.4", - "@textlint/ast-tester": "^14.0.4", - "@textlint/ast-traverse": "^14.0.4", - "@textlint/feature-flag": "^14.0.4", - "@textlint/source-code-fixer": "^14.0.4", - "@textlint/types": "^14.0.4", - "@textlint/utils": "^14.0.4", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/kernel/-/kernel-14.2.0.tgz", + "integrity": "sha512-QYF2ZGnkLhd+GYGWL2wpZNjK0ec8HqwGjAsmc49E0g5NKMDvX3U/TYGwjsM8g6WCxGVGS625wr0tm6UxIAK5+Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@textlint/ast-node-types": "^14.2.0", + "@textlint/ast-tester": "^14.2.0", + "@textlint/ast-traverse": "^14.2.0", + "@textlint/feature-flag": "^14.2.0", + "@textlint/source-code-fixer": "^14.2.0", + "@textlint/types": "^14.2.0", + "@textlint/utils": "^14.2.0", "debug": "^4.3.4", "fast-equals": "^4.0.3", "structured-source": "^4.0.0" } }, "node_modules/textlint/node_modules/@textlint/source-code-fixer": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/source-code-fixer/-/source-code-fixer-14.0.4.tgz", - "integrity": "sha512-gIUeWjF0WdSwgCUhW310hKJsWOyRyFe6PGaqqCk7Mhc+vVcePfmC8mmmhVgeuyys/Dhe+0iaP4M1eJf4COaIQw==", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/source-code-fixer/-/source-code-fixer-14.2.0.tgz", + "integrity": "sha512-xMFtpwcs5Z1WTiFBmLN2Fe2GQg3u0kEZgF42AvFHKphbmToKYlGUMw1jaMsEXaxrTOTjqwj3SycRR7rrgKgOxg==", "dev": true, + "license": "MIT", "dependencies": { - "@textlint/types": "^14.0.4", + "@textlint/types": "^14.2.0", "debug": "^4.3.4" } }, "node_modules/textlint/node_modules/@textlint/types": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/types/-/types-14.0.4.tgz", - "integrity": "sha512-SNdFG/GB6utYeHmNfoAMlI+K1NykPxK9TtilkEfhr/fF9TqmeeJ+6CMk5NLQzEvfKm6jUbv2pp5DPS27vo6GKg==", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/types/-/types-14.2.0.tgz", + "integrity": "sha512-lK8HCnkNg+spOHVw1HX0AvwP1BZVlJsbL4OLIHnwfvakfUxLQFXtJ6x2asAXMNMQGqwSWKQrLBCmWZWVsDtReg==", "dev": true, + "license": "MIT", "dependencies": { - "@textlint/ast-node-types": "^14.0.4" + "@textlint/ast-node-types": "^14.2.0" } }, "node_modules/textlint/node_modules/@textlint/utils": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@textlint/utils/-/utils-14.0.4.tgz", - "integrity": "sha512-/ThtVZCB/vB2e8+MnKquCFNO2cKXCPEGxFlkdvJ5g9q9ODpVyFcf2ogYoIlvR7cNotvq67zVjENS7dsGDNFEmw==", - "dev": true + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/@textlint/utils/-/utils-14.2.0.tgz", + "integrity": "sha512-eXRygFRC1CK+BHRqIe2RRFiC8VJMpV7NwsLdBKsFMcivgNRgL6hkhhbrMI6MbPg+jdWM+nK5Z9+QpPYL9c9/pg==", + "dev": true, + "license": "MIT" }, "node_modules/textlint/node_modules/boundary": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/boundary/-/boundary-2.0.0.tgz", "integrity": "sha512-rJKn5ooC9u8q13IMCrW0RSp31pxBCHE3y9V/tp3TdWSLf8Em3p6Di4NBpfzbJge9YjjFEsD0RtFEjtvHL5VyEA==", - "dev": true + "dev": true, + "license": "BSD-2-Clause" + }, + "node_modules/textlint/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } }, "node_modules/textlint/node_modules/get-stdin": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-5.0.1.tgz", "integrity": "sha512-jZV7n6jGE3Gt7fgSTJoz91Ak5MuTLwMwkoYdjxuJ/AmjIsE1UC03y/IWkZCQGEvVNS9qoRNwy5BCqxImv0FVeA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.12.0" } }, + "node_modules/textlint/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/textlint/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/textlint/node_modules/mkdirp": { "version": "0.5.6", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dev": true, + "license": "MIT", "dependencies": { "minimist": "^1.2.6" }, @@ -5972,15 +6869,27 @@ "resolved": "https://registry.npmjs.org/structured-source/-/structured-source-4.0.0.tgz", "integrity": "sha512-qGzRFNJDjFieQkl/sVOI2dUjHKRyL9dAJi2gCPGJLbJHBIkyOHxjuocpIEfbLioX+qSJpvbYdT49/YCdMznKxA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "boundary": "^2.0.0" } }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, "node_modules/to-regex": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", "dev": true, + "license": "MIT", "dependencies": { "define-property": "^2.0.2", "extend-shallow": "^3.0.2", @@ -5996,6 +6905,7 @@ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, + "license": "MIT", "dependencies": { "is-number": "^7.0.0" }, @@ -6007,13 +6917,15 @@ "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/traverse": { - "version": "0.6.9", - "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.9.tgz", - "integrity": "sha512-7bBrcF+/LQzSgFmT0X5YclVqQxtv7TDJ1f8Wj7ibBu/U6BMLeOpUxuZjV7rMc44UtKxlnMFigdhFAIszSX1DMg==", + "version": "0.6.10", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.10.tgz", + "integrity": "sha512-hN4uFRxbK+PX56DxYiGHsTn2dME3TVr9vbNqlQGcGcPhJAn+tdP126iA+TArMpI4YSgnTkMWyoLl5bf81Hi5TA==", "dev": true, + "license": "MIT", "dependencies": { "gopd": "^1.0.1", "typedarray.prototype.slice": "^1.0.3", @@ -6031,6 +6943,7 @@ "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz", "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -6041,13 +6954,15 @@ "resolved": "https://registry.npmjs.org/try-resolve/-/try-resolve-1.0.1.tgz", "integrity": "sha512-yHeaPjCBzVaXwWl5IMUapTaTC2rn/eBYg2fsG2L+CvJd+ttFbk0ylDnpTO3wVhosmE1tQEvcebbBeKLCwScQSQ==", "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, + "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1" }, @@ -6060,6 +6975,7 @@ "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", @@ -6074,6 +6990,7 @@ "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", @@ -6093,6 +7010,7 @@ "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", "dev": true, + "license": "MIT", "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.7", @@ -6113,6 +7031,7 @@ "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", @@ -6133,6 +7052,7 @@ "resolved": "https://registry.npmjs.org/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.3.tgz", "integrity": "sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -6152,13 +7072,15 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/unbox-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "has-bigints": "^1.0.2", @@ -6170,16 +7092,18 @@ } }, "node_modules/undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", - "dev": true + "version": "6.19.8", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", + "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", + "dev": true, + "license": "MIT" }, "node_modules/unified": { "version": "9.2.2", "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.2.tgz", "integrity": "sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==", "dev": true, + "license": "MIT", "dependencies": { "bail": "^1.0.0", "extend": "^3.0.0", @@ -6212,6 +7136,7 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "engines": { "node": ">=4" } @@ -6220,19 +7145,22 @@ "version": "0.2.2", "resolved": "https://registry.npmjs.org/unique-concat/-/unique-concat-0.2.2.tgz", "integrity": "sha512-nFT3frbsvTa9rrc71FJApPqXF8oIhVHbX3IWgObQi1mF7WrW48Ys70daL7o4evZUtmUf6Qn6WK0LbHhyO0hpXw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/unist-types": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/unist-types/-/unist-types-1.4.0.tgz", "integrity": "sha512-umIkg5iLYjZiDiZuX7wgG5UFd1z5NoiWkxk7xU00wXfj+i8ZePdcMWS9freHKJgAPyk6dkaKqc4akATCH/hNFA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/unist-util-is": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", "dev": true, + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -6243,6 +7171,7 @@ "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^2.0.2" }, @@ -6256,6 +7185,7 @@ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0", @@ -6271,6 +7201,7 @@ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0" @@ -6285,6 +7216,7 @@ "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 4.0.0" } @@ -6294,30 +7226,24 @@ "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "dependencies": { - "punycode": "^2.1.0" - } - }, "node_modules/url-join": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, + "license": "Apache-2.0", "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" @@ -6328,6 +7254,7 @@ "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz", "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "is-buffer": "^2.0.0", @@ -6344,6 +7271,7 @@ "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-stringify-position": "^2.0.0" @@ -6372,6 +7300,7 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "engines": { "node": ">=4" } @@ -6381,6 +7310,7 @@ "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-1.1.4.tgz", "integrity": "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -6390,13 +7320,15 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "dev": true + "dev": true, + "license": "BSD-2-Clause" }, "node_modules/whatwg-url": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "dev": true, + "license": "MIT", "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" @@ -6407,6 +7339,7 @@ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -6422,6 +7355,7 @@ "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", "dev": true, + "license": "MIT", "dependencies": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", @@ -6438,6 +7372,7 @@ "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", "dev": true, + "license": "MIT", "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.7", @@ -6452,11 +7387,22 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/wrap-ansi": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", @@ -6475,6 +7421,7 @@ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -6488,10 +7435,11 @@ } }, "node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -6504,6 +7452,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -6515,13 +7464,15 @@ "version": "9.2.2", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/wrap-ansi/node_modules/string-width": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dev": true, + "license": "MIT", "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", @@ -6539,6 +7490,7 @@ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, + "license": "MIT", "dependencies": { "ansi-regex": "^6.0.1" }, @@ -6553,13 +7505,15 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/write": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", "dev": true, + "license": "MIT", "dependencies": { "mkdirp": "^0.5.1" }, @@ -6572,6 +7526,7 @@ "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz", "integrity": "sha512-SdrHoC/yVBPpV0Xq/mUZQIpW2sWXAShb/V4pomcJXh92RuaO+f3UTWItiR3Px+pLnV2PvC2/bfn5cwr5X6Vfxw==", "dev": true, + "license": "ISC", "dependencies": { "graceful-fs": "^4.1.11", "imurmurhash": "^0.1.4", @@ -6583,6 +7538,7 @@ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dev": true, + "license": "MIT", "dependencies": { "minimist": "^1.2.6" }, @@ -6595,6 +7551,7 @@ "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.4" } @@ -6604,6 +7561,7 @@ "resolved": "https://registry.npmjs.org/zlibjs/-/zlibjs-0.3.1.tgz", "integrity": "sha512-+J9RrgTKOmlxFSDHo0pI1xM6BLVUv+o0ZT9ANtCxGkjIVCCUdx9alUF8Gm+dGLKbkkkidWIHFDZHDMpfITt4+w==", "dev": true, + "license": "MIT", "engines": { "node": "*" } @@ -6613,6 +7571,7 @@ "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz", "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" diff --git a/package.json b/package.json index 283e7de4a0..95589ef1ee 100644 --- a/package.json +++ b/package.json @@ -12,8 +12,8 @@ "devDependencies": { "@proofdict/textlint-rule-proofdict": "3.1.2", "@textlint-ja/textlint-rule-no-insert-dropping-sa": "2.0.1", - "markdownlint-cli": "0.39.0", - "textlint": "14.0.4", + "markdownlint-cli": "0.42.0", + "textlint": "14.2.0", "textlint-filter-rule-comments": "1.2.2", "textlint-rule-abbr-within-parentheses": "1.0.2", "textlint-rule-footnote-order": "1.0.3", @@ -21,14 +21,15 @@ "textlint-rule-ja-hiragana-fukushi": "1.3.0", "textlint-rule-ja-hiragana-hojodoushi": "1.1.0", "textlint-rule-ja-hiragana-keishikimeishi": "1.1.0", - "textlint-rule-no-dead-link": "5.1.2", + "textlint-rule-no-dead-link": "5.2.0", "textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet": "1.0.1", "textlint-rule-prefer-tari-tari": "1.0.3", - "textlint-rule-preset-ja-spacing": "2.4.1", + "textlint-rule-preset-ja-spacing": "2.4.3", "textlint-rule-preset-ja-technical-writing": "10.0.1", - "textlint-rule-terminology": "4.0.1" + "textlint-rule-terminology": "5.2.12" }, "engines": { - "npm": "^10.5.0 || ^8.19.2" + "node": ">=20", + "npm": "^10.8.2 || ^10.8.2 || ^8.19.2" } } diff --git a/plugins/analyze.py b/plugins/analyze.py index 230e31eabf..a39205c024 100644 --- a/plugins/analyze.py +++ b/plugins/analyze.py @@ -19,37 +19,7 @@ def analyze_slack_message(messages: List[dict]) -> Callable[[SlackClient], None] def analyze_message(message: str) -> Callable[[BaseClient], None]: """コマンド解析""" - conditions = { - "help": lambda m: hato.help_message, - "eq": lambda m: partial(hato.earth_quake), - "地震": lambda m: partial(hato.earth_quake), - "textlint": lambda m: partial(hato.textlint, text=m[len("textlint ") :]), - "text list": lambda m: hato.get_text_list, - "text add ": lambda m: partial(hato.add_text, word=m[len("text add ") :]), - "text show ": lambda m: partial( - hato.show_text, power_word_id=m[len("text show ") :] - ), - "text delete ": lambda m: partial( - hato.delete_text, power_word_id=m[len("text delete ") :] - ), - "text random": lambda m: hato.show_random_text, - "text": lambda m: hato.show_random_text, - ">< ": lambda m: partial(hato.totuzensi, message=m[len(">< ") :]), - "amesh": lambda m: partial(hato.amesh, place=m[len("amesh") :].strip()), - "amedas": lambda m: partial(hato.amedas, place=m[len("amedas") :].strip()), - "電力": lambda m: hato.electricity_demand, - "標高": lambda m: partial(hato.altitude, place=m[len("標高") :].strip()), - "version": lambda m: hato.version, - "にゃーん": lambda m: hato.yoshiyoshi, - "おみくじ": lambda m: hato.omikuji, - "chat": lambda m: partial(hato.chat, message=m[len("chat") :].strip()), - "画像生成": lambda m: partial( - hato.image_generate, message=m[len("画像生成") :].strip() - ), - "ping": lambda m: hato.ping, - } - - for key, method in conditions.items(): + for key, method in hato.conditions.items(): if message.startswith(key): return method(message) - return hato.default_action + return partial(hato.default_action, message=message) diff --git a/plugins/hato.py b/plugins/hato.py index 11f115930b..76d2f48a9b 100644 --- a/plugins/hato.py +++ b/plugins/hato.py @@ -6,6 +6,7 @@ import json import os import re +from functools import partial from logging import getLogger from tempfile import NamedTemporaryFile from typing import List, Optional @@ -37,6 +38,32 @@ logger = getLogger(__name__) +conditions = { + "help": lambda m: help_message, + "eq": lambda m: partial(earth_quake), + "地震": lambda m: partial(earth_quake), + "textlint": lambda m: partial(textlint, text=m[len("textlint ") :]), + "text list": lambda m: get_text_list, + "text add ": lambda m: partial(add_text, word=m[len("text add ") :]), + "text show ": lambda m: partial(show_text, power_word_id=m[len("text show ") :]), + "text delete ": lambda m: partial( + delete_text, power_word_id=m[len("text delete ") :] + ), + "text random": lambda m: show_random_text, + "text": lambda m: show_random_text, + ">< ": lambda m: partial(totuzensi, message=m[len(">< ") :]), + "amesh": lambda m: partial(amesh, place=m[len("amesh") :].strip()), + "amedas": lambda m: partial(amedas, place=m[len("amedas") :].strip()), + "電力": lambda m: electricity_demand, + "標高": lambda m: partial(altitude, place=m[len("標高") :].strip()), + "version": lambda m: version, + "にゃーん": lambda m: yoshiyoshi, + "おみくじ": lambda m: omikuji, + "chat": lambda m: partial(chat, message=m[len("chat") :].strip()), + "画像生成": lambda m: partial(image_generate, message=m[len("画像生成") :].strip()), + "ping": lambda m: ping, +} + def action(plugin_name: str, with_client: bool = False): """ @@ -83,11 +110,15 @@ def help_message(): return os.linesep.join(str_help) -@action("default") -def default_action(): +@action("default", with_client=True) +def default_action(client: BaseClient, message: str): """どのコマンドにもマッチしなかった""" - return conf.DEFAULT_REPLY + try: + conditions["chat"](message)(client=client) + except Exception as e: + logger.exception(e) + client.post(conf.DEFAULT_REPLY) @action("eq", with_client=True) @@ -293,7 +324,7 @@ def amedas(client: BaseClient, place: str): ] if "temp" in amedas_data: - res.append(f"気温: {amedas_data['temp'][0]}℃") + res.append(f"気温: 摂氏{amedas_data['temp'][0]}度") if "precipitation1h" in amedas_data: res.append(f"降水量 (前1時間): {amedas_data['precipitation1h'][0]}mm") diff --git a/postgres/Dockerfile b/postgres/Dockerfile index 9e75c8da6e..4fe3d73148 100644 --- a/postgres/Dockerfile +++ b/postgres/Dockerfile @@ -1,4 +1,4 @@ -FROM postgres:15.6-bullseye +FROM postgres:15.8-bullseye RUN find / -type f -perm /u+s -ignore_readdir_race -exec chmod u-s {} \; && \ find / -type f -perm /g+s -ignore_readdir_race -exec chmod g-s {} \; diff --git a/renovate.json b/renovate.json index ce0e09de55..e0d936accb 100644 --- a/renovate.json +++ b/renovate.json @@ -1,15 +1,9 @@ { - "extends": [ - "github>dev-hato/renovate-config" - ], + "extends": ["github>dev-hato/renovate-config"], "packageRules": [ { - "matchPackageNames": [ - "postgres" - ], - "matchUpdateTypes": [ - "major" - ], + "matchPackageNames": ["postgres"], + "matchUpdateTypes": ["major"], "enabled": false } ] diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000..d08b0ecd5f --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +pipenv==2024.0.3 diff --git a/run.py b/run.py index b05dbe1926..1713a4912d 100644 --- a/run.py +++ b/run.py @@ -153,7 +153,7 @@ def status(): return jsonify({"message": "hato-bot is running", "version": conf.VERSION}), 200 -intents = discord.Intents.all() +intents = discord.Intents(messages=True, typing=True) discordClient = discord.Client(intents=intents) @@ -192,6 +192,7 @@ def main(): discordClient.run(token=conf.DISCORD_API_TOKEN) elif conf.MODE == "misskey": misskey_client = Misskey(conf.MISSKEY_DOMAIN, i=conf.MISSKEY_API_TOKEN) + misskey_client.timeout = 2 async def misskey_runner(): while True: @@ -221,8 +222,11 @@ async def misskey_runner(): note = data["body"]["body"] host = note["user"].get("host") mentions = note.get("mentions") + # FEDERATIONがtrueならばリモートからのメンションにも応答する。 + # falseならばローカルのメンションのみに応答する。 if ( - host is None or host == conf.MISSKEY_DOMAIN + (conf.MISSKEY_FEDERATION == "true") + or (host is None or host == conf.MISSKEY_DOMAIN) ) and mentions: cred = None @@ -232,7 +236,7 @@ async def misskey_runner(): break except ReadTimeout as e: logger.exception(e) - time.sleep(1) + await asyncio.sleep(1) if cred is not None and cred["id"] in mentions: client = MisskeyClient(misskey_client, note) @@ -247,12 +251,11 @@ async def misskey_runner(): logger.exception(e) client.post("エラーが発生したっぽ......") except websockets.ConnectionClosedError: - time.sleep(1) + await asyncio.sleep(1) while True: try: - asyncio.get_event_loop().run_until_complete(misskey_runner()) - break + asyncio.run(misskey_runner()) except websockets.exceptions.InvalidStatusCode as e: if e.status_code == 502: logger.exception(e) diff --git a/scripts/create_pull_request_hato_bot.js b/scripts/create_pull_request_hato_bot.js index f281e906c5..76cc3d94c4 100644 --- a/scripts/create_pull_request_hato_bot.js +++ b/scripts/create_pull_request_hato_bot.js @@ -1,26 +1,22 @@ module.exports = async ({ github, pullsCreateParams, commonParams }) => { - console.log('call pulls.create:', pullsCreateParams) - const createPullRes = await github.rest.pulls.create( - pullsCreateParams - ) - const number = createPullRes.data.number - const releaseUsers = ['nakkaa'] + console.log("call pulls.create:", pullsCreateParams); + const createPullRes = await github.rest.pulls.create(pullsCreateParams); + const number = createPullRes.data.number; + const releaseUsers = ["nakkaa"]; const pullsRequestReviewsParams = { pull_number: number, reviewers: releaseUsers, - ...commonParams - } - console.log('call pulls.requestReviewers:') - console.log(pullsRequestReviewsParams) - await github.rest.pulls.requestReviewers( - pullsRequestReviewsParams - ) + ...commonParams, + }; + console.log("call pulls.requestReviewers:"); + console.log(pullsRequestReviewsParams); + await github.rest.pulls.requestReviewers(pullsRequestReviewsParams); const issuesAddAssigneesParams = { issue_number: number, assignees: releaseUsers, - ...commonParams - } - console.log('call issues.addAssignees:') - console.log(issuesAddAssigneesParams) - await github.rest.issues.addAssignees(issuesAddAssigneesParams) -} + ...commonParams, + }; + console.log("call issues.addAssignees:"); + console.log(issuesAddAssigneesParams); + await github.rest.issues.addAssignees(issuesAddAssigneesParams); +}; diff --git a/scripts/pr_check_npm/npm_install.sh b/scripts/deploy_hato_bot/npm_install.sh similarity index 100% rename from scripts/pr_check_npm/npm_install.sh rename to scripts/deploy_hato_bot/npm_install.sh diff --git a/scripts/deploy_hato_bot/pr_update_version/get_npm_version.sh b/scripts/deploy_hato_bot/pr_update_version/get_npm_version.sh new file mode 100755 index 0000000000..2b8acb2db9 --- /dev/null +++ b/scripts/deploy_hato_bot/pr_update_version/get_npm_version.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env bash + +DOCKER_CMD="npm --version" +DEPENDABOT_NPM_VERSION="$(docker run ghcr.io/dependabot/dependabot-core sh -c "${DOCKER_CMD}")" +echo "Dependabot npm version:" "${DEPENDABOT_NPM_VERSION}" +RENOVATE_NPM_VERSION="$(docker run ghcr.io/renovatebot/renovate sh -c "${DOCKER_CMD}")" +echo "Renovate npm version:" "${RENOVATE_NPM_VERSION}" +cp .env.example .env +export TAG_NAME="${HEAD_REF//\//-}" +docker compose pull +HATO_BOT_NPM_VERSION="$(docker compose run hato-bot sh -c "${DOCKER_CMD}")" +echo "hato-bot npm version:" "${HATO_BOT_NPM_VERSION}" +NPM_PATTERN_PACKAGE="s/\"npm\": \".*\"/\"npm\": \"^${HATO_BOT_NPM_VERSION} || ^${RENOVATE_NPM_VERSION} || ^${DEPENDABOT_NPM_VERSION}\"/g" +sed -i -e "${NPM_PATTERN_PACKAGE}" package.json +bash "${GITHUB_WORKSPACE}/scripts/deploy_hato_bot/npm_install.sh" diff --git a/scripts/get_pull_requests_hato_bot.js b/scripts/get_pull_requests_hato_bot.js index 82a259bc67..9a8ce48131 100644 --- a/scripts/get_pull_requests_hato_bot.js +++ b/scripts/get_pull_requests_hato_bot.js @@ -2,11 +2,11 @@ module.exports = async ({ github, context }) => { const pullsListParams = { owner: context.repo.owner, repo: context.repo.repo, - head: context.repo.owner + ':develop', - base: 'master', - state: 'open' - } - console.log('call pulls.list:', pullsListParams) - const pulls = await github.paginate(github.rest.pulls.list, pullsListParams) - return pulls.length -} + head: context.repo.owner + ":develop", + base: "master", + state: "open", + }; + console.log("call pulls.list:", pullsListParams); + const pulls = await github.paginate(github.rest.pulls.list, pullsListParams); + return pulls.length; +}; diff --git a/scripts/pr_format/pr_format/pipenv_install.sh b/scripts/pipenv_install.sh similarity index 64% rename from scripts/pr_format/pr_format/pipenv_install.sh rename to scripts/pipenv_install.sh index f325620c9d..2f7b478c53 100755 --- a/scripts/pr_format/pr_format/pipenv_install.sh +++ b/scripts/pipenv_install.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash +pip install -r requirements.txt pipenv --version pipenv install --dev diff --git a/scripts/pr_check_npm/pr_update_version/get_npm_version.sh b/scripts/pr_check_npm/pr_update_version/get_npm_version.sh deleted file mode 100755 index ff86a68b9b..0000000000 --- a/scripts/pr_check_npm/pr_update_version/get_npm_version.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash - -DOCKER_CMD="npm --version" -DEPENDABOT_NPM_VERSION="$(docker run ghcr.io/dependabot/dependabot-core sh -c "${DOCKER_CMD}")" -echo "Dependabot npm version:" "${DEPENDABOT_NPM_VERSION}" -RENOVATE_NPM_VERSION="$(docker run ghcr.io/renovatebot/renovate sh -c "${DOCKER_CMD}")" -echo "Renovate npm version:" "${RENOVATE_NPM_VERSION}" -NPM_PATTERN_PACKAGE="s/\"npm\": \".*\"/\"npm\": \"^${RENOVATE_NPM_VERSION} || ^${DEPENDABOT_NPM_VERSION}\"/g" -sed -i -e "${NPM_PATTERN_PACKAGE}" package.json -bash "${GITHUB_WORKSPACE}/scripts/pr_check_npm/npm_install.sh" diff --git a/scripts/pr_copy_ci_hato_bot/pr_copy_ci/dispatch_event.js b/scripts/pr_copy_ci_hato_bot/pr_copy_ci/dispatch_event.js index 4af71e3375..83607f72bd 100644 --- a/scripts/pr_copy_ci_hato_bot/pr_copy_ci/dispatch_event.js +++ b/scripts/pr_copy_ci_hato_bot/pr_copy_ci/dispatch_event.js @@ -1,13 +1,13 @@ module.exports = async ({ github, context }) => { const actionsCreateWorkflowDispatchParams = { owner: context.repo.owner, - repo: 'sudden-death', + repo: "sudden-death", workflow_id: 2452313, - ref: 'master' - } - console.log('call actions.createWorkflowDispatch:') - console.log(actionsCreateWorkflowDispatchParams) + ref: "master", + }; + console.log("call actions.createWorkflowDispatch:"); + console.log(actionsCreateWorkflowDispatchParams); await github.rest.actions.createWorkflowDispatch({ - ...actionsCreateWorkflowDispatchParams - }) -} + ...actionsCreateWorkflowDispatchParams, + }); +}; diff --git a/scripts/pr_format/pr_format/install_pipenv.sh b/scripts/pr_format/pr_format/install_pipenv.sh deleted file mode 100755 index c235e4a109..0000000000 --- a/scripts/pr_format/pr_format/install_pipenv.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env bash - -file_name=Dockerfile -package_name=pipenv - -if [ -f ${file_name} ]; then - PATTERN="${package_name}[^ ]+" - package_name_with_version=$(grep -oE "${PATTERN}" ${file_name}) -else - package_name_with_version=${package_name} -fi - -pip install "${package_name_with_version}" - -if [ -f ${file_name} ]; then - new_version="$(pip list --outdated | grep pipenv || true)" - new_version="$(echo -e "${new_version}" | awk '{print $3}')" - if [ -n "${new_version}" ]; then - PATTERN_BEFORE="${package_name}[^ ]+" - PATTERN_AFTER="${package_name}==${new_version}" - sed -i -E "s/${PATTERN_BEFORE}/${PATTERN_AFTER}/g" ${file_name} - pip install "${package_name}==${new_version}" - exit 1 - fi -fi diff --git a/scripts/pr_merge_develop_hato_bot/pr_master_to_develop/create_pull_request.js b/scripts/pr_merge_develop_hato_bot/pr_master_to_develop/create_pull_request.js index 3bbc8aa6e1..ecd48c321d 100644 --- a/scripts/pr_merge_develop_hato_bot/pr_master_to_develop/create_pull_request.js +++ b/scripts/pr_merge_develop_hato_bot/pr_master_to_develop/create_pull_request.js @@ -1,16 +1,18 @@ -const script = require(`${process.env.GITHUB_WORKSPACE}/scripts/create_pull_request_hato_bot.js`) +const script = require( + `${process.env.GITHUB_WORKSPACE}/scripts/create_pull_request_hato_bot.js`, +); module.exports = async ({ github, context }) => { const commonParams = { owner: context.repo.owner, - repo: context.repo.repo - } + repo: context.repo.repo, + }; const pullsCreateParams = { - head: context.repo.owner + ':master', - base: 'develop', - title: 'master -> develop', - body: '鳩の歴史は同期される\ndevelopに新たなコミットがpushされる前にマージしてね!', - ...commonParams - } - script({ github, pullsCreateParams, commonParams }) -} + head: context.repo.owner + ":master", + base: "develop", + title: "master -> develop", + body: "鳩の歴史は同期される\ndevelopに新たなコミットがpushされる前にマージしてね!", + ...commonParams, + }; + script({ github, pullsCreateParams, commonParams }); +}; diff --git a/scripts/pr_release_hato_bot/pr_release/create_pull_request.js b/scripts/pr_release_hato_bot/pr_release/create_pull_request.js index ca690e9a49..98b17e9378 100644 --- a/scripts/pr_release_hato_bot/pr_release/create_pull_request.js +++ b/scripts/pr_release_hato_bot/pr_release/create_pull_request.js @@ -1,17 +1,19 @@ -const script = require(`${process.env.GITHUB_WORKSPACE}/scripts/create_pull_request_hato_bot.js`) +const script = require( + `${process.env.GITHUB_WORKSPACE}/scripts/create_pull_request_hato_bot.js`, +); module.exports = async ({ github, context }) => { const commonParams = { owner: context.repo.owner, - repo: context.repo.repo - } + repo: context.repo.repo, + }; const pullsCreateParams = { - head: context.repo.owner + ':develop', - base: 'master', - title: 'リリース', - body: '鳩は唐揚げになるため、片栗粉へ飛び込む', + head: context.repo.owner + ":develop", + base: "master", + title: "リリース", + body: "鳩は唐揚げになるため、片栗粉へ飛び込む", draft: true, - ...commonParams - } - script({ github, pullsCreateParams, commonParams }) -} + ...commonParams, + }; + script({ github, pullsCreateParams, commonParams }); +}; diff --git a/scripts/pr_test/pr_super_lint/install_pipenv.sh b/scripts/pr_test/pr_super_lint/set_venv_path.sh similarity index 68% rename from scripts/pr_test/pr_super_lint/install_pipenv.sh rename to scripts/pr_test/pr_super_lint/set_venv_path.sh index 973179ac6c..6c08a1cec7 100755 --- a/scripts/pr_test/pr_super_lint/install_pipenv.sh +++ b/scripts/pr_test/pr_super_lint/set_venv_path.sh @@ -1,18 +1,5 @@ #!/usr/bin/env bash -file_name=Dockerfile -package_name=pipenv - -if [ -f ${file_name} ]; then - package_name_v=$(grep -oE "${package_name}[^ ]+" ${file_name}) -else - package_name_v=${package_name} -fi - -pip install "${package_name_v}" -pipenv --version -pipenv install --dev - # 環境ファイルを使ってenvにsetしている # 参考URL: https://bit.ly/2KJhjqk venv_path=$(pipenv --venv) diff --git a/scripts/pr_test_hato_bot/pr_test/test.sh b/scripts/pr_test_hato_bot/pr_test/test.sh index 07db607163..bb9ca7bded 100755 --- a/scripts/pr_test_hato_bot/pr_test/test.sh +++ b/scripts/pr_test_hato_bot/pr_test/test.sh @@ -1,17 +1,4 @@ #!/usr/bin/env bash -file_name=Dockerfile -package_name=pipenv - -if [ -f ${file_name} ]; then - PATTERN="${package_name}[^ ]+" - package_name_with_version=$(grep -oE "${PATTERN}" ${file_name}) -else - package_name_with_version=${package_name} -fi - -pip install "${package_name_with_version}" -pipenv --version -pipenv install --dev cp .env.example .env pipenv run python -m unittest diff --git a/slackbot_settings.py b/slackbot_settings.py index 80858ffff9..99f6985217 100644 --- a/slackbot_settings.py +++ b/slackbot_settings.py @@ -43,9 +43,10 @@ # Misskey用の設定 MISSKEY_DOMAIN = str(os.environ["MISSKEY_DOMAIN"]) MISSKEY_API_TOKEN = str(os.environ["MISSKEY_API_TOKEN"]) +MISSKEY_FEDERATION = str(os.environ.get("MISSKEY_FEDERATION", "false")) MODE = str(os.environ["MODE"]) GIT_COMMIT_HASH = os.environ.get("GIT_COMMIT_HASH") -VERSION = "3.0.4" +VERSION = "3.0.5" diff --git a/tests/plugins/test_amedas_map.json b/tests/plugins/test_amedas_map.json index 934a131b3d..0bb0e2435b 100644 --- a/tests/plugins/test_amedas_map.json +++ b/tests/plugins/test_amedas_map.json @@ -1,43864 +1,12895 @@ { "11001": { - "temp": [ - 19.9, - 0 - ], - "humidity": [ - 81, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 21.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 8.6, - 0 - ] + "temp": [19.9, 0], + "humidity": [81, 0], + "sun10m": [10, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [21.5, 0], + "windDirection": [11, 0], + "wind": [8.6, 0] }, "11016": { - "pressure": [ - 1002.2, - 0 - ], - "normalPressure": [ - 1003.6, - 0 - ], - "temp": [ - 20.3, - 0 - ], - "humidity": [ - 70, - 0 - ], - "visibility": [ - 18870, - 0 - ], - "sun10m": [ - 9, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 33.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 7.4, - 0 - ] + "pressure": [1002.2, 0], + "normalPressure": [1003.6, 0], + "temp": [20.3, 0], + "humidity": [70, 0], + "visibility": [18870, 0], + "sun10m": [9, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [33.5, 0], + "windDirection": [9, 0], + "wind": [7.4, 0] }, "11046": { - "temp": [ - 18.6, - 0 - ], - "humidity": [ - 72, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 36, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 10.6, - 0 - ] + "temp": [18.6, 0], + "humidity": [72, 0], + "sun10m": [10, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [36, 0], + "windDirection": [10, 0], + "wind": [10.6, 0] }, "11061": { - "temp": [ - 20.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 19, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 11.5, - 0 - ] + "temp": [20.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [19, 0], + "windDirection": [10, 0], + "wind": [11.5, 0] }, "11076": { - "temp": [ - 19.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 8, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 7.4, - 0 - ] + "temp": [19.5, 0], + "sun10m": [0, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [8, 0], + "windDirection": [10, 0], + "wind": [7.4, 0] }, "11091": { - "temp": [ - 19.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 26.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 14.9, - 0 - ] + "temp": [19.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [26.5, 0], + "windDirection": [10, 0], + "wind": [14.9, 0] }, "11121": { - "temp": [ - 19.6, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 19, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 5.9, - 0 - ] + "temp": [19.6, 0], + "sun10m": [10, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [19, 0], + "windDirection": [10, 0], + "wind": [5.9, 0] }, "11151": { - "temp": [ - 20, - 0 - ], - "humidity": [ - 70, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 27, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 10.7, - 0 - ] + "temp": [20, 0], + "humidity": [70, 0], + "sun10m": [10, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [27, 0], + "windDirection": [9, 0], + "wind": [10.7, 0] }, "11176": { - "temp": [ - 20.2, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 18, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 4.6, - 0 - ] + "temp": [20.2, 0], + "sun10m": [5, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [18, 0], + "windDirection": [10, 0], + "wind": [4.6, 0] }, "11206": { - "temp": [ - 20, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 4, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 3.7, - 0 - ] + "temp": [20, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [4, 0], + "windDirection": [10, 0], + "wind": [3.7, 0] }, "11276": { - "temp": [ - 19.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 7.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [19.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [7.5, 0], + "windDirection": [9, 0], + "wind": [2.6, 0] }, "11291": { - "pressure": [ - 1003.2, - 0 - ], - "normalPressure": [ - 1004.2, - 0 - ], - "temp": [ - 20.5, - 0 - ], - "humidity": [ - 67, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 8.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 5.9, - 0 - ] + "pressure": [1003.2, 0], + "normalPressure": [1004.2, 0], + "temp": [20.5, 0], + "humidity": [67, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [8.5, 0], + "windDirection": [11, 0], + "wind": [5.9, 0] }, "11316": { - "temp": [ - 21.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 6.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 4.7, - 0 - ] + "temp": [21.3, 0], + "sun10m": [0, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [6.5, 0], + "windDirection": [11, 0], + "wind": [4.7, 0] }, "12011": { - "temp": [ - 20.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 9.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 5.5, - 0 - ] + "temp": [20.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [9.5, 0], + "windDirection": [10, 0], + "wind": [5.5, 0] }, "12041": { - "temp": [ - 19.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 12.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 3.5, - 0 - ] + "temp": [19.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [12.5, 0], + "windDirection": [9, 0], + "wind": [3.5, 0] }, "12066": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 10, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [10, 0] }, "12141": { - "temp": [ - 19.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 10.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [19.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [10.5, 0], + "windDirection": [8, 0], + "wind": [2.6, 0] }, "12181": { - "temp": [ - 18.7, - 0 - ], - "humidity": [ - 90, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 11, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [18.7, 0], + "humidity": [90, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2, 0], + "precipitation24h": [11, 0], + "windDirection": [12, 0], + "wind": [1.6, 0] }, "12217": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 10, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [10, 0] }, "12231": { - "temp": [ - 18.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 5.5, - 0 - ], - "precipitation24h": [ - 14, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [18.7, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [5.5, 0], + "precipitation24h": [14, 0], + "windDirection": [9, 0], + "wind": [1, 0] }, "12256": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 14.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2, 0], + "precipitation24h": [14.5, 0] }, "12261": { - "temp": [ - 18.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 12.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [18.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [12.5, 0], + "windDirection": [8, 0], + "wind": [1.1, 0] }, "12266": { - "temp": [ - 17.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 13.5, - 0 - ], - "precipitation24h": [ - 25.5, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [17.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [13.5, 0], + "precipitation24h": [25.5, 0], + "windDirection": [3, 0], + "wind": [1, 0] }, "12301": { - "temp": [ - 18.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 8.5, - 0 - ], - "precipitation24h": [ - 21, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [18.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [8.5, 0], + "precipitation24h": [21, 0], + "windDirection": [6, 0], + "wind": [1.6, 0] }, "12386": { - "temp": [ - 19.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 6, - 0 - ], - "precipitation24h": [ - 20.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [19.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [6, 0], + "precipitation24h": [20.5, 0], + "windDirection": [11, 0], + "wind": [1.6, 0] }, "12396": { - "temp": [ - 18.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 7, - 0 - ], - "precipitation24h": [ - 22.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [18.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [7, 0], + "precipitation24h": [22.5, 0], + "windDirection": [9, 0], + "wind": [1.9, 0] }, "12411": { - "temp": [ - 16.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 2, - 0 - ], - "precipitation3h": [ - 10.5, - 0 - ], - "precipitation24h": [ - 23.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [16.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [2, 0], + "precipitation3h": [10.5, 0], + "precipitation24h": [23.5, 0], + "windDirection": [13, 0], + "wind": [1.9, 0] }, "12442": { - "pressure": [ - 990.1, - 0 - ], - "normalPressure": [ - 1006.3, - 0 - ], - "temp": [ - 19.4, - 0 - ], - "humidity": [ - 81, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 7, - 0 - ], - "precipitation24h": [ - 23, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 6.3, - 0 - ] + "pressure": [990.1, 0], + "normalPressure": [1006.3, 0], + "temp": [19.4, 0], + "humidity": [81, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [7, 0], + "precipitation24h": [23, 0], + "windDirection": [12, 0], + "wind": [6.3, 0] }, "12451": { - "temp": [ - 18.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 6.5, - 0 - ], - "precipitation24h": [ - 22, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [18.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [6.5, 0], + "precipitation24h": [22, 0], + "windDirection": [16, 0], + "wind": [1.8, 0] }, "12457": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 2, - 0 - ], - "precipitation3h": [ - 11, - 0 - ], - "precipitation24h": [ - 25, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [2, 0], + "precipitation3h": [11, 0], + "precipitation24h": [25, 0] }, "12471": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 3.5, - 0 - ], - "precipitation3h": [ - 6.5, - 0 - ], - "precipitation24h": [ - 32, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [3.5, 0], + "precipitation3h": [6.5, 0], + "precipitation24h": [32, 0] }, "12501": { - "temp": [ - 18.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 4.5, - 0 - ], - "precipitation24h": [ - 21.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 2.2, - 0 - ] + "temp": [18.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [4.5, 0], + "precipitation24h": [21.5, 0], + "windDirection": [1, 0], + "wind": [2.2, 0] }, "12512": { - "temp": [ - 18.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 10, - 0 - ], - "precipitation24h": [ - 23.5, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 0.4, - 0 - ] + "temp": [18.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [10, 0], + "precipitation24h": [23.5, 0], + "windDirection": [7, 0], + "wind": [0.4, 0] }, "12551": { - "temp": [ - 18.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 5.5, - 0 - ], - "precipitation24h": [ - 20.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [18.7, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [5.5, 0], + "precipitation24h": [20.5, 0], + "windDirection": [1, 0], + "wind": [1, 0] }, "12596": { - "temp": [ - 20.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 5, - 0 - ], - "precipitation24h": [ - 21.5, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [20.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [5, 0], + "precipitation24h": [21.5, 0], + "windDirection": [4, 0], + "wind": [1.6, 0] }, "12607": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 5.5, - 0 - ], - "precipitation3h": [ - 9.5, - 0 - ], - "precipitation24h": [ - 27, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [5.5, 0], + "precipitation3h": [9.5, 0], + "precipitation24h": [27, 0] }, "12626": { - "temp": [ - 19.6, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 6.5, - 0 - ], - "precipitation24h": [ - 31.5, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "temp": [19.6, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [6.5, 0], + "precipitation24h": [31.5, 0], + "windDirection": [3, 0], + "wind": [2.1, 0] }, "12632": { - "temp": [ - 22.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 7.5, - 0 - ], - "precipitation24h": [ - 25.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [22.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [7.5, 0], + "precipitation24h": [25.5, 0], + "windDirection": [8, 0], + "wind": [2, 0] }, "12686": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 6.5, - 0 - ], - "precipitation24h": [ - 45.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [6.5, 0], + "precipitation24h": [45.5, 0] }, "12691": { - "temp": [ - 20, - 0 - ], - "humidity": [ - 88, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 9, - 0 - ], - "precipitation24h": [ - 28, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 4.3, - 0 - ] + "temp": [20, 0], + "humidity": [88, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [9, 0], + "precipitation24h": [28, 0], + "windDirection": [9, 0], + "wind": [4.3, 0] }, "12746": { - "temp": [ - 19.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 9.5, - 0 - ], - "precipitation24h": [ - 36.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [19.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [9.5, 0], + "precipitation24h": [36.5, 0], + "windDirection": [9, 0], + "wind": [1.8, 0] }, "13011": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 13, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [13, 0] }, "13061": { - "temp": [ - 20.2, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 9.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 10.1, - 0 - ] + "temp": [20.2, 0], + "sun10m": [5, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [9.5, 0], + "windDirection": [9, 0], + "wind": [10.1, 0] }, "13086": { - "temp": [ - 20.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 10.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 5.2, - 0 - ] + "temp": [20.7, 0], + "sun10m": [10, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [10.5, 0], + "windDirection": [10, 0], + "wind": [5.2, 0] }, "13121": { - "temp": [ - 19.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 11, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 10.2, - 0 - ] + "temp": [19.5, 0], + "sun10m": [10, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [11, 0], + "windDirection": [10, 0], + "wind": [10.2, 0] }, "13146": { - "temp": [ - 19, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 7, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 9.9, - 0 - ] + "temp": [19, 0], + "sun10m": [7, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [7, 0], + "windDirection": [10, 0], + "wind": [9.9, 0] }, "13181": { - "pressure": [ - 1005.3, - 0 - ], - "normalPressure": [ - 1006.4, - 0 - ], - "temp": [ - 20, - 0 - ], - "humidity": [ - 73, - 0 - ], - "visibility": [ - 18820, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 14, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 8.8, - 0 - ] + "pressure": [1005.3, 0], + "normalPressure": [1006.4, 0], + "temp": [20, 0], + "humidity": [73, 0], + "visibility": [18820, 0], + "sun10m": [2, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [14, 0], + "windDirection": [10, 0], + "wind": [8.8, 0] }, "13206": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 10.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [10.5, 0] }, "13261": { - "temp": [ - 19.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 18.5, - 0 - ], - "windDirection": [ - 0, - 0 - ], - "wind": [ - 0, - 0 - ] + "temp": [19.7, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [18.5, 0], + "windDirection": [0, 0], + "wind": [0, 0] }, "13277": { - "pressure": [ - 1003.8, - 0 - ], - "normalPressure": [ - 1006.7, - 0 - ], - "temp": [ - 19.5, - 0 - ], - "humidity": [ - 68, - 0 - ], - "visibility": [ - 14670, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 12, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 9.1, - 0 - ] + "pressure": [1003.8, 0], + "normalPressure": [1006.7, 0], + "temp": [19.5, 0], + "humidity": [68, 0], + "visibility": [14670, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [12, 0], + "windDirection": [11, 0], + "wind": [9.1, 0] }, "13311": { - "temp": [ - 19.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 2, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 4.7, - 0 - ] + "temp": [19.7, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [2, 0], + "windDirection": [11, 0], + "wind": [4.7, 0] }, "13321": { - "temp": [ - 19.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 11, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "temp": [19.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [11, 0], + "windDirection": [16, 0], + "wind": [2.1, 0] }, "14026": { - "temp": [ - 19.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 17, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 6, - 0 - ] + "temp": [19.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [17, 0], + "windDirection": [12, 0], + "wind": [6, 0] }, "14071": { - "temp": [ - 19.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 24.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 5.2, - 0 - ] + "temp": [19.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [24.5, 0], + "windDirection": [13, 0], + "wind": [5.2, 0] }, "14101": { - "temp": [ - 20.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 21, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 3.3, - 0 - ] + "temp": [20.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [21, 0], + "windDirection": [14, 0], + "wind": [3.3, 0] }, "14116": { - "temp": [ - 19.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 4, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 3.1, - 0 - ] + "temp": [19.7, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [4, 0], + "windDirection": [14, 0], + "wind": [3.1, 0] }, "14121": { - "temp": [ - 20.1, - 0 - ], - "humidity": [ - 82, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 10.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 4.2, - 0 - ] + "temp": [20.1, 0], + "humidity": [82, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [10.5, 0], + "windDirection": [12, 0], + "wind": [4.2, 0] }, "14136": { - "temp": [ - 20.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 20.5, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [20.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [20.5, 0], + "windDirection": [16, 0], + "wind": [2.6, 0] }, "14157": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 8, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [8, 0] }, "14163": { - "pressure": [ - 1003.7, - 0 - ], - "normalPressure": [ - 1006.7, - 0 - ], - "temp": [ - 21.2, - 0 - ], - "humidity": [ - 75, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 9.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "pressure": [1003.7, 0], + "normalPressure": [1006.7, 0], + "temp": [21.2, 0], + "humidity": [75, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [9.5, 0], + "windDirection": [1, 0], + "wind": [2.8, 0] }, "14191": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 7, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [7, 0] }, "14206": { - "temp": [ - 20.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 29.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [20.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [29.5, 0], + "windDirection": [1, 0], + "wind": [1.5, 0] }, "14286": { - "temp": [ - 19.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 56.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.3, - 0 - ] + "temp": [19.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [56.5, 0], + "windDirection": [13, 0], + "wind": [1.3, 0] }, "14296": { - "temp": [ - 22.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 27.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 3.8, - 0 - ] + "temp": [22.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [27.5, 0], + "windDirection": [8, 0], + "wind": [3.8, 0] }, "15041": { - "temp": [ - 16.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 15.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [16.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [15.5, 0], + "windDirection": [8, 0], + "wind": [2.6, 0] }, "15076": { - "temp": [ - 18.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 16, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 5.9, - 0 - ] + "temp": [18.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2, 0], + "precipitation24h": [16, 0], + "windDirection": [12, 0], + "wind": [5.9, 0] }, "15116": { - "temp": [ - 19.1, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 13, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [19.1, 0], + "sun10m": [2, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [2, 0], + "precipitation24h": [13, 0], + "windDirection": [3, 0], + "wind": [1.1, 0] }, "15161": { - "temp": [ - 20.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 5, - 0 - ], - "precipitation24h": [ - 17, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 2.5, - 0 - ] + "temp": [20.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [5, 0], + "precipitation24h": [17, 0], + "windDirection": [11, 0], + "wind": [2.5, 0] }, "15197": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 11.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [11.5, 0] }, "15216": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 5, - 0 - ], - "precipitation24h": [ - 21, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [5, 0], + "precipitation24h": [21, 0] }, "15231": { - "temp": [ - 20.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 21, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 3.4, - 0 - ] + "temp": [20.1, 0], + "sun10m": [0, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [21, 0], + "windDirection": [11, 0], + "wind": [3.4, 0] }, "15241": { - "temp": [ - 20.1, - 0 - ], - "humidity": [ - 90, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 19, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [20.1, 0], + "humidity": [90, 0], + "sun10m": [2, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [19, 0], + "windDirection": [5, 0], + "wind": [1.1, 0] }, "15247": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 5, - 0 - ], - "precipitation24h": [ - 26, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [5, 0], + "precipitation24h": [26, 0] }, "15251": { - "temp": [ - 19.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 3.5, - 0 - ], - "precipitation24h": [ - 20.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [19.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [3.5, 0], + "precipitation24h": [20.5, 0], + "windDirection": [14, 0], + "wind": [1.8, 0] }, "15276": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 25.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [25.5, 0] }, "15311": { - "temp": [ - 20.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 23.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [20.3, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [23.5, 0], + "windDirection": [13, 0], + "wind": [1, 0] }, "15321": { - "temp": [ - 21.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 25.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 3.7, - 0 - ] + "temp": [21.1, 0], + "sun10m": [10, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [25.5, 0], + "windDirection": [10, 0], + "wind": [3.7, 0] }, "15356": { - "pressure": [ - 1001.2, - 0 - ], - "normalPressure": [ - 1007.2, - 0 - ], - "temp": [ - 20.4, - 0 - ], - "humidity": [ - 82, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 27, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 0.5, - 0 - ] + "pressure": [1001.2, 0], + "normalPressure": [1007.2, 0], + "temp": [20.4, 0], + "humidity": [82, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [27, 0], + "windDirection": [8, 0], + "wind": [0.5, 0] }, "15391": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 20.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [20.5, 0] }, "15431": { - "temp": [ - 20.9, - 0 - ], - "humidity": [ - 93, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 15, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 1.2, - 0 - ] + "temp": [20.9, 0], + "humidity": [93, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [15, 0], + "windDirection": [2, 0], + "wind": [1.2, 0] }, "15442": { - "temp": [ - 18.9, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 5, - 0 - ], - "precipitation24h": [ - 29.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 0.9, - 0 - ] + "temp": [18.9, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [5, 0], + "precipitation24h": [29.5, 0], + "windDirection": [11, 0], + "wind": [0.9, 0] }, "15451": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 7.5, - 0 - ], - "precipitation24h": [ - 43.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [7.5, 0], + "precipitation24h": [43.5, 0] }, "15491": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 4.5, - 0 - ], - "precipitation24h": [ - 36, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [4.5, 0], + "precipitation24h": [36, 0] }, "16026": { - "temp": [ - 22.2, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 7.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 2.9, - 0 - ] + "temp": [22.2, 0], + "sun10m": [10, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [7.5, 0], + "windDirection": [11, 0], + "wind": [2.9, 0] }, "16061": { - "temp": [ - 19.9, - 0 - ], - "humidity": [ - 68, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 19, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 3.9, - 0 - ] + "temp": [19.9, 0], + "humidity": [68, 0], + "sun10m": [7, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [19, 0], + "windDirection": [12, 0], + "wind": [3.9, 0] }, "16076": { - "temp": [ - 20.9, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 6, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 5.2, - 0 - ] + "temp": [20.9, 0], + "sun10m": [7, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [6, 0], + "windDirection": [9, 0], + "wind": [5.2, 0] }, "16091": { - "pressure": [ - 1003.9, - 0 - ], - "normalPressure": [ - 1007, - 0 - ], - "temp": [ - 20.7, - 0 - ], - "humidity": [ - 60, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 3, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 2, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 5, - 0 - ] + "pressure": [1003.9, 0], + "normalPressure": [1007, 0], + "temp": [20.7, 0], + "humidity": [60, 0], + "visibility": [20000, 0], + "sun10m": [3, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [2, 0], + "windDirection": [11, 0], + "wind": [5, 0] }, "16126": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 8, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [8, 0] }, "16156": { - "temp": [ - 20.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 6.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 9, - 0 - ] + "temp": [20.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [6.5, 0], + "windDirection": [13, 0], + "wind": [9, 0] }, "16206": { - "temp": [ - 20, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 13.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 3.1, - 0 - ] + "temp": [20, 0], + "sun10m": [7, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [13.5, 0], + "windDirection": [13, 0], + "wind": [3.1, 0] }, "16217": { - "pressure": [ - 985.9, - 0 - ], - "normalPressure": [ - 1007.6, - 0 - ], - "temp": [ - 18.9, - 0 - ], - "humidity": [ - 68, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 15, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "pressure": [985.9, 0], + "normalPressure": [1007.6, 0], + "temp": [18.9, 0], + "humidity": [68, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [15, 0], + "windDirection": [2, 0], + "wind": [1.1, 0] }, "16252": { - "pressure": [ - 1004, - 0 - ], - "normalPressure": [ - 1008.1, - 0 - ], - "temp": [ - 20, - 0 - ], - "humidity": [ - 61, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 13, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 3.3, - 0 - ] + "pressure": [1004, 0], + "normalPressure": [1008.1, 0], + "temp": [20, 0], + "humidity": [61, 0], + "visibility": [20000, 0], + "sun10m": [5, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [13, 0], + "windDirection": [12, 0], + "wind": [3.3, 0] }, "16272": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 14.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [14.5, 0] }, "16281": { - "temp": [ - 16.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 23.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 2.2, - 0 - ] + "temp": [16.6, 0], + "sun10m": [0, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [23.5, 0], + "windDirection": [10, 0], + "wind": [2.2, 0] }, "16286": { - "temp": [ - 18.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.4, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 14.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 2.4, - 0 - ] + "temp": [18.5, 0], + "sun10m": [0, 0], + "sun1h": [0.4, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [14.5, 0], + "windDirection": [12, 0], + "wind": [2.4, 0] }, "16321": { - "temp": [ - 21.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 14, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [21.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [14, 0], + "windDirection": [13, 0], + "wind": [1.6, 0] }, "17036": { - "pressure": [ - 1002.5, - 0 - ], - "normalPressure": [ - 1004.4, - 0 - ], - "temp": [ - 19.5, - 0 - ], - "humidity": [ - 81, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 11, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 4, - 0 - ] + "pressure": [1002.5, 0], + "normalPressure": [1004.4, 0], + "temp": [19.5, 0], + "humidity": [81, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [11, 0], + "windDirection": [11, 0], + "wind": [4, 0] }, "17076": { - "temp": [ - 18.9, - 0 - ], - "humidity": [ - 87, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 3.5, - 0 - ], - "precipitation24h": [ - 11.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 0.7, - 0 - ] + "temp": [18.9, 0], + "humidity": [87, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [3.5, 0], + "precipitation24h": [11.5, 0], + "windDirection": [13, 0], + "wind": [0.7, 0] }, "17091": { - "temp": [ - 18.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 5, - 0 - ], - "precipitation24h": [ - 15, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [18.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [5, 0], + "precipitation24h": [15, 0], + "windDirection": [11, 0], + "wind": [1.5, 0] }, "17112": { - "pressure": [ - 1002.8, - 0 - ], - "normalPressure": [ - 1004.9, - 0 - ], - "temp": [ - 18, - 0 - ], - "humidity": [ - 91, - 0 - ], - "visibility": [ - 2050, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 2.5, - 0 - ], - "precipitation1h": [ - 2.5, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 12, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 2, - 0 - ] + "pressure": [1002.8, 0], + "normalPressure": [1004.9, 0], + "temp": [18, 0], + "humidity": [91, 0], + "visibility": [2050, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [2.5, 0], + "precipitation1h": [2.5, 0], + "precipitation3h": [3, 0], + "precipitation24h": [12, 0], + "windDirection": [5, 0], + "wind": [2, 0] }, "17116": { - "temp": [ - 18.9, - 0 - ], - "precipitation10m": [ - 2, - 0 - ], - "precipitation1h": [ - 2, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 9.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 3.2, - 0 - ] + "temp": [18.9, 0], + "precipitation10m": [2, 0], + "precipitation1h": [2, 0], + "precipitation3h": [2, 0], + "precipitation24h": [9.5, 0], + "windDirection": [11, 0], + "wind": [3.2, 0] }, "17166": { - "temp": [ - 19, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 11, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 6.3, - 0 - ] + "temp": [19, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [11, 0], + "windDirection": [15, 0], + "wind": [6.3, 0] }, "17196": { - "temp": [ - 19.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 12.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [19.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [2, 0], + "precipitation24h": [12.5, 0], + "windDirection": [11, 0], + "wind": [1.6, 0] }, "17211": { - "precipitation10m": [ - 2, - 0 - ], - "precipitation1h": [ - 5.5, - 0 - ], - "precipitation3h": [ - 5.5, - 0 - ], - "precipitation24h": [ - 15.5, - 0 - ] + "precipitation10m": [2, 0], + "precipitation1h": [5.5, 0], + "precipitation3h": [5.5, 0], + "precipitation24h": [15.5, 0] }, "17246": { - "temp": [ - 22.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 14, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [22.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [2, 0], + "precipitation24h": [14, 0], + "windDirection": [10, 0], + "wind": [1.5, 0] }, "17306": { - "temp": [ - 22.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 17.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [22.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [17.5, 0], + "windDirection": [1, 0], + "wind": [1.6, 0] }, "17316": { - "temp": [ - 22.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 14, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 2.4, - 0 - ] + "temp": [22.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [14, 0], + "windDirection": [10, 0], + "wind": [2.4, 0] }, "17341": { - "pressure": [ - 998.9, - 0 - ], - "normalPressure": [ - 1003.9, - 0 - ], - "temp": [ - 23.6, - 0 - ], - "humidity": [ - 87, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 13, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "pressure": [998.9, 0], + "normalPressure": [1003.9, 0], + "temp": [23.6, 0], + "humidity": [87, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [13, 0], + "windDirection": [9, 0], + "wind": [1.6, 0] }, "17351": { - "temp": [ - 25.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 10, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 3.7, - 0 - ] + "temp": [25.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [10, 0], + "windDirection": [8, 0], + "wind": [3.7, 0] }, "17386": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 30, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [30, 0] }, "17482": { - "temp": [ - 17.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 28.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "temp": [17.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [28.5, 0], + "windDirection": [13, 0], + "wind": [2.8, 0] }, "17501": { - "temp": [ - 22.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 19.5, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 0.9, - 0 - ] + "temp": [22.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [19.5, 0], + "windDirection": [6, 0], + "wind": [0.9, 0] }, "17512": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 4.5, - 0 - ], - "precipitation24h": [ - 19.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [4.5, 0], + "precipitation24h": [19.5, 0] }, "17521": { - "temp": [ - 22.8, - 0 - ], - "humidity": [ - 91, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 16, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 4.5, - 0 - ] + "temp": [22.8, 0], + "humidity": [91, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [16, 0], + "windDirection": [9, 0], + "wind": [4.5, 0] }, "17531": { - "temp": [ - 23.4, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 9, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 2.5, - 0 - ] + "temp": [23.4, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [9, 0], + "windDirection": [10, 0], + "wind": [2.5, 0] }, "17541": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 11, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [11, 0] }, "17546": { - "temp": [ - 24, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 8.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 8.6, - 0 - ] + "temp": [24, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [8.5, 0], + "windDirection": [8, 0], + "wind": [8.6, 0] }, "17561": { - "temp": [ - 25.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 7, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 6.5, - 0 - ] + "temp": [25.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [7, 0], + "windDirection": [8, 0], + "wind": [6.5, 0] }, "17596": { - "temp": [ - 21.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 6.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 4.7, - 0 - ] + "temp": [21.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [6.5, 0], + "windDirection": [12, 0], + "wind": [4.7, 0] }, "17607": { - "temp": [ - 22.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 13.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 7.3, - 0 - ] + "temp": [22.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [3, 0], + "precipitation24h": [13.5, 0], + "windDirection": [9, 0], + "wind": [7.3, 0] }, "17631": { - "temp": [ - 24.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 8, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 3.8, - 0 - ] + "temp": [24.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [8, 0], + "windDirection": [8, 0], + "wind": [3.8, 0] }, "17642": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 4.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [4.5, 0] }, "17686": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 13, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [3, 0], + "precipitation24h": [13, 0] }, "17717": { - "temp": [ - 23.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 7, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "temp": [23.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [7, 0], + "windDirection": [8, 0], + "wind": [2.8, 0] }, "17776": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 11, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [11, 0] }, "18038": { - "temp": [ - 22.1, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 18.5, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [22.1, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [2, 0], + "precipitation24h": [18.5, 0], + "windDirection": [2, 0], + "wind": [1.8, 0] }, "18091": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 31, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [31, 0] }, "18136": { - "temp": [ - 24.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 26.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 4.9, - 0 - ] + "temp": [24.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [26.5, 0], + "windDirection": [9, 0], + "wind": [4.9, 0] }, "18161": { - "temp": [ - 22.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 24, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 8.9, - 0 - ] + "temp": [22.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [24, 0], + "windDirection": [9, 0], + "wind": [8.9, 0] }, "18171": { - "temp": [ - 23.7, - 0 - ], - "humidity": [ - 96, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 27, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 8.1, - 0 - ] + "temp": [23.7, 0], + "humidity": [96, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [27, 0], + "windDirection": [9, 0], + "wind": [8.1, 0] }, "18174": { - "temp": [ - 23.4, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 24, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 7.9, - 0 - ] + "temp": [23.4, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [24, 0], + "windDirection": [9, 0], + "wind": [7.9, 0] }, "18256": { - "temp": [ - 23.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 34.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 4.8, - 0 - ] + "temp": [23.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [34.5, 0], + "windDirection": [9, 0], + "wind": [4.8, 0] }, "18273": { - "pressure": [ - 1004.6, - 0 - ], - "normalPressure": [ - 1007.7, - 0 - ], - "temp": [ - 21.7, - 0 - ], - "humidity": [ - 95, - 0 - ], - "visibility": [ - 9210, - 0 - ], - "sun10m": [ - 1, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 31, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 8.6, - 0 - ] + "pressure": [1004.6, 0], + "normalPressure": [1007.7, 0], + "temp": [21.7, 0], + "humidity": [95, 0], + "visibility": [9210, 0], + "sun10m": [1, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [31, 0], + "windDirection": [8, 0], + "wind": [8.6, 0] }, "18281": { - "temp": [ - 23.2, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 22.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 8.2, - 0 - ] + "temp": [23.2, 0], + "sun10m": [7, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [22.5, 0], + "windDirection": [8, 0], + "wind": [8.2, 0] }, "18311": { - "temp": [ - 21.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 35, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 7.1, - 0 - ] + "temp": [21.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [35, 0], + "windDirection": [8, 0], + "wind": [7.1, 0] }, "19021": { - "temp": [ - 21.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 3.3, - 0 - ] + "temp": [21.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [5, 0], + "windDirection": [8, 0], + "wind": [3.3, 0] }, "19051": { - "temp": [ - 21.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 10, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 7.6, - 0 - ] + "temp": [21.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [10, 0], + "windDirection": [8, 0], + "wind": [7.6, 0] }, "19076": { - "temp": [ - 21.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 10.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 3.7, - 0 - ] + "temp": [21.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [10.5, 0], + "windDirection": [8, 0], + "wind": [3.7, 0] }, "19151": { - "temp": [ - 22.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 2.5, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 25, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 5.5, - 0 - ] + "temp": [22.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [2.5, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [25, 0], + "windDirection": [9, 0], + "wind": [5.5, 0] }, "19191": { - "temp": [ - 21.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 24, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 5.6, - 0 - ] + "temp": [21.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1, 0], + "precipitation24h": [24, 0], + "windDirection": [9, 0], + "wind": [5.6, 0] }, "19261": { - "temp": [ - 22, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 18.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 3.3, - 0 - ] + "temp": [22, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [1, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [18.5, 0], + "windDirection": [8, 0], + "wind": [3.3, 0] }, "19281": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 3, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 28.5, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [3, 0], + "precipitation3h": [3, 0], + "precipitation24h": [28.5, 0] }, "19301": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 44.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [44.5, 0] }, "19311": { - "temp": [ - 20.9, - 0 - ], - "humidity": [ - 96, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 41, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 4.5, - 0 - ] + "temp": [20.9, 0], + "humidity": [96, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [41, 0], + "windDirection": [9, 0], + "wind": [4.5, 0] }, "19346": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 23, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [23, 0] }, "19347": { - "temp": [ - 19.8, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 23, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 9.1, - 0 - ] + "temp": [19.8, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [1, 0], + "precipitation3h": [1, 0], + "precipitation24h": [23, 0], + "windDirection": [9, 0], + "wind": [9.1, 0] }, "19376": { - "temp": [ - 21.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 43, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 7.2, - 0 - ] + "temp": [21.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [1, 0], + "precipitation24h": [43, 0], + "windDirection": [8, 0], + "wind": [7.2, 0] }, "19406": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 2, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 19.5, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [2, 0], + "precipitation3h": [2, 0], + "precipitation24h": [19.5, 0] }, "19416": { - "temp": [ - 20.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 14, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 5.7, - 0 - ] + "temp": [20.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [1, 0], + "precipitation3h": [1, 0], + "precipitation24h": [14, 0], + "windDirection": [8, 0], + "wind": [5.7, 0] }, "19432": { - "pressure": [ - 1002.4, - 0 - ], - "normalPressure": [ - 1007, - 0 - ], - "temp": [ - 20.8, - 0 - ], - "humidity": [ - 100, - 0 - ], - "visibility": [ - 3810, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 2, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 31, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 11.8, - 0 - ] + "pressure": [1002.4, 0], + "normalPressure": [1007, 0], + "temp": [20.8, 0], + "humidity": [100, 0], + "visibility": [3810, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [2, 0], + "precipitation3h": [2, 0], + "precipitation24h": [31, 0], + "windDirection": [8, 0], + "wind": [11.8, 0] }, "19451": { - "temp": [ - 19.4, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 42.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 7.6, - 0 - ] + "temp": [19.4, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [42.5, 0], + "windDirection": [9, 0], + "wind": [7.6, 0] }, "20047": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 6.5, - 0 - ], - "precipitation24h": [ - 22, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [6.5, 0], + "precipitation24h": [22, 0] }, "20071": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 7.5, - 0 - ], - "precipitation24h": [ - 22.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [7.5, 0], + "precipitation24h": [22.5, 0] }, "20146": { - "temp": [ - 20.6, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 4.5, - 0 - ], - "precipitation24h": [ - 18.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [20.6, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [4.5, 0], + "precipitation24h": [18.5, 0], + "windDirection": [8, 0], + "wind": [1.6, 0] }, "20186": { - "temp": [ - 19.2, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 3.5, - 0 - ], - "precipitation3h": [ - 9, - 0 - ], - "precipitation24h": [ - 36, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 0.9, - 0 - ] + "temp": [19.2, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [3.5, 0], + "precipitation3h": [9, 0], + "precipitation24h": [36, 0], + "windDirection": [9, 0], + "wind": [0.9, 0] }, "20202": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 11, - 0 - ], - "precipitation24h": [ - 33.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [11, 0], + "precipitation24h": [33.5, 0] }, "20222": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 11, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [11, 0] }, "20266": { - "temp": [ - 18.8, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 5, - 0 - ], - "precipitation24h": [ - 22, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1.4, - 0 - ] + "temp": [18.8, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [5, 0], + "precipitation24h": [22, 0], + "windDirection": [14, 0], + "wind": [1.4, 0] }, "20276": { - "temp": [ - 20.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 2, - 0 - ], - "precipitation3h": [ - 6, - 0 - ], - "precipitation24h": [ - 15.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 0.6, - 0 - ] + "temp": [20.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [2, 0], + "precipitation3h": [6, 0], + "precipitation24h": [15.5, 0], + "windDirection": [9, 0], + "wind": [0.6, 0] }, "20331": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 3.5, - 0 - ], - "precipitation24h": [ - 11.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [3.5, 0], + "precipitation24h": [11.5, 0] }, "20341": { - "temp": [ - 19.7, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 2, - 0 - ], - "precipitation3h": [ - 4, - 0 - ], - "precipitation24h": [ - 12, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 0.8, - 0 - ] + "temp": [19.7, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [2, 0], + "precipitation3h": [4, 0], + "precipitation24h": [12, 0], + "windDirection": [14, 0], + "wind": [0.8, 0] }, "20356": { - "temp": [ - 18.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 2, - 0 - ], - "precipitation3h": [ - 8, - 0 - ], - "precipitation24h": [ - 38, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 0.5, - 0 - ] + "temp": [18.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [2, 0], + "precipitation3h": [8, 0], + "precipitation24h": [38, 0], + "windDirection": [3, 0], + "wind": [0.5, 0] }, "20361": { - "temp": [ - 18.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 1, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 3.5, - 0 - ], - "precipitation24h": [ - 15.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 2.3, - 0 - ] + "temp": [18.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [1, 0], + "precipitation1h": [1, 0], + "precipitation3h": [3.5, 0], + "precipitation24h": [15.5, 0], + "windDirection": [13, 0], + "wind": [2.3, 0] }, "20371": { - "temp": [ - 18.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 16, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 0.8, - 0 - ] + "temp": [18.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [16, 0], + "windDirection": [13, 0], + "wind": [0.8, 0] }, "20421": { - "temp": [ - 18.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 23, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "temp": [18.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2, 0], + "precipitation24h": [23, 0], + "windDirection": [13, 0], + "wind": [1.7, 0] }, "20432": { - "pressure": [ - 1001, - 0 - ], - "normalPressure": [ - 1006.1, - 0 - ], - "temp": [ - 18.8, - 0 - ], - "humidity": [ - 96, - 0 - ], - "visibility": [ - 13200, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 16, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.3, - 0 - ] + "pressure": [1001, 0], + "normalPressure": [1006.1, 0], + "temp": [18.8, 0], + "humidity": [96, 0], + "visibility": [13200, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [16, 0], + "windDirection": [13, 0], + "wind": [1.3, 0] }, "20441": { - "temp": [ - 18.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 13.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [18.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [2, 0], + "precipitation24h": [13.5, 0], + "windDirection": [12, 0], + "wind": [1, 0] }, "20451": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 2, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 11.5, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [2, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [11.5, 0] }, "20506": { - "temp": [ - 20.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 17.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 3.6, - 0 - ] + "temp": [20.7, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [17.5, 0], + "windDirection": [8, 0], + "wind": [3.6, 0] }, "20551": { - "temp": [ - 17.5, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 12.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 2.7, - 0 - ] + "temp": [17.5, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [12.5, 0], + "windDirection": [14, 0], + "wind": [2.7, 0] }, "20556": { - "temp": [ - 19.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 15.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 0.4, - 0 - ] + "temp": [19.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [15.5, 0], + "windDirection": [13, 0], + "wind": [0.4, 0] }, "20601": { - "temp": [ - 17.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 24, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [17.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1, 0], + "precipitation24h": [24, 0], + "windDirection": [15, 0], + "wind": [1.5, 0] }, "20606": { - "temp": [ - 17.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 17, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1.2, - 0 - ] + "temp": [17.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [17, 0], + "windDirection": [14, 0], + "wind": [1.2, 0] }, "20631": { - "temp": [ - 19.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 19.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 4.5, - 0 - ] + "temp": [19.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [19.5, 0], + "windDirection": [9, 0], + "wind": [4.5, 0] }, "20696": { - "temp": [ - 19, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 13.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 2.9, - 0 - ] + "temp": [19, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [13.5, 0], + "windDirection": [14, 0], + "wind": [2.9, 0] }, "20751": { - "pressure": [ - 1001.6, - 0 - ], - "normalPressure": [ - 1005.5, - 0 - ], - "temp": [ - 23, - 0 - ], - "humidity": [ - 92, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 21, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 4.1, - 0 - ] + "pressure": [1001.6, 0], + "normalPressure": [1005.5, 0], + "temp": [23, 0], + "humidity": [92, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [2, 0], + "precipitation24h": [21, 0], + "windDirection": [10, 0], + "wind": [4.1, 0] }, "21031": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 27, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [27, 0] }, "21111": { - "temp": [ - 20.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 28.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "temp": [20.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [28.5, 0], + "windDirection": [8, 0], + "wind": [2.1, 0] }, "21126": { - "temp": [ - 19.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 4, - 0 - ], - "precipitation24h": [ - 35.5, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [19.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [4, 0], + "precipitation24h": [35.5, 0], + "windDirection": [5, 0], + "wind": [2, 0] }, "21161": { - "temp": [ - 16.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 20, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 3, - 0 - ] + "temp": [16.7, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [20, 0], + "windDirection": [10, 0], + "wind": [3, 0] }, "21171": { - "temp": [ - 18.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 100, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 0.9, - 0 - ] + "temp": [18.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [100, 0], + "windDirection": [5, 0], + "wind": [0.9, 0] }, "21187": { - "pressure": [ - 1006.1, - 0 - ], - "normalPressure": [ - 1007, - 0 - ], - "temp": [ - 22, - 0 - ], - "humidity": [ - 70, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 24.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 4.1, - 0 - ] + "pressure": [1006.1, 0], + "normalPressure": [1007, 0], + "temp": [22, 0], + "humidity": [70, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [24.5, 0], + "windDirection": [10, 0], + "wind": [4.1, 0] }, "21226": { - "temp": [ - 20.8, - 0 - ], - "humidity": [ - 59, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 13.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [20.8, 0], + "humidity": [59, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [13.5, 0], + "windDirection": [12, 0], + "wind": [1.6, 0] }, "21237": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 19, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [19, 0] }, "21251": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 76, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [76, 0] }, "21261": { - "temp": [ - 21.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 22.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 3.8, - 0 - ] + "temp": [21.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [22.5, 0], + "windDirection": [11, 0], + "wind": [3.8, 0] }, "21276": { - "temp": [ - 20.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 17, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 4.9, - 0 - ] + "temp": [20.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [17, 0], + "windDirection": [9, 0], + "wind": [4.9, 0] }, "21297": { - "temp": [ - 19.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 16, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 4.5, - 0 - ] + "temp": [19.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [16, 0], + "windDirection": [12, 0], + "wind": [4.5, 0] }, "21312": { - "temp": [ - 17.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 41.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 3.2, - 0 - ] + "temp": [17.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [41.5, 0], + "windDirection": [13, 0], + "wind": [3.2, 0] }, "21323": { - "pressure": [ - 1002.4, - 0 - ], - "normalPressure": [ - 1008.2, - 0 - ], - "temp": [ - 19.2, - 0 - ], - "humidity": [ - 76, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 11, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 7.1, - 0 - ] + "pressure": [1002.4, 0], + "normalPressure": [1008.2, 0], + "temp": [19.2, 0], + "humidity": [76, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [11, 0], + "windDirection": [13, 0], + "wind": [7.1, 0] }, "22036": { - "temp": [ - 17.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 3.5, - 0 - ], - "precipitation3h": [ - 17, - 0 - ], - "precipitation24h": [ - 39, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [17.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [3.5, 0], + "precipitation3h": [17, 0], + "precipitation24h": [39, 0], + "windDirection": [9, 0], + "wind": [2.6, 0] }, "22072": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 3, - 0 - ], - "precipitation3h": [ - 22, - 0 - ], - "precipitation24h": [ - 50.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [3, 0], + "precipitation3h": [22, 0], + "precipitation24h": [50.5, 0] }, "22106": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 7, - 0 - ], - "precipitation3h": [ - 18.5, - 0 - ], - "precipitation24h": [ - 54.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [7, 0], + "precipitation3h": [18.5, 0], + "precipitation24h": [54.5, 0] }, "22141": { - "temp": [ - 19.1, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 27.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [19.1, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [3, 0], + "precipitation24h": [27.5, 0], + "windDirection": [8, 0], + "wind": [1.8, 0] }, "22156": { - "temp": [ - 18.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 4, - 0 - ], - "precipitation3h": [ - 13, - 0 - ], - "precipitation24h": [ - 44.5, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 0.6, - 0 - ] + "temp": [18.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [4, 0], + "precipitation3h": [13, 0], + "precipitation24h": [44.5, 0], + "windDirection": [6, 0], + "wind": [0.6, 0] }, "22206": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 3, - 0 - ], - "precipitation3h": [ - 19, - 0 - ], - "precipitation24h": [ - 55, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [3, 0], + "precipitation3h": [19, 0], + "precipitation24h": [55, 0] }, "22241": { - "temp": [ - 18.5, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 9, - 0 - ], - "precipitation24h": [ - 44.5, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [18.5, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [9, 0], + "precipitation24h": [44.5, 0], + "windDirection": [3, 0], + "wind": [1.1, 0] }, "22291": { - "temp": [ - 18.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 5, - 0 - ], - "precipitation3h": [ - 16, - 0 - ], - "precipitation24h": [ - 37, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.4, - 0 - ] + "temp": [18.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [5, 0], + "precipitation3h": [16, 0], + "precipitation24h": [37, 0], + "windDirection": [13, 0], + "wind": [1.4, 0] }, "22306": { - "temp": [ - 18.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 2, - 0 - ], - "precipitation1h": [ - 15, - 0 - ], - "precipitation3h": [ - 25, - 0 - ], - "precipitation24h": [ - 63.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 4.3, - 0 - ] + "temp": [18.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [2, 0], + "precipitation1h": [15, 0], + "precipitation3h": [25, 0], + "precipitation24h": [63.5, 0], + "windDirection": [12, 0], + "wind": [4.3, 0] }, "22327": { - "pressure": [ - 1004.4, - 0 - ], - "normalPressure": [ - 1008.9, - 0 - ], - "temp": [ - 17.5, - 0 - ], - "humidity": [ - 98, - 0 - ], - "visibility": [ - 4460, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 1, - 0 - ], - "precipitation1h": [ - 9.5, - 0 - ], - "precipitation3h": [ - 15, - 0 - ], - "precipitation24h": [ - 33, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 5.2, - 0 - ] + "pressure": [1004.4, 0], + "normalPressure": [1008.9, 0], + "temp": [17.5, 0], + "humidity": [98, 0], + "visibility": [4460, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [1, 0], + "precipitation1h": [9.5, 0], + "precipitation3h": [15, 0], + "precipitation24h": [33, 0], + "windDirection": [13, 0], + "wind": [5.2, 0] }, "22356": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 4, - 0 - ], - "precipitation24h": [ - 38.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [4, 0], + "precipitation24h": [38.5, 0] }, "22366": { - "precipitation10m": [ - 2, - 0 - ], - "precipitation1h": [ - 7, - 0 - ], - "precipitation3h": [ - 14, - 0 - ], - "precipitation24h": [ - 22.5, - 0 - ] + "precipitation10m": [2, 0], + "precipitation1h": [7, 0], + "precipitation3h": [14, 0], + "precipitation24h": [22.5, 0] }, "22391": { - "temp": [ - 18.7, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 2, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 14, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 12.5, - 0 - ] + "temp": [18.7, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [2, 0], + "precipitation3h": [3, 0], + "precipitation24h": [14, 0], + "windDirection": [12, 0], + "wind": [12.5, 0] }, "23031": { - "temp": [ - 21.5, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 11.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 3.4, - 0 - ] + "temp": [21.5, 0], + "sun10m": [7, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [11.5, 0], + "windDirection": [11, 0], + "wind": [3.4, 0] }, "23086": { - "temp": [ - 21.8, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 7.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 5.6, - 0 - ] + "temp": [21.8, 0], + "sun10m": [10, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [7.5, 0], + "windDirection": [10, 0], + "wind": [5.6, 0] }, "23166": { - "temp": [ - 19.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 9.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 3.2, - 0 - ] + "temp": [19.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [9.5, 0], + "windDirection": [11, 0], + "wind": [3.2, 0] }, "23191": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 7.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [7.5, 0] }, "23206": { - "temp": [ - 23.2, - 0 - ], - "humidity": [ - 62, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 5.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [23.2, 0], + "humidity": [62, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [5.5, 0], + "windDirection": [12, 0], + "wind": [1.8, 0] }, "23226": { - "temp": [ - 20.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 9, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [20.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [9, 0], + "windDirection": [13, 0], + "wind": [1.1, 0] }, "23232": { - "pressure": [ - 1004, - 0 - ], - "normalPressure": [ - 1009.1, - 0 - ], - "temp": [ - 21, - 0 - ], - "humidity": [ - 62, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 5.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 6.7, - 0 - ] + "pressure": [1004, 0], + "normalPressure": [1009.1, 0], + "temp": [21, 0], + "humidity": [62, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [5.5, 0], + "windDirection": [12, 0], + "wind": [6.7, 0] }, "23281": { - "temp": [ - 20.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 5.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 6.4, - 0 - ] + "temp": [20.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [5.5, 0], + "windDirection": [12, 0], + "wind": [6.4, 0] }, "23291": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 6, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [6, 0] }, "23321": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 13.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [13.5, 0] }, "23326": { - "temp": [ - 21.8, - 0 - ], - "humidity": [ - 62, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 9, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 3.7, - 0 - ] + "temp": [21.8, 0], + "humidity": [62, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [9, 0], + "windDirection": [12, 0], + "wind": [3.7, 0] }, "23356": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 14, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [14, 0] }, "23376": { - "temp": [ - 21.4, - 0 - ], - "humidity": [ - 62, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 10, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 6.3, - 0 - ] + "temp": [21.4, 0], + "humidity": [62, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [10, 0], + "windDirection": [12, 0], + "wind": [6.3, 0] }, "24041": { - "temp": [ - 21.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 6.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 3.9, - 0 - ] + "temp": [21.1, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [6.5, 0], + "windDirection": [11, 0], + "wind": [3.9, 0] }, "24051": { - "temp": [ - 20.8, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 11, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 4, - 0 - ] + "temp": [20.8, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [11, 0], + "windDirection": [11, 0], + "wind": [4, 0] }, "24101": { - "temp": [ - 19.8, - 0 - ], - "humidity": [ - 63, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 5.6, - 0 - ] + "temp": [19.8, 0], + "humidity": [63, 0], + "sun10m": [0, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [5, 0], + "windDirection": [11, 0], + "wind": [5.6, 0] }, "24141": { - "temp": [ - 20.4, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 16, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 6, - 0 - ] + "temp": [20.4, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [16, 0], + "windDirection": [11, 0], + "wind": [6, 0] }, "24156": { - "temp": [ - 20, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 4.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 6.5, - 0 - ] + "temp": [20, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [4.5, 0], + "windDirection": [11, 0], + "wind": [6.5, 0] }, "24166": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 13.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [13.5, 0] }, "24201": { - "temp": [ - 20.3, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 12.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 3.1, - 0 - ] + "temp": [20.3, 0], + "sun10m": [10, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [12.5, 0], + "windDirection": [12, 0], + "wind": [3.1, 0] }, "24217": { - "pressure": [ - 1008.4, - 0 - ], - "normalPressure": [ - 1009.8, - 0 - ], - "temp": [ - 21.1, - 0 - ], - "humidity": [ - 62, - 0 - ], - "visibility": [ - 19200, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 10.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 5.8, - 0 - ] + "pressure": [1008.4, 0], + "normalPressure": [1009.8, 0], + "temp": [21.1, 0], + "humidity": [62, 0], + "visibility": [19200, 0], + "sun10m": [0, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [10.5, 0], + "windDirection": [11, 0], + "wind": [5.8, 0] }, "24236": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 17.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [17.5, 0] }, "31001": { - "temp": [ - 22.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.4, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 10.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 6.8, - 0 - ] + "temp": [22.3, 0], + "sun10m": [0, 0], + "sun1h": [0.4, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [10.5, 0], + "windDirection": [11, 0], + "wind": [6.8, 0] }, "31036": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 4.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [4.5, 0] }, "31111": { - "pressure": [ - 1008.5, - 0 - ], - "normalPressure": [ - 1009.1, - 0 - ], - "temp": [ - 22, - 0 - ], - "humidity": [ - 70, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 12, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 4.6, - 0 - ] + "pressure": [1008.5, 0], + "normalPressure": [1009.1, 0], + "temp": [22, 0], + "humidity": [70, 0], + "visibility": [20000, 0], + "sun10m": [2, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [12, 0], + "windDirection": [11, 0], + "wind": [4.6, 0] }, "31121": { - "temp": [ - 21.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 21.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 2.5, - 0 - ] + "temp": [21.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [21.5, 0], + "windDirection": [12, 0], + "wind": [2.5, 0] }, "31136": { - "temp": [ - 20.8, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 3.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [20.8, 0], + "sun10m": [7, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [3.5, 0], + "windDirection": [12, 0], + "wind": [1.1, 0] }, "31156": { - "temp": [ - 21.7, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 8, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 2.5, - 0 - ] + "temp": [21.7, 0], + "sun10m": [7, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [8, 0], + "windDirection": [12, 0], + "wind": [2.5, 0] }, "31186": { - "temp": [ - 20.7, - 0 - ], - "humidity": [ - 76, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 7, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [20.7, 0], + "humidity": [76, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [7, 0], + "windDirection": [12, 0], + "wind": [2, 0] }, "31201": { - "temp": [ - 21.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 3.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 6.8, - 0 - ] + "temp": [21.8, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [3.5, 0], + "windDirection": [12, 0], + "wind": [6.8, 0] }, "31296": { - "temp": [ - 22.7, - 0 - ], - "humidity": [ - 68, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 7.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 6.2, - 0 - ] + "temp": [22.7, 0], + "humidity": [68, 0], + "sun10m": [0, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [7.5, 0], + "windDirection": [13, 0], + "wind": [6.2, 0] }, "31312": { - "pressure": [ - 1009.2, - 0 - ], - "normalPressure": [ - 1009.7, - 0 - ], - "temp": [ - 23.3, - 0 - ], - "humidity": [ - 67, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 15, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 6.9, - 0 - ] + "pressure": [1009.2, 0], + "normalPressure": [1009.7, 0], + "temp": [23.3, 0], + "humidity": [67, 0], + "visibility": [20000, 0], + "sun10m": [5, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [15, 0], + "windDirection": [13, 0], + "wind": [6.9, 0] }, "31321": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 14.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [14.5, 0] }, "31332": { - "temp": [ - 21.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 24.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 3.4, - 0 - ] + "temp": [21.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [3, 0], + "precipitation24h": [24.5, 0], + "windDirection": [12, 0], + "wind": [3.4, 0] }, "31336": { - "temp": [ - 20.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 26, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [20.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [26, 0], + "windDirection": [13, 0], + "wind": [1.8, 0] }, "31366": { - "temp": [ - 21, - 0 - ], - "humidity": [ - 75, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 4, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 5.1, - 0 - ] + "temp": [21, 0], + "humidity": [75, 0], + "sun10m": [10, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [4, 0], + "windDirection": [11, 0], + "wind": [5.1, 0] }, "31386": { - "temp": [ - 20.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 18, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 3.3, - 0 - ] + "temp": [20.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [18, 0], + "windDirection": [11, 0], + "wind": [3.3, 0] }, "31411": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 13, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [13, 0] }, "31436": { - "pressure": [ - 1003.3, - 0 - ], - "normalPressure": [ - 1011.2, - 0 - ], - "temp": [ - 21.6, - 0 - ], - "humidity": [ - 71, - 0 - ], - "visibility": [ - 18840, - 0 - ], - "sun10m": [ - 9, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 7, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 3.4, - 0 - ] + "pressure": [1003.3, 0], + "normalPressure": [1011.2, 0], + "temp": [21.6, 0], + "humidity": [71, 0], + "visibility": [18840, 0], + "sun10m": [9, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [7, 0], + "windDirection": [11, 0], + "wind": [3.4, 0] }, "31451": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 4.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [4.5, 0] }, "31461": { - "temp": [ - 24.8, - 0 - ], - "humidity": [ - 48, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 11.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 3, - 0 - ] + "temp": [24.8, 0], + "humidity": [48, 0], + "sun10m": [0, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [11.5, 0], + "windDirection": [11, 0], + "wind": [3, 0] }, "31466": { - "temp": [ - 22.9, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.4, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 20.5, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [22.9, 0], + "sun10m": [5, 0], + "sun1h": [0.4, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [20.5, 0], + "windDirection": [7, 0], + "wind": [2, 0] }, "31482": { - "temp": [ - 16.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 28, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "temp": [16.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [3, 0], + "precipitation24h": [28, 0], + "windDirection": [12, 0], + "wind": [2.1, 0] }, "31506": { - "temp": [ - 21.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 6.5, - 0 - ], - "precipitation24h": [ - 24, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [21.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [6.5, 0], + "precipitation24h": [24, 0], + "windDirection": [8, 0], + "wind": [1.1, 0] }, "31551": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 17, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [17, 0] }, "31562": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 3.5, - 0 - ], - "precipitation24h": [ - 28, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [3.5, 0], + "precipitation24h": [28, 0] }, "31586": { - "temp": [ - 20.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 7.5, - 0 - ], - "precipitation24h": [ - 20, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 3.5, - 0 - ] + "temp": [20.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [7.5, 0], + "precipitation24h": [20, 0], + "windDirection": [9, 0], + "wind": [3.5, 0] }, "31602": { - "pressure": [ - 1006.4, - 0 - ], - "normalPressure": [ - 1009.7, - 0 - ], - "temp": [ - 20.1, - 0 - ], - "humidity": [ - 85, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 4.5, - 0 - ], - "precipitation24h": [ - 20, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 5.4, - 0 - ] + "pressure": [1006.4, 0], + "normalPressure": [1009.7, 0], + "temp": [20.1, 0], + "humidity": [85, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [4.5, 0], + "precipitation24h": [20, 0], + "windDirection": [10, 0], + "wind": [5.4, 0] }, "31646": { - "temp": [ - 22, - 0 - ], - "humidity": [ - 83, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.4, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 24, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 3.7, - 0 - ] + "temp": [22, 0], + "humidity": [83, 0], + "sun10m": [10, 0], + "sun1h": [0.4, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [24, 0], + "windDirection": [7, 0], + "wind": [3.7, 0] }, "31662": { - "temp": [ - 20.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 23.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 3.2, - 0 - ] + "temp": [20.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [3, 0], + "precipitation24h": [23.5, 0], + "windDirection": [12, 0], + "wind": [3.2, 0] }, "31671": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 18, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [3, 0], + "precipitation24h": [18, 0] }, "31721": { - "temp": [ - 18.9, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 3.5, - 0 - ], - "precipitation24h": [ - 16.5, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 0.4, - 0 - ] + "temp": [18.9, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [3.5, 0], + "precipitation24h": [16.5, 0], + "windDirection": [3, 0], + "wind": [0.4, 0] }, "32056": { - "temp": [ - 21.3, - 0 - ], - "humidity": [ - 72, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 6, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 4.9, - 0 - ] + "temp": [21.3, 0], + "humidity": [72, 0], + "sun10m": [0, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [6, 0], + "windDirection": [12, 0], + "wind": [4.9, 0] }, "32071": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 14, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [14, 0] }, "32091": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 32, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [32, 0] }, "32096": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 5, - 0 - ], - "precipitation24h": [ - 32, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [5, 0], + "precipitation24h": [32, 0] }, "32111": { - "temp": [ - 22.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 7, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 5.3, - 0 - ] + "temp": [22.5, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [7, 0], + "windDirection": [12, 0], + "wind": [5.3, 0] }, "32126": { - "temp": [ - 22.7, - 0 - ], - "humidity": [ - 74, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 20.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 4, - 0 - ] + "temp": [22.7, 0], + "humidity": [74, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [20.5, 0], + "windDirection": [11, 0], + "wind": [4, 0] }, "32136": { - "temp": [ - 23.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 22.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 1.3, - 0 - ] + "temp": [23.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [22.5, 0], + "windDirection": [12, 0], + "wind": [1.3, 0] }, "32146": { - "temp": [ - 21.1, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 4.5, - 0 - ], - "precipitation24h": [ - 47, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 1.4, - 0 - ] + "temp": [21.1, 0], + "sun10m": [2, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [4.5, 0], + "precipitation24h": [47, 0], + "windDirection": [9, 0], + "wind": [1.4, 0] }, "32181": { - "temp": [ - 21.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 23.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 5.1, - 0 - ] + "temp": [21.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [23.5, 0], + "windDirection": [12, 0], + "wind": [5.1, 0] }, "32206": { - "temp": [ - 19.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 4.5, - 0 - ], - "precipitation24h": [ - 26, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [19.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [4.5, 0], + "precipitation24h": [26, 0], + "windDirection": [12, 0], + "wind": [1.9, 0] }, "32266": { - "temp": [ - 18, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 5.5, - 0 - ], - "precipitation24h": [ - 25.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [18, 0], + "sun10m": [2, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [5.5, 0], + "precipitation24h": [25.5, 0], + "windDirection": [11, 0], + "wind": [1.5, 0] }, "32276": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 7, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [7, 0] }, "32286": { - "temp": [ - 21.6, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 8.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "temp": [21.6, 0], + "sun10m": [2, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [8.5, 0], + "windDirection": [15, 0], + "wind": [1.7, 0] }, "32287": { - "temp": [ - 23.3, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.4, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 10, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 3.9, - 0 - ] + "temp": [23.3, 0], + "sun10m": [10, 0], + "sun1h": [0.4, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [10, 0], + "windDirection": [12, 0], + "wind": [3.9, 0] }, "32296": { - "temp": [ - 22.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 27.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 3.2, - 0 - ] + "temp": [22.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [27.5, 0], + "windDirection": [9, 0], + "wind": [3.2, 0] }, "32311": { - "temp": [ - 22.2, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 36.5, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [22.2, 0], + "sun10m": [7, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [36.5, 0], + "windDirection": [6, 0], + "wind": [2, 0] }, "32312": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 33, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [33, 0] }, "32376": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 9, - 0 - ], - "precipitation24h": [ - 52, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [9, 0], + "precipitation24h": [52, 0] }, "32402": { - "pressure": [ - 1009.3, - 0 - ], - "normalPressure": [ - 1011.8, - 0 - ], - "temp": [ - 21.6, - 0 - ], - "humidity": [ - 81, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 35.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 2.7, - 0 - ] + "pressure": [1009.3, 0], + "normalPressure": [1011.8, 0], + "temp": [21.6, 0], + "humidity": [81, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [35.5, 0], + "windDirection": [12, 0], + "wind": [2.7, 0] }, "32407": { - "temp": [ - 20.9, - 0 - ], - "humidity": [ - 98, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 41.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 0.7, - 0 - ] + "temp": [20.9, 0], + "humidity": [98, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [41.5, 0], + "windDirection": [12, 0], + "wind": [0.7, 0] }, "32408": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 40, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [40, 0] }, "32426": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 13, - 0 - ], - "precipitation24h": [ - 45, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [13, 0], + "precipitation24h": [45, 0] }, "32431": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 14, - 0 - ], - "precipitation24h": [ - 43.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [14, 0], + "precipitation24h": [43.5, 0] }, "32451": { - "temp": [ - 20.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 34, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "temp": [20.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [34, 0], + "windDirection": [7, 0], + "wind": [1.7, 0] }, "32466": { - "temp": [ - 19.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 8.5, - 0 - ], - "precipitation24h": [ - 41, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 1.2, - 0 - ] + "temp": [19.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [8.5, 0], + "precipitation24h": [41, 0], + "windDirection": [7, 0], + "wind": [1.2, 0] }, "32476": { - "temp": [ - 18.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 11, - 0 - ], - "precipitation24h": [ - 36.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [18.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [11, 0], + "precipitation24h": [36.5, 0], + "windDirection": [10, 0], + "wind": [1.1, 0] }, "32496": { - "temp": [ - 20.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 32.5, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [20.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [32.5, 0], + "windDirection": [6, 0], + "wind": [1.1, 0] }, "32551": { - "temp": [ - 19.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 8.5, - 0 - ], - "precipitation24h": [ - 43, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 0.3, - 0 - ] + "temp": [19.7, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [8.5, 0], + "precipitation24h": [43, 0], + "windDirection": [15, 0], + "wind": [0.3, 0] }, "32571": { - "temp": [ - 23, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 35, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "temp": [23, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2, 0], + "precipitation24h": [35, 0], + "windDirection": [11, 0], + "wind": [2.8, 0] }, "32581": { - "temp": [ - 20.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 6.5, - 0 - ], - "precipitation24h": [ - 35, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 0.3, - 0 - ] + "temp": [20.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [6.5, 0], + "precipitation24h": [35, 0], + "windDirection": [4, 0], + "wind": [0.3, 0] }, "32596": { - "temp": [ - 19.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 11.5, - 0 - ], - "precipitation24h": [ - 45.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 0.8, - 0 - ] + "temp": [19.7, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [11.5, 0], + "precipitation24h": [45.5, 0], + "windDirection": [8, 0], + "wind": [0.8, 0] }, "32616": { - "temp": [ - 22.4, - 0 - ], - "humidity": [ - 84, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 38, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 4.7, - 0 - ] + "temp": [22.4, 0], + "humidity": [84, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [38, 0], + "windDirection": [11, 0], + "wind": [4.7, 0] }, "32626": { - "temp": [ - 20.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 25.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 0.5, - 0 - ] + "temp": [20.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2, 0], + "precipitation24h": [25.5, 0], + "windDirection": [11, 0], + "wind": [0.5, 0] }, "32681": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 10, - 0 - ], - "precipitation24h": [ - 34, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [10, 0], + "precipitation24h": [34, 0] }, "32691": { - "temp": [ - 18.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 8, - 0 - ], - "precipitation24h": [ - 30, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 0.9, - 0 - ] + "temp": [18.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [8, 0], + "precipitation24h": [30, 0], + "windDirection": [8, 0], + "wind": [0.9, 0] }, "32701": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 10.5, - 0 - ], - "precipitation24h": [ - 37.5, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [10.5, 0], + "precipitation24h": [37.5, 0] }, "32771": { - "temp": [ - 17.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 4, - 0 - ], - "precipitation24h": [ - 23.5, - 0 - ], - "windDirection": [ - 0, - 0 - ], - "wind": [ - 0.2, - 0 - ] + "temp": [17.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [4, 0], + "precipitation24h": [23.5, 0], + "windDirection": [0, 0], + "wind": [0.2, 0] }, "33006": { - "temp": [ - 18.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 27.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 0.7, - 0 - ] + "temp": [18.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [1, 0], + "precipitation3h": [3, 0], + "precipitation24h": [27.5, 0], + "windDirection": [10, 0], + "wind": [0.7, 0] }, "33026": { - "temp": [ - 19.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 16.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [19.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2, 0], + "precipitation24h": [16.5, 0], + "windDirection": [14, 0], + "wind": [1.5, 0] }, "33071": { - "temp": [ - 19.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 19.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 0.7, - 0 - ] + "temp": [19.7, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2, 0], + "precipitation24h": [19.5, 0], + "windDirection": [10, 0], + "wind": [0.7, 0] }, "33086": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 28, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [28, 0] }, "33136": { - "temp": [ - 19.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 18.5, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 0.8, - 0 - ] + "temp": [19.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [2, 0], + "precipitation24h": [18.5, 0], + "windDirection": [6, 0], + "wind": [0.8, 0] }, "33146": { - "temp": [ - 21.1, - 0 - ], - "humidity": [ - 97, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 3.5, - 0 - ], - "precipitation24h": [ - 22, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.4, - 0 - ] + "temp": [21.1, 0], + "humidity": [97, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [3.5, 0], + "precipitation24h": [22, 0], + "windDirection": [13, 0], + "wind": [1.4, 0] }, "33166": { - "temp": [ - 18.8, - 0 - ], - "humidity": [ - 94, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 4, - 0 - ], - "precipitation24h": [ - 12.5, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 1.2, - 0 - ] + "temp": [18.8, 0], + "humidity": [94, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [4, 0], + "precipitation24h": [12.5, 0], + "windDirection": [6, 0], + "wind": [1.2, 0] }, "33176": { - "temp": [ - 17.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 5.5, - 0 - ], - "precipitation24h": [ - 30.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 1.3, - 0 - ] + "temp": [17.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [5.5, 0], + "precipitation24h": [30.5, 0], + "windDirection": [10, 0], + "wind": [1.3, 0] }, "33186": { - "temp": [ - 18.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 2, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 24.5, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [18.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [2, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [24.5, 0], + "windDirection": [5, 0], + "wind": [1.1, 0] }, "33201": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 2.5, - 0 - ], - "precipitation3h": [ - 4.5, - 0 - ], - "precipitation24h": [ - 20, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [2.5, 0], + "precipitation3h": [4.5, 0], + "precipitation24h": [20, 0] }, "33206": { - "temp": [ - 21.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 3.5, - 0 - ], - "precipitation3h": [ - 5, - 0 - ], - "precipitation24h": [ - 18.5, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 1.2, - 0 - ] + "temp": [21.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [3.5, 0], + "precipitation3h": [5, 0], + "precipitation24h": [18.5, 0], + "windDirection": [3, 0], + "wind": [1.2, 0] }, "33226": { - "temp": [ - 18.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 21, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 0.9, - 0 - ] + "temp": [18.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [3, 0], + "precipitation24h": [21, 0], + "windDirection": [5, 0], + "wind": [0.9, 0] }, "33231": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 6.5, - 0 - ], - "precipitation24h": [ - 32.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [6.5, 0], + "precipitation24h": [32.5, 0] }, "33296": { - "temp": [ - 20.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 4, - 0 - ], - "precipitation24h": [ - 41.5, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [20.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [1, 0], + "precipitation3h": [4, 0], + "precipitation24h": [41.5, 0], + "windDirection": [3, 0], + "wind": [1, 0] }, "33326": { - "temp": [ - 23, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 13.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 0.9, - 0 - ] + "temp": [23, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1, 0], + "precipitation24h": [13.5, 0], + "windDirection": [11, 0], + "wind": [0.9, 0] }, "33336": { - "temp": [ - 23.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 1, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 21, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [23.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [1, 0], + "precipitation1h": [1, 0], + "precipitation3h": [1, 0], + "precipitation24h": [21, 0], + "windDirection": [2, 0], + "wind": [1, 0] }, "33351": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 3.5, - 0 - ], - "precipitation24h": [ - 41.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [3.5, 0], + "precipitation24h": [41.5, 0] }, "33361": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 44.5, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [3, 0], + "precipitation24h": [44.5, 0] }, "33371": { - "temp": [ - 16.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 5, - 0 - ], - "precipitation3h": [ - 12.5, - 0 - ], - "precipitation24h": [ - 65.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 0.9, - 0 - ] + "temp": [16.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [5, 0], + "precipitation3h": [12.5, 0], + "precipitation24h": [65.5, 0], + "windDirection": [10, 0], + "wind": [0.9, 0] }, "33421": { - "temp": [ - 19.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 38, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [19.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [3, 0], + "precipitation24h": [38, 0], + "windDirection": [9, 0], + "wind": [1, 0] }, "33431": { - "pressure": [ - 993, - 0 - ], - "normalPressure": [ - 1011, - 0 - ], - "temp": [ - 19.4, - 0 - ], - "humidity": [ - 92, - 0 - ], - "visibility": [ - 14260, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 2, - 0 - ], - "precipitation3h": [ - 7, - 0 - ], - "precipitation24h": [ - 45, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "pressure": [993, 0], + "normalPressure": [1011, 0], + "temp": [19.4, 0], + "humidity": [92, 0], + "visibility": [14260, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [2, 0], + "precipitation3h": [7, 0], + "precipitation24h": [45, 0], + "windDirection": [5, 0], + "wind": [1.7, 0] }, "33441": { - "temp": [ - 15.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 6.5, - 0 - ], - "precipitation3h": [ - 17.5, - 0 - ], - "precipitation24h": [ - 109, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 2.2, - 0 - ] + "temp": [15.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [6.5, 0], + "precipitation3h": [17.5, 0], + "precipitation24h": [109, 0], + "windDirection": [13, 0], + "wind": [2.2, 0] }, "33472": { - "pressure": [ - 1003.3, - 0 - ], - "normalPressure": [ - 1008.7, - 0 - ], - "temp": [ - 24.1, - 0 - ], - "humidity": [ - 94, - 0 - ], - "visibility": [ - 13940, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 21, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "pressure": [1003.3, 0], + "normalPressure": [1008.7, 0], + "temp": [24.1, 0], + "humidity": [94, 0], + "visibility": [13940, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [21, 0], + "windDirection": [10, 0], + "wind": [1.1, 0] }, "33486": { - "temp": [ - 17.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 42.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 4.1, - 0 - ] + "temp": [17.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [2, 0], + "precipitation24h": [42.5, 0], + "windDirection": [9, 0], + "wind": [4.1, 0] }, "33501": { - "temp": [ - 19.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 3, - 0 - ], - "precipitation3h": [ - 11.5, - 0 - ], - "precipitation24h": [ - 60, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 3.1, - 0 - ] + "temp": [19.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [3, 0], + "precipitation3h": [11.5, 0], + "precipitation24h": [60, 0], + "windDirection": [4, 0], + "wind": [3.1, 0] }, "33526": { - "temp": [ - 24.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 29.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 3, - 0 - ] + "temp": [24.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [29.5, 0], + "windDirection": [9, 0], + "wind": [3, 0] }, "33566": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 45, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2, 0], + "precipitation24h": [45, 0] }, "33576": { - "temp": [ - 20.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 70.5, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 2.5, - 0 - ] + "temp": [20.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [3, 0], + "precipitation24h": [70.5, 0], + "windDirection": [4, 0], + "wind": [2.5, 0] }, "33581": { - "temp": [ - 19.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 2.5, - 0 - ], - "precipitation3h": [ - 4, - 0 - ], - "precipitation24h": [ - 64, - 0 - ], - "windDirection": [ - 0, - 0 - ], - "wind": [ - 0.2, - 0 - ] + "temp": [19.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [2.5, 0], + "precipitation3h": [4, 0], + "precipitation24h": [64, 0], + "windDirection": [0, 0], + "wind": [0.2, 0] }, "33596": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 40.5, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [40.5, 0] }, "33611": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 33, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [33, 0] }, "33616": { - "temp": [ - 23.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 25, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [23.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [25, 0], + "windDirection": [14, 0], + "wind": [1, 0] }, "33631": { - "temp": [ - 19, - 0 - ], - "humidity": [ - 97, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 8.5, - 0 - ], - "precipitation24h": [ - 38.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [19, 0], + "humidity": [97, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [8.5, 0], + "precipitation24h": [38.5, 0], + "windDirection": [8, 0], + "wind": [1.9, 0] }, "33671": { - "temp": [ - 20.2, - 0 - ], - "humidity": [ - 92, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 35.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 6.3, - 0 - ] + "temp": [20.2, 0], + "humidity": [92, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [35.5, 0], + "windDirection": [11, 0], + "wind": [6.3, 0] }, "33711": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 52.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [52.5, 0] }, "33716": { - "temp": [ - 20, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 60, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [20, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1, 0], + "precipitation24h": [60, 0], + "windDirection": [14, 0], + "wind": [1, 0] }, "33726": { - "precipitation10m": [ - 1.5, - 0 - ], - "precipitation1h": [ - 2.5, - 0 - ], - "precipitation3h": [ - 5, - 0 - ], - "precipitation24h": [ - 37, - 0 - ] + "precipitation10m": [1.5, 0], + "precipitation1h": [2.5, 0], + "precipitation3h": [5, 0], + "precipitation24h": [37, 0] }, "33751": { - "temp": [ - 25.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 36, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "temp": [25.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [36, 0], + "windDirection": [13, 0], + "wind": [1.7, 0] }, "33776": { - "temp": [ - 20, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 4, - 0 - ], - "precipitation3h": [ - 4.5, - 0 - ], - "precipitation24h": [ - 51.5, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 2.4, - 0 - ] + "temp": [20, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [4, 0], + "precipitation3h": [4.5, 0], + "precipitation24h": [51.5, 0], + "windDirection": [4, 0], + "wind": [2.4, 0] }, "33781": { - "temp": [ - 19.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 2, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 42.5, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 3, - 0 - ] + "temp": [19.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [2, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [42.5, 0], + "windDirection": [16, 0], + "wind": [3, 0] }, "33801": { - "temp": [ - 22.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 2.5, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 56, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [22.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [2.5, 0], + "precipitation3h": [3, 0], + "precipitation24h": [56, 0], + "windDirection": [14, 0], + "wind": [1.6, 0] }, "33831": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 42.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1, 0], + "precipitation24h": [42.5, 0] }, "33841": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 2, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 45, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [2, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [45, 0] }, "33856": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 35.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [2, 0], + "precipitation24h": [35.5, 0] }, "33877": { - "pressure": [ - 1004.8, - 0 - ], - "normalPressure": [ - 1009.2, - 0 - ], - "temp": [ - 23.9, - 0 - ], - "humidity": [ - 83, - 0 - ], - "visibility": [ - 18500, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 41.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 4, - 0 - ] + "pressure": [1004.8, 0], + "normalPressure": [1009.2, 0], + "temp": [23.9, 0], + "humidity": [83, 0], + "visibility": [18500, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [41.5, 0], + "windDirection": [15, 0], + "wind": [4, 0] }, "33911": { - "temp": [ - 20.4, - 0 - ], - "humidity": [ - 93, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 39.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 2.7, - 0 - ] + "temp": [20.4, 0], + "humidity": [93, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [39.5, 0], + "windDirection": [15, 0], + "wind": [2.7, 0] }, "33921": { - "temp": [ - 21.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 1, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 50, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 3.6, - 0 - ] + "temp": [21.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [1, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [50, 0], + "windDirection": [14, 0], + "wind": [3.6, 0] }, "34012": { - "temp": [ - 18.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 3.5, - 0 - ], - "precipitation3h": [ - 4.5, - 0 - ], - "precipitation24h": [ - 47.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 2.2, - 0 - ] + "temp": [18.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [3.5, 0], + "precipitation3h": [4.5, 0], + "precipitation24h": [47.5, 0], + "windDirection": [11, 0], + "wind": [2.2, 0] }, "34026": { - "temp": [ - 23.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 42.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "temp": [23.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [42.5, 0], + "windDirection": [14, 0], + "wind": [1.7, 0] }, "34056": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 47, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [2, 0], + "precipitation24h": [47, 0] }, "34096": { - "temp": [ - 19.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 35.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [19.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [35.5, 0], + "windDirection": [12, 0], + "wind": [1, 0] }, "34111": { - "temp": [ - 22.4, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 43, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 3.6, - 0 - ] + "temp": [22.4, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [43, 0], + "windDirection": [13, 0], + "wind": [3.6, 0] }, "34171": { - "temp": [ - 23.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 52, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 4.7, - 0 - ] + "temp": [23.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [52, 0], + "windDirection": [12, 0], + "wind": [4.7, 0] }, "34186": { - "temp": [ - 24.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 45, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 0.5, - 0 - ] + "temp": [24.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [45, 0], + "windDirection": [11, 0], + "wind": [0.5, 0] }, "34206": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 36, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [36, 0] }, "34216": { - "temp": [ - 21.3, - 0 - ], - "humidity": [ - 99, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 29.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 5, - 0 - ] + "temp": [21.3, 0], + "humidity": [99, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [29.5, 0], + "windDirection": [13, 0], + "wind": [5, 0] }, "34241": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 40, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [40, 0] }, "34262": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 42, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [42, 0] }, "34266": { - "temp": [ - 21.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 35.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [21.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [35.5, 0], + "windDirection": [14, 0], + "wind": [2.6, 0] }, "34276": { - "temp": [ - 22.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 45, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 3.7, - 0 - ] + "temp": [22.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [45, 0], + "windDirection": [13, 0], + "wind": [3.7, 0] }, "34292": { - "pressure": [ - 1004.9, - 0 - ], - "normalPressure": [ - 1009.8, - 0 - ], - "temp": [ - 23.4, - 0 - ], - "humidity": [ - 90, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 52.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 3.8, - 0 - ] + "pressure": [1004.9, 0], + "normalPressure": [1009.8, 0], + "temp": [23.4, 0], + "humidity": [90, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [52.5, 0], + "windDirection": [13, 0], + "wind": [3.8, 0] }, "34296": { - "temp": [ - 23.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 40, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [23.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [40, 0], + "windDirection": [11, 0], + "wind": [1.8, 0] }, "34311": { - "temp": [ - 22, - 0 - ], - "humidity": [ - 90, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 35, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 3.4, - 0 - ] + "temp": [22, 0], + "humidity": [90, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [35, 0], + "windDirection": [12, 0], + "wind": [3.4, 0] }, "34331": { - "temp": [ - 21.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 49, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 4.6, - 0 - ] + "temp": [21.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [49, 0], + "windDirection": [14, 0], + "wind": [4.6, 0] }, "34392": { - "pressure": [ - 1004.4, - 0 - ], - "normalPressure": [ - 1009.4, - 0 - ], - "temp": [ - 23.8, - 0 - ], - "humidity": [ - 93, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 40.5, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 2.2, - 0 - ] + "pressure": [1004.4, 0], + "normalPressure": [1009.4, 0], + "temp": [23.8, 0], + "humidity": [93, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [1, 0], + "precipitation3h": [1, 0], + "precipitation24h": [40.5, 0], + "windDirection": [2, 0], + "wind": [2.2, 0] }, "34436": { - "temp": [ - 22.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 50.5, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 3.3, - 0 - ] + "temp": [22.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1, 0], + "precipitation24h": [50.5, 0], + "windDirection": [4, 0], + "wind": [3.3, 0] }, "34461": { - "temp": [ - 23.7, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 41, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 1.2, - 0 - ] + "temp": [23.7, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [41, 0], + "windDirection": [16, 0], + "wind": [1.2, 0] }, "34462": { - "temp": [ - 23.8, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 43.5, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 0.3, - 0 - ] + "temp": [23.8, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [43.5, 0], + "windDirection": [2, 0], + "wind": [0.3, 0] }, "34471": { - "temp": [ - 22.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 50, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [22.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [50, 0], + "windDirection": [5, 0], + "wind": [1.1, 0] }, "34506": { - "temp": [ - 23.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 42, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 1.2, - 0 - ] + "temp": [23.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [42, 0], + "windDirection": [3, 0], + "wind": [1.2, 0] }, "34526": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 5, - 0 - ], - "precipitation24h": [ - 47.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [5, 0], + "precipitation24h": [47.5, 0] }, "35002": { - "temp": [ - 21.5, - 0 - ], - "humidity": [ - 86, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 11.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 5.4, - 0 - ] + "temp": [21.5, 0], + "humidity": [86, 0], + "sun10m": [0, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [11.5, 0], + "windDirection": [13, 0], + "wind": [5.4, 0] }, "35052": { - "pressure": [ - 1012.1, - 0 - ], - "normalPressure": [ - 1012.7, - 0 - ], - "temp": [ - 20.8, - 0 - ], - "humidity": [ - 89, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 59.5, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "pressure": [1012.1, 0], + "normalPressure": [1012.7, 0], + "temp": [20.8, 0], + "humidity": [89, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2, 0], + "precipitation24h": [59.5, 0], + "windDirection": [7, 0], + "wind": [1.8, 0] }, "35056": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 7, - 0 - ], - "precipitation24h": [ - 63, - 1 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [7, 0], + "precipitation24h": [63, 1] }, "35071": { - "temp": [ - 19.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 6, - 0 - ], - "precipitation24h": [ - 48, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [19.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [6, 0], + "precipitation24h": [48, 0], + "windDirection": [7, 0], + "wind": [1.6, 0] }, "35086": { - "temp": [ - 20.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 3.5, - 0 - ], - "precipitation24h": [ - 61.5, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 1.3, - 0 - ] + "temp": [20.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [3.5, 0], + "precipitation24h": [61.5, 0], + "windDirection": [5, 0], + "wind": [1.3, 0] }, "35116": { - "temp": [ - 18.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 5.5, - 0 - ], - "precipitation24h": [ - 35.5, - 0 - ], - "windDirection": [ - 0, - 0 - ], - "wind": [ - 0.2, - 0 - ] + "temp": [18.7, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [5.5, 0], + "precipitation24h": [35.5, 0], + "windDirection": [0, 0], + "wind": [0.2, 0] }, "35141": { - "temp": [ - 20.4, - 0 - ], - "humidity": [ - 98, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 7, - 0 - ], - "precipitation24h": [ - 61, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 0.7, - 0 - ] + "temp": [20.4, 0], + "humidity": [98, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [7, 0], + "precipitation24h": [61, 0], + "windDirection": [6, 0], + "wind": [0.7, 0] }, "35146": { - "temp": [ - 19.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 6, - 0 - ], - "precipitation24h": [ - 49, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 0.5, - 0 - ] + "temp": [19.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [6, 0], + "precipitation24h": [49, 0], + "windDirection": [5, 0], + "wind": [0.5, 0] }, "35162": { - "pressure": [ - 1000.2, - 0 - ], - "normalPressure": [ - 1012.1, - 0 - ], - "temp": [ - 20.1, - 0 - ], - "humidity": [ - 87, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 36, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 4.8, - 0 - ] + "pressure": [1000.2, 0], + "normalPressure": [1012.1, 0], + "temp": [20.1, 0], + "humidity": [87, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [36, 0], + "windDirection": [16, 0], + "wind": [4.8, 0] }, "35171": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 36, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [36, 0] }, "35176": { - "temp": [ - 19, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 40, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 0.4, - 0 - ] + "temp": [19, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [40, 0], + "windDirection": [2, 0], + "wind": [0.4, 0] }, "35201": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 4.5, - 0 - ], - "precipitation24h": [ - 50, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [4.5, 0], + "precipitation24h": [50, 0] }, "35216": { - "temp": [ - 19.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 28.5, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [19.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [28.5, 0], + "windDirection": [2, 0], + "wind": [1.9, 0] }, "35231": { - "temp": [ - 19.1, - 0 - ], - "humidity": [ - 97, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 31, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "temp": [19.1, 0], + "humidity": [97, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [31, 0], + "windDirection": [1, 0], + "wind": [2.1, 0] }, "35246": { - "temp": [ - 21.8, - 0 - ], - "humidity": [ - 93, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 5, - 0 - ], - "precipitation24h": [ - 75.5, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 0.4, - 0 - ] + "temp": [21.8, 0], + "humidity": [93, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [5, 0], + "precipitation24h": [75.5, 0], + "windDirection": [3, 0], + "wind": [0.4, 0] }, "35256": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 4.5, - 0 - ], - "precipitation24h": [ - 38.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [4.5, 0], + "precipitation24h": [38.5, 0] }, "35332": { - "temp": [ - 18.8, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 36.5, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 2.5, - 0 - ] + "temp": [18.8, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [3, 0], + "precipitation24h": [36.5, 0], + "windDirection": [2, 0], + "wind": [2.5, 0] }, "35334": { - "temp": [ - 19.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 33.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 6.7, - 0 - ] + "temp": [19.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [33.5, 0], + "windDirection": [1, 0], + "wind": [6.7, 0] }, "35361": { - "temp": [ - 20.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 23, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 1.4, - 0 - ] + "temp": [20.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [23, 0], + "windDirection": [1, 0], + "wind": [1.4, 0] }, "35376": { - "temp": [ - 20.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 38.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 1.2, - 0 - ] + "temp": [20.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [38.5, 0], + "windDirection": [1, 0], + "wind": [1.2, 0] }, "35426": { - "pressure": [ - 993.5, - 0 - ], - "normalPressure": [ - 1011.2, - 0 - ], - "temp": [ - 20.7, - 0 - ], - "humidity": [ - 87, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 4.5, - 0 - ], - "precipitation24h": [ - 29.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 4.3, - 0 - ] + "pressure": [993.5, 0], + "normalPressure": [1011.2, 0], + "temp": [20.7, 0], + "humidity": [87, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [4.5, 0], + "precipitation24h": [29.5, 0], + "windDirection": [1, 0], + "wind": [4.3, 0] }, "35456": { - "temp": [ - 22.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 39.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [22.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [39.5, 0], + "windDirection": [8, 0], + "wind": [1.5, 0] }, "35466": { - "precipitation10m": [ - 1, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 39.5, - 0 - ] + "precipitation10m": [1, 0], + "precipitation1h": [1, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [39.5, 0] }, "35486": { - "temp": [ - 20.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 21.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 0.4, - 0 - ] + "temp": [20.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [21.5, 0], + "windDirection": [11, 0], + "wind": [0.4, 0] }, "35511": { - "temp": [ - 21.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 28.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 2.7, - 0 - ] + "temp": [21.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2, 0], + "precipitation24h": [28.5, 0], + "windDirection": [10, 0], + "wind": [2.7, 0] }, "35537": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 34.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [34.5, 0] }, "35541": { - "temp": [ - 21.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 31.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [21.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [31.5, 0], + "windDirection": [14, 0], + "wind": [2.6, 0] }, "35552": { - "temp": [ - 21.1, - 0 - ], - "humidity": [ - 94, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 4, - 0 - ], - "precipitation24h": [ - 32, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [21.1, 0], + "humidity": [94, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [4, 0], + "precipitation24h": [32, 0], + "windDirection": [10, 0], + "wind": [1.6, 0] }, "36056": { - "temp": [ - 22.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 36.5, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [22.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [36.5, 0], + "windDirection": [2, 0], + "wind": [1.8, 0] }, "36066": { - "temp": [ - 25.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 46.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [25.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [46.5, 0], + "windDirection": [14, 0], + "wind": [1.8, 0] }, "36106": { - "temp": [ - 17.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 47, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 0.7, - 0 - ] + "temp": [17.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [47, 0], + "windDirection": [11, 0], + "wind": [0.7, 0] }, "36127": { - "pressure": [ - 1001.6, - 0 - ], - "normalPressure": [ - 1009.5, - 0 - ], - "temp": [ - 25, - 0 - ], - "humidity": [ - 68, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 55.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 4.3, - 0 - ] + "pressure": [1001.6, 0], + "normalPressure": [1009.5, 0], + "temp": [25, 0], + "humidity": [68, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [55.5, 0], + "windDirection": [14, 0], + "wind": [4.3, 0] }, "36151": { - "temp": [ - 22.5, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 43, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [22.5, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [3, 0], + "precipitation24h": [43, 0], + "windDirection": [14, 0], + "wind": [1.1, 0] }, "36176": { - "temp": [ - 21.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 39, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 2.9, - 0 - ] + "temp": [21.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [39, 0], + "windDirection": [13, 0], + "wind": [2.9, 0] }, "36196": { - "temp": [ - 15.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 47.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 2.4, - 0 - ] + "temp": [15.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [2, 0], + "precipitation24h": [47.5, 0], + "windDirection": [13, 0], + "wind": [2.4, 0] }, "36221": { - "temp": [ - 22.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 5, - 0 - ], - "precipitation24h": [ - 49, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "temp": [22.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [5, 0], + "precipitation24h": [49, 0], + "windDirection": [14, 0], + "wind": [1.7, 0] }, "36231": { - "precipitation10m": [ - 2, - 0 - ], - "precipitation1h": [ - 4.5, - 0 - ], - "precipitation3h": [ - 12.5, - 0 - ], - "precipitation24h": [ - 52.5, - 0 - ] + "precipitation10m": [2, 0], + "precipitation1h": [4.5, 0], + "precipitation3h": [12.5, 0], + "precipitation24h": [52.5, 0] }, "36251": { - "temp": [ - 20.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 39.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [20.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [39.5, 0], + "windDirection": [13, 0], + "wind": [1.5, 0] }, "36276": { - "temp": [ - 18.7, - 0 - ], - "humidity": [ - 89, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 38, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 4.9, - 0 - ] + "temp": [18.7, 0], + "humidity": [89, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [38, 0], + "windDirection": [12, 0], + "wind": [4.9, 0] }, "36291": { - "temp": [ - 24.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 57.5, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [24.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [57.5, 0], + "windDirection": [5, 0], + "wind": [1.5, 0] }, "36307": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 6, - 0 - ], - "precipitation24h": [ - 50.5, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [1, 0], + "precipitation3h": [6, 0], + "precipitation24h": [50.5, 0] }, "36342": { - "temp": [ - 20.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 33, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [20.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [33, 0], + "windDirection": [16, 0], + "wind": [1.5, 0] }, "36361": { - "pressure": [ - 987, - 0 - ], - "normalPressure": [ - 1011.5, - 0 - ], - "temp": [ - 21.5, - 0 - ], - "humidity": [ - 80, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 31.5, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 1.4, - 0 - ] + "pressure": [987, 0], + "normalPressure": [1011.5, 0], + "temp": [21.5, 0], + "humidity": [80, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [31.5, 0], + "windDirection": [16, 0], + "wind": [1.4, 0] }, "36391": { - "temp": [ - 20.3, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 9, - 0 - ], - "precipitation24h": [ - 70.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [20.3, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [9, 0], + "precipitation24h": [70.5, 0], + "windDirection": [12, 0], + "wind": [2, 0] }, "36411": { - "temp": [ - 22.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 6, - 0 - ], - "precipitation3h": [ - 29.5, - 0 - ], - "precipitation24h": [ - 57.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [22.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [6, 0], + "precipitation3h": [29.5, 0], + "precipitation24h": [57.5, 0], + "windDirection": [14, 0], + "wind": [2, 0] }, "36426": { - "temp": [ - 20.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 29, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 0.5, - 0 - ] + "temp": [20.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [29, 0], + "windDirection": [10, 0], + "wind": [0.5, 0] }, "36461": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 54, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [54, 0] }, "36476": { - "temp": [ - 20.7, - 0 - ], - "humidity": [ - 87, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 3.5, - 0 - ], - "precipitation24h": [ - 56.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 5, - 0 - ] + "temp": [20.7, 0], + "humidity": [87, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [3.5, 0], + "precipitation24h": [56.5, 0], + "windDirection": [13, 0], + "wind": [5, 0] }, "36501": { - "temp": [ - 21.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 1, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 28.5, - 0 - ], - "precipitation24h": [ - 68, - 0 - ], - "windDirection": [ - 0, - 0 - ], - "wind": [ - 0.1, - 0 - ] + "temp": [21.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [1, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [28.5, 0], + "precipitation24h": [68, 0], + "windDirection": [0, 0], + "wind": [0.1, 0] }, "36511": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 22, - 0 - ], - "precipitation3h": [ - 31.5, - 0 - ], - "precipitation24h": [ - 58.5, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [22, 0], + "precipitation3h": [31.5, 0], + "precipitation24h": [58.5, 0] }, "36536": { - "temp": [ - 20.2, - 0 - ], - "humidity": [ - 93, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 28, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [20.2, 0], + "humidity": [93, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [28, 0], + "windDirection": [15, 0], + "wind": [2.6, 0] }, "36562": { - "temp": [ - 18.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 80.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [18.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [80.5, 0], + "windDirection": [15, 0], + "wind": [1, 0] }, "36571": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 95, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [95, 0] }, "36581": { - "temp": [ - 20.4, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 26.5, - 0 - ], - "precipitation24h": [ - 88, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 7.9, - 0 - ] + "temp": [20.4, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [26.5, 0], + "precipitation24h": [88, 0], + "windDirection": [15, 0], + "wind": [7.9, 0] }, "36591": { - "temp": [ - 21.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 17.5, - 0 - ], - "precipitation24h": [ - 71, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 0.9, - 0 - ] + "temp": [21.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [17.5, 0], + "precipitation24h": [71, 0], + "windDirection": [2, 0], + "wind": [0.9, 0] }, "36597": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 2, - 0 - ], - "precipitation3h": [ - 36, - 0 - ], - "precipitation24h": [ - 78, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [2, 0], + "precipitation3h": [36, 0], + "precipitation24h": [78, 0] }, "36611": { - "temp": [ - 23.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 24, - 0 - ], - "precipitation3h": [ - 27, - 0 - ], - "precipitation24h": [ - 53, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 0.3, - 0 - ] + "temp": [23.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [24, 0], + "precipitation3h": [27, 0], + "precipitation24h": [53, 0], + "windDirection": [16, 0], + "wind": [0.3, 0] }, "36641": { - "temp": [ - 21.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 34, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 2.3, - 0 - ] + "temp": [21.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [34, 0], + "windDirection": [9, 0], + "wind": [2.3, 0] }, "36667": { - "pressure": [ - 969.2, - 0 - ], - "normalPressure": [ - 1009.5, - 0 - ], - "temp": [ - 22, - 0 - ], - "humidity": [ - 99, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 7.5, - 0 - ], - "precipitation24h": [ - 97, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 2.5, - 0 - ] + "pressure": [969.2, 0], + "normalPressure": [1009.5, 0], + "temp": [22, 0], + "humidity": [99, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [7.5, 0], + "precipitation24h": [97, 0], + "windDirection": [3, 0], + "wind": [2.5, 0] }, "36676": { - "temp": [ - 22, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 19, - 0 - ], - "precipitation24h": [ - 84, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 0.3, - 0 - ] + "temp": [22, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [19, 0], + "precipitation24h": [84, 0], + "windDirection": [11, 0], + "wind": [0.3, 0] }, "36716": { - "temp": [ - 19.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 38, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 0.7, - 0 - ] + "temp": [19.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [38, 0], + "windDirection": [12, 0], + "wind": [0.7, 0] }, "36726": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 29.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [29.5, 0] }, "36781": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 9.5, - 0 - ], - "precipitation3h": [ - 15, - 0 - ], - "precipitation24h": [ - 43.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [9.5, 0], + "precipitation3h": [15, 0], + "precipitation24h": [43.5, 0] }, "36821": { - "temp": [ - 21.9, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 3, - 0 - ], - "precipitation1h": [ - 19.5, - 0 - ], - "precipitation3h": [ - 36.5, - 0 - ], - "precipitation24h": [ - 88, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [21.9, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [3, 0], + "precipitation1h": [19.5, 0], + "precipitation3h": [36.5, 0], + "precipitation24h": [88, 0], + "windDirection": [1, 0], + "wind": [1.9, 0] }, "36836": { - "temp": [ - 24.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 6.5, - 0 - ], - "precipitation24h": [ - 43, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 1.3, - 0 - ] + "temp": [24.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [6.5, 0], + "precipitation24h": [43, 0], + "windDirection": [15, 0], + "wind": [1.3, 0] }, "36846": { - "pressure": [ - 1007.7, - 0 - ], - "normalPressure": [ - 1008.3, - 0 - ], - "temp": [ - 23.6, - 0 - ], - "humidity": [ - 98, - 0 - ], - "visibility": [ - 1990, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 3.5, - 0 - ], - "precipitation1h": [ - 21, - 0 - ], - "precipitation3h": [ - 21, - 0 - ], - "precipitation24h": [ - 43.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 3.6, - 0 - ] + "pressure": [1007.7, 0], + "normalPressure": [1008.3, 0], + "temp": [23.6, 0], + "humidity": [98, 0], + "visibility": [1990, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [3.5, 0], + "precipitation1h": [21, 0], + "precipitation3h": [21, 0], + "precipitation24h": [43.5, 0], + "windDirection": [14, 0], + "wind": [3.6, 0] }, "40041": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 5, - 0 - ], - "precipitation24h": [ - 62, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [5, 0], + "precipitation24h": [62, 0] }, "40046": { - "temp": [ - 24.4, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 6.5, - 0 - ], - "precipitation3h": [ - 7.5, - 0 - ], - "precipitation24h": [ - 30.5, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "temp": [24.4, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [6.5, 0], + "precipitation3h": [7.5, 0], + "precipitation24h": [30.5, 0], + "windDirection": [3, 0], + "wind": [2.1, 0] }, "40061": { - "temp": [ - 22.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 3, - 0 - ], - "precipitation1h": [ - 6, - 0 - ], - "precipitation3h": [ - 17.5, - 0 - ], - "precipitation24h": [ - 59.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 0.5, - 0 - ] + "temp": [22.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [3, 0], + "precipitation1h": [6, 0], + "precipitation3h": [17.5, 0], + "precipitation24h": [59.5, 0], + "windDirection": [14, 0], + "wind": [0.5, 0] }, "40066": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 10.5, - 0 - ], - "precipitation24h": [ - 42, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [10.5, 0], + "precipitation24h": [42, 0] }, "40076": { - "precipitation10m": [ - 1, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 3.5, - 0 - ], - "precipitation24h": [ - 48, - 0 - ] + "precipitation10m": [1, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [3.5, 0], + "precipitation24h": [48, 0] }, "40091": { - "temp": [ - 23.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 3.5, - 0 - ], - "precipitation24h": [ - 40.5, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "temp": [23.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [3.5, 0], + "precipitation24h": [40.5, 0], + "windDirection": [16, 0], + "wind": [1.7, 0] }, "40126": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 2.5, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 30, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [2.5, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [30, 0] }, "40136": { - "temp": [ - 25.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 7, - 0 - ], - "precipitation3h": [ - 7.5, - 0 - ], - "precipitation24h": [ - 39, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [25.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [7, 0], + "precipitation3h": [7.5, 0], + "precipitation24h": [39, 0], + "windDirection": [10, 0], + "wind": [1.1, 0] }, "40181": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 85.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [85.5, 0] }, "40191": { - "temp": [ - 23.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 78.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1.2, - 0 - ] + "temp": [23.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [78.5, 0], + "windDirection": [14, 0], + "wind": [1.2, 0] }, "40201": { - "pressure": [ - 1004.7, - 0 - ], - "normalPressure": [ - 1008.2, - 0 - ], - "temp": [ - 24.2, - 0 - ], - "humidity": [ - 92, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 17.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "pressure": [1004.7, 0], + "normalPressure": [1008.2, 0], + "temp": [24.2, 0], + "humidity": [92, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [17.5, 0], + "windDirection": [15, 0], + "wind": [1.5, 0] }, "40221": { - "temp": [ - 23, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 4, - 0 - ], - "precipitation1h": [ - 12, - 0 - ], - "precipitation3h": [ - 19.5, - 0 - ], - "precipitation24h": [ - 66, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "temp": [23, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [4, 0], + "precipitation1h": [12, 0], + "precipitation3h": [19.5, 0], + "precipitation24h": [66, 0], + "windDirection": [1, 0], + "wind": [1.7, 0] }, "40231": { - "temp": [ - 23.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 100, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "temp": [23.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [100, 0], + "windDirection": [14, 0], + "wind": [2.8, 0] }, "40241": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 87.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [87.5, 0] }, "40251": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 49, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [49, 0] }, "40281": { - "temp": [ - 23.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 82.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 2.3, - 0 - ] + "temp": [23.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [82.5, 0], + "windDirection": [15, 0], + "wind": [2.3, 0] }, "40311": { - "temp": [ - 26.6, - 0 - ], - "humidity": [ - 97, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 29.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 1.3, - 0 - ] + "temp": [26.6, 0], + "humidity": [97, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [3, 0], + "precipitation24h": [29.5, 0], + "windDirection": [10, 0], + "wind": [1.3, 0] }, "40326": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 87.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [87.5, 0] }, "40336": { - "pressure": [ - 1004.8, - 0 - ], - "normalPressure": [ - 1007.9, - 0 - ], - "temp": [ - 25.1, - 0 - ], - "humidity": [ - 97, - 0 - ], - "visibility": [ - 5900, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 100, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "pressure": [1004.8, 0], + "normalPressure": [1007.9, 0], + "temp": [25.1, 0], + "humidity": [97, 0], + "visibility": [5900, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [100, 0], + "windDirection": [13, 0], + "wind": [2.6, 0] }, "40341": { - "temp": [ - 27.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 74.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "temp": [27.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [74.5, 0], + "windDirection": [8, 0], + "wind": [1.7, 0] }, "40391": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 84, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [84, 0] }, "40406": { - "temp": [ - 25.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 41, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "temp": [25.2, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1, 0], + "precipitation24h": [41, 0], + "windDirection": [9, 0], + "wind": [2.1, 0] }, "40426": { - "temp": [ - 26.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 62, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [26.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [62, 0], + "windDirection": [9, 0], + "wind": [2.6, 0] }, "41011": { - "temp": [ - 20.4, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 148, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [20.4, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2, 0], + "precipitation24h": [148, 0], + "windDirection": [10, 0], + "wind": [1, 0] }, "41076": { - "temp": [ - 21.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 61, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 0.7, - 0 - ] + "temp": [21.7, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [61, 0], + "windDirection": [14, 0], + "wind": [0.7, 0] }, "41091": { - "temp": [ - 22.3, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 141, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 1.3, - 0 - ] + "temp": [22.3, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [141, 0], + "windDirection": [5, 0], + "wind": [1.3, 0] }, "41116": { - "temp": [ - 21.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 54, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 0.8, - 0 - ] + "temp": [21.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [54, 0], + "windDirection": [6, 0], + "wind": [0.8, 0] }, "41141": { - "temp": [ - 22.5, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 6.5, - 0 - ], - "precipitation3h": [ - 15, - 0 - ], - "precipitation24h": [ - 148, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [22.5, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [6.5, 0], + "precipitation3h": [15, 0], + "precipitation24h": [148, 0], + "windDirection": [5, 0], + "wind": [1.9, 0] }, "41166": { - "pressure": [ - 869.4, - 0 - ], - "temp": [ - 18.8, - 0 - ], - "humidity": [ - null, - 6 - ], - "visibility": [ - 680, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 89, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "pressure": [869.4, 0], + "temp": [18.8, 0], + "humidity": [null, 6], + "visibility": [680, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [89, 0], + "windDirection": [4, 0], + "wind": [2.6, 0] }, "41171": { - "temp": [ - 22.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 93.5, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 0.6, - 0 - ] + "temp": [22.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [2, 0], + "precipitation24h": [93.5, 0], + "windDirection": [4, 0], + "wind": [0.6, 0] }, "41181": { - "temp": [ - 22.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 4, - 0 - ], - "precipitation3h": [ - 10, - 0 - ], - "precipitation24h": [ - 124.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 2.3, - 0 - ] + "temp": [22.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [4, 0], + "precipitation3h": [10, 0], + "precipitation24h": [124.5, 0], + "windDirection": [1, 0], + "wind": [2.3, 0] }, "41211": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 83.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [83.5, 0] }, "41241": { - "precipitation10m": [ - 2.5, - 0 - ], - "precipitation1h": [ - 24, - 0 - ], - "precipitation3h": [ - 39.5, - 0 - ], - "precipitation24h": [ - 149, - 0 - ] + "precipitation10m": [2.5, 0], + "precipitation1h": [24, 0], + "precipitation3h": [39.5, 0], + "precipitation24h": [149, 0] }, "41247": { - "temp": [ - 22.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 1.5, - 0 - ], - "precipitation1h": [ - 22, - 0 - ], - "precipitation3h": [ - 27, - 0 - ], - "precipitation24h": [ - 124, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [22.7, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [1.5, 0], + "precipitation1h": [22, 0], + "precipitation3h": [27, 0], + "precipitation24h": [124, 0], + "windDirection": [14, 0], + "wind": [1.1, 0] }, "41271": { - "temp": [ - 23.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 17, - 0 - ], - "precipitation24h": [ - 115.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [23.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [17, 0], + "precipitation24h": [115.5, 0], + "windDirection": [15, 0], + "wind": [1.6, 0] }, "41277": { - "pressure": [ - 992.2, - 0 - ], - "normalPressure": [ - 1008.2, - 0 - ], - "temp": [ - 22.6, - 0 - ], - "humidity": [ - 100, - 0 - ], - "visibility": [ - 4530, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 12.5, - 0 - ], - "precipitation3h": [ - 44.5, - 0 - ], - "precipitation24h": [ - 158, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 4.4, - 0 - ] + "pressure": [992.2, 0], + "normalPressure": [1008.2, 0], + "temp": [22.6, 0], + "humidity": [100, 0], + "visibility": [4530, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [12.5, 0], + "precipitation3h": [44.5, 0], + "precipitation24h": [158, 0], + "windDirection": [1, 0], + "wind": [4.4, 0] }, "41311": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 8, - 0 - ], - "precipitation24h": [ - 109.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [8, 0], + "precipitation24h": [109.5, 0] }, "41331": { - "temp": [ - 22.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 9, - 0 - ], - "precipitation1h": [ - 25, - 0 - ], - "precipitation3h": [ - 29.5, - 0 - ], - "precipitation24h": [ - 115, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 0.3, - 0 - ] + "temp": [22.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [9, 0], + "precipitation1h": [25, 0], + "precipitation3h": [29.5, 0], + "precipitation24h": [115, 0], + "windDirection": [2, 0], + "wind": [0.3, 0] }, "41356": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 7.5, - 0 - ], - "precipitation24h": [ - 95, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [7.5, 0], + "precipitation24h": [95, 0] }, "41361": { - "temp": [ - 24.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 11.5, - 0 - ], - "precipitation24h": [ - 94, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [24.7, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [11.5, 0], + "precipitation24h": [94, 0], + "windDirection": [4, 0], + "wind": [1.8, 0] }, "41371": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 21, - 0 - ], - "precipitation24h": [ - 99, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [21, 0], + "precipitation24h": [99, 0] }, "41376": { - "temp": [ - 22.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 2.5, - 0 - ], - "precipitation1h": [ - 23.5, - 0 - ], - "precipitation3h": [ - 33.5, - 0 - ], - "precipitation24h": [ - 100, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [22.7, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [2.5, 0], + "precipitation1h": [23.5, 0], + "precipitation3h": [33.5, 0], + "precipitation24h": [100, 0], + "windDirection": [1, 0], + "wind": [1.9, 0] }, "42046": { - "temp": [ - 21.5, - 0 - ], - "humidity": [ - 74, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 45, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [21.5, 0], + "humidity": [74, 0], + "sun10m": [2, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [45, 0], + "windDirection": [14, 0], + "wind": [1, 0] }, "42091": { - "temp": [ - 23.2, - 0 - ], - "humidity": [ - 69, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 55, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [23.2, 0], + "humidity": [69, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [55, 0], + "windDirection": [2, 0], + "wind": [2.6, 0] }, "42106": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 56.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [56.5, 0] }, "42121": { - "temp": [ - 20.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 57, - 0 - ], - "windDirection": [ - 0, - 0 - ], - "wind": [ - 0.2, - 0 - ] + "temp": [20.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [57, 0], + "windDirection": [0, 0], + "wind": [0.2, 0] }, "42146": { - "temp": [ - 26.4, - 0 - ], - "humidity": [ - 59, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 47.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 5.5, - 0 - ] + "temp": [26.4, 0], + "humidity": [59, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [47.5, 0], + "windDirection": [13, 0], + "wind": [5.5, 0] }, "42186": { - "temp": [ - 26.8, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 66.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 3.7, - 0 - ] + "temp": [26.8, 0], + "sun10m": [5, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [66.5, 0], + "windDirection": [1, 0], + "wind": [3.7, 0] }, "42221": { - "temp": [ - 22.5, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 64, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 3.1, - 0 - ] + "temp": [22.5, 0], + "sun10m": [7, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [64, 0], + "windDirection": [13, 0], + "wind": [3.1, 0] }, "42241": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 68, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [68, 0] }, "42251": { - "pressure": [ - 994.1, - 0 - ], - "normalPressure": [ - 1006.7, - 0 - ], - "temp": [ - 30.3, - 0 - ], - "humidity": [ - 67, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 60.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 0.7, - 0 - ] + "pressure": [994.1, 0], + "normalPressure": [1006.7, 0], + "temp": [30.3, 0], + "humidity": [67, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [60.5, 0], + "windDirection": [1, 0], + "wind": [0.7, 0] }, "42261": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 73.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [73.5, 0] }, "42266": { - "temp": [ - 28, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 62.5, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 3, - 0 - ] + "temp": [28, 0], + "sun10m": [7, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2, 0], + "precipitation24h": [62.5, 0], + "windDirection": [6, 0], + "wind": [3, 0] }, "42286": { - "temp": [ - 31.2, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 58.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [31.2, 0], + "sun10m": [7, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [58.5, 0], + "windDirection": [9, 0], + "wind": [1.6, 0] }, "42302": { - "temp": [ - 29.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 52, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 2.4, - 0 - ] + "temp": [29.5, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [52, 0], + "windDirection": [4, 0], + "wind": [2.4, 0] }, "42326": { - "temp": [ - 29.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 47.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 1.3, - 0 - ] + "temp": [29.1, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [47.5, 0], + "windDirection": [9, 0], + "wind": [1.3, 0] }, "42341": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 52.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [52.5, 0] }, "42366": { - "temp": [ - 24.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 2, - 0 - ], - "precipitation3h": [ - 7, - 0 - ], - "precipitation24h": [ - 70.5, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [24.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [2, 0], + "precipitation3h": [7, 0], + "precipitation24h": [70.5, 0], + "windDirection": [3, 0], + "wind": [1.8, 0] }, "42396": { - "temp": [ - 24.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 51, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 0.5, - 0 - ] + "temp": [24.7, 0], + "sun10m": [10, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [51, 0], + "windDirection": [15, 0], + "wind": [0.5, 0] }, "43051": { - "temp": [ - 27.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 53.5, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 1.3, - 0 - ] + "temp": [27.6, 0], + "sun10m": [0, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [53.5, 0], + "windDirection": [3, 0], + "wind": [1.3, 0] }, "43056": { - "pressure": [ - 1004.3, - 0 - ], - "normalPressure": [ - 1007.9, - 0 - ], - "temp": [ - 25.8, - 0 - ], - "humidity": [ - 90, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 68, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "pressure": [1004.3, 0], + "normalPressure": [1007.9, 0], + "temp": [25.8, 0], + "humidity": [90, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [68, 0], + "windDirection": [4, 0], + "wind": [2.1, 0] }, "43091": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 45.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [45.5, 0] }, "43121": { - "precipitation10m": [ - 5.5, - 0 - ], - "precipitation1h": [ - 32.5, - 0 - ], - "precipitation3h": [ - 42, - 0 - ], - "precipitation24h": [ - 110, - 0 - ] + "precipitation10m": [5.5, 0], + "precipitation1h": [32.5, 0], + "precipitation3h": [42, 0], + "precipitation24h": [110, 0] }, "43126": { - "temp": [ - 23.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 9, - 0 - ], - "precipitation1h": [ - 20.5, - 0 - ], - "precipitation3h": [ - 30, - 0 - ], - "precipitation24h": [ - 87, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 1.2, - 0 - ] + "temp": [23.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [9, 0], + "precipitation1h": [20.5, 0], + "precipitation3h": [30, 0], + "precipitation24h": [87, 0], + "windDirection": [1, 0], + "wind": [1.2, 0] }, "43151": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 59, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [59, 0] }, "43156": { - "pressure": [ - 981.2, - 0 - ], - "normalPressure": [ - 1007.3, - 0 - ], - "temp": [ - 27.2, - 0 - ], - "humidity": [ - 78, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 46.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 1.3, - 0 - ] + "pressure": [981.2, 0], + "normalPressure": [1007.3, 0], + "temp": [27.2, 0], + "humidity": [78, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [46.5, 0], + "windDirection": [12, 0], + "wind": [1.3, 0] }, "43157": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 49, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [49, 0] }, "43162": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 58, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [58, 0] }, "43171": { - "temp": [ - 24.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 2, - 0 - ], - "precipitation3h": [ - 6.5, - 0 - ], - "precipitation24h": [ - 71.5, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [24.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [2, 0], + "precipitation3h": [6.5, 0], + "precipitation24h": [71.5, 0], + "windDirection": [4, 0], + "wind": [1.1, 0] }, "43231": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 10, - 0 - ], - "precipitation24h": [ - 77, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [10, 0], + "precipitation24h": [77, 0] }, "43241": { - "temp": [ - 23.3, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 6.5, - 0 - ], - "precipitation24h": [ - 66.5, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "temp": [23.3, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [6.5, 0], + "precipitation24h": [66.5, 0], + "windDirection": [16, 0], + "wind": [1.7, 0] }, "43256": { - "temp": [ - 23.6, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 61.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 1.3, - 0 - ] + "temp": [23.6, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1, 0], + "precipitation24h": [61.5, 0], + "windDirection": [12, 0], + "wind": [1.3, 0] }, "43266": { - "temp": [ - 22.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 4, - 0 - ], - "precipitation24h": [ - 64, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [22.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [4, 0], + "precipitation24h": [64, 0], + "windDirection": [1, 0], + "wind": [1.8, 0] }, "44046": { - "temp": [ - 23.1, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 3.5, - 0 - ], - "precipitation24h": [ - 72, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [23.1, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [3.5, 0], + "precipitation24h": [72, 0], + "windDirection": [4, 0], + "wind": [1, 0] }, "44051": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 75.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [75.5, 0] }, "44056": { - "temp": [ - 23.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 5.5, - 0 - ], - "precipitation24h": [ - 67, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 0.6, - 0 - ] + "temp": [23.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [5.5, 0], + "precipitation24h": [67, 0], + "windDirection": [3, 0], + "wind": [0.6, 0] }, "44071": { - "temp": [ - 23.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 7.5, - 0 - ], - "precipitation24h": [ - 96.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [23.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [7.5, 0], + "precipitation24h": [96.5, 0], + "windDirection": [15, 0], + "wind": [1.8, 0] }, "44112": { - "temp": [ - 23.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 90.5, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 2.2, - 0 - ] + "temp": [23.7, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [90.5, 0], + "windDirection": [4, 0], + "wind": [2.2, 0] }, "44116": { - "temp": [ - 23.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 6.5, - 0 - ], - "precipitation24h": [ - 83.5, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 0.9, - 0 - ] + "temp": [23.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [6.5, 0], + "precipitation24h": [83.5, 0], + "windDirection": [2, 0], + "wind": [0.9, 0] }, "44126": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 5, - 0 - ], - "precipitation24h": [ - 90, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [5, 0], + "precipitation24h": [90, 0] }, "44132": { - "pressure": [ - 1005.4, - 0 - ], - "normalPressure": [ - 1008.2, - 0 - ], - "temp": [ - 23.7, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 92.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "pressure": [1005.4, 0], + "normalPressure": [1008.2, 0], + "temp": [23.7, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1, 0], + "precipitation24h": [92.5, 0], + "windDirection": [13, 0], + "wind": [2.1, 0] }, "44136": { - "temp": [ - 24.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 77, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [24.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [77, 0], + "windDirection": [11, 0], + "wind": [2, 0] }, "44166": { - "temp": [ - 24.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 102.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 5.9, - 0 - ] + "temp": [24.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [102.5, 0], + "windDirection": [11, 0], + "wind": [5.9, 0] }, "44172": { - "pressure": [ - 999.2, - 0 - ], - "normalPressure": [ - 1007.9, - 0 - ], - "temp": [ - 22.7, - 0 - ], - "humidity": [ - 96, - 0 - ], - "visibility": [ - 810, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 12, - 0 - ], - "precipitation1h": [ - 22.5, - 0 - ], - "precipitation3h": [ - 93.5, - 0 - ], - "precipitation24h": [ - 121.5, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 4.8, - 0 - ] + "pressure": [999.2, 0], + "normalPressure": [1007.9, 0], + "temp": [22.7, 0], + "humidity": [96, 0], + "visibility": [810, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [12, 0], + "precipitation1h": [22.5, 0], + "precipitation3h": [93.5, 0], + "precipitation24h": [121.5, 0], + "windDirection": [3, 0], + "wind": [4.8, 0] }, "44173": { - "temp": [ - 22.4, - 0 - ], - "precipitation10m": [ - 17.5, - 0 - ], - "precipitation1h": [ - 41.5, - 0 - ], - "precipitation3h": [ - 121.5, - 0 - ], - "precipitation24h": [ - 163, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 6.9, - 0 - ] + "temp": [22.4, 0], + "precipitation10m": [17.5, 0], + "precipitation1h": [41.5, 0], + "precipitation3h": [121.5, 0], + "precipitation24h": [163, 0], + "windDirection": [4, 0], + "wind": [6.9, 0] }, "44191": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 9.5, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1, 0], + "precipitation24h": [9.5, 0] }, "44207": { - "temp": [ - 27, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 8, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 5.1, - 0 - ] + "temp": [27, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [8, 0], + "windDirection": [8, 0], + "wind": [5.1, 0] }, "44216": { - "temp": [ - 25.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 4.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [25.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1, 0], + "precipitation24h": [4.5, 0], + "windDirection": [9, 0], + "wind": [2.6, 0] }, "44226": { - "pressure": [ - 1002, - 0 - ], - "normalPressure": [ - 1006.5, - 0 - ], - "temp": [ - 28.8, - 0 - ], - "humidity": [ - 82, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 4.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 6.2, - 0 - ] + "pressure": [1002, 0], + "normalPressure": [1006.5, 0], + "temp": [28.8, 0], + "humidity": [82, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [4.5, 0], + "windDirection": [9, 0], + "wind": [6.2, 0] }, "44228": { - "temp": [ - 28, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 6.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 13, - 0 - ] + "temp": [28, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [6.5, 0], + "windDirection": [8, 0], + "wind": [13, 0] }, "44262": { - "temp": [ - 27.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 9.5, - 0 - ] + "temp": [27.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [5, 0], + "windDirection": [9, 0], + "wind": [9.5, 0] }, "44263": { - "pressure": [ - 991.2, - 0 - ], - "normalPressure": [ - 1008.4, - 0 - ], - "temp": [ - 26.3, - 0 - ], - "humidity": [ - 92, - 0 - ], - "visibility": [ - 10270, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 3.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 4.3, - 0 - ] + "pressure": [991.2, 0], + "normalPressure": [1008.4, 0], + "temp": [26.3, 0], + "humidity": [92, 0], + "visibility": [10270, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [3.5, 0], + "windDirection": [9, 0], + "wind": [4.3, 0] }, "44281": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 1 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 1] }, "44301": { - "pressure": [ - 1008.7, - 0 - ], - "normalPressure": [ - 1009.6, - 0 - ], - "temp": [ - 30.2, - 0 - ], - "humidity": [ - 76, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 8, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 10, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 3.4, - 0 - ] + "pressure": [1008.7, 0], + "normalPressure": [1009.6, 0], + "temp": [30.2, 0], + "humidity": [76, 0], + "visibility": [20000, 0], + "sun10m": [8, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [10, 0], + "windDirection": [3, 0], + "wind": [3.4, 0] }, "44316": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "44356": { - "pressure": [ - 1009, - 0 - ], - "normalPressure": [ - 1010, - 0 - ], - "temp": [ - 28.4, - 0 - ], - "humidity": [ - 80, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 10.5, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 7, - 0 - ] + "pressure": [1009, 0], + "normalPressure": [1010, 0], + "temp": [28.4, 0], + "humidity": [80, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [10.5, 0], + "windDirection": [6, 0], + "wind": [7, 0] }, "45061": { - "temp": [ - 25.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 62.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "temp": [25.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [62.5, 0], + "windDirection": [12, 0], + "wind": [2.1, 0] }, "45081": { - "temp": [ - 25.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 93.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 4.2, - 0 - ] + "temp": [25.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [93.5, 0], + "windDirection": [8, 0], + "wind": [4.2, 0] }, "45086": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 61.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [61.5, 0] }, "45106": { - "temp": [ - 25, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 80, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 3.1, - 0 - ] + "temp": [25, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [80, 0], + "windDirection": [10, 0], + "wind": [3.1, 0] }, "45116": { - "temp": [ - 27, - 0 - ], - "humidity": [ - 88, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 52.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 4.4, - 0 - ] + "temp": [27, 0], + "humidity": [88, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [52.5, 0], + "windDirection": [9, 0], + "wind": [4.4, 0] }, "45121": { - "temp": [ - 25.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 91.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 4.1, - 0 - ] + "temp": [25.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2, 0], + "precipitation24h": [91.5, 0], + "windDirection": [9, 0], + "wind": [4.1, 0] }, "45147": { - "pressure": [ - 1004.5, - 0 - ], - "normalPressure": [ - 1007.7, - 0 - ], - "temp": [ - 28.3, - 0 - ], - "humidity": [ - 82, - 0 - ], - "visibility": [ - 16560, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 66, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 8, - 0 - ] + "pressure": [1004.5, 0], + "normalPressure": [1007.7, 0], + "temp": [28.3, 0], + "humidity": [82, 0], + "visibility": [16560, 0], + "sun10m": [0, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [66, 0], + "windDirection": [8, 0], + "wind": [8, 0] }, "45181": { - "temp": [ - 25.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 103.5, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 3.5, - 0 - ] + "temp": [25.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [2, 0], + "precipitation24h": [103.5, 0], + "windDirection": [7, 0], + "wind": [3.5, 0] }, "45212": { - "pressure": [ - 1007.4, - 0 - ], - "normalPressure": [ - 1008.1, - 0 - ], - "temp": [ - 24.5, - 0 - ], - "humidity": [ - 92, - 0 - ], - "visibility": [ - 10030, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 64, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 6.9, - 0 - ] + "pressure": [1007.4, 0], + "normalPressure": [1008.1, 0], + "temp": [24.5, 0], + "humidity": [92, 0], + "visibility": [10030, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [64, 0], + "windDirection": [11, 0], + "wind": [6.9, 0] }, "45261": { - "temp": [ - 26.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 55, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "temp": [26.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [55, 0], + "windDirection": [9, 0], + "wind": [2.1, 0] }, "45282": { - "temp": [ - 23.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 52, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 3.9, - 0 - ] + "temp": [23.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [52, 0], + "windDirection": [10, 0], + "wind": [3.9, 0] }, "45291": { - "temp": [ - 26, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 37, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [26, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [37, 0], + "windDirection": [8, 0], + "wind": [2, 0] }, "45326": { - "temp": [ - 25.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 40, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "temp": [25.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [40, 0], + "windDirection": [10, 0], + "wind": [2.8, 0] }, "45331": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 50.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [50.5, 0] }, "45346": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 24.5, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [24.5, 0] }, "45361": { - "temp": [ - 26.9, - 0 - ], - "humidity": [ - 95, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 34.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 4, - 0 - ] + "temp": [26.9, 0], + "humidity": [95, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [34.5, 0], + "windDirection": [8, 0], + "wind": [4, 0] }, "45371": { - "pressure": [ - 1006.5, - 0 - ], - "normalPressure": [ - 1008, - 0 - ], - "temp": [ - 27, - 0 - ], - "humidity": [ - 90, - 0 - ], - "visibility": [ - 10840, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 23, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 6.1, - 0 - ] + "pressure": [1006.5, 0], + "normalPressure": [1008, 0], + "temp": [27, 0], + "humidity": [90, 0], + "visibility": [10840, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [23, 0], + "windDirection": [8, 0], + "wind": [6.1, 0] }, "45401": { - "pressure": [ - 1006.6, - 0 - ], - "normalPressure": [ - 1007.4, - 0 - ], - "temp": [ - 25.6, - 0 - ], - "humidity": [ - 92, - 0 - ], - "visibility": [ - 3580, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 1.5, - 0 - ], - "precipitation1h": [ - 8.5, - 0 - ], - "precipitation3h": [ - 9, - 0 - ], - "precipitation24h": [ - 32.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 4, - 0 - ] + "pressure": [1006.6, 0], + "normalPressure": [1007.4, 0], + "temp": [25.6, 0], + "humidity": [92, 0], + "visibility": [3580, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [1.5, 0], + "precipitation1h": [8.5, 0], + "precipitation3h": [9, 0], + "precipitation24h": [32.5, 0], + "windDirection": [9, 0], + "wind": [4, 0] }, "46001": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 68, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2, 0], + "precipitation24h": [68, 0] }, "46046": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 6.5, - 0 - ], - "precipitation24h": [ - 122.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [6.5, 0], + "precipitation24h": [122.5, 0] }, "46061": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 98.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2, 0], + "precipitation24h": [98.5, 0] }, "46076": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 73.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [73.5, 0] }, "46091": { - "temp": [ - 23.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 4, - 0 - ], - "precipitation24h": [ - 94, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 0.8, - 0 - ] + "temp": [23.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [4, 0], + "precipitation24h": [94, 0], + "windDirection": [8, 0], + "wind": [0.8, 0] }, "46106": { - "pressure": [ - 1003.2, - 0 - ], - "normalPressure": [ - 1008.1, - 0 - ], - "temp": [ - 23.8, - 0 - ], - "humidity": [ - 95, - 0 - ], - "visibility": [ - 11660, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 76.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 3.2, - 0 - ] + "pressure": [1003.2, 0], + "normalPressure": [1008.1, 0], + "temp": [23.8, 0], + "humidity": [95, 0], + "visibility": [11660, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [76.5, 0], + "windDirection": [11, 0], + "wind": [3.2, 0] }, "46136": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 78, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [78, 0] }, "46141": { - "temp": [ - 23.7, - 0 - ], - "humidity": [ - 98, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 39.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 5.7, - 0 - ] + "temp": [23.7, 0], + "humidity": [98, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [39.5, 0], + "windDirection": [9, 0], + "wind": [5.7, 0] }, "46161": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 117.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [117.5, 0] }, "46166": { - "temp": [ - 24.9, - 0 - ], - "humidity": [ - 95, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 80.5, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 3.9, - 0 - ] + "temp": [24.9, 0], + "humidity": [95, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [80.5, 0], + "windDirection": [7, 0], + "wind": [3.9, 0] }, "46211": { - "temp": [ - 23.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 45.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [23.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [2, 0], + "precipitation24h": [45.5, 0], + "windDirection": [9, 0], + "wind": [2.6, 0] }, "48031": { - "temp": [ - 18.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 57, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [18.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [57, 0], + "windDirection": [1, 0], + "wind": [1, 0] }, "48061": { - "temp": [ - 17.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 60, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "temp": [17.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [60, 0], + "windDirection": [16, 0], + "wind": [2.8, 0] }, "48066": { - "temp": [ - 21.3, - 0 - ], - "humidity": [ - 87, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 55, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 3.7, - 0 - ] + "temp": [21.3, 0], + "humidity": [87, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [55, 0], + "windDirection": [1, 0], + "wind": [3.7, 0] }, "48097": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 51, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [51, 0] }, "48141": { - "temp": [ - 18.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 64.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [18.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [64.5, 0], + "windDirection": [1, 0], + "wind": [2, 0] }, "48146": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 70.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [70.5, 0] }, "48156": { - "pressure": [ - 963.5, - 0 - ], - "normalPressure": [ - 1011, - 0 - ], - "temp": [ - 21.4, - 0 - ], - "humidity": [ - 77, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 64, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 4.4, - 0 - ] + "pressure": [963.5, 0], + "normalPressure": [1011, 0], + "temp": [21.4, 0], + "humidity": [77, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [64, 0], + "windDirection": [2, 0], + "wind": [4.4, 0] }, "48172": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 58.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [58.5, 0] }, "48191": { - "temp": [ - 19.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 65, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 6.2, - 0 - ] + "temp": [19.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [65, 0], + "windDirection": [1, 0], + "wind": [6.2, 0] }, "48196": { - "temp": [ - 20.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 78, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 1.2, - 0 - ] + "temp": [20.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [78, 0], + "windDirection": [3, 0], + "wind": [1.2, 0] }, "48216": { - "temp": [ - 14.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 56, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 2.2, - 0 - ] + "temp": [14.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [56, 0], + "windDirection": [14, 0], + "wind": [2.2, 0] }, "48247": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 66, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [66, 0] }, "48256": { - "temp": [ - 25, - 0 - ], - "humidity": [ - 73, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 46.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.2, - 0 - ] + "temp": [25, 0], + "humidity": [73, 0], + "sun10m": [5, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [46.5, 0], + "windDirection": [13, 0], + "wind": [1.2, 0] }, "48296": { - "temp": [ - 22, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 72.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 4.2, - 0 - ] + "temp": [22, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [72.5, 0], + "windDirection": [15, 0], + "wind": [4.2, 0] }, "48321": { - "temp": [ - 22.2, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 55.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 4.1, - 0 - ] + "temp": [22.2, 0], + "sun10m": [10, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [55.5, 0], + "windDirection": [11, 0], + "wind": [4.1, 0] }, "48331": { - "pressure": [ - 898.9, - 0 - ], - "temp": [ - 21.9, - 0 - ], - "humidity": [ - 94, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 49.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "pressure": [898.9, 0], + "temp": [21.9, 0], + "humidity": [94, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [49.5, 0], + "windDirection": [12, 0], + "wind": [2.1, 0] }, "48346": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 84, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [84, 0] }, "48361": { - "pressure": [ - 940.8, - 0 - ], - "normalPressure": [ - 1008.1, - 0 - ], - "temp": [ - 24.5, - 0 - ], - "humidity": [ - 70, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 4, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 66, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 4.6, - 0 - ] + "pressure": [940.8, 0], + "normalPressure": [1008.1, 0], + "temp": [24.5, 0], + "humidity": [70, 0], + "visibility": [20000, 0], + "sun10m": [4, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [66, 0], + "windDirection": [15, 0], + "wind": [4.6, 0] }, "48363": { - "temp": [ - 23, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 63.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 7.4, - 0 - ] + "temp": [23, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [63.5, 0], + "windDirection": [15, 0], + "wind": [7.4, 0] }, "48371": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 53.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [53.5, 0] }, "48381": { - "temp": [ - 23.6, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 57, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "temp": [23.6, 0], + "sun10m": [10, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [57, 0], + "windDirection": [13, 0], + "wind": [2.1, 0] }, "48386": { - "temp": [ - 26, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 47, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 2.5, - 0 - ] + "temp": [26, 0], + "sun10m": [7, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [47, 0], + "windDirection": [13, 0], + "wind": [2.5, 0] }, "48436": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 53.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [53.5, 0] }, "48466": { - "temp": [ - 25, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 74.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "temp": [25, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [74.5, 0], + "windDirection": [1, 0], + "wind": [2.8, 0] }, "48491": { - "pressure": [ - 923.5, - 0 - ], - "normalPressure": [ - 1006.5, - 0 - ], - "temp": [ - 24.3, - 0 - ], - "humidity": [ - 77, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 49.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 7.6, - 0 - ] + "pressure": [923.5, 0], + "normalPressure": [1006.5, 0], + "temp": [24.3, 0], + "humidity": [77, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [49.5, 0], + "windDirection": [12, 0], + "wind": [7.6, 0] }, "48516": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 47.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [47.5, 0] }, "48531": { - "temp": [ - 19, - 0 - ], - "humidity": [ - 87, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 76.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 3.4, - 0 - ] + "temp": [19, 0], + "humidity": [87, 0], + "sun10m": [5, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [76.5, 0], + "windDirection": [13, 0], + "wind": [3.4, 0] }, "48536": { - "temp": [ - 25.3, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 42.5, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 2.4, - 0 - ] + "temp": [25.3, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [42.5, 0], + "windDirection": [16, 0], + "wind": [2.4, 0] }, "48546": { - "temp": [ - 25.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 47, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 3.3, - 0 - ] + "temp": [25.5, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [47, 0], + "windDirection": [14, 0], + "wind": [3.3, 0] }, "48556": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 38.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [38.5, 0] }, "48561": { - "temp": [ - 24.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 39.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 4.1, - 0 - ] + "temp": [24.7, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [39.5, 0], + "windDirection": [13, 0], + "wind": [4.1, 0] }, "48571": { - "temp": [ - 21.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 73, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 2.2, - 0 - ] + "temp": [21.5, 0], + "sun10m": [10, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [73, 0], + "windDirection": [1, 0], + "wind": [2.2, 0] }, "48601": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 88, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [88, 0] }, "48606": { - "temp": [ - 29.1, - 0 - ], - "humidity": [ - 64, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 61.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [29.1, 0], + "humidity": [64, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [61.5, 0], + "windDirection": [10, 0], + "wind": [1.5, 0] }, "48621": { - "temp": [ - 28.4, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 41.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 5.1, - 0 - ] + "temp": [28.4, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [41.5, 0], + "windDirection": [1, 0], + "wind": [5.1, 0] }, "48681": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 51.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [51.5, 0] }, "48691": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 31, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [31, 0] }, "48716": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 44, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [44, 0] }, "48717": { - "temp": [ - 27.7, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 47.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [27.7, 0], + "sun10m": [5, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [47.5, 0], + "windDirection": [8, 0], + "wind": [1.1, 0] }, "48731": { - "temp": [ - 28.2, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 35.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 0.8, - 0 - ] + "temp": [28.2, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [35.5, 0], + "windDirection": [10, 0], + "wind": [0.8, 0] }, "48737": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 44, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [44, 0] }, "48767": { - "pressure": [ - 947.9, - 0 - ], - "normalPressure": [ - 1005.2, - 0 - ], - "temp": [ - 30, - 0 - ], - "humidity": [ - 60, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 44, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "pressure": [947.9, 0], + "normalPressure": [1005.2, 0], + "temp": [30, 0], + "humidity": [60, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [44, 0], + "windDirection": [12, 0], + "wind": [1.9, 0] }, "48826": { - "temp": [ - 26.5, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.4, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 83, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [26.5, 0], + "sun10m": [5, 0], + "sun1h": [0.4, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [83, 0], + "windDirection": [10, 0], + "wind": [1, 0] }, "48836": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 70.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [70.5, 0] }, "48841": { - "temp": [ - 30.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 79, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "temp": [30.5, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [79, 0], + "windDirection": [10, 0], + "wind": [2.8, 0] }, "49036": { - "temp": [ - 26.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 54.5, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "temp": [26.9, 0], + "sun10m": [0, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [54.5, 0], + "windDirection": [7, 0], + "wind": [1.7, 0] }, "49052": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 79, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [79, 0] }, "49086": { - "temp": [ - 28.4, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 80.5, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "temp": [28.4, 0], + "sun10m": [10, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [80.5, 0], + "windDirection": [6, 0], + "wind": [1.7, 0] }, "49142": { - "pressure": [ - 974.8, - 0 - ], - "normalPressure": [ - 1005.9, - 0 - ], - "temp": [ - 28.9, - 0 - ], - "humidity": [ - 69, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 76, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "pressure": [974.8, 0], + "normalPressure": [1005.9, 0], + "temp": [28.9, 0], + "humidity": [69, 0], + "visibility": [20000, 0], + "sun10m": [2, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [76, 0], + "windDirection": [9, 0], + "wind": [1.6, 0] }, "49151": { - "temp": [ - 28.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 84, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 0.5, - 0 - ] + "temp": [28.2, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [84, 0], + "windDirection": [8, 0], + "wind": [0.5, 0] }, "49161": { - "temp": [ - 25.4, - 0 - ], - "humidity": [ - 93, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 81.5, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [25.4, 0], + "humidity": [93, 0], + "sun10m": [0, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [81.5, 0], + "windDirection": [2, 0], + "wind": [1.8, 0] }, "49172": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 89.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [89.5, 0] }, "49187": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 93.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [93.5, 0] }, "49196": { - "temp": [ - 25.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 109.5, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [25.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [109.5, 0], + "windDirection": [6, 0], + "wind": [1.1, 0] }, "49236": { - "temp": [ - 27, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 128.5, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [27, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [128.5, 0], + "windDirection": [8, 0], + "wind": [1.8, 0] }, "49251": { - "pressure": [ - 912.9, - 0 - ], - "temp": [ - 24.2, - 0 - ], - "humidity": [ - 87, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 107, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "pressure": [912.9, 0], + "temp": [24.2, 0], + "humidity": [87, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [107, 0], + "windDirection": [2, 0], + "wind": [1.7, 0] }, "49256": { - "temp": [ - 23.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 162.5, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [23.9, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [162.5, 0], + "windDirection": [6, 0], + "wind": [1.1, 0] }, "49316": { - "temp": [ - 28.3, - 0 - ], - "humidity": [ - 74, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 261.5, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [28.3, 0], + "humidity": [74, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [261.5, 0], + "windDirection": [16, 0], + "wind": [1.1, 0] }, "50056": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 208, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [208, 0] }, "50066": { - "temp": [ - 8.2, - 0 - ], - "sun10m": [ - null, - 5 - ], - "sun1h": [ - null, - 5 - ] + "temp": [8.2, 0], + "sun10m": [null, 5], + "sun1h": [null, 5] }, "50106": { - "temp": [ - 26, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 274, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [26, 0], + "sun10m": [5, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [274, 0], + "windDirection": [13, 0], + "wind": [1.8, 0] }, "50112": {}, "50136": { - "temp": [ - 22.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 115.5, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [22.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [1, 0], + "precipitation3h": [3, 0], + "precipitation24h": [115.5, 0], + "windDirection": [16, 0], + "wind": [1.1, 0] }, "50196": { - "temp": [ - 28.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 220, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 3.7, - 0 - ] + "temp": [28.5, 0], + "sun10m": [10, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [220, 0], + "windDirection": [5, 0], + "wind": [3.7, 0] }, "50206": { - "pressure": [ - 1005, - 0 - ], - "normalPressure": [ - 1007.5, - 0 - ], - "temp": [ - 26.6, - 0 - ], - "humidity": [ - 86, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 95.5, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 1.3, - 0 - ] + "pressure": [1005, 0], + "normalPressure": [1007.5, 0], + "temp": [26.6, 0], + "humidity": [86, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [1, 0], + "precipitation24h": [95.5, 0], + "windDirection": [5, 0], + "wind": [1.3, 0] }, "50211": { - "temp": [ - 22.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 90, - 0 - ], - "windDirection": [ - 0, - 0 - ], - "wind": [ - 0.1, - 0 - ] + "temp": [22.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1, 0], + "precipitation24h": [90, 0], + "windDirection": [0, 0], + "wind": [0.1, 0] }, "50226": { - "temp": [ - 30.3, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 144.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [30.3, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [144.5, 0], + "windDirection": [11, 0], + "wind": [1.9, 0] }, "50232": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 333, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [333, 0] }, "50241": { - "temp": [ - 30.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 317.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [30.7, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [317.5, 0], + "windDirection": [1, 0], + "wind": [1.5, 0] }, "50247": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 393.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [393.5, 0] }, "50261": { - "temp": [ - 28.6, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 313, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [28.6, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [313, 0], + "windDirection": [3, 0], + "wind": [2.6, 0] }, "50281": { - "pressure": [ - 1000.4, - 0 - ], - "normalPressure": [ - 1008.2, - 0 - ], - "temp": [ - 23.8, - 0 - ], - "humidity": [ - 100, - 0 - ], - "visibility": [ - 14030, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 4, - 0 - ], - "precipitation24h": [ - 114, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "pressure": [1000.4, 0], + "normalPressure": [1008.2, 0], + "temp": [23.8, 0], + "humidity": [100, 0], + "visibility": [14030, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [4, 0], + "precipitation24h": [114, 0], + "windDirection": [16, 0], + "wind": [1.5, 0] }, "50296": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 158, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [158, 0] }, "50317": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 392.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [392.5, 0] }, "50331": { - "pressure": [ - 1005, - 0 - ], - "normalPressure": [ - 1006.8, - 0 - ], - "temp": [ - 28.9, - 0 - ], - "humidity": [ - 80, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 409, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 1.4, - 0 - ] + "pressure": [1005, 0], + "normalPressure": [1006.8, 0], + "temp": [28.9, 0], + "humidity": [80, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [409, 0], + "windDirection": [1, 0], + "wind": [1.4, 0] }, "50371": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 117.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [117.5, 0] }, "50386": { - "temp": [ - 31.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 271, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 2.2, - 0 - ] + "temp": [31.7, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [271, 0], + "windDirection": [9, 0], + "wind": [2.2, 0] }, "50391": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 353.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [353.5, 0] }, "50416": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 64.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [64.5, 0] }, "50426": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 113, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [113, 0] }, "50427": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 4, - 0 - ], - "precipitation3h": [ - 20, - 0 - ], - "precipitation24h": [ - 308.5, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [4, 0], + "precipitation3h": [20, 0], + "precipitation24h": [308.5, 0] }, "50456": { - "pressure": [ - 1001.3, - 0 - ], - "normalPressure": [ - 1006.6, - 0 - ], - "temp": [ - 31.4, - 0 - ], - "humidity": [ - 60, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 264.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 5.3, - 0 - ] + "pressure": [1001.3, 0], + "normalPressure": [1006.6, 0], + "temp": [31.4, 0], + "humidity": [60, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [264.5, 0], + "windDirection": [12, 0], + "wind": [5.3, 0] }, "50466": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 273, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [273, 0] }, "50476": { - "temp": [ - 27.2, - 0 - ], - "humidity": [ - 98, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 265, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "temp": [27.2, 0], + "humidity": [98, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [265, 0], + "windDirection": [6, 0], + "wind": [2.1, 0] }, "50477": { - "temp": [ - 26.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 296, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 3.2, - 0 - ] + "temp": [26.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [296, 0], + "windDirection": [7, 0], + "wind": [3.2, 0] }, "50491": { - "temp": [ - 26.6, - 0 - ], - "humidity": [ - 96, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 62, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 2.3, - 0 - ] + "temp": [26.6, 0], + "humidity": [96, 0], + "sun10m": [10, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [62, 0], + "windDirection": [13, 0], + "wind": [2.3, 0] }, "50506": { - "temp": [ - 23.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 134, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 4.5, - 0 - ] + "temp": [23.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [134, 0], + "windDirection": [1, 0], + "wind": [4.5, 0] }, "50536": { - "temp": [ - 30.9, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 208.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 3.8, - 0 - ] + "temp": [30.9, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [208.5, 0], + "windDirection": [11, 0], + "wind": [3.8, 0] }, "50551": { - "pressure": [ - 1001.4, - 0 - ], - "normalPressure": [ - 1007.1, - 0 - ], - "temp": [ - 27.1, - 0 - ], - "humidity": [ - 86, - 0 - ], - "visibility": [ - 18510, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 95.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 1.3, - 0 - ] + "pressure": [1001.4, 0], + "normalPressure": [1007.1, 0], + "temp": [27.1, 0], + "humidity": [86, 0], + "visibility": [18510, 0], + "sun10m": [2, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [95.5, 0], + "windDirection": [9, 0], + "wind": [1.3, 0] }, "50561": { - "pressure": [ - 1001.1, - 0 - ], - "normalPressure": [ - 1007.1, - 0 - ], - "temp": [ - 27.2, - 0 - ], - "humidity": [ - 88, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 4, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 20.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "pressure": [1001.1, 0], + "normalPressure": [1007.1, 0], + "temp": [27.2, 0], + "humidity": [88, 0], + "visibility": [20000, 0], + "sun10m": [4, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [20.5, 0], + "windDirection": [10, 0], + "wind": [1.6, 0] }, "51011": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 56, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [56, 0] }, "51031": { - "temp": [ - 29.2, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 60.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 5, - 0 - ] + "temp": [29.2, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [60.5, 0], + "windDirection": [14, 0], + "wind": [5, 0] }, "51056": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 80, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [80, 0] }, "51071": { - "temp": [ - 26.8, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 69.5, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [26.8, 0], + "sun10m": [10, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [69.5, 0], + "windDirection": [2, 0], + "wind": [2.6, 0] }, "51077": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 93.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [93.5, 0] }, "51096": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 56.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [56.5, 0] }, "51106": { - "pressure": [ - 1002.4, - 0 - ], - "normalPressure": [ - 1008.7, - 0 - ], - "temp": [ - 29.6, - 0 - ], - "humidity": [ - 48, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 46.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 7.6, - 0 - ] + "pressure": [1002.4, 0], + "normalPressure": [1008.7, 0], + "temp": [29.6, 0], + "humidity": [48, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [46.5, 0], + "windDirection": [14, 0], + "wind": [7.6, 0] }, "51116": { - "temp": [ - 29.5, - 0 - ], - "humidity": [ - 54, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 84.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [29.5, 0], + "humidity": [54, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [84.5, 0], + "windDirection": [13, 0], + "wind": [2.6, 0] }, "51192": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 87, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [87, 0] }, "51216": { - "temp": [ - 29.4, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 46.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 4.5, - 0 - ] + "temp": [29.4, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [46.5, 0], + "windDirection": [13, 0], + "wind": [4.5, 0] }, "51226": { - "temp": [ - 29.9, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 117, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 4.6, - 0 - ] + "temp": [29.9, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [117, 0], + "windDirection": [15, 0], + "wind": [4.6, 0] }, "51241": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 109.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [109.5, 0] }, "51247": { - "temp": [ - 30.3, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 102.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [30.3, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [102.5, 0], + "windDirection": [12, 0], + "wind": [2.6, 0] }, "51261": { - "temp": [ - 27.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 59, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 8.6, - 0 - ] + "temp": [27.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [59, 0], + "windDirection": [14, 0], + "wind": [8.6, 0] }, "51271": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 89.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [89.5, 0] }, "51281": { - "temp": [ - 29.6, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 103.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 3.6, - 0 - ] + "temp": [29.6, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [103.5, 0], + "windDirection": [12, 0], + "wind": [3.6, 0] }, "51311": { - "temp": [ - 28.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 71, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 4.5, - 0 - ] + "temp": [28.7, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [71, 0], + "windDirection": [14, 0], + "wind": [4.5, 0] }, "51331": { - "temp": [ - 28.9, - 0 - ], - "humidity": [ - 61, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 70.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 5.9, - 0 - ] + "temp": [28.9, 0], + "humidity": [61, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [70.5, 0], + "windDirection": [13, 0], + "wind": [5.9, 0] }, "51346": { - "pressure": [ - 1008, - 0 - ], - "normalPressure": [ - 1008.9, - 0 - ], - "temp": [ - 28.7, - 0 - ], - "humidity": [ - 58, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 149, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 5.6, - 0 - ] + "pressure": [1008, 0], + "normalPressure": [1008.9, 0], + "temp": [28.7, 0], + "humidity": [58, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [149, 0], + "windDirection": [14, 0], + "wind": [5.6, 0] }, "51356": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 150, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [150, 0] }, "52041": { - "temp": [ - 21.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 30, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 4.6, - 0 - ] + "temp": [21.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [30, 0], + "windDirection": [3, 0], + "wind": [4.6, 0] }, "52051": { - "temp": [ - 21.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 57, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 3.8, - 0 - ] + "temp": [21.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [57, 0], + "windDirection": [15, 0], + "wind": [3.8, 0] }, "52081": { - "temp": [ - 21.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 19.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 2.4, - 0 - ] + "temp": [21.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [19.5, 0], + "windDirection": [1, 0], + "wind": [2.4, 0] }, "52111": { - "temp": [ - 18.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 76.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 0.5, - 0 - ] + "temp": [18.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [76.5, 0], + "windDirection": [14, 0], + "wind": [0.5, 0] }, "52131": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 30.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [30.5, 0] }, "52137": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 39, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [39, 0] }, "52146": { - "pressure": [ - 948.5, - 0 - ], - "normalPressure": [ - 1011.2, - 0 - ], - "temp": [ - 22.4, - 0 - ], - "humidity": [ - 73, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 82, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 3.7, - 0 - ] + "pressure": [948.5, 0], + "normalPressure": [1011.2, 0], + "temp": [22.4, 0], + "humidity": [73, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [82, 0], + "windDirection": [1, 0], + "wind": [3.7, 0] }, "52152": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 79.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [79.5, 0] }, "52173": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 38.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [38.5, 0] }, "52181": { - "temp": [ - 20.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 65, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 2.2, - 0 - ] + "temp": [20.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [65, 0], + "windDirection": [3, 0], + "wind": [2.2, 0] }, "52192": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 82, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [82, 0] }, "52196": { - "temp": [ - 18.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 83.5, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "temp": [18.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [83.5, 0], + "windDirection": [2, 0], + "wind": [1.7, 0] }, "52221": { - "temp": [ - 24.2, - 0 - ], - "humidity": [ - 66, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 44.5, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [24.2, 0], + "humidity": [66, 0], + "sun10m": [2, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [44.5, 0], + "windDirection": [16, 0], + "wind": [2.6, 0] }, "52286": { - "temp": [ - 24.8, - 0 - ], - "humidity": [ - 69, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 82, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 3.3, - 0 - ] + "temp": [24.8, 0], + "humidity": [69, 0], + "sun10m": [7, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [82, 0], + "windDirection": [15, 0], + "wind": [3.3, 0] }, "52321": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 65, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [65, 0] }, "52331": { - "temp": [ - 26.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 72, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 0.9, - 0 - ] + "temp": [26.7, 0], + "sun10m": [10, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [72, 0], + "windDirection": [6, 0], + "wind": [0.9, 0] }, "52346": { - "temp": [ - 26.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 81, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 3.5, - 0 - ] + "temp": [26.1, 0], + "sun10m": [10, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [81, 0], + "windDirection": [13, 0], + "wind": [3.5, 0] }, "52381": { - "temp": [ - 25.8, - 0 - ], - "humidity": [ - 63, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 26, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 3.8, - 0 - ] + "temp": [25.8, 0], + "humidity": [63, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [26, 0], + "windDirection": [15, 0], + "wind": [3.8, 0] }, "52406": { - "temp": [ - 27.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 62.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "temp": [27.1, 0], + "sun10m": [10, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [62.5, 0], + "windDirection": [10, 0], + "wind": [2.8, 0] }, "52421": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 62.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [62.5, 0] }, "52461": { - "temp": [ - 30.3, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 65, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 1.4, - 0 - ] + "temp": [30.3, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [65, 0], + "windDirection": [4, 0], + "wind": [1.4, 0] }, "52476": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 70, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [70, 0] }, "52482": { - "temp": [ - 27, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 76.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 0.5, - 0 - ] + "temp": [27, 0], + "sun10m": [5, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [76.5, 0], + "windDirection": [11, 0], + "wind": [0.5, 0] }, "52511": { - "temp": [ - 29.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 42.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 6, - 0 - ] + "temp": [29.1, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [42.5, 0], + "windDirection": [13, 0], + "wind": [6, 0] }, "52536": { - "temp": [ - 29.2, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 43, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 5.4, - 0 - ] + "temp": [29.2, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [43, 0], + "windDirection": [12, 0], + "wind": [5.4, 0] }, "52556": { - "temp": [ - 30, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 79.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 3.8, - 0 - ] + "temp": [30, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [79.5, 0], + "windDirection": [11, 0], + "wind": [3.8, 0] }, "52557": { - "temp": [ - 28.8, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 68, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [28.8, 0], + "sun10m": [5, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [68, 0], + "windDirection": [11, 0], + "wind": [1, 0] }, "52571": { - "temp": [ - 27.2, - 0 - ], - "humidity": [ - 56, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 22.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 5.9, - 0 - ] + "temp": [27.2, 0], + "humidity": [56, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [22.5, 0], + "windDirection": [11, 0], + "wind": [5.9, 0] }, "52581": { - "temp": [ - 29.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 46.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 3.5, - 0 - ] + "temp": [29.1, 0], + "sun10m": [10, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [46.5, 0], + "windDirection": [13, 0], + "wind": [3.5, 0] }, "52586": { - "pressure": [ - 1007.4, - 0 - ], - "normalPressure": [ - 1009.4, - 0 - ], - "temp": [ - 29.4, - 0 - ], - "humidity": [ - 44, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 66.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 5.6, - 0 - ] + "pressure": [1007.4, 0], + "normalPressure": [1009.4, 0], + "temp": [29.4, 0], + "humidity": [44, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [66.5, 0], + "windDirection": [14, 0], + "wind": [5.6, 0] }, "52606": { - "temp": [ - 31, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 57, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 3.6, - 0 - ] + "temp": [31, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [57, 0], + "windDirection": [12, 0], + "wind": [3.6, 0] }, "52642": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 29.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [29.5, 0] }, "53016": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 48.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [48.5, 0] }, "53041": { - "temp": [ - 30.6, - 0 - ], - "humidity": [ - 46, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 37, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 5.7, - 0 - ] + "temp": [30.6, 0], + "humidity": [46, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [37, 0], + "windDirection": [13, 0], + "wind": [5.7, 0] }, "53061": { - "pressure": [ - 1003, - 0 - ], - "normalPressure": [ - 1009.4, - 0 - ], - "temp": [ - 28.6, - 0 - ], - "humidity": [ - 56, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 34, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 3.9, - 0 - ] + "pressure": [1003, 0], + "normalPressure": [1009.4, 0], + "temp": [28.6, 0], + "humidity": [56, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [34, 0], + "windDirection": [16, 0], + "wind": [3.9, 0] }, "53091": { - "temp": [ - 27.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 26, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 5.4, - 0 - ] + "temp": [27.7, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [26, 0], + "windDirection": [13, 0], + "wind": [5.4, 0] }, "53112": { - "pressure": [ - 992.5, - 0 - ], - "normalPressure": [ - 1010.6, - 0 - ], - "temp": [ - 27.9, - 0 - ], - "humidity": [ - 53, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 9, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 17, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 4.7, - 0 - ] + "pressure": [992.5, 0], + "normalPressure": [1010.6, 0], + "temp": [27.9, 0], + "humidity": [53, 0], + "visibility": [20000, 0], + "sun10m": [9, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [17, 0], + "windDirection": [15, 0], + "wind": [4.7, 0] }, "53121": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 20.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [20.5, 0] }, "53133": { - "pressure": [ - 1007.8, - 0 - ], - "normalPressure": [ - 1009.9, - 0 - ], - "temp": [ - 28.5, - 0 - ], - "humidity": [ - null, - 6 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 22, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 6.3, - 0 - ] + "pressure": [1007.8, 0], + "normalPressure": [1009.9, 0], + "temp": [28.5, 0], + "humidity": [null, 6], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [22, 0], + "windDirection": [13, 0], + "wind": [6.3, 0] }, "53141": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 11, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [11, 0] }, "53151": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 10.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [10.5, 0] }, "53196": { - "temp": [ - 29.2, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 26, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 4.1, - 0 - ] + "temp": [29.2, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [26, 0], + "windDirection": [14, 0], + "wind": [4.1, 0] }, "53231": { - "temp": [ - 28.4, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 8.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 3.1, - 0 - ] + "temp": [28.4, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [8.5, 0], + "windDirection": [12, 0], + "wind": [3.1, 0] }, "53257": { - "temp": [ - 26.8, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 97, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 5.6, - 0 - ] + "temp": [26.8, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [97, 0], + "windDirection": [15, 0], + "wind": [5.6, 0] }, "53287": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 11, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [11, 0] }, "53296": { - "temp": [ - 29.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 23.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 3.3, - 0 - ] + "temp": [29.1, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [23.5, 0], + "windDirection": [13, 0], + "wind": [3.3, 0] }, "53307": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 137, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [137, 0] }, "53321": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 9, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [9, 0] }, "53326": { - "temp": [ - 29.8, - 0 - ], - "humidity": [ - 69, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 4.5, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 3.3, - 0 - ] + "temp": [29.8, 0], + "humidity": [69, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [4.5, 0], + "windDirection": [5, 0], + "wind": [3.3, 0] }, "53378": { - "pressure": [ - 1006.7, - 0 - ], - "normalPressure": [ - 1008.6, - 0 - ], - "temp": [ - 29.7, - 0 - ], - "humidity": [ - 68, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 9, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 5.6, - 0 - ] + "pressure": [1006.7, 0], + "normalPressure": [1008.6, 0], + "temp": [29.7, 0], + "humidity": [68, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [9, 0], + "windDirection": [3, 0], + "wind": [5.6, 0] }, "53401": { - "temp": [ - 29.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 13, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 2.3, - 0 - ] + "temp": [29.1, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [13, 0], + "windDirection": [5, 0], + "wind": [2.3, 0] }, "53416": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 15, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [15, 0] }, "54012": { - "temp": [ - 22.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 31.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [22.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [31.5, 0], + "windDirection": [1, 0], + "wind": [1.5, 0] }, "54041": { - "temp": [ - 22.8, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 11.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 3.6, - 0 - ] + "temp": [22.8, 0], + "sun10m": [10, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [11.5, 0], + "windDirection": [13, 0], + "wind": [3.6, 0] }, "54056": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 5, - 0 - ], - "precipitation24h": [ - 65.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [5, 0], + "precipitation24h": [65.5, 0] }, "54086": { - "temp": [ - 21, - 0 - ], - "humidity": [ - 100, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 56.5, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 0.4, - 0 - ] + "temp": [21, 0], + "humidity": [100, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [3, 0], + "precipitation24h": [56.5, 0], + "windDirection": [3, 0], + "wind": [0.4, 0] }, "54097": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 5, - 0 - ], - "precipitation24h": [ - 54.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [5, 0], + "precipitation24h": [54.5, 0] }, "54157": { - "pressure": [ - 1012.1, - 0 - ], - "normalPressure": [ - 1012.9, - 0 - ], - "temp": [ - 23, - 0 - ], - "humidity": [ - 65, - 0 - ], - "visibility": [ - 19750, - 0 - ], - "sun10m": [ - 9, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 10.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 8.2, - 0 - ] + "pressure": [1012.1, 0], + "normalPressure": [1012.9, 0], + "temp": [23, 0], + "humidity": [65, 0], + "visibility": [19750, 0], + "sun10m": [9, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [10.5, 0], + "windDirection": [14, 0], + "wind": [8.2, 0] }, "54166": { - "temp": [ - 25.2, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 5.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 3.5, - 0 - ] + "temp": [25.2, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [5.5, 0], + "windDirection": [13, 0], + "wind": [3.5, 0] }, "54181": { - "temp": [ - 19.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 6, - 0 - ], - "precipitation24h": [ - 47, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "temp": [19.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [6, 0], + "precipitation24h": [47, 0], + "windDirection": [8, 0], + "wind": [2.1, 0] }, "54191": { - "temp": [ - 19.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 7, - 0 - ], - "precipitation24h": [ - 48.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [19.7, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [7, 0], + "precipitation24h": [48.5, 0], + "windDirection": [11, 0], + "wind": [1.1, 0] }, "54232": { - "pressure": [ - 1012.1, - 0 - ], - "normalPressure": [ - 1012.8, - 0 - ], - "temp": [ - 21.7, - 0 - ], - "humidity": [ - 92, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 39.5, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 3, - 0 - ] + "pressure": [1012.1, 0], + "normalPressure": [1012.8, 0], + "temp": [21.7, 0], + "humidity": [92, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [39.5, 0], + "windDirection": [3, 0], + "wind": [3, 0] }, "54236": { - "temp": [ - 21.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 38, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 2.4, - 0 - ] + "temp": [21.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [38, 0], + "windDirection": [3, 0], + "wind": [2.4, 0] }, "54271": { - "temp": [ - 24, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 9, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 3, - 0 - ] + "temp": [24, 0], + "sun10m": [10, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [9, 0], + "windDirection": [15, 0], + "wind": [3, 0] }, "54296": { - "temp": [ - 22.2, - 0 - ], - "humidity": [ - 97, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 35, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 1.4, - 0 - ] + "temp": [22.2, 0], + "humidity": [97, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [35, 0], + "windDirection": [9, 0], + "wind": [1.4, 0] }, "54301": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 45, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [45, 0] }, "54311": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 32.5, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [32.5, 0] }, "54341": { - "temp": [ - 22.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 29.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 3.2, - 0 - ] + "temp": [22.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [29.5, 0], + "windDirection": [13, 0], + "wind": [3.2, 0] }, "54387": { - "temp": [ - 21, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 38, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 0.5, - 0 - ] + "temp": [21, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [38, 0], + "windDirection": [13, 0], + "wind": [0.5, 0] }, "54396": { - "temp": [ - 22, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 41.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [22, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [41.5, 0], + "windDirection": [10, 0], + "wind": [2, 0] }, "54406": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 46.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [46.5, 0] }, "54421": { - "temp": [ - 19.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 28.5, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 0.4, - 0 - ] + "temp": [19.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [28.5, 0], + "windDirection": [16, 0], + "wind": [0.4, 0] }, "54462": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 52, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [52, 0] }, "54472": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 26.5, - 1 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [26.5, 1] }, "54501": { - "temp": [ - 21.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2.5, - 0 - ], - "precipitation24h": [ - 55.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [21.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2.5, 0], + "precipitation24h": [55.5, 0], + "windDirection": [11, 0], + "wind": [1.8, 0] }, "54506": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 58.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [3, 0], + "precipitation24h": [58.5, 0] }, "54541": { - "temp": [ - 20.3, - 0 - ], - "humidity": [ - 98, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 6, - 0 - ], - "precipitation24h": [ - 43, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 0.8, - 0 - ] + "temp": [20.3, 0], + "humidity": [98, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [6, 0], + "precipitation24h": [43, 0], + "windDirection": [12, 0], + "wind": [0.8, 0] }, "54566": { - "temp": [ - 19.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 3.5, - 0 - ], - "precipitation3h": [ - 4.5, - 0 - ], - "precipitation24h": [ - 48, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 1.2, - 0 - ] + "temp": [19.5, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [3.5, 0], + "precipitation3h": [4.5, 0], + "precipitation24h": [48, 0], + "windDirection": [9, 0], + "wind": [1.2, 0] }, "54586": { - "temp": [ - 20.4, - 0 - ], - "humidity": [ - 97, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1.5, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 42.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [20.4, 0], + "humidity": [97, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1.5, 0], + "precipitation3h": [2, 0], + "precipitation24h": [42.5, 0], + "windDirection": [13, 0], + "wind": [1.8, 0] }, "54606": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 53.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [2, 0], + "precipitation24h": [53.5, 0] }, "54616": { - "temp": [ - 19.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 2, - 0 - ], - "precipitation3h": [ - 3, - 0 - ], - "precipitation24h": [ - 44.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [19.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [2, 0], + "precipitation3h": [3, 0], + "precipitation24h": [44.5, 0], + "windDirection": [10, 0], + "wind": [1, 0] }, "54621": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 34.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [2, 0], + "precipitation24h": [34.5, 0] }, "54651": { - "pressure": [ - 1011.4, - 0 - ], - "normalPressure": [ - 1013.1, - 0 - ], - "temp": [ - 21.4, - 0 - ], - "humidity": [ - 92, - 0 - ], - "visibility": [ - 8370, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 43.5, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 3, - 0 - ] + "pressure": [1011.4, 0], + "normalPressure": [1013.1, 0], + "temp": [21.4, 0], + "humidity": [92, 0], + "visibility": [8370, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [43.5, 0], + "windDirection": [16, 0], + "wind": [3, 0] }, "54661": { - "temp": [ - 19.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 50.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1.3, - 0 - ] + "temp": [19.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [1, 0], + "precipitation3h": [1, 0], + "precipitation24h": [50.5, 0], + "windDirection": [14, 0], + "wind": [1.3, 0] }, "54666": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 3, - 0 - ], - "precipitation3h": [ - 3.5, - 0 - ], - "precipitation24h": [ - 55, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [3, 0], + "precipitation3h": [3.5, 0], + "precipitation24h": [55, 0] }, "54671": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 55.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [55.5, 0] }, "54676": { - "temp": [ - 19.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 52.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [19.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [2, 0], + "precipitation24h": [52.5, 0], + "windDirection": [13, 0], + "wind": [1.6, 0] }, "54711": { - "temp": [ - 23.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 18, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 2.2, - 0 - ] + "temp": [23.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [18, 0], + "windDirection": [11, 0], + "wind": [2.2, 0] }, "54721": { - "temp": [ - 20.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 27.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [20.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [27.5, 0], + "windDirection": [13, 0], + "wind": [1.1, 0] }, "54737": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 39, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [39, 0] }, "54761": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 0.5, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 40.5, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [0.5, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [40.5, 0] }, "54816": { - "temp": [ - 19.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 44, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 3.3, - 0 - ] + "temp": [19.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [44, 0], + "windDirection": [2, 0], + "wind": [3.3, 0] }, "54836": { - "temp": [ - 18.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 41, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 0.8, - 0 - ] + "temp": [18.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [1, 0], + "precipitation3h": [1, 0], + "precipitation24h": [41, 0], + "windDirection": [4, 0], + "wind": [0.8, 0] }, "54841": { - "temp": [ - 19.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 40.5, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 0.5, - 0 - ] + "temp": [19.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [40.5, 0], + "windDirection": [5, 0], + "wind": [0.5, 0] }, "54876": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 34.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [34.5, 0] }, "54892": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 47.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [47.5, 0] }, "55022": { - "temp": [ - 21, - 0 - ], - "humidity": [ - 95, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 34, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 3.6, - 0 - ] + "temp": [21, 0], + "humidity": [95, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [34, 0], + "windDirection": [7, 0], + "wind": [3.6, 0] }, "55041": { - "temp": [ - 23.3, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 4.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 2.5, - 0 - ] + "temp": [23.3, 0], + "sun10m": [2, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [4.5, 0], + "windDirection": [11, 0], + "wind": [2.5, 0] }, "55056": { - "temp": [ - 21.2, - 0 - ], - "humidity": [ - 91, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 36.5, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [21.2, 0], + "humidity": [91, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [36.5, 0], + "windDirection": [7, 0], + "wind": [1.9, 0] }, "55063": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 33.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [33.5, 0] }, "55091": { - "pressure": [ - 1011.9, - 0 - ], - "normalPressure": [ - 1013.4, - 0 - ], - "temp": [ - 23.5, - 0 - ], - "humidity": [ - 72, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 12.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 4, - 0 - ] + "pressure": [1011.9, 0], + "normalPressure": [1013.4, 0], + "temp": [23.5, 0], + "humidity": [72, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [12.5, 0], + "windDirection": [13, 0], + "wind": [4, 0] }, "55102": { - "pressure": [ - 1011.6, - 0 - ], - "normalPressure": [ - 1013.6, - 0 - ], - "temp": [ - 22.8, - 0 - ], - "humidity": [ - 87, - 0 - ], - "visibility": [ - 19210, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 24, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "pressure": [1011.6, 0], + "normalPressure": [1013.6, 0], + "temp": [22.8, 0], + "humidity": [87, 0], + "visibility": [19210, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [24, 0], + "windDirection": [7, 0], + "wind": [1.9, 0] }, "55141": { - "temp": [ - 22.1, - 0 - ], - "humidity": [ - 87, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 13, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "temp": [22.1, 0], + "humidity": [87, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [13, 0], + "windDirection": [10, 0], + "wind": [2.1, 0] }, "55151": { - "temp": [ - 22, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 22.5, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [22, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [22.5, 0], + "windDirection": [6, 0], + "wind": [1.1, 0] }, "55156": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 33.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [33.5, 0] }, "55166": { - "temp": [ - 19.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 36.5, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [19.2, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0.5, 0], + "precipitation1h": [1, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [36.5, 0], + "windDirection": [2, 0], + "wind": [1, 0] }, "55191": { - "temp": [ - 21.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 14, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "temp": [21.8, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [14, 0], + "windDirection": [12, 0], + "wind": [2.1, 0] }, "55206": { - "temp": [ - 21.8, - 0 - ], - "humidity": [ - 90, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 21, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 0.3, - 0 - ] + "temp": [21.8, 0], + "humidity": [90, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [21, 0], + "windDirection": [2, 0], + "wind": [0.3, 0] }, "55217": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 39, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [39, 0] }, "55252": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 23.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [23.5, 0] }, "55267": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 28, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [28, 0] }, "56036": { - "temp": [ - 23.8, - 0 - ], - "humidity": [ - 62, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 8, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 4.4, - 0 - ] + "temp": [23.8, 0], + "humidity": [62, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [8, 0], + "windDirection": [14, 0], + "wind": [4.4, 0] }, "56052": { - "pressure": [ - 1012.9, - 0 - ], - "normalPressure": [ - 1013.7, - 0 - ], - "temp": [ - 23.7, - 0 - ], - "humidity": [ - 55, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 3.4, - 0 - ] + "pressure": [1012.9, 0], + "normalPressure": [1013.7, 0], + "temp": [23.7, 0], + "humidity": [55, 0], + "visibility": [20000, 0], + "sun10m": [7, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [12, 0], + "wind": [3.4, 0] }, "56081": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 3, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [3, 0] }, "56093": { - "temp": [ - 22.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 8, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 4.9, - 0 - ] + "temp": [22.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [8, 0], + "windDirection": [12, 0], + "wind": [4.9, 0] }, "56116": { - "temp": [ - 23.9, - 0 - ], - "humidity": [ - 57, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 3, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 4.3, - 0 - ] + "temp": [23.9, 0], + "humidity": [57, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [3, 0], + "windDirection": [13, 0], + "wind": [4.3, 0] }, "56146": { - "temp": [ - 24.7, - 0 - ], - "humidity": [ - 66, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 8, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [24.7, 0], + "humidity": [66, 0], + "sun10m": [10, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [8, 0], + "windDirection": [9, 0], + "wind": [1.5, 0] }, "56176": { - "temp": [ - 24.9, - 0 - ], - "humidity": [ - 62, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 9.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 5.2, - 0 - ] + "temp": [24.9, 0], + "humidity": [62, 0], + "sun10m": [10, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [9.5, 0], + "windDirection": [13, 0], + "wind": [5.2, 0] }, "56186": { - "temp": [ - 23.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 7.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 3.4, - 0 - ] + "temp": [23.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [7.5, 0], + "windDirection": [14, 0], + "wind": [3.4, 0] }, "56192": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 9, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [9, 0] }, "56227": { - "pressure": [ - 1010.1, - 0 - ], - "normalPressure": [ - 1014, - 0 - ], - "temp": [ - 23.8, - 0 - ], - "humidity": [ - 63, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 4.6, - 0 - ] + "pressure": [1010.1, 0], + "normalPressure": [1014, 0], + "temp": [23.8, 0], + "humidity": [63, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [5, 0], + "windDirection": [15, 0], + "wind": [4.6, 0] }, "56232": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 22, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2, 0], + "precipitation24h": [22, 0] }, "56276": { - "temp": [ - 23.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 2.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "temp": [23.8, 0], + "sun10m": [0, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [2.5, 0], + "windDirection": [15, 0], + "wind": [2.8, 0] }, "56286": { - "temp": [ - 21.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1.5, - 0 - ], - "precipitation24h": [ - 21.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 2.4, - 0 - ] + "temp": [21.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1.5, 0], + "precipitation24h": [21.5, 0], + "windDirection": [1, 0], + "wind": [2.4, 0] }, "56301": { - "temp": [ - 23.1, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 4.5, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 3.4, - 0 - ] + "temp": [23.1, 0], + "sun10m": [2, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [4.5, 0], + "windDirection": [3, 0], + "wind": [3.4, 0] }, "56346": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 15, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [15, 0] }, "56401": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0] }, "57001": { - "temp": [ - 24.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 2, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 3.4, - 0 - ] + "temp": [24.5, 0], + "sun10m": [10, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [2, 0], + "windDirection": [15, 0], + "wind": [3.4, 0] }, "57026": { - "temp": [ - 24.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 3, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 4.7, - 0 - ] + "temp": [24.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [3, 0], + "windDirection": [15, 0], + "wind": [4.7, 0] }, "57051": { - "temp": [ - 22.8, - 0 - ], - "humidity": [ - 79, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 3, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 2.7, - 0 - ] + "temp": [22.8, 0], + "humidity": [79, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [3, 0], + "windDirection": [16, 0], + "wind": [2.7, 0] }, "57066": { - "pressure": [ - 1011.7, - 0 - ], - "normalPressure": [ - 1013.7, - 0 - ], - "temp": [ - 24.7, - 0 - ], - "humidity": [ - 68, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 4, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1.5, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 4.5, - 0 - ] + "pressure": [1011.7, 0], + "normalPressure": [1013.7, 0], + "temp": [24.7, 0], + "humidity": [68, 0], + "visibility": [20000, 0], + "sun10m": [4, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1.5, 0], + "windDirection": [16, 0], + "wind": [4.5, 0] }, "57071": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 4, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [4, 0] }, "57082": { - "temp": [ - 24.5, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 13.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 5, - 0 - ] + "temp": [24.5, 0], + "sun10m": [5, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [13.5, 0], + "windDirection": [13, 0], + "wind": [5, 0] }, "57106": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 2.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [2.5, 0] }, "57121": { - "temp": [ - 24.2, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 12, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [24.2, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [12, 0], + "windDirection": [13, 0], + "wind": [1.8, 0] }, "57176": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 22, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [22, 0] }, "57206": { - "temp": [ - 23.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 8, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 7.2, - 0 - ] + "temp": [23.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [8, 0], + "windDirection": [1, 0], + "wind": [7.2, 0] }, "57248": { - "pressure": [ - 1011.5, - 0 - ], - "normalPressure": [ - 1012.9, - 0 - ], - "temp": [ - 25, - 0 - ], - "humidity": [ - 65, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 4, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 6.6, - 0 - ] + "pressure": [1011.5, 0], + "normalPressure": [1012.9, 0], + "temp": [25, 0], + "humidity": [65, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [4, 0], + "windDirection": [14, 0], + "wind": [6.6, 0] }, "57286": { - "temp": [ - 24.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 10.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 3.8, - 0 - ] + "temp": [24.6, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [10.5, 0], + "windDirection": [15, 0], + "wind": [3.8, 0] }, "57311": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1.5, 0] }, "57317": { - "temp": [ - 23.1, - 0 - ], - "humidity": [ - 74, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 2, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 6.2, - 0 - ] + "temp": [23.1, 0], + "humidity": [74, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [2, 0], + "windDirection": [16, 0], + "wind": [6.2, 0] }, "60026": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 4.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [4.5, 0] }, "60051": { - "temp": [ - 24.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 4, - 0 - ] + "temp": [24.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [4, 0] }, "60061": { - "temp": [ - 25.8, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 13, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 4.9, - 0 - ] + "temp": [25.8, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [13, 0], + "windDirection": [14, 0], + "wind": [4.9, 0] }, "60081": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1, 0] }, "60102": { - "temp": [ - 25.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 8.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 5.7, - 0 - ] + "temp": [25.7, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [8.5, 0], + "windDirection": [14, 0], + "wind": [5.7, 0] }, "60116": { - "temp": [ - 25.1, - 0 - ], - "humidity": [ - 64, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1.5, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 3.5, - 0 - ] + "temp": [25.1, 0], + "humidity": [64, 0], + "sun10m": [5, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1.5, 0], + "windDirection": [16, 0], + "wind": [3.5, 0] }, "60131": { - "pressure": [ - 1001.1, - 0 - ], - "normalPressure": [ - 1011.6, - 0 - ], - "temp": [ - 26.3, - 0 - ], - "humidity": [ - 64, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 16.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 7.7, - 0 - ] + "pressure": [1001.1, 0], + "normalPressure": [1011.6, 0], + "temp": [26.3, 0], + "humidity": [64, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [16.5, 0], + "windDirection": [14, 0], + "wind": [7.7, 0] }, "60161": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 11.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [11.5, 0] }, "60196": { - "temp": [ - 26.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 14, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 5.7, - 0 - ] + "temp": [26.7, 0], + "sun10m": [10, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [14, 0], + "windDirection": [15, 0], + "wind": [5.7, 0] }, "60216": { - "temp": [ - 27.4, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 4.5, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [27.4, 0], + "sun10m": [10, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [4.5, 0], + "windDirection": [2, 0], + "wind": [1.9, 0] }, "60226": { - "temp": [ - 24.6, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 10.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 3.9, - 0 - ] + "temp": [24.6, 0], + "sun10m": [10, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [10.5, 0], + "windDirection": [15, 0], + "wind": [3.9, 0] }, "60236": { - "temp": [ - 25.2, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.4, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 12, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [25.2, 0], + "sun10m": [10, 0], + "sun1h": [0.4, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [12, 0], + "windDirection": [12, 0], + "wind": [1.8, 0] }, "61001": { - "temp": [ - 22.5, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 3.8, - 0 - ] + "temp": [22.5, 0], + "sun10m": [2, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [3.8, 0] }, "61031": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "61076": { - "temp": [ - 24.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 3.1, - 0 - ] + "temp": [24.9, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [13, 0], + "wind": [3.1, 0] }, "61096": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0] }, "61111": { - "pressure": [ - 1013.1, - 0 - ], - "normalPressure": [ - 1013.6, - 0 - ], - "temp": [ - 24.1, - 0 - ], - "humidity": [ - 68, - 0 - ], - "visibility": [ - 16670, - 0 - ], - "sun10m": [ - 3, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 5.8, - 0 - ] + "pressure": [1013.1, 0], + "normalPressure": [1013.6, 0], + "temp": [24.1, 0], + "humidity": [68, 0], + "visibility": [16670, 0], + "sun10m": [3, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [5.8, 0] }, "61151": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0] }, "61187": { - "temp": [ - 25.6, - 0 - ], - "humidity": [ - 64, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 3.9, - 0 - ] + "temp": [25.6, 0], + "humidity": [64, 0], + "sun10m": [5, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [3.9, 0] }, "61192": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "61196": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "61201": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "61206": { - "temp": [ - 22.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 4.9, - 0 - ] + "temp": [22.1, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [4.9, 0] }, "61241": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "61242": { - "temp": [ - 25.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 4.1, - 0 - ] + "temp": [25.6, 0], + "sun10m": [0, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [4.1, 0] }, "61251": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0] }, "61286": { - "pressure": [ - 1005.4, - 0 - ], - "normalPressure": [ - 1011.4, - 0 - ], - "temp": [ - 27.8, - 0 - ], - "humidity": [ - 51, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 3, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 4.1, - 0 - ] + "pressure": [1005.4, 0], + "normalPressure": [1011.4, 0], + "temp": [27.8, 0], + "humidity": [51, 0], + "visibility": [20000, 0], + "sun10m": [3, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [4.1, 0] }, "61306": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "61326": { - "temp": [ - 28.5, - 0 - ], - "humidity": [ - 60, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [28.5, 0], + "humidity": [60, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [2, 0] }, "62016": { - "temp": [ - 26.3, - 0 - ], - "humidity": [ - 65, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [26.3, 0], + "humidity": [65, 0], + "sun10m": [10, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [13, 0], + "wind": [1.8, 0] }, "62037": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "62046": { - "temp": [ - 28.1, - 0 - ], - "humidity": [ - 54, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 3.3, - 0 - ] + "temp": [28.1, 0], + "humidity": [54, 0], + "sun10m": [10, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [3.3, 0] }, "62051": { - "temp": [ - 28.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 3.8, - 0 - ] + "temp": [28.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [3.8, 0] }, "62078": { - "pressure": [ - 1001.8, - 0 - ], - "normalPressure": [ - 1011.1, - 0 - ], - "temp": [ - 29.3, - 0 - ], - "humidity": [ - 44, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "pressure": [1001.8, 0], + "normalPressure": [1011.1, 0], + "temp": [29.3, 0], + "humidity": [44, 0], + "sun10m": [10, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [13, 0], + "wind": [2.6, 0] }, "62081": { - "temp": [ - 23.5, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 2.3, - 0 - ] + "temp": [23.5, 0], + "sun10m": [0, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [14, 0], + "wind": [2.3, 0] }, "62091": { - "temp": [ - 28.8, - 0 - ], - "humidity": [ - 55, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [28.8, 0], + "humidity": [55, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [13, 0], + "wind": [1.9, 0] }, "62096": { - "temp": [ - 28.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 2.9, - 0 - ] + "temp": [28.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [1, 0], + "wind": [2.9, 0] }, "62101": { - "temp": [ - 26, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [26, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [14, 0], + "wind": [2.6, 0] }, "62111": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "62131": { - "temp": [ - 27.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 3.3, - 0 - ] + "temp": [27.5, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [14, 0], + "wind": [3.3, 0] }, "63016": { - "temp": [ - 23.5, - 0 - ], - "humidity": [ - 60, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 4.2, - 0 - ] + "temp": [23.5, 0], + "humidity": [60, 0], + "sun10m": [2, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1, 0], + "windDirection": [16, 0], + "wind": [4.2, 0] }, "63032": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "63051": { - "pressure": [ - 1013.4, - 0 - ], - "normalPressure": [ - 1014.1, - 0 - ], - "temp": [ - 25.2, - 0 - ], - "humidity": [ - 57, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 4.7, - 0 - ] + "pressure": [1013.4, 0], + "normalPressure": [1014.1, 0], + "temp": [25.2, 0], + "humidity": [57, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [4.7, 0] }, "63071": { - "temp": [ - 19.2, - 0 - ], - "humidity": [ - 78, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 3.6, - 0 - ] + "temp": [19.2, 0], + "humidity": [78, 0], + "sun10m": [7, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [3.6, 0] }, "63111": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "63116": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "63121": { - "temp": [ - 24, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.4, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 4.7, - 0 - ] + "temp": [24, 0], + "sun10m": [0, 0], + "sun1h": [0.4, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [4.7, 0] }, "63201": { - "temp": [ - 24, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 2.2, - 0 - ] + "temp": [24, 0], + "sun10m": [7, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [16, 0], + "wind": [2.2, 0] }, "63216": { - "temp": [ - 25.9, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 2.7, - 0 - ] + "temp": [25.9, 0], + "sun10m": [10, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [2.7, 0] }, "63241": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "63251": { - "temp": [ - 26.5, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 3, - 0 - ] + "temp": [26.5, 0], + "sun10m": [7, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [15, 0], + "wind": [3, 0] }, "63321": { - "temp": [ - 28.8, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 0.7, - 0 - ] + "temp": [28.8, 0], + "sun10m": [10, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [4, 0], + "wind": [0.7, 0] }, "63331": { - "temp": [ - 27.8, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [27.8, 0], + "sun10m": [10, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [1.9, 0] }, "63346": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "63366": { - "temp": [ - 27.7, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [27.7, 0], + "sun10m": [5, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [1.5, 0] }, "63383": { - "pressure": [ - 1006.8, - 0 - ], - "normalPressure": [ - 1011.3, - 0 - ], - "temp": [ - 27.8, - 0 - ], - "humidity": [ - 48, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 3.7, - 0 - ] + "pressure": [1006.8, 0], + "normalPressure": [1011.3, 0], + "temp": [27.8, 0], + "humidity": [48, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [10, 0], + "wind": [3.7, 0] }, "63411": { - "temp": [ - 26, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 4.1, - 0 - ] + "temp": [26, 0], + "sun10m": [2, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [4.1, 0] }, "63461": { - "temp": [ - 27.6, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.4, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 2.7, - 0 - ] + "temp": [27.6, 0], + "sun10m": [2, 0], + "sun1h": [0.4, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [2.7, 0] }, "63477": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "63491": { - "temp": [ - 26.8, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 2.9, - 0 - ] + "temp": [26.8, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [9, 0], + "wind": [2.9, 0] }, "63496": { - "temp": [ - 26.8, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 4, - 0 - ] + "temp": [26.8, 0], + "sun10m": [7, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [10, 0], + "wind": [4, 0] }, "63517": { - "temp": [ - 27.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 3.5, - 0 - ] + "temp": [27.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [10, 0], + "wind": [3.5, 0] }, "63518": { - "pressure": [ - 1008, - 0 - ], - "normalPressure": [ - 1011.5, - 0 - ], - "temp": [ - 28.4, - 0 - ], - "humidity": [ - 49, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 9, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 3.6, - 0 - ] + "pressure": [1008, 0], + "normalPressure": [1011.5, 0], + "temp": [28.4, 0], + "humidity": [49, 0], + "visibility": [20000, 0], + "sun10m": [9, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [9, 0], + "wind": [3.6, 0] }, "63551": { - "temp": [ - 28.3, - 0 - ], - "humidity": [ - 60, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.4, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [28.3, 0], + "humidity": [60, 0], + "sun10m": [0, 0], + "sun1h": [0.4, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [12, 0], + "wind": [1.9, 0] }, "63571": { - "pressure": [ - 1003.8, - 0 - ], - "normalPressure": [ - 1011.8, - 0 - ], - "temp": [ - 26.8, - 0 - ], - "humidity": [ - 58, - 0 - ], - "visibility": [ - 19030, - 0 - ], - "sun10m": [ - 6, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 3.2, - 0 - ] + "pressure": [1003.8, 0], + "normalPressure": [1011.8, 0], + "temp": [26.8, 0], + "humidity": [58, 0], + "visibility": [19030, 0], + "sun10m": [6, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [13, 0], + "wind": [3.2, 0] }, "63588": { - "temp": [ - 27.3, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [27.3, 0], + "sun10m": [10, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [1.1, 0] }, "64036": { - "pressure": [ - 999.1, - 0 - ], - "normalPressure": [ - 1010.8, - 0 - ], - "temp": [ - 27.9, - 0 - ], - "humidity": [ - 51, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 3.3, - 0 - ] + "pressure": [999.1, 0], + "normalPressure": [1010.8, 0], + "temp": [27.9, 0], + "humidity": [51, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1, 0], + "windDirection": [16, 0], + "wind": [3.3, 0] }, "64041": { - "temp": [ - 24.6, - 0 - ], - "humidity": [ - 63, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 17, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 2.7, - 0 - ] + "temp": [24.6, 0], + "humidity": [63, 0], + "sun10m": [2, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [17, 0], + "windDirection": [14, 0], + "wind": [2.7, 0] }, "64056": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0] }, "64076": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 12, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [12, 0] }, "64091": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0] }, "64101": { - "temp": [ - 23.4, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 9.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [23.4, 0], + "sun10m": [7, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [9.5, 0], + "windDirection": [14, 0], + "wind": [1.6, 0] }, "64127": { - "temp": [ - 27.1, - 0 - ], - "humidity": [ - 59, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "temp": [27.1, 0], + "humidity": [59, 0], + "sun10m": [10, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1, 0], + "windDirection": [16, 0], + "wind": [1.7, 0] }, "64136": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 5.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [5.5, 0] }, "64161": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 13.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [13.5, 0] }, "64206": { - "temp": [ - 28, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 14, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 4.7, - 0 - ] + "temp": [28, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [14, 0], + "windDirection": [3, 0], + "wind": [4.7, 0] }, "64227": { - "temp": [ - 27.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 3, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 1.2, - 0 - ] + "temp": [27.5, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [3, 0], + "windDirection": [4, 0], + "wind": [1.2, 0] }, "64236": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 12.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [12.5, 0] }, "64262": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 9, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [9, 0] }, "65021": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0] }, "65026": { - "temp": [ - 27.3, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 3, - 0 - ] + "temp": [27.3, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [16, 0], + "wind": [3, 0] }, "65036": { - "temp": [ - 27.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.3, - 0 - ] + "temp": [27.1, 0], + "sun10m": [0, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [13, 0], + "wind": [1.3, 0] }, "65042": { - "pressure": [ - 1009.3, - 0 - ], - "normalPressure": [ - 1011.4, - 0 - ], - "temp": [ - 27.6, - 0 - ], - "humidity": [ - 57, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 4.1, - 0 - ] + "pressure": [1009.3, 0], + "normalPressure": [1011.4, 0], + "temp": [27.6, 0], + "humidity": [57, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [4.1, 0] }, "65061": { - "temp": [ - 22.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [22.1, 0], + "sun10m": [10, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1, 0], + "windDirection": [13, 0], + "wind": [1.6, 0] }, "65106": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "65121": { - "temp": [ - 27.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 1.3, - 0 - ] + "temp": [27.1, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [12, 0], + "wind": [1.3, 0] }, "65127": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1.5, 0] }, "65162": { - "temp": [ - 27.2, - 0 - ], - "humidity": [ - 54, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [27.2, 0], + "humidity": [54, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1.5, 0], + "windDirection": [12, 0], + "wind": [1.8, 0] }, "65201": { - "temp": [ - 28.3, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 4, - 0 - ] + "temp": [28.3, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [4, 0] }, "65226": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 6.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [6.5, 0] }, "65256": { - "temp": [ - 30, - 0 - ], - "humidity": [ - 53, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 3.9, - 0 - ] + "temp": [30, 0], + "humidity": [53, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1, 0], + "windDirection": [13, 0], + "wind": [3.9, 0] }, "65276": { - "temp": [ - 30.9, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 20.5, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 2.7, - 0 - ] + "temp": [30.9, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [20.5, 0], + "windDirection": [9, 0], + "wind": [2.7, 0] }, "65288": { - "temp": [ - 29, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 7, - 0 - ] + "temp": [29, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1, 0], + "windDirection": [14, 0], + "wind": [7, 0] }, "65306": { - "temp": [ - 31.3, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 3, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 1.4, - 0 - ] + "temp": [31.3, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [3, 0], + "windDirection": [16, 0], + "wind": [1.4, 0] }, "65311": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 3.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [3.5, 0] }, "65321": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 2, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [2, 0] }, "65356": { - "pressure": [ - 1000.4, - 0 - ], - "normalPressure": [ - 1008.2, - 0 - ], - "temp": [ - 28.4, - 0 - ], - "humidity": [ - 71, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 21.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 8, - 0 - ] + "pressure": [1000.4, 0], + "normalPressure": [1008.2, 0], + "temp": [28.4, 0], + "humidity": [71, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [21.5, 0], + "windDirection": [12, 0], + "wind": [8, 0] }, "66046": { - "temp": [ - 19.3, - 0 - ], - "humidity": [ - 84, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [19.3, 0], + "humidity": [84, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [1, 0], + "wind": [2, 0] }, "66056": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0] }, "66091": { - "temp": [ - 22.2, - 0 - ], - "humidity": [ - 68, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [22.2, 0], + "humidity": [68, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [1.9, 0] }, "66112": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "66127": { - "temp": [ - 26.6, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "temp": [26.6, 0], + "sun10m": [10, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [2.8, 0] }, "66136": { - "temp": [ - 25, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [25, 0], + "sun10m": [2, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [2.6, 0] }, "66171": { - "temp": [ - 26.3, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 5, - 0 - ] + "temp": [26.3, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [5, 0] }, "66186": { - "pressure": [ - 995.2, - 0 - ], - "normalPressure": [ - 1011.9, - 0 - ], - "temp": [ - 27.1, - 0 - ], - "humidity": [ - 55, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 9, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "pressure": [995.2, 0], + "normalPressure": [1011.9, 0], + "temp": [27.1, 0], + "humidity": [55, 0], + "visibility": [20000, 0], + "sun10m": [9, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [1.8, 0] }, "66221": { - "temp": [ - 25.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [25.7, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [1, 0] }, "66226": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "66237": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "66251": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "66276": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "66287": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "66296": { - "temp": [ - 27.3, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [27.3, 0], + "sun10m": [7, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [15, 0], + "wind": [1.6, 0] }, "66306": { - "temp": [ - 28.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [28.6, 0], + "sun10m": [0, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [12, 0], + "wind": [1.6, 0] }, "66336": { - "temp": [ - 27.6, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 2.4, - 0 - ] + "temp": [27.6, 0], + "sun10m": [10, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [2.4, 0] }, "66346": { - "temp": [ - 25.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "temp": [25.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [2.8, 0] }, "66381": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "66391": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "66408": { - "pressure": [ - 1010.9, - 0 - ], - "normalPressure": [ - 1011.7, - 0 - ], - "temp": [ - 28.5, - 0 - ], - "humidity": [ - 45, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 3, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 2.2, - 0 - ] + "pressure": [1010.9, 0], + "normalPressure": [1011.7, 0], + "temp": [28.5, 0], + "humidity": [45, 0], + "visibility": [20000, 0], + "sun10m": [3, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [13, 0], + "wind": [2.2, 0] }, "66421": { - "temp": [ - 27.8, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 3.1, - 0 - ] + "temp": [27.8, 0], + "sun10m": [10, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [8, 0], + "wind": [3.1, 0] }, "66446": { - "temp": [ - 27.4, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 2.9, - 0 - ] + "temp": [27.4, 0], + "sun10m": [5, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [12, 0], + "wind": [2.9, 0] }, "66481": { - "temp": [ - 26.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 4.4, - 0 - ] + "temp": [26.8, 0], + "sun10m": [0, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [10, 0], + "wind": [4.4, 0] }, "66501": { - "temp": [ - 28.7, - 0 - ], - "humidity": [ - 51, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 2.9, - 0 - ] + "temp": [28.7, 0], + "humidity": [51, 0], + "sun10m": [10, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [10, 0], + "wind": [2.9, 0] }, "67016": { - "temp": [ - 21.3, - 0 - ], - "humidity": [ - 65, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 2.7, - 0 - ] + "temp": [21.3, 0], + "humidity": [65, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [2.7, 0] }, "67026": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "67052": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "67106": { - "temp": [ - 26.9, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 3.3, - 0 - ] + "temp": [26.9, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [11, 0], + "wind": [3.3, 0] }, "67116": { - "temp": [ - 27.2, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 0.5, - 0 - ] + "temp": [27.2, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [15, 0], + "wind": [0.5, 0] }, "67126": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "67136": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "67151": { - "temp": [ - 23.6, - 0 - ], - "humidity": [ - 63, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 4.2, - 0 - ] + "temp": [23.6, 0], + "humidity": [63, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [4.2, 0] }, "67161": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "67191": { - "temp": [ - 24.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [24.7, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [3, 0], + "wind": [2, 0] }, "67211": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "67212": { - "temp": [ - 27.9, - 0 - ], - "humidity": [ - 37, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [27.9, 0], + "humidity": [37, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [1.8, 0] }, "67217": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "67231": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "67251": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "67271": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "67292": { - "temp": [ - 28.4, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 2.3, - 0 - ] + "temp": [28.4, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [3, 0], + "wind": [2.3, 0] }, "67306": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "67316": { - "temp": [ - 25.3, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 2.2, - 0 - ] + "temp": [25.3, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [2.2, 0] }, "67326": { - "temp": [ - 28.2, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [28.2, 0], + "sun10m": [7, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [11, 0], + "wind": [1.9, 0] }, "67351": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "67371": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "67376": { - "temp": [ - 25.2, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [25.2, 0], + "sun10m": [7, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [10, 0], + "wind": [1.5, 0] }, "67386": { - "temp": [ - 24.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 2.4, - 0 - ] + "temp": [24.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [12, 0], + "wind": [2.4, 0] }, "67401": { - "pressure": [ - 1011.9, - 0 - ], - "normalPressure": [ - 1012.3, - 0 - ], - "temp": [ - 26.3, - 0 - ], - "humidity": [ - 60, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 4, - 0 - ], - "sun1h": [ - 0.4, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 2.3, - 0 - ] + "pressure": [1011.9, 0], + "normalPressure": [1012.3, 0], + "temp": [26.3, 0], + "humidity": [60, 0], + "visibility": [20000, 0], + "sun10m": [4, 0], + "sun1h": [0.4, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [8, 0], + "wind": [2.3, 0] }, "67421": { - "temp": [ - 27, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [27, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [5, 0], + "wind": [1.8, 0] }, "67437": { - "pressure": [ - 1006.2, - 0 - ], - "normalPressure": [ - 1012.3, - 0 - ], - "temp": [ - 28.2, - 0 - ], - "humidity": [ - 44, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 3.2, - 0 - ] + "pressure": [1006.2, 0], + "normalPressure": [1012.3, 0], + "temp": [28.2, 0], + "humidity": [44, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [10, 0], + "wind": [3.2, 0] }, "67461": { - "temp": [ - 26.3, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [26.3, 0], + "sun10m": [2, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [9, 0], + "wind": [1.9, 0] }, "67471": { - "temp": [ - 27.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 2.5, - 0 - ] + "temp": [27.1, 0], + "sun10m": [10, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [8, 0], + "wind": [2.5, 0] }, "67496": { - "temp": [ - 26.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 2.2, - 0 - ] + "temp": [26.7, 0], + "sun10m": [10, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [6, 0], + "wind": [2.2, 0] }, "67511": { - "pressure": [ - 1011.9, - 0 - ], - "normalPressure": [ - 1012.5, - 0 - ], - "temp": [ - 25.7, - 0 - ], - "humidity": [ - 59, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 6, - 0 - ], - "sun1h": [ - 0.4, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 3.8, - 0 - ] + "pressure": [1011.9, 0], + "normalPressure": [1012.5, 0], + "temp": [25.7, 0], + "humidity": [59, 0], + "visibility": [20000, 0], + "sun10m": [6, 0], + "sun1h": [0.4, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [10, 0], + "wind": [3.8, 0] }, "67566": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "67576": { - "temp": [ - 26.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 2.5, - 0 - ] + "temp": [26.7, 0], + "sun10m": [10, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [7, 0], + "wind": [2.5, 0] }, "68022": { - "pressure": [ - 1011.1, - 0 - ], - "normalPressure": [ - 1014.3, - 0 - ], - "temp": [ - 23.8, - 0 - ], - "humidity": [ - 44, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 4, - 0 - ] + "pressure": [1011.1, 0], + "normalPressure": [1014.3, 0], + "temp": [23.8, 0], + "humidity": [44, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [15, 0], + "wind": [4, 0] }, "68046": { - "temp": [ - 23.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 4.1, - 0 - ] + "temp": [23.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1, 0], + "windDirection": [12, 0], + "wind": [4.1, 0] }, "68056": { - "temp": [ - 23.4, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 2.3, - 0 - ] + "temp": [23.4, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [2.3, 0] }, "68091": { - "temp": [ - 22.4, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [22.4, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [1.9, 0] }, "68121": { - "temp": [ - 23.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 3.9, - 0 - ] + "temp": [23.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [3.9, 0] }, "68132": { - "pressure": [ - 1012, - 0 - ], - "normalPressure": [ - 1014.6, - 0 - ], - "temp": [ - 23.9, - 0 - ], - "humidity": [ - 59, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 4.6, - 0 - ] + "pressure": [1012, 0], + "normalPressure": [1014.6, 0], + "temp": [23.9, 0], + "humidity": [59, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [4.6, 0] }, "68156": { - "temp": [ - 23.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [23.5, 0], + "sun10m": [10, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [3, 0], + "wind": [2, 0] }, "68166": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "68181": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "68206": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "68246": { - "temp": [ - 23.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [23.5, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [2, 0] }, "68261": { - "temp": [ - 22.8, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 2.7, - 0 - ] + "temp": [22.8, 0], + "sun10m": [5, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [2.7, 0] }, "68276": { - "temp": [ - 22.9, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 3.1, - 0 - ] + "temp": [22.9, 0], + "sun10m": [10, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [14, 0], + "wind": [3.1, 0] }, "68286": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "68306": { - "temp": [ - 21.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 2.2, - 0 - ] + "temp": [21.5, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [2.2, 0] }, "68346": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "68351": { - "temp": [ - 22.3, - 0 - ], - "humidity": [ - 67, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 3.1, - 0 - ] + "temp": [22.3, 0], + "humidity": [67, 0], + "sun10m": [10, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [3.1, 0] }, "68376": { - "pressure": [ - 1012.1, - 0 - ], - "normalPressure": [ - 1014.5, - 0 - ], - "temp": [ - 23.3, - 0 - ], - "humidity": [ - 60, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 4.5, - 0 - ] + "pressure": [1012.1, 0], + "normalPressure": [1014.5, 0], + "temp": [23.3, 0], + "humidity": [60, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [4.5, 0] }, "68401": { - "temp": [ - 25.4, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 2.9, - 0 - ] + "temp": [25.4, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [12, 0], + "wind": [2.9, 0] }, "68421": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "68431": { - "temp": [ - 20.4, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 4.1, - 0 - ] + "temp": [20.4, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [4.1, 0] }, "68436": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "68456": { - "temp": [ - 23, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 4.2, - 0 - ] + "temp": [23, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [4.2, 0] }, "68462": { - "temp": [ - 24.4, - 0 - ], - "humidity": [ - 61, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 3.6, - 0 - ] + "temp": [24.4, 0], + "humidity": [61, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [3.6, 0] }, "68501": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "68516": { - "temp": [ - 26.3, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 3.4, - 0 - ] + "temp": [26.3, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [3.4, 0] }, "68541": { - "temp": [ - 24.6, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 3.1, - 0 - ] + "temp": [24.6, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [3, 0], + "wind": [3.1, 0] }, "69006": { - "pressure": [ - 1014.4, - 0 - ], - "normalPressure": [ - 1014.8, - 0 - ], - "temp": [ - 23.9, - 0 - ], - "humidity": [ - 58, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 3.6, - 0 - ] + "pressure": [1014.4, 0], + "normalPressure": [1014.8, 0], + "temp": [23.9, 0], + "humidity": [58, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [3.6, 0] }, "69021": { - "temp": [ - 23.3, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 3.1, - 0 - ] + "temp": [23.3, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [3.1, 0] }, "69041": { - "temp": [ - 23.3, - 0 - ], - "humidity": [ - 64, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 3.2, - 0 - ] + "temp": [23.3, 0], + "humidity": [64, 0], + "sun10m": [10, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [3.2, 0] }, "69052": { - "temp": [ - 23.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 3.9, - 0 - ] + "temp": [23.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [3.9, 0] }, "69061": { - "temp": [ - 22.6, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 2.9, - 0 - ] + "temp": [22.6, 0], + "sun10m": [2, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [2.9, 0] }, "69076": { - "pressure": [ - 1013.8, - 0 - ], - "normalPressure": [ - 1014.7, - 0 - ], - "temp": [ - 23.5, - 0 - ], - "humidity": [ - 56, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 8, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 4.2, - 0 - ] + "pressure": [1013.8, 0], + "normalPressure": [1014.7, 0], + "temp": [23.5, 0], + "humidity": [56, 0], + "visibility": [20000, 0], + "sun10m": [8, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [4.2, 0] }, "69101": { - "temp": [ - 22, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.4, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 3.6, - 0 - ] + "temp": [22, 0], + "sun10m": [0, 0], + "sun1h": [0.4, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [3.6, 0] }, "69111": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "69122": { - "pressure": [ - 1012.7, - 0 - ], - "normalPressure": [ - 1014.5, - 0 - ], - "temp": [ - 25, - 0 - ], - "humidity": [ - 57, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 6, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 4, - 0 - ] + "pressure": [1012.7, 0], + "normalPressure": [1014.5, 0], + "temp": [25, 0], + "humidity": [57, 0], + "visibility": [20000, 0], + "sun10m": [6, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [4, 0] }, "69152": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "69161": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "69181": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "69196": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0] }, "69222": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "69246": { - "temp": [ - 23.7, - 0 - ], - "humidity": [ - 68, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 2.2, - 0 - ] + "temp": [23.7, 0], + "humidity": [68, 0], + "sun10m": [10, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [13, 0], + "wind": [2.2, 0] }, "69271": { - "temp": [ - 21.6, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "temp": [21.6, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [2.1, 0] }, "71066": { - "temp": [ - 26.4, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 1.1, - 0 - ] + "temp": [26.4, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [4, 0], + "wind": [1.1, 0] }, "71087": { - "temp": [ - 27.5, - 0 - ], - "humidity": [ - 50, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 1.3, - 0 - ] + "temp": [27.5, 0], + "humidity": [50, 0], + "sun10m": [7, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [12, 0], + "wind": [1.3, 0] }, "71106": { - "pressure": [ - 1011, - 0 - ], - "normalPressure": [ - 1011.7, - 0 - ], - "temp": [ - 28, - 0 - ], - "humidity": [ - 41, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 6, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 5.4, - 0 - ] + "pressure": [1011, 0], + "normalPressure": [1011.7, 0], + "temp": [28, 0], + "humidity": [41, 0], + "visibility": [20000, 0], + "sun10m": [6, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [5.4, 0] }, "71136": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0] }, "71191": { - "temp": [ - 24.9, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 0.9, - 0 - ] + "temp": [24.9, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [12, 0], + "wind": [0.9, 0] }, "71211": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "71231": { - "temp": [ - 26.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 3.4, - 0 - ] + "temp": [26.1, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [3, 0], + "wind": [3.4, 0] }, "71251": { - "temp": [ - 25.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 0.5, - 0 - ] + "temp": [25.7, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [3, 0], + "wind": [0.5, 0] }, "71266": { - "temp": [ - 30.9, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [30.9, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [4, 0], + "wind": [1.8, 0] }, "71291": { - "temp": [ - 29, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "temp": [29, 0], + "sun10m": [10, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [6, 0], + "wind": [2.8, 0] }, "72061": { - "temp": [ - 28.1, - 0 - ], - "humidity": [ - 53, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [28.1, 0], + "humidity": [53, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [11, 0], + "wind": [2.6, 0] }, "72086": { - "pressure": [ - 1010.7, - 0 - ], - "normalPressure": [ - 1011.9, - 0 - ], - "temp": [ - 29.1, - 0 - ], - "humidity": [ - 42, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 3, - 0 - ] + "pressure": [1010.7, 0], + "normalPressure": [1011.9, 0], + "temp": [29.1, 0], + "humidity": [42, 0], + "sun10m": [10, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [13, 0], + "wind": [3, 0] }, "72111": { - "pressure": [ - 1011.7, - 0 - ], - "normalPressure": [ - 1012.3, - 0 - ], - "temp": [ - 28.4, - 0 - ], - "humidity": [ - 47, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 2, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 2.3, - 0 - ] + "pressure": [1011.7, 0], + "normalPressure": [1012.3, 0], + "temp": [28.4, 0], + "humidity": [47, 0], + "visibility": [20000, 0], + "sun10m": [7, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [2, 0], + "windDirection": [12, 0], + "wind": [2.3, 0] }, "72121": { - "temp": [ - 27.3, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [27.3, 0], + "sun10m": [5, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [11, 0], + "wind": [1.5, 0] }, "72126": { - "temp": [ - 26.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 2, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 4.4, - 0 - ] + "temp": [26.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [2, 0], + "windDirection": [13, 0], + "wind": [4.4, 0] }, "72146": { - "temp": [ - 28.2, - 0 - ], - "humidity": [ - 51, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 3.2, - 0 - ] + "temp": [28.2, 0], + "humidity": [51, 0], + "sun10m": [5, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [3.2, 0] }, "72161": { - "temp": [ - 26.3, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 2, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [26.3, 0], + "sun10m": [5, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [2, 0], + "windDirection": [13, 0], + "wind": [1.8, 0] }, "72176": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1, 0] }, "73001": { - "temp": [ - 26.9, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 3, - 0 - ] + "temp": [26.9, 0], + "sun10m": [10, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [11, 0], + "wind": [3, 0] }, "73071": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "73076": { - "temp": [ - 27.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [27.7, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [6, 0], + "wind": [1.5, 0] }, "73126": { - "temp": [ - 27, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 2.2, - 0 - ] + "temp": [27, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [2.2, 0] }, "73141": { - "temp": [ - 26.8, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 0.7, - 0 - ] + "temp": [26.8, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [0.7, 0] }, "73151": { - "temp": [ - 26.5, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 2.5, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 2.4, - 0 - ] + "temp": [26.5, 0], + "sun10m": [2, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [2.5, 0], + "windDirection": [12, 0], + "wind": [2.4, 0] }, "73152": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1.5, 0] }, "73166": { - "pressure": [ - 1008, - 0 - ], - "normalPressure": [ - 1011.9, - 0 - ], - "temp": [ - 28.4, - 0 - ], - "humidity": [ - 52, - 0 - ], - "visibility": [ - 17590, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 4.3, - 0 - ] + "pressure": [1008, 0], + "normalPressure": [1011.9, 0], + "temp": [28.4, 0], + "humidity": [52, 0], + "visibility": [17590, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [4.3, 0] }, "73168": { - "temp": [ - 27.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 4.8, - 0 - ] + "temp": [27.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [4.8, 0] }, "73231": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "73247": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0] }, "73256": { - "temp": [ - 24.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 3.7, - 0 - ] + "temp": [24.7, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [3.7, 0] }, "73271": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "73276": { - "temp": [ - 26.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 2.4, - 0 - ] + "temp": [26.1, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [2.4, 0] }, "73306": { - "temp": [ - 28, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "temp": [28, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [2.8, 0] }, "73321": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "73341": { - "temp": [ - 25.3, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 5.2, - 0 - ] + "temp": [25.3, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [5.2, 0] }, "73351": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "73406": { - "temp": [ - 27.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 3.5, - 0 - ] + "temp": [27.5, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [3.5, 0] }, "73442": { - "pressure": [ - 1009.8, - 0 - ], - "normalPressure": [ - 1011.5, - 0 - ], - "temp": [ - 29.3, - 0 - ], - "humidity": [ - 52, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 5.7, - 0 - ] + "pressure": [1009.8, 0], + "normalPressure": [1011.5, 0], + "temp": [29.3, 0], + "humidity": [52, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [13, 0], + "wind": [5.7, 0] }, "73446": { - "temp": [ - 28.8, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [28.8, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [1.6, 0] }, "73516": { - "temp": [ - 29, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 6.8, - 0 - ] + "temp": [29, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [12, 0], + "wind": [6.8, 0] }, "74056": { - "temp": [ - 25.4, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 1.2, - 0 - ] + "temp": [25.4, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [12, 0], + "wind": [1.2, 0] }, "74071": { - "temp": [ - 27.4, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "temp": [27.4, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [1.7, 0] }, "74101": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "74126": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "74136": { - "temp": [ - 30.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 2.7, - 0 - ] + "temp": [30.7, 0], + "sun10m": [10, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [9, 0], + "wind": [2.7, 0] }, "74151": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "74166": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "74181": { - "pressure": [ - 1009.3, - 0 - ], - "normalPressure": [ - 1009.8, - 0 - ], - "temp": [ - 31.6, - 0 - ], - "humidity": [ - 44, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 2, - 0 - ] + "pressure": [1009.3, 0], + "normalPressure": [1009.8, 0], + "temp": [31.6, 0], + "humidity": [44, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [10, 0], + "wind": [2, 0] }, "74187": { - "temp": [ - 30.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 3.6, - 0 - ] + "temp": [30.7, 0], + "sun10m": [10, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [3.6, 0] }, "74188": { - "temp": [ - 31, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 3, - 0 - ] + "temp": [31, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [3, 0] }, "74237": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0] }, "74238": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "74271": { - "temp": [ - 29.5, - 0 - ], - "humidity": [ - 75, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "temp": [29.5, 0], + "humidity": [75, 0], + "sun10m": [0, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [7, 0], + "wind": [2.8, 0] }, "74276": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "74296": { - "temp": [ - 27.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 0.9, - 0 - ] + "temp": [27.1, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [6, 0], + "wind": [0.9, 0] }, "74311": { - "temp": [ - 29, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 3.1, - 0 - ] + "temp": [29, 0], + "sun10m": [10, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [7, 0], + "wind": [3.1, 0] }, "74336": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "74361": { - "temp": [ - 29.5, - 0 - ], - "humidity": [ - 62, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 2.3, - 0 - ] + "temp": [29.5, 0], + "humidity": [62, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [10, 0], + "wind": [2.3, 0] }, "74372": { - "pressure": [ - 989.4, - 0 - ], - "normalPressure": [ - 1010.4, - 0 - ], - "temp": [ - 26.3, - 0 - ], - "humidity": [ - 71, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 1.4, - 0 - ] + "pressure": [989.4, 0], + "normalPressure": [1010.4, 0], + "temp": [26.3, 0], + "humidity": [71, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [3, 0], + "wind": [1.4, 0] }, "74381": { - "temp": [ - 30.4, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [30.4, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [13, 0], + "wind": [1.6, 0] }, "74391": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0] }, "74436": { - "temp": [ - 28.6, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 2.3, - 0 - ] + "temp": [28.6, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [6, 0], + "wind": [2.3, 0] }, "74447": { - "pressure": [ - 1009.4, - 0 - ], - "normalPressure": [ - 1010.6, - 0 - ], - "temp": [ - 29.9, - 0 - ], - "humidity": [ - 55, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 3.9, - 0 - ] + "pressure": [1009.4, 0], + "normalPressure": [1010.6, 0], + "temp": [29.9, 0], + "humidity": [55, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [11, 0], + "wind": [3.9, 0] }, "74456": { - "temp": [ - 30.9, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 2.9, - 0 - ] + "temp": [30.9, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [2.9, 0] }, "74506": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "74516": { - "pressure": [ - 1007, - 0 - ], - "normalPressure": [ - 1010.8, - 0 - ], - "temp": [ - 29.2, - 0 - ], - "humidity": [ - 63, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 2.5, - 0 - ] + "pressure": [1007, 0], + "normalPressure": [1010.8, 0], + "temp": [29.2, 0], + "humidity": [63, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [11, 0], + "wind": [2.5, 0] }, "81011": { - "temp": [ - 22.9, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 4.9, - 0 - ] + "temp": [22.9, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [4.9, 0] }, "81071": { - "pressure": [ - 1013.8, - 0 - ], - "normalPressure": [ - 1014.2, - 0 - ], - "temp": [ - 24.1, - 0 - ], - "humidity": [ - 62, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 4.6, - 0 - ] + "pressure": [1013.8, 0], + "normalPressure": [1014.2, 0], + "temp": [24.1, 0], + "humidity": [62, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [4.6, 0] }, "81116": { - "temp": [ - 23.9, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 3.5, - 0 - ] + "temp": [23.9, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [3.5, 0] }, "81146": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "81151": { - "temp": [ - 24.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "temp": [24.5, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [2.1, 0] }, "81167": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "81196": { - "temp": [ - 23.2, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 4.8, - 0 - ] + "temp": [23.2, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [4.8, 0] }, "81228": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "81231": { - "temp": [ - 27.9, - 0 - ], - "humidity": [ - 38, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 3, - 0 - ] + "temp": [27.9, 0], + "humidity": [38, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [3, 0] }, "81266": { - "temp": [ - 25.2, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 3.5, - 0 - ] + "temp": [25.2, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [3.5, 0] }, "81271": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "81286": { - "pressure": [ - 1010.5, - 0 - ], - "normalPressure": [ - 1012.7, - 0 - ], - "temp": [ - 27.8, - 0 - ], - "humidity": [ - 45, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "pressure": [1010.5, 0], + "normalPressure": [1012.7, 0], + "temp": [27.8, 0], + "humidity": [45, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [2.8, 0] }, "81301": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "81321": { - "temp": [ - 25.9, - 0 - ], - "humidity": [ - 65, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 4, - 0 - ] + "temp": [25.9, 0], + "humidity": [65, 0], + "sun10m": [10, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [7, 0], + "wind": [4, 0] }, "81371": { - "temp": [ - 26.9, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 4, - 0 - ] + "temp": [26.9, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [10, 0], + "wind": [4, 0] }, "81386": { - "temp": [ - 26.1, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 3.2, - 0 - ] + "temp": [26.1, 0], + "sun10m": [7, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [10, 0], + "wind": [3.2, 0] }, "81397": { - "temp": [ - 27.2, - 0 - ], - "humidity": [ - 59, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [27.2, 0], + "humidity": [59, 0], + "sun10m": [2, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [8, 0], + "wind": [1.6, 0] }, "81428": { - "pressure": [ - 1011.5, - 0 - ], - "normalPressure": [ - 1013.7, - 0 - ], - "temp": [ - 25.5, - 0 - ], - "humidity": [ - 64, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 4.9, - 0 - ] + "pressure": [1011.5, 0], + "normalPressure": [1013.7, 0], + "temp": [25.5, 0], + "humidity": [64, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [13, 0], + "wind": [4.9, 0] }, "81436": { - "temp": [ - 25.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 6.5, - 0 - ] + "temp": [25.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [11, 0], + "wind": [6.5, 0] }, "81481": { - "temp": [ - 25.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 6, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [25.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [6, 0], + "wind": [1.9, 0] }, "81486": { - "temp": [ - 25.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "temp": [25.4, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [1.8, 0] }, "82036": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "82046": { - "temp": [ - 23.4, - 0 - ], - "humidity": [ - 70, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 3.1, - 0 - ] + "temp": [23.4, 0], + "humidity": [70, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [3.1, 0] }, "82056": { - "temp": [ - 23.8, - 0 - ], - "humidity": [ - 59, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 2.7, - 0 - ] + "temp": [23.8, 0], + "humidity": [59, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [2.7, 0] }, "82068": { - "temp": [ - 25.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 4.3, - 0 - ] + "temp": [25.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [14, 0], + "wind": [4.3, 0] }, "82097": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0] }, "82101": { - "temp": [ - 26.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1.5, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [26.3, 0], + "sun10m": [0, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1.5, 0], + "windDirection": [5, 0], + "wind": [1.5, 0] }, "82136": { - "pressure": [ - 1009.5, - 0 - ], - "normalPressure": [ - 1013.8, - 0 - ], - "temp": [ - 25.4, - 0 - ], - "humidity": [ - 54, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 2.9, - 0 - ] + "pressure": [1009.5, 0], + "normalPressure": [1013.8, 0], + "temp": [25.4, 0], + "humidity": [54, 0], + "visibility": [20000, 0], + "sun10m": [2, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1, 0], + "windDirection": [16, 0], + "wind": [2.9, 0] }, "82171": { - "temp": [ - 24.2, - 0 - ], - "humidity": [ - 63, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 2.7, - 0 - ] + "temp": [24.2, 0], + "humidity": [63, 0], + "sun10m": [5, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [2.7, 0] }, "82182": { - "pressure": [ - 1012.5, - 0 - ], - "normalPressure": [ - 1014.2, - 0 - ], - "temp": [ - 24.9, - 0 - ], - "humidity": [ - 57, - 0 - ], - "sun10m": [ - 8, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 5.7, - 0 - ] + "pressure": [1012.5, 0], + "normalPressure": [1014.2, 0], + "temp": [24.9, 0], + "humidity": [57, 0], + "sun10m": [8, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [5.7, 0] }, "82186": { - "temp": [ - 24.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 6.6, - 0 - ] + "temp": [24.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [14, 0], + "wind": [6.6, 0] }, "82191": { - "temp": [ - 24.9, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 4.2, - 0 - ] + "temp": [24.9, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1, 0], + "windDirection": [13, 0], + "wind": [4.2, 0] }, "82206": { - "temp": [ - 24.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1.5, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 0.9, - 0 - ] + "temp": [24.8, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1.5, 0], + "windDirection": [16, 0], + "wind": [0.9, 0] }, "82241": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0] }, "82261": { - "temp": [ - 24.9, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 4.7, - 0 - ] + "temp": [24.9, 0], + "sun10m": [2, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1, 0], + "windDirection": [15, 0], + "wind": [4.7, 0] }, "82272": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0] }, "82306": { - "temp": [ - 26.7, - 0 - ], - "humidity": [ - 51, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 2, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 3.4, - 0 - ] + "temp": [26.7, 0], + "humidity": [51, 0], + "sun10m": [0, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [2, 0], + "windDirection": [16, 0], + "wind": [3.4, 0] }, "82316": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1.5, 0] }, "82317": { - "temp": [ - 26, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [26, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [15, 0], + "wind": [1.6, 0] }, "82331": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0] }, "82361": { - "temp": [ - 27, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 4.1, - 0 - ] + "temp": [27, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [4.1, 0] }, "83021": { - "temp": [ - 24.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 1.2, - 0 - ] + "temp": [24.7, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [9, 0], + "wind": [1.2, 0] }, "83051": { - "temp": [ - 24.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [24.7, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [2, 0] }, "83061": { - "temp": [ - 24.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 2.9, - 0 - ] + "temp": [24.7, 0], + "sun10m": [10, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [13, 0], + "wind": [2.9, 0] }, "83096": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "83106": { - "temp": [ - 24.9, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 3.2, - 0 - ] + "temp": [24.9, 0], + "sun10m": [7, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [3.2, 0] }, "83121": { - "temp": [ - 25.7, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 3.5, - 0 - ] + "temp": [25.7, 0], + "sun10m": [2, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [3.5, 0] }, "83126": { - "temp": [ - 26, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 5, - 0 - ] + "temp": [26, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [13, 0], + "wind": [5, 0] }, "83137": { - "pressure": [ - 1003.1, - 0 - ], - "normalPressure": [ - 1012.6, - 0 - ], - "temp": [ - 28, - 0 - ], - "humidity": [ - 49, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 8, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 2.9, - 0 - ] + "pressure": [1003.1, 0], + "normalPressure": [1012.6, 0], + "temp": [28, 0], + "humidity": [49, 0], + "visibility": [20000, 0], + "sun10m": [8, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [13, 0], + "wind": [2.9, 0] }, "83191": { - "temp": [ - 25, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [25, 0], + "sun10m": [2, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [1.9, 0] }, "83201": { - "temp": [ - 24.3, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 3.3, - 0 - ] + "temp": [24.3, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [3.3, 0] }, "83216": { - "pressure": [ - 1011.4, - 0 - ], - "normalPressure": [ - 1012.9, - 0 - ], - "temp": [ - 27, - 0 - ], - "humidity": [ - 46, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 5.7, - 0 - ] + "pressure": [1011.4, 0], + "normalPressure": [1012.9, 0], + "temp": [27, 0], + "humidity": [46, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [5.7, 0] }, "83226": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "83242": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "83286": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "83341": { - "temp": [ - 27.3, - 0 - ], - "humidity": [ - 52, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 3.5, - 0 - ] + "temp": [27.3, 0], + "humidity": [52, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [3.5, 0] }, "83371": { - "temp": [ - 26.5, - 0 - ], - "humidity": [ - 60, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [26.5, 0], + "humidity": [60, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [2, 0] }, "83401": { - "temp": [ - 27.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 2.9, - 0 - ] + "temp": [27.1, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [2.9, 0] }, "83431": { - "temp": [ - 27.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 2.4, - 0 - ] + "temp": [27.5, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [2.4, 0] }, "83476": { - "temp": [ - 28.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 3.7, - 0 - ] + "temp": [28.5, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [3.7, 0] }, "84012": { - "temp": [ - 22.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "temp": [22.5, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [4, 0], + "wind": [1.7, 0] }, "84072": { - "pressure": [ - 1014.7, - 0 - ], - "normalPressure": [ - 1015.2, - 0 - ], - "temp": [ - 23.5, - 0 - ], - "humidity": [ - 50, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 3.6, - 0 - ] + "pressure": [1014.7, 0], + "normalPressure": [1015.2, 0], + "temp": [23.5, 0], + "humidity": [50, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [3.6, 0] }, "84076": { - "temp": [ - 22.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 3.4, - 0 - ] + "temp": [22.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [3.4, 0] }, "84121": { - "temp": [ - 22.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 3.6, - 0 - ] + "temp": [22.1, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [3.6, 0] }, "84122": { - "temp": [ - 22.4, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 4.9, - 0 - ] + "temp": [22.4, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [4.9, 0] }, "84171": { - "pressure": [ - 1007.4, - 0 - ], - "normalPressure": [ - 1014.2, - 0 - ], - "temp": [ - 22.3, - 0 - ], - "humidity": [ - 61, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 4, - 0 - ] + "pressure": [1007.4, 0], + "normalPressure": [1014.2, 0], + "temp": [22.3, 0], + "humidity": [61, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [4, 0] }, "84183": { - "temp": [ - 23.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 3.9, - 0 - ] + "temp": [23.1, 0], + "sun10m": [0, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [3.9, 0] }, "84266": { - "pressure": [ - 1012.7, - 0 - ], - "normalPressure": [ - 1013.3, - 0 - ], - "temp": [ - 26.3, - 0 - ], - "humidity": [ - 49, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 5.4, - 0 - ] + "pressure": [1012.7, 0], + "normalPressure": [1013.3, 0], + "temp": [26.3, 0], + "humidity": [49, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [16, 0], + "wind": [5.4, 0] }, "84306": { - "temp": [ - 24.8, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 2.5, - 0 - ] + "temp": [24.8, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [15, 0], + "wind": [2.5, 0] }, "84341": { - "temp": [ - 23.4, - 0 - ], - "humidity": [ - 63, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 4.7, - 0 - ] + "temp": [23.4, 0], + "humidity": [63, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [4.7, 0] }, "84361": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 2.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [2.5, 0] }, "84371": { - "temp": [ - 26.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 3, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 7, - 0 - ] + "temp": [26.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [3, 0], + "windDirection": [15, 0], + "wind": [7, 0] }, "84441": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 3.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [3.5, 0] }, "84496": { - "pressure": [ - 1008.7, - 0 - ], - "normalPressure": [ - 1012.8, - 0 - ], - "temp": [ - 26.4, - 0 - ], - "humidity": [ - 49, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 2.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 2.2, - 0 - ] + "pressure": [1008.7, 0], + "normalPressure": [1012.8, 0], + "temp": [26.4, 0], + "humidity": [49, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [2.5, 0], + "windDirection": [15, 0], + "wind": [2.2, 0] }, "84519": { - "pressure": [ - 936.6, - 0 - ], - "normalPressure": [ - 1011.8, - 0 - ], - "temp": [ - 22.9, - 0 - ], - "humidity": [ - 64, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 9, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 0.9, - 0 - ] + "pressure": [936.6, 0], + "normalPressure": [1011.8, 0], + "temp": [22.9, 0], + "humidity": [64, 0], + "visibility": [20000, 0], + "sun10m": [9, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [4, 0], + "wind": [0.9, 0] }, "84523": { - "temp": [ - 27.1, - 0 - ], - "humidity": [ - 46, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 3.7, - 0 - ] + "temp": [27.1, 0], + "humidity": [46, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [16, 0], + "wind": [3.7, 0] }, "84536": { - "pressure": [ - 1011, - 0 - ], - "normalPressure": [ - 1014.1, - 0 - ], - "temp": [ - 23.1, - 0 - ], - "humidity": [ - 65, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 4.1, - 0 - ] + "pressure": [1011, 0], + "normalPressure": [1014.1, 0], + "temp": [23.1, 0], + "humidity": [65, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [4.1, 0] }, "84537": { - "temp": [ - 23, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 6.8, - 0 - ] + "temp": [23, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [6.8, 0] }, "84561": { - "temp": [ - 28.2, - 0 - ], - "humidity": [ - 46, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "temp": [28.2, 0], + "humidity": [46, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1, 0], + "windDirection": [10, 0], + "wind": [2.8, 0] }, "84597": { - "temp": [ - 25.9, - 0 - ], - "humidity": [ - 62, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 3, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 3.4, - 0 - ] + "temp": [25.9, 0], + "humidity": [62, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [3, 0], + "windDirection": [16, 0], + "wind": [3.4, 0] }, "85033": { - "temp": [ - 23.4, - 0 - ], - "humidity": [ - 67, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 4.1, - 0 - ] + "temp": [23.4, 0], + "humidity": [67, 0], + "sun10m": [7, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [4.1, 0] }, "85046": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1, 0] }, "85106": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 4.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [4.5, 0] }, "85116": { - "temp": [ - 24, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 4.4, - 0 - ] + "temp": [24, 0], + "sun10m": [0, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [4.4, 0] }, "85142": { - "pressure": [ - 1009.3, - 0 - ], - "normalPressure": [ - 1013.1, - 0 - ], - "temp": [ - 26.4, - 0 - ], - "humidity": [ - 44, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 2, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 4.5, - 0 - ] + "pressure": [1009.3, 0], + "normalPressure": [1013.1, 0], + "temp": [26.4, 0], + "humidity": [44, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [2, 0], + "windDirection": [16, 0], + "wind": [4.5, 0] }, "85161": { - "temp": [ - 24.4, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 3.5, - 0 - ] + "temp": [24.4, 0], + "sun10m": [0, 0], + "sun1h": [0.1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1.5, 0], + "windDirection": [15, 0], + "wind": [3.5, 0] }, "85166": { - "temp": [ - 26.7, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1.5, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 1.2, - 0 - ] + "temp": [26.7, 0], + "sun10m": [0, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1.5, 0], + "windDirection": [13, 0], + "wind": [1.2, 0] }, "85176": { - "temp": [ - 26.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 2, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 4.2, - 0 - ] + "temp": [26.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [2, 0], + "windDirection": [16, 0], + "wind": [4.2, 0] }, "86006": { - "temp": [ - 26.1, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 3.9, - 0 - ] + "temp": [26.1, 0], + "sun10m": [5, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [3.9, 0] }, "86066": { - "temp": [ - 25.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 3.8, - 0 - ] + "temp": [25.7, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [3.8, 0] }, "86086": { - "temp": [ - 29.2, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 3.9, - 0 - ] + "temp": [29.2, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [3.9, 0] }, "86101": { - "temp": [ - 28.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 2.4, - 0 - ] + "temp": [28.1, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [13, 0], + "wind": [2.4, 0] }, "86111": { - "temp": [ - 25.9, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 2.3, - 0 - ] + "temp": [25.9, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [2.3, 0] }, "86141": { - "pressure": [ - 1007.5, - 0 - ], - "normalPressure": [ - 1011.9, - 0 - ], - "temp": [ - 29.2, - 0 - ], - "humidity": [ - 47, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 3.1, - 0 - ] + "pressure": [1007.5, 0], + "normalPressure": [1011.9, 0], + "temp": [29.2, 0], + "humidity": [47, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [3.1, 0] }, "86146": { - "temp": [ - 26.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1.4, - 0 - ] + "temp": [26.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [1.4, 0] }, "86157": { - "temp": [ - 27.6, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "temp": [27.6, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [1.7, 0] }, "86161": { - "temp": [ - 25.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "temp": [25.5, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [12, 0], + "wind": [2.8, 0] }, "86181": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "86197": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "86216": { - "temp": [ - 25.1, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 5.8, - 0 - ] + "temp": [25.1, 0], + "sun10m": [5, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [5.8, 0] }, "86236": { - "temp": [ - 27.7, - 0 - ], - "humidity": [ - 59, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [27.7, 0], + "humidity": [59, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [1.6, 0] }, "86271": { - "temp": [ - 26.9, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 4, - 0 - ] + "temp": [26.9, 0], + "sun10m": [10, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [4, 0] }, "86316": { - "temp": [ - 26.9, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 0.9, - 0 - ] + "temp": [26.9, 0], + "sun10m": [5, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [5, 0], + "wind": [0.9, 0] }, "86336": { - "temp": [ - 27.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 2.8, - 0 - ] + "temp": [27.5, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [2.8, 0] }, "86396": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "86407": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 4 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 4] }, "86411": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "86451": { - "temp": [ - 27.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 3, - 0 - ] + "temp": [27.1, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [3, 0] }, "86461": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "86467": { - "pressure": [ - 994.2, - 0 - ], - "normalPressure": [ - 1010.6, - 0 - ], - "temp": [ - 30.9, - 0 - ], - "humidity": [ - 50, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "pressure": [994.2, 0], + "normalPressure": [1010.6, 0], + "temp": [30.9, 0], + "humidity": [50, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [12, 0], + "wind": [1.5, 0] }, "86477": { - "temp": [ - 29.6, - 0 - ], - "humidity": [ - 51, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [29.6, 0], + "humidity": [51, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [11, 0], + "wind": [1.5, 0] }, "86478": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "86481": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "86491": { - "pressure": [ - 1010.4, - 0 - ], - "normalPressure": [ - 1012.1, - 0 - ], - "temp": [ - 28.5, - 0 - ], - "humidity": [ - 52, - 0 - ], - "visibility": [ - 18320, - 0 - ], - "sun10m": [ - 9, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 4.8, - 0 - ] + "pressure": [1010.4, 0], + "normalPressure": [1012.1, 0], + "temp": [28.5, 0], + "humidity": [52, 0], + "visibility": [18320, 0], + "sun10m": [9, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [4, 0], + "wind": [4.8, 0] }, "87041": { - "temp": [ - 28, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 2.5, - 0 - ] + "temp": [28, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [2.5, 0] }, "87066": { - "temp": [ - 28.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 4.1, - 0 - ] + "temp": [28.7, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [4.1, 0] }, "87071": { - "temp": [ - 26.8, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "temp": [26.8, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [3, 0], + "wind": [2.1, 0] }, "87086": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "87127": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "87136": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0] }, "87141": { - "pressure": [ - 1008.6, - 0 - ], - "normalPressure": [ - 1011, - 0 - ], - "temp": [ - 29.2, - 0 - ], - "humidity": [ - 46, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 4, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 3.6, - 0 - ] + "pressure": [1008.6, 0], + "normalPressure": [1011, 0], + "temp": [29.2, 0], + "humidity": [46, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [4, 0], + "windDirection": [3, 0], + "wind": [3.6, 0] }, "87157": {}, "87181": { - "temp": [ - 28.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 1.4, - 0 - ] + "temp": [28.7, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [5, 0], + "wind": [1.4, 0] }, "87206": { - "temp": [ - 30.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 6.5, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [30.7, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [6.5, 0], + "windDirection": [7, 0], + "wind": [2, 0] }, "87231": { - "temp": [ - 30, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [30, 0], + "sun10m": [10, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [7, 0], + "wind": [1.9, 0] }, "87251": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "87293": { - "temp": [ - 29.3, - 0 - ], - "humidity": [ - 62, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 2.5, - 0 - ] + "temp": [29.3, 0], + "humidity": [62, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [3, 0], + "wind": [2.5, 0] }, "87301": { - "temp": [ - 30.2, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 2.4, - 0 - ] + "temp": [30.2, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [9, 0], + "wind": [2.4, 0] }, "87331": { - "temp": [ - 29.3, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 3.7, - 0 - ] + "temp": [29.3, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [5, 0], + "wind": [3.7, 0] }, "87346": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "87352": { - "temp": [ - 30, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.4, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [30, 0], + "sun10m": [0, 0], + "sun1h": [0.4, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [10, 0], + "wind": [2, 0] }, "87361": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 1, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [1, 0] }, "87371": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "87376": { - "pressure": [ - 1009.6, - 0 - ], - "normalPressure": [ - 1011.3, - 0 - ], - "temp": [ - 28.4, - 0 - ], - "humidity": [ - 58, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 3.5, - 0 - ] + "pressure": [1009.6, 0], + "normalPressure": [1011.3, 0], + "temp": [28.4, 0], + "humidity": [58, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [5, 0], + "wind": [3.5, 0] }, "87406": { - "temp": [ - 27.3, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 3.6, - 0 - ] + "temp": [27.3, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0], + "windDirection": [3, 0], + "wind": [3.6, 0] }, "87412": { - "temp": [ - 28.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 4.8, - 0 - ] + "temp": [28.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [4.8, 0] }, "87426": { - "pressure": [ - 993, - 0 - ], - "normalPressure": [ - 1010.3, - 0 - ], - "temp": [ - 30.4, - 0 - ], - "humidity": [ - 58, - 0 - ], - "visibility": [ - 8040, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 10, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "pressure": [993, 0], + "normalPressure": [1010.3, 0], + "temp": [30.4, 0], + "humidity": [58, 0], + "visibility": [8040, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [10, 0], + "wind": [2.1, 0] }, "87461": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 3, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [3, 0] }, "87492": { - "pressure": [ - 1009.6, - 0 - ], - "normalPressure": [ - 1011.3, - 0 - ], - "temp": [ - 27.4, - 0 - ], - "humidity": [ - 64, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 9, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 5.4, - 0 - ] + "pressure": [1009.6, 0], + "normalPressure": [1011.3, 0], + "temp": [27.4, 0], + "humidity": [64, 0], + "visibility": [20000, 0], + "sun10m": [9, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [3, 0], + "wind": [5.4, 0] }, "87501": { - "temp": [ - 30.1, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 1.4, - 0 - ] + "temp": [30.1, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [3, 0], + "wind": [1.4, 0] }, "88061": { - "pressure": [ - 1007.2, - 0 - ], - "normalPressure": [ - 1012, - 0 - ], - "temp": [ - 27.6, - 0 - ], - "humidity": [ - 53, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 4.4, - 0 - ] + "pressure": [1007.2, 0], + "normalPressure": [1012, 0], + "temp": [27.6, 0], + "humidity": [53, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [3, 0], + "wind": [4.4, 0] }, "88066": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "88081": { - "temp": [ - 29.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 1, - 0 - ] + "temp": [29.7, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [1, 0] }, "88101": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "88107": { - "temp": [ - 29.9, - 0 - ], - "humidity": [ - 51, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 1.3, - 0 - ] + "temp": [29.9, 0], + "humidity": [51, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [1.3, 0] }, "88131": { - "temp": [ - 26.5, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 14, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [26.5, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [14, 0], + "wind": [2.6, 0] }, "88151": { - "temp": [ - 29.4, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 3.3, - 0 - ] + "temp": [29.4, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [11, 0], + "wind": [3.3, 0] }, "88166": { - "temp": [ - 28.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 3.1, - 0 - ] + "temp": [28.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [9, 0], + "wind": [3.1, 0] }, "88211": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "88261": { - "temp": [ - 28.9, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 11, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [28.9, 0], + "sun10m": [7, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [11, 0], + "wind": [1.5, 0] }, "88286": { - "temp": [ - 26.8, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 2.7, - 0 - ] + "temp": [26.8, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [12, 0], + "wind": [2.7, 0] }, "88317": { - "pressure": [ - 1007.5, - 0 - ], - "normalPressure": [ - 1011.1, - 0 - ], - "temp": [ - 30.2, - 0 - ], - "humidity": [ - 59, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 5, - 0 - ], - "wind": [ - 2.3, - 0 - ] + "pressure": [1007.5, 0], + "normalPressure": [1011.1, 0], + "temp": [30.2, 0], + "humidity": [59, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [5, 0], + "wind": [2.3, 0] }, "88331": { - "temp": [ - 27, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 1.9, - 0 - ] + "temp": [27, 0], + "sun10m": [0, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [9, 0], + "wind": [1.9, 0] }, "88341": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "88371": { - "temp": [ - 28.8, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 12, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "temp": [28.8, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [12, 0], + "wind": [2.1, 0] }, "88392": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "88406": { - "temp": [ - 28.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 7, - 0 - ], - "wind": [ - 2, - 0 - ] + "temp": [28.7, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [7, 0], + "wind": [2, 0] }, "88432": { - "temp": [ - 27.3, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [27.3, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [15, 0], + "wind": [1.5, 0] }, "88442": { - "temp": [ - 29.6, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 9, - 0 - ], - "wind": [ - 1.5, - 0 - ] + "temp": [29.6, 0], + "sun10m": [7, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [9, 0], + "wind": [1.5, 0] }, "88447": { - "temp": [ - 29.2, - 0 - ], - "humidity": [ - 75, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "temp": [29.2, 0], + "humidity": [75, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [3, 0], + "wind": [1.7, 0] }, "88466": { - "pressure": [ - 1008.1, - 0 - ], - "normalPressure": [ - 1011.7, - 0 - ], - "temp": [ - 28, - 0 - ], - "humidity": [ - 68, - 0 - ], - "visibility": [ - 17990, - 0 - ], - "sun10m": [ - 1, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 3, - 0 - ] + "pressure": [1008.1, 0], + "normalPressure": [1011.7, 0], + "temp": [28, 0], + "humidity": [68, 0], + "visibility": [17990, 0], + "sun10m": [1, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [8, 0], + "wind": [3, 0] }, "88486": { - "temp": [ - 30, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 8, - 0 - ], - "wind": [ - 1.6, - 0 - ] + "temp": [30, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [8, 0], + "wind": [1.6, 0] }, "88506": { - "temp": [ - 29.3, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 3.8, - 0 - ] + "temp": [29.3, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [3, 0], + "wind": [3.8, 0] }, "88536": { - "temp": [ - 27.5, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 13, - 0 - ], - "wind": [ - 2.1, - 0 - ] + "temp": [27.5, 0], + "sun10m": [7, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [13, 0], + "wind": [2.1, 0] }, "88551": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "88612": { - "pressure": [ - 1006.9, - 0 - ], - "normalPressure": [ - 1011.1, - 0 - ], - "temp": [ - 28.8, - 0 - ], - "humidity": [ - 64, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 3.4, - 0 - ] + "pressure": [1006.9, 0], + "normalPressure": [1011.1, 0], + "temp": [28.8, 0], + "humidity": [64, 0], + "visibility": [20000, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [4, 0], + "wind": [3.4, 0] }, "88621": { - "temp": [ - 26.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 3.3, - 0 - ] + "temp": [26.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [3, 0], + "wind": [3.3, 0] }, "88666": { - "temp": [ - 28.2, - 0 - ], - "humidity": [ - 75, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 2.6, - 0 - ] + "temp": [28.2, 0], + "humidity": [75, 0], + "sun10m": [10, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [4, 0], + "wind": [2.6, 0] }, "88686": { - "pressure": [ - 1006.9, - 0 - ], - "normalPressure": [ - 1011.2, - 0 - ], - "temp": [ - 27.3, - 0 - ], - "humidity": [ - 76, - 0 - ], - "visibility": [ - 15010, - 0 - ], - "sun10m": [ - 1, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 1.8, - 0 - ] + "pressure": [1006.9, 0], + "normalPressure": [1011.2, 0], + "temp": [27.3, 0], + "humidity": [76, 0], + "visibility": [15010, 0], + "sun10m": [1, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [1.8, 0] }, "88706": { - "temp": [ - 29, - 0 - ], - "humidity": [ - 75, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 3.6, - 0 - ] + "temp": [29, 0], + "humidity": [75, 0], + "sun10m": [10, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [4, 0], + "wind": [3.6, 0] }, "88736": { - "temp": [ - 28, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 1.7, - 0 - ] + "temp": [28, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [4, 0], + "wind": [1.7, 0] }, "88746": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "88756": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0.5, 0] }, "88776": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "88781": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 4, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [4, 0] }, "88821": { - "temp": [ - 30, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 6.1, - 0 - ] + "temp": [30, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [6.1, 0] }, "88836": { - "pressure": [ - 1010, - 0 - ], - "normalPressure": [ - 1010.9, - 0 - ], - "temp": [ - 29.1, - 0 - ], - "humidity": [ - 67, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 16, - 0 - ], - "wind": [ - 4.2, - 0 - ] + "pressure": [1010, 0], + "normalPressure": [1010.9, 0], + "temp": [29.1, 0], + "humidity": [67, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [16, 0], + "wind": [4.2, 0] }, "88851": { - "temp": [ - 29.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 4.5, - 0 - ] + "temp": [29.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [4.5, 0] }, "88901": { - "temp": [ - 29.7, - 0 - ], - "humidity": [ - 75, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 1.4, - 0 - ] + "temp": [29.7, 0], + "humidity": [75, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [1.4, 0] }, "88931": { - "temp": [ - 28.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 6, - 0 - ], - "precipitation24h": [ - 6.5, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 4, - 0 - ] + "temp": [28.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [6, 0], + "precipitation24h": [6.5, 0], + "windDirection": [2, 0], + "wind": [4, 0] }, "88956": { - "temp": [ - 29, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 4.9, - 0 - ] + "temp": [29, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [3, 0], + "wind": [4.9, 0] }, "88971": { - "pressure": [ - 1007.2, - 0 - ], - "normalPressure": [ - 1010.5, - 0 - ], - "temp": [ - 29.5, - 0 - ], - "humidity": [ - 74, - 0 - ], - "visibility": [ - 22900, - 0 - ], - "sun10m": [ - 9, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 5.8, - 0 - ] + "pressure": [1007.2, 0], + "normalPressure": [1010.5, 0], + "temp": [29.5, 0], + "humidity": [74, 0], + "visibility": [22900, 0], + "sun10m": [9, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [3, 0], + "wind": [5.8, 0] }, "88986": { - "temp": [ - 29.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 4, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 5.5, - 0 - ] + "temp": [29.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [4, 0], + "windDirection": [4, 0], + "wind": [5.5, 0] }, "91011": { - "temp": [ - 29.1, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 5.7, - 0 - ] + "temp": [29.1, 0], + "sun10m": [0, 0], + "sun1h": [0.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [5.7, 0] }, "91021": { - "temp": [ - 27.4, - 0 - ], - "humidity": [ - 85, - 0 - ], - "sun10m": [ - 5, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 5.1, - 0 - ] + "temp": [27.4, 0], + "humidity": [85, 0], + "sun10m": [5, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [3, 0], + "wind": [5.1, 0] }, "91046": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 0.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [0.5, 0] }, "91066": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 2, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 3, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [2, 0], + "precipitation3h": [2, 0], + "precipitation24h": [3, 0] }, "91081": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 5.5, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [5.5, 0] }, "91096": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 2, - 0 - ], - "precipitation24h": [ - 34, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [2, 0], + "precipitation24h": [34, 0] }, "91107": { - "pressure": [ - 1008.9, - 0 - ], - "normalPressure": [ - 1009.7, - 0 - ], - "temp": [ - 29.2, - 0 - ], - "humidity": [ - 83, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 14.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 4.7, - 0 - ] + "pressure": [1008.9, 0], + "normalPressure": [1009.7, 0], + "temp": [29.2, 0], + "humidity": [83, 0], + "visibility": [20000, 0], + "sun10m": [0, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [14.5, 0], + "windDirection": [1, 0], + "wind": [4.7, 0] }, "91121": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 13, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [13, 0] }, "91141": { - "temp": [ - 28.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 9.5, - 0 - ] + "temp": [28.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [9.5, 0] }, "91146": { - "pressure": [ - 1009.6, - 0 - ], - "normalPressure": [ - 1010.3, - 0 - ], - "temp": [ - 28.6, - 0 - ], - "humidity": [ - 81, - 0 - ], - "visibility": [ - 19440, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.3, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 6.3, - 0 - ] + "pressure": [1009.6, 0], + "normalPressure": [1010.3, 0], + "temp": [28.6, 0], + "humidity": [81, 0], + "visibility": [19440, 0], + "sun10m": [2, 0], + "sun1h": [0.3, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [6.3, 0] }, "91151": { - "precipitation10m": [ - 0.5, - 0 - ], - "precipitation1h": [ - 6, - 0 - ], - "precipitation3h": [ - 6, - 0 - ], - "precipitation24h": [ - 6, - 0 - ] + "precipitation10m": [0.5, 0], + "precipitation1h": [6, 0], + "precipitation3h": [6, 0], + "precipitation24h": [6, 0] }, "91161": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 13, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [13, 0] }, "91166": { - "temp": [ - 28.2, - 0 - ], - "humidity": [ - 81, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 7, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 6.3, - 0 - ] + "temp": [28.2, 0], + "humidity": [81, 0], + "sun10m": [0, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [7, 0], + "windDirection": [4, 0], + "wind": [6.3, 0] }, "91181": { - "temp": [ - 25.6, - 0 - ], - "sun10m": [ - 0, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 1, - 0 - ], - "precipitation3h": [ - 5.5, - 0 - ], - "precipitation24h": [ - 5.5, - 0 - ], - "windDirection": [ - 15, - 0 - ], - "wind": [ - 3.1, - 0 - ] + "temp": [25.6, 0], + "sun10m": [0, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [1, 0], + "precipitation3h": [5.5, 0], + "precipitation24h": [5.5, 0], + "windDirection": [15, 0], + "wind": [3.1, 0] }, "91197": { - "pressure": [ - 1004.1, - 0 - ], - "normalPressure": [ - 1009.7, - 0 - ], - "temp": [ - 30, - 0 - ], - "humidity": [ - 76, - 0 - ], - "sun10m": [ - 2, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 29, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 5.3, - 0 - ] + "pressure": [1004.1, 0], + "normalPressure": [1009.7, 0], + "temp": [30, 0], + "humidity": [76, 0], + "sun10m": [2, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [29, 0], + "windDirection": [4, 0], + "wind": [5.3, 0] }, "91236": { - "temp": [ - 30.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 5.5, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 4.8, - 0 - ] + "temp": [30.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [5.5, 0], + "windDirection": [3, 0], + "wind": [4.8, 0] }, "91241": { - "temp": [ - 28.6, - 0 - ], - "humidity": [ - 80, - 0 - ], - "sun10m": [ - 7, - 0 - ], - "sun1h": [ - 0.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 11.5, - 0 - ], - "windDirection": [ - 4, - 0 - ], - "wind": [ - 5.1, - 0 - ] + "temp": [28.6, 0], + "humidity": [80, 0], + "sun10m": [7, 0], + "sun1h": [0.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [11.5, 0], + "windDirection": [4, 0], + "wind": [5.1, 0] }, "92006": { - "temp": [ - 30.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 3, - 0 - ], - "wind": [ - 5.4, - 0 - ] + "temp": [30.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [3, 0], + "wind": [5.4, 0] }, "92011": { - "pressure": [ - 1007, - 0 - ], - "normalPressure": [ - 1009.3, - 0 - ], - "temp": [ - 30, - 0 - ], - "humidity": [ - 73, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 6, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 6.2, - 0 - ] + "pressure": [1007, 0], + "normalPressure": [1009.3, 0], + "temp": [30, 0], + "humidity": [73, 0], + "visibility": [20000, 0], + "sun10m": [6, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [6.2, 0] }, "92012": { - "temp": [ - 30.2, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 4.8, - 0 - ] + "temp": [30.2, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [4.8, 0] }, "93012": { - "temp": [ - 30.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 3, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 7.1, - 0 - ] + "temp": [30.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [3, 0], + "windDirection": [1, 0], + "wind": [7.1, 0] }, "93041": { - "pressure": [ - 1004.4, - 0 - ], - "normalPressure": [ - 1008.9, - 0 - ], - "temp": [ - 29.9, - 0 - ], - "humidity": [ - 75, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 8, - 0 - ], - "sun1h": [ - 0.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 5, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 6.5, - 0 - ] + "pressure": [1004.4, 0], + "normalPressure": [1008.9, 0], + "temp": [29.9, 0], + "humidity": [75, 0], + "visibility": [20000, 0], + "sun10m": [8, 0], + "sun1h": [0.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [5, 0], + "windDirection": [2, 0], + "wind": [6.5, 0] }, "93042": { - "temp": [ - 29.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 6.8, - 0 - ] + "temp": [29.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [6.8, 0] }, "93051": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "93062": { - "temp": [ - 29.8, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 5.6, - 0 - ] + "temp": [29.8, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [5.6, 0] }, "94001": { - "temp": [ - 30.2, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 5.6, - 0 - ] + "temp": [30.2, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [5.6, 0] }, "94011": { - "temp": [ - 27.5, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0.5, - 0 - ], - "precipitation24h": [ - 2.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 13.1, - 0 - ] + "temp": [27.5, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0.5, 0], + "precipitation24h": [2.5, 0], + "windDirection": [1, 0], + "wind": [13.1, 0] }, "94017": { - "pressure": [ - 1006, - 0 - ], - "normalPressure": [ - 1010.1, - 0 - ], - "temp": [ - 27.4, - 0 - ], - "humidity": [ - 89, - 0 - ], - "visibility": [ - 13820, - 0 - ], - "sun10m": [ - 1, - 0 - ], - "sun1h": [ - 0, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 1, - 0 - ], - "precipitation24h": [ - 3.5, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 10.5, - 0 - ] + "pressure": [1006, 0], + "normalPressure": [1010.1, 0], + "temp": [27.4, 0], + "humidity": [89, 0], + "visibility": [13820, 0], + "sun10m": [1, 0], + "sun1h": [0, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [1, 0], + "precipitation24h": [3.5, 0], + "windDirection": [1, 0], + "wind": [10.5, 0] }, "94036": { - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ] + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0] }, "94062": { - "pressure": [ - 1008.2, - 0 - ], - "normalPressure": [ - 1009.5, - 0 - ], - "temp": [ - 30.3, - 0 - ], - "humidity": [ - 81, - 0 - ], - "visibility": [ - 11680, - 0 - ], - "sun10m": [ - 6, - 0 - ], - "sun1h": [ - 0.4, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 5.5, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 4.4, - 0 - ] + "pressure": [1008.2, 0], + "normalPressure": [1009.5, 0], + "temp": [30.3, 0], + "humidity": [81, 0], + "visibility": [11680, 0], + "sun10m": [6, 0], + "sun1h": [0.4, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [5.5, 0], + "windDirection": [2, 0], + "wind": [4.4, 0] }, "94081": { - "pressure": [ - 1007.4, - 0 - ], - "normalPressure": [ - 1009.1, - 0 - ], - "temp": [ - 31.5, - 0 - ], - "humidity": [ - 67, - 0 - ], - "visibility": [ - 20000, - 0 - ], - "sun10m": [ - 8, - 0 - ], - "sun1h": [ - 0.9, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 8.2, - 0 - ] + "pressure": [1007.4, 0], + "normalPressure": [1009.1, 0], + "temp": [31.5, 0], + "humidity": [67, 0], + "visibility": [20000, 0], + "sun10m": [8, 0], + "sun1h": [0.9, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [8.2, 0] }, "94086": { - "temp": [ - 29.6, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 1, - 0 - ], - "wind": [ - 7.9, - 0 - ] + "temp": [29.6, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [1, 0], + "wind": [7.9, 0] }, "94101": { - "temp": [ - 29.7, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 0.7, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 9, - 0 - ], - "precipitation24h": [ - 9, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 5.6, - 0 - ] + "temp": [29.7, 0], + "sun10m": [10, 0], + "sun1h": [0.7, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [9, 0], + "precipitation24h": [9, 0], + "windDirection": [2, 0], + "wind": [5.6, 0] }, "94116": { - "temp": [ - 31.2, - 0 - ], - "sun10m": [ - 10, - 0 - ], - "sun1h": [ - 1, - 0 - ], - "precipitation10m": [ - 0, - 0 - ], - "precipitation1h": [ - 0, - 0 - ], - "precipitation3h": [ - 0, - 0 - ], - "precipitation24h": [ - 0, - 0 - ], - "windDirection": [ - 2, - 0 - ], - "wind": [ - 4.9, - 0 - ] + "temp": [31.2, 0], + "sun10m": [10, 0], + "sun1h": [1, 0], + "precipitation10m": [0, 0], + "precipitation1h": [0, 0], + "precipitation3h": [0, 0], + "precipitation24h": [0, 0], + "windDirection": [2, 0], + "wind": [4.9, 0] } } diff --git a/tests/plugins/test_amedastable.json b/tests/plugins/test_amedastable.json index a7a99fc374..3f045967fc 100644 --- a/tests/plugins/test_amedastable.json +++ b/tests/plugins/test_amedastable.json @@ -2,14 +2,8 @@ "11001": { "type": "C", "elems": "11112010", - "lat": [ - 45, - 31.2 - ], - "lon": [ - 141, - 56.1 - ], + "lat": [45, 31.2], + "lon": [141, 56.1], "alt": 26, "kjName": "宗谷岬", "knName": "ソウヤミサキ", @@ -18,14 +12,8 @@ "11016": { "type": "A", "elems": "11111111", - "lat": [ - 45, - 24.9 - ], - "lon": [ - 141, - 40.7 - ], + "lat": [45, 24.9], + "lon": [141, 40.7], "alt": 3, "kjName": "稚内", "knName": "ワッカナイ", @@ -34,14 +22,8 @@ "11046": { "type": "C", "elems": "11112010", - "lat": [ - 45, - 18.3 - ], - "lon": [ - 141, - 2.7 - ], + "lat": [45, 18.3], + "lon": [141, 2.7], "alt": 65, "kjName": "礼文", "knName": "レブン", @@ -50,14 +32,8 @@ "11061": { "type": "C", "elems": "11110100", - "lat": [ - 45, - 24.2 - ], - "lon": [ - 141, - 48.1 - ], + "lat": [45, 24.2], + "lon": [141, 48.1], "alt": 8, "kjName": "声問", "knName": "コエトイ:稚内空港", @@ -66,14 +42,8 @@ "11076": { "type": "C", "elems": "11112100", - "lat": [ - 45, - 20.1 - ], - "lon": [ - 142, - 10.2 - ], + "lat": [45, 20.1], + "lon": [142, 10.2], "alt": 13, "kjName": "浜鬼志別", "knName": "ハマオニシベツ", @@ -82,14 +52,8 @@ "11091": { "type": "C", "elems": "11110000", - "lat": [ - 45, - 14.5 - ], - "lon": [ - 141, - 11.2 - ], + "lat": [45, 14.5], + "lon": [141, 11.2], "alt": 30, "kjName": "本泊", "knName": "モトドマリ:利尻空港", @@ -98,14 +62,8 @@ "11121": { "type": "C", "elems": "11112100", - "lat": [ - 45, - 14.9 - ], - "lon": [ - 141, - 51.1 - ], + "lat": [45, 14.9], + "lon": [141, 51.1], "alt": 23, "kjName": "沼川", "knName": "ヌマカワ", @@ -114,14 +72,8 @@ "11151": { "type": "C", "elems": "11112010", - "lat": [ - 45, - 10.7 - ], - "lon": [ - 141, - 8.3 - ], + "lat": [45, 10.7], + "lon": [141, 8.3], "alt": 14, "kjName": "沓形", "knName": "クツガタ", @@ -130,14 +82,8 @@ "11176": { "type": "C", "elems": "11112100", - "lat": [ - 45, - 6.1 - ], - "lon": [ - 141, - 46.8 - ], + "lat": [45, 6.1], + "lon": [141, 46.8], "alt": 14, "kjName": "豊富", "knName": "トヨトミ", @@ -146,14 +92,8 @@ "11206": { "type": "C", "elems": "11112000", - "lat": [ - 45, - 7.5 - ], - "lon": [ - 142, - 21 - ], + "lat": [45, 7.5], + "lon": [142, 21], "alt": 18, "kjName": "浜頓別", "knName": "ハマトンベツ", @@ -162,14 +102,8 @@ "11276": { "type": "C", "elems": "11112100", - "lat": [ - 44, - 57.9 - ], - "lon": [ - 142, - 16.8 - ], + "lat": [44, 57.9], + "lon": [142, 16.8], "alt": 25, "kjName": "中頓別", "knName": "ナカトンベツ", @@ -178,14 +112,8 @@ "11291": { "type": "B", "elems": "11111111", - "lat": [ - 44, - 56.4 - ], - "lon": [ - 142, - 35.1 - ], + "lat": [44, 56.4], + "lon": [142, 35.1], "alt": 7, "kjName": "北見枝幸", "knName": "キタミエサシ", @@ -194,14 +122,8 @@ "11316": { "type": "C", "elems": "11112100", - "lat": [ - 44, - 50.5 - ], - "lon": [ - 142, - 28.8 - ], + "lat": [44, 50.5], + "lon": [142, 28.8], "alt": 14, "kjName": "歌登", "knName": "ウタノボリ", @@ -210,14 +132,8 @@ "12011": { "type": "C", "elems": "11112000", - "lat": [ - 44, - 49.7 - ], - "lon": [ - 142, - 4.6 - ], + "lat": [44, 49.7], + "lon": [142, 4.6], "alt": 22, "kjName": "中川", "knName": "ナカガワ", @@ -226,14 +142,8 @@ "12041": { "type": "C", "elems": "11112100", - "lat": [ - 44, - 43.6 - ], - "lon": [ - 142, - 15.9 - ], + "lat": [44, 43.6], + "lon": [142, 15.9], "alt": 40, "kjName": "音威子府", "knName": "オトイネップ", @@ -242,14 +152,8 @@ "12066": { "type": "C", "elems": "01000000", - "lat": [ - 44, - 36.5 - ], - "lon": [ - 142, - 17.7 - ], + "lat": [44, 36.5], + "lon": [142, 17.7], "alt": 60, "kjName": "小車", "knName": "オグルマ", @@ -258,14 +162,8 @@ "12141": { "type": "C", "elems": "11112100", - "lat": [ - 44, - 28.8 - ], - "lon": [ - 142, - 20.5 - ], + "lat": [44, 28.8], + "lon": [142, 20.5], "alt": 77, "kjName": "美深", "knName": "ビフカ", @@ -274,14 +172,8 @@ "12181": { "type": "C", "elems": "11112110", - "lat": [ - 44, - 22.2 - ], - "lon": [ - 142, - 27.4 - ], + "lat": [44, 22.2], + "lon": [142, 27.4], "alt": 89, "kjName": "名寄", "knName": "ナヨロ", @@ -290,14 +182,8 @@ "12217": { "type": "C", "elems": "01000000", - "lat": [ - 44, - 17.7 - ], - "lon": [ - 142, - 21.5 - ], + "lat": [44, 17.7], + "lon": [142, 21.5], "alt": 128, "kjName": "西風連", "knName": "ニシフウレン", @@ -306,14 +192,8 @@ "12231": { "type": "C", "elems": "11112100", - "lat": [ - 44, - 17.7 - ], - "lon": [ - 142, - 38.2 - ], + "lat": [44, 17.7], + "lon": [142, 38.2], "alt": 143, "kjName": "下川", "knName": "シモカワ", @@ -322,14 +202,8 @@ "12256": { "type": "C", "elems": "01000000", - "lat": [ - 44, - 6.4 - ], - "lon": [ - 142, - 21.2 - ], + "lat": [44, 6.4], + "lon": [142, 21.2], "alt": 138, "kjName": "剣淵", "knName": "ケンブチ", @@ -338,14 +212,8 @@ "12261": { "type": "C", "elems": "11112000", - "lat": [ - 44, - 11.2 - ], - "lon": [ - 142, - 25 - ], + "lat": [44, 11.2], + "lon": [142, 25], "alt": 135, "kjName": "士別", "knName": "シベツ", @@ -354,14 +222,8 @@ "12266": { "type": "C", "elems": "11112000", - "lat": [ - 44, - 7.1 - ], - "lon": [ - 142, - 35.7 - ], + "lat": [44, 7.1], + "lon": [142, 35.7], "alt": 225, "kjName": "朝日", "knName": "アサヒ", @@ -370,14 +232,8 @@ "12301": { "type": "C", "elems": "11112100", - "lat": [ - 44, - 1.7 - ], - "lon": [ - 142, - 24.6 - ], + "lat": [44, 1.7], + "lon": [142, 24.6], "alt": 150, "kjName": "和寒", "knName": "ワッサム", @@ -386,14 +242,8 @@ "12386": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 52.2 - ], - "lon": [ - 142, - 15.6 - ], + "lat": [43, 52.2], + "lon": [142, 15.6], "alt": 140, "kjName": "江丹別", "knName": "エタンベツ", @@ -402,14 +252,8 @@ "12396": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 52.2 - ], - "lon": [ - 142, - 28.2 - ], + "lat": [43, 52.2], + "lon": [142, 28.2], "alt": 164, "kjName": "比布", "knName": "ピップ", @@ -418,14 +262,8 @@ "12411": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 50.8 - ], - "lon": [ - 142, - 45.2 - ], + "lat": [43, 50.8], + "lon": [142, 45.2], "alt": 324, "kjName": "上川", "knName": "カミカワ", @@ -434,14 +272,8 @@ "12442": { "type": "A", "elems": "11111111", - "lat": [ - 43, - 45.4 - ], - "lon": [ - 142, - 22.3 - ], + "lat": [43, 45.4], + "lon": [142, 22.3], "alt": 120, "kjName": "旭川", "knName": "アサヒカワ", @@ -450,14 +282,8 @@ "12451": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 42.1 - ], - "lon": [ - 142, - 30.5 - ], + "lat": [43, 42.1], + "lon": [142, 30.5], "alt": 215, "kjName": "東川", "knName": "ヒガシカワ", @@ -466,14 +292,8 @@ "12457": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 44.2 - ], - "lon": [ - 142, - 38.3 - ], + "lat": [43, 44.2], + "lon": [142, 38.3], "alt": 289, "kjName": "瑞穂", "knName": "ミズホ", @@ -482,14 +302,8 @@ "12471": { "type": "C", "elems": "01000100", - "lat": [ - 43, - 45.2 - ], - "lon": [ - 142, - 55.8 - ], + "lat": [43, 45.2], + "lon": [142, 55.8], "alt": 540, "kjName": "層雲峡", "knName": "ソウウンキョウ", @@ -498,14 +312,8 @@ "12501": { "type": "C", "elems": "11110100", - "lat": [ - 43, - 40.2 - ], - "lon": [ - 142, - 26.8 - ], + "lat": [43, 40.2], + "lon": [142, 26.8], "alt": 211, "kjName": "東神楽", "knName": "ヒガシカグラ:旭川空港", @@ -514,14 +322,8 @@ "12512": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 38.6 - ], - "lon": [ - 142, - 34.9 - ], + "lat": [43, 38.6], + "lon": [142, 34.9], "alt": 310, "kjName": "志比内", "knName": "シビナイ", @@ -530,14 +332,8 @@ "12551": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 35.3 - ], - "lon": [ - 142, - 29.6 - ], + "lat": [43, 35.3], + "lon": [142, 29.6], "alt": 250, "kjName": "美瑛", "knName": "ビエイ", @@ -546,14 +342,8 @@ "12596": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 27.3 - ], - "lon": [ - 142, - 27.9 - ], + "lat": [43, 27.3], + "lon": [142, 27.9], "alt": 220, "kjName": "上富良野", "knName": "カミフラノ", @@ -562,14 +352,8 @@ "12607": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 28.5 - ], - "lon": [ - 142, - 39 - ], + "lat": [43, 28.5], + "lon": [142, 39], "alt": 658, "kjName": "白金", "knName": "シロガネ", @@ -578,14 +362,8 @@ "12626": { "type": "C", "elems": "11112110", - "lat": [ - 43, - 20 - ], - "lon": [ - 142, - 24 - ], + "lat": [43, 20], + "lon": [142, 24], "alt": 174, "kjName": "富良野", "knName": "フラノ", @@ -594,14 +372,8 @@ "12632": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 18.1 - ], - "lon": [ - 142, - 31.3 - ], + "lat": [43, 18.1], + "lon": [142, 31.3], "alt": 315, "kjName": "麓郷", "knName": "ロクゴウ", @@ -610,14 +382,8 @@ "12686": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 8.3 - ], - "lon": [ - 142, - 25 - ], + "lat": [43, 8.3], + "lon": [142, 25], "alt": 284, "kjName": "金山", "knName": "カナヤマ", @@ -626,14 +392,8 @@ "12691": { "type": "C", "elems": "11112110", - "lat": [ - 43, - 10.1 - ], - "lon": [ - 142, - 34.1 - ], + "lat": [43, 10.1], + "lon": [142, 34.1], "alt": 350, "kjName": "幾寅", "knName": "イクトラ", @@ -642,14 +402,8 @@ "12746": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 58.7 - ], - "lon": [ - 142, - 23.7 - ], + "lat": [42, 58.7], + "lon": [142, 23.7], "alt": 332, "kjName": "占冠", "knName": "シムカップ", @@ -658,14 +412,8 @@ "13011": { "type": "C", "elems": "01000000", - "lat": [ - 45, - 0.4 - ], - "lon": [ - 141, - 51.1 - ], + "lat": [45, 0.4], + "lon": [141, 51.1], "alt": 5, "kjName": "幌延", "knName": "ホロノベ", @@ -674,14 +422,8 @@ "13061": { "type": "C", "elems": "11112100", - "lat": [ - 44, - 53.6 - ], - "lon": [ - 141, - 45.7 - ], + "lat": [44, 53.6], + "lon": [141, 45.7], "alt": 9, "kjName": "天塩", "knName": "テシオ", @@ -690,14 +432,8 @@ "13086": { "type": "C", "elems": "11112000", - "lat": [ - 44, - 43.1 - ], - "lon": [ - 141, - 48.4 - ], + "lat": [44, 43.1], + "lon": [141, 48.4], "alt": 7, "kjName": "遠別", "knName": "エンベツ", @@ -706,14 +442,8 @@ "13121": { "type": "C", "elems": "11112100", - "lat": [ - 44, - 31.4 - ], - "lon": [ - 141, - 46.2 - ], + "lat": [44, 31.4], + "lon": [141, 46.2], "alt": 27, "kjName": "初山別", "knName": "ショサンベツ", @@ -722,14 +452,8 @@ "13146": { "type": "C", "elems": "11112000", - "lat": [ - 44, - 25.7 - ], - "lon": [ - 141, - 25.3 - ], + "lat": [44, 25.7], + "lon": [141, 25.3], "alt": 38, "kjName": "焼尻", "knName": "ヤギシリ", @@ -738,14 +462,8 @@ "13181": { "type": "B", "elems": "11111111", - "lat": [ - 44, - 21.8 - ], - "lon": [ - 141, - 42 - ], + "lat": [44, 21.8], + "lon": [141, 42], "alt": 8, "kjName": "羽幌", "knName": "ハボロ", @@ -754,14 +472,8 @@ "13206": { "type": "C", "elems": "01000100", - "lat": [ - 44, - 15.9 - ], - "lon": [ - 141, - 43.3 - ], + "lat": [44, 15.9], + "lon": [141, 43.3], "alt": 15, "kjName": "古丹別", "knName": "コタンベツ", @@ -770,14 +482,8 @@ "13261": { "type": "C", "elems": "11112000", - "lat": [ - 44, - 2.9 - ], - "lon": [ - 141, - 51.4 - ], + "lat": [44, 2.9], + "lon": [141, 51.4], "alt": 30, "kjName": "達布", "knName": "タップ", @@ -786,14 +492,8 @@ "13277": { "type": "B", "elems": "11111111", - "lat": [ - 43, - 56.7 - ], - "lon": [ - 141, - 37.9 - ], + "lat": [43, 56.7], + "lon": [141, 37.9], "alt": 24, "kjName": "留萌", "knName": "ルモイ", @@ -802,14 +502,8 @@ "13311": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 50.9 - ], - "lon": [ - 141, - 30.6 - ], + "lat": [43, 50.9], + "lon": [141, 30.6], "alt": 20, "kjName": "増毛", "knName": "マシケ", @@ -818,14 +512,8 @@ "13321": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 51.2 - ], - "lon": [ - 141, - 45.6 - ], + "lat": [43, 51.2], + "lon": [141, 45.6], "alt": 20, "kjName": "幌糠", "knName": "ホロヌカ", @@ -834,14 +522,8 @@ "14026": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 34.9 - ], - "lon": [ - 141, - 23.2 - ], + "lat": [43, 34.9], + "lon": [141, 23.2], "alt": 3, "kjName": "浜益", "knName": "ハママス", @@ -850,14 +532,8 @@ "14071": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 23.8 - ], - "lon": [ - 141, - 26.2 - ], + "lat": [43, 23.8], + "lon": [141, 26.2], "alt": 5, "kjName": "厚田", "knName": "アツタ", @@ -866,14 +542,8 @@ "14101": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 13.2 - ], - "lon": [ - 141, - 38.7 - ], + "lat": [43, 13.2], + "lon": [141, 38.7], "alt": 9, "kjName": "新篠津", "knName": "シンシノツ", @@ -882,14 +552,8 @@ "14116": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 8.9 - ], - "lon": [ - 141, - 13.3 - ], + "lat": [43, 8.9], + "lon": [141, 13.3], "alt": 5, "kjName": "山口", "knName": "ヤマグチ", @@ -898,14 +562,8 @@ "14121": { "type": "C", "elems": "11112110", - "lat": [ - 43, - 11.6 - ], - "lon": [ - 141, - 22.2 - ], + "lat": [43, 11.6], + "lon": [141, 22.2], "alt": 5, "kjName": "石狩", "knName": "イシカリ", @@ -914,14 +572,8 @@ "14136": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 6.6 - ], - "lon": [ - 141, - 36.1 - ], + "lat": [43, 6.6], + "lon": [141, 36.1], "alt": 8, "kjName": "江別", "knName": "エベツ", @@ -930,14 +582,8 @@ "14157": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 5 - ], - "lon": [ - 141, - 12.1 - ], + "lat": [43, 5], + "lon": [141, 12.1], "alt": 568, "kjName": "手稲山", "knName": "テイネヤマ", @@ -946,14 +592,8 @@ "14163": { "type": "A", "elems": "11111111", - "lat": [ - 43, - 3.6 - ], - "lon": [ - 141, - 19.7 - ], + "lat": [43, 3.6], + "lon": [141, 19.7], "alt": 17, "kjName": "札幌", "knName": "サッポロ", @@ -962,14 +602,8 @@ "14191": { "type": "C", "elems": "01000100", - "lat": [ - 42, - 57.8 - ], - "lon": [ - 141, - 13 - ], + "lat": [42, 57.8], + "lon": [141, 13], "alt": 230, "kjName": "小金湯", "knName": "コガネユ", @@ -978,14 +612,8 @@ "14206": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 55.6 - ], - "lon": [ - 141, - 33.9 - ], + "lat": [42, 55.6], + "lon": [141, 33.9], "alt": 30, "kjName": "恵庭島松", "knName": "エニワシママツ", @@ -994,14 +622,8 @@ "14286": { "type": "C", "elems": "11112000", - "lat": [ - 42, - 46.3 - ], - "lon": [ - 141, - 24.4 - ], + "lat": [42, 46.3], + "lon": [141, 24.4], "alt": 290, "kjName": "支笏湖畔", "knName": "シコツコハン", @@ -1010,14 +632,8 @@ "14296": { "type": "C", "elems": "11110100", - "lat": [ - 42, - 46.5 - ], - "lon": [ - 141, - 41.5 - ], + "lat": [42, 46.5], + "lon": [141, 41.5], "alt": 22, "kjName": "千歳", "knName": "チトセ:新千歳空港", @@ -1026,14 +642,8 @@ "15041": { "type": "C", "elems": "11112100", - "lat": [ - 44, - 16.9 - ], - "lon": [ - 142, - 9.7 - ], + "lat": [44, 16.9], + "lon": [142, 9.7], "alt": 255, "kjName": "朱鞠内", "knName": "シュマリナイ", @@ -1042,14 +652,8 @@ "15076": { "type": "C", "elems": "11112100", - "lat": [ - 44, - 0.6 - ], - "lon": [ - 142, - 9.6 - ], + "lat": [44, 0.6], + "lon": [142, 9.6], "alt": 159, "kjName": "幌加内", "knName": "ホロカナイ", @@ -1058,14 +662,8 @@ "15116": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 48.9 - ], - "lon": [ - 141, - 55.6 - ], + "lat": [43, 48.9], + "lon": [141, 55.6], "alt": 63, "kjName": "石狩沼田", "knName": "イシカリヌマタ", @@ -1074,14 +672,8 @@ "15161": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 43.1 - ], - "lon": [ - 142, - 4.4 - ], + "lat": [43, 43.1], + "lon": [142, 4.4], "alt": 55, "kjName": "深川", "knName": "フカガワ", @@ -1090,14 +682,8 @@ "15197": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 39.6 - ], - "lon": [ - 141, - 53.5 - ], + "lat": [43, 39.6], + "lon": [141, 53.5], "alt": 42, "kjName": "雨竜", "knName": "ウリュウ", @@ -1106,14 +692,8 @@ "15216": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 36.7 - ], - "lon": [ - 142, - 12.2 - ], + "lat": [43, 36.7], + "lon": [142, 12.2], "alt": 147, "kjName": "新城", "knName": "シンジョウ", @@ -1122,14 +702,8 @@ "15231": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 35.7 - ], - "lon": [ - 141, - 43.9 - ], + "lat": [43, 35.7], + "lon": [141, 43.9], "alt": 100, "kjName": "空知吉野", "knName": "ソラチヨシノ", @@ -1138,14 +712,8 @@ "15241": { "type": "C", "elems": "11112110", - "lat": [ - 43, - 34.2 - ], - "lon": [ - 141, - 56.3 - ], + "lat": [43, 34.2], + "lon": [141, 56.3], "alt": 50, "kjName": "滝川", "knName": "タキカワ", @@ -1154,14 +722,8 @@ "15247": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 33.2 - ], - "lon": [ - 142, - 4 - ], + "lat": [43, 33.2], + "lon": [142, 4], "alt": 120, "kjName": "赤平", "knName": "アカビラ", @@ -1170,14 +732,8 @@ "15251": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 31.2 - ], - "lon": [ - 142, - 11.4 - ], + "lat": [43, 31.2], + "lon": [142, 11.4], "alt": 91, "kjName": "芦別", "knName": "アシベツ", @@ -1186,14 +742,8 @@ "15276": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 25.7 - ], - "lon": [ - 141, - 48.5 - ], + "lat": [43, 25.7], + "lon": [141, 48.5], "alt": 25, "kjName": "浦臼", "knName": "ウラウス", @@ -1202,14 +752,8 @@ "15311": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 19.8 - ], - "lon": [ - 141, - 37 - ], + "lat": [43, 19.8], + "lon": [141, 37], "alt": 50, "kjName": "月形", "knName": "ツキガタ", @@ -1218,14 +762,8 @@ "15321": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 21.8 - ], - "lon": [ - 141, - 49.6 - ], + "lat": [43, 21.8], + "lon": [141, 49.6], "alt": 16, "kjName": "美唄", "knName": "ビバイ", @@ -1234,14 +772,8 @@ "15356": { "type": "B", "elems": "11111111", - "lat": [ - 43, - 12.7 - ], - "lon": [ - 141, - 47.1 - ], + "lat": [43, 12.7], + "lon": [141, 47.1], "alt": 42, "kjName": "岩見沢", "knName": "イワミザワ", @@ -1250,14 +782,8 @@ "15391": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 7.3 - ], - "lon": [ - 141, - 44.7 - ], + "lat": [43, 7.3], + "lon": [141, 44.7], "alt": 20, "kjName": "栗沢", "knName": "クリサワ", @@ -1266,14 +792,8 @@ "15431": { "type": "C", "elems": "11112010", - "lat": [ - 43, - 0.7 - ], - "lon": [ - 141, - 41.6 - ], + "lat": [43, 0.7], + "lon": [141, 41.6], "alt": 13, "kjName": "長沼", "knName": "ナガヌマ", @@ -1282,14 +802,8 @@ "15442": { "type": "C", "elems": "11112110", - "lat": [ - 43, - 2.3 - ], - "lon": [ - 141, - 57.4 - ], + "lat": [43, 2.3], + "lon": [141, 57.4], "alt": 293, "kjName": "夕張", "knName": "ユウバリ", @@ -1298,14 +812,8 @@ "15451": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 4.8 - ], - "lon": [ - 142, - 6 - ], + "lat": [43, 4.8], + "lon": [142, 6], "alt": 310, "kjName": "鹿島", "knName": "カシマ", @@ -1314,14 +822,8 @@ "15491": { "type": "C", "elems": "01000000", - "lat": [ - 42, - 57.6 - ], - "lon": [ - 142, - 1.2 - ], + "lat": [42, 57.6], + "lon": [142, 1.2], "alt": 161, "kjName": "沼の沢", "knName": "ヌマノサワ", @@ -1330,14 +832,8 @@ "16026": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 16.3 - ], - "lon": [ - 140, - 33.8 - ], + "lat": [43, 16.3], + "lon": [140, 33.8], "alt": 75, "kjName": "美国", "knName": "ビクニ", @@ -1346,14 +842,8 @@ "16061": { "type": "C", "elems": "11112010", - "lat": [ - 43, - 8.7 - ], - "lon": [ - 140, - 25.4 - ], + "lat": [43, 8.7], + "lon": [140, 25.4], "alt": 50, "kjName": "神恵内", "knName": "カモエナイ", @@ -1362,14 +852,8 @@ "16076": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 10.9 - ], - "lon": [ - 140, - 45.5 - ], + "lat": [43, 10.9], + "lon": [140, 45.5], "alt": 20, "kjName": "余市", "knName": "ヨイチ", @@ -1378,14 +862,8 @@ "16091": { "type": "B", "elems": "11111111", - "lat": [ - 43, - 10.9 - ], - "lon": [ - 141, - 0.9 - ], + "lat": [43, 10.9], + "lon": [141, 0.9], "alt": 25, "kjName": "小樽", "knName": "オタル", @@ -1394,14 +872,8 @@ "16126": { "type": "C", "elems": "01000100", - "lat": [ - 43, - 5 - ], - "lon": [ - 140, - 49.2 - ], + "lat": [43, 5], + "lon": [140, 49.2], "alt": 148, "kjName": "赤井川", "knName": "アカイガワ", @@ -1410,14 +882,8 @@ "16156": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 58.8 - ], - "lon": [ - 140, - 36.2 - ], + "lat": [42, 58.8], + "lon": [140, 36.2], "alt": 15, "kjName": "共和", "knName": "キョウワ", @@ -1426,14 +892,8 @@ "16206": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 48.6 - ], - "lon": [ - 140, - 32.5 - ], + "lat": [42, 48.6], + "lon": [140, 32.5], "alt": 39, "kjName": "蘭越", "knName": "ランコシ", @@ -1442,14 +902,8 @@ "16217": { "type": "B", "elems": "11111111", - "lat": [ - 42, - 54 - ], - "lon": [ - 140, - 45.4 - ], + "lat": [42, 54], + "lon": [140, 45.4], "alt": 176, "kjName": "倶知安", "knName": "クッチャン", @@ -1458,14 +912,8 @@ "16252": { "type": "B", "elems": "11111111", - "lat": [ - 42, - 47.7 - ], - "lon": [ - 140, - 13.4 - ], + "lat": [42, 47.7], + "lon": [140, 13.4], "alt": 33, "kjName": "寿都", "knName": "スッツ", @@ -1474,14 +922,8 @@ "16272": { "type": "C", "elems": "01000000", - "lat": [ - 42, - 46.7 - ], - "lon": [ - 140, - 40 - ], + "lat": [42, 46.7], + "lon": [140, 40], "alt": 113, "kjName": "ニセコ", "knName": "ニセコ", @@ -1490,14 +932,8 @@ "16281": { "type": "C", "elems": "11112000", - "lat": [ - 42, - 46.5 - ], - "lon": [ - 140, - 52.8 - ], + "lat": [42, 46.5], + "lon": [140, 52.8], "alt": 440, "kjName": "真狩", "knName": "マッカリ", @@ -1506,14 +942,8 @@ "16286": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 47.6 - ], - "lon": [ - 140, - 56.9 - ], + "lat": [42, 47.6], + "lon": [140, 56.9], "alt": 264, "kjName": "喜茂別", "knName": "キモベツ", @@ -1522,14 +952,8 @@ "16321": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 39.8 - ], - "lon": [ - 140, - 18.6 - ], + "lat": [42, 39.8], + "lon": [140, 18.6], "alt": 27, "kjName": "黒松内", "knName": "クロマツナイ", @@ -1538,14 +962,8 @@ "17036": { "type": "B", "elems": "11111111", - "lat": [ - 44, - 34.8 - ], - "lon": [ - 142, - 57.8 - ], + "lat": [44, 34.8], + "lon": [142, 57.8], "alt": 14, "kjName": "雄武", "knName": "オウム", @@ -1554,14 +972,8 @@ "17076": { "type": "C", "elems": "11112010", - "lat": [ - 44, - 28.2 - ], - "lon": [ - 143, - 6.5 - ], + "lat": [44, 28.2], + "lon": [143, 6.5], "alt": 8, "kjName": "興部", "knName": "オコッペ", @@ -1570,14 +982,8 @@ "17091": { "type": "C", "elems": "11112100", - "lat": [ - 44, - 19.9 - ], - "lon": [ - 142, - 56.1 - ], + "lat": [44, 19.9], + "lon": [142, 56.1], "alt": 120, "kjName": "西興部", "knName": "ニシオコッペ", @@ -1586,14 +992,8 @@ "17112": { "type": "B", "elems": "11111111", - "lat": [ - 44, - 20.7 - ], - "lon": [ - 143, - 21.3 - ], + "lat": [44, 20.7], + "lon": [143, 21.3], "alt": 16, "kjName": "紋別", "knName": "モンベツ", @@ -1602,14 +1002,8 @@ "17116": { "type": "C", "elems": "11110100", - "lat": [ - 44, - 18.2 - ], - "lon": [ - 143, - 24.2 - ], + "lat": [44, 18.2], + "lon": [143, 24.2], "alt": 18, "kjName": "紋別小向", "knName": "モンベツコムカイ:紋別空港", @@ -1618,14 +1012,8 @@ "17166": { "type": "C", "elems": "11112000", - "lat": [ - 44, - 12.8 - ], - "lon": [ - 143, - 37.1 - ], + "lat": [44, 12.8], + "lon": [143, 37.1], "alt": 5, "kjName": "湧別", "knName": "ユウベツ", @@ -1634,14 +1022,8 @@ "17196": { "type": "C", "elems": "11112100", - "lat": [ - 44, - 10.6 - ], - "lon": [ - 143, - 3.7 - ], + "lat": [44, 10.6], + "lon": [143, 3.7], "alt": 165, "kjName": "滝上", "knName": "タキノウエ", @@ -1650,14 +1032,8 @@ "17211": { "type": "C", "elems": "01000000", - "lat": [ - 44, - 11.2 - ], - "lon": [ - 143, - 20.1 - ], + "lat": [44, 11.2], + "lon": [143, 20.1], "alt": 94, "kjName": "上藻別", "knName": "カミモベツ", @@ -1666,14 +1042,8 @@ "17246": { "type": "C", "elems": "11112000", - "lat": [ - 44, - 6.9 - ], - "lon": [ - 144, - 2.2 - ], + "lat": [44, 6.9], + "lon": [144, 2.2], "alt": 3, "kjName": "常呂", "knName": "トコロ", @@ -1682,14 +1052,8 @@ "17306": { "type": "C", "elems": "11112100", - "lat": [ - 44, - 3.2 - ], - "lon": [ - 143, - 32.4 - ], + "lat": [44, 3.2], + "lon": [143, 32.4], "alt": 80, "kjName": "遠軽", "knName": "エンガル", @@ -1698,14 +1062,8 @@ "17316": { "type": "C", "elems": "11112100", - "lat": [ - 44, - 1.1 - ], - "lon": [ - 143, - 45.6 - ], + "lat": [44, 1.1], + "lon": [143, 45.6], "alt": 54, "kjName": "佐呂間", "knName": "サロマ", @@ -1714,14 +1072,8 @@ "17341": { "type": "A", "elems": "11111111", - "lat": [ - 44, - 1 - ], - "lon": [ - 144, - 16.7 - ], + "lat": [44, 1], + "lon": [144, 16.7], "alt": 38, "kjName": "網走", "knName": "アバシリ", @@ -1730,14 +1082,8 @@ "17351": { "type": "C", "elems": "11112100", - "lat": [ - 44, - 3.1 - ], - "lon": [ - 144, - 58.9 - ], + "lat": [44, 3.1], + "lon": [144, 58.9], "alt": 144, "kjName": "宇登呂", "knName": "ウトロ", @@ -1746,14 +1092,8 @@ "17386": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 57.1 - ], - "lon": [ - 143, - 19.7 - ], + "lat": [43, 57.1], + "lon": [143, 19.7], "alt": 242, "kjName": "丸瀬布", "knName": "マルセップ", @@ -1762,14 +1102,8 @@ "17482": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 51.9 - ], - "lon": [ - 143, - 9.2 - ], + "lat": [43, 51.9], + "lon": [143, 9.2], "alt": 475, "kjName": "白滝", "knName": "シラタキ", @@ -1778,14 +1112,8 @@ "17501": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 55 - ], - "lon": [ - 143, - 31.9 - ], + "lat": [43, 55], + "lon": [143, 31.9], "alt": 199, "kjName": "生田原", "knName": "イクタハラ", @@ -1794,14 +1122,8 @@ "17512": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 51.6 - ], - "lon": [ - 143, - 44.8 - ], + "lat": [43, 51.6], + "lon": [143, 44.8], "alt": 261, "kjName": "仁頃山", "knName": "ニコロヤマ", @@ -1810,14 +1132,8 @@ "17521": { "type": "C", "elems": "11112110", - "lat": [ - 43, - 46.6 - ], - "lon": [ - 143, - 50.5 - ], + "lat": [43, 46.6], + "lon": [143, 50.5], "alt": 104, "kjName": "北見", "knName": "キタミ", @@ -1826,14 +1142,8 @@ "17531": { "type": "C", "elems": "11110100", - "lat": [ - 43, - 52.8 - ], - "lon": [ - 144, - 9.8 - ], + "lat": [43, 52.8], + "lon": [144, 9.8], "alt": 33, "kjName": "女満別", "knName": "メマンベツ:女満別空港", @@ -1842,14 +1152,8 @@ "17541": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 50.4 - ], - "lon": [ - 144, - 17.1 - ], + "lat": [43, 50.4], + "lon": [144, 17.1], "alt": 58, "kjName": "東藻琴", "knName": "ヒガシモコト", @@ -1858,14 +1162,8 @@ "17546": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 50.5 - ], - "lon": [ - 144, - 29.1 - ], + "lat": [43, 50.5], + "lon": [144, 29.1], "alt": 52, "kjName": "小清水", "knName": "コシミズ", @@ -1874,14 +1172,8 @@ "17561": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 53.1 - ], - "lon": [ - 144, - 42 - ], + "lat": [43, 53.1], + "lon": [144, 42], "alt": 15, "kjName": "斜里", "knName": "シャリ", @@ -1890,14 +1182,8 @@ "17596": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 44.5 - ], - "lon": [ - 143, - 27 - ], + "lat": [43, 44.5], + "lon": [143, 27], "alt": 325, "kjName": "留辺蘂", "knName": "ルベシベ", @@ -1906,14 +1192,8 @@ "17607": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 42.4 - ], - "lon": [ - 143, - 38.6 - ], + "lat": [43, 42.4], + "lon": [143, 38.6], "alt": 184, "kjName": "境野", "knName": "サカイノ", @@ -1922,14 +1202,8 @@ "17631": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 46.2 - ], - "lon": [ - 144, - 10.3 - ], + "lat": [43, 46.2], + "lon": [144, 10.3], "alt": 60, "kjName": "美幌", "knName": "ビホロ", @@ -1938,14 +1212,8 @@ "17642": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 44.6 - ], - "lon": [ - 144, - 20.2 - ], + "lat": [43, 44.6], + "lon": [144, 20.2], "alt": 361, "kjName": "山園", "knName": "ヤマゾノ", @@ -1954,14 +1222,8 @@ "17686": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 37.2 - ], - "lon": [ - 143, - 26.4 - ], + "lat": [43, 37.2], + "lon": [143, 26.4], "alt": 368, "kjName": "置戸常元", "knName": "オケトツネモト", @@ -1970,14 +1232,8 @@ "17717": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 42.1 - ], - "lon": [ - 144, - 2 - ], + "lat": [43, 42.1], + "lon": [144, 2], "alt": 100, "kjName": "津別", "knName": "ツベツ", @@ -1986,14 +1242,8 @@ "17776": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 35 - ], - "lon": [ - 143, - 51.9 - ], + "lat": [43, 35], + "lon": [143, 51.9], "alt": 210, "kjName": "津別二又", "knName": "ツベツフタマタ", @@ -2002,14 +1252,8 @@ "18038": { "type": "C", "elems": "11112110", - "lat": [ - 44, - 1.4 - ], - "lon": [ - 145, - 11.2 - ], + "lat": [44, 1.4], + "lon": [145, 11.2], "alt": 15, "kjName": "羅臼", "knName": "ラウス", @@ -2018,14 +1262,8 @@ "18091": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 43.3 - ], - "lon": [ - 144, - 59.3 - ], + "lat": [43, 43.3], + "lon": [144, 59.3], "alt": 115, "kjName": "糸櫛別", "knName": "イトクシベツ", @@ -2034,14 +1272,8 @@ "18136": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 39.7 - ], - "lon": [ - 145, - 7.9 - ], + "lat": [43, 39.7], + "lon": [145, 7.9], "alt": 3, "kjName": "標津", "knName": "シベツ", @@ -2050,14 +1282,8 @@ "18161": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 31.2 - ], - "lon": [ - 144, - 44.8 - ], + "lat": [43, 31.2], + "lon": [144, 44.8], "alt": 160, "kjName": "上標津", "knName": "カミシベツ", @@ -2066,14 +1292,8 @@ "18171": { "type": "C", "elems": "11112110", - "lat": [ - 43, - 32.6 - ], - "lon": [ - 144, - 58.7 - ], + "lat": [43, 32.6], + "lon": [144, 58.7], "alt": 50, "kjName": "中標津", "knName": "ナカシベツ", @@ -2082,14 +1302,8 @@ "18174": { "type": "C", "elems": "11110100", - "lat": [ - 43, - 34.6 - ], - "lon": [ - 144, - 57.6 - ], + "lat": [43, 34.6], + "lon": [144, 57.6], "alt": 65, "kjName": "根室中標津", "knName": "ネムロナカシベツ:中標津空港", @@ -2098,14 +1312,8 @@ "18256": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 22.9 - ], - "lon": [ - 145, - 7.1 - ], + "lat": [43, 22.9], + "lon": [145, 7.1], "alt": 23, "kjName": "別海", "knName": "ベツカイ", @@ -2114,14 +1322,8 @@ "18273": { "type": "B", "elems": "11111111", - "lat": [ - 43, - 19.8 - ], - "lon": [ - 145, - 35.1 - ], + "lat": [43, 19.8], + "lon": [145, 35.1], "alt": 25, "kjName": "根室", "knName": "ネムロ", @@ -2130,14 +1332,8 @@ "18281": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 23.6 - ], - "lon": [ - 145, - 45.5 - ], + "lat": [43, 23.6], + "lon": [145, 45.5], "alt": 12, "kjName": "納沙布", "knName": "ノサップ", @@ -2146,14 +1342,8 @@ "18311": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 13.3 - ], - "lon": [ - 145, - 13.6 - ], + "lat": [43, 13.3], + "lon": [145, 13.6], "alt": 41, "kjName": "厚床", "knName": "アットコ", @@ -2162,14 +1352,8 @@ "19021": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 37 - ], - "lon": [ - 144, - 27.4 - ], + "lat": [43, 37], + "lon": [144, 27.4], "alt": 158, "kjName": "川湯", "knName": "カワユ", @@ -2178,14 +1362,8 @@ "19051": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 30.6 - ], - "lon": [ - 144, - 28 - ], + "lat": [43, 30.6], + "lon": [144, 28], "alt": 170, "kjName": "弟子屈", "knName": "テシカガ", @@ -2194,14 +1372,8 @@ "19076": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 26.2 - ], - "lon": [ - 144, - 5 - ], + "lat": [43, 26.2], + "lon": [144, 5], "alt": 426, "kjName": "阿寒湖畔", "knName": "アカンコハン", @@ -2210,14 +1382,8 @@ "19151": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 17.5 - ], - "lon": [ - 144, - 35.2 - ], + "lat": [43, 17.5], + "lon": [144, 35.2], "alt": 20, "kjName": "標茶", "knName": "シベチャ", @@ -2226,14 +1392,8 @@ "19191": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 13.9 - ], - "lon": [ - 144, - 19.5 - ], + "lat": [43, 13.9], + "lon": [144, 19.5], "alt": 38, "kjName": "鶴居", "knName": "ツルイ", @@ -2242,14 +1402,8 @@ "19261": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 11.9 - ], - "lon": [ - 144, - 8.5 - ], + "lat": [43, 11.9], + "lon": [144, 8.5], "alt": 80, "kjName": "中徹別", "knName": "ナカテシベツ", @@ -2258,14 +1412,8 @@ "19281": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 8.9 - ], - "lon": [ - 144, - 29.8 - ], + "lat": [43, 8.9], + "lon": [144, 29.8], "alt": 25, "kjName": "塘路", "knName": "トウロ", @@ -2274,14 +1422,8 @@ "19301": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 10.4 - ], - "lon": [ - 144, - 58 - ], + "lat": [43, 10.4], + "lon": [144, 58], "alt": 70, "kjName": "茶内原野", "knName": "チャナイゲンヤ", @@ -2290,14 +1432,8 @@ "19311": { "type": "C", "elems": "11112010", - "lat": [ - 43, - 7.2 - ], - "lon": [ - 145, - 6.6 - ], + "lat": [43, 7.2], + "lon": [145, 6.6], "alt": 2, "kjName": "榊町", "knName": "サカキマチ", @@ -2306,14 +1442,8 @@ "19346": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 6.8 - ], - "lon": [ - 144, - 7.4 - ], + "lat": [43, 6.8], + "lon": [144, 7.4], "alt": 40, "kjName": "阿寒", "knName": "アカン", @@ -2322,14 +1452,8 @@ "19347": { "type": "C", "elems": "11110100", - "lat": [ - 43, - 2.4 - ], - "lon": [ - 144, - 11.5 - ], + "lat": [43, 2.4], + "lon": [144, 11.5], "alt": 95, "kjName": "鶴丘", "knName": "ツルオカ:釧路空港", @@ -2338,14 +1462,8 @@ "19376": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 5.4 - ], - "lon": [ - 144, - 46.7 - ], + "lat": [43, 5.4], + "lon": [144, 46.7], "alt": 85, "kjName": "太田", "knName": "オオタ", @@ -2354,14 +1472,8 @@ "19406": { "type": "C", "elems": "01000000", - "lat": [ - 42, - 58.3 - ], - "lon": [ - 143, - 52.5 - ], + "lat": [42, 58.3], + "lon": [143, 52.5], "alt": 45, "kjName": "二俣", "knName": "フタマタ", @@ -2370,14 +1482,8 @@ "19416": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 58.2 - ], - "lon": [ - 144, - 3.7 - ], + "lat": [42, 58.2], + "lon": [144, 3.7], "alt": 9, "kjName": "白糠", "knName": "シラヌカ", @@ -2386,14 +1492,8 @@ "19432": { "type": "A", "elems": "11111111", - "lat": [ - 42, - 59.1 - ], - "lon": [ - 144, - 22.6 - ], + "lat": [42, 59.1], + "lon": [144, 22.6], "alt": 5, "kjName": "釧路", "knName": "クシロ", @@ -2402,14 +1502,8 @@ "19451": { "type": "C", "elems": "11112010", - "lat": [ - 42, - 56.3 - ], - "lon": [ - 144, - 44.1 - ], + "lat": [42, 56.3], + "lon": [144, 44.1], "alt": 149, "kjName": "知方学", "knName": "チッポマナイ", @@ -2418,14 +1512,8 @@ "20047": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 30.6 - ], - "lon": [ - 143, - 8.9 - ], + "lat": [43, 30.6], + "lon": [143, 8.9], "alt": 660, "kjName": "三股", "knName": "ミツマタ", @@ -2434,14 +1522,8 @@ "20071": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 35.3 - ], - "lon": [ - 143, - 40.8 - ], + "lat": [43, 35.3], + "lon": [143, 40.8], "alt": 313, "kjName": "小利別", "knName": "ショウトシベツ", @@ -2450,14 +1532,8 @@ "20146": { "type": "C", "elems": "11112110", - "lat": [ - 43, - 28.1 - ], - "lon": [ - 143, - 44.3 - ], + "lat": [43, 28.1], + "lon": [143, 44.3], "alt": 207, "kjName": "陸別", "knName": "リクベツ", @@ -2466,14 +1542,8 @@ "20186": { "type": "C", "elems": "11112110", - "lat": [ - 43, - 22 - ], - "lon": [ - 143, - 11.5 - ], + "lat": [43, 22], + "lon": [143, 11.5], "alt": 540, "kjName": "ぬかびら源泉郷", "knName": "ヌカビラゲンセンキョウ", @@ -2482,14 +1552,8 @@ "20202": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 21.7 - ], - "lon": [ - 143, - 27.5 - ], + "lat": [43, 21.7], + "lon": [143, 27.5], "alt": 378, "kjName": "柏倉", "knName": "カシワクラ", @@ -2498,14 +1562,8 @@ "20222": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 19.1 - ], - "lon": [ - 143, - 48.1 - ], + "lat": [43, 19.1], + "lon": [143, 48.1], "alt": 232, "kjName": "上螺湾", "knName": "カミラワン", @@ -2514,14 +1572,8 @@ "20266": { "type": "C", "elems": "11112110", - "lat": [ - 43, - 14.5 - ], - "lon": [ - 143, - 17.7 - ], + "lat": [43, 14.5], + "lon": [143, 17.7], "alt": 287, "kjName": "上士幌", "knName": "カミシホロ", @@ -2530,14 +1582,8 @@ "20276": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 14.6 - ], - "lon": [ - 143, - 33.2 - ], + "lat": [43, 14.6], + "lon": [143, 33.2], "alt": 90, "kjName": "足寄", "knName": "アショロ", @@ -2546,14 +1592,8 @@ "20331": { "type": "C", "elems": "01000000", - "lat": [ - 43, - 6.9 - ], - "lon": [ - 143, - 26.6 - ], + "lat": [43, 6.9], + "lon": [143, 26.6], "alt": 104, "kjName": "押帯", "knName": "オショップ", @@ -2562,14 +1602,8 @@ "20341": { "type": "C", "elems": "11112110", - "lat": [ - 43, - 7.9 - ], - "lon": [ - 143, - 36 - ], + "lat": [43, 7.9], + "lon": [143, 36], "alt": 67, "kjName": "本別", "knName": "ホンベツ", @@ -2578,14 +1612,8 @@ "20356": { "type": "C", "elems": "11112100", - "lat": [ - 43, - 4.6 - ], - "lon": [ - 142, - 50.4 - ], + "lat": [43, 4.6], + "lon": [142, 50.4], "alt": 178, "kjName": "新得", "knName": "シントク", @@ -2594,14 +1622,8 @@ "20361": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 6.2 - ], - "lon": [ - 142, - 59.7 - ], + "lat": [43, 6.2], + "lon": [142, 59.7], "alt": 206, "kjName": "鹿追", "knName": "シカオイ", @@ -2610,14 +1632,8 @@ "20371": { "type": "C", "elems": "11112000", - "lat": [ - 43, - 3 - ], - "lon": [ - 143, - 11 - ], + "lat": [43, 3], + "lon": [143, 11], "alt": 112, "kjName": "駒場", "knName": "コマバ", @@ -2626,14 +1642,8 @@ "20421": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 54 - ], - "lon": [ - 143, - 2.6 - ], + "lat": [42, 54], + "lon": [143, 2.6], "alt": 90, "kjName": "芽室", "knName": "メムロ", @@ -2642,14 +1652,8 @@ "20432": { "type": "B", "elems": "11111111", - "lat": [ - 42, - 55.3 - ], - "lon": [ - 143, - 12.7 - ], + "lat": [42, 55.3], + "lon": [143, 12.7], "alt": 38, "kjName": "帯広", "knName": "オビヒロ", @@ -2658,14 +1662,8 @@ "20441": { "type": "C", "elems": "11112000", - "lat": [ - 42, - 55.2 - ], - "lon": [ - 143, - 27.5 - ], + "lat": [42, 55.2], + "lon": [143, 27.5], "alt": 42, "kjName": "池田", "knName": "イケダ", @@ -2674,14 +1672,8 @@ "20451": { "type": "C", "elems": "01000000", - "lat": [ - 42, - 55 - ], - "lon": [ - 143, - 39.7 - ], + "lat": [42, 55], + "lon": [143, 39.7], "alt": 40, "kjName": "留真", "knName": "ルシン", @@ -2690,14 +1682,8 @@ "20506": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 48.5 - ], - "lon": [ - 143, - 39.4 - ], + "lat": [42, 48.5], + "lon": [143, 39.4], "alt": 20, "kjName": "浦幌", "knName": "ウラホロ", @@ -2706,14 +1692,8 @@ "20551": { "type": "C", "elems": "11110100", - "lat": [ - 42, - 44 - ], - "lon": [ - 143, - 13 - ], + "lat": [42, 44], + "lon": [143, 13], "alt": 149, "kjName": "帯広泉", "knName": "オビヒロイズミ:帯広空港", @@ -2722,14 +1702,8 @@ "20556": { "type": "C", "elems": "11112000", - "lat": [ - 42, - 47.2 - ], - "lon": [ - 143, - 19.7 - ], + "lat": [42, 47.2], + "lon": [143, 19.7], "alt": 70, "kjName": "糠内", "knName": "ヌカナイ", @@ -2738,14 +1712,8 @@ "20601": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 38.5 - ], - "lon": [ - 143, - 5.8 - ], + "lat": [42, 38.5], + "lon": [143, 5.8], "alt": 251, "kjName": "上札内", "knName": "カミサツナイ", @@ -2754,14 +1722,8 @@ "20606": { "type": "C", "elems": "11112000", - "lat": [ - 42, - 39.1 - ], - "lon": [ - 143, - 11.7 - ], + "lat": [42, 39.1], + "lon": [143, 11.7], "alt": 185, "kjName": "更別", "knName": "サラベツ", @@ -2770,14 +1732,8 @@ "20631": { "type": "C", "elems": "11112000", - "lat": [ - 42, - 41.2 - ], - "lon": [ - 143, - 38.8 - ], + "lat": [42, 41.2], + "lon": [143, 38.8], "alt": 4, "kjName": "大津", "knName": "オオツ", @@ -2786,14 +1742,8 @@ "20696": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 30 - ], - "lon": [ - 143, - 16.4 - ], + "lat": [42, 30], + "lon": [143, 16.4], "alt": 87, "kjName": "大樹", "knName": "タイキ", @@ -2802,14 +1752,8 @@ "20751": { "type": "B", "elems": "11111111", - "lat": [ - 42, - 17.6 - ], - "lon": [ - 143, - 19 - ], + "lat": [42, 17.6], + "lon": [143, 19], "alt": 32, "kjName": "広尾", "knName": "ヒロオ", @@ -2818,14 +1762,8 @@ "21031": { "type": "C", "elems": "01000100", - "lat": [ - 42, - 48.8 - ], - "lon": [ - 141, - 49.7 - ], + "lat": [42, 48.8], + "lon": [141, 49.7], "alt": 32, "kjName": "安平", "knName": "アビラ", @@ -2834,14 +1772,8 @@ "21111": { "type": "C", "elems": "11112000", - "lat": [ - 42, - 43.8 - ], - "lon": [ - 141, - 53.3 - ], + "lat": [42, 43.8], + "lon": [141, 53.3], "alt": 20, "kjName": "厚真", "knName": "アツマ", @@ -2850,14 +1782,8 @@ "21126": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 45.7 - ], - "lon": [ - 142, - 8.6 - ], + "lat": [42, 45.7], + "lon": [142, 8.6], "alt": 56, "kjName": "穂別", "knName": "ホベツ", @@ -2866,14 +1792,8 @@ "21161": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 40.2 - ], - "lon": [ - 141, - 4.7 - ], + "lat": [42, 40.2], + "lon": [141, 4.7], "alt": 390, "kjName": "大滝", "knName": "オオタキ", @@ -2882,14 +1802,8 @@ "21171": { "type": "C", "elems": "11112000", - "lat": [ - 42, - 37.8 - ], - "lon": [ - 141, - 14.8 - ], + "lat": [42, 37.8], + "lon": [141, 14.8], "alt": 170, "kjName": "森野", "knName": "モリノ", @@ -2898,14 +1812,8 @@ "21187": { "type": "B", "elems": "11111111", - "lat": [ - 42, - 37.4 - ], - "lon": [ - 141, - 32.8 - ], + "lat": [42, 37.4], + "lon": [141, 32.8], "alt": 6, "kjName": "苫小牧", "knName": "トマコマイ", @@ -2914,14 +1822,8 @@ "21226": { "type": "C", "elems": "11112110", - "lat": [ - 42, - 35.4 - ], - "lon": [ - 140, - 38.6 - ], + "lat": [42, 35.4], + "lon": [140, 38.6], "alt": 4, "kjName": "大岸", "knName": "オオキシ", @@ -2930,14 +1832,8 @@ "21237": { "type": "C", "elems": "01000000", - "lat": [ - 42, - 33.9 - ], - "lon": [ - 140, - 48.4 - ], + "lat": [42, 33.9], + "lon": [140, 48.4], "alt": 85, "kjName": "洞爺湖温泉", "knName": "トウヤコオンセン", @@ -2946,14 +1842,8 @@ "21251": { "type": "C", "elems": "01000000", - "lat": [ - 42, - 31 - ], - "lon": [ - 141, - 6.4 - ], + "lat": [42, 31], + "lon": [141, 6.4], "alt": 300, "kjName": "カルルス", "knName": "カルルス", @@ -2962,14 +1852,8 @@ "21261": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 32.6 - ], - "lon": [ - 141, - 21.1 - ], + "lat": [42, 32.6], + "lon": [141, 21.1], "alt": 6, "kjName": "白老", "knName": "シラオイ", @@ -2978,14 +1862,8 @@ "21276": { "type": "C", "elems": "11112000", - "lat": [ - 42, - 35.4 - ], - "lon": [ - 141, - 56 - ], + "lat": [42, 35.4], + "lon": [141, 56], "alt": 10, "kjName": "鵡川", "knName": "ムカワ", @@ -2994,14 +1872,8 @@ "21297": { "type": "C", "elems": "11112000", - "lat": [ - 42, - 28.5 - ], - "lon": [ - 140, - 50.9 - ], + "lat": [42, 28.5], + "lon": [140, 50.9], "alt": 3, "kjName": "伊達", "knName": "ダテ", @@ -3010,14 +1882,8 @@ "21312": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 27.5 - ], - "lon": [ - 141, - 7.1 - ], + "lat": [42, 27.5], + "lon": [141, 7.1], "alt": 197, "kjName": "登別", "knName": "ノボリベツ", @@ -3026,14 +1892,8 @@ "21323": { "type": "A", "elems": "11111111", - "lat": [ - 42, - 18.7 - ], - "lon": [ - 140, - 58.5 - ], + "lat": [42, 18.7], + "lon": [140, 58.5], "alt": 40, "kjName": "室蘭", "knName": "ムロラン", @@ -3042,14 +1902,8 @@ "22036": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 52.6 - ], - "lon": [ - 142, - 26.5 - ], + "lat": [42, 52.6], + "lon": [142, 26.5], "alt": 280, "kjName": "日高", "knName": "ヒダカ", @@ -3058,14 +1912,8 @@ "22072": { "type": "C", "elems": "01000000", - "lat": [ - 42, - 46.3 - ], - "lon": [ - 142, - 21.5 - ], + "lat": [42, 46.3], + "lon": [142, 21.5], "alt": 150, "kjName": "仁世宇", "knName": "ニセウ", @@ -3074,14 +1922,8 @@ "22106": { "type": "C", "elems": "01000100", - "lat": [ - 42, - 37.7 - ], - "lon": [ - 142, - 23.6 - ], + "lat": [42, 37.7], + "lon": [142, 23.6], "alt": 245, "kjName": "旭", "knName": "アサヒ", @@ -3090,14 +1932,8 @@ "22141": { "type": "C", "elems": "11112010", - "lat": [ - 42, - 29.8 - ], - "lon": [ - 142, - 3.2 - ], + "lat": [42, 29.8], + "lon": [142, 3.2], "alt": 47, "kjName": "日高門別", "knName": "ヒダカモンベツ", @@ -3106,14 +1942,8 @@ "22156": { "type": "C", "elems": "11112000", - "lat": [ - 42, - 32.6 - ], - "lon": [ - 142, - 20 - ], + "lat": [42, 32.6], + "lon": [142, 20], "alt": 60, "kjName": "新和", "knName": "シンワ", @@ -3122,14 +1952,8 @@ "22206": { "type": "C", "elems": "01000000", - "lat": [ - 42, - 26 - ], - "lon": [ - 142, - 28.9 - ], + "lat": [42, 26], + "lon": [142, 28.9], "alt": 110, "kjName": "笹山", "knName": "ササヤマ", @@ -3138,14 +1962,8 @@ "22241": { "type": "C", "elems": "11112110", - "lat": [ - 42, - 20.6 - ], - "lon": [ - 142, - 21.7 - ], + "lat": [42, 20.6], + "lon": [142, 21.7], "alt": 10, "kjName": "静内", "knName": "シズナイ", @@ -3154,14 +1972,8 @@ "22291": { "type": "C", "elems": "11112000", - "lat": [ - 42, - 14.7 - ], - "lon": [ - 142, - 39.7 - ], + "lat": [42, 14.7], + "lon": [142, 39.7], "alt": 10, "kjName": "三石", "knName": "ミツイシ", @@ -3170,14 +1982,8 @@ "22306": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 13.4 - ], - "lon": [ - 142, - 56.9 - ], + "lat": [42, 13.4], + "lon": [142, 56.9], "alt": 98, "kjName": "中杵臼", "knName": "ナカキネウス", @@ -3186,14 +1992,8 @@ "22327": { "type": "B", "elems": "11111111", - "lat": [ - 42, - 9.7 - ], - "lon": [ - 142, - 46.6 - ], + "lat": [42, 9.7], + "lon": [142, 46.6], "alt": 37, "kjName": "浦河", "knName": "ウラカワ", @@ -3202,14 +2002,8 @@ "22356": { "type": "C", "elems": "01000100", - "lat": [ - 42, - 7.7 - ], - "lon": [ - 143, - 18.7 - ], + "lat": [42, 7.7], + "lon": [143, 18.7], "alt": 7, "kjName": "目黒", "knName": "メグロ", @@ -3218,14 +2012,8 @@ "22366": { "type": "C", "elems": "01000000", - "lat": [ - 42, - 4.6 - ], - "lon": [ - 143, - 2.1 - ], + "lat": [42, 4.6], + "lon": [143, 2.1], "alt": 0, "kjName": "幌満", "knName": "ホロマン", @@ -3234,14 +2022,8 @@ "22391": { "type": "C", "elems": "11112010", - "lat": [ - 41, - 55.5 - ], - "lon": [ - 143, - 14.6 - ], + "lat": [41, 55.5], + "lon": [143, 14.6], "alt": 63, "kjName": "えりも岬", "knName": "エリモミサキ", @@ -3250,14 +2032,8 @@ "23031": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 31.4 - ], - "lon": [ - 140, - 22.9 - ], + "lat": [42, 31.4], + "lon": [140, 22.9], "alt": 10, "kjName": "長万部", "knName": "オシャマンベ", @@ -3266,14 +2042,8 @@ "23086": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 15.1 - ], - "lon": [ - 140, - 16.3 - ], + "lat": [42, 15.1], + "lon": [140, 16.3], "alt": 8, "kjName": "八雲", "knName": "ヤクモ", @@ -3282,14 +2052,8 @@ "23166": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 4 - ], - "lon": [ - 140, - 35.3 - ], + "lat": [42, 4], + "lon": [140, 35.3], "alt": 125, "kjName": "森", "knName": "モリ", @@ -3298,14 +2062,8 @@ "23191": { "type": "C", "elems": "01000100", - "lat": [ - 41, - 58.6 - ], - "lon": [ - 140, - 42.9 - ], + "lat": [41, 58.6], + "lon": [140, 42.9], "alt": 165, "kjName": "大沼", "knName": "オオヌマ", @@ -3314,14 +2072,8 @@ "23206": { "type": "C", "elems": "11112010", - "lat": [ - 41, - 54.3 - ], - "lon": [ - 140, - 58.2 - ], + "lat": [41, 54.3], + "lon": [140, 58.2], "alt": 25, "kjName": "川汲", "knName": "カックミ", @@ -3330,14 +2082,8 @@ "23226": { "type": "C", "elems": "11112000", - "lat": [ - 41, - 53.2 - ], - "lon": [ - 140, - 39.2 - ], + "lat": [41, 53.2], + "lon": [140, 39.2], "alt": 25, "kjName": "北斗", "knName": "ホクト", @@ -3346,14 +2092,8 @@ "23232": { "type": "A", "elems": "11111111", - "lat": [ - 41, - 49 - ], - "lon": [ - 140, - 45.2 - ], + "lat": [41, 49], + "lon": [140, 45.2], "alt": 35, "kjName": "函館", "knName": "ハコダテ", @@ -3362,14 +2102,8 @@ "23281": { "type": "C", "elems": "11110100", - "lat": [ - 41, - 46.2 - ], - "lon": [ - 140, - 49.3 - ], + "lat": [41, 46.2], + "lon": [140, 49.3], "alt": 34, "kjName": "高松", "knName": "タカマツ:函館空港", @@ -3378,14 +2112,8 @@ "23291": { "type": "C", "elems": "01000000", - "lat": [ - 41, - 43 - ], - "lon": [ - 141, - 0.2 - ], + "lat": [41, 43], + "lon": [141, 0.2], "alt": 20, "kjName": "戸井泊", "knName": "トイトマリ", @@ -3394,14 +2122,8 @@ "23321": { "type": "C", "elems": "01000000", - "lat": [ - 41, - 35.9 - ], - "lon": [ - 140, - 22.5 - ], + "lat": [41, 35.9], + "lon": [140, 22.5], "alt": 24, "kjName": "知内", "knName": "シリウチ", @@ -3410,14 +2132,8 @@ "23326": { "type": "C", "elems": "11112010", - "lat": [ - 41, - 40.8 - ], - "lon": [ - 140, - 26.2 - ], + "lat": [41, 40.8], + "lon": [140, 26.2], "alt": 10, "kjName": "木古内", "knName": "キコナイ", @@ -3426,14 +2142,8 @@ "23356": { "type": "C", "elems": "01000100", - "lat": [ - 41, - 33.5 - ], - "lon": [ - 140, - 16.3 - ], + "lat": [41, 33.5], + "lon": [140, 16.3], "alt": 100, "kjName": "千軒", "knName": "センゲン", @@ -3442,14 +2152,8 @@ "23376": { "type": "C", "elems": "11112010", - "lat": [ - 41, - 25.4 - ], - "lon": [ - 140, - 5.2 - ], + "lat": [41, 25.4], + "lon": [140, 5.2], "alt": 30, "kjName": "松前", "knName": "マツマエ", @@ -3458,14 +2162,8 @@ "24041": { "type": "C", "elems": "11112000", - "lat": [ - 42, - 27 - ], - "lon": [ - 139, - 51.1 - ], + "lat": [42, 27], + "lon": [139, 51.1], "alt": 10, "kjName": "せたな", "knName": "セタナ", @@ -3474,14 +2172,8 @@ "24051": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 25.7 - ], - "lon": [ - 140, - 0.5 - ], + "lat": [42, 25.7], + "lon": [140, 0.5], "alt": 19, "kjName": "今金", "knName": "イマカネ", @@ -3490,14 +2182,8 @@ "24101": { "type": "C", "elems": "11112010", - "lat": [ - 42, - 14.9 - ], - "lon": [ - 139, - 33.4 - ], + "lat": [42, 14.9], + "lon": [139, 33.4], "alt": 5, "kjName": "奥尻", "knName": "オクシリ", @@ -3506,14 +2192,8 @@ "24141": { "type": "C", "elems": "11112100", - "lat": [ - 42, - 7.7 - ], - "lon": [ - 139, - 59.1 - ], + "lat": [42, 7.7], + "lon": [139, 59.1], "alt": 12, "kjName": "熊石", "knName": "クマイシ", @@ -3522,14 +2202,8 @@ "24156": { "type": "C", "elems": "11110000", - "lat": [ - 42, - 4.3 - ], - "lon": [ - 139, - 25.9 - ], + "lat": [42, 4.3], + "lon": [139, 25.9], "alt": 49, "kjName": "米岡", "knName": "ヨネオカ:奥尻空港", @@ -3538,14 +2212,8 @@ "24166": { "type": "C", "elems": "01000000", - "lat": [ - 42, - 2.3 - ], - "lon": [ - 140, - 5.3 - ], + "lat": [42, 2.3], + "lon": [140, 5.3], "alt": 50, "kjName": "潮見", "knName": "シオミ", @@ -3554,14 +2222,8 @@ "24201": { "type": "C", "elems": "11112100", - "lat": [ - 41, - 55.8 - ], - "lon": [ - 140, - 18.7 - ], + "lat": [41, 55.8], + "lon": [140, 18.7], "alt": 53, "kjName": "鶉", "knName": "ウズラ", @@ -3570,14 +2232,8 @@ "24217": { "type": "B", "elems": "11111111", - "lat": [ - 41, - 52 - ], - "lon": [ - 140, - 7.4 - ], + "lat": [41, 52], + "lon": [140, 7.4], "alt": 4, "kjName": "江差", "knName": "エサシ", @@ -3586,14 +2242,8 @@ "24236": { "type": "C", "elems": "01000000", - "lat": [ - 41, - 42 - ], - "lon": [ - 140, - 1.7 - ], + "lat": [41, 42], + "lon": [140, 1.7], "alt": 5, "kjName": "石崎", "knName": "イシザキ", @@ -3602,14 +2252,8 @@ "31001": { "type": "C", "elems": "11112100", - "lat": [ - 41, - 31.6 - ], - "lon": [ - 140, - 54.7 - ], + "lat": [41, 31.6], + "lon": [140, 54.7], "alt": 14, "kjName": "大間", "knName": "オオマ", @@ -3618,14 +2262,8 @@ "31036": { "type": "C", "elems": "01000000", - "lat": [ - 41, - 18.8 - ], - "lon": [ - 140, - 57.4 - ], + "lat": [41, 18.8], + "lon": [140, 57.4], "alt": 162, "kjName": "湯野川", "knName": "ユノカワ", @@ -3634,14 +2272,8 @@ "31111": { "type": "B", "elems": "11111111", - "lat": [ - 41, - 17 - ], - "lon": [ - 141, - 12.6 - ], + "lat": [41, 17], + "lon": [141, 12.6], "alt": 3, "kjName": "むつ", "knName": "ムツ", @@ -3650,14 +2282,8 @@ "31121": { "type": "C", "elems": "11112000", - "lat": [ - 41, - 14.1 - ], - "lon": [ - 141, - 23.8 - ], + "lat": [41, 14.1], + "lon": [141, 23.8], "alt": 6, "kjName": "小田野沢", "knName": "オダノサワ", @@ -3666,14 +2292,8 @@ "31136": { "type": "C", "elems": "11112100", - "lat": [ - 41, - 10.8 - ], - "lon": [ - 140, - 28.9 - ], + "lat": [41, 10.8], + "lon": [140, 28.9], "alt": 30, "kjName": "今別", "knName": "イマベツ", @@ -3682,14 +2302,8 @@ "31156": { "type": "C", "elems": "11112100", - "lat": [ - 41, - 8.7 - ], - "lon": [ - 140, - 49.3 - ], + "lat": [41, 8.7], + "lon": [140, 49.3], "alt": 15, "kjName": "脇野沢", "knName": "ワキノサワ", @@ -3698,14 +2312,8 @@ "31186": { "type": "C", "elems": "11112010", - "lat": [ - 41, - 3.4 - ], - "lon": [ - 140, - 20.8 - ], + "lat": [41, 3.4], + "lon": [140, 20.8], "alt": 20, "kjName": "市浦", "knName": "シウラ", @@ -3714,14 +2322,8 @@ "31201": { "type": "C", "elems": "11112000", - "lat": [ - 41, - 2.7 - ], - "lon": [ - 140, - 38 - ], + "lat": [41, 2.7], + "lon": [140, 38], "alt": 5, "kjName": "蟹田", "knName": "カニタ", @@ -3730,14 +2332,8 @@ "31296": { "type": "C", "elems": "11112110", - "lat": [ - 40, - 48.5 - ], - "lon": [ - 140, - 27.5 - ], + "lat": [40, 48.5], + "lon": [140, 27.5], "alt": 9, "kjName": "五所川原", "knName": "ゴショガワラ", @@ -3746,14 +2342,8 @@ "31312": { "type": "A", "elems": "11111111", - "lat": [ - 40, - 49.3 - ], - "lon": [ - 140, - 46.1 - ], + "lat": [40, 49.3], + "lon": [140, 46.1], "alt": 3, "kjName": "青森", "knName": "アオモリ", @@ -3762,14 +2352,8 @@ "31321": { "type": "C", "elems": "01000000", - "lat": [ - 40, - 50.9 - ], - "lon": [ - 140, - 59.1 - ], + "lat": [40, 50.9], + "lon": [140, 59.1], "alt": 137, "kjName": "大和山", "knName": "ヤマトヤマ", @@ -3778,14 +2362,8 @@ "31332": { "type": "C", "elems": "11112100", - "lat": [ - 40, - 53.1 - ], - "lon": [ - 141, - 9.6 - ], + "lat": [40, 53.1], + "lon": [141, 9.6], "alt": 14, "kjName": "野辺地", "knName": "ノヘジ", @@ -3794,14 +2372,8 @@ "31336": { "type": "C", "elems": "11112000", - "lat": [ - 40, - 53.1 - ], - "lon": [ - 141, - 16.3 - ], + "lat": [40, 53.1], + "lon": [141, 16.3], "alt": 80, "kjName": "六ケ所", "knName": "ロッカショ", @@ -3810,14 +2382,8 @@ "31366": { "type": "C", "elems": "11112110", - "lat": [ - 40, - 46.6 - ], - "lon": [ - 140, - 12.3 - ], + "lat": [40, 46.6], + "lon": [140, 12.3], "alt": 40, "kjName": "鰺ケ沢", "knName": "アジガサワ", @@ -3826,14 +2392,8 @@ "31386": { "type": "C", "elems": "11110100", - "lat": [ - 40, - 44 - ], - "lon": [ - 140, - 41.3 - ], + "lat": [40, 44], + "lon": [140, 41.3], "alt": 198, "kjName": "青森大谷", "knName": "アオモリオオタニ:青森空港", @@ -3842,14 +2402,8 @@ "31411": { "type": "C", "elems": "01000000", - "lat": [ - 40, - 42.5 - ], - "lon": [ - 141, - 7.7 - ], + "lat": [40, 42.5], + "lon": [141, 7.7], "alt": 57, "kjName": "七戸", "knName": "シチノヘ", @@ -3858,14 +2412,8 @@ "31436": { "type": "B", "elems": "11111111", - "lat": [ - 40, - 38.7 - ], - "lon": [ - 139, - 55.9 - ], + "lat": [40, 38.7], + "lon": [139, 55.9], "alt": 66, "kjName": "深浦", "knName": "フカウラ", @@ -3874,14 +2422,8 @@ "31451": { "type": "C", "elems": "01000000", - "lat": [ - 40, - 37.7 - ], - "lon": [ - 140, - 15.8 - ], + "lat": [40, 37.7], + "lon": [140, 15.8], "alt": 438, "kjName": "岳", "knName": "ダケ", @@ -3890,14 +2432,8 @@ "31461": { "type": "C", "elems": "11112110", - "lat": [ - 40, - 36.7 - ], - "lon": [ - 140, - 27.3 - ], + "lat": [40, 36.7], + "lon": [140, 27.3], "alt": 30, "kjName": "弘前", "knName": "ヒロサキ", @@ -3906,14 +2442,8 @@ "31466": { "type": "C", "elems": "11112000", - "lat": [ - 40, - 40 - ], - "lon": [ - 140, - 35.1 - ], + "lat": [40, 40], + "lon": [140, 35.1], "alt": 30, "kjName": "黒石", "knName": "クロイシ", @@ -3922,14 +2452,8 @@ "31482": { "type": "C", "elems": "11112100", - "lat": [ - 40, - 38.9 - ], - "lon": [ - 140, - 50.9 - ], + "lat": [40, 38.9], + "lon": [140, 50.9], "alt": 890, "kjName": "酸ケ湯", "knName": "スカユ", @@ -3938,14 +2462,8 @@ "31506": { "type": "C", "elems": "11112000", - "lat": [ - 40, - 40.5 - ], - "lon": [ - 141, - 22.5 - ], + "lat": [40, 40.5], + "lon": [141, 22.5], "alt": 39, "kjName": "三沢", "knName": "ミサワ", @@ -3954,14 +2472,8 @@ "31551": { "type": "C", "elems": "01000000", - "lat": [ - 40, - 31.8 - ], - "lon": [ - 140, - 33.3 - ], + "lat": [40, 31.8], + "lon": [140, 33.3], "alt": 63, "kjName": "大鰐", "knName": "オオワニ", @@ -3970,14 +2482,8 @@ "31562": { "type": "C", "elems": "01000000", - "lat": [ - 40, - 30.9 - ], - "lon": [ - 140, - 47 - ], + "lat": [40, 30.9], + "lon": [140, 47], "alt": 404, "kjName": "温川", "knName": "ヌルカワ", @@ -3986,14 +2492,8 @@ "31586": { "type": "C", "elems": "11112100", - "lat": [ - 40, - 36.4 - ], - "lon": [ - 141, - 14 - ], + "lat": [40, 36.4], + "lon": [141, 14], "alt": 55, "kjName": "十和田", "knName": "トワダ", @@ -4002,14 +2502,8 @@ "31602": { "type": "B", "elems": "11111111", - "lat": [ - 40, - 31.6 - ], - "lon": [ - 141, - 31.3 - ], + "lat": [40, 31.6], + "lon": [141, 31.3], "alt": 27, "kjName": "八戸", "knName": "ハチノヘ", @@ -4018,14 +2512,8 @@ "31646": { "type": "C", "elems": "11112110", - "lat": [ - 40, - 28.9 - ], - "lon": [ - 140, - 37.2 - ], + "lat": [40, 28.9], + "lon": [140, 37.2], "alt": 135, "kjName": "碇ケ関", "knName": "イカリガセキ", @@ -4034,14 +2522,8 @@ "31662": { "type": "C", "elems": "11112000", - "lat": [ - 40, - 25.6 - ], - "lon": [ - 140, - 53.9 - ], + "lat": [40, 25.6], + "lon": [140, 53.9], "alt": 414, "kjName": "休屋", "knName": "ヤスミヤ", @@ -4050,14 +2532,8 @@ "31671": { "type": "C", "elems": "01000000", - "lat": [ - 40, - 28.1 - ], - "lon": [ - 141, - 10.6 - ], + "lat": [40, 28.1], + "lon": [141, 10.6], "alt": 125, "kjName": "戸来", "knName": "ヘライ", @@ -4066,14 +2542,8 @@ "31721": { "type": "C", "elems": "11112110", - "lat": [ - 40, - 23 - ], - "lon": [ - 141, - 15.4 - ], + "lat": [40, 23], + "lon": [141, 15.4], "alt": 60, "kjName": "三戸", "knName": "サンノヘ", @@ -4082,14 +2552,8 @@ "32056": { "type": "C", "elems": "11112010", - "lat": [ - 40, - 24.8 - ], - "lon": [ - 139, - 56.9 - ], + "lat": [40, 24.8], + "lon": [139, 56.9], "alt": 34, "kjName": "八森", "knName": "ハチモリ", @@ -4098,14 +2562,8 @@ "32071": { "type": "C", "elems": "01000000", - "lat": [ - 40, - 19.2 - ], - "lon": [ - 140, - 17.6 - ], + "lat": [40, 19.2], + "lon": [140, 17.6], "alt": 68, "kjName": "藤里", "knName": "フジサト", @@ -4114,14 +2572,8 @@ "32091": { "type": "C", "elems": "01000000", - "lat": [ - 40, - 24.2 - ], - "lon": [ - 140, - 36.5 - ], + "lat": [40, 24.2], + "lon": [140, 36.5], "alt": 176, "kjName": "陣場", "knName": "ジンバ", @@ -4130,14 +2582,8 @@ "32096": { "type": "C", "elems": "01000000", - "lat": [ - 40, - 21.2 - ], - "lon": [ - 140, - 46.8 - ], + "lat": [40, 21.2], + "lon": [140, 46.8], "alt": 280, "kjName": "藤原", "knName": "フジワラ", @@ -4146,14 +2592,8 @@ "32111": { "type": "C", "elems": "11112100", - "lat": [ - 40, - 11.9 - ], - "lon": [ - 140, - 1.9 - ], + "lat": [40, 11.9], + "lon": [140, 1.9], "alt": 6, "kjName": "能代", "knName": "ノシロ", @@ -4162,14 +2602,8 @@ "32126": { "type": "C", "elems": "11112110", - "lat": [ - 40, - 13.6 - ], - "lon": [ - 140, - 22.3 - ], + "lat": [40, 13.6], + "lon": [140, 22.3], "alt": 29, "kjName": "鷹巣", "knName": "タカノス", @@ -4178,14 +2612,8 @@ "32136": { "type": "C", "elems": "11112000", - "lat": [ - 40, - 15.1 - ], - "lon": [ - 140, - 30.3 - ], + "lat": [40, 15.1], + "lon": [140, 30.3], "alt": 49, "kjName": "大館", "knName": "オオダテ", @@ -4194,14 +2622,8 @@ "32146": { "type": "C", "elems": "11112100", - "lat": [ - 40, - 12.9 - ], - "lon": [ - 140, - 47.2 - ], + "lat": [40, 12.9], + "lon": [140, 47.2], "alt": 123, "kjName": "鹿角", "knName": "カヅノ", @@ -4210,14 +2632,8 @@ "32181": { "type": "C", "elems": "11110000", - "lat": [ - 40, - 11.5 - ], - "lon": [ - 140, - 22.3 - ], + "lat": [40, 11.5], + "lon": [140, 22.3], "alt": 84, "kjName": "脇神", "knName": "ワキガミ:大館能代空港", @@ -4226,14 +2642,8 @@ "32206": { "type": "C", "elems": "11112000", - "lat": [ - 40, - 7.2 - ], - "lon": [ - 140, - 50.4 - ], + "lat": [40, 7.2], + "lon": [140, 50.4], "alt": 214, "kjName": "湯瀬", "knName": "ユゼ", @@ -4242,14 +2652,8 @@ "32266": { "type": "C", "elems": "11112000", - "lat": [ - 40, - 0.8 - ], - "lon": [ - 140, - 48.1 - ], + "lat": [40, 0.8], + "lon": [140, 48.1], "alt": 578, "kjName": "八幡平", "knName": "ハチマンタイ", @@ -4258,14 +2662,8 @@ "32276": { "type": "C", "elems": "01000000", - "lat": [ - 39, - 56.3 - ], - "lon": [ - 139, - 46.9 - ], + "lat": [39, 56.3], + "lon": [139, 46.9], "alt": 84, "kjName": "男鹿真山", "knName": "オガシンザン", @@ -4274,14 +2672,8 @@ "32286": { "type": "C", "elems": "11112000", - "lat": [ - 39, - 54.7 - ], - "lon": [ - 139, - 54 - ], + "lat": [39, 54.7], + "lon": [139, 54], "alt": 20, "kjName": "男鹿", "knName": "オガ", @@ -4290,14 +2682,8 @@ "32287": { "type": "C", "elems": "11112000", - "lat": [ - 40, - 0 - ], - "lon": [ - 139, - 57 - ], + "lat": [40, 0], + "lon": [139, 57], "alt": -3, "kjName": "大潟", "knName": "オオガタ", @@ -4306,14 +2692,8 @@ "32296": { "type": "C", "elems": "11112100", - "lat": [ - 39, - 56.3 - ], - "lon": [ - 140, - 6.9 - ], + "lat": [39, 56.3], + "lon": [140, 6.9], "alt": 6, "kjName": "五城目", "knName": "ゴジョウメ", @@ -4322,14 +2702,8 @@ "32311": { "type": "C", "elems": "11112100", - "lat": [ - 39, - 59.6 - ], - "lon": [ - 140, - 24.2 - ], + "lat": [39, 59.6], + "lon": [140, 24.2], "alt": 120, "kjName": "阿仁合", "knName": "アニアイ", @@ -4338,14 +2712,8 @@ "32312": { "type": "C", "elems": "01000000", - "lat": [ - 39, - 54.2 - ], - "lon": [ - 140, - 27 - ], + "lat": [39, 54.2], + "lon": [140, 27], "alt": 210, "kjName": "比立内", "knName": "ヒタチナイ", @@ -4354,14 +2722,8 @@ "32376": { "type": "C", "elems": "01000000", - "lat": [ - 39, - 48.7 - ], - "lon": [ - 140, - 35.1 - ], + "lat": [39, 48.7], + "lon": [140, 35.1], "alt": 255, "kjName": "桧木内", "knName": "ヒノキナイ", @@ -4370,14 +2732,8 @@ "32402": { "type": "A", "elems": "11111111", - "lat": [ - 39, - 43 - ], - "lon": [ - 140, - 5.9 - ], + "lat": [39, 43], + "lon": [140, 5.9], "alt": 6, "kjName": "秋田", "knName": "アキタ", @@ -4386,14 +2742,8 @@ "32407": { "type": "C", "elems": "11112010", - "lat": [ - 39, - 42.4 - ], - "lon": [ - 140, - 17.2 - ], + "lat": [39, 42.4], + "lon": [140, 17.2], "alt": 41, "kjName": "岩見三内", "knName": "イワミサンナイ", @@ -4402,14 +2752,8 @@ "32408": { "type": "C", "elems": "01000000", - "lat": [ - 39, - 48 - ], - "lon": [ - 140, - 13 - ], + "lat": [39, 48], + "lon": [140, 13], "alt": 179, "kjName": "仁別", "knName": "ニベツ", @@ -4418,14 +2762,8 @@ "32426": { "type": "C", "elems": "01000000", - "lat": [ - 39, - 46.5 - ], - "lon": [ - 140, - 39.9 - ], + "lat": [39, 46.5], + "lon": [140, 39.9], "alt": 281, "kjName": "鎧畑", "knName": "ヨロイバタ", @@ -4434,14 +2772,8 @@ "32431": { "type": "C", "elems": "01000000", - "lat": [ - 39, - 46.7 - ], - "lon": [ - 140, - 45.7 - ], + "lat": [39, 46.7], + "lon": [140, 45.7], "alt": 652, "kjName": "田沢湖高原", "knName": "タザワココウゲン", @@ -4450,14 +2782,8 @@ "32451": { "type": "C", "elems": "11110100", - "lat": [ - 39, - 36.9 - ], - "lon": [ - 140, - 13.1 - ], + "lat": [39, 36.9], + "lon": [140, 13.1], "alt": 93, "kjName": "雄和", "knName": "ユウワ:秋田空港", @@ -4466,14 +2792,8 @@ "32466": { "type": "C", "elems": "11112100", - "lat": [ - 39, - 36.2 - ], - "lon": [ - 140, - 33.4 - ], + "lat": [39, 36.2], + "lon": [140, 33.4], "alt": 56, "kjName": "角館", "knName": "カクノダテ", @@ -4482,14 +2802,8 @@ "32476": { "type": "C", "elems": "11112000", - "lat": [ - 39, - 41.9 - ], - "lon": [ - 140, - 43.9 - ], + "lat": [39, 41.9], + "lon": [140, 43.9], "alt": 230, "kjName": "田沢湖", "knName": "タザワコ", @@ -4498,14 +2812,8 @@ "32496": { "type": "C", "elems": "11112100", - "lat": [ - 39, - 31.6 - ], - "lon": [ - 140, - 14 - ], + "lat": [39, 31.6], + "lon": [140, 14], "alt": 20, "kjName": "大正寺", "knName": "ダイショウジ", @@ -4514,14 +2822,8 @@ "32551": { "type": "C", "elems": "11112000", - "lat": [ - 39, - 29.4 - ], - "lon": [ - 140, - 29.7 - ], + "lat": [39, 29.4], + "lon": [140, 29.7], "alt": 30, "kjName": "大曲", "knName": "オオマガリ", @@ -4530,14 +2832,8 @@ "32571": { "type": "C", "elems": "11112100", - "lat": [ - 39, - 21.6 - ], - "lon": [ - 140, - 3.3 - ], + "lat": [39, 21.6], + "lon": [140, 3.3], "alt": 11, "kjName": "本荘", "knName": "ホンジョウ", @@ -4546,14 +2842,8 @@ "32581": { "type": "C", "elems": "11112000", - "lat": [ - 39, - 18.3 - ], - "lon": [ - 140, - 17.3 - ], + "lat": [39, 18.3], + "lon": [140, 17.3], "alt": 117, "kjName": "東由利", "knName": "ヒガシユリ", @@ -4562,14 +2852,8 @@ "32596": { "type": "C", "elems": "11112100", - "lat": [ - 39, - 19.2 - ], - "lon": [ - 140, - 33.3 - ], + "lat": [39, 19.2], + "lon": [140, 33.3], "alt": 59, "kjName": "横手", "knName": "ヨコテ", @@ -4578,14 +2862,8 @@ "32616": { "type": "C", "elems": "11112010", - "lat": [ - 39, - 15.3 - ], - "lon": [ - 139, - 54.8 - ], + "lat": [39, 15.3], + "lon": [139, 54.8], "alt": 7, "kjName": "にかほ", "knName": "ニカホ", @@ -4594,14 +2872,8 @@ "32626": { "type": "C", "elems": "11112100", - "lat": [ - 39, - 14.1 - ], - "lon": [ - 140, - 8.2 - ], + "lat": [39, 14.1], + "lon": [140, 8.2], "alt": 46, "kjName": "矢島", "knName": "ヤシマ", @@ -4610,14 +2882,8 @@ "32681": { "type": "C", "elems": "01000000", - "lat": [ - 39, - 6.2 - ], - "lon": [ - 140, - 17.6 - ], + "lat": [39, 6.2], + "lon": [140, 17.6], "alt": 200, "kjName": "笹子", "knName": "ジネゴ", @@ -4626,14 +2892,8 @@ "32691": { "type": "C", "elems": "11112100", - "lat": [ - 39, - 11.2 - ], - "lon": [ - 140, - 27.8 - ], + "lat": [39, 11.2], + "lon": [140, 27.8], "alt": 74, "kjName": "湯沢", "knName": "ユザワ", @@ -4642,14 +2902,8 @@ "32701": { "type": "C", "elems": "01000000", - "lat": [ - 39, - 10.7 - ], - "lon": [ - 140, - 38.9 - ], + "lat": [39, 10.7], + "lon": [140, 38.9], "alt": 191, "kjName": "東成瀬", "knName": "ヒガシナルセ", @@ -4658,14 +2912,8 @@ "32771": { "type": "C", "elems": "11112100", - "lat": [ - 38, - 57.6 - ], - "lon": [ - 140, - 31.7 - ], + "lat": [38, 57.6], + "lon": [140, 31.7], "alt": 335, "kjName": "湯の岱", "knName": "ユノタイ", @@ -4674,14 +2922,8 @@ "33006": { "type": "C", "elems": "11112000", - "lat": [ - 40, - 24.2 - ], - "lon": [ - 141, - 42 - ], + "lat": [40, 24.2], + "lon": [141, 42], "alt": 70, "kjName": "種市", "knName": "タネイチ", @@ -4690,14 +2932,8 @@ "33026": { "type": "C", "elems": "11112000", - "lat": [ - 40, - 19.5 - ], - "lon": [ - 141, - 28 - ], + "lat": [40, 19.5], + "lon": [141, 28], "alt": 148, "kjName": "軽米", "knName": "カルマイ", @@ -4706,14 +2942,8 @@ "33071": { "type": "C", "elems": "11112100", - "lat": [ - 40, - 17.9 - ], - "lon": [ - 141, - 17.9 - ], + "lat": [40, 17.9], + "lon": [141, 17.9], "alt": 87, "kjName": "二戸", "knName": "ニノヘ", @@ -4722,14 +2952,8 @@ "33086": { "type": "C", "elems": "01000000", - "lat": [ - 40, - 16.9 - ], - "lon": [ - 141, - 40 - ], + "lat": [40, 16.9], + "lon": [141, 40], "alt": 200, "kjName": "大野", "knName": "オオノ", @@ -4738,14 +2962,8 @@ "33136": { "type": "C", "elems": "11112000", - "lat": [ - 40, - 8.9 - ], - "lon": [ - 141, - 34.3 - ], + "lat": [40, 8.9], + "lon": [141, 34.3], "alt": 290, "kjName": "山形", "knName": "ヤマガタ", @@ -4754,14 +2972,8 @@ "33146": { "type": "C", "elems": "11112110", - "lat": [ - 40, - 10.1 - ], - "lon": [ - 141, - 44.9 - ], + "lat": [40, 10.1], + "lon": [141, 44.9], "alt": 13, "kjName": "久慈", "knName": "クジ", @@ -4770,14 +2982,8 @@ "33166": { "type": "C", "elems": "11112010", - "lat": [ - 40, - 6.2 - ], - "lon": [ - 141, - 3 - ], + "lat": [40, 6.2], + "lon": [141, 3], "alt": 290, "kjName": "荒屋", "knName": "アラヤ", @@ -4786,14 +2992,8 @@ "33176": { "type": "C", "elems": "11112100", - "lat": [ - 40, - 3.6 - ], - "lon": [ - 141, - 13.5 - ], + "lat": [40, 3.6], + "lon": [141, 13.5], "alt": 430, "kjName": "奥中山", "knName": "オクナカヤマ", @@ -4802,14 +3002,8 @@ "33186": { "type": "C", "elems": "11112100", - "lat": [ - 40, - 2.4 - ], - "lon": [ - 141, - 27.4 - ], + "lat": [40, 2.4], + "lon": [141, 27.4], "alt": 418, "kjName": "葛巻", "knName": "クズマキ", @@ -4818,14 +3012,8 @@ "33201": { "type": "C", "elems": "01000000", - "lat": [ - 40, - 5 - ], - "lon": [ - 141, - 42.7 - ], + "lat": [40, 5], + "lon": [141, 42.7], "alt": 239, "kjName": "下戸鎖", "knName": "シモトクサリ", @@ -4834,14 +3022,8 @@ "33206": { "type": "C", "elems": "11112000", - "lat": [ - 40, - 0.2 - ], - "lon": [ - 141, - 53 - ], + "lat": [40, 0.2], + "lon": [141, 53], "alt": 8, "kjName": "普代", "knName": "フダイ", @@ -4850,14 +3032,8 @@ "33226": { "type": "C", "elems": "11112100", - "lat": [ - 39, - 57.1 - ], - "lon": [ - 141, - 3.9 - ], + "lat": [39, 57.1], + "lon": [141, 3.9], "alt": 275, "kjName": "岩手松尾", "knName": "イワテマツオ", @@ -4866,14 +3042,8 @@ "33231": { "type": "C", "elems": "01000000", - "lat": [ - 39, - 58.4 - ], - "lon": [ - 141, - 10 - ], + "lat": [39, 58.4], + "lon": [141, 10], "alt": 285, "kjName": "一方井", "knName": "イッカタイ", @@ -4882,14 +3052,8 @@ "33296": { "type": "C", "elems": "11112000", - "lat": [ - 39, - 52.1 - ], - "lon": [ - 141, - 10 - ], + "lat": [39, 52.1], + "lon": [141, 10], "alt": 205, "kjName": "好摩", "knName": "コウマ", @@ -4898,14 +3062,8 @@ "33326": { "type": "C", "elems": "11112110", - "lat": [ - 39, - 50.8 - ], - "lon": [ - 141, - 47.7 - ], + "lat": [39, 50.8], + "lon": [141, 47.7], "alt": 105, "kjName": "岩泉", "knName": "イワイズミ", @@ -4914,14 +3072,8 @@ "33336": { "type": "C", "elems": "11112000", - "lat": [ - 39, - 50.8 - ], - "lon": [ - 141, - 57.8 - ], + "lat": [39, 50.8], + "lon": [141, 57.8], "alt": 3, "kjName": "小本", "knName": "オモト", @@ -4930,14 +3082,8 @@ "33351": { "type": "C", "elems": "01000000", - "lat": [ - 39, - 46.6 - ], - "lon": [ - 140, - 56.7 - ], + "lat": [39, 46.6], + "lon": [140, 56.7], "alt": 350, "kjName": "葛根田", "knName": "カッコンダ", @@ -4946,14 +3092,8 @@ "33361": { "type": "C", "elems": "01000000", - "lat": [ - 39, - 46.8 - ], - "lon": [ - 141, - 5.8 - ], + "lat": [39, 46.8], + "lon": [141, 5.8], "alt": 210, "kjName": "滝沢", "knName": "タキザワ", @@ -4962,14 +3102,8 @@ "33371": { "type": "C", "elems": "11112000", - "lat": [ - 39, - 47 - ], - "lon": [ - 141, - 19.7 - ], + "lat": [39, 47], + "lon": [141, 19.7], "alt": 680, "kjName": "薮川", "knName": "ヤブカワ", @@ -4978,14 +3112,8 @@ "33421": { "type": "C", "elems": "11112100", - "lat": [ - 39, - 41.8 - ], - "lon": [ - 140, - 58.5 - ], + "lat": [39, 41.8], + "lon": [140, 58.5], "alt": 195, "kjName": "雫石", "knName": "シズクイシ", @@ -4994,14 +3122,8 @@ "33431": { "type": "A", "elems": "11111111", - "lat": [ - 39, - 41.9 - ], - "lon": [ - 141, - 9.9 - ], + "lat": [39, 41.9], + "lon": [141, 9.9], "alt": 155, "kjName": "盛岡", "knName": "モリオカ", @@ -5010,14 +3132,8 @@ "33441": { "type": "C", "elems": "11112100", - "lat": [ - 39, - 39 - ], - "lon": [ - 141, - 21.2 - ], + "lat": [39, 39], + "lon": [141, 21.2], "alt": 734, "kjName": "区界", "knName": "クザカイ", @@ -5026,14 +3142,8 @@ "33472": { "type": "B", "elems": "11111111", - "lat": [ - 39, - 38.8 - ], - "lon": [ - 141, - 57.9 - ], + "lat": [39, 38.8], + "lon": [141, 57.9], "alt": 43, "kjName": "宮古", "knName": "ミヤコ", @@ -5042,14 +3152,8 @@ "33486": { "type": "C", "elems": "11112000", - "lat": [ - 39, - 32.9 - ], - "lon": [ - 140, - 50.6 - ], + "lat": [39, 32.9], + "lon": [140, 50.6], "alt": 407, "kjName": "沢内", "knName": "サワウチ", @@ -5058,14 +3162,8 @@ "33501": { "type": "C", "elems": "11112000", - "lat": [ - 39, - 32.8 - ], - "lon": [ - 141, - 7.6 - ], + "lat": [39, 32.8], + "lon": [141, 7.6], "alt": 125, "kjName": "紫波", "knName": "シワ", @@ -5074,14 +3172,8 @@ "33526": { "type": "C", "elems": "11112000", - "lat": [ - 39, - 35.9 - ], - "lon": [ - 141, - 40.9 - ], + "lat": [39, 35.9], + "lon": [141, 40.9], "alt": 192, "kjName": "川井", "knName": "カワイ", @@ -5090,14 +3182,8 @@ "33566": { "type": "C", "elems": "01000000", - "lat": [ - 39, - 28.8 - ], - "lon": [ - 140, - 58.1 - ], + "lat": [39, 28.8], + "lon": [140, 58.1], "alt": 300, "kjName": "豊沢", "knName": "トヨサワ", @@ -5106,14 +3192,8 @@ "33576": { "type": "C", "elems": "11110000", - "lat": [ - 39, - 25.7 - ], - "lon": [ - 141, - 8.1 - ], + "lat": [39, 25.7], + "lon": [141, 8.1], "alt": 90, "kjName": "花巻", "knName": "ハナマキ:花巻空港", @@ -5122,14 +3202,8 @@ "33581": { "type": "C", "elems": "11112000", - "lat": [ - 39, - 28.2 - ], - "lon": [ - 141, - 16.7 - ], + "lat": [39, 28.2], + "lon": [141, 16.7], "alt": 150, "kjName": "大迫", "knName": "オオハサマ", @@ -5138,14 +3212,8 @@ "33596": { "type": "C", "elems": "01000000", - "lat": [ - 39, - 27.4 - ], - "lon": [ - 141, - 30.4 - ], + "lat": [39, 27.4], + "lon": [141, 30.4], "alt": 440, "kjName": "附馬牛", "knName": "ツキモウシ", @@ -5154,14 +3222,8 @@ "33611": { "type": "C", "elems": "01000000", - "lat": [ - 39, - 26.3 - ], - "lon": [ - 141, - 48.4 - ], + "lat": [39, 26.3], + "lon": [141, 48.4], "alt": 120, "kjName": "大槌", "knName": "オオツチ", @@ -5170,14 +3232,8 @@ "33616": { "type": "C", "elems": "11112000", - "lat": [ - 39, - 27 - ], - "lon": [ - 141, - 57.4 - ], + "lat": [39, 27], + "lon": [141, 57.4], "alt": 24, "kjName": "山田", "knName": "ヤマダ", @@ -5186,14 +3242,8 @@ "33631": { "type": "C", "elems": "11112110", - "lat": [ - 39, - 18.6 - ], - "lon": [ - 140, - 46.6 - ], + "lat": [39, 18.6], + "lon": [140, 46.6], "alt": 250, "kjName": "湯田", "knName": "ユダ", @@ -5202,14 +3252,8 @@ "33671": { "type": "C", "elems": "11112110", - "lat": [ - 39, - 20.3 - ], - "lon": [ - 141, - 32.6 - ], + "lat": [39, 20.3], + "lon": [141, 32.6], "alt": 275, "kjName": "遠野", "knName": "トオノ", @@ -5218,14 +3262,8 @@ "33711": { "type": "C", "elems": "01000000", - "lat": [ - 39, - 13.5 - ], - "lon": [ - 141, - 0.9 - ], + "lat": [39, 13.5], + "lon": [141, 0.9], "alt": 170, "kjName": "金ヶ崎", "knName": "カネガサキ", @@ -5234,14 +3272,8 @@ "33716": { "type": "C", "elems": "11112100", - "lat": [ - 39, - 17.3 - ], - "lon": [ - 141, - 6.6 - ], + "lat": [39, 17.3], + "lon": [141, 6.6], "alt": 61, "kjName": "北上", "knName": "キタカミ", @@ -5250,14 +3282,8 @@ "33726": { "type": "C", "elems": "01000000", - "lat": [ - 39, - 14 - ], - "lon": [ - 141, - 18.6 - ], + "lat": [39, 14], + "lon": [141, 18.6], "alt": 170, "kjName": "米里", "knName": "ヨネサト", @@ -5266,14 +3292,8 @@ "33751": { "type": "C", "elems": "11112000", - "lat": [ - 39, - 16.2 - ], - "lon": [ - 141, - 52.7 - ], + "lat": [39, 16.2], + "lon": [141, 52.7], "alt": 5, "kjName": "釜石", "knName": "カマイシ", @@ -5282,14 +3302,8 @@ "33776": { "type": "C", "elems": "11112000", - "lat": [ - 39, - 8.4 - ], - "lon": [ - 141, - 3.8 - ], + "lat": [39, 8.4], + "lon": [141, 3.8], "alt": 97, "kjName": "若柳", "knName": "ワカヤナギ", @@ -5298,14 +3312,8 @@ "33781": { "type": "C", "elems": "11112000", - "lat": [ - 39, - 11 - ], - "lon": [ - 141, - 9.7 - ], + "lat": [39, 11], + "lon": [141, 9.7], "alt": 42, "kjName": "江刺", "knName": "エサシ", @@ -5314,14 +3322,8 @@ "33801": { "type": "C", "elems": "11112000", - "lat": [ - 39, - 8.5 - ], - "lon": [ - 141, - 34.4 - ], + "lat": [39, 8.5], + "lon": [141, 34.4], "alt": 80, "kjName": "住田", "knName": "スミタ", @@ -5330,14 +3332,8 @@ "33831": { "type": "C", "elems": "01000100", - "lat": [ - 39, - 0.7 - ], - "lon": [ - 140, - 51.9 - ], + "lat": [39, 0.7], + "lon": [140, 51.9], "alt": 350, "kjName": "祭畤", "knName": "マツルベ", @@ -5346,14 +3342,8 @@ "33841": { "type": "C", "elems": "01000000", - "lat": [ - 39, - 3 - ], - "lon": [ - 141, - 2.7 - ], + "lat": [39, 3], + "lon": [141, 2.7], "alt": 75, "kjName": "衣川", "knName": "コロモガワ", @@ -5362,14 +3352,8 @@ "33856": { "type": "C", "elems": "01000000", - "lat": [ - 39, - 2.3 - ], - "lon": [ - 141, - 17.8 - ], + "lat": [39, 2.3], + "lon": [141, 17.8], "alt": 140, "kjName": "大東", "knName": "ダイトウ", @@ -5378,14 +3362,8 @@ "33877": { "type": "B", "elems": "11111111", - "lat": [ - 39, - 3.8 - ], - "lon": [ - 141, - 42.8 - ], + "lat": [39, 3.8], + "lon": [141, 42.8], "alt": 37, "kjName": "大船渡", "knName": "オオフナト", @@ -5394,14 +3372,8 @@ "33911": { "type": "C", "elems": "11112110", - "lat": [ - 38, - 56 - ], - "lon": [ - 141, - 7.5 - ], + "lat": [38, 56], + "lon": [141, 7.5], "alt": 32, "kjName": "一関", "knName": "イチノセキ", @@ -5410,14 +3382,8 @@ "33921": { "type": "C", "elems": "11112000", - "lat": [ - 38, - 55.3 - ], - "lon": [ - 141, - 19.8 - ], + "lat": [38, 55.3], + "lon": [141, 19.8], "alt": 120, "kjName": "千厩", "knName": "センマヤ", @@ -5426,14 +3392,8 @@ "34012": { "type": "C", "elems": "11112100", - "lat": [ - 38, - 54.8 - ], - "lon": [ - 140, - 49.7 - ], + "lat": [38, 54.8], + "lon": [140, 49.7], "alt": 525, "kjName": "駒ノ湯", "knName": "コマノユ", @@ -5442,14 +3402,8 @@ "34026": { "type": "C", "elems": "11112000", - "lat": [ - 38, - 54.4 - ], - "lon": [ - 141, - 33.4 - ], + "lat": [38, 54.4], + "lon": [141, 33.4], "alt": 62, "kjName": "気仙沼", "knName": "ケセンヌマ", @@ -5458,14 +3412,8 @@ "34056": { "type": "C", "elems": "01000000", - "lat": [ - 38, - 48.3 - ], - "lon": [ - 140, - 56.9 - ], + "lat": [38, 48.3], + "lon": [140, 56.9], "alt": 33, "kjName": "鴬沢", "knName": "ウグイスザワ", @@ -5474,14 +3422,8 @@ "34096": { "type": "C", "elems": "11112100", - "lat": [ - 38, - 44.6 - ], - "lon": [ - 140, - 45.6 - ], + "lat": [38, 44.6], + "lon": [140, 45.6], "alt": 170, "kjName": "川渡", "knName": "カワタビ", @@ -5490,14 +3432,8 @@ "34111": { "type": "C", "elems": "11112010", - "lat": [ - 38, - 44.1 - ], - "lon": [ - 141, - 0.3 - ], + "lat": [38, 44.1], + "lon": [141, 0.3], "alt": 25, "kjName": "築館", "knName": "ツキダテ", @@ -5506,14 +3442,8 @@ "34171": { "type": "C", "elems": "11112000", - "lat": [ - 38, - 37.6 - ], - "lon": [ - 141, - 11.3 - ], + "lat": [38, 37.6], + "lon": [141, 11.3], "alt": 5, "kjName": "米山", "knName": "ヨネヤマ", @@ -5522,14 +3452,8 @@ "34186": { "type": "C", "elems": "11112000", - "lat": [ - 38, - 40.9 - ], - "lon": [ - 141, - 26.9 - ], + "lat": [38, 40.9], + "lon": [141, 26.9], "alt": 39, "kjName": "志津川", "knName": "シヅガワ", @@ -5538,14 +3462,8 @@ "34206": { "type": "C", "elems": "01000000", - "lat": [ - 38, - 34.3 - ], - "lon": [ - 140, - 43.6 - ], + "lat": [38, 34.3], + "lon": [140, 43.6], "alt": 195, "kjName": "加美", "knName": "カミ", @@ -5554,14 +3472,8 @@ "34216": { "type": "C", "elems": "11112110", - "lat": [ - 38, - 35.9 - ], - "lon": [ - 140, - 54.7 - ], + "lat": [38, 35.9], + "lon": [140, 54.7], "alt": 28, "kjName": "古川", "knName": "フルカワ", @@ -5570,14 +3482,8 @@ "34241": { "type": "C", "elems": "01000000", - "lat": [ - 38, - 31.2 - ], - "lon": [ - 141, - 27.9 - ], + "lat": [38, 31.2], + "lon": [141, 27.9], "alt": 24, "kjName": "雄勝", "knName": "オガツ", @@ -5586,14 +3492,8 @@ "34262": { "type": "C", "elems": "01000000", - "lat": [ - 38, - 24.4 - ], - "lon": [ - 140, - 43.3 - ], + "lat": [38, 24.4], + "lon": [140, 43.3], "alt": 630, "kjName": "泉ケ岳", "knName": "イズミガダケ", @@ -5602,14 +3502,8 @@ "34266": { "type": "C", "elems": "11112000", - "lat": [ - 38, - 28.4 - ], - "lon": [ - 140, - 53.3 - ], + "lat": [38, 28.4], + "lon": [140, 53.3], "alt": 57, "kjName": "大衡", "knName": "オオヒラ", @@ -5618,14 +3512,8 @@ "34276": { "type": "C", "elems": "11112000", - "lat": [ - 38, - 27.6 - ], - "lon": [ - 141, - 5.5 - ], + "lat": [38, 27.6], + "lon": [141, 5.5], "alt": 3, "kjName": "鹿島台", "knName": "カシマダイ", @@ -5634,14 +3522,8 @@ "34292": { "type": "B", "elems": "11111111", - "lat": [ - 38, - 25.6 - ], - "lon": [ - 141, - 17.9 - ], + "lat": [38, 25.6], + "lon": [141, 17.9], "alt": 43, "kjName": "石巻", "knName": "イシノマキ", @@ -5650,14 +3532,8 @@ "34296": { "type": "C", "elems": "11112000", - "lat": [ - 38, - 26.8 - ], - "lon": [ - 141, - 27 - ], + "lat": [38, 26.8], + "lon": [141, 27], "alt": 38, "kjName": "女川", "knName": "オナガワ", @@ -5666,14 +3542,8 @@ "34311": { "type": "C", "elems": "11112110", - "lat": [ - 38, - 18.2 - ], - "lon": [ - 140, - 38.2 - ], + "lat": [38, 18.2], + "lon": [140, 38.2], "alt": 265, "kjName": "新川", "knName": "ニッカワ", @@ -5682,14 +3552,8 @@ "34331": { "type": "C", "elems": "11112000", - "lat": [ - 38, - 20.3 - ], - "lon": [ - 141, - 0.8 - ], + "lat": [38, 20.3], + "lon": [141, 0.8], "alt": 105, "kjName": "塩釜", "knName": "シオガマ", @@ -5698,14 +3562,8 @@ "34392": { "type": "A", "elems": "11111111", - "lat": [ - 38, - 15.7 - ], - "lon": [ - 140, - 53.8 - ], + "lat": [38, 15.7], + "lon": [140, 53.8], "alt": 39, "kjName": "仙台", "knName": "センダイ", @@ -5714,14 +3572,8 @@ "34436": { "type": "C", "elems": "11110100", - "lat": [ - 38, - 8.3 - ], - "lon": [ - 140, - 55 - ], + "lat": [38, 8.3], + "lon": [140, 55], "alt": 2, "kjName": "名取", "knName": "ナトリ:仙台空港", @@ -5730,14 +3582,8 @@ "34461": { "type": "C", "elems": "11112110", - "lat": [ - 38, - 0.9 - ], - "lon": [ - 140, - 36.7 - ], + "lat": [38, 0.9], + "lon": [140, 36.7], "alt": 86, "kjName": "白石", "knName": "シロイシ", @@ -5746,14 +3592,8 @@ "34462": { "type": "C", "elems": "11112010", - "lat": [ - 38, - 7.6 - ], - "lon": [ - 140, - 40.8 - ], + "lat": [38, 7.6], + "lon": [140, 40.8], "alt": 112, "kjName": "蔵王", "knName": "ザオウ", @@ -5762,14 +3602,8 @@ "34471": { "type": "C", "elems": "11112000", - "lat": [ - 38, - 1.5 - ], - "lon": [ - 140, - 51.5 - ], + "lat": [38, 1.5], + "lon": [140, 51.5], "alt": 4, "kjName": "亘理", "knName": "ワタリ", @@ -5778,14 +3612,8 @@ "34506": { "type": "C", "elems": "11112000", - "lat": [ - 37, - 55.9 - ], - "lon": [ - 140, - 46.7 - ], + "lat": [37, 55.9], + "lon": [140, 46.7], "alt": 18, "kjName": "丸森", "knName": "マルモリ", @@ -5794,14 +3622,8 @@ "34526": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 49.6 - ], - "lon": [ - 140, - 43.7 - ], + "lat": [37, 49.6], + "lon": [140, 43.7], "alt": 305, "kjName": "筆甫", "knName": "ヒッポ", @@ -5810,14 +3632,8 @@ "35002": { "type": "C", "elems": "11112010", - "lat": [ - 39, - 11 - ], - "lon": [ - 139, - 32.6 - ], + "lat": [39, 11], + "lon": [139, 32.6], "alt": 58, "kjName": "飛島", "knName": "トビシマ", @@ -5826,14 +3642,8 @@ "35052": { "type": "B", "elems": "11111111", - "lat": [ - 38, - 54.5 - ], - "lon": [ - 139, - 50.6 - ], + "lat": [38, 54.5], + "lon": [139, 50.6], "alt": 3, "kjName": "酒田", "knName": "サカタ", @@ -5842,14 +3652,8 @@ "35056": { "type": "C", "elems": "01000000", - "lat": [ - 38, - 57.9 - ], - "lon": [ - 139, - 59.9 - ], + "lat": [38, 57.9], + "lon": [139, 59.9], "alt": 65, "kjName": "酒田大沢", "knName": "サカタオオサワ", @@ -5858,14 +3662,8 @@ "35071": { "type": "C", "elems": "11112000", - "lat": [ - 38, - 55.1 - ], - "lon": [ - 140, - 12 - ], + "lat": [38, 55.1], + "lon": [140, 12], "alt": 88, "kjName": "差首鍋", "knName": "サスナベ", @@ -5874,14 +3672,8 @@ "35086": { "type": "C", "elems": "11110000", - "lat": [ - 38, - 48.7 - ], - "lon": [ - 139, - 47.2 - ], + "lat": [38, 48.7], + "lon": [139, 47.2], "alt": 22, "kjName": "浜中", "knName": "ハマナカ:庄内空港", @@ -5890,14 +3682,8 @@ "35116": { "type": "C", "elems": "11112100", - "lat": [ - 38, - 52.7 - ], - "lon": [ - 140, - 19.9 - ], + "lat": [38, 52.7], + "lon": [140, 19.9], "alt": 170, "kjName": "金山", "knName": "カネヤマ", @@ -5906,14 +3692,8 @@ "35141": { "type": "C", "elems": "11112010", - "lat": [ - 38, - 44.1 - ], - "lon": [ - 139, - 49.7 - ], + "lat": [38, 44.1], + "lon": [139, 49.7], "alt": 16, "kjName": "鶴岡", "knName": "ツルオカ", @@ -5922,14 +3702,8 @@ "35146": { "type": "C", "elems": "11112100", - "lat": [ - 38, - 48 - ], - "lon": [ - 139, - 58.4 - ], + "lat": [38, 48], + "lon": [139, 58.4], "alt": 17, "kjName": "狩川", "knName": "カリカワ", @@ -5938,14 +3712,8 @@ "35162": { "type": "B", "elems": "11111111", - "lat": [ - 38, - 45.4 - ], - "lon": [ - 140, - 18.7 - ], + "lat": [38, 45.4], + "lon": [140, 18.7], "alt": 105, "kjName": "新庄", "knName": "シンジョウ", @@ -5954,14 +3722,8 @@ "35171": { "type": "C", "elems": "01000000", - "lat": [ - 38, - 45.3 - ], - "lon": [ - 140, - 24.8 - ], + "lat": [38, 45.3], + "lon": [140, 24.8], "alt": 150, "kjName": "瀬見", "knName": "セミ", @@ -5970,14 +3732,8 @@ "35176": { "type": "C", "elems": "11112100", - "lat": [ - 38, - 45.5 - ], - "lon": [ - 140, - 31 - ], + "lat": [38, 45.5], + "lon": [140, 31], "alt": 212, "kjName": "向町", "knName": "ムカイマチ", @@ -5986,14 +3742,8 @@ "35201": { "type": "C", "elems": "01000100", - "lat": [ - 38, - 40.3 - ], - "lon": [ - 139, - 50.9 - ], + "lat": [38, 40.3], + "lon": [139, 50.9], "alt": 33, "kjName": "櫛引", "knName": "クシビキ", @@ -6002,14 +3752,8 @@ "35216": { "type": "C", "elems": "11112100", - "lat": [ - 38, - 36.4 - ], - "lon": [ - 140, - 9.8 - ], + "lat": [38, 36.4], + "lon": [140, 9.8], "alt": 330, "kjName": "肘折", "knName": "ヒジオリ", @@ -6018,14 +3762,8 @@ "35231": { "type": "C", "elems": "11112110", - "lat": [ - 38, - 36.5 - ], - "lon": [ - 140, - 24.7 - ], + "lat": [38, 36.5], + "lon": [140, 24.7], "alt": 106, "kjName": "尾花沢", "knName": "オバナザワ", @@ -6034,14 +3772,8 @@ "35246": { "type": "C", "elems": "11112010", - "lat": [ - 38, - 34 - ], - "lon": [ - 139, - 33.1 - ], + "lat": [38, 34], + "lon": [139, 33.1], "alt": 18, "kjName": "鼠ケ関", "knName": "ネズガセキ", @@ -6050,14 +3782,8 @@ "35256": { "type": "C", "elems": "01000000", - "lat": [ - 38, - 30.5 - ], - "lon": [ - 139, - 46.9 - ], + "lat": [38, 30.5], + "lon": [139, 46.9], "alt": 272, "kjName": "荒沢", "knName": "アラサワ", @@ -6066,14 +3792,8 @@ "35332": { "type": "C", "elems": "11112010", - "lat": [ - 38, - 27.6 - ], - "lon": [ - 140, - 20.9 - ], + "lat": [38, 27.6], + "lon": [140, 20.9], "alt": 80, "kjName": "村山", "knName": "ムラヤマ", @@ -6082,14 +3802,8 @@ "35334": { "type": "C", "elems": "11110000", - "lat": [ - 38, - 24.7 - ], - "lon": [ - 140, - 22.2 - ], + "lat": [38, 24.7], + "lon": [140, 22.2], "alt": 105, "kjName": "東根", "knName": "ヒガシネ:山形空港", @@ -6098,14 +3812,8 @@ "35361": { "type": "C", "elems": "11112100", - "lat": [ - 38, - 23.4 - ], - "lon": [ - 139, - 59.6 - ], + "lat": [38, 23.4], + "lon": [139, 59.6], "alt": 440, "kjName": "大井沢", "knName": "オオイサワ", @@ -6114,14 +3822,8 @@ "35376": { "type": "C", "elems": "11112100", - "lat": [ - 38, - 22.2 - ], - "lon": [ - 140, - 11.5 - ], + "lat": [38, 22.2], + "lon": [140, 11.5], "alt": 133, "kjName": "左沢", "knName": "アテラザワ", @@ -6130,14 +3832,8 @@ "35426": { "type": "A", "elems": "11111111", - "lat": [ - 38, - 15.3 - ], - "lon": [ - 140, - 20.7 - ], + "lat": [38, 15.3], + "lon": [140, 20.7], "alt": 153, "kjName": "山形", "knName": "ヤマガタ", @@ -6146,14 +3842,8 @@ "35456": { "type": "C", "elems": "11112100", - "lat": [ - 38, - 6.3 - ], - "lon": [ - 140, - 0.9 - ], + "lat": [38, 6.3], + "lon": [140, 0.9], "alt": 210, "kjName": "長井", "knName": "ナガイ", @@ -6162,14 +3852,8 @@ "35466": { "type": "C", "elems": "01000000", - "lat": [ - 38, - 7 - ], - "lon": [ - 140, - 12.8 - ], + "lat": [38, 7], + "lon": [140, 12.8], "alt": 270, "kjName": "上山中山", "knName": "カミノヤマナカヤマ", @@ -6178,14 +3862,8 @@ "35486": { "type": "C", "elems": "11112100", - "lat": [ - 38, - 4.7 - ], - "lon": [ - 139, - 44.1 - ], + "lat": [38, 4.7], + "lon": [139, 44.1], "alt": 140, "kjName": "小国", "knName": "オグニ", @@ -6194,14 +3872,8 @@ "35511": { "type": "C", "elems": "11112000", - "lat": [ - 38, - 0.2 - ], - "lon": [ - 140, - 12.4 - ], + "lat": [38, 0.2], + "lon": [140, 12.4], "alt": 220, "kjName": "高畠", "knName": "タカハタ", @@ -6210,14 +3882,8 @@ "35537": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 54.6 - ], - "lon": [ - 139, - 50.6 - ], + "lat": [37, 54.6], + "lon": [139, 50.6], "alt": 390, "kjName": "中津川", "knName": "ナカツガワ", @@ -6226,14 +3892,8 @@ "35541": { "type": "C", "elems": "11112000", - "lat": [ - 37, - 59.4 - ], - "lon": [ - 139, - 57.2 - ], + "lat": [37, 59.4], + "lon": [139, 57.2], "alt": 260, "kjName": "高峰", "knName": "タカミネ", @@ -6242,14 +3902,8 @@ "35552": { "type": "C", "elems": "11112110", - "lat": [ - 37, - 54.7 - ], - "lon": [ - 140, - 8.6 - ], + "lat": [37, 54.7], + "lon": [140, 8.6], "alt": 245, "kjName": "米沢", "knName": "ヨネザワ", @@ -6258,14 +3912,8 @@ "36056": { "type": "C", "elems": "11112100", - "lat": [ - 37, - 53.5 - ], - "lon": [ - 140, - 26.2 - ], + "lat": [37, 53.5], + "lon": [140, 26.2], "alt": 200, "kjName": "茂庭", "knName": "モニワ", @@ -6274,14 +3922,8 @@ "36066": { "type": "C", "elems": "11112000", - "lat": [ - 37, - 51.1 - ], - "lon": [ - 140, - 35.3 - ], + "lat": [37, 51.1], + "lon": [140, 35.3], "alt": 43, "kjName": "梁川", "knName": "ヤナガワ", @@ -6290,14 +3932,8 @@ "36106": { "type": "C", "elems": "11112000", - "lat": [ - 37, - 43.3 - ], - "lon": [ - 140, - 3.5 - ], + "lat": [37, 43.3], + "lon": [140, 3.5], "alt": 824, "kjName": "桧原", "knName": "ヒバラ", @@ -6306,14 +3942,8 @@ "36127": { "type": "A", "elems": "11111111", - "lat": [ - 37, - 45.5 - ], - "lon": [ - 140, - 28.2 - ], + "lat": [37, 45.5], + "lon": [140, 28.2], "alt": 67, "kjName": "福島", "knName": "フクシマ", @@ -6322,14 +3952,8 @@ "36151": { "type": "C", "elems": "11112010", - "lat": [ - 37, - 47 - ], - "lon": [ - 140, - 55.5 - ], + "lat": [37, 47], + "lon": [140, 55.5], "alt": 9, "kjName": "相馬", "knName": "ソウマ", @@ -6338,14 +3962,8 @@ "36176": { "type": "C", "elems": "11112000", - "lat": [ - 37, - 39.5 - ], - "lon": [ - 139, - 51.8 - ], + "lat": [37, 39.5], + "lon": [139, 51.8], "alt": 212, "kjName": "喜多方", "knName": "キタカタ", @@ -6354,14 +3972,8 @@ "36196": { "type": "C", "elems": "11112000", - "lat": [ - 37, - 40.1 - ], - "lon": [ - 140, - 15.6 - ], + "lat": [37, 40.1], + "lon": [140, 15.6], "alt": 1220, "kjName": "鷲倉", "knName": "ワシクラ", @@ -6370,14 +3982,8 @@ "36221": { "type": "C", "elems": "11112000", - "lat": [ - 37, - 39.9 - ], - "lon": [ - 140, - 43.6 - ], + "lat": [37, 39.9], + "lon": [140, 43.6], "alt": 463, "kjName": "飯舘", "knName": "イイタテ", @@ -6386,14 +3992,8 @@ "36231": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 38.3 - ], - "lon": [ - 140, - 59 - ], + "lat": [37, 38.3], + "lon": [140, 59], "alt": 17, "kjName": "原町", "knName": "ハラマチ", @@ -6402,14 +4002,8 @@ "36251": { "type": "C", "elems": "11112100", - "lat": [ - 37, - 35.3 - ], - "lon": [ - 139, - 39.4 - ], + "lat": [37, 35.3], + "lon": [139, 39.4], "alt": 165, "kjName": "西会津", "knName": "ニシアイヅ", @@ -6418,14 +4012,8 @@ "36276": { "type": "C", "elems": "11112110", - "lat": [ - 37, - 33.1 - ], - "lon": [ - 140, - 6.5 - ], + "lat": [37, 33.1], + "lon": [140, 6.5], "alt": 519, "kjName": "猪苗代", "knName": "イナワシロ", @@ -6434,14 +4022,8 @@ "36291": { "type": "C", "elems": "11112000", - "lat": [ - 37, - 35 - ], - "lon": [ - 140, - 25.8 - ], + "lat": [37, 35], + "lon": [140, 25.8], "alt": 235, "kjName": "二本松", "knName": "ニホンマツ", @@ -6450,14 +4032,8 @@ "36307": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 33.6 - ], - "lon": [ - 140, - 45.2 - ], + "lat": [37, 33.6], + "lon": [140, 45.2], "alt": 400, "kjName": "津島", "knName": "ツシマ", @@ -6466,14 +4042,8 @@ "36342": { "type": "C", "elems": "11112100", - "lat": [ - 37, - 28.4 - ], - "lon": [ - 139, - 31.7 - ], + "lat": [37, 28.4], + "lon": [139, 31.7], "alt": 296, "kjName": "金山", "knName": "カネヤマ", @@ -6482,14 +4052,8 @@ "36361": { "type": "B", "elems": "11111111", - "lat": [ - 37, - 29.3 - ], - "lon": [ - 139, - 54.6 - ], + "lat": [37, 29.3], + "lon": [139, 54.6], "alt": 212, "kjName": "若松", "knName": "ワカマツ", @@ -6498,14 +4062,8 @@ "36391": { "type": "C", "elems": "11112010", - "lat": [ - 37, - 26.1 - ], - "lon": [ - 140, - 34.6 - ], + "lat": [37, 26.1], + "lon": [140, 34.6], "alt": 421, "kjName": "船引", "knName": "フネヒキ", @@ -6514,14 +4072,8 @@ "36411": { "type": "C", "elems": "11112000", - "lat": [ - 37, - 29.5 - ], - "lon": [ - 140, - 57.9 - ], + "lat": [37, 29.5], + "lon": [140, 57.9], "alt": 47, "kjName": "浪江", "knName": "ナミエ", @@ -6530,14 +4082,8 @@ "36426": { "type": "C", "elems": "11112100", - "lat": [ - 37, - 20.6 - ], - "lon": [ - 139, - 18.8 - ], + "lat": [37, 20.6], + "lon": [139, 18.8], "alt": 377, "kjName": "只見", "knName": "タダミ", @@ -6546,14 +4092,8 @@ "36461": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 23.3 - ], - "lon": [ - 140, - 5.4 - ], + "lat": [37, 23.3], + "lon": [140, 5.4], "alt": 536, "kjName": "湖南", "knName": "コナン", @@ -6562,14 +4102,8 @@ "36476": { "type": "C", "elems": "11112010", - "lat": [ - 37, - 22.1 - ], - "lon": [ - 140, - 19.8 - ], + "lat": [37, 22.1], + "lon": [140, 19.8], "alt": 249, "kjName": "郡山", "knName": "コオリヤマ", @@ -6578,14 +4112,8 @@ "36501": { "type": "C", "elems": "11112000", - "lat": [ - 37, - 20.2 - ], - "lon": [ - 140, - 48.5 - ], + "lat": [37, 20.2], + "lon": [140, 48.5], "alt": 410, "kjName": "川内", "knName": "カワウチ", @@ -6594,14 +4122,8 @@ "36511": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 20.8 - ], - "lon": [ - 141, - 1 - ], + "lat": [37, 20.8], + "lon": [141, 1], "alt": 50, "kjName": "富岡", "knName": "トミオカ", @@ -6610,14 +4132,8 @@ "36536": { "type": "C", "elems": "11112110", - "lat": [ - 37, - 15.9 - ], - "lon": [ - 139, - 32.2 - ], + "lat": [37, 15.9], + "lon": [139, 32.2], "alt": 494, "kjName": "南郷", "knName": "ナンゴウ", @@ -6626,14 +4142,8 @@ "36562": { "type": "C", "elems": "11112100", - "lat": [ - 37, - 16.6 - ], - "lon": [ - 140, - 3.8 - ], + "lat": [37, 16.6], + "lon": [140, 3.8], "alt": 646, "kjName": "湯本", "knName": "ユモト", @@ -6642,14 +4152,8 @@ "36571": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 17.3 - ], - "lon": [ - 140, - 13.1 - ], + "lat": [37, 17.3], + "lon": [140, 13.1], "alt": 317, "kjName": "長沼", "knName": "ナガヌマ", @@ -6658,14 +4162,8 @@ "36581": { "type": "C", "elems": "11110100", - "lat": [ - 37, - 13.6 - ], - "lon": [ - 140, - 25.6 - ], + "lat": [37, 13.6], + "lon": [140, 25.6], "alt": 372, "kjName": "玉川", "knName": "タマカワ:福島空港", @@ -6674,14 +4172,8 @@ "36591": { "type": "C", "elems": "11112000", - "lat": [ - 37, - 17.2 - ], - "lon": [ - 140, - 37.5 - ], + "lat": [37, 17.2], + "lon": [140, 37.5], "alt": 433, "kjName": "小野新町", "knName": "オノニイマチ", @@ -6690,14 +4182,8 @@ "36597": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 14.8 - ], - "lon": [ - 140, - 43.4 - ], + "lat": [37, 14.8], + "lon": [140, 43.4], "alt": 492, "kjName": "川前", "knName": "カワマエ", @@ -6706,14 +4192,8 @@ "36611": { "type": "C", "elems": "11112000", - "lat": [ - 37, - 14 - ], - "lon": [ - 141, - 0 - ], + "lat": [37, 14], + "lon": [141, 0], "alt": 43, "kjName": "広野", "knName": "ヒロノ", @@ -6722,14 +4202,8 @@ "36641": { "type": "C", "elems": "11112100", - "lat": [ - 37, - 12.4 - ], - "lon": [ - 139, - 47.7 - ], + "lat": [37, 12.4], + "lon": [139, 47.7], "alt": 544, "kjName": "田島", "knName": "タジマ", @@ -6738,14 +4212,8 @@ "36667": { "type": "B", "elems": "11111111", - "lat": [ - 37, - 7.9 - ], - "lon": [ - 140, - 12.9 - ], + "lat": [37, 7.9], + "lon": [140, 12.9], "alt": 355, "kjName": "白河", "knName": "シラカワ", @@ -6754,14 +4222,8 @@ "36676": { "type": "C", "elems": "11112000", - "lat": [ - 37, - 8.8 - ], - "lon": [ - 140, - 27.6 - ], + "lat": [37, 8.8], + "lon": [140, 27.6], "alt": 290, "kjName": "石川", "knName": "イシカワ", @@ -6770,14 +4232,8 @@ "36716": { "type": "C", "elems": "11112100", - "lat": [ - 37, - 0.6 - ], - "lon": [ - 139, - 22.5 - ], + "lat": [37, 0.6], + "lon": [139, 22.5], "alt": 973, "kjName": "桧枝岐", "knName": "ヒノエマタ", @@ -6786,14 +4242,8 @@ "36726": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 5.5 - ], - "lon": [ - 139, - 31.9 - ], + "lat": [37, 5.5], + "lon": [139, 31.9], "alt": 690, "kjName": "舘岩", "knName": "タテイワ", @@ -6802,14 +4252,8 @@ "36781": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 3.9 - ], - "lon": [ - 140, - 52.6 - ], + "lat": [37, 3.9], + "lon": [140, 52.6], "alt": 12, "kjName": "平", "knName": "タイラ", @@ -6818,14 +4262,8 @@ "36821": { "type": "C", "elems": "11112010", - "lat": [ - 36, - 56.3 - ], - "lon": [ - 140, - 24.5 - ], + "lat": [36, 56.3], + "lon": [140, 24.5], "alt": 183, "kjName": "東白川", "knName": "ヒガシシラカワ", @@ -6834,14 +4272,8 @@ "36836": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 56 - ], - "lon": [ - 140, - 44 - ], + "lat": [36, 56], + "lon": [140, 44], "alt": 25, "kjName": "山田", "knName": "ヤマダ", @@ -6850,14 +4282,8 @@ "36846": { "type": "B", "elems": "11111011", - "lat": [ - 36, - 56.8 - ], - "lon": [ - 140, - 54.2 - ], + "lat": [36, 56.8], + "lon": [140, 54.2], "alt": 3, "kjName": "小名浜", "knName": "オナハマ", @@ -6866,14 +4292,8 @@ "40041": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 52.1 - ], - "lon": [ - 140, - 38.2 - ], + "lat": [36, 52.1], + "lon": [140, 38.2], "alt": 370, "kjName": "花園", "knName": "ハナゾノ", @@ -6882,14 +4302,8 @@ "40046": { "type": "C", "elems": "11112010", - "lat": [ - 36, - 50 - ], - "lon": [ - 140, - 46.3 - ], + "lat": [36, 50], + "lon": [140, 46.3], "alt": 5, "kjName": "北茨城", "knName": "キタイバラキ", @@ -6898,14 +4312,8 @@ "40061": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 46.7 - ], - "lon": [ - 140, - 20.7 - ], + "lat": [36, 46.7], + "lon": [140, 20.7], "alt": 120, "kjName": "大子", "knName": "ダイゴ", @@ -6914,14 +4322,8 @@ "40066": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 46.7 - ], - "lon": [ - 140, - 28.9 - ], + "lat": [36, 46.7], + "lon": [140, 28.9], "alt": 270, "kjName": "徳田", "knName": "トクダ", @@ -6930,14 +4332,8 @@ "40076": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 44.6 - ], - "lon": [ - 140, - 35.6 - ], + "lat": [36, 44.6], + "lon": [140, 35.6], "alt": 395, "kjName": "大能", "knName": "オオノウ", @@ -6946,14 +4342,8 @@ "40091": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 36.4 - ], - "lon": [ - 140, - 19.5 - ], + "lat": [36, 36.4], + "lon": [140, 19.5], "alt": 95, "kjName": "常陸大宮", "knName": "ヒタチオオミヤ", @@ -6962,14 +4352,8 @@ "40126": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 30.9 - ], - "lon": [ - 140, - 28.4 - ], + "lat": [36, 30.9], + "lon": [140, 28.4], "alt": 17, "kjName": "中野", "knName": "ナカノ", @@ -6978,14 +4362,8 @@ "40136": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 34.8 - ], - "lon": [ - 140, - 38.7 - ], + "lat": [36, 34.8], + "lon": [140, 38.7], "alt": 34, "kjName": "日立", "knName": "ヒタチ", @@ -6994,14 +4372,8 @@ "40181": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 20 - ], - "lon": [ - 140, - 2 - ], + "lat": [36, 20], + "lon": [140, 2], "alt": 40, "kjName": "門井", "knName": "カドイ", @@ -7010,14 +4382,8 @@ "40191": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 23.7 - ], - "lon": [ - 140, - 14.4 - ], + "lat": [36, 23.7], + "lon": [140, 14.4], "alt": 72, "kjName": "笠間", "knName": "カサマ", @@ -7026,14 +4392,8 @@ "40201": { "type": "A", "elems": "11111111", - "lat": [ - 36, - 22.8 - ], - "lon": [ - 140, - 28 - ], + "lat": [36, 22.8], + "lon": [140, 28], "alt": 29, "kjName": "水戸", "knName": "ミト", @@ -7042,14 +4402,8 @@ "40221": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 12.1 - ], - "lon": [ - 139, - 43 - ], + "lat": [36, 12.1], + "lon": [139, 43], "alt": 20, "kjName": "古河", "knName": "コガ", @@ -7058,14 +4412,8 @@ "40231": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 16.9 - ], - "lon": [ - 139, - 59.3 - ], + "lat": [36, 16.9], + "lon": [139, 59.3], "alt": 24, "kjName": "下館", "knName": "シモダテ", @@ -7074,14 +4422,8 @@ "40241": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 14 - ], - "lon": [ - 140, - 11.3 - ], + "lat": [36, 14], + "lon": [140, 11.3], "alt": 27, "kjName": "柿岡", "knName": "カキオカ", @@ -7090,14 +4432,8 @@ "40251": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 14.2 - ], - "lon": [ - 140, - 19.5 - ], + "lat": [36, 14.2], + "lon": [140, 19.5], "alt": 25, "kjName": "美野里", "knName": "ミノリ", @@ -7106,14 +4442,8 @@ "40281": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 10.1 - ], - "lon": [ - 139, - 56.7 - ], + "lat": [36, 10.1], + "lon": [139, 56.7], "alt": 20, "kjName": "下妻", "knName": "シモツマ", @@ -7122,14 +4452,8 @@ "40311": { "type": "C", "elems": "11112010", - "lat": [ - 36, - 10.1 - ], - "lon": [ - 140, - 31.6 - ], + "lat": [36, 10.1], + "lon": [140, 31.6], "alt": 32, "kjName": "鉾田", "knName": "ホコタ", @@ -7138,14 +4462,8 @@ "40326": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 2.1 - ], - "lon": [ - 139, - 53.6 - ], + "lat": [36, 2.1], + "lon": [139, 53.6], "alt": 16, "kjName": "坂東", "knName": "バンドウ", @@ -7154,14 +4472,8 @@ "40336": { "type": "C", "elems": "11111100", - "lat": [ - 36, - 3.4 - ], - "lon": [ - 140, - 7.5 - ], + "lat": [36, 3.4], + "lon": [140, 7.5], "alt": 25, "kjName": "つくば", "knName": "ツクバ", @@ -7170,14 +4482,8 @@ "40341": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 6.2 - ], - "lon": [ - 140, - 13.2 - ], + "lat": [36, 6.2], + "lon": [140, 13.2], "alt": 26, "kjName": "土浦", "knName": "ツチウラ", @@ -7186,14 +4492,8 @@ "40391": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 57.6 - ], - "lon": [ - 140, - 19.2 - ], + "lat": [35, 57.6], + "lon": [140, 19.2], "alt": 25, "kjName": "江戸崎", "knName": "エドサキ", @@ -7202,14 +4502,8 @@ "40406": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 57.8 - ], - "lon": [ - 140, - 37.3 - ], + "lat": [35, 57.8], + "lon": [140, 37.3], "alt": 37, "kjName": "鹿嶋", "knName": "カシマ", @@ -7218,14 +4512,8 @@ "40426": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 53.4 - ], - "lon": [ - 140, - 12.7 - ], + "lat": [35, 53.4], + "lon": [140, 12.7], "alt": 4, "kjName": "龍ケ崎", "knName": "リュウガサキ", @@ -7234,14 +4522,8 @@ "41011": { "type": "C", "elems": "11112110", - "lat": [ - 37, - 7.4 - ], - "lon": [ - 140, - 2.1 - ], + "lat": [37, 7.4], + "lon": [140, 2.1], "alt": 749, "kjName": "那須高原", "knName": "ナスコウゲン", @@ -7250,14 +4532,8 @@ "41076": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 55.3 - ], - "lon": [ - 139, - 41.7 - ], + "lat": [36, 55.3], + "lon": [139, 41.7], "alt": 620, "kjName": "五十里", "knName": "イカリ", @@ -7266,14 +4542,8 @@ "41091": { "type": "C", "elems": "11112010", - "lat": [ - 36, - 58.9 - ], - "lon": [ - 140, - 1.1 - ], + "lat": [36, 58.9], + "lon": [140, 1.1], "alt": 343, "kjName": "黒磯", "knName": "クロイソ", @@ -7282,14 +4552,8 @@ "41116": { "type": "C", "elems": "11112100", - "lat": [ - 36, - 53.5 - ], - "lon": [ - 139, - 34.1 - ], + "lat": [36, 53.5], + "lon": [139, 34.1], "alt": 925, "kjName": "土呂部", "knName": "ドロブ", @@ -7298,14 +4562,8 @@ "41141": { "type": "C", "elems": "11112010", - "lat": [ - 36, - 50.4 - ], - "lon": [ - 140, - 2.1 - ], + "lat": [36, 50.4], + "lon": [140, 2.1], "alt": 188, "kjName": "大田原", "knName": "オオタワラ", @@ -7314,14 +4572,8 @@ "41166": { "type": "B", "elems": "11111111", - "lat": [ - 36, - 44.3 - ], - "lon": [ - 139, - 30 - ], + "lat": [36, 44.3], + "lon": [139, 30], "alt": 1292, "kjName": "奥日光", "knName": "オクニッコウ", @@ -7330,14 +4582,8 @@ "41171": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 43.6 - ], - "lon": [ - 139, - 40.6 - ], + "lat": [36, 43.6], + "lon": [139, 40.6], "alt": 414, "kjName": "今市", "knName": "イマイチ", @@ -7346,14 +4592,8 @@ "41181": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 45.4 - ], - "lon": [ - 139, - 53 - ], + "lat": [36, 45.4], + "lon": [139, 53], "alt": 225, "kjName": "塩谷", "knName": "シオヤ", @@ -7362,14 +4602,8 @@ "41211": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 38.8 - ], - "lon": [ - 139, - 26.9 - ], + "lat": [36, 38.8], + "lon": [139, 26.9], "alt": 650, "kjName": "足尾", "knName": "アシオ", @@ -7378,14 +4612,8 @@ "41241": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 36.4 - ], - "lon": [ - 139, - 59.9 - ], + "lat": [36, 36.4], + "lon": [139, 59.9], "alt": 148, "kjName": "高根沢", "knName": "タカネザワ", @@ -7394,14 +4622,8 @@ "41247": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 38.5 - ], - "lon": [ - 140, - 7 - ], + "lat": [36, 38.5], + "lon": [140, 7], "alt": 82, "kjName": "那須烏山", "knName": "ナスカラスヤマ", @@ -7410,14 +4632,8 @@ "41271": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 35.5 - ], - "lon": [ - 139, - 44.1 - ], + "lat": [36, 35.5], + "lon": [139, 44.1], "alt": 165, "kjName": "鹿沼", "knName": "カヌマ", @@ -7426,14 +4642,8 @@ "41277": { "type": "A", "elems": "11111111", - "lat": [ - 36, - 32.9 - ], - "lon": [ - 139, - 52.1 - ], + "lat": [36, 32.9], + "lon": [139, 52.1], "alt": 119, "kjName": "宇都宮", "knName": "ウツノミヤ", @@ -7442,14 +4652,8 @@ "41311": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 25.9 - ], - "lon": [ - 139, - 35.4 - ], + "lat": [36, 25.9], + "lon": [139, 35.4], "alt": 120, "kjName": "葛生", "knName": "クズウ", @@ -7458,14 +4662,8 @@ "41331": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 28.6 - ], - "lon": [ - 139, - 59.2 - ], + "lat": [36, 28.6], + "lon": [139, 59.2], "alt": 91, "kjName": "真岡", "knName": "モオカ", @@ -7474,14 +4672,8 @@ "41356": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 20.5 - ], - "lon": [ - 139, - 27.7 - ], + "lat": [36, 20.5], + "lon": [139, 27.7], "alt": 35, "kjName": "足利", "knName": "アシカガ", @@ -7490,14 +4682,8 @@ "41361": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 21.8 - ], - "lon": [ - 139, - 34.2 - ], + "lat": [36, 21.8], + "lon": [139, 34.2], "alt": 68, "kjName": "佐野", "knName": "サノ", @@ -7506,14 +4692,8 @@ "41371": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 22.4 - ], - "lon": [ - 139, - 42.2 - ], + "lat": [36, 22.4], + "lon": [139, 42.2], "alt": 65, "kjName": "栃木", "knName": "トチギ", @@ -7522,14 +4702,8 @@ "41376": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 20.3 - ], - "lon": [ - 139, - 49.8 - ], + "lat": [36, 20.3], + "lon": [139, 49.8], "alt": 44, "kjName": "小山", "knName": "オヤマ", @@ -7538,14 +4712,8 @@ "42046": { "type": "C", "elems": "11112110", - "lat": [ - 36, - 51.8 - ], - "lon": [ - 139, - 3.5 - ], + "lat": [36, 51.8], + "lon": [139, 3.5], "alt": 700, "kjName": "藤原", "knName": "フジワラ", @@ -7554,14 +4722,8 @@ "42091": { "type": "C", "elems": "11112110", - "lat": [ - 36, - 46.4 - ], - "lon": [ - 138, - 57.9 - ], + "lat": [36, 46.4], + "lon": [138, 57.9], "alt": 524, "kjName": "みなかみ", "knName": "ミナカミ", @@ -7570,14 +4732,8 @@ "42106": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 46.3 - ], - "lon": [ - 139, - 14.3 - ], + "lat": [36, 46.3], + "lon": [139, 14.3], "alt": 861, "kjName": "片品", "knName": "カタシナ", @@ -7586,14 +4742,8 @@ "42121": { "type": "C", "elems": "11112100", - "lat": [ - 36, - 37 - ], - "lon": [ - 138, - 35.5 - ], + "lat": [36, 37], + "lon": [138, 35.5], "alt": 1223, "kjName": "草津", "knName": "クサツ", @@ -7602,14 +4752,8 @@ "42146": { "type": "C", "elems": "11112010", - "lat": [ - 36, - 40.1 - ], - "lon": [ - 139, - 1.3 - ], + "lat": [36, 40.1], + "lon": [139, 1.3], "alt": 390, "kjName": "沼田", "knName": "ヌマタ", @@ -7618,14 +4762,8 @@ "42186": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 35.2 - ], - "lon": [ - 138, - 51 - ], + "lat": [36, 35.2], + "lon": [138, 51], "alt": 354, "kjName": "中之条", "knName": "ナカノジョウ", @@ -7634,14 +4772,8 @@ "42221": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 27.8 - ], - "lon": [ - 138, - 27.8 - ], + "lat": [36, 27.8], + "lon": [138, 27.8], "alt": 1230, "kjName": "田代", "knName": "タシロ", @@ -7650,14 +4782,8 @@ "42241": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 28.3 - ], - "lon": [ - 138, - 52.4 - ], + "lat": [36, 28.3], + "lon": [138, 52.4], "alt": 1088, "kjName": "榛名山", "knName": "ハルナサン", @@ -7666,14 +4792,8 @@ "42251": { "type": "A", "elems": "11111111", - "lat": [ - 36, - 24.3 - ], - "lon": [ - 139, - 3.6 - ], + "lat": [36, 24.3], + "lon": [139, 3.6], "alt": 112, "kjName": "前橋", "knName": "マエバシ", @@ -7682,14 +4802,8 @@ "42261": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 30.1 - ], - "lon": [ - 139, - 17 - ], + "lat": [36, 30.1], + "lon": [139, 17], "alt": 285, "kjName": "黒保根", "knName": "クロホネ", @@ -7698,14 +4812,8 @@ "42266": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 24.6 - ], - "lon": [ - 139, - 19.5 - ], + "lat": [36, 24.6], + "lon": [139, 19.5], "alt": 117, "kjName": "桐生", "knName": "キリュウ", @@ -7714,14 +4822,8 @@ "42286": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 22.6 - ], - "lon": [ - 138, - 53.7 - ], + "lat": [36, 22.6], + "lon": [138, 53.7], "alt": 183, "kjName": "上里見", "knName": "カミサトミ", @@ -7730,14 +4832,8 @@ "42302": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 19.9 - ], - "lon": [ - 139, - 9.9 - ], + "lat": [36, 19.9], + "lon": [139, 9.9], "alt": 64, "kjName": "伊勢崎", "knName": "イセサキ", @@ -7746,14 +4842,8 @@ "42326": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 14.7 - ], - "lon": [ - 138, - 42.4 - ], + "lat": [36, 14.7], + "lon": [138, 42.4], "alt": 375, "kjName": "西野牧", "knName": "ニシノマキ", @@ -7762,14 +4852,8 @@ "42341": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 14.5 - ], - "lon": [ - 139, - 4.2 - ], + "lat": [36, 14.5], + "lon": [139, 4.2], "alt": 95, "kjName": "藤岡", "knName": "フジオカ", @@ -7778,14 +4862,8 @@ "42366": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 14.4 - ], - "lon": [ - 139, - 30.8 - ], + "lat": [36, 14.4], + "lon": [139, 30.8], "alt": 23, "kjName": "館林", "knName": "タテバヤシ", @@ -7794,14 +4872,8 @@ "42396": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 6.5 - ], - "lon": [ - 138, - 53.8 - ], + "lat": [36, 6.5], + "lon": [138, 53.8], "alt": 357, "kjName": "神流", "knName": "カンナ", @@ -7810,14 +4882,8 @@ "43051": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 6.3 - ], - "lon": [ - 139, - 11 - ], + "lat": [36, 6.3], + "lon": [139, 11], "alt": 128, "kjName": "寄居", "knName": "ヨリイ", @@ -7826,14 +4892,8 @@ "43056": { "type": "A", "elems": "11111111", - "lat": [ - 36, - 9 - ], - "lon": [ - 139, - 22.8 - ], + "lat": [36, 9], + "lon": [139, 22.8], "alt": 30, "kjName": "熊谷", "knName": "クマガヤ", @@ -7842,14 +4902,8 @@ "43091": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 3.2 - ], - "lon": [ - 138, - 58.8 - ], + "lat": [36, 3.2], + "lon": [138, 58.8], "alt": 275, "kjName": "上吉田", "knName": "カミヨシダ", @@ -7858,14 +4912,8 @@ "43121": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 3.9 - ], - "lon": [ - 139, - 31.3 - ], + "lat": [36, 3.9], + "lon": [139, 31.3], "alt": 15, "kjName": "鴻巣", "knName": "コウノス", @@ -7874,14 +4922,8 @@ "43126": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 5.2 - ], - "lon": [ - 139, - 38.1 - ], + "lat": [36, 5.2], + "lon": [139, 38.1], "alt": 12, "kjName": "久喜", "knName": "クキ", @@ -7890,14 +4932,8 @@ "43151": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 55.6 - ], - "lon": [ - 138, - 55.4 - ], + "lat": [35, 55.6], + "lon": [138, 55.4], "alt": 975, "kjName": "三峰", "knName": "ミツミネ", @@ -7906,14 +4942,8 @@ "43156": { "type": "B", "elems": "11111111", - "lat": [ - 35, - 59.4 - ], - "lon": [ - 139, - 4.4 - ], + "lat": [35, 59.4], + "lon": [139, 4.4], "alt": 232, "kjName": "秩父", "knName": "チチブ", @@ -7922,14 +4952,8 @@ "43157": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 55.2 - ], - "lon": [ - 139, - 4.2 - ], + "lat": [35, 55.2], + "lon": [139, 4.2], "alt": 400, "kjName": "浦山", "knName": "ウラヤマ", @@ -7938,14 +4962,8 @@ "43162": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 59.4 - ], - "lon": [ - 139, - 12.4 - ], + "lat": [35, 59.4], + "lon": [139, 12.4], "alt": 295, "kjName": "ときがわ", "knName": "トキガワ", @@ -7954,14 +4972,8 @@ "43171": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 59.1 - ], - "lon": [ - 139, - 20.1 - ], + "lat": [35, 59.1], + "lon": [139, 20.1], "alt": 44, "kjName": "鳩山", "knName": "ハトヤマ", @@ -7970,14 +4982,8 @@ "43231": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 50.3 - ], - "lon": [ - 139, - 19.3 - ], + "lat": [35, 50.3], + "lon": [139, 19.3], "alt": 84, "kjName": "飯能", "knName": "ハンノウ", @@ -7986,14 +4992,8 @@ "43241": { "type": "C", "elems": "11112110", - "lat": [ - 35, - 52.5 - ], - "lon": [ - 139, - 35.2 - ], + "lat": [35, 52.5], + "lon": [139, 35.2], "alt": 8, "kjName": "さいたま", "knName": "サイタマ", @@ -8002,14 +5002,8 @@ "43256": { "type": "C", "elems": "11112010", - "lat": [ - 35, - 53 - ], - "lon": [ - 139, - 45.4 - ], + "lat": [35, 53], + "lon": [139, 45.4], "alt": 3, "kjName": "越谷", "knName": "コシガヤ", @@ -8018,14 +5012,8 @@ "43266": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 46.4 - ], - "lon": [ - 139, - 24.8 - ], + "lat": [35, 46.4], + "lon": [139, 24.8], "alt": 119, "kjName": "所沢", "knName": "トコロザワ", @@ -8034,14 +5022,8 @@ "44046": { "type": "C", "elems": "11112010", - "lat": [ - 35, - 47.5 - ], - "lon": [ - 139, - 3 - ], + "lat": [35, 47.5], + "lon": [139, 3], "alt": 530, "kjName": "小河内", "knName": "オゴウチ", @@ -8050,14 +5032,8 @@ "44051": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 44.1 - ], - "lon": [ - 139, - 7.4 - ], + "lat": [35, 44.1], + "lon": [139, 7.4], "alt": 420, "kjName": "小沢", "knName": "オザワ", @@ -8066,14 +5042,8 @@ "44056": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 47.3 - ], - "lon": [ - 139, - 18.7 - ], + "lat": [35, 47.3], + "lon": [139, 18.7], "alt": 155, "kjName": "青梅", "knName": "オウメ", @@ -8082,14 +5052,8 @@ "44071": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 44.3 - ], - "lon": [ - 139, - 35.5 - ], + "lat": [35, 44.3], + "lon": [139, 35.5], "alt": 51, "kjName": "練馬", "knName": "ネリマ", @@ -8098,14 +5062,8 @@ "44112": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 40 - ], - "lon": [ - 139, - 19 - ], + "lat": [35, 40], + "lon": [139, 19], "alt": 123, "kjName": "八王子", "knName": "ハチオウジ", @@ -8114,14 +5072,8 @@ "44116": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 41 - ], - "lon": [ - 139, - 29 - ], + "lat": [35, 41], + "lon": [139, 29], "alt": 59, "kjName": "府中", "knName": "フチュウ", @@ -8130,14 +5082,8 @@ "44126": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 37.6 - ], - "lon": [ - 139, - 37.2 - ], + "lat": [35, 37.6], + "lon": [139, 37.2], "alt": 35, "kjName": "世田谷", "knName": "セタガヤ", @@ -8146,14 +5092,8 @@ "44132": { "type": "A", "elems": "11111111", - "lat": [ - 35, - 41.5 - ], - "lon": [ - 139, - 45 - ], + "lat": [35, 41.5], + "lon": [139, 45], "alt": 25, "kjName": "東京", "knName": "トウキョウ", @@ -8162,14 +5102,8 @@ "44136": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 38.3 - ], - "lon": [ - 139, - 51.8 - ], + "lat": [35, 38.3], + "lon": [139, 51.8], "alt": 5, "kjName": "江戸川臨海", "knName": "エドガワリンカイ", @@ -8178,14 +5112,8 @@ "44166": { "type": "C", "elems": "11110000", - "lat": [ - 35, - 33.2 - ], - "lon": [ - 139, - 46.8 - ], + "lat": [35, 33.2], + "lon": [139, 46.8], "alt": 6, "kjName": "羽田", "knName": "ハネダ:東京国際空港", @@ -8194,14 +5122,8 @@ "44172": { "type": "B", "elems": "11111011", - "lat": [ - 34, - 44.9 - ], - "lon": [ - 139, - 21.7 - ], + "lat": [34, 44.9], + "lon": [139, 21.7], "alt": 74, "kjName": "大島", "knName": "オオシマ", @@ -8210,14 +5132,8 @@ "44173": { "type": "C", "elems": "11110000", - "lat": [ - 34, - 46.9 - ], - "lon": [ - 139, - 21.6 - ], + "lat": [34, 46.9], + "lon": [139, 21.6], "alt": 38, "kjName": "大島北ノ山", "knName": "オオシマキタノヤマ:大島空港", @@ -8226,14 +5142,8 @@ "44191": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 31.7 - ], - "lon": [ - 139, - 16.9 - ], + "lat": [34, 31.7], + "lon": [139, 16.9], "alt": 100, "kjName": "利島", "knName": "トシマ", @@ -8242,14 +5152,8 @@ "44207": { "type": "C", "elems": "11110000", - "lat": [ - 34, - 22.1 - ], - "lon": [ - 139, - 16.1 - ], + "lat": [34, 22.1], + "lon": [139, 16.1], "alt": 29, "kjName": "新島", "knName": "ニイジマ:新島空港", @@ -8258,14 +5162,8 @@ "44216": { "type": "C", "elems": "11110000", - "lat": [ - 34, - 11.3 - ], - "lon": [ - 139, - 8 - ], + "lat": [34, 11.3], + "lon": [139, 8], "alt": 138, "kjName": "神津島", "knName": "コウヅシマ:神津島空港", @@ -8274,14 +5172,8 @@ "44226": { "type": "B", "elems": "11111011", - "lat": [ - 34, - 7.4 - ], - "lon": [ - 139, - 31.2 - ], + "lat": [34, 7.4], + "lon": [139, 31.2], "alt": 38, "kjName": "三宅島", "knName": "ミヤケジマ", @@ -8290,14 +5182,8 @@ "44228": { "type": "C", "elems": "11110000", - "lat": [ - 34, - 4.4 - ], - "lon": [ - 139, - 33.6 - ], + "lat": [34, 4.4], + "lon": [139, 33.6], "alt": 20, "kjName": "三宅坪田", "knName": "ミヤケツボタ:三宅島空港", @@ -8306,14 +5192,8 @@ "44262": { "type": "C", "elems": "11110000", - "lat": [ - 33, - 6.9 - ], - "lon": [ - 139, - 47.1 - ], + "lat": [33, 6.9], + "lon": [139, 47.1], "alt": 92, "kjName": "八重見ヶ原", "knName": "ヤエミガハラ:八丈島空港", @@ -8322,14 +5202,8 @@ "44263": { "type": "B", "elems": "11111011", - "lat": [ - 33, - 7.3 - ], - "lon": [ - 139, - 46.7 - ], + "lat": [33, 7.3], + "lon": [139, 46.7], "alt": 151, "kjName": "八丈島", "knName": "ハチジョウジマ", @@ -8338,14 +5212,8 @@ "44281": { "type": "C", "elems": "01000000", - "lat": [ - 32, - 28 - ], - "lon": [ - 139, - 45.6 - ], + "lat": [32, 28], + "lon": [139, 45.6], "alt": 272, "kjName": "青ヶ島", "knName": "アオガシマ", @@ -8354,14 +5222,8 @@ "44301": { "type": "D", "elems": "11111011", - "lat": [ - 27, - 5.5 - ], - "lon": [ - 142, - 11.4 - ], + "lat": [27, 5.5], + "lon": [142, 11.4], "alt": 3, "kjName": "父島", "knName": "チチジマ", @@ -8370,14 +5232,8 @@ "44316": { "type": "C", "elems": "01000000", - "lat": [ - 26, - 38.1 - ], - "lon": [ - 142, - 9.7 - ], + "lat": [26, 38.1], + "lon": [142, 9.7], "alt": 32, "kjName": "母島", "knName": "ハハジマ", @@ -8386,14 +5242,8 @@ "44356": { "type": "E", "elems": "11111011", - "lat": [ - 24, - 17.3 - ], - "lon": [ - 153, - 59 - ], + "lat": [24, 17.3], + "lon": [153, 59], "alt": 7, "kjName": "南鳥島", "knName": "ミナミトリシマ", @@ -8402,14 +5252,8 @@ "45061": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 51.8 - ], - "lon": [ - 140, - 6.6 - ], + "lat": [35, 51.8], + "lon": [140, 6.6], "alt": 20, "kjName": "我孫子", "knName": "アビコ", @@ -8418,14 +5262,8 @@ "45081": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 51.5 - ], - "lon": [ - 140, - 30.1 - ], + "lat": [35, 51.5], + "lon": [140, 30.1], "alt": 37, "kjName": "香取", "knName": "カトリ", @@ -8434,14 +5272,8 @@ "45086": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 47.7 - ], - "lon": [ - 140, - 40.9 - ], + "lat": [35, 47.7], + "lon": [140, 40.9], "alt": 52, "kjName": "東庄", "knName": "トウノショウ", @@ -8450,14 +5282,8 @@ "45106": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 42.7 - ], - "lon": [ - 140, - 2.6 - ], + "lat": [35, 42.7], + "lon": [140, 2.6], "alt": 28, "kjName": "船橋", "knName": "フナバシ", @@ -8466,14 +5292,8 @@ "45116": { "type": "C", "elems": "11112010", - "lat": [ - 35, - 43.7 - ], - "lon": [ - 140, - 12.7 - ], + "lat": [35, 43.7], + "lon": [140, 12.7], "alt": 5, "kjName": "佐倉", "knName": "サクラ", @@ -8482,14 +5302,8 @@ "45121": { "type": "C", "elems": "11110000", - "lat": [ - 35, - 45.8 - ], - "lon": [ - 140, - 23.1 - ], + "lat": [35, 45.8], + "lon": [140, 23.1], "alt": 41, "kjName": "成田", "knName": "ナリタ:成田国際空港", @@ -8498,14 +5312,8 @@ "45147": { "type": "A", "elems": "11111111", - "lat": [ - 35, - 44.3 - ], - "lon": [ - 140, - 51.4 - ], + "lat": [35, 44.3], + "lon": [140, 51.4], "alt": 20, "kjName": "銚子", "knName": "チョウシ", @@ -8514,14 +5322,8 @@ "45181": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 39.3 - ], - "lon": [ - 140, - 30.3 - ], + "lat": [35, 39.3], + "lon": [140, 30.3], "alt": 5, "kjName": "横芝光", "knName": "ヨコシバヒカリ", @@ -8530,14 +5332,8 @@ "45212": { "type": "B", "elems": "11111111", - "lat": [ - 35, - 36.1 - ], - "lon": [ - 140, - 6.2 - ], + "lat": [35, 36.1], + "lon": [140, 6.2], "alt": 3, "kjName": "千葉", "knName": "チバ", @@ -8546,14 +5342,8 @@ "45261": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 26.2 - ], - "lon": [ - 140, - 17.6 - ], + "lat": [35, 26.2], + "lon": [140, 17.6], "alt": 11, "kjName": "茂原", "knName": "モバラ", @@ -8562,14 +5352,8 @@ "45282": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 21.7 - ], - "lon": [ - 139, - 56.4 - ], + "lat": [35, 21.7], + "lon": [139, 56.4], "alt": 60, "kjName": "木更津", "knName": "キサラヅ", @@ -8578,14 +5362,8 @@ "45291": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 23.8 - ], - "lon": [ - 140, - 8.9 - ], + "lat": [35, 23.8], + "lon": [140, 8.9], "alt": 30, "kjName": "牛久", "knName": "ウシク", @@ -8594,14 +5372,8 @@ "45326": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 14.1 - ], - "lon": [ - 140, - 5.9 - ], + "lat": [35, 14.1], + "lon": [140, 5.9], "alt": 120, "kjName": "坂畑", "knName": "サカハタ", @@ -8610,14 +5382,8 @@ "45331": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 15.1 - ], - "lon": [ - 140, - 12.9 - ], + "lat": [35, 15.1], + "lon": [140, 12.9], "alt": 70, "kjName": "大多喜", "knName": "オオタキ", @@ -8626,14 +5392,8 @@ "45346": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 7.3 - ], - "lon": [ - 139, - 50.2 - ], + "lat": [35, 7.3], + "lon": [139, 50.2], "alt": 10, "kjName": "鋸南", "knName": "キョナン", @@ -8642,14 +5402,8 @@ "45361": { "type": "C", "elems": "11112010", - "lat": [ - 35, - 6.7 - ], - "lon": [ - 140, - 6 - ], + "lat": [35, 6.7], + "lon": [140, 6], "alt": 5, "kjName": "鴨川", "knName": "カモガワ", @@ -8658,14 +5412,8 @@ "45371": { "type": "B", "elems": "11111011", - "lat": [ - 35, - 9 - ], - "lon": [ - 140, - 18.7 - ], + "lat": [35, 9], + "lon": [140, 18.7], "alt": 12, "kjName": "勝浦", "knName": "カツウラ", @@ -8674,14 +5422,8 @@ "45401": { "type": "B", "elems": "11111011", - "lat": [ - 34, - 59.2 - ], - "lon": [ - 139, - 51.9 - ], + "lat": [34, 59.2], + "lon": [139, 51.9], "alt": 6, "kjName": "館山", "knName": "タテヤマ", @@ -8690,14 +5432,8 @@ "46001": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 36.8 - ], - "lon": [ - 139, - 11.6 - ], + "lat": [35, 36.8], + "lon": [139, 11.6], "alt": 188, "kjName": "相模湖", "knName": "サガミコ", @@ -8706,14 +5442,8 @@ "46046": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 34.3 - ], - "lon": [ - 139, - 22.2 - ], + "lat": [35, 34.3], + "lon": [139, 22.2], "alt": 149, "kjName": "相模原中央", "knName": "サガミハラチュウオウ", @@ -8722,14 +5452,8 @@ "46061": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 33.1 - ], - "lon": [ - 139, - 39 - ], + "lat": [35, 33.1], + "lon": [139, 39], "alt": 57, "kjName": "日吉", "knName": "ヒヨシ", @@ -8738,14 +5462,8 @@ "46076": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 24.6 - ], - "lon": [ - 139, - 2.6 - ], + "lat": [35, 24.6], + "lon": [139, 2.6], "alt": 330, "kjName": "丹沢湖", "knName": "タンザワコ", @@ -8754,14 +5472,8 @@ "46091": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 26 - ], - "lon": [ - 139, - 23.2 - ], + "lat": [35, 26], + "lon": [139, 23.2], "alt": 18, "kjName": "海老名", "knName": "エビナ", @@ -8770,14 +5482,8 @@ "46106": { "type": "A", "elems": "11111111", - "lat": [ - 35, - 26.3 - ], - "lon": [ - 139, - 39.1 - ], + "lat": [35, 26.3], + "lon": [139, 39.1], "alt": 39, "kjName": "横浜", "knName": "ヨコハマ", @@ -8786,14 +5492,8 @@ "46136": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 20.7 - ], - "lon": [ - 139, - 18.3 - ], + "lat": [35, 20.7], + "lon": [139, 18.3], "alt": 20, "kjName": "平塚", "knName": "ヒラツカ", @@ -8802,14 +5502,8 @@ "46141": { "type": "C", "elems": "11112010", - "lat": [ - 35, - 19.2 - ], - "lon": [ - 139, - 27 - ], + "lat": [35, 19.2], + "lon": [139, 27], "alt": 5, "kjName": "辻堂", "knName": "ツジドウ", @@ -8818,14 +5512,8 @@ "46161": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 13.3 - ], - "lon": [ - 139, - 2.5 - ], + "lat": [35, 13.3], + "lon": [139, 2.5], "alt": 855, "kjName": "箱根", "knName": "ハコネ", @@ -8834,14 +5522,8 @@ "46166": { "type": "C", "elems": "11112010", - "lat": [ - 35, - 16.6 - ], - "lon": [ - 139, - 9.3 - ], + "lat": [35, 16.6], + "lon": [139, 9.3], "alt": 14, "kjName": "小田原", "knName": "オダワラ", @@ -8850,14 +5532,8 @@ "46211": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 10.7 - ], - "lon": [ - 139, - 37.8 - ], + "lat": [35, 10.7], + "lon": [139, 37.8], "alt": 42, "kjName": "三浦", "knName": "ミウラ", @@ -8866,14 +5542,8 @@ "48031": { "type": "C", "elems": "11112100", - "lat": [ - 36, - 54.7 - ], - "lon": [ - 138, - 26.5 - ], + "lat": [36, 54.7], + "lon": [138, 26.5], "alt": 576, "kjName": "野沢温泉", "knName": "ノザワオンセン", @@ -8882,14 +5552,8 @@ "48061": { "type": "C", "elems": "11112100", - "lat": [ - 36, - 48.5 - ], - "lon": [ - 138, - 11.8 - ], + "lat": [36, 48.5], + "lon": [138, 11.8], "alt": 685, "kjName": "信濃町", "knName": "シナノマチ", @@ -8898,14 +5562,8 @@ "48066": { "type": "C", "elems": "11112110", - "lat": [ - 36, - 52.5 - ], - "lon": [ - 138, - 22.5 - ], + "lat": [36, 52.5], + "lon": [138, 22.5], "alt": 313, "kjName": "飯山", "knName": "イイヤマ", @@ -8914,14 +5572,8 @@ "48097": { "type": "C", "elems": "01000100", - "lat": [ - 36, - 49.3 - ], - "lon": [ - 137, - 55.8 - ], + "lat": [36, 49.3], + "lon": [137, 55.8], "alt": 550, "kjName": "小谷", "knName": "オタリ", @@ -8930,14 +5582,8 @@ "48141": { "type": "C", "elems": "11112100", - "lat": [ - 36, - 41.9 - ], - "lon": [ - 137, - 51.7 - ], + "lat": [36, 41.9], + "lon": [137, 51.7], "alt": 703, "kjName": "白馬", "knName": "ハクバ", @@ -8946,14 +5592,8 @@ "48146": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 41.3 - ], - "lon": [ - 137, - 57.9 - ], + "lat": [36, 41.3], + "lon": [137, 57.9], "alt": 778, "kjName": "鬼無里", "knName": "キナサ", @@ -8962,14 +5602,8 @@ "48156": { "type": "A", "elems": "11111111", - "lat": [ - 36, - 39.7 - ], - "lon": [ - 138, - 11.5 - ], + "lat": [36, 39.7], + "lon": [138, 11.5], "alt": 418, "kjName": "長野", "knName": "ナガノ", @@ -8978,14 +5612,8 @@ "48172": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 39.9 - ], - "lon": [ - 138, - 27.5 - ], + "lat": [36, 39.9], + "lon": [138, 27.5], "alt": 1473, "kjName": "笠岳", "knName": "カサダケ", @@ -8994,14 +5622,8 @@ "48191": { "type": "C", "elems": "11112100", - "lat": [ - 36, - 31.4 - ], - "lon": [ - 137, - 49.9 - ], + "lat": [36, 31.4], + "lon": [137, 49.9], "alt": 784, "kjName": "大町", "knName": "オオマチ", @@ -9010,14 +5632,8 @@ "48196": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 32.9 - ], - "lon": [ - 137, - 59.8 - ], + "lat": [36, 32.9], + "lon": [137, 59.8], "alt": 509, "kjName": "信州新町", "knName": "シンシュウシンマチ", @@ -9026,14 +5642,8 @@ "48216": { "type": "C", "elems": "11112100", - "lat": [ - 36, - 31.9 - ], - "lon": [ - 138, - 19.5 - ], + "lat": [36, 31.9], + "lon": [138, 19.5], "alt": 1253, "kjName": "菅平", "knName": "スガダイラ", @@ -9042,14 +5652,8 @@ "48247": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 29.2 - ], - "lon": [ - 138, - 4.1 - ], + "lat": [36, 29.2], + "lon": [138, 4.1], "alt": 985, "kjName": "聖高原", "knName": "ヒジリコウゲン", @@ -9058,14 +5662,8 @@ "48256": { "type": "C", "elems": "11112010", - "lat": [ - 36, - 24 - ], - "lon": [ - 138, - 15.9 - ], + "lat": [36, 24], + "lon": [138, 15.9], "alt": 502, "kjName": "上田", "knName": "ウエダ", @@ -9074,14 +5672,8 @@ "48296": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 20.6 - ], - "lon": [ - 137, - 52.9 - ], + "lat": [36, 20.6], + "lon": [137, 52.9], "alt": 540, "kjName": "穂高", "knName": "ホタカ", @@ -9090,14 +5682,8 @@ "48321": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 23 - ], - "lon": [ - 138, - 23 - ], + "lat": [36, 23], + "lon": [138, 23], "alt": 958, "kjName": "東御", "knName": "トウミ", @@ -9106,14 +5692,8 @@ "48331": { "type": "B", "elems": "11111111", - "lat": [ - 36, - 20.5 - ], - "lon": [ - 138, - 32.8 - ], + "lat": [36, 20.5], + "lon": [138, 32.8], "alt": 999, "kjName": "軽井沢", "knName": "カルイザワ", @@ -9122,14 +5702,8 @@ "48346": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 14.9 - ], - "lon": [ - 137, - 38 - ], + "lat": [36, 14.9], + "lon": [137, 38], "alt": 1510, "kjName": "上高地", "knName": "カミコウチ", @@ -9138,14 +5712,8 @@ "48361": { "type": "B", "elems": "11111111", - "lat": [ - 36, - 14.8 - ], - "lon": [ - 137, - 58.2 - ], + "lat": [36, 14.8], + "lon": [137, 58.2], "alt": 610, "kjName": "松本", "knName": "マツモト", @@ -9154,14 +5722,8 @@ "48363": { "type": "C", "elems": "11110000", - "lat": [ - 36, - 10 - ], - "lon": [ - 137, - 55.3 - ], + "lat": [36, 10], + "lon": [137, 55.3], "alt": 658, "kjName": "松本今井", "knName": "マツモトイマイ:松本空港", @@ -9170,14 +5732,8 @@ "48371": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 18.1 - ], - "lon": [ - 138, - 8.2 - ], + "lat": [36, 18.1], + "lon": [138, 8.2], "alt": 721, "kjName": "鹿教湯", "knName": "カケユ", @@ -9186,14 +5742,8 @@ "48381": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 16.3 - ], - "lon": [ - 138, - 18.8 - ], + "lat": [36, 16.3], + "lon": [138, 18.8], "alt": 715, "kjName": "立科", "knName": "タテシナ", @@ -9202,14 +5752,8 @@ "48386": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 14.8 - ], - "lon": [ - 138, - 28.6 - ], + "lat": [36, 14.8], + "lon": [138, 28.6], "alt": 683, "kjName": "佐久", "knName": "サク", @@ -9218,14 +5762,8 @@ "48436": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 6.3 - ], - "lon": [ - 138, - 13.7 - ], + "lat": [36, 6.3], + "lon": [138, 13.7], "alt": 1440, "kjName": "白樺湖", "knName": "シラカバコ", @@ -9234,14 +5772,8 @@ "48466": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 5.3 - ], - "lon": [ - 137, - 41 - ], + "lat": [36, 5.3], + "lon": [137, 41], "alt": 1068, "kjName": "奈川", "knName": "ナガワ", @@ -9250,14 +5782,8 @@ "48491": { "type": "B", "elems": "11111111", - "lat": [ - 36, - 2.7 - ], - "lon": [ - 138, - 6.5 - ], + "lat": [36, 2.7], + "lon": [138, 6.5], "alt": 760, "kjName": "諏訪", "knName": "スワ", @@ -9266,14 +5792,8 @@ "48516": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 4.3 - ], - "lon": [ - 138, - 36.7 - ], + "lat": [36, 4.3], + "lon": [138, 36.7], "alt": 1185, "kjName": "北相木", "knName": "キタアイキ", @@ -9282,14 +5802,8 @@ "48531": { "type": "C", "elems": "11112110", - "lat": [ - 35, - 56.3 - ], - "lon": [ - 137, - 36.1 - ], + "lat": [35, 56.3], + "lon": [137, 36.1], "alt": 1130, "kjName": "開田高原", "knName": "カイダコウゲン", @@ -9298,14 +5812,8 @@ "48536": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 56.2 - ], - "lon": [ - 137, - 47.2 - ], + "lat": [35, 56.2], + "lon": [137, 47.2], "alt": 985, "kjName": "木祖薮原", "knName": "キソヤブハラ", @@ -9314,14 +5822,8 @@ "48546": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 59 - ], - "lon": [ - 137, - 59 - ], + "lat": [35, 59], + "lon": [137, 59], "alt": 732, "kjName": "辰野", "knName": "タツノ", @@ -9330,14 +5832,8 @@ "48556": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 57.2 - ], - "lon": [ - 138, - 6.5 - ], + "lat": [35, 57.2], + "lon": [138, 6.5], "alt": 1075, "kjName": "高遠", "knName": "タカトオ", @@ -9346,14 +5842,8 @@ "48561": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 58.2 - ], - "lon": [ - 138, - 13.2 - ], + "lat": [35, 58.2], + "lon": [138, 13.2], "alt": 1017, "kjName": "原村", "knName": "ハラムラ", @@ -9362,14 +5852,8 @@ "48571": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 56.9 - ], - "lon": [ - 138, - 28.3 - ], + "lat": [35, 56.9], + "lon": [138, 28.3], "alt": 1350, "kjName": "野辺山", "knName": "ノベヤマ", @@ -9378,14 +5862,8 @@ "48601": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 52.3 - ], - "lon": [ - 137, - 30.2 - ], + "lat": [35, 52.3], + "lon": [137, 30.2], "alt": 2195, "kjName": "御嶽山", "knName": "オンタケサン", @@ -9394,14 +5872,8 @@ "48606": { "type": "C", "elems": "11112010", - "lat": [ - 35, - 50.4 - ], - "lon": [ - 137, - 41.3 - ], + "lat": [35, 50.4], + "lon": [137, 41.3], "alt": 750, "kjName": "木曽福島", "knName": "キソフクシマ", @@ -9410,14 +5882,8 @@ "48621": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 49.5 - ], - "lon": [ - 137, - 57.3 - ], + "lat": [35, 49.5], + "lon": [137, 57.3], "alt": 633, "kjName": "伊那", "knName": "イナ", @@ -9426,14 +5892,8 @@ "48681": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 46.4 - ], - "lon": [ - 137, - 53.1 - ], + "lat": [35, 46.4], + "lon": [137, 53.1], "alt": 1660, "kjName": "宮田高原", "knName": "ミヤダコウゲン", @@ -9442,14 +5902,8 @@ "48691": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 43.6 - ], - "lon": [ - 138, - 5.6 - ], + "lat": [35, 43.6], + "lon": [138, 5.6], "alt": 905, "kjName": "杉島", "knName": "スギシマ", @@ -9458,14 +5912,8 @@ "48716": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 41.9 - ], - "lon": [ - 137, - 41.5 - ], + "lat": [35, 41.9], + "lon": [137, 41.5], "alt": 535, "kjName": "須原", "knName": "スハラ", @@ -9474,14 +5922,8 @@ "48717": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 36.6 - ], - "lon": [ - 137, - 37.2 - ], + "lat": [35, 36.6], + "lon": [137, 37.2], "alt": 560, "kjName": "南木曽", "knName": "ナギソ", @@ -9490,14 +5932,8 @@ "48731": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 39.2 - ], - "lon": [ - 137, - 53.9 - ], + "lat": [35, 39.2], + "lon": [137, 53.9], "alt": 728, "kjName": "飯島", "knName": "イイジマ", @@ -9506,14 +5942,8 @@ "48737": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 33.4 - ], - "lon": [ - 138, - 2.4 - ], + "lat": [35, 33.4], + "lon": [138, 2.4], "alt": 718, "kjName": "大鹿", "knName": "オオシカ", @@ -9522,14 +5952,8 @@ "48767": { "type": "B", "elems": "11111111", - "lat": [ - 35, - 31.4 - ], - "lon": [ - 137, - 49.3 - ], + "lat": [35, 31.4], + "lon": [137, 49.3], "alt": 516, "kjName": "飯田", "knName": "イイダ", @@ -9538,14 +5962,8 @@ "48826": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 22.4 - ], - "lon": [ - 137, - 41.5 - ], + "lat": [35, 22.4], + "lon": [137, 41.5], "alt": 940, "kjName": "浪合", "knName": "ナミアイ", @@ -9554,14 +5972,8 @@ "48836": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 18.8 - ], - "lon": [ - 137, - 48.7 - ], + "lat": [35, 18.8], + "lon": [137, 48.7], "alt": 610, "kjName": "阿南", "knName": "アナン", @@ -9570,14 +5982,8 @@ "48841": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 19.3 - ], - "lon": [ - 137, - 55.9 - ], + "lat": [35, 19.3], + "lon": [137, 55.9], "alt": 407, "kjName": "南信濃", "knName": "ミナミシナノ", @@ -9586,14 +5992,8 @@ "49036": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 51.7 - ], - "lon": [ - 138, - 23.2 - ], + "lat": [35, 51.7], + "lon": [138, 23.2], "alt": 867, "kjName": "大泉", "knName": "オオイズミ", @@ -9602,14 +6002,8 @@ "49052": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 48.4 - ], - "lon": [ - 138, - 39.3 - ], + "lat": [35, 48.4], + "lon": [138, 39.3], "alt": 1465, "kjName": "乙女湖", "knName": "オトメコ", @@ -9618,14 +6012,8 @@ "49086": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 41.6 - ], - "lon": [ - 138, - 26.9 - ], + "lat": [35, 41.6], + "lon": [138, 26.9], "alt": 341, "kjName": "韮崎", "knName": "ニラサキ", @@ -9634,14 +6022,8 @@ "49142": { "type": "A", "elems": "11111111", - "lat": [ - 35, - 40 - ], - "lon": [ - 138, - 33.2 - ], + "lat": [35, 40], + "lon": [138, 33.2], "alt": 273, "kjName": "甲府", "knName": "コウフ", @@ -9650,14 +6032,8 @@ "49151": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 39.8 - ], - "lon": [ - 138, - 43.5 - ], + "lat": [35, 39.8], + "lon": [138, 43.5], "alt": 394, "kjName": "勝沼", "knName": "カツヌマ", @@ -9666,14 +6042,8 @@ "49161": { "type": "C", "elems": "11112010", - "lat": [ - 35, - 36.5 - ], - "lon": [ - 138, - 56.3 - ], + "lat": [35, 36.5], + "lon": [138, 56.3], "alt": 364, "kjName": "大月", "knName": "オオツキ", @@ -9682,14 +6052,8 @@ "49172": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 37.2 - ], - "lon": [ - 139, - 6.3 - ], + "lat": [35, 37.2], + "lon": [139, 6.3], "alt": 187, "kjName": "上野原", "knName": "ウエノハラ", @@ -9698,14 +6062,8 @@ "49187": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 33.7 - ], - "lon": [ - 138, - 26.9 - ], + "lat": [35, 33.7], + "lon": [138, 26.9], "alt": 295, "kjName": "富士川", "knName": "フジカワ", @@ -9714,14 +6072,8 @@ "49196": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 31.7 - ], - "lon": [ - 138, - 36.9 - ], + "lat": [35, 31.7], + "lon": [138, 36.9], "alt": 552, "kjName": "古関", "knName": "フルセキ", @@ -9730,14 +6082,8 @@ "49236": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 28 - ], - "lon": [ - 138, - 26.5 - ], + "lat": [35, 28], + "lon": [138, 26.5], "alt": 226, "kjName": "切石", "knName": "キリイシ", @@ -9746,14 +6092,8 @@ "49251": { "type": "B", "elems": "11111111", - "lat": [ - 35, - 30 - ], - "lon": [ - 138, - 45.6 - ], + "lat": [35, 30], + "lon": [138, 45.6], "alt": 860, "kjName": "河口湖", "knName": "カワグチコ", @@ -9762,14 +6102,8 @@ "49256": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 26.2 - ], - "lon": [ - 138, - 50.2 - ], + "lat": [35, 26.2], + "lon": [138, 50.2], "alt": 992, "kjName": "山中", "knName": "ヤマナカ", @@ -9778,14 +6112,8 @@ "49316": { "type": "C", "elems": "11112010", - "lat": [ - 35, - 17.3 - ], - "lon": [ - 138, - 26.7 - ], + "lat": [35, 17.3], + "lon": [138, 26.7], "alt": 141, "kjName": "南部", "knName": "ナンブ", @@ -9794,14 +6122,8 @@ "50056": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 18.7 - ], - "lon": [ - 138, - 34.7 - ], + "lat": [35, 18.7], + "lon": [138, 34.7], "alt": 530, "kjName": "白糸", "knName": "シライト", @@ -9810,14 +6132,8 @@ "50066": { "type": "F", "elems": "10001011", - "lat": [ - 35, - 21.6 - ], - "lon": [ - 138, - 43.6 - ], + "lat": [35, 21.6], + "lon": [138, 43.6], "alt": 3775, "kjName": "富士山", "knName": "フジサン", @@ -9826,14 +6142,8 @@ "50106": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 13 - ], - "lon": [ - 138, - 13.3 - ], + "lat": [35, 13], + "lon": [138, 13.3], "alt": 755, "kjName": "井川", "knName": "イカワ", @@ -9842,14 +6152,8 @@ "50112": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 12.4 - ], - "lon": [ - 138, - 22.1 - ], + "lat": [35, 12.4], + "lon": [138, 22.1], "alt": 585, "kjName": "有東木", "knName": "ウトウギ", @@ -9858,14 +6162,8 @@ "50136": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 18.3 - ], - "lon": [ - 138, - 55.6 - ], + "lat": [35, 18.3], + "lon": [138, 55.6], "alt": 472, "kjName": "御殿場", "knName": "ゴテンバ", @@ -9874,14 +6172,8 @@ "50196": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 11.1 - ], - "lon": [ - 138, - 39.8 - ], + "lat": [35, 11.1], + "lon": [138, 39.8], "alt": 66, "kjName": "富士", "knName": "フジ", @@ -9890,14 +6182,8 @@ "50206": { "type": "B", "elems": "11111011", - "lat": [ - 35, - 6.8 - ], - "lon": [ - 138, - 55.5 - ], + "lat": [35, 6.8], + "lon": [138, 55.5], "alt": 21, "kjName": "三島", "knName": "ミシマ", @@ -9906,14 +6192,8 @@ "50211": { "type": "C", "elems": "11110000", - "lat": [ - 35, - 6.9 - ], - "lon": [ - 139, - 5 - ], + "lat": [35, 6.9], + "lon": [139, 5], "alt": 144, "kjName": "熱海伊豆山", "knName": "アタミイズサン", @@ -9922,14 +6202,8 @@ "50226": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 3.4 - ], - "lon": [ - 137, - 45.7 - ], + "lat": [35, 3.4], + "lon": [137, 45.7], "alt": 150, "kjName": "佐久間", "knName": "サクマ", @@ -9938,14 +6212,8 @@ "50232": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 0.7 - ], - "lon": [ - 137, - 56.7 - ], + "lat": [35, 0.7], + "lon": [137, 56.7], "alt": 486, "kjName": "春野", "knName": "ハルノ", @@ -9954,14 +6222,8 @@ "50241": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 6.1 - ], - "lon": [ - 138, - 7.7 - ], + "lat": [35, 6.1], + "lon": [138, 7.7], "alt": 290, "kjName": "川根本町", "knName": "カワネホンチョウ", @@ -9970,14 +6232,8 @@ "50247": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 2.9 - ], - "lon": [ - 138, - 14.8 - ], + "lat": [35, 2.9], + "lon": [138, 14.8], "alt": 160, "kjName": "鍵穴", "knName": "カギアナ", @@ -9986,14 +6242,8 @@ "50261": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 3.2 - ], - "lon": [ - 138, - 31.3 - ], + "lat": [35, 3.2], + "lon": [138, 31.3], "alt": 3, "kjName": "清水", "knName": "シミズ", @@ -10002,14 +6252,8 @@ "50281": { "type": "B", "elems": "11111011", - "lat": [ - 35, - 2.7 - ], - "lon": [ - 139, - 5.5 - ], + "lat": [35, 2.7], + "lon": [139, 5.5], "alt": 67, "kjName": "網代", "knName": "アジロ", @@ -10018,14 +6262,8 @@ "50296": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 57.5 - ], - "lon": [ - 137, - 44 - ], + "lat": [34, 57.5], + "lon": [137, 44], "alt": 375, "kjName": "熊", "knName": "クマ", @@ -10034,14 +6272,8 @@ "50317": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 58.5 - ], - "lon": [ - 138, - 11.8 - ], + "lat": [34, 58.5], + "lon": [138, 11.8], "alt": 415, "kjName": "高根山", "knName": "タカネサン", @@ -10050,14 +6282,8 @@ "50331": { "type": "A", "elems": "11111111", - "lat": [ - 34, - 58.5 - ], - "lon": [ - 138, - 24.2 - ], + "lat": [34, 58.5], + "lon": [138, 24.2], "alt": 14, "kjName": "静岡", "knName": "シズオカ", @@ -10066,14 +6292,8 @@ "50371": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 48.1 - ], - "lon": [ - 137, - 33.4 - ], + "lat": [34, 48.1], + "lon": [137, 33.4], "alt": 2, "kjName": "三ヶ日", "knName": "ミッカビ", @@ -10082,14 +6302,8 @@ "50386": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 53.4 - ], - "lon": [ - 137, - 48.8 - ], + "lat": [34, 53.4], + "lon": [137, 48.8], "alt": 61, "kjName": "天竜", "knName": "テンリュウ", @@ -10098,14 +6312,8 @@ "50391": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 53.7 - ], - "lon": [ - 137, - 56.4 - ], + "lat": [34, 53.7], + "lon": [137, 56.4], "alt": 114, "kjName": "三倉", "knName": "ミクラ", @@ -10114,14 +6322,8 @@ "50416": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 52.6 - ], - "lon": [ - 138, - 45.7 - ], + "lat": [34, 52.6], + "lon": [138, 45.7], "alt": 92, "kjName": "土肥", "knName": "トイ", @@ -10130,14 +6332,8 @@ "50426": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 54 - ], - "lon": [ - 138, - 55.5 - ], + "lat": [34, 54], + "lon": [138, 55.5], "alt": 165, "kjName": "湯ケ島", "knName": "ユガシマ", @@ -10146,14 +6342,8 @@ "50427": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 52.3 - ], - "lon": [ - 139, - 1.4 - ], + "lat": [34, 52.3], + "lon": [139, 1.4], "alt": 1066, "kjName": "天城山", "knName": "アマギサン", @@ -10162,14 +6352,8 @@ "50456": { "type": "B", "elems": "11111011", - "lat": [ - 34, - 45.2 - ], - "lon": [ - 137, - 42.7 - ], + "lat": [34, 45.2], + "lon": [137, 42.7], "alt": 46, "kjName": "浜松", "knName": "ハママツ", @@ -10178,14 +6362,8 @@ "50466": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 46.1 - ], - "lon": [ - 137, - 59.7 - ], + "lat": [34, 46.1], + "lon": [137, 59.7], "alt": 32, "kjName": "掛川", "knName": "カケガワ", @@ -10194,14 +6372,8 @@ "50476": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 47.1 - ], - "lon": [ - 138, - 8.3 - ], + "lat": [34, 47.1], + "lon": [138, 8.3], "alt": 191, "kjName": "菊川牧之原", "knName": "キクガワマキノハラ", @@ -10210,14 +6382,8 @@ "50477": { "type": "C", "elems": "11110000", - "lat": [ - 34, - 47.7 - ], - "lon": [ - 138, - 11.3 - ], + "lat": [34, 47.7], + "lon": [138, 11.3], "alt": 132, "kjName": "静岡空港", "knName": "シズオカクウコウ:静岡空港", @@ -10226,14 +6392,8 @@ "50491": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 45.3 - ], - "lon": [ - 138, - 47 - ], + "lat": [34, 45.3], + "lon": [138, 47], "alt": 4, "kjName": "松崎", "knName": "マツザキ", @@ -10242,14 +6402,8 @@ "50506": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 46.9 - ], - "lon": [ - 139, - 2.9 - ], + "lat": [34, 46.9], + "lon": [139, 2.9], "alt": 130, "kjName": "稲取", "knName": "イナトリ", @@ -10258,14 +6412,8 @@ "50536": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 41.5 - ], - "lon": [ - 137, - 52.8 - ], + "lat": [34, 41.5], + "lon": [137, 52.8], "alt": 1, "kjName": "磐田", "knName": "イワタ", @@ -10274,14 +6422,8 @@ "50551": { "type": "B", "elems": "11111011", - "lat": [ - 34, - 36.2 - ], - "lon": [ - 138, - 12.8 - ], + "lat": [34, 36.2], + "lon": [138, 12.8], "alt": 45, "kjName": "御前崎", "knName": "オマエザキ", @@ -10290,14 +6432,8 @@ "50561": { "type": "B", "elems": "11111011", - "lat": [ - 34, - 36.2 - ], - "lon": [ - 138, - 50.5 - ], + "lat": [34, 36.2], + "lon": [138, 50.5], "alt": 52, "kjName": "石廊崎", "knName": "イロウザキ", @@ -10306,14 +6442,8 @@ "51011": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 17.9 - ], - "lon": [ - 136, - 51.2 - ], + "lat": [35, 17.9], + "lon": [136, 51.2], "alt": 11, "kjName": "一宮", "knName": "イチノミヤ", @@ -10322,14 +6452,8 @@ "51031": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 13 - ], - "lon": [ - 136, - 41.9 - ], + "lat": [35, 13], + "lon": [136, 41.9], "alt": 5, "kjName": "愛西", "knName": "アイサイ", @@ -10338,14 +6462,8 @@ "51056": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 13.7 - ], - "lon": [ - 137, - 17.1 - ], + "lat": [35, 13.7], + "lon": [137, 17.1], "alt": 290, "kjName": "小原", "knName": "オバラ", @@ -10354,14 +6472,8 @@ "51071": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 12.7 - ], - "lon": [ - 137, - 30.4 - ], + "lat": [35, 12.7], + "lon": [137, 30.4], "alt": 505, "kjName": "稲武", "knName": "イナブ", @@ -10370,14 +6482,8 @@ "51077": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 13.2 - ], - "lon": [ - 137, - 39.6 - ], + "lat": [35, 13.2], + "lon": [137, 39.6], "alt": 1216, "kjName": "茶臼山", "knName": "チャウスヤマ", @@ -10386,14 +6492,8 @@ "51096": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 8.2 - ], - "lon": [ - 136, - 47.5 - ], + "lat": [35, 8.2], + "lon": [136, 47.5], "alt": 2, "kjName": "蟹江", "knName": "カニエ", @@ -10402,14 +6502,8 @@ "51106": { "type": "A", "elems": "11111111", - "lat": [ - 35, - 10 - ], - "lon": [ - 136, - 57.9 - ], + "lat": [35, 10], + "lon": [136, 57.9], "alt": 51, "kjName": "名古屋", "knName": "ナゴヤ", @@ -10418,14 +6512,8 @@ "51116": { "type": "C", "elems": "11112010", - "lat": [ - 35, - 7.9 - ], - "lon": [ - 137, - 10.6 - ], + "lat": [35, 7.9], + "lon": [137, 10.6], "alt": 75, "kjName": "豊田", "knName": "トヨタ", @@ -10434,14 +6522,8 @@ "51216": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 59.7 - ], - "lon": [ - 136, - 56.6 - ], + "lat": [34, 59.7], + "lon": [136, 56.6], "alt": 32, "kjName": "大府", "knName": "オオブ", @@ -10450,14 +6532,8 @@ "51192": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 4.7 - ], - "lon": [ - 137, - 24.8 - ], + "lat": [35, 4.7], + "lon": [137, 24.8], "alt": 613, "kjName": "阿蔵", "knName": "アゾウ", @@ -10466,14 +6542,8 @@ "51226": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 55.1 - ], - "lon": [ - 137, - 11.6 - ], + "lat": [34, 55.1], + "lon": [137, 11.6], "alt": 47, "kjName": "岡崎", "knName": "オカザキ", @@ -10482,14 +6552,8 @@ "51241": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 58.6 - ], - "lon": [ - 137, - 25.5 - ], + "lat": [34, 58.6], + "lon": [137, 25.5], "alt": 532, "kjName": "作手", "knName": "ツクデ", @@ -10498,14 +6562,8 @@ "51247": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 54.4 - ], - "lon": [ - 137, - 31.1 - ], + "lat": [34, 54.4], + "lon": [137, 31.1], "alt": 53, "kjName": "新城", "knName": "シンシロ", @@ -10514,14 +6572,8 @@ "51261": { "type": "C", "elems": "11110000", - "lat": [ - 34, - 51.5 - ], - "lon": [ - 136, - 48.3 - ], + "lat": [34, 51.5], + "lon": [136, 48.3], "alt": 4, "kjName": "セントレア", "knName": "セントレア:中部国際空港", @@ -10530,14 +6582,8 @@ "51271": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 48.7 - ], - "lon": [ - 137, - 1.7 - ], + "lat": [34, 48.7], + "lon": [137, 1.7], "alt": 12, "kjName": "一色", "knName": "イッシキ", @@ -10546,14 +6592,8 @@ "51281": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 50.7 - ], - "lon": [ - 137, - 13 - ], + "lat": [34, 50.7], + "lon": [137, 13], "alt": 55, "kjName": "蒲郡", "knName": "ガマゴオリ", @@ -10562,14 +6602,8 @@ "51311": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 44.4 - ], - "lon": [ - 136, - 56.3 - ], + "lat": [34, 44.4], + "lon": [136, 56.3], "alt": 16, "kjName": "南知多", "knName": "ミナミチタ", @@ -10578,14 +6612,8 @@ "51331": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 45 - ], - "lon": [ - 137, - 20.5 - ], + "lat": [34, 45], + "lon": [137, 20.5], "alt": 3, "kjName": "豊橋", "knName": "トヨハシ", @@ -10594,14 +6622,8 @@ "51346": { "type": "B", "elems": "11111011", - "lat": [ - 34, - 37.7 - ], - "lon": [ - 137, - 5.6 - ], + "lat": [34, 37.7], + "lon": [137, 5.6], "alt": 6, "kjName": "伊良湖", "knName": "イラコ", @@ -10610,14 +6632,8 @@ "51356": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 37.6 - ], - "lon": [ - 137, - 13.3 - ], + "lat": [34, 37.6], + "lon": [137, 13.3], "alt": 45, "kjName": "田原", "knName": "タハラ", @@ -10626,14 +6642,8 @@ "52041": { "type": "C", "elems": "11112100", - "lat": [ - 36, - 18.3 - ], - "lon": [ - 137, - 6 - ], + "lat": [36, 18.3], + "lon": [137, 6], "alt": 471, "kjName": "河合", "knName": "カワイ", @@ -10642,14 +6652,8 @@ "52051": { "type": "C", "elems": "11112100", - "lat": [ - 36, - 19.3 - ], - "lon": [ - 137, - 18.5 - ], + "lat": [36, 19.3], + "lon": [137, 18.5], "alt": 455, "kjName": "神岡", "knName": "カミオカ", @@ -10658,14 +6662,8 @@ "52081": { "type": "C", "elems": "11112100", - "lat": [ - 36, - 16.4 - ], - "lon": [ - 136, - 53.8 - ], + "lat": [36, 16.4], + "lon": [136, 53.8], "alt": 478, "kjName": "白川", "knName": "シラカワ", @@ -10674,14 +6672,8 @@ "52111": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 14.9 - ], - "lon": [ - 137, - 30.2 - ], + "lat": [36, 14.9], + "lon": [137, 30.2], "alt": 765, "kjName": "栃尾", "knName": "トチオ", @@ -10690,14 +6682,8 @@ "52131": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 8.8 - ], - "lon": [ - 136, - 54.5 - ], + "lat": [36, 8.8], + "lon": [136, 54.5], "alt": 640, "kjName": "御母衣", "knName": "ミボロ", @@ -10706,14 +6692,8 @@ "52137": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 10.8 - ], - "lon": [ - 137, - 2.7 - ], + "lat": [36, 10.8], + "lon": [137, 2.7], "alt": 740, "kjName": "清見", "knName": "キヨミ", @@ -10722,14 +6702,8 @@ "52146": { "type": "B", "elems": "11111111", - "lat": [ - 36, - 9.3 - ], - "lon": [ - 137, - 15.2 - ], + "lat": [36, 9.3], + "lon": [137, 15.2], "alt": 560, "kjName": "高山", "knName": "タカヤマ", @@ -10738,14 +6712,8 @@ "52152": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 11.2 - ], - "lon": [ - 137, - 22.3 - ], + "lat": [36, 11.2], + "lon": [137, 22.3], "alt": 910, "kjName": "丹生川", "knName": "ニュウカワ", @@ -10754,14 +6722,8 @@ "52173": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 0.6 - ], - "lon": [ - 136, - 53.6 - ], + "lat": [36, 0.6], + "lon": [136, 53.6], "alt": 885, "kjName": "ひるがの", "knName": "ヒルガノ", @@ -10770,14 +6732,8 @@ "52181": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 3.6 - ], - "lon": [ - 137, - 2.1 - ], + "lat": [36, 3.6], + "lon": [137, 2.1], "alt": 1015, "kjName": "六厩", "knName": "ムマヤ", @@ -10786,14 +6742,8 @@ "52192": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 2.1 - ], - "lon": [ - 137, - 15.6 - ], + "lat": [36, 2.1], + "lon": [137, 15.6], "alt": 880, "kjName": "船山", "knName": "フナヤマ", @@ -10802,14 +6752,8 @@ "52196": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 0.9 - ], - "lon": [ - 137, - 23.3 - ], + "lat": [36, 0.9], + "lon": [137, 23.3], "alt": 930, "kjName": "宮之前", "knName": "ミヤノマエ", @@ -10818,14 +6762,8 @@ "52221": { "type": "C", "elems": "11112110", - "lat": [ - 35, - 55.4 - ], - "lon": [ - 136, - 49.9 - ], + "lat": [35, 55.4], + "lon": [136, 49.9], "alt": 430, "kjName": "長滝", "knName": "ナガタキ", @@ -10834,14 +6772,8 @@ "52286": { "type": "C", "elems": "11112010", - "lat": [ - 35, - 53.3 - ], - "lon": [ - 137, - 12.4 - ], + "lat": [35, 53.3], + "lon": [137, 12.4], "alt": 425, "kjName": "萩原", "knName": "ハギワラ", @@ -10850,14 +6782,8 @@ "52321": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 43.4 - ], - "lon": [ - 136, - 47 - ], + "lat": [35, 43.4], + "lon": [136, 47], "alt": 351, "kjName": "関市板取", "knName": "セキシイタドリ", @@ -10866,14 +6792,8 @@ "52331": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 45.4 - ], - "lon": [ - 136, - 58.7 - ], + "lat": [35, 45.4], + "lon": [136, 58.7], "alt": 271, "kjName": "八幡", "knName": "ハチマン", @@ -10882,14 +6802,8 @@ "52346": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 45.8 - ], - "lon": [ - 137, - 17.3 - ], + "lat": [35, 45.8], + "lon": [137, 17.3], "alt": 450, "kjName": "宮地", "knName": "ミヤジ", @@ -10898,14 +6812,8 @@ "52381": { "type": "C", "elems": "11112110", - "lat": [ - 35, - 38.3 - ], - "lon": [ - 136, - 36.1 - ], + "lat": [35, 38.3], + "lon": [136, 36.1], "alt": 190, "kjName": "樽見", "knName": "タルミ", @@ -10914,14 +6822,8 @@ "52406": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 39.7 - ], - "lon": [ - 137, - 9.6 - ], + "lat": [35, 39.7], + "lon": [137, 9.6], "alt": 233, "kjName": "金山", "knName": "カナヤマ", @@ -10930,14 +6832,8 @@ "52421": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 39.7 - ], - "lon": [ - 137, - 25.6 - ], + "lat": [35, 39.7], + "lon": [137, 25.6], "alt": 461, "kjName": "付知", "knName": "ツケチ", @@ -10946,14 +6842,8 @@ "52461": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 33.3 - ], - "lon": [ - 136, - 54.6 - ], + "lat": [35, 33.3], + "lon": [136, 54.6], "alt": 68, "kjName": "美濃", "knName": "ミノ", @@ -10962,14 +6852,8 @@ "52476": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 30.9 - ], - "lon": [ - 137, - 13.8 - ], + "lat": [35, 30.9], + "lon": [137, 13.8], "alt": 650, "kjName": "伽藍", "knName": "ガラン", @@ -10978,14 +6862,8 @@ "52482": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 35.9 - ], - "lon": [ - 137, - 19.1 - ], + "lat": [35, 35.9], + "lon": [137, 19.1], "alt": 517, "kjName": "黒川", "knName": "クロカワ", @@ -10994,14 +6872,8 @@ "52511": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 29.1 - ], - "lon": [ - 136, - 34 - ], + "lat": [35, 29.1], + "lon": [136, 34], "alt": 45, "kjName": "揖斐川", "knName": "イビガワ", @@ -11010,14 +6882,8 @@ "52536": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 26.7 - ], - "lon": [ - 137, - 0.3 - ], + "lat": [35, 26.7], + "lon": [137, 0.3], "alt": 74, "kjName": "美濃加茂", "knName": "ミノカモ", @@ -11026,14 +6892,8 @@ "52556": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 26.8 - ], - "lon": [ - 137, - 24.2 - ], + "lat": [35, 26.8], + "lon": [137, 24.2], "alt": 315, "kjName": "恵那", "knName": "エナ", @@ -11042,14 +6902,8 @@ "52557": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 28.6 - ], - "lon": [ - 137, - 29.2 - ], + "lat": [35, 28.6], + "lon": [137, 29.2], "alt": 378, "kjName": "中津川", "knName": "ナカツガワ", @@ -11058,14 +6912,8 @@ "52571": { "type": "C", "elems": "11112110", - "lat": [ - 35, - 21.8 - ], - "lon": [ - 136, - 28 - ], + "lat": [35, 21.8], + "lon": [136, 28], "alt": 130, "kjName": "関ケ原", "knName": "セキガハラ", @@ -11074,14 +6922,8 @@ "52581": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 20.8 - ], - "lon": [ - 136, - 37.2 - ], + "lat": [35, 20.8], + "lon": [136, 37.2], "alt": 6, "kjName": "大垣", "knName": "オオガキ", @@ -11090,14 +6932,8 @@ "52586": { "type": "A", "elems": "11111111", - "lat": [ - 35, - 24 - ], - "lon": [ - 136, - 45.7 - ], + "lat": [35, 24], + "lon": [136, 45.7], "alt": 13, "kjName": "岐阜", "knName": "ギフ", @@ -11106,14 +6942,8 @@ "52606": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 20.8 - ], - "lon": [ - 137, - 6.5 - ], + "lat": [35, 20.8], + "lon": [137, 6.5], "alt": 120, "kjName": "多治見", "knName": "タジミ", @@ -11122,14 +6952,8 @@ "52642": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 14.8 - ], - "lon": [ - 136, - 27.5 - ], + "lat": [35, 14.8], + "lon": [136, 27.5], "alt": 193, "kjName": "上石津", "knName": "カミイシヅ", @@ -11138,14 +6962,8 @@ "53016": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 8.6 - ], - "lon": [ - 136, - 32.3 - ], + "lat": [35, 8.6], + "lon": [136, 32.3], "alt": 125, "kjName": "北勢", "knName": "ホクセイ", @@ -11154,14 +6972,8 @@ "53041": { "type": "C", "elems": "11112010", - "lat": [ - 35, - 3 - ], - "lon": [ - 136, - 41.6 - ], + "lat": [35, 3], + "lon": [136, 41.6], "alt": 3, "kjName": "桑名", "knName": "クワナ", @@ -11170,14 +6982,8 @@ "53061": { "type": "B", "elems": "11111011", - "lat": [ - 34, - 56.4 - ], - "lon": [ - 136, - 34.8 - ], + "lat": [34, 56.4], + "lon": [136, 34.8], "alt": 55, "kjName": "四日市", "knName": "ヨッカイチ", @@ -11186,14 +6992,8 @@ "53091": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 52.2 - ], - "lon": [ - 136, - 27.2 - ], + "lat": [34, 52.2], + "lon": [136, 27.2], "alt": 70, "kjName": "亀山", "knName": "カメヤマ", @@ -11202,14 +7002,8 @@ "53112": { "type": "B", "elems": "11111011", - "lat": [ - 34, - 45.7 - ], - "lon": [ - 136, - 8.5 - ], + "lat": [34, 45.7], + "lon": [136, 8.5], "alt": 159, "kjName": "上野", "knName": "ウエノ", @@ -11218,14 +7012,8 @@ "53121": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 43.5 - ], - "lon": [ - 136, - 18.5 - ], + "lat": [34, 43.5], + "lon": [136, 18.5], "alt": 810, "kjName": "笠取山", "knName": "カサトリヤマ", @@ -11234,14 +7022,8 @@ "53133": { "type": "A", "elems": "11111111", - "lat": [ - 34, - 44 - ], - "lon": [ - 136, - 31.1 - ], + "lat": [34, 44], + "lon": [136, 31.1], "alt": 3, "kjName": "津", "knName": "ツ", @@ -11250,14 +7032,8 @@ "53141": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 37.6 - ], - "lon": [ - 136, - 6.5 - ], + "lat": [34, 37.6], + "lon": [136, 6.5], "alt": 226, "kjName": "名張", "knName": "ナバリ", @@ -11266,14 +7042,8 @@ "53151": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 37.5 - ], - "lon": [ - 136, - 19.3 - ], + "lat": [34, 37.5], + "lon": [136, 19.3], "alt": 60, "kjName": "白山", "knName": "ハクサン", @@ -11282,14 +7052,8 @@ "53196": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 31.7 - ], - "lon": [ - 136, - 39.9 - ], + "lat": [34, 31.7], + "lon": [136, 39.9], "alt": 10, "kjName": "小俣", "knName": "オバタ", @@ -11298,14 +7062,8 @@ "53231": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 26.9 - ], - "lon": [ - 136, - 23.4 - ], + "lat": [34, 26.9], + "lon": [136, 23.4], "alt": 120, "kjName": "粥見", "knName": "カユミ", @@ -11314,14 +7072,8 @@ "53257": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 28.9 - ], - "lon": [ - 136, - 49.5 - ], + "lat": [34, 28.9], + "lon": [136, 49.5], "alt": 2, "kjName": "鳥羽", "knName": "トバ", @@ -11330,14 +7082,8 @@ "53287": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 19.4 - ], - "lon": [ - 136, - 29.3 - ], + "lat": [34, 19.4], + "lon": [136, 29.3], "alt": 560, "kjName": "藤坂峠", "knName": "フジサカトウゲ", @@ -11346,14 +7092,8 @@ "53296": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 20.7 - ], - "lon": [ - 136, - 40.9 - ], + "lat": [34, 20.7], + "lon": [136, 40.9], "alt": 6, "kjName": "南伊勢", "knName": "ミナミイセ", @@ -11362,14 +7102,8 @@ "53307": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 18.5 - ], - "lon": [ - 136, - 52.4 - ], + "lat": [34, 18.5], + "lon": [136, 52.4], "alt": 31, "kjName": "阿児", "knName": "アゴ", @@ -11378,14 +7112,8 @@ "53321": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 16.7 - ], - "lon": [ - 136, - 12.5 - ], + "lat": [34, 16.7], + "lon": [136, 12.5], "alt": 205, "kjName": "宮川", "knName": "ミヤガワ", @@ -11394,14 +7122,8 @@ "53326": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 12.5 - ], - "lon": [ - 136, - 19.6 - ], + "lat": [34, 12.5], + "lon": [136, 19.6], "alt": 3, "kjName": "紀伊長島", "knName": "キイナガシマ", @@ -11410,14 +7132,8 @@ "53378": { "type": "B", "elems": "11111011", - "lat": [ - 34, - 4.1 - ], - "lon": [ - 136, - 11.6 - ], + "lat": [34, 4.1], + "lon": [136, 11.6], "alt": 15, "kjName": "尾鷲", "knName": "オワセ", @@ -11426,14 +7142,8 @@ "53401": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 55.9 - ], - "lon": [ - 136, - 8.3 - ], + "lat": [33, 55.9], + "lon": [136, 8.3], "alt": 23, "kjName": "熊野新鹿", "knName": "クマノアタシカ", @@ -11442,14 +7152,8 @@ "53416": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 51.1 - ], - "lon": [ - 135, - 58.8 - ], + "lat": [33, 51.1], + "lon": [135, 58.8], "alt": 130, "kjName": "御浜", "knName": "ミハマ", @@ -11458,14 +7162,8 @@ "54012": { "type": "C", "elems": "11112000", - "lat": [ - 38, - 27.9 - ], - "lon": [ - 139, - 15.2 - ], + "lat": [38, 27.9], + "lon": [139, 15.2], "alt": 4, "kjName": "粟島", "knName": "アワシマ", @@ -11474,14 +7172,8 @@ "54041": { "type": "C", "elems": "11112000", - "lat": [ - 38, - 19.8 - ], - "lon": [ - 138, - 30.7 - ], + "lat": [38, 19.8], + "lon": [138, 30.7], "alt": 58, "kjName": "弾崎", "knName": "ハジキザキ", @@ -11490,14 +7182,8 @@ "54056": { "type": "C", "elems": "01000000", - "lat": [ - 38, - 19.8 - ], - "lon": [ - 139, - 36.2 - ], + "lat": [38, 19.8], + "lon": [139, 36.2], "alt": 85, "kjName": "高根", "knName": "タカネ", @@ -11506,14 +7192,8 @@ "54086": { "type": "C", "elems": "11112010", - "lat": [ - 38, - 13.6 - ], - "lon": [ - 139, - 28.7 - ], + "lat": [38, 13.6], + "lon": [139, 28.7], "alt": 10, "kjName": "村上", "knName": "ムラカミ", @@ -11522,14 +7202,8 @@ "54097": { "type": "C", "elems": "01000000", - "lat": [ - 38, - 14.8 - ], - "lon": [ - 139, - 36.3 - ], + "lat": [38, 14.8], + "lon": [139, 36.3], "alt": 45, "kjName": "三面", "knName": "ミオモテ", @@ -11538,14 +7212,8 @@ "54157": { "type": "B", "elems": "11111111", - "lat": [ - 38, - 1.7 - ], - "lon": [ - 138, - 14.4 - ], + "lat": [38, 1.7], + "lon": [138, 14.4], "alt": 6, "kjName": "相川", "knName": "アイカワ", @@ -11554,14 +7222,8 @@ "54166": { "type": "C", "elems": "11112000", - "lat": [ - 38, - 4.4 - ], - "lon": [ - 138, - 26.4 - ], + "lat": [38, 4.4], + "lon": [138, 26.4], "alt": 2, "kjName": "両津", "knName": "リョウツ", @@ -11570,14 +7232,8 @@ "54181": { "type": "C", "elems": "11112000", - "lat": [ - 38, - 4.6 - ], - "lon": [ - 139, - 23.3 - ], + "lat": [38, 4.6], + "lon": [139, 23.3], "alt": 14, "kjName": "中条", "knName": "ナカジョウ", @@ -11586,14 +7242,8 @@ "54191": { "type": "C", "elems": "11112100", - "lat": [ - 38, - 5.5 - ], - "lon": [ - 139, - 33.8 - ], + "lat": [38, 5.5], + "lon": [139, 33.8], "alt": 33, "kjName": "下関", "knName": "シモセキ", @@ -11602,14 +7252,8 @@ "54232": { "type": "A", "elems": "11111111", - "lat": [ - 37, - 53.6 - ], - "lon": [ - 139, - 1.1 - ], + "lat": [37, 53.6], + "lon": [139, 1.1], "alt": 4, "kjName": "新潟", "knName": "ニイガタ", @@ -11618,14 +7262,8 @@ "54236": { "type": "C", "elems": "11110100", - "lat": [ - 37, - 57.3 - ], - "lon": [ - 139, - 6.7 - ], + "lat": [37, 57.3], + "lon": [139, 6.7], "alt": 1, "kjName": "松浜", "knName": "マツハマ:新潟空港", @@ -11634,14 +7272,8 @@ "54271": { "type": "C", "elems": "11112000", - "lat": [ - 37, - 50.5 - ], - "lon": [ - 138, - 18.8 - ], + "lat": [37, 50.5], + "lon": [138, 18.8], "alt": 11, "kjName": "羽茂", "knName": "ハモチ", @@ -11650,14 +7282,8 @@ "54296": { "type": "C", "elems": "11112110", - "lat": [ - 37, - 47.5 - ], - "lon": [ - 139, - 5.2 - ], + "lat": [37, 47.5], + "lon": [139, 5.2], "alt": 3, "kjName": "新津", "knName": "ニイツ", @@ -11666,14 +7292,8 @@ "54301": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 50 - ], - "lon": [ - 139, - 14.2 - ], + "lat": [37, 50], + "lon": [139, 14.2], "alt": 9, "kjName": "瓢湖", "knName": "ヒョウコ", @@ -11682,14 +7302,8 @@ "54311": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 50.1 - ], - "lon": [ - 139, - 24.9 - ], + "lat": [37, 50.1], + "lon": [139, 24.9], "alt": 135, "kjName": "赤谷", "knName": "アカダニ", @@ -11698,14 +7312,8 @@ "54341": { "type": "C", "elems": "11112000", - "lat": [ - 37, - 46.1 - ], - "lon": [ - 138, - 54.8 - ], + "lat": [37, 46.1], + "lon": [138, 54.8], "alt": 2, "kjName": "巻", "knName": "マキ", @@ -11714,14 +7322,8 @@ "54387": { "type": "C", "elems": "11112000", - "lat": [ - 37, - 38.4 - ], - "lon": [ - 138, - 46 - ], + "lat": [37, 38.4], + "lon": [138, 46], "alt": 44, "kjName": "寺泊", "knName": "テラドマリ", @@ -11730,14 +7332,8 @@ "54396": { "type": "C", "elems": "11112000", - "lat": [ - 37, - 38.4 - ], - "lon": [ - 138, - 57.3 - ], + "lat": [37, 38.4], + "lon": [138, 57.3], "alt": 9, "kjName": "三条", "knName": "サンジョウ", @@ -11746,14 +7342,8 @@ "54406": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 41.8 - ], - "lon": [ - 139, - 11.3 - ], + "lat": [37, 41.8], + "lon": [139, 11.3], "alt": 25, "kjName": "村松", "knName": "ムラマツ", @@ -11762,14 +7352,8 @@ "54421": { "type": "C", "elems": "11112100", - "lat": [ - 37, - 40.3 - ], - "lon": [ - 139, - 26.8 - ], + "lat": [37, 40.3], + "lon": [139, 26.8], "alt": 100, "kjName": "津川", "knName": "ツガワ", @@ -11778,14 +7362,8 @@ "54462": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 34.8 - ], - "lon": [ - 139, - 8.4 - ], + "lat": [37, 34.8], + "lon": [139, 8.4], "alt": 125, "kjName": "宮寄上", "knName": "ミヤヨリカミ", @@ -11794,14 +7372,8 @@ "54472": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 33 - ], - "lon": [ - 139, - 22.2 - ], + "lat": [37, 33], + "lon": [139, 22.2], "alt": 200, "kjName": "室谷", "knName": "ムロヤ", @@ -11810,14 +7382,8 @@ "54501": { "type": "C", "elems": "11112100", - "lat": [ - 37, - 27 - ], - "lon": [ - 138, - 49.4 - ], + "lat": [37, 27], + "lon": [138, 49.4], "alt": 23, "kjName": "長岡", "knName": "ナガオカ", @@ -11826,14 +7392,8 @@ "54506": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 28.5 - ], - "lon": [ - 138, - 59.5 - ], + "lat": [37, 28.5], + "lon": [138, 59.5], "alt": 83, "kjName": "栃尾", "knName": "トチオ", @@ -11842,14 +7402,8 @@ "54541": { "type": "C", "elems": "11112110", - "lat": [ - 37, - 21.1 - ], - "lon": [ - 138, - 33.2 - ], + "lat": [37, 21.1], + "lon": [138, 33.2], "alt": 7, "kjName": "柏崎", "knName": "カシワザキ", @@ -11858,14 +7412,8 @@ "54566": { "type": "C", "elems": "11112100", - "lat": [ - 37, - 20.8 - ], - "lon": [ - 139, - 2.6 - ], + "lat": [37, 20.8], + "lon": [139, 2.6], "alt": 222, "kjName": "守門", "knName": "スモン", @@ -11874,14 +7422,8 @@ "54586": { "type": "C", "elems": "11112010", - "lat": [ - 37, - 13.5 - ], - "lon": [ - 138, - 19.5 - ], + "lat": [37, 13.5], + "lon": [138, 19.5], "alt": 13, "kjName": "大潟", "knName": "オオガタ", @@ -11890,14 +7432,8 @@ "54606": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 17.5 - ], - "lon": [ - 138, - 42.1 - ], + "lat": [37, 17.5], + "lon": [138, 42.1], "alt": 83, "kjName": "小国", "knName": "オグニ", @@ -11906,14 +7442,8 @@ "54616": { "type": "C", "elems": "11112100", - "lat": [ - 37, - 13.6 - ], - "lon": [ - 138, - 57.8 - ], + "lat": [37, 13.6], + "lon": [138, 57.8], "alt": 98, "kjName": "小出", "knName": "コイデ", @@ -11922,14 +7452,8 @@ "54621": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 12.3 - ], - "lon": [ - 139, - 3.7 - ], + "lat": [37, 12.3], + "lon": [139, 3.7], "alt": 240, "kjName": "大湯", "knName": "オオユ", @@ -11938,14 +7462,8 @@ "54651": { "type": "B", "elems": "11111111", - "lat": [ - 37, - 6.4 - ], - "lon": [ - 138, - 14.8 - ], + "lat": [37, 6.4], + "lon": [138, 14.8], "alt": 13, "kjName": "高田", "knName": "タカダ", @@ -11954,14 +7472,8 @@ "54661": { "type": "C", "elems": "11112100", - "lat": [ - 37, - 6.4 - ], - "lon": [ - 138, - 27.4 - ], + "lat": [37, 6.4], + "lon": [138, 27.4], "alt": 126, "kjName": "安塚", "knName": "ヤスヅカ", @@ -11970,14 +7482,8 @@ "54666": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 12 - ], - "lon": [ - 138, - 31 - ], + "lat": [37, 12], + "lon": [138, 31], "alt": 206, "kjName": "川谷", "knName": "カワダニ", @@ -11986,14 +7492,8 @@ "54671": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 7.9 - ], - "lon": [ - 138, - 36.4 - ], + "lat": [37, 7.9], + "lon": [138, 36.4], "alt": 210, "kjName": "松代", "knName": "マツダイ", @@ -12002,14 +7502,8 @@ "54676": { "type": "C", "elems": "11112100", - "lat": [ - 37, - 8.6 - ], - "lon": [ - 138, - 43.6 - ], + "lat": [37, 8.6], + "lon": [138, 43.6], "alt": 170, "kjName": "十日町", "knName": "トオカマチ", @@ -12018,14 +7512,8 @@ "54711": { "type": "C", "elems": "11112000", - "lat": [ - 37, - 2.6 - ], - "lon": [ - 137, - 52.5 - ], + "lat": [37, 2.6], + "lon": [137, 52.5], "alt": 8, "kjName": "糸魚川", "knName": "イトイガワ", @@ -12034,14 +7522,8 @@ "54721": { "type": "C", "elems": "11112100", - "lat": [ - 37, - 5 - ], - "lon": [ - 138, - 1.4 - ], + "lat": [37, 5], + "lon": [138, 1.4], "alt": 55, "kjName": "能生", "knName": "ノウ", @@ -12050,14 +7532,8 @@ "54737": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 1.8 - ], - "lon": [ - 138, - 20.6 - ], + "lat": [37, 1.8], + "lon": [138, 20.6], "alt": 255, "kjName": "筒方", "knName": "ドウガタ", @@ -12066,14 +7542,8 @@ "54761": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 2.3 - ], - "lon": [ - 138, - 50.8 - ], + "lat": [37, 2.3], + "lon": [138, 50.8], "alt": 195, "kjName": "塩沢", "knName": "シオザワ", @@ -12082,14 +7552,8 @@ "54816": { "type": "C", "elems": "11112100", - "lat": [ - 36, - 56 - ], - "lon": [ - 138, - 13.3 - ], + "lat": [36, 56], + "lon": [138, 13.3], "alt": 350, "kjName": "関山", "knName": "セキヤマ", @@ -12098,14 +7562,8 @@ "54836": { "type": "C", "elems": "11112100", - "lat": [ - 36, - 59.8 - ], - "lon": [ - 138, - 41 - ], + "lat": [36, 59.8], + "lon": [138, 41], "alt": 452, "kjName": "津南", "knName": "ツナン", @@ -12114,14 +7572,8 @@ "54841": { "type": "C", "elems": "11112100", - "lat": [ - 36, - 56.5 - ], - "lon": [ - 138, - 48.6 - ], + "lat": [36, 56.5], + "lon": [138, 48.6], "alt": 340, "kjName": "湯沢", "knName": "ユザワ", @@ -12130,14 +7582,8 @@ "54876": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 53.2 - ], - "lon": [ - 137, - 51.8 - ], + "lat": [36, 53.2], + "lon": [137, 51.8], "alt": 260, "kjName": "平岩", "knName": "ヒライワ", @@ -12146,14 +7592,8 @@ "54892": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 53.4 - ], - "lon": [ - 138, - 16.5 - ], + "lat": [36, 53.4], + "lon": [138, 16.5], "alt": 633, "kjName": "樽本", "knName": "タルモト", @@ -12162,14 +7602,8 @@ "55022": { "type": "C", "elems": "11112110", - "lat": [ - 36, - 56.2 - ], - "lon": [ - 137, - 33.8 - ], + "lat": [36, 56.2], + "lon": [137, 33.8], "alt": 43, "kjName": "朝日", "knName": "アサヒ", @@ -12178,14 +7612,8 @@ "55041": { "type": "C", "elems": "11112100", - "lat": [ - 36, - 51.8 - ], - "lon": [ - 136, - 57.6 - ], + "lat": [36, 51.8], + "lon": [136, 57.6], "alt": 7, "kjName": "氷見", "knName": "ヒミ", @@ -12194,14 +7622,8 @@ "55056": { "type": "C", "elems": "11112110", - "lat": [ - 36, - 49.3 - ], - "lon": [ - 137, - 25.7 - ], + "lat": [36, 49.3], + "lon": [137, 25.7], "alt": 48, "kjName": "魚津", "knName": "ウオヅ", @@ -12210,14 +7632,8 @@ "55063": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 50.8 - ], - "lon": [ - 137, - 33.4 - ], + "lat": [36, 50.8], + "lon": [137, 33.4], "alt": 160, "kjName": "宇奈月", "knName": "ウナヅキ", @@ -12226,14 +7642,8 @@ "55091": { "type": "B", "elems": "11111111", - "lat": [ - 36, - 47.5 - ], - "lon": [ - 137, - 3.3 - ], + "lat": [36, 47.5], + "lon": [137, 3.3], "alt": 12, "kjName": "伏木", "knName": "フシキ", @@ -12242,14 +7652,8 @@ "55102": { "type": "A", "elems": "11111111", - "lat": [ - 36, - 42.5 - ], - "lon": [ - 137, - 12.1 - ], + "lat": [36, 42.5], + "lon": [137, 12.1], "alt": 9, "kjName": "富山", "knName": "トヤマ", @@ -12258,14 +7662,8 @@ "55141": { "type": "C", "elems": "11112110", - "lat": [ - 36, - 36.6 - ], - "lon": [ - 136, - 57.3 - ], + "lat": [36, 36.6], + "lon": [136, 57.3], "alt": 69, "kjName": "砺波", "knName": "トナミ", @@ -12274,14 +7672,8 @@ "55151": { "type": "C", "elems": "11110100", - "lat": [ - 36, - 38.9 - ], - "lon": [ - 137, - 11.2 - ], + "lat": [36, 38.9], + "lon": [137, 11.2], "alt": 24, "kjName": "秋ヶ島", "knName": "アキガシマ:富山空港", @@ -12290,14 +7682,8 @@ "55156": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 36.5 - ], - "lon": [ - 137, - 17 - ], + "lat": [36, 36.5], + "lon": [137, 17], "alt": 128, "kjName": "大山", "knName": "オオヤマ", @@ -12306,14 +7692,8 @@ "55166": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 40.2 - ], - "lon": [ - 137, - 25.4 - ], + "lat": [36, 40.2], + "lon": [137, 25.4], "alt": 296, "kjName": "上市", "knName": "カミイチ", @@ -12322,14 +7702,8 @@ "55191": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 32.7 - ], - "lon": [ - 136, - 52.3 - ], + "lat": [36, 32.7], + "lon": [136, 52.3], "alt": 91, "kjName": "南砺高宮", "knName": "ナントタカミヤ", @@ -12338,14 +7712,8 @@ "55206": { "type": "C", "elems": "11112010", - "lat": [ - 36, - 34.2 - ], - "lon": [ - 137, - 9.5 - ], + "lat": [36, 34.2], + "lon": [137, 9.5], "alt": 124, "kjName": "八尾", "knName": "ヤツオ", @@ -12354,14 +7722,8 @@ "55217": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 34.6 - ], - "lon": [ - 137, - 23.1 - ], + "lat": [36, 34.6], + "lon": [137, 23.1], "alt": 379, "kjName": "立山芦峅", "knName": "タテヤマアシクラ", @@ -12370,14 +7732,8 @@ "55252": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 25.8 - ], - "lon": [ - 136, - 56.5 - ], + "lat": [36, 25.8], + "lon": [136, 56.5], "alt": 357, "kjName": "五箇山", "knName": "ゴカヤマ", @@ -12386,14 +7742,8 @@ "55267": { "type": "C", "elems": "01000100", - "lat": [ - 36, - 28.4 - ], - "lon": [ - 137, - 14.2 - ], + "lat": [36, 28.4], + "lon": [137, 14.2], "alt": 215, "kjName": "猪谷", "knName": "イノタニ", @@ -12402,14 +7752,8 @@ "56036": { "type": "C", "elems": "11112110", - "lat": [ - 37, - 26.8 - ], - "lon": [ - 137, - 17.2 - ], + "lat": [37, 26.8], + "lon": [137, 17.2], "alt": 4, "kjName": "珠洲", "knName": "スズ", @@ -12418,14 +7762,8 @@ "56052": { "type": "B", "elems": "11111111", - "lat": [ - 37, - 23.4 - ], - "lon": [ - 136, - 53.7 - ], + "lat": [37, 23.4], + "lon": [136, 53.7], "alt": 5, "kjName": "輪島", "knName": "ワジマ", @@ -12434,14 +7772,8 @@ "56081": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 15.7 - ], - "lon": [ - 136, - 43.7 - ], + "lat": [37, 15.7], + "lon": [136, 43.7], "alt": 11, "kjName": "門前", "knName": "モンゼン", @@ -12450,14 +7782,8 @@ "56093": { "type": "C", "elems": "11110000", - "lat": [ - 37, - 17.6 - ], - "lon": [ - 136, - 57.7 - ], + "lat": [37, 17.6], + "lon": [136, 57.7], "alt": 219, "kjName": "三井", "knName": "ミイ:能登空港", @@ -12466,14 +7792,8 @@ "56116": { "type": "C", "elems": "11112010", - "lat": [ - 37, - 8.6 - ], - "lon": [ - 136, - 43.5 - ], + "lat": [37, 8.6], + "lon": [136, 43.5], "alt": 6, "kjName": "志賀", "knName": "シカ", @@ -12482,14 +7802,8 @@ "56146": { "type": "C", "elems": "11112110", - "lat": [ - 37, - 1.8 - ], - "lon": [ - 136, - 59.5 - ], + "lat": [37, 1.8], + "lon": [136, 59.5], "alt": 58, "kjName": "七尾", "knName": "ナナオ", @@ -12498,14 +7812,8 @@ "56176": { "type": "C", "elems": "11112010", - "lat": [ - 36, - 53.6 - ], - "lon": [ - 136, - 46.6 - ], + "lat": [36, 53.6], + "lon": [136, 46.6], "alt": 15, "kjName": "羽咋", "knName": "ハクイ", @@ -12514,14 +7822,8 @@ "56186": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 42.7 - ], - "lon": [ - 136, - 41.5 - ], + "lat": [36, 42.7], + "lon": [136, 41.5], "alt": 42, "kjName": "かほく", "knName": "カホク", @@ -12530,14 +7832,8 @@ "56192": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 47.3 - ], - "lon": [ - 136, - 46.1 - ], + "lat": [36, 47.3], + "lon": [136, 46.1], "alt": 90, "kjName": "宝達志水", "knName": "ホウダツシミズ", @@ -12546,14 +7842,8 @@ "56227": { "type": "A", "elems": "11111111", - "lat": [ - 36, - 35.3 - ], - "lon": [ - 136, - 38 - ], + "lat": [36, 35.3], + "lon": [136, 38], "alt": 6, "kjName": "金沢", "knName": "カナザワ", @@ -12562,14 +7852,8 @@ "56232": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 31.2 - ], - "lon": [ - 136, - 44.7 - ], + "lat": [36, 31.2], + "lon": [136, 44.7], "alt": 420, "kjName": "医王山", "knName": "イオウゼン", @@ -12578,14 +7862,8 @@ "56276": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 22.9 - ], - "lon": [ - 136, - 26.1 - ], + "lat": [36, 22.9], + "lon": [136, 26.1], "alt": 3, "kjName": "小松", "knName": "コマツ", @@ -12594,14 +7872,8 @@ "56286": { "type": "C", "elems": "11112100", - "lat": [ - 36, - 23.8 - ], - "lon": [ - 136, - 37.2 - ], + "lat": [36, 23.8], + "lon": [136, 37.2], "alt": 136, "kjName": "白山河内", "knName": "ハクサンカワチ", @@ -12610,14 +7882,8 @@ "56301": { "type": "C", "elems": "11112100", - "lat": [ - 36, - 13.8 - ], - "lon": [ - 136, - 21.7 - ], + "lat": [36, 13.8], + "lon": [136, 21.7], "alt": 83, "kjName": "加賀菅谷", "knName": "カガスガタニ", @@ -12626,14 +7892,8 @@ "56346": { "type": "C", "elems": "01000000", - "lat": [ - 36, - 10.8 - ], - "lon": [ - 136, - 37.5 - ], + "lat": [36, 10.8], + "lon": [136, 37.5], "alt": 470, "kjName": "白山白峰", "knName": "ハクサンシラミネ", @@ -12642,14 +7902,8 @@ "56401": { "type": "C", "elems": "01000000", - "lat": [ - 37, - 51 - ], - "lon": [ - 136, - 55.1 - ], + "lat": [37, 51], + "lon": [136, 55.1], "alt": 8, "kjName": "舳倉島", "knName": "ヘグラジマ", @@ -12658,14 +7912,8 @@ "57001": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 14.6 - ], - "lon": [ - 136, - 10.4 - ], + "lat": [36, 14.6], + "lon": [136, 10.4], "alt": 34, "kjName": "三国", "knName": "ミクニ", @@ -12674,14 +7922,8 @@ "57026": { "type": "C", "elems": "11110000", - "lat": [ - 36, - 8.5 - ], - "lon": [ - 136, - 13.4 - ], + "lat": [36, 8.5], + "lon": [136, 13.4], "alt": 5, "kjName": "春江", "knName": "ハルエ:福井空港", @@ -12690,14 +7932,8 @@ "57051": { "type": "C", "elems": "11112010", - "lat": [ - 36, - 0.7 - ], - "lon": [ - 135, - 59.4 - ], + "lat": [36, 0.7], + "lon": [135, 59.4], "alt": 30, "kjName": "越廼", "knName": "コシノ", @@ -12706,14 +7942,8 @@ "57066": { "type": "A", "elems": "11111111", - "lat": [ - 36, - 3.3 - ], - "lon": [ - 136, - 13.3 - ], + "lat": [36, 3.3], + "lon": [136, 13.3], "alt": 9, "kjName": "福井", "knName": "フクイ", @@ -12722,14 +7952,8 @@ "57071": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 59.9 - ], - "lon": [ - 136, - 21.5 - ], + "lat": [35, 59.9], + "lon": [136, 21.5], "alt": 70, "kjName": "美山", "knName": "ミヤマ", @@ -12738,14 +7962,8 @@ "57082": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 2.3 - ], - "lon": [ - 136, - 31.3 - ], + "lat": [36, 2.3], + "lon": [136, 31.3], "alt": 196, "kjName": "勝山", "knName": "カツヤマ", @@ -12754,14 +7972,8 @@ "57106": { "type": "C", "elems": "01000100", - "lat": [ - 35, - 54.3 - ], - "lon": [ - 136, - 10.4 - ], + "lat": [35, 54.3], + "lon": [136, 10.4], "alt": 32, "kjName": "武生", "knName": "タケフ", @@ -12770,14 +7982,8 @@ "57121": { "type": "C", "elems": "11112100", - "lat": [ - 35, - 58.3 - ], - "lon": [ - 136, - 29.8 - ], + "lat": [35, 58.3], + "lon": [136, 29.8], "alt": 182, "kjName": "大野", "knName": "オオノ", @@ -12786,14 +7992,8 @@ "57176": { "type": "C", "elems": "01000100", - "lat": [ - 35, - 54.5 - ], - "lon": [ - 136, - 40.1 - ], + "lat": [35, 54.5], + "lon": [136, 40.1], "alt": 436, "kjName": "九頭竜", "knName": "クズリュウ", @@ -12802,14 +8002,8 @@ "57206": { "type": "C", "elems": "11112100", - "lat": [ - 35, - 46 - ], - "lon": [ - 136, - 12 - ], + "lat": [35, 46], + "lon": [136, 12], "alt": 128, "kjName": "今庄", "knName": "イマジョウ", @@ -12818,14 +8012,8 @@ "57248": { "type": "B", "elems": "11111111", - "lat": [ - 35, - 39.2 - ], - "lon": [ - 136, - 3.7 - ], + "lat": [35, 39.2], + "lon": [136, 3.7], "alt": 2, "kjName": "敦賀", "knName": "ツルガ", @@ -12834,14 +8022,8 @@ "57286": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 36 - ], - "lon": [ - 135, - 55 - ], + "lat": [35, 36], + "lon": [135, 55], "alt": 10, "kjName": "美浜", "knName": "ミハマ", @@ -12850,14 +8032,8 @@ "57311": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 28.8 - ], - "lon": [ - 135, - 37 - ], + "lat": [35, 28.8], + "lon": [135, 37], "alt": 3, "kjName": "大飯", "knName": "オオイ", @@ -12866,14 +8042,8 @@ "57317": { "type": "C", "elems": "11112110", - "lat": [ - 35, - 29 - ], - "lon": [ - 135, - 46.9 - ], + "lat": [35, 29], + "lon": [135, 46.9], "alt": 10, "kjName": "小浜", "knName": "オバマ", @@ -12882,14 +8052,8 @@ "60026": { "type": "C", "elems": "01000100", - "lat": [ - 35, - 34.9 - ], - "lon": [ - 136, - 11.3 - ], + "lat": [35, 34.9], + "lon": [136, 11.3], "alt": 220, "kjName": "柳ケ瀬", "knName": "ヤナガセ", @@ -12898,14 +8062,8 @@ "60051": { "type": "C", "elems": "11112100", - "lat": [ - 35, - 24.7 - ], - "lon": [ - 136, - 1.7 - ], + "lat": [35, 24.7], + "lon": [136, 1.7], "alt": 88, "kjName": "今津", "knName": "イマヅ", @@ -12914,14 +8072,8 @@ "60061": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 25.4 - ], - "lon": [ - 136, - 14.5 - ], + "lat": [35, 25.4], + "lon": [136, 14.5], "alt": 95, "kjName": "長浜", "knName": "ナガハマ", @@ -12930,14 +8082,8 @@ "60081": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 18.5 - ], - "lon": [ - 135, - 49.8 - ], + "lat": [35, 18.5], + "lon": [135, 49.8], "alt": 380, "kjName": "朽木平良", "knName": "クツキヘラ", @@ -12946,14 +8092,8 @@ "60102": { "type": "C", "elems": "11112100", - "lat": [ - 35, - 23 - ], - "lon": [ - 136, - 20.6 - ], + "lat": [35, 23], + "lon": [136, 20.6], "alt": 147, "kjName": "米原", "knName": "マイバラ", @@ -12962,14 +8102,8 @@ "60116": { "type": "C", "elems": "11112010", - "lat": [ - 35, - 14.1 - ], - "lon": [ - 135, - 57.4 - ], + "lat": [35, 14.1], + "lon": [135, 57.4], "alt": 90, "kjName": "南小松", "knName": "ミナミコマツ", @@ -12978,14 +8112,8 @@ "60131": { "type": "A", "elems": "11111111", - "lat": [ - 35, - 16.5 - ], - "lon": [ - 136, - 14.6 - ], + "lat": [35, 16.5], + "lon": [136, 14.6], "alt": 87, "kjName": "彦根", "knName": "ヒコネ", @@ -12994,14 +8122,8 @@ "60161": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 7.6 - ], - "lon": [ - 136, - 5.5 - ], + "lat": [35, 7.6], + "lon": [136, 5.5], "alt": 90, "kjName": "近江八幡", "knName": "オウミハチマン", @@ -13010,14 +8132,8 @@ "60196": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 3.7 - ], - "lon": [ - 136, - 11.4 - ], + "lat": [35, 3.7], + "lon": [136, 11.4], "alt": 128, "kjName": "東近江", "knName": "ヒガシオウミ", @@ -13026,14 +8142,8 @@ "60216": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 59.5 - ], - "lon": [ - 135, - 54.7 - ], + "lat": [34, 59.5], + "lon": [135, 54.7], "alt": 86, "kjName": "大津", "knName": "オオツ", @@ -13042,14 +8152,8 @@ "60226": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 54.8 - ], - "lon": [ - 136, - 4.8 - ], + "lat": [34, 54.8], + "lon": [136, 4.8], "alt": 265, "kjName": "信楽", "knName": "シガラキ", @@ -13058,14 +8162,8 @@ "60236": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 56.3 - ], - "lon": [ - 136, - 16.7 - ], + "lat": [34, 56.3], + "lon": [136, 16.7], "alt": 248, "kjName": "土山", "knName": "ツチヤマ", @@ -13074,14 +8172,8 @@ "61001": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 44.2 - ], - "lon": [ - 135, - 5.2 - ], + "lat": [35, 44.2], + "lon": [135, 5.2], "alt": 42, "kjName": "間人", "knName": "タイザ", @@ -13090,14 +8182,8 @@ "61031": { "type": "C", "elems": "01000100", - "lat": [ - 35, - 37.1 - ], - "lon": [ - 135, - 4.3 - ], + "lat": [35, 37.1], + "lon": [135, 4.3], "alt": 23, "kjName": "峰山", "knName": "ミネヤマ", @@ -13106,14 +8192,8 @@ "61076": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 33 - ], - "lon": [ - 135, - 14.1 - ], + "lat": [35, 33], + "lon": [135, 14.1], "alt": 2, "kjName": "宮津", "knName": "ミヤヅ", @@ -13122,14 +8202,8 @@ "61111": { "type": "B", "elems": "11111111", - "lat": [ - 35, - 27 - ], - "lon": [ - 135, - 19 - ], + "lat": [35, 27], + "lon": [135, 19], "alt": 2, "kjName": "舞鶴", "knName": "マイヅル", @@ -13138,14 +8212,8 @@ "61096": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 25.1 - ], - "lon": [ - 135, - 5.2 - ], + "lat": [35, 25.1], + "lon": [135, 5.2], "alt": 223, "kjName": "坂浦", "knName": "サカウラ", @@ -13154,14 +8222,8 @@ "61151": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 22.9 - ], - "lon": [ - 135, - 27.2 - ], + "lat": [35, 22.9], + "lon": [135, 27.2], "alt": 175, "kjName": "睦寄", "knName": "ムツヨリ", @@ -13170,14 +8232,8 @@ "61187": { "type": "C", "elems": "11112010", - "lat": [ - 35, - 18.7 - ], - "lon": [ - 135, - 6.8 - ], + "lat": [35, 18.7], + "lon": [135, 6.8], "alt": 17, "kjName": "福知山", "knName": "フクチヤマ", @@ -13186,14 +8242,8 @@ "61192": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 13 - ], - "lon": [ - 135, - 13.9 - ], + "lat": [35, 13], + "lon": [135, 13.9], "alt": 105, "kjName": "三和", "knName": "ミワ", @@ -13202,14 +8252,8 @@ "61196": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 17.8 - ], - "lon": [ - 135, - 18.9 - ], + "lat": [35, 17.8], + "lon": [135, 18.9], "alt": 87, "kjName": "綾部山家", "knName": "アヤベヤマガ", @@ -13218,14 +8262,8 @@ "61201": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 15.6 - ], - "lon": [ - 135, - 23.7 - ], + "lat": [35, 15.6], + "lon": [135, 23.7], "alt": 95, "kjName": "本庄", "knName": "ホンジョウ", @@ -13234,14 +8272,8 @@ "61206": { "type": "C", "elems": "11112100", - "lat": [ - 35, - 16.5 - ], - "lon": [ - 135, - 33 - ], + "lat": [35, 16.5], + "lon": [135, 33], "alt": 200, "kjName": "美山", "knName": "ミヤマ", @@ -13250,14 +8282,8 @@ "61241": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 10.6 - ], - "lon": [ - 135, - 25.2 - ], + "lat": [35, 10.6], + "lon": [135, 25.2], "alt": 150, "kjName": "須知", "knName": "シュウチ", @@ -13266,14 +8292,8 @@ "61242": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 6.5 - ], - "lon": [ - 135, - 27.3 - ], + "lat": [35, 6.5], + "lon": [135, 27.3], "alt": 134, "kjName": "園部", "knName": "ソノベ", @@ -13282,14 +8302,8 @@ "61251": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 10.9 - ], - "lon": [ - 135, - 39.7 - ], + "lat": [35, 10.9], + "lon": [135, 39.7], "alt": 260, "kjName": "京北", "knName": "ケイホク", @@ -13298,14 +8312,8 @@ "61286": { "type": "A", "elems": "11111111", - "lat": [ - 35, - 0.8 - ], - "lon": [ - 135, - 43.9 - ], + "lat": [35, 0.8], + "lon": [135, 43.9], "alt": 41, "kjName": "京都", "knName": "キョウト", @@ -13314,14 +8322,8 @@ "61306": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 55.8 - ], - "lon": [ - 135, - 40.7 - ], + "lat": [34, 55.8], + "lon": [135, 40.7], "alt": 71, "kjName": "長岡京", "knName": "ナガオカキョウ", @@ -13330,14 +8332,8 @@ "61326": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 49.8 - ], - "lon": [ - 135, - 45.6 - ], + "lat": [34, 49.8], + "lon": [135, 45.6], "alt": 20, "kjName": "京田辺", "knName": "キョウタナベ", @@ -13346,14 +8342,8 @@ "62016": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 56.9 - ], - "lon": [ - 135, - 27.3 - ], + "lat": [34, 56.9], + "lon": [135, 27.3], "alt": 235, "kjName": "能勢", "knName": "ノセ", @@ -13362,14 +8352,8 @@ "62037": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 51.6 - ], - "lon": [ - 135, - 33.6 - ], + "lat": [34, 51.6], + "lon": [135, 33.6], "alt": 78, "kjName": "茨木", "knName": "イバラキ", @@ -13378,14 +8362,8 @@ "62046": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 48.5 - ], - "lon": [ - 135, - 40.3 - ], + "lat": [34, 48.5], + "lon": [135, 40.3], "alt": 26, "kjName": "枚方", "knName": "ヒラカタ", @@ -13394,14 +8372,8 @@ "62051": { "type": "C", "elems": "11110000", - "lat": [ - 34, - 47 - ], - "lon": [ - 135, - 26.3 - ], + "lat": [34, 47], + "lon": [135, 26.3], "alt": 12, "kjName": "豊中", "knName": "トヨナカ:大阪国際空港", @@ -13410,14 +8382,8 @@ "62078": { "type": "A", "elems": "11111111", - "lat": [ - 34, - 40.9 - ], - "lon": [ - 135, - 31.1 - ], + "lat": [34, 40.9], + "lon": [135, 31.1], "alt": 23, "kjName": "大阪", "knName": "オオサカ", @@ -13426,14 +8392,8 @@ "62081": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 40.5 - ], - "lon": [ - 135, - 40.6 - ], + "lat": [34, 40.5], + "lon": [135, 40.6], "alt": 626, "kjName": "生駒山", "knName": "イコマヤマ", @@ -13442,14 +8402,8 @@ "62091": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 33.3 - ], - "lon": [ - 135, - 29.1 - ], + "lat": [34, 33.3], + "lon": [135, 29.1], "alt": 20, "kjName": "堺", "knName": "サカイ", @@ -13458,14 +8412,8 @@ "62096": { "type": "C", "elems": "11110000", - "lat": [ - 34, - 35.8 - ], - "lon": [ - 135, - 36 - ], + "lat": [34, 35.8], + "lon": [135, 36], "alt": 10, "kjName": "八尾", "knName": "ヤオ:八尾空港", @@ -13474,14 +8422,8 @@ "62101": { "type": "C", "elems": "11110000", - "lat": [ - 34, - 26 - ], - "lon": [ - 135, - 13.9 - ], + "lat": [34, 26], + "lon": [135, 13.9], "alt": 5, "kjName": "関空島", "knName": "カンクウジマ:関西国際空港", @@ -13490,14 +8432,8 @@ "62111": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 25.4 - ], - "lon": [ - 135, - 32.6 - ], + "lat": [34, 25.4], + "lon": [135, 32.6], "alt": 160, "kjName": "河内長野", "knName": "カワチナガノ", @@ -13506,14 +8442,8 @@ "62131": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 23.1 - ], - "lon": [ - 135, - 21 - ], + "lat": [34, 23.1], + "lon": [135, 21], "alt": 68, "kjName": "熊取", "knName": "クマトリ", @@ -13522,14 +8452,8 @@ "63016": { "type": "C", "elems": "11112110", - "lat": [ - 35, - 37.5 - ], - "lon": [ - 134, - 37.6 - ], + "lat": [35, 37.5], + "lon": [134, 37.6], "alt": 5, "kjName": "香住", "knName": "カスミ", @@ -13538,14 +8462,8 @@ "63032": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 31.7 - ], - "lon": [ - 134, - 28.8 - ], + "lat": [35, 31.7], + "lon": [134, 28.8], "alt": 233, "kjName": "温泉", "knName": "オンセン", @@ -13554,14 +8472,8 @@ "63051": { "type": "B", "elems": "11111111", - "lat": [ - 35, - 32.1 - ], - "lon": [ - 134, - 49.3 - ], + "lat": [35, 32.1], + "lon": [134, 49.3], "alt": 3, "kjName": "豊岡", "knName": "トヨオカ", @@ -13570,14 +8482,8 @@ "63071": { "type": "C", "elems": "11112110", - "lat": [ - 35, - 25.9 - ], - "lon": [ - 134, - 35 - ], + "lat": [35, 25.9], + "lon": [134, 35], "alt": 540, "kjName": "兎和野高原", "knName": "ウワノコウゲン", @@ -13586,14 +8492,8 @@ "63111": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 19.9 - ], - "lon": [ - 134, - 39.9 - ], + "lat": [35, 19.9], + "lon": [134, 39.9], "alt": 150, "kjName": "大屋", "knName": "オオヤ", @@ -13602,14 +8502,8 @@ "63116": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 23.9 - ], - "lon": [ - 134, - 44.4 - ], + "lat": [35, 23.9], + "lon": [134, 44.4], "alt": 183, "kjName": "八鹿", "knName": "ヨウカ", @@ -13618,14 +8512,8 @@ "63121": { "type": "C", "elems": "11112100", - "lat": [ - 35, - 19.4 - ], - "lon": [ - 134, - 50.9 - ], + "lat": [35, 19.4], + "lon": [134, 50.9], "alt": 80, "kjName": "和田山", "knName": "ワダヤマ", @@ -13634,14 +8522,8 @@ "63201": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 10 - ], - "lon": [ - 134, - 47.5 - ], + "lat": [35, 10], + "lon": [134, 47.5], "alt": 320, "kjName": "生野", "knName": "イクノ", @@ -13650,14 +8532,8 @@ "63216": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 8.2 - ], - "lon": [ - 135, - 3.9 - ], + "lat": [35, 8.2], + "lon": [135, 3.9], "alt": 98, "kjName": "柏原", "knName": "カイバラ", @@ -13666,14 +8542,8 @@ "63241": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 1 - ], - "lon": [ - 134, - 22.1 - ], + "lat": [35, 1], + "lon": [134, 22.1], "alt": 120, "kjName": "佐用", "knName": "サヨウ", @@ -13682,14 +8552,8 @@ "63251": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 5.8 - ], - "lon": [ - 134, - 35.1 - ], + "lat": [35, 5.8], + "lon": [134, 35.1], "alt": 195, "kjName": "一宮", "knName": "イチノミヤ", @@ -13698,14 +8562,8 @@ "63321": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 57 - ], - "lon": [ - 134, - 44.9 - ], + "lat": [34, 57], + "lon": [134, 44.9], "alt": 72, "kjName": "福崎", "knName": "フクサキ", @@ -13714,14 +8572,8 @@ "63331": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 59.9 - ], - "lon": [ - 134, - 59.8 - ], + "lat": [34, 59.9], + "lon": [134, 59.8], "alt": 72, "kjName": "西脇", "knName": "ニシワキ", @@ -13730,14 +8582,8 @@ "63346": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 1.5 - ], - "lon": [ - 135, - 17.6 - ], + "lat": [35, 1.5], + "lon": [135, 17.6], "alt": 330, "kjName": "後川", "knName": "シツカワ", @@ -13746,14 +8592,8 @@ "63366": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 51.5 - ], - "lon": [ - 134, - 22.4 - ], + "lat": [34, 51.5], + "lon": [134, 22.4], "alt": 20, "kjName": "上郡", "knName": "カミゴオリ", @@ -13762,14 +8602,8 @@ "63383": { "type": "B", "elems": "11111011", - "lat": [ - 34, - 50.3 - ], - "lon": [ - 134, - 40.2 - ], + "lat": [34, 50.3], + "lon": [134, 40.2], "alt": 38, "kjName": "姫路", "knName": "ヒメジ", @@ -13778,14 +8612,8 @@ "63411": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 53.7 - ], - "lon": [ - 135, - 12.7 - ], + "lat": [34, 53.7], + "lon": [135, 12.7], "alt": 150, "kjName": "三田", "knName": "サンダ", @@ -13794,14 +8622,8 @@ "63461": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 46.6 - ], - "lon": [ - 135, - 0.8 - ], + "lat": [34, 46.6], + "lon": [135, 0.8], "alt": 145, "kjName": "三木", "knName": "ミキ", @@ -13810,14 +8632,8 @@ "63477": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 45 - ], - "lon": [ - 135, - 20.1 - ], + "lat": [34, 45], + "lon": [135, 20.1], "alt": 38, "kjName": "西宮", "knName": "ニシノミヤ", @@ -13826,14 +8642,8 @@ "63491": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 40.3 - ], - "lon": [ - 134, - 31.6 - ], + "lat": [34, 40.3], + "lon": [134, 31.6], "alt": 88, "kjName": "家島", "knName": "イエシマ", @@ -13842,14 +8652,8 @@ "63496": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 41.2 - ], - "lon": [ - 134, - 52.6 - ], + "lat": [34, 41.2], + "lon": [134, 52.6], "alt": 3, "kjName": "明石", "knName": "アカシ", @@ -13858,14 +8662,8 @@ "63517": { "type": "C", "elems": "11110000", - "lat": [ - 34, - 37.9 - ], - "lon": [ - 135, - 13.4 - ], + "lat": [34, 37.9], + "lon": [135, 13.4], "alt": 5, "kjName": "神戸空港", "knName": "コウベクウコウ:神戸空港", @@ -13874,14 +8672,8 @@ "63518": { "type": "A", "elems": "11111111", - "lat": [ - 34, - 41.8 - ], - "lon": [ - 135, - 12.7 - ], + "lat": [34, 41.8], + "lon": [135, 12.7], "alt": 5, "kjName": "神戸", "knName": "コウベ", @@ -13890,14 +8682,8 @@ "63551": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 28 - ], - "lon": [ - 134, - 50.9 - ], + "lat": [34, 28], + "lon": [134, 50.9], "alt": 5, "kjName": "郡家", "knName": "グンゲ", @@ -13906,14 +8692,8 @@ "63571": { "type": "B", "elems": "11111011", - "lat": [ - 34, - 18.6 - ], - "lon": [ - 134, - 50.9 - ], + "lat": [34, 18.6], + "lon": [134, 50.9], "alt": 69, "kjName": "洲本", "knName": "スモト", @@ -13922,14 +8702,8 @@ "63588": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 13.1 - ], - "lon": [ - 134, - 43.2 - ], + "lat": [34, 13.1], + "lon": [134, 43.2], "alt": 5, "kjName": "南淡", "knName": "ナンダン", @@ -13938,14 +8712,8 @@ "64036": { "type": "A", "elems": "11111111", - "lat": [ - 34, - 40.4 - ], - "lon": [ - 135, - 50.2 - ], + "lat": [34, 40.4], + "lon": [135, 50.2], "alt": 102, "kjName": "奈良", "knName": "ナラ", @@ -13954,14 +8722,8 @@ "64041": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 36.3 - ], - "lon": [ - 135, - 57.1 - ], + "lat": [34, 36.3], + "lon": [135, 57.1], "alt": 468, "kjName": "針", "knName": "ハリ", @@ -13970,14 +8732,8 @@ "64056": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 33.3 - ], - "lon": [ - 135, - 47.1 - ], + "lat": [34, 33.3], + "lon": [135, 47.1], "alt": 50, "kjName": "田原本", "knName": "タワラモト", @@ -13986,14 +8742,8 @@ "64076": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 31.3 - ], - "lon": [ - 136, - 9.5 - ], + "lat": [34, 31.3], + "lon": [136, 9.5], "alt": 610, "kjName": "曽爾", "knName": "ソニ", @@ -14002,14 +8752,8 @@ "64091": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 29.3 - ], - "lon": [ - 135, - 42.2 - ], + "lat": [34, 29.3], + "lon": [135, 42.2], "alt": 141, "kjName": "葛城", "knName": "カツラギ", @@ -14018,14 +8762,8 @@ "64101": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 29.3 - ], - "lon": [ - 135, - 55.9 - ], + "lat": [34, 29.3], + "lon": [135, 55.9], "alt": 349, "kjName": "大宇陀", "knName": "オオウダ", @@ -14034,14 +8772,8 @@ "64127": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 22.8 - ], - "lon": [ - 135, - 43.8 - ], + "lat": [34, 22.8], + "lon": [135, 43.8], "alt": 190, "kjName": "五條", "knName": "ゴジョウ", @@ -14050,14 +8782,8 @@ "64136": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 22.7 - ], - "lon": [ - 135, - 54 - ], + "lat": [34, 22.7], + "lon": [135, 54], "alt": 188, "kjName": "吉野", "knName": "ヨシノ", @@ -14066,14 +8792,8 @@ "64161": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 16.2 - ], - "lon": [ - 135, - 53 - ], + "lat": [34, 16.2], + "lon": [135, 53], "alt": 840, "kjName": "天川", "knName": "テンカワ", @@ -14082,14 +8802,8 @@ "64206": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 8.2 - ], - "lon": [ - 136, - 0.3 - ], + "lat": [34, 8.2], + "lon": [136, 0.3], "alt": 334, "kjName": "上北山", "knName": "カミキタヤマ", @@ -14098,14 +8812,8 @@ "64227": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 2.7 - ], - "lon": [ - 135, - 47.2 - ], + "lat": [34, 2.7], + "lon": [135, 47.2], "alt": 301, "kjName": "風屋", "knName": "カゼヤ", @@ -14114,14 +8822,8 @@ "64236": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 0.2 - ], - "lon": [ - 135, - 58 - ], + "lat": [34, 0.2], + "lon": [135, 58], "alt": 249, "kjName": "下北山", "knName": "シモキタヤマ", @@ -14130,14 +8832,8 @@ "64262": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 57.2 - ], - "lon": [ - 135, - 51.4 - ], + "lat": [33, 57.2], + "lon": [135, 51.4], "alt": 396, "kjName": "葛川", "knName": "クズカワ", @@ -14146,14 +8842,8 @@ "65021": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 20.8 - ], - "lon": [ - 135, - 26.2 - ], + "lat": [34, 20.8], + "lon": [135, 26.2], "alt": 840, "kjName": "葛城山", "knName": "カツラギサン", @@ -14162,14 +8852,8 @@ "65026": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 18.6 - ], - "lon": [ - 135, - 31.7 - ], + "lat": [34, 18.6], + "lon": [135, 31.7], "alt": 142, "kjName": "かつらぎ", "knName": "カツラギ", @@ -14178,14 +8862,8 @@ "65036": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 16.8 - ], - "lon": [ - 134, - 59.9 - ], + "lat": [34, 16.8], + "lon": [134, 59.9], "alt": 44, "kjName": "友ケ島", "knName": "トモガシマ", @@ -14194,14 +8872,8 @@ "65042": { "type": "A", "elems": "11111111", - "lat": [ - 34, - 13.7 - ], - "lon": [ - 135, - 9.8 - ], + "lat": [34, 13.7], + "lon": [135, 9.8], "alt": 14, "kjName": "和歌山", "knName": "ワカヤマ", @@ -14210,14 +8882,8 @@ "65061": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 13.3 - ], - "lon": [ - 135, - 35.4 - ], + "lat": [34, 13.3], + "lon": [135, 35.4], "alt": 801, "kjName": "高野山", "knName": "コウヤサン", @@ -14226,14 +8892,8 @@ "65106": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 2.1 - ], - "lon": [ - 135, - 10.9 - ], + "lat": [34, 2.1], + "lon": [135, 10.9], "alt": 8, "kjName": "湯浅", "knName": "ユアサ", @@ -14242,14 +8902,8 @@ "65121": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 5.2 - ], - "lon": [ - 135, - 25.5 - ], + "lat": [34, 5.2], + "lon": [135, 25.5], "alt": 240, "kjName": "清水", "knName": "シミズ", @@ -14258,14 +8912,8 @@ "65127": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 2.4 - ], - "lon": [ - 135, - 34 - ], + "lat": [34, 2.4], + "lon": [135, 34], "alt": 1130, "kjName": "護摩壇山", "knName": "ゴマダンザン", @@ -14274,14 +8922,8 @@ "65162": { "type": "C", "elems": "11112010", - "lat": [ - 33, - 56.7 - ], - "lon": [ - 135, - 33.4 - ], + "lat": [33, 56.7], + "lon": [135, 33.4], "alt": 410, "kjName": "龍神", "knName": "リュウジン", @@ -14290,14 +8932,8 @@ "65201": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 53.6 - ], - "lon": [ - 135, - 13 - ], + "lat": [33, 53.6], + "lon": [135, 13], "alt": 84, "kjName": "川辺", "knName": "カワベ", @@ -14306,14 +8942,8 @@ "65226": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 50.2 - ], - "lon": [ - 135, - 46.4 - ], + "lat": [33, 50.2], + "lon": [135, 46.4], "alt": 60, "kjName": "本宮", "knName": "ホングウ", @@ -14322,14 +8952,8 @@ "65256": { "type": "C", "elems": "11112010", - "lat": [ - 33, - 47.5 - ], - "lon": [ - 135, - 30.8 - ], + "lat": [33, 47.5], + "lon": [135, 30.8], "alt": 160, "kjName": "栗栖川", "knName": "クリスガワ", @@ -14338,14 +8962,8 @@ "65276": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 41.2 - ], - "lon": [ - 135, - 58.2 - ], + "lat": [33, 41.2], + "lon": [135, 58.2], "alt": 18, "kjName": "新宮", "knName": "シングウ", @@ -14354,14 +8972,8 @@ "65288": { "type": "C", "elems": "11110000", - "lat": [ - 33, - 39.7 - ], - "lon": [ - 135, - 21.8 - ], + "lat": [33, 39.7], + "lon": [135, 21.8], "alt": 89, "kjName": "南紀白浜", "knName": "ナンキシラハマ:南紀白浜空港", @@ -14370,14 +8982,8 @@ "65306": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 38.3 - ], - "lon": [ - 135, - 42.6 - ], + "lat": [33, 38.3], + "lon": [135, 42.6], "alt": 150, "kjName": "西川", "knName": "ニシカワ", @@ -14386,14 +8992,8 @@ "65311": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 40.5 - ], - "lon": [ - 135, - 50.9 - ], + "lat": [33, 40.5], + "lon": [135, 50.9], "alt": 275, "kjName": "色川", "knName": "イロカワ", @@ -14402,14 +9002,8 @@ "65321": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 36.3 - ], - "lon": [ - 135, - 28.8 - ], + "lat": [33, 36.3], + "lon": [135, 28.8], "alt": 17, "kjName": "日置川", "knName": "ヒキガワ", @@ -14418,14 +9012,8 @@ "65356": { "type": "B", "elems": "11111011", - "lat": [ - 33, - 27 - ], - "lon": [ - 135, - 45.4 - ], + "lat": [33, 27], + "lon": [135, 45.4], "alt": 68, "kjName": "潮岬", "knName": "シオノミサキ", @@ -14434,14 +9022,8 @@ "66046": { "type": "C", "elems": "11112110", - "lat": [ - 35, - 17.8 - ], - "lon": [ - 133, - 43.5 - ], + "lat": [35, 17.8], + "lon": [133, 43.5], "alt": 430, "kjName": "上長田", "knName": "カミナガタ", @@ -14450,14 +9032,8 @@ "66056": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 18 - ], - "lon": [ - 133, - 59.2 - ], + "lat": [35, 18], + "lon": [133, 59.2], "alt": 734, "kjName": "恩原", "knName": "オンバラ", @@ -14466,14 +9042,8 @@ "66091": { "type": "C", "elems": "11112110", - "lat": [ - 35, - 6.2 - ], - "lon": [ - 133, - 26.1 - ], + "lat": [35, 6.2], + "lon": [133, 26.1], "alt": 525, "kjName": "千屋", "knName": "チヤ", @@ -14482,14 +9052,8 @@ "66112": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 10.7 - ], - "lon": [ - 133, - 48.3 - ], + "lat": [35, 10.7], + "lon": [133, 48.3], "alt": 480, "kjName": "富", "knName": "トミ", @@ -14498,14 +9062,8 @@ "66127": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 6.7 - ], - "lon": [ - 134, - 10.2 - ], + "lat": [35, 6.7], + "lon": [134, 10.2], "alt": 212, "kjName": "奈義", "knName": "ナギ", @@ -14514,14 +9072,8 @@ "66136": { "type": "C", "elems": "11112100", - "lat": [ - 35, - 5.9 - ], - "lon": [ - 134, - 19.5 - ], + "lat": [35, 5.9], + "lon": [134, 19.5], "alt": 207, "kjName": "今岡", "knName": "イマオカ", @@ -14530,14 +9082,8 @@ "66171": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 4.1 - ], - "lon": [ - 133, - 45.2 - ], + "lat": [35, 4.1], + "lon": [133, 45.2], "alt": 144, "kjName": "久世", "knName": "クセ", @@ -14546,14 +9092,8 @@ "66186": { "type": "B", "elems": "11111111", - "lat": [ - 35, - 3.8 - ], - "lon": [ - 134, - 0.5 - ], + "lat": [35, 3.8], + "lon": [134, 0.5], "alt": 146, "kjName": "津山", "knName": "ツヤマ", @@ -14562,14 +9102,8 @@ "66221": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 56.6 - ], - "lon": [ - 133, - 31.1 - ], + "lat": [34, 56.6], + "lon": [133, 31.1], "alt": 393, "kjName": "新見", "knName": "ニイミ", @@ -14578,14 +9112,8 @@ "66226": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 57.9 - ], - "lon": [ - 133, - 37.7 - ], + "lat": [34, 57.9], + "lon": [133, 37.7], "alt": 180, "kjName": "下呰部", "knName": "シモアザエ", @@ -14594,14 +9122,8 @@ "66237": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 57.7 - ], - "lon": [ - 133, - 48.7 - ], + "lat": [34, 57.7], + "lon": [133, 48.7], "alt": 230, "kjName": "旭西", "knName": "アサヒニシ", @@ -14610,14 +9132,8 @@ "66251": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 55.1 - ], - "lon": [ - 134, - 4.9 - ], + "lat": [34, 55.1], + "lon": [134, 4.9], "alt": 56, "kjName": "赤磐", "knName": "アカイワ", @@ -14626,14 +9142,8 @@ "66276": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 49.7 - ], - "lon": [ - 133, - 31.4 - ], + "lat": [34, 49.7], + "lon": [133, 31.4], "alt": 529, "kjName": "陣山", "knName": "ジンヤマ", @@ -14642,14 +9152,8 @@ "66287": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 49 - ], - "lon": [ - 133, - 42.3 - ], + "lat": [34, 49], + "lon": [133, 42.3], "alt": 340, "kjName": "吉備中央", "knName": "キビチュウオウ", @@ -14658,14 +9162,8 @@ "66296": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 52 - ], - "lon": [ - 133, - 54.2 - ], + "lat": [34, 52], + "lon": [133, 54.2], "alt": 63, "kjName": "福渡", "knName": "フクワタリ", @@ -14674,14 +9172,8 @@ "66306": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 48.9 - ], - "lon": [ - 134, - 11 - ], + "lat": [34, 48.9], + "lon": [134, 11], "alt": 35, "kjName": "和気", "knName": "ワケ", @@ -14690,14 +9182,8 @@ "66336": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 47.5 - ], - "lon": [ - 133, - 36.6 - ], + "lat": [34, 47.5], + "lon": [133, 36.6], "alt": 60, "kjName": "高梁", "knName": "タカハシ", @@ -14706,14 +9192,8 @@ "66346": { "type": "C", "elems": "11110000", - "lat": [ - 34, - 45.4 - ], - "lon": [ - 133, - 51.3 - ], + "lat": [34, 45.4], + "lon": [133, 51.3], "alt": 239, "kjName": "日応寺", "knName": "ニチオウジ:岡山空港", @@ -14722,14 +9202,8 @@ "66381": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 41.1 - ], - "lon": [ - 133, - 26.7 - ], + "lat": [34, 41.1], + "lon": [133, 26.7], "alt": 390, "kjName": "佐屋", "knName": "サヤ", @@ -14738,14 +9212,8 @@ "66391": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 37 - ], - "lon": [ - 133, - 37.1 - ], + "lat": [34, 37], + "lon": [133, 37.1], "alt": 18, "kjName": "矢掛", "knName": "ヤカゲ", @@ -14754,14 +9222,8 @@ "66408": { "type": "A", "elems": "11111111", - "lat": [ - 34, - 41.1 - ], - "lon": [ - 133, - 55.5 - ], + "lat": [34, 41.1], + "lon": [133, 55.5], "alt": 5, "kjName": "岡山", "knName": "オカヤマ", @@ -14770,14 +9232,8 @@ "66421": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 40.9 - ], - "lon": [ - 134, - 12.4 - ], + "lat": [34, 40.9], + "lon": [134, 12.4], "alt": 10, "kjName": "虫明", "knName": "ムシアゲ", @@ -14786,14 +9242,8 @@ "66446": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 35.4 - ], - "lon": [ - 133, - 46.1 - ], + "lat": [34, 35.4], + "lon": [133, 46.1], "alt": 3, "kjName": "倉敷", "knName": "クラシキ", @@ -14802,14 +9252,8 @@ "66481": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 30.1 - ], - "lon": [ - 133, - 29.7 - ], + "lat": [34, 30.1], + "lon": [133, 29.7], "alt": 0, "kjName": "笠岡", "knName": "カサオカ", @@ -14818,14 +9262,8 @@ "66501": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 29.2 - ], - "lon": [ - 133, - 57 - ], + "lat": [34, 29.2], + "lon": [133, 57], "alt": 2, "kjName": "玉野", "knName": "タマノ", @@ -14834,14 +9272,8 @@ "67016": { "type": "C", "elems": "11112110", - "lat": [ - 35, - 2 - ], - "lon": [ - 132, - 54.1 - ], + "lat": [35, 2], + "lon": [132, 54.1], "alt": 570, "kjName": "高野", "knName": "タカノ", @@ -14850,14 +9282,8 @@ "67026": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 3.4 - ], - "lon": [ - 133, - 11.3 - ], + "lat": [35, 3.4], + "lon": [133, 11.3], "alt": 729, "kjName": "道後山", "knName": "ドウゴヤマ", @@ -14866,14 +9292,8 @@ "67052": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 55.7 - ], - "lon": [ - 132, - 49.8 - ], + "lat": [34, 55.7], + "lon": [132, 49.8], "alt": 304, "kjName": "君田", "knName": "キミタ", @@ -14882,14 +9302,8 @@ "67106": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 48.7 - ], - "lon": [ - 132, - 51 - ], + "lat": [34, 48.7], + "lon": [132, 51], "alt": 159, "kjName": "三次", "knName": "ミヨシ", @@ -14898,14 +9312,8 @@ "67116": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 51.6 - ], - "lon": [ - 133, - 1.4 - ], + "lat": [34, 51.6], + "lon": [133, 1.4], "alt": 300, "kjName": "庄原", "knName": "ショウバラ", @@ -14914,14 +9322,8 @@ "67126": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 53.7 - ], - "lon": [ - 133, - 16.6 - ], + "lat": [34, 53.7], + "lon": [133, 16.6], "alt": 310, "kjName": "東城", "knName": "トウジョウ", @@ -14930,14 +9332,8 @@ "67136": { "type": "C", "elems": "01000100", - "lat": [ - 34, - 42.5 - ], - "lon": [ - 132, - 10.4 - ], + "lat": [34, 42.5], + "lon": [132, 10.4], "alt": 774, "kjName": "八幡", "knName": "ヤワタ", @@ -14946,14 +9342,8 @@ "67151": { "type": "C", "elems": "11112110", - "lat": [ - 34, - 46.1 - ], - "lon": [ - 132, - 27.8 - ], + "lat": [34, 46.1], + "lon": [132, 27.8], "alt": 399, "kjName": "大朝", "knName": "オオアサ", @@ -14962,14 +9352,8 @@ "67161": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 43.3 - ], - "lon": [ - 132, - 39.3 - ], + "lat": [34, 43.3], + "lon": [132, 39.3], "alt": 318, "kjName": "美土里", "knName": "ミドリ", @@ -14978,14 +9362,8 @@ "67191": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 45.8 - ], - "lon": [ - 133, - 16.7 - ], + "lat": [34, 45.8], + "lon": [133, 16.7], "alt": 510, "kjName": "油木", "knName": "ユキ", @@ -14994,14 +9372,8 @@ "67211": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 41.9 - ], - "lon": [ - 132, - 18.7 - ], + "lat": [34, 41.9], + "lon": [132, 18.7], "alt": 525, "kjName": "王泊", "knName": "オオドマリ", @@ -15010,14 +9382,8 @@ "67212": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 36.6 - ], - "lon": [ - 132, - 19.2 - ], + "lat": [34, 36.6], + "lon": [132, 19.2], "alt": 210, "kjName": "加計", "knName": "カケ", @@ -15026,14 +9392,8 @@ "67217": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 38.8 - ], - "lon": [ - 132, - 26.6 - ], + "lat": [34, 38.8], + "lon": [132, 26.6], "alt": 400, "kjName": "都志見", "knName": "ツシミ", @@ -15042,14 +9402,8 @@ "67231": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 41.7 - ], - "lon": [ - 132, - 45.6 - ], + "lat": [34, 41.7], + "lon": [132, 45.6], "alt": 185, "kjName": "甲田", "knName": "コウダ", @@ -15058,14 +9412,8 @@ "67251": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 41.6 - ], - "lon": [ - 133, - 7 - ], + "lat": [34, 41.6], + "lon": [133, 7], "alt": 384, "kjName": "上下", "knName": "ジョウゲ", @@ -15074,14 +9422,8 @@ "67271": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 35.8 - ], - "lon": [ - 132, - 10.6 - ], + "lat": [34, 35.8], + "lon": [132, 10.6], "alt": 987, "kjName": "内黒山", "knName": "ウチグロヤマ", @@ -15090,14 +9432,8 @@ "67292": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 32.7 - ], - "lon": [ - 132, - 31.8 - ], + "lat": [34, 32.7], + "lon": [132, 31.8], "alt": 70, "kjName": "三入", "knName": "ミイリ", @@ -15106,14 +9442,8 @@ "67306": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 34 - ], - "lon": [ - 132, - 50.3 - ], + "lat": [34, 34], + "lon": [132, 50.3], "alt": 363, "kjName": "安宿", "knName": "アスカ", @@ -15122,14 +9452,8 @@ "67316": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 35 - ], - "lon": [ - 133, - 3 - ], + "lat": [34, 35], + "lon": [133, 3], "alt": 350, "kjName": "世羅", "knName": "セラ", @@ -15138,14 +9462,8 @@ "67326": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 33.7 - ], - "lon": [ - 133, - 13.9 - ], + "lat": [34, 33.7], + "lon": [133, 13.9], "alt": 70, "kjName": "府中", "knName": "フチュウ", @@ -15154,14 +9472,8 @@ "67351": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 29.9 - ], - "lon": [ - 132, - 17.4 - ], + "lat": [34, 29.9], + "lon": [132, 17.4], "alt": 206, "kjName": "佐伯湯来", "knName": "サエキユキ", @@ -15170,14 +9482,8 @@ "67371": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 29.9 - ], - "lon": [ - 132, - 39.6 - ], + "lat": [34, 29.9], + "lon": [132, 39.6], "alt": 215, "kjName": "志和", "knName": "シワ", @@ -15186,14 +9492,8 @@ "67376": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 25 - ], - "lon": [ - 132, - 42 - ], + "lat": [34, 25], + "lon": [132, 42], "alt": 224, "kjName": "東広島", "knName": "ヒガシヒロシマ", @@ -15202,14 +9502,8 @@ "67386": { "type": "C", "elems": "11110000", - "lat": [ - 34, - 26.1 - ], - "lon": [ - 132, - 55.1 - ], + "lat": [34, 26.1], + "lon": [132, 55.1], "alt": 331, "kjName": "本郷", "knName": "ホンゴウ:広島空港", @@ -15218,14 +9512,8 @@ "67401": { "type": "B", "elems": "11111011", - "lat": [ - 34, - 26.8 - ], - "lon": [ - 133, - 14.8 - ], + "lat": [34, 26.8], + "lon": [133, 14.8], "alt": 2, "kjName": "福山", "knName": "フクヤマ", @@ -15234,14 +9522,8 @@ "67421": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 21.9 - ], - "lon": [ - 132, - 11.4 - ], + "lat": [34, 21.9], + "lon": [132, 11.4], "alt": 317, "kjName": "廿日市津田", "knName": "ハツカイチツタ", @@ -15250,14 +9532,8 @@ "67437": { "type": "A", "elems": "11111111", - "lat": [ - 34, - 23.9 - ], - "lon": [ - 132, - 27.7 - ], + "lat": [34, 23.9], + "lon": [132, 27.7], "alt": 4, "kjName": "広島", "knName": "ヒロシマ", @@ -15266,14 +9542,8 @@ "67461": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 19.8 - ], - "lon": [ - 132, - 58.9 - ], + "lat": [34, 19.8], + "lon": [132, 58.9], "alt": 5, "kjName": "竹原", "knName": "タケハラ", @@ -15282,14 +9552,8 @@ "67471": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 16.7 - ], - "lon": [ - 133, - 7.4 - ], + "lat": [34, 16.7], + "lon": [133, 7.4], "alt": 3, "kjName": "生口島", "knName": "イクチジマ", @@ -15298,14 +9562,8 @@ "67496": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 13.3 - ], - "lon": [ - 132, - 13.2 - ], + "lat": [34, 13.3], + "lon": [132, 13.2], "alt": 1, "kjName": "大竹", "knName": "オオタケ", @@ -15314,14 +9572,8 @@ "67511": { "type": "B", "elems": "11111011", - "lat": [ - 34, - 14.4 - ], - "lon": [ - 132, - 33 - ], + "lat": [34, 14.4], + "lon": [132, 33], "alt": 4, "kjName": "呉", "knName": "クレ", @@ -15330,14 +9582,8 @@ "67566": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 5.5 - ], - "lon": [ - 132, - 29.3 - ], + "lat": [34, 5.5], + "lon": [132, 29.3], "alt": 3, "kjName": "倉橋", "knName": "クラハシ", @@ -15346,14 +9592,8 @@ "67576": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 9.9 - ], - "lon": [ - 132, - 44.9 - ], + "lat": [34, 9.9], + "lon": [132, 44.9], "alt": 48, "kjName": "呉市蒲刈", "knName": "クレシカマガリ", @@ -15362,14 +9602,8 @@ "68022": { "type": "B", "elems": "11111111", - "lat": [ - 36, - 12.2 - ], - "lon": [ - 133, - 20 - ], + "lat": [36, 12.2], + "lon": [133, 20], "alt": 27, "kjName": "西郷", "knName": "サイゴウ", @@ -15378,14 +9612,8 @@ "68046": { "type": "C", "elems": "11110000", - "lat": [ - 36, - 10.7 - ], - "lon": [ - 133, - 19.4 - ], + "lat": [36, 10.7], + "lon": [133, 19.4], "alt": 80, "kjName": "西郷岬", "knName": "サイゴウミサキ:隠岐空港", @@ -15394,14 +9622,8 @@ "68056": { "type": "C", "elems": "11112000", - "lat": [ - 36, - 5.8 - ], - "lon": [ - 133, - 5.8 - ], + "lat": [36, 5.8], + "lon": [133, 5.8], "alt": 3, "kjName": "海士", "knName": "アマ", @@ -15410,14 +9632,8 @@ "68091": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 31.2 - ], - "lon": [ - 132, - 59 - ], + "lat": [35, 31.2], + "lon": [132, 59], "alt": 3, "kjName": "鹿島", "knName": "カシマ", @@ -15426,14 +9642,8 @@ "68121": { "type": "C", "elems": "11110100", - "lat": [ - 35, - 24.8 - ], - "lon": [ - 132, - 53.4 - ], + "lat": [35, 24.8], + "lon": [132, 53.4], "alt": 2, "kjName": "斐川", "knName": "ヒカワ:出雲空港", @@ -15442,14 +9652,8 @@ "68132": { "type": "A", "elems": "11111111", - "lat": [ - 35, - 27.4 - ], - "lon": [ - 133, - 3.9 - ], + "lat": [35, 27.4], + "lon": [133, 3.9], "alt": 17, "kjName": "松江", "knName": "マツエ", @@ -15458,14 +9662,8 @@ "68156": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 19.9 - ], - "lon": [ - 132, - 43.8 - ], + "lat": [35, 19.9], + "lon": [132, 43.8], "alt": 20, "kjName": "出雲", "knName": "イズモ", @@ -15474,14 +9672,8 @@ "68166": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 19.1 - ], - "lon": [ - 132, - 57.9 - ], + "lat": [35, 19.1], + "lon": [132, 57.9], "alt": 56, "kjName": "大東", "knName": "ダイトウ", @@ -15490,14 +9682,8 @@ "68181": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 21 - ], - "lon": [ - 133, - 16.4 - ], + "lat": [35, 21], + "lon": [133, 16.4], "alt": 23, "kjName": "伯太", "knName": "ハクタ", @@ -15506,14 +9692,8 @@ "68206": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 13.3 - ], - "lon": [ - 132, - 43.4 - ], + "lat": [35, 13.3], + "lon": [132, 43.4], "alt": 100, "kjName": "佐田", "knName": "サダ", @@ -15522,14 +9702,8 @@ "68246": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 11.4 - ], - "lon": [ - 132, - 29.8 - ], + "lat": [35, 11.4], + "lon": [132, 29.8], "alt": 30, "kjName": "大田", "knName": "オオダ", @@ -15538,14 +9712,8 @@ "68261": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 11.8 - ], - "lon": [ - 132, - 48.9 - ], + "lat": [35, 11.8], + "lon": [132, 48.9], "alt": 215, "kjName": "掛合", "knName": "カケヤ", @@ -15554,14 +9722,8 @@ "68276": { "type": "C", "elems": "11112100", - "lat": [ - 35, - 10.4 - ], - "lon": [ - 133, - 6.2 - ], + "lat": [35, 10.4], + "lon": [133, 6.2], "alt": 369, "kjName": "横田", "knName": "ヨコタ", @@ -15570,14 +9732,8 @@ "68286": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 4.2 - ], - "lon": [ - 132, - 20 - ], + "lat": [35, 4.2], + "lon": [132, 20], "alt": 8, "kjName": "福光", "knName": "フクミツ", @@ -15586,14 +9742,8 @@ "68306": { "type": "C", "elems": "11112100", - "lat": [ - 35, - 0.1 - ], - "lon": [ - 132, - 42.7 - ], + "lat": [35, 0.1], + "lon": [132, 42.7], "alt": 444, "kjName": "赤名", "knName": "アカナ", @@ -15602,14 +9752,8 @@ "68346": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 57.2 - ], - "lon": [ - 132, - 20 - ], + "lat": [34, 57.2], + "lon": [132, 20], "alt": 32, "kjName": "桜江", "knName": "サクラエ", @@ -15618,14 +9762,8 @@ "68351": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 58.6 - ], - "lon": [ - 132, - 29.5 - ], + "lat": [34, 58.6], + "lon": [132, 29.5], "alt": 132, "kjName": "川本", "knName": "カワモト", @@ -15634,14 +9772,8 @@ "68376": { "type": "B", "elems": "11111011", - "lat": [ - 34, - 53.8 - ], - "lon": [ - 132, - 4.2 - ], + "lat": [34, 53.8], + "lon": [132, 4.2], "alt": 19, "kjName": "浜田", "knName": "ハマダ", @@ -15650,14 +9782,8 @@ "68401": { "type": "C", "elems": "11112100", - "lat": [ - 34, - 51.2 - ], - "lon": [ - 132, - 31.8 - ], + "lat": [34, 51.2], + "lon": [132, 31.8], "alt": 327, "kjName": "瑞穂", "knName": "ミズホ", @@ -15666,14 +9792,8 @@ "68421": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 47.7 - ], - "lon": [ - 131, - 56.9 - ], + "lat": [34, 47.7], + "lon": [131, 56.9], "alt": 9, "kjName": "三隅", "knName": "ミスミ", @@ -15682,14 +9802,8 @@ "68431": { "type": "C", "elems": "11112100", - "lat": [ - 34, - 46.6 - ], - "lon": [ - 132, - 6.5 - ], + "lat": [34, 46.6], + "lon": [132, 6.5], "alt": 380, "kjName": "弥栄", "knName": "ヤサカ", @@ -15698,14 +9812,8 @@ "68436": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 46.8 - ], - "lon": [ - 132, - 11.8 - ], + "lat": [34, 46.8], + "lon": [132, 11.8], "alt": 370, "kjName": "波佐", "knName": "ハザ", @@ -15714,14 +9822,8 @@ "68456": { "type": "C", "elems": "11110000", - "lat": [ - 34, - 40.5 - ], - "lon": [ - 131, - 47.4 - ], + "lat": [34, 40.5], + "lon": [131, 47.4], "alt": 54, "kjName": "高津", "knName": "タカツ:石見空港", @@ -15730,14 +9832,8 @@ "68462": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 40.6 - ], - "lon": [ - 131, - 50.6 - ], + "lat": [34, 40.6], + "lon": [131, 50.6], "alt": 4, "kjName": "益田", "knName": "マスダ", @@ -15746,14 +9842,8 @@ "68501": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 34.3 - ], - "lon": [ - 132, - 1 - ], + "lat": [34, 34.3], + "lon": [132, 1], "alt": 259, "kjName": "匹見", "knName": "ヒキミ", @@ -15762,14 +9852,8 @@ "68516": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 27.7 - ], - "lon": [ - 131, - 46.2 - ], + "lat": [34, 27.7], + "lon": [131, 46.2], "alt": 165, "kjName": "津和野", "knName": "ツワノ", @@ -15778,14 +9862,8 @@ "68541": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 23.5 - ], - "lon": [ - 131, - 53.6 - ], + "lat": [34, 23.5], + "lon": [131, 53.6], "alt": 250, "kjName": "吉賀", "knName": "ヨシカ", @@ -15794,14 +9872,8 @@ "69006": { "type": "B", "elems": "11111111", - "lat": [ - 35, - 32.6 - ], - "lon": [ - 133, - 14.1 - ], + "lat": [35, 32.6], + "lon": [133, 14.1], "alt": 2, "kjName": "境", "knName": "サカイ", @@ -15810,14 +9882,8 @@ "69021": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 31.4 - ], - "lon": [ - 133, - 34 - ], + "lat": [35, 31.4], + "lon": [133, 34], "alt": 15, "kjName": "塩津", "knName": "シオツ", @@ -15826,14 +9892,8 @@ "69041": { "type": "C", "elems": "11112010", - "lat": [ - 35, - 31.2 - ], - "lon": [ - 133, - 59.8 - ], + "lat": [35, 31.2], + "lon": [133, 59.8], "alt": 13, "kjName": "青谷", "knName": "アオヤ", @@ -15842,14 +9902,8 @@ "69052": { "type": "C", "elems": "11110000", - "lat": [ - 35, - 31.8 - ], - "lon": [ - 134, - 9.9 - ], + "lat": [35, 31.8], + "lon": [134, 9.9], "alt": 15, "kjName": "湖山", "knName": "コヤマ:鳥取空港", @@ -15858,14 +9912,8 @@ "69061": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 33.5 - ], - "lon": [ - 134, - 21.6 - ], + "lat": [35, 33.5], + "lon": [134, 21.6], "alt": 19, "kjName": "岩井", "knName": "イワイ", @@ -15874,14 +9922,8 @@ "69076": { "type": "B", "elems": "11111111", - "lat": [ - 35, - 26 - ], - "lon": [ - 133, - 20.3 - ], + "lat": [35, 26], + "lon": [133, 20.3], "alt": 7, "kjName": "米子", "knName": "ヨナゴ", @@ -15890,14 +9932,8 @@ "69101": { "type": "C", "elems": "11112100", - "lat": [ - 35, - 28.4 - ], - "lon": [ - 133, - 50.3 - ], + "lat": [35, 28.4], + "lon": [133, 50.3], "alt": 8, "kjName": "倉吉", "knName": "クラヨシ", @@ -15906,14 +9942,8 @@ "69111": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 24.8 - ], - "lon": [ - 134, - 1 - ], + "lat": [35, 24.8], + "lon": [134, 1], "alt": 210, "kjName": "鹿野", "knName": "シカノ", @@ -15922,14 +9952,8 @@ "69122": { "type": "A", "elems": "11111111", - "lat": [ - 35, - 29.2 - ], - "lon": [ - 134, - 14.3 - ], + "lat": [35, 29.2], + "lon": [134, 14.3], "alt": 7, "kjName": "鳥取", "knName": "トットリ", @@ -15938,14 +9962,8 @@ "69152": { "type": "C", "elems": "01000100", - "lat": [ - 35, - 23.6 - ], - "lon": [ - 133, - 32.2 - ], + "lat": [35, 23.6], + "lon": [133, 32.2], "alt": 875, "kjName": "大山", "knName": "ダイセン", @@ -15954,14 +9972,8 @@ "69161": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 22.7 - ], - "lon": [ - 133, - 45.4 - ], + "lat": [35, 22.7], + "lon": [133, 45.4], "alt": 150, "kjName": "関金", "knName": "セキガネ", @@ -15970,14 +9982,8 @@ "69181": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 19.7 - ], - "lon": [ - 134, - 6.8 - ], + "lat": [35, 19.7], + "lon": [134, 6.8], "alt": 210, "kjName": "佐治", "knName": "サジ", @@ -15986,14 +9992,8 @@ "69196": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 20 - ], - "lon": [ - 134, - 24.3 - ], + "lat": [35, 20], + "lon": [134, 24.3], "alt": 231, "kjName": "若桜", "knName": "ワカサ", @@ -16002,14 +10002,8 @@ "69222": { "type": "C", "elems": "01000000", - "lat": [ - 35, - 17.3 - ], - "lon": [ - 133, - 29 - ], + "lat": [35, 17.3], + "lon": [133, 29], "alt": 155, "kjName": "江尾", "knName": "エビ", @@ -16018,14 +10012,8 @@ "69246": { "type": "C", "elems": "11112110", - "lat": [ - 35, - 15.8 - ], - "lon": [ - 134, - 14.4 - ], + "lat": [35, 15.8], + "lon": [134, 14.4], "alt": 182, "kjName": "智頭", "knName": "チズ", @@ -16034,14 +10022,8 @@ "69271": { "type": "C", "elems": "11112000", - "lat": [ - 35, - 11.2 - ], - "lon": [ - 133, - 13.8 - ], + "lat": [35, 11.2], + "lon": [133, 13.8], "alt": 490, "kjName": "茶屋", "knName": "チャヤ", @@ -16050,14 +10032,8 @@ "71066": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 1.4 - ], - "lon": [ - 133, - 47.7 - ], + "lat": [34, 1.4], + "lon": [133, 47.7], "alt": 214, "kjName": "池田", "knName": "イケダ", @@ -16066,14 +10042,8 @@ "71087": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 2.4 - ], - "lon": [ - 134, - 9.4 - ], + "lat": [34, 2.4], + "lon": [134, 9.4], "alt": 160, "kjName": "穴吹", "knName": "アナブキ", @@ -16082,14 +10052,8 @@ "71106": { "type": "A", "elems": "11111111", - "lat": [ - 34, - 4 - ], - "lon": [ - 134, - 34.4 - ], + "lat": [34, 4], + "lon": [134, 34.4], "alt": 2, "kjName": "徳島", "knName": "トクシマ", @@ -16098,14 +10062,8 @@ "71136": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 59.4 - ], - "lon": [ - 134, - 2.2 - ], + "lat": [33, 59.4], + "lon": [134, 2.2], "alt": 228, "kjName": "半田", "knName": "ハンダ", @@ -16114,14 +10072,8 @@ "71191": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 52 - ], - "lon": [ - 133, - 54.2 - ], + "lat": [33, 52], + "lon": [133, 54.2], "alt": 532, "kjName": "京上", "knName": "キョウジョウ", @@ -16130,14 +10082,8 @@ "71211": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 52.7 - ], - "lon": [ - 134, - 23.3 - ], + "lat": [33, 52.7], + "lon": [134, 23.3], "alt": 290, "kjName": "福原旭", "knName": "フクハラアサヒ", @@ -16146,14 +10092,8 @@ "71231": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 50.2 - ], - "lon": [ - 134, - 44.5 - ], + "lat": [33, 50.2], + "lon": [134, 44.5], "alt": 10, "kjName": "蒲生田", "knName": "カモダ", @@ -16162,14 +10102,8 @@ "71251": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 46.3 - ], - "lon": [ - 134, - 11.9 - ], + "lat": [33, 46.3], + "lon": [134, 11.9], "alt": 363, "kjName": "木頭", "knName": "キトウ", @@ -16178,14 +10112,8 @@ "71266": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 43.9 - ], - "lon": [ - 134, - 32.3 - ], + "lat": [33, 43.9], + "lon": [134, 32.3], "alt": 3, "kjName": "日和佐", "knName": "ヒワサ", @@ -16194,14 +10122,8 @@ "71291": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 36.7 - ], - "lon": [ - 134, - 21.3 - ], + "lat": [33, 36.7], + "lon": [134, 21.3], "alt": 5, "kjName": "海陽", "knName": "カイヨウ", @@ -16210,14 +10132,8 @@ "72061": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 28.3 - ], - "lon": [ - 134, - 16.4 - ], + "lat": [34, 28.3], + "lon": [134, 16.4], "alt": 20, "kjName": "内海", "knName": "ウチノミ", @@ -16226,14 +10142,8 @@ "72086": { "type": "A", "elems": "11111111", - "lat": [ - 34, - 19.1 - ], - "lon": [ - 134, - 3.2 - ], + "lat": [34, 19.1], + "lon": [134, 3.2], "alt": 9, "kjName": "高松", "knName": "タカマツ", @@ -16242,14 +10152,8 @@ "72111": { "type": "B", "elems": "11111011", - "lat": [ - 34, - 16.5 - ], - "lon": [ - 133, - 45.1 - ], + "lat": [34, 16.5], + "lon": [133, 45.1], "alt": 4, "kjName": "多度津", "knName": "タドツ", @@ -16258,14 +10162,8 @@ "72121": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 14.2 - ], - "lon": [ - 133, - 55.4 - ], + "lat": [34, 14.2], + "lon": [133, 55.4], "alt": 60, "kjName": "滝宮", "knName": "タキノミヤ", @@ -16274,14 +10172,8 @@ "72126": { "type": "C", "elems": "11110000", - "lat": [ - 34, - 12.8 - ], - "lon": [ - 134, - 0.9 - ], + "lat": [34, 12.8], + "lon": [134, 0.9], "alt": 185, "kjName": "香南", "knName": "コウナン:高松空港", @@ -16290,14 +10182,8 @@ "72146": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 12.8 - ], - "lon": [ - 134, - 24.4 - ], + "lat": [34, 12.8], + "lon": [134, 24.4], "alt": 12, "kjName": "引田", "knName": "ヒケタ", @@ -16306,14 +10192,8 @@ "72161": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 7.2 - ], - "lon": [ - 133, - 46.3 - ], + "lat": [34, 7.2], + "lon": [133, 46.3], "alt": 65, "kjName": "財田", "knName": "サイタ", @@ -16322,14 +10202,8 @@ "72176": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 6.8 - ], - "lon": [ - 134, - 3 - ], + "lat": [34, 6.8], + "lon": [134, 3], "alt": 1040, "kjName": "竜王山", "knName": "リュウオウザン", @@ -16338,14 +10212,8 @@ "73001": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 15 - ], - "lon": [ - 133, - 0.4 - ], + "lat": [34, 15], + "lon": [133, 0.4], "alt": 9, "kjName": "大三島", "knName": "オオミシマ", @@ -16354,14 +10222,8 @@ "73071": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 1.1 - ], - "lon": [ - 132, - 56.4 - ], + "lat": [34, 1.1], + "lon": [132, 56.4], "alt": 67, "kjName": "玉川", "knName": "タマガワ", @@ -16370,14 +10232,8 @@ "73076": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 3.2 - ], - "lon": [ - 132, - 58.5 - ], + "lat": [34, 3.2], + "lon": [132, 58.5], "alt": 27, "kjName": "今治", "knName": "イマバリ", @@ -16386,14 +10242,8 @@ "73126": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 54.9 - ], - "lon": [ - 133, - 4.8 - ], + "lat": [33, 54.9], + "lon": [133, 4.8], "alt": 4, "kjName": "西条", "knName": "サイジョウ", @@ -16402,14 +10252,8 @@ "73141": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 56.2 - ], - "lon": [ - 133, - 20.3 - ], + "lat": [33, 56.2], + "lon": [133, 20.3], "alt": 90, "kjName": "新居浜", "knName": "ニイハマ", @@ -16418,14 +10262,8 @@ "73151": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 58.9 - ], - "lon": [ - 133, - 34.9 - ], + "lat": [33, 58.9], + "lon": [133, 34.9], "alt": 75, "kjName": "四国中央", "knName": "シコクチュウオウ", @@ -16434,14 +10272,8 @@ "73152": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 54.9 - ], - "lon": [ - 133, - 30.6 - ], + "lat": [33, 54.9], + "lon": [133, 30.6], "alt": 310, "kjName": "富郷", "knName": "トミサト", @@ -16450,14 +10282,8 @@ "73166": { "type": "A", "elems": "11111111", - "lat": [ - 33, - 50.6 - ], - "lon": [ - 132, - 46.6 - ], + "lat": [33, 50.6], + "lon": [132, 46.6], "alt": 32, "kjName": "松山", "knName": "マツヤマ", @@ -16466,14 +10292,8 @@ "73168": { "type": "C", "elems": "11110000", - "lat": [ - 33, - 49.6 - ], - "lon": [ - 132, - 41.9 - ], + "lat": [33, 49.6], + "lon": [132, 41.9], "alt": 4, "kjName": "松山南吉田", "knName": "マツヤマミナミヨシダ:松山空港", @@ -16482,14 +10302,8 @@ "73231": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 44.3 - ], - "lon": [ - 132, - 53.4 - ], + "lat": [33, 44.3], + "lon": [132, 53.4], "alt": 460, "kjName": "上林", "knName": "カミハヤシ", @@ -16498,14 +10312,8 @@ "73247": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 47.7 - ], - "lon": [ - 133, - 7.9 - ], + "lat": [33, 47.7], + "lon": [133, 7.9], "alt": 1280, "kjName": "成就社", "knName": "ジョウジュシャ", @@ -16514,14 +10322,8 @@ "73256": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 37 - ], - "lon": [ - 132, - 28.8 - ], + "lat": [33, 37], + "lon": [132, 28.8], "alt": 4, "kjName": "長浜", "knName": "ナガハマ", @@ -16530,14 +10332,8 @@ "73271": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 38.3 - ], - "lon": [ - 132, - 42.5 - ], + "lat": [33, 38.3], + "lon": [132, 42.5], "alt": 163, "kjName": "中山", "knName": "ナカヤマ", @@ -16546,14 +10342,8 @@ "73276": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 39.8 - ], - "lon": [ - 132, - 53.7 - ], + "lat": [33, 39.8], + "lon": [132, 53.7], "alt": 511, "kjName": "久万", "knName": "クマ", @@ -16562,14 +10352,8 @@ "73306": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 30.5 - ], - "lon": [ - 132, - 32.1 - ], + "lat": [33, 30.5], + "lon": [132, 32.1], "alt": 20, "kjName": "大洲", "knName": "オオズ", @@ -16578,14 +10362,8 @@ "73321": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 32.6 - ], - "lon": [ - 132, - 49.9 - ], + "lat": [33, 32.6], + "lon": [132, 49.9], "alt": 1000, "kjName": "獅子越峠", "knName": "シシゴエトウゲ", @@ -16594,14 +10372,8 @@ "73341": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 26.8 - ], - "lon": [ - 132, - 15.4 - ], + "lat": [33, 26.8], + "lon": [132, 15.4], "alt": 143, "kjName": "瀬戸", "knName": "セト", @@ -16610,14 +10382,8 @@ "73351": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 26.9 - ], - "lon": [ - 132, - 26 - ], + "lat": [33, 26.9], + "lon": [132, 26], "alt": 8, "kjName": "八幡浜", "knName": "ヤワタハマ", @@ -16626,14 +10392,8 @@ "73406": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 22 - ], - "lon": [ - 132, - 30.2 - ], + "lat": [33, 22], + "lon": [132, 30.2], "alt": 200, "kjName": "宇和", "knName": "ウワ", @@ -16642,14 +10402,8 @@ "73442": { "type": "B", "elems": "11111011", - "lat": [ - 33, - 13.6 - ], - "lon": [ - 132, - 33.1 - ], + "lat": [33, 13.6], + "lon": [132, 33.1], "alt": 2, "kjName": "宇和島", "knName": "ウワジマ", @@ -16658,14 +10412,8 @@ "73446": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 15.2 - ], - "lon": [ - 132, - 40.5 - ], + "lat": [33, 15.2], + "lon": [132, 40.5], "alt": 129, "kjName": "近永", "knName": "チカナガ", @@ -16674,14 +10422,8 @@ "73516": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 57.8 - ], - "lon": [ - 132, - 34.2 - ], + "lat": [32, 57.8], + "lon": [132, 34.2], "alt": 12, "kjName": "御荘", "knName": "ミショウ", @@ -16690,14 +10432,8 @@ "74056": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 45.9 - ], - "lon": [ - 133, - 20.3 - ], + "lat": [33, 45.9], + "lon": [133, 20.3], "alt": 605, "kjName": "本川", "knName": "ホンガワ", @@ -16706,14 +10442,8 @@ "74071": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 45.2 - ], - "lon": [ - 133, - 34.5 - ], + "lat": [33, 45.2], + "lon": [133, 34.5], "alt": 252, "kjName": "本山", "knName": "モトヤマ", @@ -16722,14 +10452,8 @@ "74101": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 36.4 - ], - "lon": [ - 133, - 10.2 - ], + "lat": [33, 36.4], + "lon": [133, 10.2], "alt": 141, "kjName": "池川", "knName": "イケガワ", @@ -16738,14 +10462,8 @@ "74126": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 40.7 - ], - "lon": [ - 133, - 41.1 - ], + "lat": [33, 40.7], + "lon": [133, 41.1], "alt": 346, "kjName": "繁藤", "knName": "シゲトウ", @@ -16754,14 +10472,8 @@ "74136": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 41.9 - ], - "lon": [ - 133, - 52.5 - ], + "lat": [33, 41.9], + "lon": [133, 52.5], "alt": 210, "kjName": "大栃", "knName": "オオドチ", @@ -16770,14 +10482,8 @@ "74151": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 36.9 - ], - "lon": [ - 134, - 6.5 - ], + "lat": [33, 36.9], + "lon": [134, 6.5], "alt": 450, "kjName": "魚梁瀬", "knName": "ヤナセ", @@ -16786,14 +10492,8 @@ "74166": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 30.7 - ], - "lon": [ - 133, - 16.3 - ], + "lat": [33, 30.7], + "lon": [133, 16.3], "alt": 80, "kjName": "佐川", "knName": "サカワ", @@ -16802,14 +10502,8 @@ "74181": { "type": "A", "elems": "11111111", - "lat": [ - 33, - 34 - ], - "lon": [ - 133, - 32.9 - ], + "lat": [33, 34], + "lon": [133, 32.9], "alt": 1, "kjName": "高知", "knName": "コウチ", @@ -16818,14 +10512,8 @@ "74187": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 35.4 - ], - "lon": [ - 133, - 38.6 - ], + "lat": [33, 35.4], + "lon": [133, 38.6], "alt": 12, "kjName": "後免", "knName": "ゴメン", @@ -16834,14 +10522,8 @@ "74188": { "type": "C", "elems": "11110000", - "lat": [ - 33, - 32.7 - ], - "lon": [ - 133, - 40.1 - ], + "lat": [33, 32.7], + "lon": [133, 40.1], "alt": 9, "kjName": "南国日章", "knName": "ナンコクニッショウ:高知空港", @@ -16850,14 +10532,8 @@ "74237": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 25 - ], - "lon": [ - 133, - 5.3 - ], + "lat": [33, 25], + "lon": [133, 5.3], "alt": 425, "kjName": "船戸", "knName": "フナト", @@ -16866,14 +10542,8 @@ "74238": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 28.8 - ], - "lon": [ - 133, - 5 - ], + "lat": [33, 28.8], + "lon": [133, 5], "alt": 835, "kjName": "鳥形山", "knName": "トリガタヤマ", @@ -16882,14 +10552,8 @@ "74271": { "type": "C", "elems": "11112010", - "lat": [ - 33, - 29.3 - ], - "lon": [ - 133, - 56 - ], + "lat": [33, 29.3], + "lon": [133, 56], "alt": 6, "kjName": "安芸", "knName": "アキ", @@ -16898,14 +10562,8 @@ "74276": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 25.6 - ], - "lon": [ - 134, - 0.4 - ], + "lat": [33, 25.6], + "lon": [134, 0.4], "alt": 17, "kjName": "田野", "knName": "タノ", @@ -16914,14 +10572,8 @@ "74296": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 23.4 - ], - "lon": [ - 132, - 55.3 - ], + "lat": [33, 23.4], + "lon": [132, 55.3], "alt": 415, "kjName": "梼原", "knName": "ユスハラ", @@ -16930,14 +10582,8 @@ "74311": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 23.1 - ], - "lon": [ - 133, - 16.6 - ], + "lat": [33, 23.1], + "lon": [133, 16.6], "alt": 4, "kjName": "須崎", "knName": "スサキ", @@ -16946,14 +10592,8 @@ "74336": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 24.7 - ], - "lon": [ - 134, - 11.9 - ], + "lat": [33, 24.7], + "lon": [134, 11.9], "alt": 26, "kjName": "佐喜浜", "knName": "サキハマ", @@ -16962,14 +10602,8 @@ "74361": { "type": "C", "elems": "11112010", - "lat": [ - 33, - 12.4 - ], - "lon": [ - 133, - 7.7 - ], + "lat": [33, 12.4], + "lon": [133, 7.7], "alt": 205, "kjName": "窪川", "knName": "クボカワ", @@ -16978,14 +10612,8 @@ "74372": { "type": "B", "elems": "11111011", - "lat": [ - 33, - 15.1 - ], - "lon": [ - 134, - 10.6 - ], + "lat": [33, 15.1], + "lon": [134, 10.6], "alt": 185, "kjName": "室戸岬", "knName": "ムロトミサキ", @@ -16994,14 +10622,8 @@ "74381": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 10.2 - ], - "lon": [ - 132, - 47.5 - ], + "lat": [33, 10.2], + "lon": [132, 47.5], "alt": 72, "kjName": "江川崎", "knName": "エカワサキ", @@ -17010,14 +10632,8 @@ "74391": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 11.6 - ], - "lon": [ - 132, - 58.3 - ], + "lat": [33, 11.6], + "lon": [132, 58.3], "alt": 150, "kjName": "大正", "knName": "タイショウ", @@ -17026,14 +10642,8 @@ "74436": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 4.7 - ], - "lon": [ - 133, - 6.1 - ], + "lat": [33, 4.7], + "lon": [133, 6.1], "alt": 3, "kjName": "佐賀", "knName": "サガ", @@ -17042,14 +10652,8 @@ "74447": { "type": "B", "elems": "11111011", - "lat": [ - 32, - 55.2 - ], - "lon": [ - 132, - 41.7 - ], + "lat": [32, 55.2], + "lon": [132, 41.7], "alt": 2, "kjName": "宿毛", "knName": "スクモ", @@ -17058,14 +10662,8 @@ "74456": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 59.4 - ], - "lon": [ - 132, - 55.2 - ], + "lat": [32, 59.4], + "lon": [132, 55.2], "alt": 8, "kjName": "中村", "knName": "ナカムラ", @@ -17074,14 +10672,8 @@ "74506": { "type": "C", "elems": "01000000", - "lat": [ - 32, - 47.7 - ], - "lon": [ - 132, - 52.3 - ], + "lat": [32, 47.7], + "lon": [132, 52.3], "alt": 9, "kjName": "三崎", "knName": "ミサキ", @@ -17090,14 +10682,8 @@ "74516": { "type": "B", "elems": "11111011", - "lat": [ - 32, - 43.3 - ], - "lon": [ - 133, - 0.6 - ], + "lat": [32, 43.3], + "lon": [133, 0.6], "alt": 31, "kjName": "清水", "knName": "シミズ", @@ -17106,14 +10692,8 @@ "81011": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 36.9 - ], - "lon": [ - 131, - 37.4 - ], + "lat": [34, 36.9], + "lon": [131, 37.4], "alt": 50, "kjName": "須佐", "knName": "スサ", @@ -17122,14 +10702,8 @@ "81071": { "type": "B", "elems": "11111011", - "lat": [ - 34, - 24.6 - ], - "lon": [ - 131, - 24.3 - ], + "lat": [34, 24.6], + "lon": [131, 24.3], "alt": 2, "kjName": "萩", "knName": "ハギ", @@ -17138,14 +10712,8 @@ "81116": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 22.2 - ], - "lon": [ - 131, - 3.3 - ], + "lat": [34, 22.2], + "lon": [131, 3.3], "alt": 20, "kjName": "油谷", "knName": "ユヤ", @@ -17154,14 +10722,8 @@ "81146": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 20.3 - ], - "lon": [ - 131, - 37.6 - ], + "lat": [34, 20.3], + "lon": [131, 37.6], "alt": 264, "kjName": "篠生", "knName": "シノブ", @@ -17170,14 +10732,8 @@ "81151": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 23.9 - ], - "lon": [ - 131, - 43.5 - ], + "lat": [34, 23.9], + "lon": [131, 43.5], "alt": 310, "kjName": "徳佐", "knName": "トクサ", @@ -17186,14 +10742,8 @@ "81167": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 21 - ], - "lon": [ - 132, - 3.8 - ], + "lat": [34, 21], + "lon": [132, 3.8], "alt": 945, "kjName": "羅漢山", "knName": "ラカンザン", @@ -17202,14 +10752,8 @@ "81196": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 14.1 - ], - "lon": [ - 131, - 18.4 - ], + "lat": [34, 14.1], + "lon": [131, 18.4], "alt": 240, "kjName": "秋吉台", "knName": "アキヨシダイ", @@ -17218,14 +10762,8 @@ "81228": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 13.5 - ], - "lon": [ - 131, - 48.9 - ], + "lat": [34, 13.5], + "lon": [131, 48.9], "alt": 368, "kjName": "鹿野", "knName": "カノ", @@ -17234,14 +10772,8 @@ "81231": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 15.7 - ], - "lon": [ - 131, - 57.1 - ], + "lat": [34, 15.7], + "lon": [131, 57.1], "alt": 97, "kjName": "広瀬", "knName": "ヒロセ", @@ -17250,14 +10782,8 @@ "81266": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 11.2 - ], - "lon": [ - 131, - 4.6 - ], + "lat": [34, 11.2], + "lon": [131, 4.6], "alt": 40, "kjName": "豊田", "knName": "トヨタ", @@ -17266,14 +10792,8 @@ "81271": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 7.1 - ], - "lon": [ - 131, - 10.9 - ], + "lat": [34, 7.1], + "lon": [131, 10.9], "alt": 56, "kjName": "東厚保", "knName": "ヒガシアツ", @@ -17282,14 +10802,8 @@ "81286": { "type": "B", "elems": "11111111", - "lat": [ - 34, - 9.7 - ], - "lon": [ - 131, - 27.7 - ], + "lat": [34, 9.7], + "lon": [131, 27.7], "alt": 18, "kjName": "山口", "knName": "ヤマグチ", @@ -17298,14 +10812,8 @@ "81301": { "type": "C", "elems": "01000000", - "lat": [ - 34, - 8.9 - ], - "lon": [ - 131, - 44.1 - ], + "lat": [34, 8.9], + "lon": [131, 44.1], "alt": 140, "kjName": "和田", "knName": "ワダ", @@ -17314,14 +10822,8 @@ "81321": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 9.3 - ], - "lon": [ - 132, - 10.7 - ], + "lat": [34, 9.3], + "lon": [132, 10.7], "alt": 41, "kjName": "岩国", "knName": "イワクニ", @@ -17330,14 +10832,8 @@ "81371": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 2.4 - ], - "lon": [ - 131, - 32 - ], + "lat": [34, 2.4], + "lon": [131, 32], "alt": 4, "kjName": "防府", "knName": "ホウフ", @@ -17346,14 +10842,8 @@ "81386": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 0.6 - ], - "lon": [ - 131, - 52.3 - ], + "lat": [34, 0.6], + "lon": [131, 52.3], "alt": 27, "kjName": "下松", "knName": "クダマツ", @@ -17362,14 +10852,8 @@ "81397": { "type": "C", "elems": "11112010", - "lat": [ - 34, - 5.7 - ], - "lon": [ - 132, - 4.5 - ], + "lat": [34, 5.7], + "lon": [132, 4.5], "alt": 68, "kjName": "玖珂", "knName": "クガ", @@ -17378,14 +10862,8 @@ "81428": { "type": "A", "elems": "11111111", - "lat": [ - 33, - 56.9 - ], - "lon": [ - 130, - 55.5 - ], + "lat": [33, 56.9], + "lon": [130, 55.5], "alt": 3, "kjName": "下関", "knName": "シモノセキ", @@ -17394,14 +10872,8 @@ "81436": { "type": "C", "elems": "11110000", - "lat": [ - 33, - 55.8 - ], - "lon": [ - 131, - 16.7 - ], + "lat": [33, 55.8], + "lon": [131, 16.7], "alt": 5, "kjName": "宇部", "knName": "ウベ:山口宇部空港", @@ -17410,14 +10882,8 @@ "81481": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 57.5 - ], - "lon": [ - 132, - 6.8 - ], + "lat": [33, 57.5], + "lon": [132, 6.8], "alt": 3, "kjName": "柳井", "knName": "ヤナイ", @@ -17426,14 +10892,8 @@ "81486": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 54.2 - ], - "lon": [ - 132, - 17.6 - ], + "lat": [33, 54.2], + "lon": [132, 17.6], "alt": 5, "kjName": "安下庄", "knName": "アゲノショウ", @@ -17442,14 +10902,8 @@ "82046": { "type": "C", "elems": "11112010", - "lat": [ - 33, - 48.5 - ], - "lon": [ - 130, - 32.3 - ], + "lat": [33, 48.5], + "lon": [130, 32.3], "alt": 7, "kjName": "宗像", "knName": "ムナカタ", @@ -17458,14 +10912,8 @@ "82056": { "type": "C", "elems": "11112010", - "lat": [ - 33, - 51.1 - ], - "lon": [ - 130, - 44.6 - ], + "lat": [33, 51.1], + "lon": [130, 44.6], "alt": 20, "kjName": "八幡", "knName": "ヤハタ", @@ -17474,14 +10922,8 @@ "82068": { "type": "C", "elems": "11110000", - "lat": [ - 33, - 50.7 - ], - "lon": [ - 131, - 2.1 - ], + "lat": [33, 50.7], + "lon": [131, 2.1], "alt": 7, "kjName": "空港北町", "knName": "クウコウキタマチ:北九州空港", @@ -17490,14 +10932,8 @@ "82097": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 46.7 - ], - "lon": [ - 130, - 51.9 - ], + "lat": [33, 46.7], + "lon": [130, 51.9], "alt": 55, "kjName": "東谷", "knName": "ヒガシタニ", @@ -17506,14 +10942,8 @@ "82101": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 42.8 - ], - "lon": [ - 130, - 58.5 - ], + "lat": [33, 42.8], + "lon": [130, 58.5], "alt": 9, "kjName": "行橋", "knName": "ユクハシ", @@ -17522,14 +10952,8 @@ "82136": { "type": "B", "elems": "11111011", - "lat": [ - 33, - 39.1 - ], - "lon": [ - 130, - 41.6 - ], + "lat": [33, 39.1], + "lon": [130, 41.6], "alt": 37, "kjName": "飯塚", "knName": "イイヅカ", @@ -17538,14 +10962,8 @@ "82171": { "type": "C", "elems": "11112010", - "lat": [ - 33, - 33.6 - ], - "lon": [ - 130, - 11.4 - ], + "lat": [33, 33.6], + "lon": [130, 11.4], "alt": 5, "kjName": "前原", "knName": "マエバル", @@ -17554,14 +10972,8 @@ "82182": { "type": "A", "elems": "11111111", - "lat": [ - 33, - 34.9 - ], - "lon": [ - 130, - 22.5 - ], + "lat": [33, 34.9], + "lon": [130, 22.5], "alt": 3, "kjName": "福岡", "knName": "フクオカ", @@ -17570,14 +10982,8 @@ "82186": { "type": "C", "elems": "11110000", - "lat": [ - 33, - 35 - ], - "lon": [ - 130, - 27.1 - ], + "lat": [33, 35], + "lon": [130, 27.1], "alt": 9, "kjName": "博多", "knName": "ハカタ:福岡空港", @@ -17586,14 +10992,8 @@ "82191": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 29.8 - ], - "lon": [ - 130, - 29.4 - ], + "lat": [33, 29.8], + "lon": [130, 29.4], "alt": 52, "kjName": "太宰府", "knName": "ダザイフ", @@ -17602,14 +11002,8 @@ "82206": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 33.5 - ], - "lon": [ - 130, - 51.3 - ], + "lat": [33, 33.5], + "lon": [130, 51.3], "alt": 92, "kjName": "添田", "knName": "ソエダ", @@ -17618,14 +11012,8 @@ "82241": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 29.3 - ], - "lon": [ - 130, - 21.2 - ], + "lat": [33, 29.3], + "lon": [130, 21.2], "alt": 83, "kjName": "早良脇山", "knName": "サワラワキヤマ", @@ -17634,14 +11022,8 @@ "82261": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 24.4 - ], - "lon": [ - 130, - 41.7 - ], + "lat": [33, 24.4], + "lon": [130, 41.7], "alt": 38, "kjName": "朝倉", "knName": "アサクラ", @@ -17650,14 +11032,8 @@ "82272": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 29.3 - ], - "lon": [ - 130, - 55.4 - ], + "lat": [33, 29.3], + "lon": [130, 55.4], "alt": 823, "kjName": "英彦山", "knName": "ヒコサン", @@ -17666,14 +11042,8 @@ "82306": { "type": "C", "elems": "11112010", - "lat": [ - 33, - 18.2 - ], - "lon": [ - 130, - 29.6 - ], + "lat": [33, 18.2], + "lon": [130, 29.6], "alt": 7, "kjName": "久留米", "knName": "クルメ", @@ -17682,14 +11052,8 @@ "82316": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 17.5 - ], - "lon": [ - 130, - 37.5 - ], + "lat": [33, 17.5], + "lon": [130, 37.5], "alt": 607, "kjName": "耳納山", "knName": "ミノウサン", @@ -17698,14 +11062,8 @@ "82317": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 13.5 - ], - "lon": [ - 130, - 38.7 - ], + "lat": [33, 13.5], + "lon": [130, 38.7], "alt": 144, "kjName": "黒木", "knName": "クロギ", @@ -17714,14 +11072,8 @@ "82331": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 9.6 - ], - "lon": [ - 130, - 24.2 - ], + "lat": [33, 9.6], + "lon": [130, 24.2], "alt": 7, "kjName": "柳川", "knName": "ヤナガワ", @@ -17730,14 +11082,8 @@ "82361": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 0.4 - ], - "lon": [ - 130, - 28 - ], + "lat": [33, 0.4], + "lon": [130, 28], "alt": 40, "kjName": "大牟田", "knName": "オオムタ", @@ -17746,14 +11092,8 @@ "83021": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 40.5 - ], - "lon": [ - 131, - 35.4 - ], + "lat": [33, 40.5], + "lon": [131, 35.4], "alt": 14, "kjName": "国見", "knName": "クニミ", @@ -17762,14 +11102,8 @@ "83051": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 35.2 - ], - "lon": [ - 131, - 14.7 - ], + "lat": [33, 35.2], + "lon": [131, 14.7], "alt": 12, "kjName": "中津", "knName": "ナカツ", @@ -17778,14 +11112,8 @@ "83061": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 34.2 - ], - "lon": [ - 131, - 26 - ], + "lat": [33, 34.2], + "lon": [131, 26], "alt": 5, "kjName": "豊後高田", "knName": "ブンゴタカダ", @@ -17794,14 +11122,8 @@ "83096": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 26.7 - ], - "lon": [ - 131, - 6.9 - ], + "lat": [33, 26.7], + "lon": [131, 6.9], "alt": 100, "kjName": "耶馬渓", "knName": "ヤバケイ", @@ -17810,14 +11132,8 @@ "83106": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 25.2 - ], - "lon": [ - 131, - 19 - ], + "lat": [33, 25.2], + "lon": [131, 19], "alt": 90, "kjName": "院内", "knName": "インナイ", @@ -17826,14 +11142,8 @@ "83121": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 25 - ], - "lon": [ - 131, - 35.8 - ], + "lat": [33, 25], + "lon": [131, 35.8], "alt": 5, "kjName": "杵築", "knName": "キツキ", @@ -17842,14 +11152,8 @@ "83126": { "type": "C", "elems": "11110000", - "lat": [ - 33, - 28.7 - ], - "lon": [ - 131, - 44.2 - ], + "lat": [33, 28.7], + "lon": [131, 44.2], "alt": 5, "kjName": "武蔵", "knName": "ムサシ:大分空港", @@ -17858,14 +11162,8 @@ "83137": { "type": "B", "elems": "11111011", - "lat": [ - 33, - 19.3 - ], - "lon": [ - 130, - 55.7 - ], + "lat": [33, 19.3], + "lon": [130, 55.7], "alt": 83, "kjName": "日田", "knName": "ヒタ", @@ -17874,14 +11172,8 @@ "83191": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 17.5 - ], - "lon": [ - 131, - 9.3 - ], + "lat": [33, 17.5], + "lon": [131, 9.3], "alt": 331, "kjName": "玖珠", "knName": "クス", @@ -17890,14 +11182,8 @@ "83201": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 15.2 - ], - "lon": [ - 131, - 20.8 - ], + "lat": [33, 15.2], + "lon": [131, 20.8], "alt": 435, "kjName": "湯布院", "knName": "ユフイン", @@ -17906,14 +11192,8 @@ "83216": { "type": "A", "elems": "11111111", - "lat": [ - 33, - 14.1 - ], - "lon": [ - 131, - 37.1 - ], + "lat": [33, 14.1], + "lon": [131, 37.1], "alt": 5, "kjName": "大分", "knName": "オオイタ", @@ -17922,14 +11202,8 @@ "83226": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 14.9 - ], - "lon": [ - 131, - 51.9 - ], + "lat": [33, 14.9], + "lon": [131, 51.9], "alt": 1, "kjName": "佐賀関", "knName": "サガノセキ", @@ -17938,14 +11212,8 @@ "83242": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 11.4 - ], - "lon": [ - 130, - 54.9 - ], + "lat": [33, 11.4], + "lon": [130, 54.9], "alt": 843, "kjName": "椿ヶ鼻", "knName": "ツバキガハナ", @@ -17954,14 +11222,8 @@ "83286": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 7.9 - ], - "lon": [ - 131, - 47.8 - ], + "lat": [33, 7.9], + "lon": [131, 47.8], "alt": 30, "kjName": "臼杵", "knName": "ウスキ", @@ -17970,14 +11232,8 @@ "83341": { "type": "C", "elems": "11112010", - "lat": [ - 33, - 3.9 - ], - "lon": [ - 131, - 37.9 - ], + "lat": [33, 3.9], + "lon": [131, 37.9], "alt": 121, "kjName": "犬飼", "knName": "イヌカイ", @@ -17986,14 +11242,8 @@ "83371": { "type": "C", "elems": "11112010", - "lat": [ - 32, - 58.4 - ], - "lon": [ - 131, - 23.9 - ], + "lat": [32, 58.4], + "lon": [131, 23.9], "alt": 261, "kjName": "竹田", "knName": "タケタ", @@ -18002,14 +11252,8 @@ "83401": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 57 - ], - "lon": [ - 131, - 54.1 - ], + "lat": [32, 57], + "lon": [131, 54.1], "alt": 2, "kjName": "佐伯", "knName": "サイキ", @@ -18018,14 +11262,8 @@ "83431": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 50.7 - ], - "lon": [ - 131, - 40.5 - ], + "lat": [32, 50.7], + "lon": [131, 40.5], "alt": 200, "kjName": "宇目", "knName": "ウメ", @@ -18034,14 +11272,8 @@ "83476": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 47.7 - ], - "lon": [ - 131, - 55.4 - ], + "lat": [32, 47.7], + "lon": [131, 55.4], "alt": 2, "kjName": "蒲江", "knName": "カマエ", @@ -18050,14 +11282,8 @@ "84012": { "type": "C", "elems": "11112000", - "lat": [ - 34, - 41.9 - ], - "lon": [ - 129, - 26.7 - ], + "lat": [34, 41.9], + "lon": [129, 26.7], "alt": 63, "kjName": "鰐浦", "knName": "ワニウラ", @@ -18066,14 +11292,8 @@ "84072": { "type": "B", "elems": "11111011", - "lat": [ - 34, - 11.8 - ], - "lon": [ - 129, - 17.5 - ], + "lat": [34, 11.8], + "lon": [129, 17.5], "alt": 4, "kjName": "厳原", "knName": "イヅハラ", @@ -18082,14 +11302,8 @@ "84076": { "type": "C", "elems": "11110000", - "lat": [ - 34, - 17.1 - ], - "lon": [ - 129, - 19.8 - ], + "lat": [34, 17.1], + "lon": [129, 19.8], "alt": 63, "kjName": "美津島", "knName": "ミツシマ:対馬空港", @@ -18098,14 +11312,8 @@ "84121": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 48 - ], - "lon": [ - 129, - 43.3 - ], + "lat": [33, 48], + "lon": [129, 43.3], "alt": 97, "kjName": "芦辺", "knName": "アシベ", @@ -18114,14 +11322,8 @@ "84122": { "type": "C", "elems": "11110000", - "lat": [ - 33, - 44.9 - ], - "lon": [ - 129, - 47.1 - ], + "lat": [33, 44.9], + "lon": [129, 47.1], "alt": 12, "kjName": "石田", "knName": "イシダ:壱岐空港", @@ -18130,14 +11332,8 @@ "84171": { "type": "B", "elems": "11111011", - "lat": [ - 33, - 21.6 - ], - "lon": [ - 129, - 33 - ], + "lat": [33, 21.6], + "lon": [129, 33], "alt": 58, "kjName": "平戸", "knName": "ヒラド", @@ -18146,14 +11342,8 @@ "84183": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 20.5 - ], - "lon": [ - 129, - 42.7 - ], + "lat": [33, 20.5], + "lon": [129, 42.7], "alt": 14, "kjName": "松浦", "knName": "マツウラ", @@ -18162,14 +11352,8 @@ "84266": { "type": "B", "elems": "11111011", - "lat": [ - 33, - 9.5 - ], - "lon": [ - 129, - 43.6 - ], + "lat": [33, 9.5], + "lon": [129, 43.6], "alt": 4, "kjName": "佐世保", "knName": "サセボ", @@ -18178,14 +11362,8 @@ "84306": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 0.8 - ], - "lon": [ - 129, - 39.1 - ], + "lat": [33, 0.8], + "lon": [129, 39.1], "alt": 18, "kjName": "西海", "knName": "サイカイ", @@ -18194,14 +11372,8 @@ "84341": { "type": "C", "elems": "11112010", - "lat": [ - 32, - 58.9 - ], - "lon": [ - 129, - 7.1 - ], + "lat": [32, 58.9], + "lon": [129, 7.1], "alt": 11, "kjName": "有川", "knName": "アリカワ", @@ -18210,14 +11382,8 @@ "84361": { "type": "C", "elems": "01000000", - "lat": [ - 32, - 54.5 - ], - "lon": [ - 129, - 44.3 - ], + "lat": [32, 54.5], + "lon": [129, 44.3], "alt": 510, "kjName": "長浦岳", "knName": "ナガウラダケ", @@ -18226,14 +11392,8 @@ "84371": { "type": "C", "elems": "11110000", - "lat": [ - 32, - 55 - ], - "lon": [ - 129, - 54.8 - ], + "lat": [32, 55], + "lon": [129, 54.8], "alt": 3, "kjName": "大村", "knName": "オオムラ:長崎空港", @@ -18242,14 +11402,8 @@ "84441": { "type": "C", "elems": "01000000", - "lat": [ - 32, - 50.6 - ], - "lon": [ - 130, - 1.5 - ], + "lat": [32, 50.6], + "lon": [130, 1.5], "alt": 15, "kjName": "諫早", "knName": "イサハヤ", @@ -18258,14 +11412,8 @@ "84496": { "type": "A", "elems": "11111111", - "lat": [ - 32, - 44 - ], - "lon": [ - 129, - 52 - ], + "lat": [32, 44], + "lon": [129, 52], "alt": 27, "kjName": "長崎", "knName": "ナガサキ", @@ -18274,14 +11422,8 @@ "84519": { "type": "B", "elems": "11111011", - "lat": [ - 32, - 44.2 - ], - "lon": [ - 130, - 15.7 - ], + "lat": [32, 44.2], + "lon": [130, 15.7], "alt": 678, "kjName": "雲仙岳", "knName": "ウンゼンダケ", @@ -18290,14 +11432,8 @@ "84523": { "type": "C", "elems": "11112010", - "lat": [ - 32, - 45.6 - ], - "lon": [ - 130, - 21.7 - ], + "lat": [32, 45.6], + "lon": [130, 21.7], "alt": 14, "kjName": "島原", "knName": "シマバラ", @@ -18306,14 +11442,8 @@ "84536": { "type": "B", "elems": "11111011", - "lat": [ - 32, - 41.6 - ], - "lon": [ - 128, - 49.6 - ], + "lat": [32, 41.6], + "lon": [128, 49.6], "alt": 25, "kjName": "福江", "knName": "フクエ", @@ -18322,14 +11452,8 @@ "84537": { "type": "C", "elems": "11110000", - "lat": [ - 32, - 39.9 - ], - "lon": [ - 128, - 49.9 - ], + "lat": [32, 39.9], + "lon": [128, 49.9], "alt": 77, "kjName": "上大津", "knName": "カミオオヅ:福江空港", @@ -18338,14 +11462,8 @@ "84561": { "type": "C", "elems": "11112010", - "lat": [ - 32, - 36.7 - ], - "lon": [ - 130, - 11.6 - ], + "lat": [32, 36.7], + "lon": [130, 11.6], "alt": 13, "kjName": "口之津", "knName": "クチノツ", @@ -18354,14 +11472,8 @@ "84597": { "type": "C", "elems": "11112010", - "lat": [ - 32, - 34.9 - ], - "lon": [ - 129, - 46.6 - ], + "lat": [32, 34.9], + "lon": [129, 46.6], "alt": 4, "kjName": "脇岬", "knName": "ワキミサキ", @@ -18370,14 +11482,8 @@ "85033": { "type": "C", "elems": "11112010", - "lat": [ - 33, - 27.5 - ], - "lon": [ - 129, - 57.3 - ], + "lat": [33, 27.5], + "lon": [129, 57.3], "alt": 23, "kjName": "唐津", "knName": "カラツ", @@ -18386,14 +11492,8 @@ "85046": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 24.8 - ], - "lon": [ - 130, - 13.2 - ], + "lat": [33, 24.8], + "lon": [130, 13.2], "alt": 339, "kjName": "北山", "knName": "ホクザン", @@ -18402,14 +11502,8 @@ "85106": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 23.1 - ], - "lon": [ - 130, - 31 - ], + "lat": [33, 23.1], + "lon": [130, 31], "alt": 25, "kjName": "鳥栖", "knName": "トス", @@ -18418,14 +11512,8 @@ "85116": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 16 - ], - "lon": [ - 129, - 52.7 - ], + "lat": [33, 16], + "lon": [129, 52.7], "alt": 25, "kjName": "伊万里", "knName": "イマリ", @@ -18434,14 +11522,8 @@ "85142": { "type": "A", "elems": "11111111", - "lat": [ - 33, - 15.9 - ], - "lon": [ - 130, - 18.3 - ], + "lat": [33, 15.9], + "lon": [130, 18.3], "alt": 6, "kjName": "佐賀", "knName": "サガ", @@ -18450,14 +11532,8 @@ "85161": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 7 - ], - "lon": [ - 129, - 59.7 - ], + "lat": [33, 7], + "lon": [129, 59.7], "alt": 81, "kjName": "嬉野", "knName": "ウレシノ", @@ -18466,14 +11542,8 @@ "85166": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 11 - ], - "lon": [ - 130, - 8.9 - ], + "lat": [33, 11], + "lon": [130, 8.9], "alt": 2, "kjName": "白石", "knName": "シロイシ", @@ -18482,14 +11552,8 @@ "85176": { "type": "C", "elems": "11110000", - "lat": [ - 33, - 8.9 - ], - "lon": [ - 130, - 18.1 - ], + "lat": [33, 8.9], + "lon": [130, 18.1], "alt": 2, "kjName": "川副", "knName": "カワソエ:佐賀空港", @@ -18498,14 +11562,8 @@ "86006": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 6.9 - ], - "lon": [ - 130, - 41.5 - ], + "lat": [33, 6.9], + "lon": [130, 41.5], "alt": 119, "kjName": "鹿北", "knName": "カホク", @@ -18514,14 +11572,8 @@ "86066": { "type": "C", "elems": "11112000", - "lat": [ - 33, - 6.2 - ], - "lon": [ - 131, - 4 - ], + "lat": [33, 6.2], + "lon": [131, 4], "alt": 448, "kjName": "南小国", "knName": "ミナミオグニ", @@ -18530,14 +11582,8 @@ "86086": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 54.9 - ], - "lon": [ - 130, - 30.7 - ], + "lat": [32, 54.9], + "lon": [130, 30.7], "alt": 15, "kjName": "岱明", "knName": "タイメイ", @@ -18546,14 +11592,8 @@ "86101": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 56.7 - ], - "lon": [ - 130, - 46.9 - ], + "lat": [32, 56.7], + "lon": [130, 46.9], "alt": 83, "kjName": "菊池", "knName": "キクチ", @@ -18562,14 +11602,8 @@ "86111": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 56.8 - ], - "lon": [ - 131, - 2.4 - ], + "lat": [32, 56.8], + "lon": [131, 2.4], "alt": 487, "kjName": "阿蘇乙姫", "knName": "アソオトヒメ", @@ -18578,14 +11612,8 @@ "86141": { "type": "A", "elems": "11111111", - "lat": [ - 32, - 48.8 - ], - "lon": [ - 130, - 42.4 - ], + "lat": [32, 48.8], + "lon": [130, 42.4], "alt": 38, "kjName": "熊本", "knName": "クマモト", @@ -18594,14 +11622,8 @@ "86146": { "type": "C", "elems": "11110000", - "lat": [ - 32, - 50.2 - ], - "lon": [ - 130, - 51.3 - ], + "lat": [32, 50.2], + "lon": [130, 51.3], "alt": 193, "kjName": "益城", "knName": "マシキ:熊本空港", @@ -18610,14 +11632,8 @@ "86157": { "type": "C", "elems": "11112100", - "lat": [ - 32, - 49.9 - ], - "lon": [ - 131, - 0.8 - ], + "lat": [32, 49.9], + "lon": [131, 0.8], "alt": 394, "kjName": "南阿蘇", "knName": "ミナミアソ", @@ -18626,14 +11642,8 @@ "86161": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 49.3 - ], - "lon": [ - 131, - 7.5 - ], + "lat": [32, 49.3], + "lon": [131, 7.5], "alt": 555, "kjName": "高森", "knName": "タカモリ", @@ -18642,14 +11652,8 @@ "86181": { "type": "C", "elems": "01000000", - "lat": [ - 32, - 42 - ], - "lon": [ - 130, - 39.4 - ], + "lat": [32, 42], + "lon": [130, 39.4], "alt": 6, "kjName": "宇土", "knName": "ウト", @@ -18658,14 +11662,8 @@ "86197": { "type": "C", "elems": "01000000", - "lat": [ - 32, - 42.7 - ], - "lon": [ - 130, - 57.5 - ], + "lat": [32, 42.7], + "lon": [130, 57.5], "alt": 574, "kjName": "山都", "knName": "ヤマト", @@ -18674,14 +11672,8 @@ "86216": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 36.7 - ], - "lon": [ - 130, - 28.7 - ], + "lat": [32, 36.7], + "lon": [130, 28.7], "alt": 60, "kjName": "三角", "knName": "ミスミ", @@ -18690,14 +11682,8 @@ "86236": { "type": "C", "elems": "11112010", - "lat": [ - 32, - 38.7 - ], - "lon": [ - 130, - 48.6 - ], + "lat": [32, 38.7], + "lon": [130, 48.6], "alt": 36, "kjName": "甲佐", "knName": "コウサ", @@ -18706,14 +11692,8 @@ "86271": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 30.9 - ], - "lon": [ - 130, - 26.8 - ], + "lat": [32, 30.9], + "lon": [130, 26.8], "alt": 2, "kjName": "松島", "knName": "マツシマ", @@ -18722,14 +11702,8 @@ "86316": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 28.1 - ], - "lon": [ - 130, - 10.8 - ], + "lat": [32, 28.1], + "lon": [130, 10.8], "alt": 30, "kjName": "本渡", "knName": "ホンド", @@ -18738,14 +11712,8 @@ "86336": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 28.4 - ], - "lon": [ - 130, - 36.4 - ], + "lat": [32, 28.4], + "lon": [130, 36.4], "alt": 8, "kjName": "八代", "knName": "ヤツシロ", @@ -18754,14 +11722,8 @@ "86396": { "type": "C", "elems": "01000000", - "lat": [ - 32, - 21.8 - ], - "lon": [ - 130, - 30.5 - ], + "lat": [32, 21.8], + "lon": [130, 30.5], "alt": 3, "kjName": "田浦", "knName": "タノウラ", @@ -18770,14 +11732,8 @@ "86407": { "type": "C", "elems": "01000000", - "lat": [ - 32, - 18.1 - ], - "lon": [ - 130, - 44.8 - ], + "lat": [32, 18.1], + "lon": [130, 44.8], "alt": 218, "kjName": "山江", "knName": "ヤマエ", @@ -18786,14 +11742,8 @@ "86411": { "type": "C", "elems": "01000000", - "lat": [ - 32, - 23.7 - ], - "lon": [ - 130, - 49.6 - ], + "lat": [32, 23.7], + "lon": [130, 49.6], "alt": 310, "kjName": "五木", "knName": "イツキ", @@ -18802,14 +11752,8 @@ "86451": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 12.3 - ], - "lon": [ - 130, - 24.4 - ], + "lat": [32, 12.3], + "lon": [130, 24.4], "alt": 6, "kjName": "水俣", "knName": "ミナマタ", @@ -18818,14 +11762,8 @@ "86461": { "type": "C", "elems": "01000000", - "lat": [ - 32, - 14.7 - ], - "lon": [ - 130, - 38.7 - ], + "lat": [32, 14.7], + "lon": [130, 38.7], "alt": 120, "kjName": "一勝地", "knName": "イッショウチ", @@ -18834,14 +11772,8 @@ "86467": { "type": "B", "elems": "11111011", - "lat": [ - 32, - 13 - ], - "lon": [ - 130, - 45.3 - ], + "lat": [32, 13], + "lon": [130, 45.3], "alt": 146, "kjName": "人吉", "knName": "ヒトヨシ", @@ -18850,14 +11782,8 @@ "86477": { "type": "C", "elems": "11112010", - "lat": [ - 32, - 13.5 - ], - "lon": [ - 130, - 54.3 - ], + "lat": [32, 13.5], + "lon": [130, 54.3], "alt": 166, "kjName": "上", "knName": "ウエ", @@ -18866,14 +11792,8 @@ "86478": { "type": "C", "elems": "01000000", - "lat": [ - 32, - 17.7 - ], - "lon": [ - 130, - 57 - ], + "lat": [32, 17.7], + "lon": [130, 57], "alt": 210, "kjName": "多良木", "knName": "タラギ", @@ -18882,14 +11802,8 @@ "86481": { "type": "C", "elems": "01000000", - "lat": [ - 32, - 15.8 - ], - "lon": [ - 131, - 2.6 - ], + "lat": [32, 15.8], + "lon": [131, 2.6], "alt": 665, "kjName": "湯前横谷", "knName": "ユノマエヨコタニ", @@ -18898,14 +11812,8 @@ "86491": { "type": "B", "elems": "11111011", - "lat": [ - 32, - 11.8 - ], - "lon": [ - 130, - 1.6 - ], + "lat": [32, 11.8], + "lon": [130, 1.6], "alt": 3, "kjName": "牛深", "knName": "ウシブカ", @@ -18914,14 +11822,8 @@ "87041": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 42.7 - ], - "lon": [ - 131, - 17.4 - ], + "lat": [32, 42.7], + "lon": [131, 17.4], "alt": 350, "kjName": "高千穂", "knName": "タカチホ", @@ -18930,14 +11832,8 @@ "87066": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 42.7 - ], - "lon": [ - 131, - 49.2 - ], + "lat": [32, 42.7], + "lon": [131, 49.2], "alt": 14, "kjName": "古江", "knName": "フルエ", @@ -18946,14 +11842,8 @@ "87071": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 38.6 - ], - "lon": [ - 131, - 9.4 - ], + "lat": [32, 38.6], + "lon": [131, 9.4], "alt": 590, "kjName": "鞍岡", "knName": "クラオカ", @@ -18962,14 +11852,8 @@ "87086": { "type": "C", "elems": "01000000", - "lat": [ - 32, - 40.9 - ], - "lon": [ - 131, - 24.4 - ], + "lat": [32, 40.9], + "lon": [131, 24.4], "alt": 262, "kjName": "日之影", "knName": "ヒノカゲ", @@ -18978,14 +11862,8 @@ "87127": { "type": "C", "elems": "01000000", - "lat": [ - 32, - 31 - ], - "lon": [ - 131, - 20.1 - ], + "lat": [32, 31], + "lon": [131, 20.1], "alt": 150, "kjName": "諸塚", "knName": "モロツカ", @@ -18994,14 +11872,8 @@ "87136": { "type": "C", "elems": "01000000", - "lat": [ - 32, - 33.7 - ], - "lon": [ - 131, - 31.5 - ], + "lat": [32, 33.7], + "lon": [131, 31.5], "alt": 30, "kjName": "北方", "knName": "キタカタ", @@ -19010,14 +11882,8 @@ "87141": { "type": "B", "elems": "11111011", - "lat": [ - 32, - 34.9 - ], - "lon": [ - 131, - 39.4 - ], + "lat": [32, 34.9], + "lon": [131, 39.4], "alt": 19, "kjName": "延岡", "knName": "ノベオカ", @@ -19026,14 +11892,8 @@ "87157": { "type": "C", "elems": "01000000", - "lat": [ - 32, - 28.5 - ], - "lon": [ - 131, - 6.2 - ], + "lat": [32, 28.5], + "lon": [131, 6.2], "alt": 517, "kjName": "椎葉", "knName": "シイバ", @@ -19042,14 +11902,8 @@ "87181": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 24.5 - ], - "lon": [ - 131, - 36 - ], + "lat": [32, 24.5], + "lon": [131, 36], "alt": 20, "kjName": "日向", "knName": "ヒュウガ", @@ -19058,14 +11912,8 @@ "87206": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 23.1 - ], - "lon": [ - 131, - 19.9 - ], + "lat": [32, 23.1], + "lon": [131, 19.9], "alt": 250, "kjName": "神門", "knName": "ミカド", @@ -19074,14 +11922,8 @@ "87231": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 14.4 - ], - "lon": [ - 131, - 9.1 - ], + "lat": [32, 14.4], + "lon": [131, 9.1], "alt": 260, "kjName": "西米良", "knName": "ニシメラ", @@ -19090,14 +11932,8 @@ "87251": { "type": "C", "elems": "01000000", - "lat": [ - 32, - 17 - ], - "lon": [ - 131, - 32.5 - ], + "lat": [32, 17], + "lon": [131, 32.5], "alt": 61, "kjName": "都農", "knName": "ツノ", @@ -19106,14 +11942,8 @@ "87293": { "type": "C", "elems": "11112010", - "lat": [ - 32, - 7.4 - ], - "lon": [ - 131, - 28.5 - ], + "lat": [32, 7.4], + "lon": [131, 28.5], "alt": 57, "kjName": "高鍋", "knName": "タカナベ", @@ -19122,14 +11952,8 @@ "87301": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 2.8 - ], - "lon": [ - 130, - 48.6 - ], + "lat": [32, 2.8], + "lon": [130, 48.6], "alt": 228, "kjName": "加久藤", "knName": "カクトウ", @@ -19138,14 +11962,8 @@ "87331": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 3.8 - ], - "lon": [ - 131, - 24.8 - ], + "lat": [32, 3.8], + "lon": [131, 24.8], "alt": 8, "kjName": "西都", "knName": "サイト", @@ -19154,14 +11972,8 @@ "87346": { "type": "C", "elems": "01000000", - "lat": [ - 31, - 56.7 - ], - "lon": [ - 130, - 50.4 - ], + "lat": [31, 56.7], + "lon": [130, 50.4], "alt": 1150, "kjName": "えびの", "knName": "エビノ", @@ -19170,14 +11982,8 @@ "87352": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 0 - ], - "lon": [ - 130, - 57.2 - ], + "lat": [32, 0], + "lon": [130, 57.2], "alt": 276, "kjName": "小林", "knName": "コバヤシ", @@ -19186,14 +11992,8 @@ "87361": { "type": "C", "elems": "01000000", - "lat": [ - 31, - 57.4 - ], - "lon": [ - 131, - 9.4 - ], + "lat": [31, 57.4], + "lon": [131, 9.4], "alt": 182, "kjName": "野尻", "knName": "ノジリ", @@ -19202,14 +12002,8 @@ "87371": { "type": "C", "elems": "01000000", - "lat": [ - 32, - 0.4 - ], - "lon": [ - 131, - 17.8 - ], + "lat": [32, 0.4], + "lon": [131, 17.8], "alt": 66, "kjName": "国富", "knName": "クニトミ", @@ -19218,14 +12012,8 @@ "87376": { "type": "A", "elems": "11111111", - "lat": [ - 31, - 56.3 - ], - "lon": [ - 131, - 24.8 - ], + "lat": [31, 56.3], + "lon": [131, 24.8], "alt": 9, "kjName": "宮崎", "knName": "ミヤザキ", @@ -19234,14 +12022,8 @@ "87406": { "type": "C", "elems": "11112000", - "lat": [ - 31, - 50.6 - ], - "lon": [ - 131, - 18.5 - ], + "lat": [31, 50.6], + "lon": [131, 18.5], "alt": 134, "kjName": "田野", "knName": "タノ", @@ -19250,14 +12032,8 @@ "87412": { "type": "C", "elems": "11110000", - "lat": [ - 31, - 52.6 - ], - "lon": [ - 131, - 26.9 - ], + "lat": [31, 52.6], + "lon": [131, 26.9], "alt": 6, "kjName": "赤江", "knName": "アカエ:宮崎空港", @@ -19266,14 +12042,8 @@ "87426": { "type": "B", "elems": "11111011", - "lat": [ - 31, - 43.8 - ], - "lon": [ - 131, - 4.9 - ], + "lat": [31, 43.8], + "lon": [131, 4.9], "alt": 154, "kjName": "都城", "knName": "ミヤコノジョウ", @@ -19282,14 +12052,8 @@ "87461": { "type": "C", "elems": "01000000", - "lat": [ - 31, - 38.2 - ], - "lon": [ - 131, - 15 - ], + "lat": [31, 38.2], + "lon": [131, 15], "alt": 130, "kjName": "深瀬", "knName": "フカセ", @@ -19298,14 +12062,8 @@ "87492": { "type": "B", "elems": "11111011", - "lat": [ - 31, - 34.7 - ], - "lon": [ - 131, - 24.4 - ], + "lat": [31, 34.7], + "lon": [131, 24.4], "alt": 3, "kjName": "油津", "knName": "アブラツ", @@ -19314,14 +12072,8 @@ "87501": { "type": "C", "elems": "11112000", - "lat": [ - 31, - 27.9 - ], - "lon": [ - 131, - 13.2 - ], + "lat": [31, 27.9], + "lon": [131, 13.2], "alt": 20, "kjName": "串間", "knName": "クシマ", @@ -19330,14 +12082,8 @@ "82036": { "type": "C", "elems": "01000000", - "lat": [ - 33, - 51.8 - ], - "lon": [ - 130, - 2.1 - ], + "lat": [33, 51.8], + "lon": [130, 2.1], "alt": 49, "kjName": "小呂島", "knName": "オロノシマ", @@ -19346,14 +12092,8 @@ "88061": { "type": "B", "elems": "11111011", - "lat": [ - 32, - 1.6 - ], - "lon": [ - 130, - 12 - ], + "lat": [32, 1.6], + "lon": [130, 12], "alt": 40, "kjName": "阿久根", "knName": "アクネ", @@ -19362,14 +12102,8 @@ "88066": { "type": "C", "elems": "01000000", - "lat": [ - 32, - 5.6 - ], - "lon": [ - 130, - 21.1 - ], + "lat": [32, 5.6], + "lon": [130, 21.1], "alt": 11, "kjName": "出水", "knName": "イズミ", @@ -19378,14 +12112,8 @@ "88081": { "type": "C", "elems": "11112000", - "lat": [ - 32, - 2.8 - ], - "lon": [ - 130, - 37.6 - ], + "lat": [32, 2.8], + "lon": [130, 37.6], "alt": 175, "kjName": "大口", "knName": "オオクチ", @@ -19394,14 +12122,8 @@ "88101": { "type": "C", "elems": "01000000", - "lat": [ - 31, - 58.8 - ], - "lon": [ - 130, - 22 - ], + "lat": [31, 58.8], + "lon": [130, 22], "alt": 1060, "kjName": "紫尾山", "knName": "シビサン", @@ -19410,14 +12132,8 @@ "88107": { "type": "C", "elems": "11112010", - "lat": [ - 31, - 55 - ], - "lon": [ - 130, - 27.3 - ], + "lat": [31, 55], + "lon": [130, 27.3], "alt": 59, "kjName": "さつま柏原", "knName": "サツマカシワバル", @@ -19426,14 +12142,8 @@ "88131": { "type": "C", "elems": "11112000", - "lat": [ - 31, - 50.1 - ], - "lon": [ - 129, - 52 - ], + "lat": [31, 50.1], + "lon": [129, 52], "alt": 10, "kjName": "中甑", "knName": "ナカコシキ", @@ -19442,14 +12152,8 @@ "88151": { "type": "C", "elems": "11112000", - "lat": [ - 31, - 50 - ], - "lon": [ - 130, - 18.9 - ], + "lat": [31, 50], + "lon": [130, 18.9], "alt": 5, "kjName": "川内", "knName": "センダイ", @@ -19458,14 +12162,8 @@ "88166": { "type": "C", "elems": "11110000", - "lat": [ - 31, - 48.2 - ], - "lon": [ - 130, - 43.1 - ], + "lat": [31, 48.2], + "lon": [130, 43.1], "alt": 272, "kjName": "溝辺", "knName": "ミゾベ:鹿児島空港", @@ -19474,14 +12172,8 @@ "88211": { "type": "C", "elems": "01000000", - "lat": [ - 31, - 44.8 - ], - "lon": [ - 130, - 26.3 - ], + "lat": [31, 44.8], + "lon": [130, 26.3], "alt": 533, "kjName": "八重山", "knName": "ヤエヤマ", @@ -19490,14 +12182,8 @@ "88261": { "type": "C", "elems": "11112000", - "lat": [ - 31, - 40.1 - ], - "lon": [ - 130, - 19.7 - ], + "lat": [31, 40.1], + "lon": [130, 19.7], "alt": 40, "kjName": "東市来", "knName": "ヒガシイチキ", @@ -19506,14 +12192,8 @@ "88286": { "type": "C", "elems": "11112000", - "lat": [ - 31, - 39.7 - ], - "lon": [ - 130, - 50.6 - ], + "lat": [31, 39.7], + "lon": [130, 50.6], "alt": 387, "kjName": "牧之原", "knName": "マキノハラ", @@ -19522,14 +12202,8 @@ "88317": { "type": "A", "elems": "11111111", - "lat": [ - 31, - 33.3 - ], - "lon": [ - 130, - 32.8 - ], + "lat": [31, 33.3], + "lon": [130, 32.8], "alt": 4, "kjName": "鹿児島", "knName": "カゴシマ", @@ -19538,14 +12212,8 @@ "88331": { "type": "C", "elems": "11112000", - "lat": [ - 31, - 35.3 - ], - "lon": [ - 130, - 51.3 - ], + "lat": [31, 35.3], + "lon": [130, 51.3], "alt": 360, "kjName": "輝北", "knName": "キホク", @@ -19554,14 +12222,8 @@ "88341": { "type": "C", "elems": "01000000", - "lat": [ - 31, - 34.8 - ], - "lon": [ - 131, - 0.3 - ], + "lat": [31, 34.8], + "lon": [131, 0.3], "alt": 170, "kjName": "大隅", "knName": "オオスミ", @@ -19570,14 +12232,8 @@ "88371": { "type": "C", "elems": "11112000", - "lat": [ - 31, - 24.9 - ], - "lon": [ - 130, - 19.5 - ], + "lat": [31, 24.9], + "lon": [130, 19.5], "alt": 9, "kjName": "加世田", "knName": "カセダ", @@ -19586,14 +12242,8 @@ "88392": { "type": "C", "elems": "01000000", - "lat": [ - 31, - 27.5 - ], - "lon": [ - 130, - 51.7 - ], + "lat": [31, 27.5], + "lon": [130, 51.7], "alt": 89, "kjName": "吉ケ別府", "knName": "ヨシガベップ", @@ -19602,14 +12252,8 @@ "88406": { "type": "C", "elems": "11112000", - "lat": [ - 31, - 28.7 - ], - "lon": [ - 131, - 5.7 - ], + "lat": [31, 28.7], + "lon": [131, 5.7], "alt": 70, "kjName": "志布志", "knName": "シブシ", @@ -19618,14 +12262,8 @@ "88432": { "type": "C", "elems": "11112000", - "lat": [ - 31, - 23.2 - ], - "lon": [ - 130, - 32.4 - ], + "lat": [31, 23.2], + "lon": [130, 32.4], "alt": 4, "kjName": "喜入", "knName": "キイレ", @@ -19634,14 +12272,8 @@ "88442": { "type": "C", "elems": "11112000", - "lat": [ - 31, - 23.5 - ], - "lon": [ - 130, - 51.8 - ], + "lat": [31, 23.5], + "lon": [130, 51.8], "alt": 63, "kjName": "鹿屋", "knName": "カノヤ", @@ -19650,14 +12282,8 @@ "88447": { "type": "C", "elems": "11112010", - "lat": [ - 31, - 20.4 - ], - "lon": [ - 130, - 56.3 - ], + "lat": [31, 20.4], + "lon": [130, 56.3], "alt": 31, "kjName": "肝付前田", "knName": "キモツキマエダ", @@ -19666,14 +12292,8 @@ "88466": { "type": "B", "elems": "11111011", - "lat": [ - 31, - 16.3 - ], - "lon": [ - 130, - 17.5 - ], + "lat": [31, 16.3], + "lon": [130, 17.5], "alt": 30, "kjName": "枕崎", "knName": "マクラザキ", @@ -19682,14 +12302,8 @@ "88486": { "type": "C", "elems": "11112000", - "lat": [ - 31, - 15 - ], - "lon": [ - 130, - 38.2 - ], + "lat": [31, 15], + "lon": [130, 38.2], "alt": 5, "kjName": "指宿", "knName": "イブスキ", @@ -19698,14 +12312,8 @@ "88506": { "type": "C", "elems": "11112000", - "lat": [ - 31, - 16.6 - ], - "lon": [ - 131, - 3.3 - ], + "lat": [31, 16.6], + "lon": [131, 3.3], "alt": 8, "kjName": "内之浦", "knName": "ウチノウラ", @@ -19714,14 +12322,8 @@ "88536": { "type": "C", "elems": "11112000", - "lat": [ - 31, - 11.9 - ], - "lon": [ - 130, - 50.6 - ], + "lat": [31, 11.9], + "lon": [130, 50.6], "alt": 182, "kjName": "田代", "knName": "タシロ", @@ -19730,14 +12332,8 @@ "88551": { "type": "C", "elems": "01000000", - "lat": [ - 31, - 5.6 - ], - "lon": [ - 130, - 41.4 - ], + "lat": [31, 5.6], + "lon": [130, 41.4], "alt": 27, "kjName": "佐多", "knName": "サタ", @@ -19746,14 +12342,8 @@ "88612": { "type": "B", "elems": "11111011", - "lat": [ - 30, - 43.2 - ], - "lon": [ - 130, - 58.9 - ], + "lat": [30, 43.2], + "lon": [130, 58.9], "alt": 25, "kjName": "種子島", "knName": "タネガシマ", @@ -19762,14 +12352,8 @@ "88621": { "type": "C", "elems": "11110000", - "lat": [ - 30, - 36.3 - ], - "lon": [ - 130, - 59.5 - ], + "lat": [30, 36.3], + "lon": [130, 59.5], "alt": 234, "kjName": "中種子", "knName": "ナカタネ:種子島空港", @@ -19778,14 +12362,8 @@ "88666": { "type": "C", "elems": "11112010", - "lat": [ - 30, - 24.4 - ], - "lon": [ - 130, - 54.1 - ], + "lat": [30, 24.4], + "lon": [130, 54.1], "alt": 150, "kjName": "上中", "knName": "カミナカ", @@ -19794,14 +12372,8 @@ "88686": { "type": "B", "elems": "11111011", - "lat": [ - 30, - 23.1 - ], - "lon": [ - 130, - 39.5 - ], + "lat": [30, 23.1], + "lon": [130, 39.5], "alt": 37, "kjName": "屋久島", "knName": "ヤクシマ:屋久島空港", @@ -19810,14 +12382,8 @@ "88706": { "type": "C", "elems": "11112010", - "lat": [ - 30, - 14.1 - ], - "lon": [ - 130, - 33.3 - ], + "lat": [30, 14.1], + "lon": [130, 33.3], "alt": 60, "kjName": "尾之間", "knName": "オノアイダ", @@ -19826,14 +12392,8 @@ "88736": { "type": "C", "elems": "11112000", - "lat": [ - 29, - 50.4 - ], - "lon": [ - 129, - 52 - ], + "lat": [29, 50.4], + "lon": [129, 52], "alt": 220, "kjName": "中之島", "knName": "ナカノシマ", @@ -19842,14 +12402,8 @@ "88746": { "type": "C", "elems": "01000000", - "lat": [ - 29, - 41 - ], - "lon": [ - 129, - 31.7 - ], + "lat": [29, 41], + "lon": [129, 31.7], "alt": 97, "kjName": "平島", "knName": "タイラジマ", @@ -19858,14 +12412,8 @@ "88756": { "type": "C", "elems": "01000000", - "lat": [ - 29, - 36.6 - ], - "lon": [ - 129, - 42.3 - ], + "lat": [29, 36.6], + "lon": [129, 42.3], "alt": 111, "kjName": "諏訪之瀬島", "knName": "スワノセジマ", @@ -19874,14 +12422,8 @@ "88776": { "type": "C", "elems": "01000000", - "lat": [ - 29, - 13.5 - ], - "lon": [ - 129, - 19.7 - ], + "lat": [29, 13.5], + "lon": [129, 19.7], "alt": 10, "kjName": "小宝島", "knName": "コダカラジマ", @@ -19890,14 +12432,8 @@ "88781": { "type": "C", "elems": "01000000", - "lat": [ - 29, - 9.1 - ], - "lon": [ - 129, - 12.1 - ], + "lat": [29, 9.1], + "lon": [129, 12.1], "alt": 33, "kjName": "宝島", "knName": "タカラジマ", @@ -19906,14 +12442,8 @@ "88821": { "type": "C", "elems": "11110000", - "lat": [ - 28, - 25.8 - ], - "lon": [ - 129, - 42.7 - ], + "lat": [28, 25.8], + "lon": [129, 42.7], "alt": 4, "kjName": "笠利", "knName": "カサリ:奄美空港", @@ -19922,14 +12452,8 @@ "88836": { "type": "B", "elems": "11111011", - "lat": [ - 28, - 22.7 - ], - "lon": [ - 129, - 29.7 - ], + "lat": [28, 22.7], + "lon": [129, 29.7], "alt": 3, "kjName": "名瀬", "knName": "ナゼ", @@ -19938,14 +12462,8 @@ "88851": { "type": "C", "elems": "11110000", - "lat": [ - 28, - 19.2 - ], - "lon": [ - 129, - 55.6 - ], + "lat": [28, 19.2], + "lon": [129, 55.6], "alt": 5, "kjName": "喜界島", "knName": "キカイジマ:喜界空港", @@ -19954,14 +12472,8 @@ "88901": { "type": "C", "elems": "11112010", - "lat": [ - 28, - 8.6 - ], - "lon": [ - 129, - 18.9 - ], + "lat": [28, 8.6], + "lon": [129, 18.9], "alt": 2, "kjName": "古仁屋", "knName": "コニヤ", @@ -19970,14 +12482,8 @@ "88931": { "type": "C", "elems": "11110000", - "lat": [ - 27, - 50.1 - ], - "lon": [ - 128, - 52.8 - ], + "lat": [27, 50.1], + "lon": [128, 52.8], "alt": 2, "kjName": "天城", "knName": "アマギ:徳之島空港", @@ -19986,14 +12492,8 @@ "88956": { "type": "C", "elems": "11112000", - "lat": [ - 27, - 40.6 - ], - "lon": [ - 128, - 58.4 - ], + "lat": [27, 40.6], + "lon": [128, 58.4], "alt": 44, "kjName": "伊仙", "knName": "イセン", @@ -20002,14 +12502,8 @@ "88971": { "type": "B", "elems": "11111011", - "lat": [ - 27, - 25.9 - ], - "lon": [ - 128, - 42.3 - ], + "lat": [27, 25.9], + "lon": [128, 42.3], "alt": 27, "kjName": "沖永良部", "knName": "オキノエラブ:沖永良部空港", @@ -20018,14 +12512,8 @@ "88986": { "type": "C", "elems": "11110000", - "lat": [ - 27, - 2.6 - ], - "lon": [ - 128, - 24.1 - ], + "lat": [27, 2.6], + "lon": [128, 24.1], "alt": 14, "kjName": "与論島", "knName": "ヨロンジマ:与論空港", @@ -20034,14 +12522,8 @@ "91011": { "type": "C", "elems": "11112000", - "lat": [ - 26, - 56.9 - ], - "lon": [ - 127, - 56.4 - ], + "lat": [26, 56.9], + "lon": [127, 56.4], "alt": 14, "kjName": "伊是名", "knName": "イゼナ", @@ -20050,14 +12532,8 @@ "91021": { "type": "C", "elems": "11112010", - "lat": [ - 26, - 50.1 - ], - "lon": [ - 128, - 16.3 - ], + "lat": [26, 50.1], + "lon": [128, 16.3], "alt": 232, "kjName": "奥", "knName": "オク", @@ -20066,14 +12542,8 @@ "91046": { "type": "C", "elems": "01000000", - "lat": [ - 26, - 43.7 - ], - "lon": [ - 128, - 10.7 - ], + "lat": [26, 43.7], + "lon": [128, 10.7], "alt": 8, "kjName": "国頭", "knName": "クニガミ", @@ -20082,14 +12552,8 @@ "91066": { "type": "C", "elems": "01000000", - "lat": [ - 26, - 41.1 - ], - "lon": [ - 127, - 53.9 - ], + "lat": [26, 41.1], + "lon": [127, 53.9], "alt": 25, "kjName": "本部", "knName": "モトブ", @@ -20098,14 +12562,8 @@ "91081": { "type": "C", "elems": "01000000", - "lat": [ - 26, - 37.9 - ], - "lon": [ - 128, - 9.2 - ], + "lat": [26, 37.9], + "lon": [128, 9.2], "alt": 24, "kjName": "東", "knName": "ヒガシ", @@ -20114,14 +12572,8 @@ "91096": { "type": "C", "elems": "01000000", - "lat": [ - 26, - 35.5 - ], - "lon": [ - 127, - 14.3 - ], + "lat": [26, 35.5], + "lon": [127, 14.3], "alt": 14, "kjName": "粟国", "knName": "アグニ", @@ -20130,14 +12582,8 @@ "91107": { "type": "B", "elems": "11111011", - "lat": [ - 26, - 35.6 - ], - "lon": [ - 127, - 57.9 - ], + "lat": [26, 35.6], + "lon": [127, 57.9], "alt": 6, "kjName": "名護", "knName": "ナゴ", @@ -20146,14 +12592,8 @@ "91121": { "type": "C", "elems": "01000000", - "lat": [ - 26, - 24.4 - ], - "lon": [ - 127, - 44 - ], + "lat": [26, 24.4], + "lon": [127, 44], "alt": 90, "kjName": "読谷", "knName": "ヨミタン", @@ -20162,14 +12602,8 @@ "91141": { "type": "C", "elems": "11110000", - "lat": [ - 26, - 21.8 - ], - "lon": [ - 126, - 42.8 - ], + "lat": [26, 21.8], + "lon": [126, 42.8], "alt": 7, "kjName": "北原", "knName": "キタハラ:久米島空港", @@ -20178,14 +12612,8 @@ "91146": { "type": "B", "elems": "11111011", - "lat": [ - 26, - 20.2 - ], - "lon": [ - 126, - 48.2 - ], + "lat": [26, 20.2], + "lon": [126, 48.2], "alt": 5, "kjName": "久米島", "knName": "クメジマ", @@ -20194,14 +12622,8 @@ "91151": { "type": "C", "elems": "01000000", - "lat": [ - 26, - 22.4 - ], - "lon": [ - 127, - 8.5 - ], + "lat": [26, 22.4], + "lon": [127, 8.5], "alt": 7, "kjName": "渡名喜", "knName": "トナキ", @@ -20210,14 +12632,8 @@ "91161": { "type": "C", "elems": "01000000", - "lat": [ - 26, - 19.6 - ], - "lon": [ - 127, - 48.3 - ], + "lat": [26, 19.6], + "lon": [127, 48.3], "alt": 86, "kjName": "胡屋", "knName": "ゴヤ", @@ -20226,14 +12642,8 @@ "91166": { "type": "C", "elems": "11112010", - "lat": [ - 26, - 21.8 - ], - "lon": [ - 127, - 58.3 - ], + "lat": [26, 21.8], + "lon": [127, 58.3], "alt": 100, "kjName": "宮城島", "knName": "ミヤギジマ", @@ -20242,14 +12652,8 @@ "91181": { "type": "C", "elems": "11112000", - "lat": [ - 26, - 12.6 - ], - "lon": [ - 127, - 21.8 - ], + "lat": [26, 12.6], + "lon": [127, 21.8], "alt": 220, "kjName": "渡嘉敷", "knName": "トカシキ", @@ -20258,14 +12662,8 @@ "91197": { "type": "A", "elems": "11111011", - "lat": [ - 26, - 12.4 - ], - "lon": [ - 127, - 41.2 - ], + "lat": [26, 12.4], + "lon": [127, 41.2], "alt": 28, "kjName": "那覇", "knName": "ナハ", @@ -20274,14 +12672,8 @@ "91236": { "type": "C", "elems": "11110000", - "lat": [ - 26, - 11.6 - ], - "lon": [ - 127, - 38.3 - ], + "lat": [26, 11.6], + "lon": [127, 38.3], "alt": 3, "kjName": "安次嶺", "knName": "アシミネ:那覇空港", @@ -20290,14 +12682,8 @@ "91241": { "type": "C", "elems": "11112010", - "lat": [ - 26, - 9.2 - ], - "lon": [ - 127, - 45.9 - ], + "lat": [26, 9.2], + "lon": [127, 45.9], "alt": 186, "kjName": "糸数", "knName": "イトカズ", @@ -20306,14 +12692,8 @@ "92006": { "type": "C", "elems": "11110000", - "lat": [ - 25, - 56.6 - ], - "lon": [ - 131, - 19.6 - ], + "lat": [25, 56.6], + "lon": [131, 19.6], "alt": 22, "kjName": "北大東", "knName": "キタダイトウ:北大東空港", @@ -20322,14 +12702,8 @@ "92011": { "type": "A", "elems": "11111011", - "lat": [ - 25, - 49.7 - ], - "lon": [ - 131, - 13.7 - ], + "lat": [25, 49.7], + "lon": [131, 13.7], "alt": 15, "kjName": "南大東", "knName": "ミナミダイトウ", @@ -20338,14 +12712,8 @@ "92012": { "type": "C", "elems": "11110000", - "lat": [ - 25, - 50.8 - ], - "lon": [ - 131, - 15.8 - ], + "lat": [25, 50.8], + "lon": [131, 15.8], "alt": 48, "kjName": "旧東", "knName": "キュウトウ:南大東空港", @@ -20354,14 +12722,8 @@ "93012": { "type": "C", "elems": "11110000", - "lat": [ - 24, - 49.6 - ], - "lon": [ - 125, - 8.6 - ], + "lat": [24, 49.6], + "lon": [125, 8.6], "alt": 8, "kjName": "下地島", "knName": "シモジシマ:下地島空港", @@ -20370,14 +12732,8 @@ "93041": { "type": "A", "elems": "11111011", - "lat": [ - 24, - 47.6 - ], - "lon": [ - 125, - 16.7 - ], + "lat": [24, 47.6], + "lon": [125, 16.7], "alt": 39, "kjName": "宮古島", "knName": "ミヤコジマ", @@ -20386,14 +12742,8 @@ "93042": { "type": "C", "elems": "11110000", - "lat": [ - 24, - 46.9 - ], - "lon": [ - 125, - 17.7 - ], + "lat": [24, 46.9], + "lon": [125, 17.7], "alt": 43, "kjName": "鏡原", "knName": "カガミハラ:宮古空港", @@ -20402,14 +12752,8 @@ "93051": { "type": "C", "elems": "01000000", - "lat": [ - 24, - 44.6 - ], - "lon": [ - 125, - 24.6 - ], + "lat": [24, 44.6], + "lon": [125, 24.6], "alt": 55, "kjName": "城辺", "knName": "グスクベ", @@ -20418,14 +12762,8 @@ "93062": { "type": "C", "elems": "11110000", - "lat": [ - 24, - 39.2 - ], - "lon": [ - 124, - 40.5 - ], + "lat": [24, 39.2], + "lon": [124, 40.5], "alt": 10, "kjName": "仲筋", "knName": "ナカスジ:多良間空港", @@ -20434,14 +12772,8 @@ "94001": { "type": "C", "elems": "11112010", - "lat": [ - 24, - 30.4 - ], - "lon": [ - 124, - 16.8 - ], + "lat": [24, 30.4], + "lon": [124, 16.8], "alt": 11, "kjName": "伊原間", "knName": "イバルマ", @@ -20450,14 +12782,8 @@ "94011": { "type": "C", "elems": "11110000", - "lat": [ - 24, - 28 - ], - "lon": [ - 122, - 58.7 - ], + "lat": [24, 28], + "lon": [122, 58.7], "alt": 15, "kjName": "所野", "knName": "トコロノ:与那国空港", @@ -20466,14 +12792,8 @@ "94017": { "type": "B", "elems": "11111011", - "lat": [ - 24, - 28 - ], - "lon": [ - 123, - 0.6 - ], + "lat": [24, 28], + "lon": [123, 0.6], "alt": 30, "kjName": "与那国島", "knName": "ヨナグニジマ", @@ -20482,14 +12802,8 @@ "94036": { "type": "C", "elems": "01000000", - "lat": [ - 24, - 28 - ], - "lon": [ - 124, - 8.4 - ], + "lat": [24, 28], + "lon": [124, 8.4], "alt": 7, "kjName": "川平", "knName": "カビラ", @@ -20498,14 +12812,8 @@ "94062": { "type": "B", "elems": "11111011", - "lat": [ - 24, - 25.6 - ], - "lon": [ - 123, - 45.9 - ], + "lat": [24, 25.6], + "lon": [123, 45.9], "alt": 10, "kjName": "西表島", "knName": "イリオモテジマ", @@ -20514,14 +12822,8 @@ "94081": { "type": "A", "elems": "11111011", - "lat": [ - 24, - 20.2 - ], - "lon": [ - 124, - 9.8 - ], + "lat": [24, 20.2], + "lon": [124, 9.8], "alt": 6, "kjName": "石垣島", "knName": "イシガキジマ", @@ -20530,14 +12832,8 @@ "94086": { "type": "C", "elems": "11110000", - "lat": [ - 24, - 23.7 - ], - "lon": [ - 124, - 14.7 - ], + "lat": [24, 23.7], + "lon": [124, 14.7], "alt": 31, "kjName": "盛山", "knName": "モリヤマ:新石垣空港", @@ -20546,14 +12842,8 @@ "94101": { "type": "C", "elems": "11112010", - "lat": [ - 24, - 15.9 - ], - "lon": [ - 123, - 52.3 - ], + "lat": [24, 15.9], + "lon": [123, 52.3], "alt": 33, "kjName": "大原", "knName": "オオハラ", @@ -20562,14 +12852,8 @@ "94116": { "type": "C", "elems": "11112010", - "lat": [ - 24, - 3.3 - ], - "lon": [ - 123, - 46 - ], + "lat": [24, 3.3], + "lon": [123, 46], "alt": 38, "kjName": "波照間", "knName": "ハテルマ", diff --git a/tests/plugins/test_liden_data.geojson b/tests/plugins/test_liden_data.geojson index 18747fdfe6..d9dcb0a13b 100644 --- a/tests/plugins/test_liden_data.geojson +++ b/tests/plugins/test_liden_data.geojson @@ -5,10 +5,7 @@ "type": "Feature", "geometry": { "type": "Point", - "coordinates": [ - 137.593, - 41.471 - ] + "coordinates": [137.593, 41.471] }, "properties": { "id": "nowc_20220507064500_20220507064500_liden_0", diff --git a/tests/plugins/test_targetTimes_N1.json b/tests/plugins/test_targetTimes_N1.json index 8ac7608938..9d427c483f 100644 --- a/tests/plugins/test_targetTimes_N1.json +++ b/tests/plugins/test_targetTimes_N1.json @@ -2,18 +2,11 @@ { "basetime": "20210605123000", "validtime": "20210605123000", - "elements": [ - "hrpns", - "hrpns_nd" - ] + "elements": ["hrpns", "hrpns_nd"] }, { "basetime": "20210605122500", "validtime": "20210605122500", - "elements": [ - "hrpns", - "hrpns_nd", - "liden" - ] + "elements": ["hrpns", "hrpns_nd", "liden"] } ]