diff --git a/.github/workflows/ci_app.yml b/.github/workflows/ci_app.yml
new file mode 100644
index 0000000..866831d
--- /dev/null
+++ b/.github/workflows/ci_app.yml
@@ -0,0 +1,42 @@
+name: ci-app
+on:
+ pull_request:
+ paths:
+ - app/**
+ - .github/**
+ push:
+ paths:
+ - app/**
+ - .github/**
+jobs:
+ ci:
+ name: ci
+ runs-on: ubuntu-latest
+ defaults:
+ run:
+ working-directory: app
+ steps:
+ - uses: actions/checkout@v3
+ - uses: actions/setup-node@v3
+ with:
+ node-version: lts/*
+ - name: Get yarn cache directory path
+ id: yarn-cache-dir-path
+ run: echo "::set-output name=dir::$(yarn cache dir)"
+ - uses: actions/cache@v3
+ id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
+ with:
+ path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
+ key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
+ restore-keys: |
+ ${{ runner.os }}-yarn-
+ - name: Install
+ run: yarn install
+ - name: eslint
+ run: yarn run lint
+ - name: Test
+ run: yarn run test
+ - name: Build
+ run: yarn run build
+ - name: Check translations
+ run: yarn run i18n
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..e43b0f9
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+.DS_Store
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..7d92204
--- /dev/null
+++ b/README.md
@@ -0,0 +1,41 @@
+# ストーリーテリング型 WebGIS の開発と活用に関する技術調査 ソースコード
+
+本レポジトリは「ストーリーテリング型 WebGIS の開発と活用に関する技術調査」のソースコードである。この調査は、ストーリーテリング手法を使った WebGIS コンテンツの既存事例とその関連技術について調査し、その結果をふまえ、PLATEAU の 3D 都市モデルデータを利用し、新しい表現を盛り込んだストーリーテリング型 WebGIS コンテンツを制作することで、WebGIS コンテンツにおける表現の新しい可能性を示すことを目的として、 2023 年度に実施された。詳しくは技術調査レポートを参照。
+
+本レリポジトリで、調査の際に作成したコードを公開する。
+
+## 構成
+
+- `app/` ディレクトリ配下には、実際の Web アプリケーションとして動作するコードが置かれている。
+- `plateau_citygml_to_mvt/` ディレクトリ配下には、PLATEAUで提供される2023年度の建物モデルの CityGML を MVT に変換するためのコードが置かれている。
+
+## 必要なツール
+
+- Node.js: バージョン 20.11.1 以上
+- Yarn: バージョン 1.22.22 以上
+- tppeacanoe: バージョン 2.42.0 以上、 `plateau_citygml_to_mvt` を起動する場合のみ必要。
+
+## 起動方法
+
+### Web アプリケーションの起動方法
+
+事前に `app/.env.example` を参考に `.env` を作成する。
+
+次に、 Web アプリケーションは以下のように起動する。
+
+1. `yarn install`
+2. `yarn dev`
+
+### CityGML を MVT へ変換するスクリプトの起動方法
+
+事前に G空間情報センターから東京都 23 区 3D 都市モデルの 2023 年度の CityGML をダウンロードし、`plateau_citygml_to_mvt/data/plateau_citygml_2023` のように配置する。
+
+次に、 CityGML を MVT へ変換するために以下のスクリプトを実行する。
+
+1. `yarn install`
+2. `yarn convert`
+3. `tippecanoe -pC -ad -an -aD -pf -pT -Z10 -z16 -e dist -l tokyo23-mvt -ai --hilbert tokyo23.geojsonl`
+
+上記を実行後、 `plateau_citygml_to_mvt/` ディレクトリは以下に `dist/` ディレクトリが生成され、このディレクトリに MVT のファイル群が入っている。
+
+新しく生成した MVT を本アプリケーション上で確認する場合は、生成した `dist/` ディレクトリの名前を `tokyo23-mvt` に変更した上で `app/public/data/` ディレクトリ配下に配置する。
diff --git a/app/.env.example b/app/.env.example
new file mode 100644
index 0000000..6ba392f
--- /dev/null
+++ b/app/.env.example
@@ -0,0 +1 @@
+VITE_DATA_RESOURCE_URL="https://example.com/"
diff --git a/app/.eslintignore b/app/.eslintignore
new file mode 100644
index 0000000..647c46e
--- /dev/null
+++ b/app/.eslintignore
@@ -0,0 +1 @@
+**/lib/i3s/*
diff --git a/app/.eslintrc.cjs b/app/.eslintrc.cjs
new file mode 100644
index 0000000..ef95521
--- /dev/null
+++ b/app/.eslintrc.cjs
@@ -0,0 +1,3 @@
+module.exports = {
+ extends: ["reearth", "plugin:storybook/recommended"],
+};
diff --git a/app/.gitignore b/app/.gitignore
new file mode 100644
index 0000000..e8d9b86
--- /dev/null
+++ b/app/.gitignore
@@ -0,0 +1,28 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
+node_modules
+dist
+dist-ssr
+*.local
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+.DS_Store
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
+.env
+
+/public/data
+/scripts
diff --git a/app/.storybook/i18next.ts b/app/.storybook/i18next.ts
new file mode 100644
index 0000000..2ca1012
--- /dev/null
+++ b/app/.storybook/i18next.ts
@@ -0,0 +1,25 @@
+import { initReactI18next } from "react-i18next";
+import i18n from "i18next";
+import Backend from "i18next-http-backend";
+import LanguageDetector from "i18next-browser-languagedetector";
+
+const ns = ["translation"];
+const supportedLngs = ["en", "ja"];
+i18n
+ .use(initReactI18next)
+ .use(LanguageDetector)
+ .use(Backend)
+ .init({
+ lng: "en",
+ fallbackLng: "en",
+ defaultNS: "translation",
+ ns,
+ interpolation: { escapeValue: false },
+ react: { useSuspense: false },
+ supportedLngs,
+ backend: {
+ loadPath: (lng, ns) => `/locales/${lng}/${ns}.json`,
+ },
+ });
+
+export default i18n;
diff --git a/app/.storybook/main.ts b/app/.storybook/main.ts
new file mode 100644
index 0000000..7afb28e
--- /dev/null
+++ b/app/.storybook/main.ts
@@ -0,0 +1,20 @@
+import type { StorybookConfig } from "@storybook/react-vite";
+
+const config: StorybookConfig = {
+ stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
+ addons: [
+ "@storybook/addon-links",
+ "@storybook/addon-essentials",
+ "@storybook/addon-onboarding",
+ "@storybook/addon-interactions",
+ "storybook-react-i18next",
+ ],
+ framework: {
+ name: "@storybook/react-vite",
+ options: {},
+ },
+ docs: {
+ autodocs: "tag",
+ },
+};
+export default config;
diff --git a/app/.storybook/preview.ts b/app/.storybook/preview.ts
new file mode 100644
index 0000000..b49d5c3
--- /dev/null
+++ b/app/.storybook/preview.ts
@@ -0,0 +1,24 @@
+import type { Preview } from "@storybook/react";
+import i18n from "./i18next";
+
+const preview: Preview = {
+ globals: {
+ locale: "en",
+ locales: {
+ en: "English",
+ ja: "日本語",
+ },
+ },
+ parameters: {
+ actions: { argTypesRegex: "^on[A-Z].*" },
+ controls: {
+ matchers: {
+ color: /(background|color)$/i,
+ date: /Date$/i,
+ },
+ },
+ i18n,
+ },
+};
+
+export default preview;
diff --git a/app/.storybook/preview.tsx b/app/.storybook/preview.tsx
new file mode 100644
index 0000000..1afa190
--- /dev/null
+++ b/app/.storybook/preview.tsx
@@ -0,0 +1,22 @@
+import React from "react";
+import type { Preview } from "@storybook/react";
+import { I18nProvider } from "../src/i18n/provider";
+
+const preview: Preview = {
+ parameters: {
+ actions: { argTypesRegex: "^on[A-Z].*" },
+ controls: {
+ matchers: {
+ color: /(background|color)$/i,
+ date: /Date$/,
+ },
+ },
+ },
+ decorators: [
+ (Story) => (
+
+ )
+ ]
+};
+
+export default preview;
diff --git a/app/LICENSE b/app/LICENSE
new file mode 100644
index 0000000..261eeb9
--- /dev/null
+++ b/app/LICENSE
@@ -0,0 +1,201 @@
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/app/i18next-parser.config.js b/app/i18next-parser.config.js
new file mode 100644
index 0000000..e5482d9
--- /dev/null
+++ b/app/i18next-parser.config.js
@@ -0,0 +1,9 @@
+export default {
+ locales: ["en", "ja"],
+ output: "public/locales/$LOCALE/translation.json",
+ input: ["src/**/*.{ts,tsx}"],
+ // allow keys to be phrases having `:`, `.`
+ namespaceSeparator: false,
+ keySeparator: false,
+ keepRemoved: true,
+};
diff --git a/app/index.html b/app/index.html
new file mode 100644
index 0000000..3d3ee9d
--- /dev/null
+++ b/app/index.html
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PLATEAU Past/Future for Action #001 Earthquake
+
+
+
+
+
+
+
diff --git a/app/package.json b/app/package.json
new file mode 100644
index 0000000..e4e5ce9
--- /dev/null
+++ b/app/package.json
@@ -0,0 +1,96 @@
+{
+ "name": "plateau-standalone-disaster-storytelling",
+ "private": true,
+ "version": "0.0.0",
+ "type": "module",
+ "scripts": {
+ "dev": "vite --host",
+ "build": "tsc && vite build",
+ "lint": "eslint . --ext ts,tsx",
+ "format": "yarn lint --fix",
+ "preview": "vite preview",
+ "test": "vitest",
+ "storybook": "storybook dev -p 6006",
+ "build-storybook": "storybook build",
+ "i18n": "i18next"
+ },
+ "dependencies": {
+ "@deck.gl/core": "8.9.30",
+ "@deck.gl/extensions": "8.9.30",
+ "@deck.gl/geo-layers": "8.9.30",
+ "@deck.gl/layers": "8.9.30",
+ "@deck.gl/mesh-layers": "8.9.30",
+ "@deck.gl/react": "^8.9.30",
+ "@floating-ui/react": "^0.26.9",
+ "@linaria/core": "5.0.2",
+ "@linaria/react": "5.0.2",
+ "@loaders.gl/i3s": "^3.4.14",
+ "@loaders.gl/loader-utils": "^3.4.14",
+ "@tsparticles/engine": "^3.3.0",
+ "@tsparticles/react": "^3.0.0",
+ "@tsparticles/slim": "^3.3.0",
+ "chart.js": "4.4.1",
+ "chartjs-plugin-datalabels": "2.2.0",
+ "chartjs-plugin-deferred": "2.0.0",
+ "countup.js": "^2.8.0",
+ "d3-ease": "^3.0.1",
+ "deck.gl": "8.9.30",
+ "deck.gl-particle": "^1.1.0",
+ "framer-motion": "^11.0.8",
+ "i18next": "23.5.1",
+ "i18next-browser-languagedetector": "^7.2.0",
+ "i18next-http-backend": "2.2.2",
+ "lodash-es": "^4.17.21",
+ "maplibre-gl": "3.3.1",
+ "odometer_countup": "^1.0.4",
+ "react": "18.2.0",
+ "react-aria": "^3.31.1",
+ "react-chartjs-2": "5.2.0",
+ "react-dom": "18.2.0",
+ "react-i18next": "13.2.2",
+ "react-map-gl": "7.1.6",
+ "react-router-dom": "6.16.0",
+ "react-stately": "^3.29.1",
+ "seedrandom": "^3.0.5",
+ "three": "^0.158.0",
+ "use-sound": "^4.0.1",
+ "vitest": "0.34.6"
+ },
+ "devDependencies": {
+ "@babel/preset-react": "7.22.15",
+ "@babel/preset-typescript": "7.23.0",
+ "@linaria/vite": "5.0.3",
+ "@storybook/addon-essentials": "7.4.5",
+ "@storybook/addon-interactions": "7.4.5",
+ "@storybook/addon-links": "7.4.5",
+ "@storybook/addon-onboarding": "1.0.8",
+ "@storybook/blocks": "7.4.5",
+ "@storybook/react": "7.4.5",
+ "@storybook/react-vite": "7.4.5",
+ "@storybook/test": "^7.6.13",
+ "@storybook/testing-library": "0.2.1",
+ "@types/countup.js": "^2.0.4",
+ "@types/d3-ease": "^3.0.2",
+ "@types/lodash-es": "^4.17.12",
+ "@types/react": "18.2.45",
+ "@types/react-dom": "18.2.18",
+ "@types/seedrandom": "^3.0.8",
+ "@types/three": "^0.158.2",
+ "@vitejs/plugin-react": "4.0.3",
+ "eslint": "8.47.0",
+ "eslint-config-reearth": "0.2.4",
+ "eslint-plugin-storybook": "0.6.14",
+ "html-to-image": "^1.11.11",
+ "i18next-parser": "8.8.0",
+ "prettier": "3.0.2",
+ "storybook": "7.4.5",
+ "storybook-react-i18next": "^2.0.10",
+ "typescript": "5.1.6",
+ "vite": "4.4.5"
+ },
+ "resolutions": {
+ "strip-ansi": "6.0.1",
+ "string-width": "4.2.2",
+ "wrap-ansi": "7.0.0"
+ }
+}
diff --git a/app/public/base-map/main.json b/app/public/base-map/main.json
new file mode 100644
index 0000000..0722d79
--- /dev/null
+++ b/app/public/base-map/main.json
@@ -0,0 +1,482 @@
+{"version":8,"glyphs":"https://maps.gsi.go.jp/xyz/noto-jp/{fontstack}/{range}.pbf","sources":{"gsibv-vectortile-source-1-4-16":{"type":"vector","tiles":["https://cyberjapandata.gsi.go.jp/xyz/experimental_bvmap/{z}/{x}/{y}.pbf"],"minzoom":4,"maxzoom":16,"attribution":"地理院地図Vector(仮称) "}},"layers":[
+ {"id":"background","type":"background","paint":{"background-color":"#E6E6FA" }},{"id":"gsibv-vectortile-layer-2302","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1695","title":"坑口","path":"構造物-坑口","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",4202]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1.5}},
+ {"id":"gsibv-vectortile-layer-2303","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2272","title":"人工水路(地下)","path":"河川-人工水路(地下)","added":1},"minzoom":8,"maxzoom":14,"filter":["all",["in","ftCode",5322]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(200,200,220)","line-width":{"stops":[[9,1],[17,2]]},"line-dasharray":[2,2]}},
+ {"id":"gsibv-vectortile-layer-2304","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2273","title":"人工水路(地下)","path":"河川-人工水路(地下)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5322]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[9,1],[17,2]]},"line-dasharray":[5,4]}},
+ {"id":"gsibv-vectortile-layer-2305","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2267","title":"枯れ川部","path":"河川-枯れ川部","added":1},"minzoom":8,"maxzoom":14,"filter":["all",["in","ftCode",5302]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(200,200,220)","line-width":{"stops":[[9,1],[17,2]]},"line-dasharray":[2,2]}},
+ {"id":"gsibv-vectortile-layer-2306","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2268","title":"枯れ川部","path":"河川-枯れ川部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5302]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[9,1],[17,2]]}}},
+ {"id":"gsibv-vectortile-layer-2307","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2269","title":"枯れ川部","path":"河川-枯れ川部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5302]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2308","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"waterarea","metadata":{"layer-id":"layer-1650","title":"水域","path":"水域","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",55000]],"layout":{"visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2309","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"waterarea","metadata":{"layer-id":"layer-1650","title":"水域","path":"水域","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",55000]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgb(200,200,220)"}},
+ {"id":"gsibv-vectortile-layer-2310","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"waterarea","metadata":{"layer-id":"layer-1651","title":"水域","path":"水域","added":1},"minzoom":8,"maxzoom":17,"filter":["all",["in","ftCode",5000]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgb(200,200,220)"}},
+ {"id":"gsibv-vectortile-layer-2313","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"lake","metadata":{"layer-id":"layer-2274","title":"通常部","path":"湖池-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5231]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":0.5}},
+ {"id":"gsibv-vectortile-layer-2314","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"lake","metadata":{"layer-id":"layer-2275","title":"通常部","path":"湖池-通常部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5231]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":0.5}},
+ {"id":"gsibv-vectortile-layer-2315","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"lake","metadata":{"layer-id":"layer-2276","title":"岩等に接する部分","path":"湖池-岩等に接する部分","added":1},"minzoom":14,"maxzoom":18,"filter":["all",["in","ftCode",5232]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2316","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"lake","metadata":{"layer-id":"layer-2277","title":"堤防等に接する部分","path":"湖池-堤防等に接する部分","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5233]],"layout":{"line-cap":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1.5,"line-dasharray":[0.2,4]}},
+ {"id":"gsibv-vectortile-layer-2317","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"lake","metadata":{"layer-id":"layer-2277","title":"堤防等に接する部分","path":"湖池-堤防等に接する部分","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5233]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-offset":-1}},
+ {"id":"gsibv-vectortile-layer-2318","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"lake","metadata":{"layer-id":"layer-2278","title":"堤防等に接する部分","path":"湖池-堤防等に接する部分","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5233]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2319","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2263","title":"岩等に接する部分","path":"河川-岩等に接する部分","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5202]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":0.5}},
+ {"id":"gsibv-vectortile-layer-2320","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2264","title":"岩等に接する部分","path":"河川-岩等に接する部分","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5202]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2321","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2265","title":"堤防等に接する部分","path":"河川-堤防等に接する部分","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5203]],"layout":{"line-cap":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1.5,"line-dasharray":[0.2,4]}},
+ {"id":"gsibv-vectortile-layer-2322","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2265","title":"堤防等に接する部分","path":"河川-堤防等に接する部分","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5203]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-offset":-1}},
+ {"id":"gsibv-vectortile-layer-2323","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2266","title":"堤防等に接する部分","path":"河川-堤防等に接する部分","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5203]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2326","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2260","title":"通常部","path":"河川-通常部","added":1},"minzoom":8,"maxzoom":14,"filter":["all",["in","ftCode",5301]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(200,200,220,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2327","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2261","title":"通常部","path":"河川-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5201,5301]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":0.5}},
+ {"id":"gsibv-vectortile-layer-2328","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2262","title":"通常部","path":"河川-通常部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5201,5301]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2329","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2256","title":"河川幅(大)","path":"河川-河川幅(大)","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",55301]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(231,231,231,1)","line-width":{"stops":[[4,1],[6,2],[7,2.5]]}}},
+ {"id":"gsibv-vectortile-layer-2330","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2257","title":"河川幅(中)","path":"河川-河川幅(中)","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",55302]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(231,231,231,1)","line-width":{"stops":[[4,0.5],[6,1.5],[7,2]]}}},
+ {"id":"gsibv-vectortile-layer-2331","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2258","title":"河川幅(小)","path":"河川-河川幅(小)","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",55303]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(231,231,231,1)","line-width":{"stops":[[4,0.2],[6,1],[7,1.5]]}}},
+ {"id":"gsibv-vectortile-layer-2332","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2259","title":"河川幅(極小)","path":"河川-河川幅(極小)","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",55304]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(231,231,231,1)","line-width":{"stops":[[4,0.1],[6,0.5],[7,1]]}}},
+ {"id":"gsibv-vectortile-layer-2333","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"coastline","metadata":{"layer-id":"layer-2251","title":"通常部","path":"海岸線-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5101]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":0.5}},
+ {"id":"gsibv-vectortile-layer-2334","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"coastline","metadata":{"layer-id":"layer-2252","title":"通常部","path":"海岸線-通常部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5101]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":0.5}},
+ {"id":"gsibv-vectortile-layer-2335","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"coastline","metadata":{"layer-id":"layer-2253","title":"岩等に接する部分","path":"海岸線-岩等に接する部分","added":1},"minzoom":14,"maxzoom":18,"filter":["all",["in","ftCode",5102]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":0.5}},
+ {"id":"gsibv-vectortile-layer-2336","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"coastline","metadata":{"layer-id":"layer-2254","title":"堤防等に接する部分","path":"海岸線-堤防等に接する部分","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5103]],"layout":{"line-cap":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1.5,"line-dasharray":[0.2,4]}},
+ {"id":"gsibv-vectortile-layer-2337","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"coastline","metadata":{"layer-id":"layer-2254","title":"堤防等に接する部分","path":"海岸線-堤防等に接する部分","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5103]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-offset":-1}},
+ {"id":"gsibv-vectortile-layer-2338","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"coastline","metadata":{"layer-id":"layer-2255","title":"堤防等に接する部分","path":"海岸線-堤防等に接する部分","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5103]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1.5,"line-dasharray":[0.2,4]}},
+ {"id":"gsibv-vectortile-layer-2339","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"coastline","metadata":{"layer-id":"layer-2255","title":"堤防等に接する部分","path":"海岸線-堤防等に接する部分","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5103]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-offset":-1}},
+ {"id":"gsibv-vectortile-layer-2340","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"coastline","metadata":{"layer-id":"layer-2250","title":"海岸線","path":"海岸線-海岸線","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",55101]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(110,110,110,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2386","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1704","title":"送電線","path":"構造物-送電線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8202]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":0.5}},
+ {"id":"gsibv-vectortile-layer-2387","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1704","title":"送電線","path":"構造物-送電線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8202]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2,"line-dasharray":[0.5,15],"line-offset":-3}},
+ {"id":"gsibv-vectortile-layer-2388","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1704","title":"送電線","path":"構造物-送電線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8202]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2,"line-dasharray":[0.5,15],"line-offset":3}},
+ {"id":"gsibv-vectortile-layer-2389","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"wstructurea","metadata":{"layer-id":"layer-1692","title":"ダム(面)","path":"構造物-ダム(面)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5401],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2390","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"wstructurea","metadata":{"layer-id":"layer-1692","title":"ダム(面)","path":"構造物-ダム(面)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5401],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+ {"id":"gsibv-vectortile-layer-2391","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"wstructurea","metadata":{"layer-id":"layer-1693","title":"桟橋(面)","path":"構造物-桟橋(面)","added":1},"minzoom":8,"maxzoom":17,"filter":["all",["in","ftCode",5411]],"layout":{"visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,0)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2392","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"wstructurea","metadata":{"layer-id":"layer-1693","title":"桟橋(面)","path":"構造物-桟橋(面)","added":1},"minzoom":8,"maxzoom":17,"filter":["all",["in","ftCode",5411]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+ {"id":"gsibv-vectortile-layer-2393","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurea","metadata":{"layer-id":"layer-1690","title":"タンク","path":"構造物-タンク","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(70,60,100)","added":1},"minzoom":13,"maxzoom":17,"filter":["all",["in","ftCode",4302]],"layout":{"visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":3,"line-dasharray":[2,1]}},
+ {"id":"gsibv-vectortile-layer-2394","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurea","metadata":{"layer-id":"layer-1690","title":"タンク","path":"構造物-タンク","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(70,60,100)","added":1,"fill-pattern":"-gsibv-hatch-ltrb-4-255,255,255,1-255,255,255,1"},"minzoom":13,"maxzoom":17,"filter":["all",["in","ftCode",4302]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+ {"id":"gsibv-vectortile-layer-2395","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurea","metadata":{"layer-id":"layer-1691","title":"タンク","path":"構造物-タンク","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(70,60,100)","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",4302]],"layout":{"visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":3,"line-dasharray":[2,1]}},
+ {"id":"gsibv-vectortile-layer-2396","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurea","metadata":{"layer-id":"layer-1691","title":"タンク","path":"構造物-タンク","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(70,60,100)","added":1,"fill-pattern":"-gsibv-hatch-ltrb-4-255,255,255,1-255,255,255,1"},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",4302]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+ {"id":"gsibv-vectortile-layer-2397","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurea","metadata":{"layer-id":"layer-1688","title":"巨大構造物","path":"構造物-巨大構造物","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(70,60,100)","added":1},"minzoom":13,"maxzoom":17,"filter":["all",["in","ftCode",4301]],"layout":{"visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":3,"line-dasharray":[2,1]}},
+ {"id":"gsibv-vectortile-layer-2398","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurea","metadata":{"layer-id":"layer-1688","title":"巨大構造物","path":"構造物-巨大構造物","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(70,60,100)","added":1,"fill-pattern":"-gsibv-hatch-ltrb-4-255,255,255,1-255,255,255,1"},"minzoom":13,"maxzoom":17,"filter":["all",["in","ftCode",4301]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+ {"id":"gsibv-vectortile-layer-2399","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurea","metadata":{"layer-id":"layer-1689","title":"巨大構造物","path":"構造物-巨大構造物","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(70,60,100)","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",4301]],"layout":{"visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":3,"line-dasharray":[2,1]}},
+ {"id":"gsibv-vectortile-layer-2400","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurea","metadata":{"layer-id":"layer-1689","title":"巨大構造物","path":"構造物-巨大構造物","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(70,60,100)","added":1,"fill-pattern":"-gsibv-hatch-ltrb-4-255,255,255,1-255,255,255,1"},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",4301]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+ {"id":"gsibv-vectortile-layer-2419","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"searoute","metadata":{"layer-id":"layer-2248","title":"水上・海上交通 船舶","path":"航路-水上・海上交通 船舶","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5901]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2420","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"searoute","metadata":{"layer-id":"layer-2249","title":"水上・海上交通 航路の軌跡","path":"航路-水上・海上交通 航路の軌跡","added":1},"minzoom":8,"maxzoom":17,"filter":["all",["in","ftCode",5902]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-dasharray":[6,6]}},
+ {"id":"gsibv-vectortile-layer-2421","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"searoute","metadata":{"layer-id":"layer-2247","title":"航路","path":"航路-航路","added":1},"minzoom":6,"maxzoom":8,"filter":["all",["in","ftCode",55902]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1.5,"line-dasharray":[10,10]}},
+ {"id":"gsibv-vectortile-layer-2422","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"boundary","metadata":{"layer-id":"layer-2243","title":"特定地区界","path":"境界-特定地区界-特定地区界","added":1},"minzoom":12,"maxzoom":14,"filter":["all",["in","ftCode",6101]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(100, 100, 100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2423","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"boundary","metadata":{"layer-id":"layer-2244","title":"特定地区界","path":"境界-特定地区界-特定地区界","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",6101]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(100, 100, 100,1)","line-width":1,"line-dasharray":[3,1]}},
+ {"id":"gsibv-vectortile-layer-2424","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"boundary","metadata":{"layer-id":"layer-2245","title":"特定地区界","path":"境界-特定地区界-特定地区界","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",6101]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2,"line-dasharray":[10,3]}},
+ {"id":"gsibv-vectortile-layer-2425","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"boundary","metadata":{"layer-id":"layer-2246","title":"その他の特定地区界","path":"境界-特定地区界-その他の特定地区界","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",6111]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(100, 100, 100,1)","line-width":1,"line-dasharray":[3,1]}},
+ {"id":"gsibv-vectortile-layer-2428","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1694","title":"高塔","path":"構造物-高塔","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",4201]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1.5}},
+ {"id":"gsibv-vectortile-layer-2429","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1696","title":"ダム(線)","path":"構造物-ダム(線)","added":1},"minzoom":11,"maxzoom":17,"filter":["all",["in","ftCode",5501],["==","$type","LineString"],["==","orgGILvl","25000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2430","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1697","title":"桟橋(線)","path":"構造物-桟橋(線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5511]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2431","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1698","title":"せき","path":"構造物-せき","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5514],["==","orgGILvl","25000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2,"line-offset":0}},
+ {"id":"gsibv-vectortile-layer-2432","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1698","title":"せき","path":"構造物-せき","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5514],["==","orgGILvl","25000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-dasharray":[4,2],"line-offset":6}},
+ {"id":"gsibv-vectortile-layer-2433","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1699","title":"せき","path":"構造物-せき","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5514],["==","orgGILvl","2500"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2434","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1700","title":"水門","path":"構造物-水門","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5515],["==","orgGILvl","25000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3.5}},
+ {"id":"gsibv-vectortile-layer-2435","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1701","title":"水門","path":"構造物-水門","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5575],["==","orgGILvl","2500"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2436","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1702","title":"透過水制","path":"構造物-透過水制","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5532],["==","orgGILvl","25000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-dasharray":[2,2]}},
+ {"id":"gsibv-vectortile-layer-2437","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1703","title":"河川トンネル口","path":"構造物-河川トンネル口","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5551],["==","orgGILvl","25000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2438","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1705","title":"ダム","path":"構造物-ダム","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5501],["==","orgGILvl","2500"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2439","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1706","title":"砂防ダム","path":"構造物-砂防ダム","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5502]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2440","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1707","title":"桟橋(鉄、コンクリート)","path":"構造物-桟橋(鉄、コンクリート)","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5571]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2441","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1708","title":"被覆","path":"構造物-被覆","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5572]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2442","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1709","title":"防波堤","path":"構造物-防波堤","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5563]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2443","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1710","title":"敷石斜坂","path":"構造物-敷石斜坂","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5576]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2444","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1711","title":"雨水桝","path":"構造物-雨水桝","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5541]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2445","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1713","title":"普通建物","path":"建物-普通建物-普通建物","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3101],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(230,230,250,1)"}},
+ {"id":"gsibv-vectortile-layer-2446","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1715","title":"普通建物(外周線)","path":"建物-普通建物-普通建物(外周線)","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3101],["==","$type","LineString"]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2447","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1716","title":"堅ろう建物","path":"建物-堅ろう建物-堅ろう建物","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",3102],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2448","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1716","title":"堅ろう建物","path":"建物-堅ろう建物-堅ろう建物","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",3102],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(230,230,250,0)"}},
+ {"id":"gsibv-vectortile-layer-2449","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1718","title":"堅ろう建物","path":"建物-堅ろう建物-堅ろう建物","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3102],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(230,230,250,1)"}},
+ {"id":"gsibv-vectortile-layer-2450","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1720","title":"堅ろう建物(外周線)","path":"建物-堅ろう建物-堅ろう建物(外周線)","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3102],["==","$type","LineString"]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":2.5}},
+ {"id":"gsibv-vectortile-layer-2451","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1721","title":"高層建物","path":"建物-高層建物-高層建物","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",3103],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2452","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1721","title":"高層建物","path":"建物-高層建物-高層建物","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",3103],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(230,230,250,0)"}},
+ {"id":"gsibv-vectortile-layer-2453","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1723","title":"高層建物","path":"建物-高層建物-高層建物","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3103],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(230,230,250,1)"}},
+ {"id":"gsibv-vectortile-layer-2454","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1725","title":"高層建物(外周線)","path":"建物-高層建物-高層建物(外周線)","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3103],["==","$type","LineString"]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":2.5}},
+ {"id":"gsibv-vectortile-layer-2455","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1727","title":"普通無壁舎","path":"建物-普通無壁舎-普通無壁舎","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3111],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(230,230,250,1)"}},
+ {"id":"gsibv-vectortile-layer-2456","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1729","title":"普通無壁舎(外周線)","path":"建物-普通無壁舎-普通無壁舎(外周線)","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3111],["==","$type","LineString"]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":1.5,"line-dasharray":[4,4]}},
+ {"id":"gsibv-vectortile-layer-2457","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1731","title":"堅ろう無壁舎","path":"建物-堅ろう無壁舎-堅ろう無壁舎","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(230,230,250)","added":1,"fill-pattern":"-gsibv-hatch-ltrb-4-255,255,255,1-255,255,255,0"},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3112],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(230,230,250,1)"}},
+ {"id":"gsibv-vectortile-layer-2458","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1733","title":"堅ろう無壁舎(外周線)","path":"建物-堅ろう無壁舎-堅ろう無壁舎(外周線)","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3112],["==","$type","LineString"]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":1.5,"line-dasharray":[4,4]}},
+ {"id":"gsibv-vectortile-layer-2459","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1712","title":"普通建物","path":"建物-普通建物-普通建物","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3101],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(230,230,250,1)"}},
+ {"id":"gsibv-vectortile-layer-2460","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1714","title":"普通建物(外周線)","path":"建物-普通建物-普通建物(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3101],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":1.5}},
+ {"id":"gsibv-vectortile-layer-2461","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1717","title":"堅ろう建物","path":"建物-堅ろう建物-堅ろう建物","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3102],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(230,230,250,1)"}},
+ {"id":"gsibv-vectortile-layer-2462","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1719","title":"堅ろう建物(外周線)","path":"建物-堅ろう建物-堅ろう建物(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3102],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":1.5}},
+ {"id":"gsibv-vectortile-layer-2463","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1722","title":"高層建物","path":"建物-高層建物-高層建物","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3103],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(230,230,250,1)"}},
+ {"id":"gsibv-vectortile-layer-2464","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1724","title":"高層建物(外周線)","path":"建物-高層建物-高層建物(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3103],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":1.5}},
+ {"id":"gsibv-vectortile-layer-2465","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1726","title":"普通無壁舎","path":"建物-普通無壁舎-普通無壁舎","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3111],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(230,230,250,1)"}},
+ {"id":"gsibv-vectortile-layer-2466","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1728","title":"普通無壁舎(外周線)","path":"建物-普通無壁舎-普通無壁舎(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3111],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":1.5,"line-dasharray":[2,2]}},
+ {"id":"gsibv-vectortile-layer-2467","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1730","title":"堅ろう無壁舎","path":"建物-堅ろう無壁舎-堅ろう無壁舎","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(230,230,250)","added":1,"fill-pattern":"-gsibv-hatch-ltrb-4-255,255,255,1-255,255,255,1"},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3112],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(230,230,250,1)"}},
+ {"id":"gsibv-vectortile-layer-2468","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1732","title":"堅ろう無壁舎(外周線)","path":"建物-堅ろう無壁舎-堅ろう無壁舎(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3112],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":1.5,"line-dasharray":[2,2]}},
+ {"id":"gsibv-vectortile-layer-2469","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"boundary","metadata":{"layer-id":"layer-2240","title":"都府県界及び北海道総合振興局・振興局界","path":"境界-行政界-都府県界及び北海道総合振興局・振興局界","added":1},"minzoom":8,"maxzoom":17,"filter":["all",["in","ftCode",1211]],"layout":{"line-cap":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2.5,"line-dasharray":[7,5,0.1,5]}},
+ {"id":"gsibv-vectortile-layer-2470","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"boundary","metadata":{"layer-id":"layer-2241","title":"市区町村界","path":"境界-行政界-市区町村界","added":1},"minzoom":11,"maxzoom":17,"filter":["all",["in","ftCode",1212]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1.5,"line-dasharray":[6,2,1,2,1,2]}},
+ {"id":"gsibv-vectortile-layer-2471","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"boundary","metadata":{"layer-id":"layer-2242","title":"所属界(所属を明示する境界線)","path":"境界-行政界-所属界(所属を明示する境界線)","added":1},"minzoom":11,"maxzoom":17,"filter":["all",["in","ftCode",1221]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1.5,"line-dasharray":[4,1,1,5]}},
+ {"id":"gsibv-vectortile-layer-2472","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"boundary","metadata":{"layer-id":"layer-2238","title":"地方界","path":"境界-行政界-地方界","added":1},"minzoom":6,"maxzoom":8,"filter":["all",["in","ftCode",51212]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":1,"line-dasharray":[10,2,1,2]}},
+ {"id":"gsibv-vectortile-layer-2473","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"boundary","metadata":{"layer-id":"layer-2239","title":"国の所属界","path":"境界-行政界-国の所属界","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",51221]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(34,24,21)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2474","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1829","title":"通常部(有料)","path":"道路-市区町村道・その他-通常部(有料)","line-role":"outline","added":1},"minzoom":10,"maxzoom":13,"filter":["all",["in","ftCode",2701,2702,2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","tollSect",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2475","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1800","title":"通常部","path":"道路-都道府県道-通常部","line-role":"outline","added":1},"minzoom":10,"maxzoom":11,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2476","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1808","title":"通常部","path":"道路-都道府県道-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2477","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1813","title":"通常部","path":"道路-都道府県道-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2478","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1818","title":"通常部","path":"道路-都道府県道-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2479","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1823","title":"通常部","path":"道路-都道府県道-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":6}},
+ {"id":"gsibv-vectortile-layer-2480","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1769","title":"通常部","path":"道路-国道-通常部","line-role":"outline","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2481","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1777","title":"通常部","path":"道路-国道-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2482","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1782","title":"通常部","path":"道路-国道-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2483","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1787","title":"通常部","path":"道路-国道-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2484","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1792","title":"通常部","path":"道路-国道-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":6}},
+ {"id":"gsibv-vectortile-layer-2485","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1738","title":"通常部","path":"道路-高速道路-通常部","line-role":"outline","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",2701],["==","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2486","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1746","title":"通常部","path":"道路-高速道路-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2487","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1750","title":"トンネル","path":"道路-高速道路-5.5m以上13m未満-トンネル","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-dasharray":[6,6],"line-width":{"stops":[[14,0.75]]},"line-offset":{"stops":[[12,-1.5]]}}},
+ {"id":"gsibv-vectortile-layer-2488","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1751","title":"通常部","path":"道路-高速道路-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2489","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1755","title":"トンネル","path":"道路-高速道路-13m以上19.5m未満-トンネル","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-dasharray":[4,4],"line-offset":{"stops":[[12,-2]]},"line-width":{"stops":[[14,1]]}}},
+ {"id":"gsibv-vectortile-layer-2490","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1756","title":"通常部","path":"道路-高速道路-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2491","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1761","title":"通常部","path":"道路-高速道路-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":6}},
+ {"id":"gsibv-vectortile-layer-2492","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1833","title":"通常部","path":"道路-市区町村道・その他-3m未満・その他・不明-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,1.5],[17,4]]}}},
+ {"id":"gsibv-vectortile-layer-2493","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1838","title":"通常部","path":"道路-市区町村道・その他-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,14]]}}},
+ {"id":"gsibv-vectortile-layer-2494","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1843","title":"通常部","path":"道路-市区町村道・その他-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,22]]}}},
+ {"id":"gsibv-vectortile-layer-2495","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1848","title":"通常部","path":"道路-市区町村道・その他-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,5],[17,25]]}}},
+ {"id":"gsibv-vectortile-layer-2496","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1853","title":"通常部","path":"道路-市区町村道・その他-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,10],[17,36]]}}},
+ {"id":"gsibv-vectortile-layer-2497","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1858","title":"3m未満・その他・不明","path":"道路-庭園路-3m未満・その他・不明","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,2],[17,6]]},"line-dasharray":[1.5,0.3]}},
+ {"id":"gsibv-vectortile-layer-2498","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1859","title":"3m以上5.5m未満","path":"道路-庭園路-3m以上5.5m未満","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,9]]},"line-dasharray":[1.5,0.3]}},
+ {"id":"gsibv-vectortile-layer-2499","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1860","title":"5.5m以上13m未満","path":"道路-庭園路-5.5m以上13m未満","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,13]]},"line-dasharray":[1.5,0.3]}},
+ {"id":"gsibv-vectortile-layer-2500","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1861","title":"13m以上19.5m未満","path":"道路-庭園路-13m以上19.5m未満","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,5],[17,17]]},"line-dasharray":[1.5,0.3]}},
+ {"id":"gsibv-vectortile-layer-2501","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1862","title":"19.5m以上","path":"道路-庭園路-19.5m以上","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,6],[17,21]]},"line-dasharray":[1.5,0.3]}},
+ {"id":"gsibv-vectortile-layer-2502","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1809","title":"通常部","path":"道路-都道府県道-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,14]]}}},
+ {"id":"gsibv-vectortile-layer-2503","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1814","title":"通常部","path":"道路-都道府県道-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,22]]}}},
+ {"id":"gsibv-vectortile-layer-2504","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1819","title":"通常部","path":"道路-都道府県道-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,5],[17,25]]}}},
+ {"id":"gsibv-vectortile-layer-2505","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1824","title":"通常部","path":"道路-都道府県道-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,10],[17,36]]}}},
+ {"id":"gsibv-vectortile-layer-2506","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1778","title":"通常部","path":"道路-国道-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,14]]}}},
+ {"id":"gsibv-vectortile-layer-2507","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1783","title":"通常部","path":"道路-国道-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,22]]}}},
+ {"id":"gsibv-vectortile-layer-2508","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1788","title":"通常部","path":"道路-国道-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,5],[17,25]]}}},
+ {"id":"gsibv-vectortile-layer-2509","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1793","title":"通常部","path":"道路-国道-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,10],[17,36]]}}},
+ {"id":"gsibv-vectortile-layer-2510","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1747","title":"通常部","path":"道路-高速道路-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,14]]}}},
+ {"id":"gsibv-vectortile-layer-2511","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1752","title":"通常部","path":"道路-高速道路-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,22]]}}},
+ {"id":"gsibv-vectortile-layer-2512","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1757","title":"通常部","path":"道路-高速道路-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,5],[17,25]]}}},
+ {"id":"gsibv-vectortile-layer-2513","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1762","title":"通常部","path":"道路-高速道路-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,10],[17,36]]}}},
+ {"id":"gsibv-vectortile-layer-2514","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1768","title":"徒歩道","path":"道路-国道-徒歩道","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2721,2722,2723,2724],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(160,160,160,1)","line-width":{"stops":[[11,1],[15,1],[17,4]]},"line-dasharray":[6,1]}},
+ {"id":"gsibv-vectortile-layer-2515","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1799","title":"徒歩道","path":"道路-都道府県道-徒歩道","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2721,2722,2723,2724],["==","rdCtg",1],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(160,160,160,1)","line-width":{"stops":[[11,1],[15,1],[17,4]]},"line-dasharray":[6,1]}},
+ {"id":"gsibv-vectortile-layer-2516","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1828","title":"徒歩道","path":"道路-市区町村道・その他-徒歩道","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2721,2722,2723,2724],["in","rdCtg",2,5,6],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[11,1],[15,1],[17,4]]},"line-dasharray":[6,1]}},
+ {"id":"gsibv-vectortile-layer-2517","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1838","title":"通常部","path":"道路-市区町村道・その他-3m以上5.5m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,2],[17,12]]}}},
+ {"id":"gsibv-vectortile-layer-2518","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1873","title":"雪覆い","path":"道路-雪覆い","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2702,2712,2722]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(200,200,200,1)","line-width":{"stops":[[15,3],[17,20]]}}},
+ {"id":"gsibv-vectortile-layer-2519","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1843","title":"通常部","path":"道路-市区町村道・その他-5.5m以上13m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,20]]}}},
+ {"id":"gsibv-vectortile-layer-2520","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1848","title":"通常部","path":"道路-市区町村道・その他-13m以上19.5m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,24]]}}},
+ {"id":"gsibv-vectortile-layer-2521","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1853","title":"通常部","path":"道路-市区町村道・その他-19.5m以上-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,9],[17,34]]}}},
+ {"id":"gsibv-vectortile-layer-2522","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1766","title":"石段","path":"道路-国道-石段","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2731,2732,2733,2734],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":6}},
+ {"id":"gsibv-vectortile-layer-2523","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1766","title":"石段","path":"道路-国道-石段","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2731,2732,2733,2734],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5,"line-dasharray":[1,0.1]}},
+ {"id":"gsibv-vectortile-layer-2524","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1797","title":"石段","path":"道路-都道府県道-石段","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2731,2732,2733,2734],["==","rdCtg",1],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":6}},
+ {"id":"gsibv-vectortile-layer-2525","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1797","title":"石段","path":"道路-都道府県道-石段","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2731,2732,2733,2734],["==","rdCtg",1],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5,"line-dasharray":[1,0.1]}},
+ {"id":"gsibv-vectortile-layer-2526","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1827","title":"石段","path":"道路-市区町村道・その他-石段","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2731,2732,2733,2734],["in","rdCtg",2,5,6],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":6}},
+ {"id":"gsibv-vectortile-layer-2527","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1827","title":"石段","path":"道路-市区町村道・その他-石段","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2731,2732,2733,2734],["in","rdCtg",2,5,6],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5,"line-dasharray":[1,0.1]}},
+ {"id":"gsibv-vectortile-layer-2528","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1858","title":"3m未満・その他・不明","path":"道路-庭園路-3m未満・その他・不明","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,1],[17,5]]}}},
+ {"id":"gsibv-vectortile-layer-2529","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1859","title":"3m以上5.5m未満","path":"道路-庭園路-3m以上5.5m未満","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,2],[17,8]]}}},
+ {"id":"gsibv-vectortile-layer-2530","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1860","title":"5.5m以上13m未満","path":"道路-庭園路-5.5m以上13m未満","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,12]]}}},
+ {"id":"gsibv-vectortile-layer-2531","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1861","title":"13m以上19.5m未満","path":"道路-庭園路-13m以上19.5m未満","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,16]]}}},
+ {"id":"gsibv-vectortile-layer-2532","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1862","title":"19.5m以上","path":"道路-庭園路-19.5m以上","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,5],[17,20]]}}},
+ {"id":"gsibv-vectortile-layer-2533","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1868","title":"3m未満・その他・不明","path":"道路-トンネル内の道路-3m未満・その他・不明","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,1],[17,2.5]]}}},
+ {"id":"gsibv-vectortile-layer-2534","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1868","title":"3m未満・その他・不明","path":"道路-トンネル内の道路-3m未満・その他・不明","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,-1],[17,-2.5]]}}},
+ {"id":"gsibv-vectortile-layer-2535","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1869","title":"3m以上5.5m未満","path":"道路-トンネル内の道路-3m以上5.5m未満","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,1.5],[17,7]]}}},
+ {"id":"gsibv-vectortile-layer-2536","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1869","title":"3m以上5.5m未満","path":"道路-トンネル内の道路-3m以上5.5m未満","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,-1.5],[17,-7]]}}},
+ {"id":"gsibv-vectortile-layer-2537","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1870","title":"5.5m以上13m未満","path":"道路-トンネル内の道路-5.5m以上13m未満","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,2],[17,11]]}}},
+ {"id":"gsibv-vectortile-layer-2538","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1870","title":"5.5m以上13m未満","path":"道路-トンネル内の道路-5.5m以上13m未満","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,-2],[17,-11]]}}},
+ {"id":"gsibv-vectortile-layer-2539","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1871","title":"13m以上19.5m未満","path":"道路-トンネル内の道路-13m以上19.5m未満","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,2.5],[17,12.5]]}}},
+ {"id":"gsibv-vectortile-layer-2540","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1871","title":"13m以上19.5m未満","path":"道路-トンネル内の道路-13m以上19.5m未満","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,-2.5],[17,-12.5]]}}},
+ {"id":"gsibv-vectortile-layer-2541","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1872","title":"19.5m以上","path":"道路-トンネル内の道路-19.5m以上","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,5],[17,18]]}}},
+ {"id":"gsibv-vectortile-layer-2542","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1872","title":"19.5m以上","path":"道路-トンネル内の道路-19.5m以上","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,-5],[17,-18]]}}},
+ {"id":"gsibv-vectortile-layer-2543","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1804","title":"通常部","path":"道路-都道府県道-3m未満・その他・不明-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,1.5],[17,4]]}}},
+ {"id":"gsibv-vectortile-layer-2544","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1809","title":"通常部","path":"道路-都道府県道-3m以上5.5m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,2],[17,12]]}}},
+ {"id":"gsibv-vectortile-layer-2545","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1814","title":"通常部","path":"道路-都道府県道-5.5m以上13m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,20]]}}},
+ {"id":"gsibv-vectortile-layer-2546","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1819","title":"通常部","path":"道路-都道府県道-13m以上19.5m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,24]]}}},
+ {"id":"gsibv-vectortile-layer-2547","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1824","title":"通常部","path":"道路-都道府県道-19.5m以上-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,9],[17,34]]}}},
+ {"id":"gsibv-vectortile-layer-2548","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1773","title":"通常部","path":"道路-国道-3m未満・その他・不明-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,1.5],[17,4]]}}},
+ {"id":"gsibv-vectortile-layer-2549","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1778","title":"通常部","path":"道路-国道-3m以上5.5m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,2],[17,12]]}}},
+ {"id":"gsibv-vectortile-layer-2550","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1783","title":"通常部","path":"道路-国道-5.5m以上13m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,20]]}}},
+ {"id":"gsibv-vectortile-layer-2551","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1788","title":"通常部","path":"道路-国道-13m以上19.5m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,24]]}}},
+ {"id":"gsibv-vectortile-layer-2552","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1793","title":"通常部","path":"道路-国道-19.5m以上-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,9],[17,34]]}}},
+ {"id":"gsibv-vectortile-layer-2553","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1917","title":"トンネル","path":"鉄道-地下鉄-トンネル","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["any",["==","staCode","0"],["!has","staCode"]],["in","railState",100,300,500,2,3],["any",["all",[">=","rtCode1","40203000000"],["<","rtCode1","40204000000"]],["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3,"line-dasharray":[3,2]}},
+ {"id":"gsibv-vectortile-layer-2554","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1932","title":"通常部","path":"鉄道-側線-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["any",["==","staCode","0"],["!has","staCode"]],["==","snglDbl",3]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2555","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1929","title":"通常部","path":"鉄道-特殊鉄道-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],[">=","rtCode","4021700000"],["<","rtCode","4021800000"]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":6,"line-dasharray":[0.2,3]}},
+ {"id":"gsibv-vectortile-layer-2556","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1929","title":"通常部","path":"鉄道-特殊鉄道-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],[">=","rtCode","4021700000"],["<","rtCode","4021800000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2557","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1927","title":"索道","path":"鉄道-索道","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],[">=","rtCode","40206000000"],["<","rtCode","40207000000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(200,200,200,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2558","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1924","title":"路面","path":"鉄道-路面","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],[">=","rtCode","40204000000"],["<","rtCode","40205000000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2559","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1907","title":"トンネル","path":"鉄道-JR以外-トンネル","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["any",["==","staCode","0"],["!has","staCode"]],["in","railState",2,3],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,0.75)","line-width":3,"line-dasharray":[3,2]}},
+ {"id":"gsibv-vectortile-layer-2560","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1901","title":"単線","path":"鉄道-JR以外-通常部-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",0],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2561","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1901","title":"単線","path":"鉄道-JR以外-通常部-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",0],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":8,"line-dasharray":[0.1,5]}},
+ {"id":"gsibv-vectortile-layer-2562","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1911","title":"運休中","path":"鉄道-JR以外-運休中","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",5],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3,"line-dasharray":[5,1,5]}},
+ {"id":"gsibv-vectortile-layer-2563","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1911","title":"運休中","path":"鉄道-JR以外-運休中","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",5],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":8,"line-dasharray":[0.1,4]}},
+ {"id":"gsibv-vectortile-layer-2564","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1913","title":"単線","path":"鉄道-地下鉄-通常部-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["in","railState",0,200],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40203000000"],["<","rtCode1","40204000000"]],["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2565","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1913","title":"単線","path":"鉄道-地下鉄-通常部-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["in","railState",0,200],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40203000000"],["<","rtCode1","40204000000"]],["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":8,"line-dasharray":[0.1,5]}},
+ {"id":"gsibv-vectortile-layer-2566","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1904","title":"複線","path":"鉄道-JR以外-通常部-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",0],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2567","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1904","title":"複線","path":"鉄道-JR以外-通常部-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",0],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":8,"line-dasharray":[0.1,0.2,0.1,5]}},
+ {"id":"gsibv-vectortile-layer-2568","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1915","title":"複線","path":"鉄道-地下鉄-通常部-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["in","railState",0,200],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40203000000"],["<","rtCode1","40204000000"]],["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2569","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1915","title":"複線","path":"鉄道-地下鉄-通常部-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["in","railState",0,200],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40203000000"],["<","rtCode1","40204000000"]],["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":8,"line-dasharray":[0.1,0.2,0.1,5]}},
+ {"id":"gsibv-vectortile-layer-2570","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1893","title":"トンネル","path":"鉄道-JR-トンネル","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["any",["==","staCode","0"],["!has","staCode"]],["in","railState",2,3],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3,"line-dasharray":[3,2]}},
+ {"id":"gsibv-vectortile-layer-2571","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1887","title":"単線","path":"鉄道-JR-通常部-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2572","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1887","title":"単線","path":"鉄道-JR-通常部-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2573","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1887","title":"単線","path":"鉄道-JR-通常部-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4,"line-dasharray":[2,2]}},
+ {"id":"gsibv-vectortile-layer-2574","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1898","title":"運休中","path":"鉄道-JR-運休中","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",5],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2575","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1898","title":"運休中","path":"鉄道-JR-運休中","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",5],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3,"line-dasharray":[5,0.1]}},
+ {"id":"gsibv-vectortile-layer-2576","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1935","title":"雪覆い","path":"鉄道-雪覆い","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",4],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(200,200,200,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2577","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1890","title":"複線","path":"鉄道-JR-通常部-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",0],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2578","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1890","title":"複線","path":"鉄道-JR-通常部-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",0],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2579","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1890","title":"複線","path":"鉄道-JR-通常部-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",0],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4,"line-dasharray":[4,2,0.1,2]}},
+ {"id":"gsibv-vectortile-layer-2580","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1939","title":"地下駅","path":"鉄道-地下駅","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["has","staCode"],["!=","staCode","0"],["in","railState",100,300,500,2,3]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[14,0.5],[17,1]]},"line-dasharray":[6,6],"line-offset":{"stops":[[14,-3],[16,-5]]}}},
+ {"id":"gsibv-vectortile-layer-2581","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1939","title":"地下駅","path":"鉄道-地下駅","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["has","staCode"],["!=","staCode","0"],["in","railState",100,300,500,2,3]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-dasharray":[6,6],"line-offset":{"stops":[[14,3],[16,5]]},"line-width":{"stops":[[14,0.5],[17,1]]}}},
+ {"id":"gsibv-vectortile-layer-2582","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1937","title":"駅","path":"鉄道-駅","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["has","staCode"],["!=","staCode","0"],["in","railState",0,1,5]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":12}},
+ {"id":"gsibv-vectortile-layer-2583","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1937","title":"駅","path":"鉄道-駅","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["has","staCode"],["!=","staCode","0"],["in","railState",0,1,5]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":10}},
+ {"id":"gsibv-vectortile-layer-2584","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1742","title":"通常部","path":"道路-高速道路-3m未満・その他・不明-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,1.5],[17,4]]}}},
+ {"id":"gsibv-vectortile-layer-2585","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1747","title":"通常部","path":"道路-高速道路-3m以上5.5m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,2],[17,12]]}}},
+ {"id":"gsibv-vectortile-layer-2586","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1752","title":"通常部","path":"道路-高速道路-5.5m以上13m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,20]]}}},
+ {"id":"gsibv-vectortile-layer-2587","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1757","title":"通常部","path":"道路-高速道路-13m以上19.5m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,24]]}}},
+ {"id":"gsibv-vectortile-layer-2588","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1762","title":"通常部","path":"道路-高速道路-19.5m以上-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,9],[17,34]]}}},
+ {"id":"gsibv-vectortile-layer-2589","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1835","title":"橋・高架","path":"道路-市区町村道・その他-3m未満・その他・不明-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,1.5],[17,4]]}}},
+ {"id":"gsibv-vectortile-layer-2590","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1840","title":"橋・高架","path":"道路-市区町村道・その他-3m以上5.5m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,5],[17,16]]}}},
+ {"id":"gsibv-vectortile-layer-2591","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1845","title":"橋・高架","path":"道路-市区町村道・その他-5.5m以上13m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,6],[17,24]]}}},
+ {"id":"gsibv-vectortile-layer-2592","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1850","title":"橋・高架","path":"道路-市区町村道・その他-13m以上19.5m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,7],[17,19]]}}},
+ {"id":"gsibv-vectortile-layer-2593","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1855","title":"橋・高架","path":"道路-市区町村道・その他-19.5m以上-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,12],[17,37]]}}},
+ {"id":"gsibv-vectortile-layer-2594","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1811","title":"橋・高架","path":"道路-都道府県道-3m以上5.5m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,5],[17,16]]}}},
+ {"id":"gsibv-vectortile-layer-2595","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1816","title":"橋・高架","path":"道路-都道府県道-5.5m以上13m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,6],[17,24]]}}},
+ {"id":"gsibv-vectortile-layer-2596","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1821","title":"橋・高架","path":"道路-都道府県道-13m以上19.5m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,7],[17,26]]}}},
+ {"id":"gsibv-vectortile-layer-2597","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1826","title":"橋・高架","path":"道路-都道府県道-19.5m以上-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,12],[17,37]]}}},
+ {"id":"gsibv-vectortile-layer-2598","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1780","title":"橋・高架","path":"道路-国道-3m以上5.5m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,5],[17,16]]}}},
+ {"id":"gsibv-vectortile-layer-2599","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1785","title":"橋・高架","path":"道路-国道-5.5m以上13m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,6],[17,24]]}}},
+ {"id":"gsibv-vectortile-layer-2600","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1790","title":"橋・高架","path":"道路-国道-13m以上19.5m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,7],[17,26]]}}},
+ {"id":"gsibv-vectortile-layer-2601","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1795","title":"橋・高架","path":"道路-国道-19.5m以上-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,12],[17,37]]}}},
+ {"id":"gsibv-vectortile-layer-2602","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1749","title":"橋・高架","path":"道路-高速道路-3m以上5.5m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,5],[17,16]]}}},
+ {"id":"gsibv-vectortile-layer-2603","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1754","title":"橋・高架","path":"道路-高速道路-5.5m以上13m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,6],[17,24]]}}},
+ {"id":"gsibv-vectortile-layer-2604","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1759","title":"橋・高架","path":"道路-高速道路-13m以上19.5m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,7],[17,26]]}}},
+ {"id":"gsibv-vectortile-layer-2605","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1764","title":"橋・高架","path":"道路-高速道路-19.5m以上-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,12],[17,37]]}}},
+ {"id":"gsibv-vectortile-layer-2606","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1840","title":"橋・高架","path":"道路-市区町村道・その他-3m以上5.5m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,2],[17,12]]}}},
+ {"id":"gsibv-vectortile-layer-2607","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1845","title":"橋・高架","path":"道路-市区町村道・その他-5.5m以上13m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,20]]}}},
+ {"id":"gsibv-vectortile-layer-2608","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1850","title":"橋・高架","path":"道路-市区町村道・その他-13m以上19.5m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,16]]}}},
+ {"id":"gsibv-vectortile-layer-2609","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1855","title":"橋・高架","path":"道路-市区町村道・その他-19.5m以上-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,9],[17,34]]}}},
+ {"id":"gsibv-vectortile-layer-2610","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1806","title":"橋・高架","path":"道路-都道府県道-3m未満・その他・不明-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,1.5],[17,4]]}}},
+ {"id":"gsibv-vectortile-layer-2611","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1811","title":"橋・高架","path":"道路-都道府県道-3m以上5.5m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,2],[17,12]]}}},
+ {"id":"gsibv-vectortile-layer-2612","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1816","title":"橋・高架","path":"道路-都道府県道-5.5m以上13m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,20]]}}},
+ {"id":"gsibv-vectortile-layer-2613","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1821","title":"橋・高架","path":"道路-都道府県道-13m以上19.5m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,24]]}}},
+ {"id":"gsibv-vectortile-layer-2614","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1826","title":"橋・高架","path":"道路-都道府県道-19.5m以上-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,9],[17,34]]}}},
+ {"id":"gsibv-vectortile-layer-2615","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1775","title":"橋・高架","path":"道路-国道-3m未満・その他・不明-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,1.5],[17,4]]}}},
+ {"id":"gsibv-vectortile-layer-2616","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1780","title":"橋・高架","path":"道路-国道-3m以上5.5m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,2],[17,12]]}}},
+ {"id":"gsibv-vectortile-layer-2617","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1785","title":"橋・高架","path":"道路-国道-5.5m以上13m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,20]]}}},
+ {"id":"gsibv-vectortile-layer-2618","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1790","title":"橋・高架","path":"道路-国道-13m以上19.5m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,24]]}}},
+ {"id":"gsibv-vectortile-layer-2619","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1795","title":"橋・高架","path":"道路-国道-19.5m以上-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,9],[17,34]]}}},
+ {"id":"gsibv-vectortile-layer-2620","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1894","title":"単線","path":"鉄道-JR-橋梁-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":16}},
+ {"id":"gsibv-vectortile-layer-2621","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1894","title":"単線","path":"鉄道-JR-橋梁-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2,"line-offset":-4}},
+ {"id":"gsibv-vectortile-layer-2622","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1894","title":"単線","path":"鉄道-JR-橋梁-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2,"line-offset":4}},
+ {"id":"gsibv-vectortile-layer-2623","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1894","title":"単線","path":"鉄道-JR-橋梁-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2624","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1894","title":"単線","path":"鉄道-JR-橋梁-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2625","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1894","title":"単線","path":"鉄道-JR-橋梁-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4,"line-dasharray":[2,2]}},
+ {"id":"gsibv-vectortile-layer-2626","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1895","title":"複線","path":"鉄道-JR-橋梁-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":16}},
+ {"id":"gsibv-vectortile-layer-2627","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1895","title":"複線","path":"鉄道-JR-橋梁-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2,"line-offset":-4}},
+ {"id":"gsibv-vectortile-layer-2628","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1895","title":"複線","path":"鉄道-JR-橋梁-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2,"line-offset":4}},
+ {"id":"gsibv-vectortile-layer-2629","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1895","title":"複線","path":"鉄道-JR-橋梁-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2630","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1895","title":"複線","path":"鉄道-JR-橋梁-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2631","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1895","title":"複線","path":"鉄道-JR-橋梁-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4,"line-dasharray":[4,2,0.1,2]}},
+ {"id":"gsibv-vectortile-layer-2632","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1908","title":"橋梁","path":"鉄道-JR以外-橋梁","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[14,14],[16,18]]}}},
+ {"id":"gsibv-vectortile-layer-2633","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1908","title":"橋梁","path":"鉄道-JR以外-橋梁","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-offset":{"stops":[[14,-4],[16,-6]]}}},
+ {"id":"gsibv-vectortile-layer-2634","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1908","title":"橋梁","path":"鉄道-JR以外-橋梁","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-offset":{"stops":[[14,4],[16,6]]}}},
+ {"id":"gsibv-vectortile-layer-2635","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1908","title":"橋梁","path":"鉄道-JR以外-橋梁","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2636","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1918","title":"橋梁","path":"鉄道-地下鉄-橋梁","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[14,14],[16,18]]}}},
+ {"id":"gsibv-vectortile-layer-2637","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1918","title":"橋梁","path":"鉄道-地下鉄-橋梁","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-offset":{"stops":[[14,-4],[16,-6]]}}},
+ {"id":"gsibv-vectortile-layer-2638","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1918","title":"橋梁","path":"鉄道-地下鉄-橋梁","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-offset":{"stops":[[14,4],[16,6]]}}},
+ {"id":"gsibv-vectortile-layer-2639","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1918","title":"橋梁","path":"鉄道-地下鉄-橋梁","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2640","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1744","title":"橋・高架","path":"道路-高速道路-3m未満・その他・不明-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,1.5],[17,4]]}}},
+ {"id":"gsibv-vectortile-layer-2641","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1749","title":"橋・高架","path":"道路-高速道路-3m以上5.5m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,2],[17,12]]}}},
+ {"id":"gsibv-vectortile-layer-2642","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1754","title":"橋・高架","path":"道路-高速道路-5.5m以上13m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,20]]}}},
+ {"id":"gsibv-vectortile-layer-2643","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1759","title":"橋・高架","path":"道路-高速道路-13m以上19.5m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,24]]}}},
+ {"id":"gsibv-vectortile-layer-2644","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1764","title":"橋・高架","path":"道路-高速道路-19.5m以上-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,9],[17,34]]}}},
+ {"id":"gsibv-vectortile-layer-2645","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1831","title":"トンネル","path":"道路-市区町村道・その他-3m未満・その他・不明-トンネル","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2704],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,0.75)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2646","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1832","title":"通常部","path":"道路-市区町村道・その他-3m未満・その他・不明-通常部","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2647","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1834","title":"橋・高架","path":"道路-市区町村道・その他-3m未満・その他・不明-橋・高架","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2648","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1836","title":"トンネル","path":"道路-市区町村道・その他-3m以上5.5m未満-トンネル","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2704],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,0.75)","line-width":1.5}},
+ {"id":"gsibv-vectortile-layer-2649","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1837","title":"通常部","path":"道路-市区町村道・その他-3m以上5.5m未満-通常部","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1.5}},
+ {"id":"gsibv-vectortile-layer-2650","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1839","title":"橋・高架","path":"道路-市区町村道・その他-3m以上5.5m未満-橋・高架","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1.5}},
+ {"id":"gsibv-vectortile-layer-2651","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1841","title":"トンネル","path":"道路-市区町村道・その他-5.5m以上13m未満-トンネル","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2704],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,0.75)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2652","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1842","title":"通常部","path":"道路-市区町村道・その他-5.5m以上13m未満-通常部","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2653","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1844","title":"橋・高架","path":"道路-市区町村道・その他-5.5m以上13m未満-橋・高架","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2654","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1846","title":"トンネル","path":"道路-市区町村道・その他-13m以上19.5m未満-トンネル","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2704],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,0.75)","line-width":2.5}},
+ {"id":"gsibv-vectortile-layer-2655","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1847","title":"通常部","path":"道路-市区町村道・その他-13m以上19.5m未満-通常部","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2.5}},
+ {"id":"gsibv-vectortile-layer-2656","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1849","title":"橋・高架","path":"道路-市区町村道・その他-13m以上19.5m未満-橋・高架","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2.5}},
+ {"id":"gsibv-vectortile-layer-2657","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1851","title":"トンネル","path":"道路-市区町村道・その他-19.5m以上-トンネル","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2704],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,0.75)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2658","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1852","title":"通常部","path":"道路-市区町村道・その他-19.5m以上-通常部","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2659","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1854","title":"橋・高架","path":"道路-市区町村道・その他-19.5m以上-橋・高架","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2660","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1801","title":"トンネル","path":"道路-都道府県道-トンネル","added":1},"minzoom":10,"maxzoom":11,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,0.75)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2661","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1800","title":"通常部","path":"道路-都道府県道-通常部","line-role":"outline","added":1},"minzoom":10,"maxzoom":11,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2662","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1800","title":"通常部","path":"道路-都道府県道-通常部","added":1},"minzoom":10,"maxzoom":11,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2663","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1802","title":"トンネル","path":"道路-都道府県道-3m未満・その他・不明-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,-1]]}}},
+ {"id":"gsibv-vectortile-layer-2664","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1802","title":"トンネル","path":"道路-都道府県道-3m未満・その他・不明-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,1]]}}},
+ {"id":"gsibv-vectortile-layer-2665","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1803","title":"通常部","path":"道路-都道府県道-3m未満・その他・不明-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2666","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1805","title":"橋・高架","path":"道路-都道府県道-3m未満・その他・不明-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2667","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1807","title":"トンネル","path":"道路-都道府県道-3m以上5.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,-1.5]]}}},
+ {"id":"gsibv-vectortile-layer-2668","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1807","title":"トンネル","path":"道路-都道府県道-3m以上5.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,1.5]]}}},
+ {"id":"gsibv-vectortile-layer-2669","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1808","title":"通常部","path":"道路-都道府県道-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2670","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1808","title":"通常部","path":"道路-都道府県道-3m以上5.5m未満-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2671","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1810","title":"橋・高架","path":"道路-都道府県道-3m以上5.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2672","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1810","title":"橋・高架","path":"道路-都道府県道-3m以上5.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2673","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1812","title":"トンネル","path":"道路-都道府県道-5.5m以上13m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[12,0.75]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,-1.5]]}}},
+ {"id":"gsibv-vectortile-layer-2674","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1812","title":"トンネル","path":"道路-都道府県道-5.5m以上13m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[12,0.75]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,1.5]]}}},
+ {"id":"gsibv-vectortile-layer-2675","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1813","title":"通常部","path":"道路-都道府県道-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2676","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1813","title":"通常部","path":"道路-都道府県道-5.5m以上13m未満-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2677","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1815","title":"橋・高架","path":"道路-都道府県道-5.5m以上13m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2678","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1815","title":"橋・高架","path":"道路-都道府県道-5.5m以上13m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2679","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1817","title":"トンネル","path":"道路-都道府県道-13m以上19.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[14,1]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,-2]]}}},
+ {"id":"gsibv-vectortile-layer-2680","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1817","title":"トンネル","path":"道路-都道府県道-13m以上19.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[14,1]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,2]]}}},
+ {"id":"gsibv-vectortile-layer-2681","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1818","title":"通常部","path":"道路-都道府県道-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2682","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1818","title":"通常部","path":"道路-都道府県道-13m以上19.5m未満-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2683","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1820","title":"橋・高架","path":"道路-都道府県道-13m以上19.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":6}},
+ {"id":"gsibv-vectortile-layer-2684","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1820","title":"橋・高架","path":"道路-都道府県道-13m以上19.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2685","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1822","title":"トンネル","path":"道路-都道府県道-19.5m以上-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[14,1]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,-2.75]]}}},
+ {"id":"gsibv-vectortile-layer-2686","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1822","title":"トンネル","path":"道路-都道府県道-19.5m以上-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[14,1]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,2.75]]}}},
+ {"id":"gsibv-vectortile-layer-2687","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1823","title":"通常部","path":"道路-都道府県道-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":6}},
+ {"id":"gsibv-vectortile-layer-2688","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1823","title":"通常部","path":"道路-都道府県道-19.5m以上-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2689","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1825","title":"橋・高架","path":"道路-都道府県道-19.5m以上-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":7}},
+ {"id":"gsibv-vectortile-layer-2690","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1825","title":"橋・高架","path":"道路-都道府県道-19.5m以上-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2691","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1829","title":"通常部(有料)","path":"道路-市区町村道・その他-通常部(有料)","line-role":"outline","added":1},"minzoom":10,"maxzoom":13,"filter":["all",["in","ftCode",2701,2702,2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","tollSect",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2692","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1829","title":"通常部(有料)","path":"道路-市区町村道・その他-通常部(有料)","added":1},"minzoom":10,"maxzoom":13,"filter":["all",["in","ftCode",2701,2702,2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","tollSect",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2693","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1830","title":"トンネル(有料)","path":"道路-市区町村道・その他-トンネル(有料)","added":1},"minzoom":10,"maxzoom":13,"filter":["all",["in","ftCode",2704],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","tollSect",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,0.75)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2694","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1767","title":"徒歩道","path":"道路-国道-徒歩道","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2721,2722,2723,2724],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-dasharray":[6,1]}},
+ {"id":"gsibv-vectortile-layer-2695","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1798","title":"徒歩道","path":"道路-都道府県道-徒歩道","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2721,2722,2723,2724],["==","rdCtg",1],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-dasharray":[6,1]}},
+ {"id":"gsibv-vectortile-layer-2696","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1765","title":"石段","path":"道路-国道-石段","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2731,2732,2733,2734],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2,"line-dasharray":[6,1]}},
+ {"id":"gsibv-vectortile-layer-2697","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1796","title":"石段","path":"道路-都道府県道-石段","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2731,2732,2733,2734],["==","rdCtg",1],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2,"line-dasharray":[6,1]}},
+ {"id":"gsibv-vectortile-layer-2698","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1770","title":"トンネル","path":"道路-国道-トンネル","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[9,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[9,-1.5]]}}},
+ {"id":"gsibv-vectortile-layer-2699","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1770","title":"トンネル","path":"道路-国道-トンネル","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[9,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[9,1.5]]}}},
+ {"id":"gsibv-vectortile-layer-2700","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1769","title":"通常部","path":"道路-国道-通常部","line-role":"outline","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2701","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1769","title":"通常部","path":"道路-国道-通常部","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2702","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1771","title":"トンネル","path":"道路-国道-3m未満・その他・不明-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,-1]]}}},
+ {"id":"gsibv-vectortile-layer-2703","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1771","title":"トンネル","path":"道路-国道-3m未満・その他・不明-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,-1]]}}},
+ {"id":"gsibv-vectortile-layer-2704","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1772","title":"通常部","path":"道路-国道-3m未満・その他・不明-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2705","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1774","title":"橋・高架","path":"道路-国道-3m未満・その他・不明-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2706","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1776","title":"トンネル","path":"道路-国道-3m以上5.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,-1.5]]}}},
+ {"id":"gsibv-vectortile-layer-2707","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1776","title":"トンネル","path":"道路-国道-3m以上5.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,1.5]]}}},
+ {"id":"gsibv-vectortile-layer-2708","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1777","title":"通常部","path":"道路-国道-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2709","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1777","title":"通常部","path":"道路-国道-3m以上5.5m未満-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2710","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1779","title":"橋・高架","path":"道路-国道-3m以上5.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2711","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1779","title":"橋・高架","path":"道路-国道-3m以上5.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2712","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1781","title":"トンネル","path":"道路-国道-5.5m以上13m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[12,0.75]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,-1.5]]}}},
+ {"id":"gsibv-vectortile-layer-2713","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1781","title":"トンネル","path":"道路-国道-5.5m以上13m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[12,0.75]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,1.5]]}}},
+ {"id":"gsibv-vectortile-layer-2714","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1782","title":"通常部","path":"道路-国道-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2715","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1782","title":"通常部","path":"道路-国道-5.5m以上13m未満-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2716","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1784","title":"橋・高架","path":"道路-国道-5.5m以上13m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2717","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1784","title":"橋・高架","path":"道路-国道-5.5m以上13m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2718","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1786","title":"トンネル","path":"道路-国道-13m以上19.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[14,1]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,-2]]}}},
+ {"id":"gsibv-vectortile-layer-2719","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1786","title":"トンネル","path":"道路-国道-13m以上19.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[14,1]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,2]]}}},
+ {"id":"gsibv-vectortile-layer-2720","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1787","title":"通常部","path":"道路-国道-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2721","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1787","title":"通常部","path":"道路-国道-13m以上19.5m未満-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2722","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1789","title":"橋・高架","path":"道路-国道-13m以上19.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":6}},
+ {"id":"gsibv-vectortile-layer-2723","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1789","title":"橋・高架","path":"道路-国道-13m以上19.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2724","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1791","title":"トンネル","path":"道路-国道-19.5m以上-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[14,1]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,-2.75]]}}},
+ {"id":"gsibv-vectortile-layer-2725","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1791","title":"トンネル","path":"道路-国道-19.5m以上-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[14,1]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,2.75]]}}},
+ {"id":"gsibv-vectortile-layer-2726","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1792","title":"通常部","path":"道路-国道-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":6}},
+ {"id":"gsibv-vectortile-layer-2727","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1792","title":"通常部","path":"道路-国道-19.5m以上-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2728","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1794","title":"橋・高架","path":"道路-国道-19.5m以上-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":7}},
+ {"id":"gsibv-vectortile-layer-2729","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1794","title":"橋・高架","path":"道路-国道-19.5m以上-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2730","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1916","title":"トンネル","path":"鉄道-地下鉄-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["any",["==","staCode","0"],["!has","staCode"]],["in","railState",100,300,500,2,3],["any",["all",[">=","rtCode1","40203000000"],["<","rtCode1","40204000000"]],["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2,"line-dasharray":[3,2]}},
+ {"id":"gsibv-vectortile-layer-2731","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1926","title":"索道","path":"鉄道-索道","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],[">=","rtCode1","40206000000"],["<","rtCode1","40207000000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2732","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1923","title":"路面","path":"鉄道-路面","added":1},"minzoom":8,"maxzoom":14,"filter":["all",["in","ftCode",8201],["==","railState",400]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2733","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1905","title":"トンネル","path":"鉄道-JR以外-トンネル","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["==","opeState",0],["in","railState",100,300,500],["any",["all",[">=","rtCode1","40202000000"],["<","rtCode1","40203000000"]],["all",[">=","rtCode1","40205000000"],["<","rtCode1","40206000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-dasharray":[3,2]}},
+ {"id":"gsibv-vectortile-layer-2734","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1906","title":"トンネル","path":"鉄道-JR以外-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["==","opeState",0],["in","railState",100,300,500],["any",["all",[">=","rtCode1","40202000000"],["<","rtCode1","40203000000"]],["all",[">=","rtCode1","40205000000"],["<","rtCode1","40206000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-dasharray":[3,2]}},
+ {"id":"gsibv-vectortile-layer-2735","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1899","title":"単線","path":"鉄道-JR以外-通常部-単線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40202000000"],["<","rtCode1","40203000000"]],["all",[">=","rtCode1","40205000000"],["<","rtCode1","40206000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2736","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1900","title":"単線","path":"鉄道-JR以外-通常部-単線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40202000000"],["<","rtCode1","40203000000"]],["all",[">=","rtCode1","40205000000"],["<","rtCode1","40206000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2737","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1909","title":"運休中","path":"鉄道-JR以外-運休中","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["==","opeState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40202000000"],["<","rtCode1","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2,"line-dasharray":[2,2]}},
+ {"id":"gsibv-vectortile-layer-2738","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1910","title":"運休中","path":"鉄道-JR以外-運休中","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["==","opeState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40202000000"],["<","rtCode1","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2,"line-dasharray":[2,2]}},
+ {"id":"gsibv-vectortile-layer-2739","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1912","title":"単線","path":"鉄道-地下鉄-通常部-単線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["in","railState",0,200],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40203000000"],["<","rtCode1","40204000000"]],["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2740","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1902","title":"複線","path":"鉄道-JR以外-通常部-複線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40202000000"],["<","rtCode1","40203000000"]],["all",[">=","rtCode1","40205000000"],["<","rtCode1","40206000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2741","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1903","title":"複線","path":"鉄道-JR以外-通常部-複線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40202000000"],["<","rtCode1","40203000000"]],["all",[">=","rtCode1","40205000000"],["<","rtCode1","40206000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2742","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1914","title":"複線","path":"鉄道-地下鉄-通常部-複線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["in","railState",0,200],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40203000000"],["<","rtCode1","40204000000"]],["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2743","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1883","title":"トンネル","path":"鉄道-新幹線-トンネル","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","opeState",0],["in","railState",100,300,500],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-dasharray":[3,2]}},
+ {"id":"gsibv-vectortile-layer-2744","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1884","title":"トンネル","path":"鉄道-新幹線-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","opeState",0],["in","railState",100,300,500],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-dasharray":[3,2]}},
+ {"id":"gsibv-vectortile-layer-2745","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1891","title":"トンネル","path":"鉄道-JR-トンネル","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","opeState",0],["in","railState",100,300,500],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-dasharray":[3,2]}},
+ {"id":"gsibv-vectortile-layer-2746","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1892","title":"トンネル","path":"鉄道-JR-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","opeState",0],["in","railState",100,300,500],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-dasharray":[3,2]}},
+ {"id":"gsibv-vectortile-layer-2747","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1879","title":"単線","path":"鉄道-新幹線-通常部-単線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2748","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1879","title":"単線","path":"鉄道-新幹線-通常部-単線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2749","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1879","title":"単線","path":"鉄道-新幹線-通常部-単線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4,"line-dasharray":[2,2]}},
+ {"id":"gsibv-vectortile-layer-2750","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1880","title":"単線","path":"鉄道-新幹線-通常部-単線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2751","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1880","title":"単線","path":"鉄道-新幹線-通常部-単線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2752","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1880","title":"単線","path":"鉄道-新幹線-通常部-単線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4,"line-dasharray":[2,2]}},
+ {"id":"gsibv-vectortile-layer-2753","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1885","title":"単線","path":"鉄道-JR-通常部-単線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2754","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1885","title":"単線","path":"鉄道-JR-通常部-単線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2755","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1885","title":"単線","path":"鉄道-JR-通常部-単線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4,"line-dasharray":[2,2]}},
+ {"id":"gsibv-vectortile-layer-2756","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1886","title":"単線","path":"鉄道-JR-通常部-単線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2757","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1886","title":"単線","path":"鉄道-JR-通常部-単線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2758","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1886","title":"単線","path":"鉄道-JR-通常部-単線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4,"line-dasharray":[2,2]}},
+ {"id":"gsibv-vectortile-layer-2759","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1896","title":"運休中","path":"鉄道-JR-運休中","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","opeState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2760","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1896","title":"運休中","path":"鉄道-JR-運休中","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","opeState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4,"line-dasharray":[2,0.1]}},
+ {"id":"gsibv-vectortile-layer-2761","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1897","title":"運休中","path":"鉄道-JR-運休中","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","opeState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2762","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1897","title":"運休中","path":"鉄道-JR-運休中","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","opeState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4,"line-dasharray":[2,0.1]}},
+ {"id":"gsibv-vectortile-layer-2763","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1881","title":"複線","path":"鉄道-新幹線-通常部-複線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2764","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1881","title":"複線","path":"鉄道-新幹線-通常部-複線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2765","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1881","title":"複線","path":"鉄道-新幹線-通常部-複線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4,"line-dasharray":[2,2,0.1,2]}},
+ {"id":"gsibv-vectortile-layer-2766","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1882","title":"複線","path":"鉄道-新幹線-通常部-複線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2767","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1882","title":"複線","path":"鉄道-新幹線-通常部-複線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2768","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1882","title":"複線","path":"鉄道-新幹線-通常部-複線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4,"line-dasharray":[2,2,0.1,2]}},
+ {"id":"gsibv-vectortile-layer-2769","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1888","title":"複線","path":"鉄道-JR-通常部-複線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2770","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1888","title":"複線","path":"鉄道-JR-通常部-複線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2771","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1888","title":"複線","path":"鉄道-JR-通常部-複線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4,"line-dasharray":[2,2,0.1,2]}},
+ {"id":"gsibv-vectortile-layer-2772","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1889","title":"複線","path":"鉄道-JR-通常部-複線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2773","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1889","title":"複線","path":"鉄道-JR-通常部-複線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2774","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1889","title":"複線","path":"鉄道-JR-通常部-複線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4,"line-dasharray":[2,2,0.1,2]}},
+ {"id":"gsibv-vectortile-layer-2775","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1938","title":"地下駅","path":"鉄道-地下駅","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["has","staCode"],["!=","staCode","0"],["in","railState",100,300,500,2,3]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2776","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1936","title":"駅","path":"鉄道-駅","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["==","railState",0],["has","staCode"],["!=","staCode","0"]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2777","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1738","title":"通常部","path":"道路-高速道路-通常部","line-role":"outline","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",2701],["==","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2778","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1738","title":"通常部","path":"道路-高速道路-通常部","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",2701],["==","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2779","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1739","title":"トンネル","path":"道路-高速道路-トンネル","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",2704],["==","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,0.75)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2780","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1740","title":"トンネル","path":"道路-高速道路-3m未満・その他・不明-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,-1]]}}},
+ {"id":"gsibv-vectortile-layer-2781","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1740","title":"トンネル","path":"道路-高速道路-3m未満・その他・不明-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,1]]}}},
+ {"id":"gsibv-vectortile-layer-2782","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1741","title":"通常部","path":"道路-高速道路-3m未満・その他・不明-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2783","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1743","title":"橋・高架","path":"道路-高速道路-3m未満・その他・不明-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2784","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1745","title":"トンネル","path":"道路-高速道路-3m以上5.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[12,0.5]]},"line-offset":{"stops":[[12,1.5]]},"line-dasharray":[6,6]}},
+ {"id":"gsibv-vectortile-layer-2785","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1745","title":"トンネル","path":"道路-高速道路-3m以上5.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[12,0.5]]},"line-offset":{"stops":[[12,-1.5]]},"line-dasharray":[6,6]}},
+ {"id":"gsibv-vectortile-layer-2786","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1746","title":"通常部","path":"道路-高速道路-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2787","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1746","title":"通常部","path":"道路-高速道路-3m以上5.5m未満-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2788","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1748","title":"橋・高架","path":"道路-高速道路-3m以上5.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2789","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1748","title":"橋・高架","path":"道路-高速道路-3m以上5.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2790","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1750","title":"トンネル","path":"道路-高速道路-5.5m以上13m未満-トンネル","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-dasharray":[6,6],"line-width":{"stops":[[14,0.75]]},"line-offset":{"stops":[[12,-1.5]]}}},
+ {"id":"gsibv-vectortile-layer-2791","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1750","title":"トンネル","path":"道路-高速道路-5.5m以上13m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[14,0.75]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,1.5]]}}},
+ {"id":"gsibv-vectortile-layer-2792","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1751","title":"通常部","path":"道路-高速道路-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2793","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1751","title":"通常部","path":"道路-高速道路-5.5m以上13m未満-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2794","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1753","title":"橋・高架","path":"道路-高速道路-5.5m以上13m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2795","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1753","title":"橋・高架","path":"道路-高速道路-5.5m以上13m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2796","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1755","title":"トンネル","path":"道路-高速道路-13m以上19.5m未満-トンネル","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-dasharray":[4,4],"line-offset":{"stops":[[12,-2]]},"line-width":{"stops":[[14,1]]}}},
+ {"id":"gsibv-vectortile-layer-2797","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1755","title":"トンネル","path":"道路-高速道路-13m以上19.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-offset":{"stops":[[12,2]]},"line-dasharray":[4,4],"line-width":{"stops":[[14,1]]}}},
+ {"id":"gsibv-vectortile-layer-2798","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1756","title":"通常部","path":"道路-高速道路-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2799","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1756","title":"通常部","path":"道路-高速道路-13m以上19.5m未満-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2800","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1758","title":"橋・高架","path":"道路-高速道路-13m以上19.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":6}},
+ {"id":"gsibv-vectortile-layer-2801","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1758","title":"橋・高架","path":"道路-高速道路-13m以上19.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+ {"id":"gsibv-vectortile-layer-2802","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1760","title":"トンネル","path":"道路-高速道路-19.5m以上-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-dasharray":[4,4],"line-width":{"stops":[[14,1]]},"line-offset":{"stops":[[12,2.75]]}}},
+ {"id":"gsibv-vectortile-layer-2803","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1760","title":"トンネル","path":"道路-高速道路-19.5m以上-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-dasharray":[4,4],"line-width":{"stops":[[14,1]]},"line-offset":{"stops":[[12,-2.75]]}}},
+ {"id":"gsibv-vectortile-layer-2804","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1761","title":"通常部","path":"道路-高速道路-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":6}},
+ {"id":"gsibv-vectortile-layer-2805","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1761","title":"通常部","path":"道路-高速道路-19.5m以上-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2806","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1763","title":"橋・高架","path":"道路-高速道路-19.5m以上-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":7}},
+ {"id":"gsibv-vectortile-layer-2807","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1763","title":"橋・高架","path":"道路-高速道路-19.5m以上-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+ {"id":"gsibv-vectortile-layer-2808","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1875","title":"主要な鉄道","path":"鉄道-主要な鉄道","added":1},"minzoom":6,"maxzoom":8,"filter":["all",["in","ftCode",58201]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[6,1],[7,1.5]]}}},
+ {"id":"gsibv-vectortile-layer-2809","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1876","title":"主要な鉄道トンネル","path":"鉄道-主要な鉄道トンネル","added":1},"minzoom":6,"maxzoom":8,"filter":["all",["in","ftCode",58202]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(124,145,196)","line-width":{"stops":[[6,1],[7,1.5]]}}},
+ {"id":"gsibv-vectortile-layer-2810","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1877","title":"新幹線","path":"鉄道-新幹線","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",58203]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[4,0.5],[6,1.5],[7,2.5]]}}},
+ {"id":"gsibv-vectortile-layer-2811","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1878","title":"新幹線トンネル","path":"鉄道-新幹線トンネル","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",58204]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,0.75)","line-width":{"stops":[[4,0.5],[6,1.5],[7,2.5]]}}},
+ {"id":"gsibv-vectortile-layer-2812","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1933","title":"通常部","path":"鉄道-側線-通常部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2841]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2813","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1930","title":"通常部","path":"鉄道-特殊鉄道-通常部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2811]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2814","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1928","title":"索道","path":"鉄道-索道","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2821]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2815","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1928","title":"索道","path":"鉄道-索道","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2821]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-offset":1,"line-dasharray":[1,10]}},
+ {"id":"gsibv-vectortile-layer-2816","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1928","title":"索道","path":"鉄道-索道","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2821]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-offset":-1,"line-dasharray":[1,9]}},
+ {"id":"gsibv-vectortile-layer-2817","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1925","title":"路面","path":"鉄道-路面","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2831]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2818","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1919","title":"通常部","path":"鉄道-普通鉄道-通常部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2801]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2819","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1921","title":"トンネル","path":"鉄道-普通鉄道-トンネル","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2804]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3,"line-dasharray":[8,8]}},
+ {"id":"gsibv-vectortile-layer-2820","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1922","title":"運休中","path":"鉄道-普通鉄道-運休中","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2806]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2821","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1940","title":"地下駅","path":"鉄道-地下駅","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["has","staCode"],["!=","staCode","0"],["in","railState",100,300,500,2,3]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[17,3]]},"line-dasharray":[6,6],"line-offset":{"stops":[[17,-12]]}}},
+ {"id":"gsibv-vectortile-layer-2822","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1940","title":"地下駅","path":"鉄道-地下駅","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["has","staCode"],["!=","staCode","0"],["in","railState",100,300,500,2,3]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-dasharray":[6,6],"line-offset":{"stops":[[17,12]]},"line-width":{"stops":[[17,3]]}}},
+ {"id":"gsibv-vectortile-layer-2823","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1734","title":"主要な道路","path":"道路-主要な道路","added":1},"minzoom":6,"maxzoom":8,"filter":["all",["in","ftCode",52701]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":{"stops":[[6,1],[7,1.5]]}}},
+ {"id":"gsibv-vectortile-layer-2824","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1735","title":"主要な道路トンネル","path":"道路-主要な道路トンネル","added":1},"minzoom":6,"maxzoom":8,"filter":["all",["in","ftCode",52702]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":{"stops":[[6,1],[7,1.5]]}}},
+ {"id":"gsibv-vectortile-layer-2825","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1863","title":"通常部","path":"道路-庭園路-通常部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2221,2251,2224]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2826","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1864","title":"橋・高架","path":"道路-庭園路-橋・高架","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2223]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2827","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1865","title":"通常部","path":"道路-徒歩道-通常部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2721]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2,"line-dasharray":[10,5]}},
+ {"id":"gsibv-vectortile-layer-2828","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1866","title":"雪覆い","path":"道路-徒歩道-雪覆い","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2722]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2829","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1867","title":"橋・高架","path":"道路-徒歩道-橋・高架","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2723]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2830","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1874","title":"トンネル内の道路","path":"道路-トンネル内の道路","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2401,2424]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1,"line-dasharray":[10,8]}},
+ {"id":"gsibv-vectortile-layer-2831","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1856","title":"通常部","path":"道路-通常部-通常部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2201,2241,2204,2244]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+ {"id":"gsibv-vectortile-layer-2832","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1857","title":"橋・高架","path":"道路-通常部-橋・高架","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2203,2243]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2833","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1934","title":"橋・高架","path":"鉄道-側線-橋・高架","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2843]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2834","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1920","title":"橋・高架","path":"鉄道-普通鉄道-橋・高架","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2803]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+ {"id":"gsibv-vectortile-layer-2835","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1931","title":"橋・高架","path":"鉄道-特殊鉄道-橋・高架","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2813]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+ {"id":"gsibv-vectortile-layer-2836","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1736","title":"高速自動車道","path":"道路-高速自動車道","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",52703]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":{"stops":[[4,0.5],[6,1.5],[7,2.5]]}}},
+ {"id":"gsibv-vectortile-layer-2837","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1737","title":"高速自動車道トンネル","path":"道路-高速自動車道トンネル","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",52704]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":{"stops":[[4,0.5],[6,1.5],[7,2.5]]}}},
+ {"id":"gsibv-vectortile-layer-2838","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1712","title":"普通建物","path":"建物-普通建物-普通建物","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3101],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(230,230,250,1)"}},
+ {"id":"gsibv-vectortile-layer-2839","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1714","title":"普通建物(外周線)","path":"建物-普通建物-普通建物(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3101],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":1.5}},
+ {"id":"gsibv-vectortile-layer-2840","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1717","title":"堅ろう建物","path":"建物-堅ろう建物-堅ろう建物","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3102],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(230,230,250,1)"}},
+ {"id":"gsibv-vectortile-layer-2841","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1719","title":"堅ろう建物(外周線)","path":"建物-堅ろう建物-堅ろう建物(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3102],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":1.5}},
+ {"id":"gsibv-vectortile-layer-2842","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1722","title":"高層建物","path":"建物-高層建物-高層建物","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3103],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(230,230,250,1)"}},
+ {"id":"gsibv-vectortile-layer-2843","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1724","title":"高層建物(外周線)","path":"建物-高層建物-高層建物(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3103],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":1.5}},
+ {"id":"gsibv-vectortile-layer-2844","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1726","title":"普通無壁舎","path":"建物-普通無壁舎-普通無壁舎","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3111],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(230,230,250,1)"}},
+ {"id":"gsibv-vectortile-layer-2845","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1728","title":"普通無壁舎(外周線)","path":"建物-普通無壁舎-普通無壁舎(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3111],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":1.5,"line-dasharray":[2,2]}},
+ {"id":"gsibv-vectortile-layer-2846","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1730","title":"堅ろう無壁舎","path":"建物-堅ろう無壁舎-堅ろう無壁舎","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(230,230,250)","added":1,"fill-pattern":"-gsibv-hatch-ltrb-4-255,255,255,1-255,255,255,1"},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3112],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(230,230,250,1)"}},
+ {"id":"gsibv-vectortile-layer-2847","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1732","title":"堅ろう無壁舎(外周線)","path":"建物-堅ろう無壁舎-堅ろう無壁舎(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3112],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":1.5,"line-dasharray":[2,2]}},
+ {"id":"gsibv-vectortile-layer-2848","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2270","title":"人工水路(空間)","path":"河川-人工水路(空間)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5321]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":{"stops":[[9,1],[17,2]]}}},
+ {"id":"gsibv-vectortile-layer-2849","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2270","title":"人工水路(空間)","path":"河川-人工水路(空間)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5321]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":{"stops":[[9,2],[17,3]]}}},
+ {"id":"gsibv-vectortile-layer-2850","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2271","title":"人工水路(空間)","path":"河川-人工水路(空間)","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5321]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,0.5)","line-width":1}}
+ ],"sprite":"https://gsi-cyberjapan.github.io/gsivectortile-mapbox-gl-js/sprite/std","metadata":{"gsimaps-vector-url":"https://maps.gsi.go.jp/vector/#7/36.104611/140.084556/&ls=&disp=&d=l","center":{"lng":140.084556,"lat":36.104611},"zl":7}}
\ No newline at end of file
diff --git a/app/public/base-map/opening.json b/app/public/base-map/opening.json
new file mode 100644
index 0000000..ce471ac
--- /dev/null
+++ b/app/public/base-map/opening.json
@@ -0,0 +1,482 @@
+{"version":8,"glyphs":"https://maps.gsi.go.jp/xyz/noto-jp/{fontstack}/{range}.pbf","sources":{"gsibv-vectortile-source-1-4-16":{"type":"vector","tiles":["https://cyberjapandata.gsi.go.jp/xyz/experimental_bvmap/{z}/{x}/{y}.pbf"],"minzoom":4,"maxzoom":16,"attribution":"地理院地図Vector(仮称) "}},"layers":[
+{"id":"background","type":"background","paint":{"background-color":"#463C64" }},{"id":"gsibv-vectortile-layer-2302","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1695","title":"坑口","path":"構造物-坑口","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",4202]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1.5}},
+{"id":"gsibv-vectortile-layer-2303","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2272","title":"人工水路(地下)","path":"河川-人工水路(地下)","added":1},"minzoom":8,"maxzoom":14,"filter":["all",["in","ftCode",5322]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(85,75,115)","line-width":{"stops":[[9,1],[17,2]]},"line-dasharray":[2,2]}},
+{"id":"gsibv-vectortile-layer-2304","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2273","title":"人工水路(地下)","path":"河川-人工水路(地下)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5322]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[9,1],[17,2]]},"line-dasharray":[5,4]}},
+{"id":"gsibv-vectortile-layer-2305","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2267","title":"枯れ川部","path":"河川-枯れ川部","added":1},"minzoom":8,"maxzoom":14,"filter":["all",["in","ftCode",5302]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(85,75,115)","line-width":{"stops":[[9,1],[17,2]]},"line-dasharray":[2,2]}},
+{"id":"gsibv-vectortile-layer-2306","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2268","title":"枯れ川部","path":"河川-枯れ川部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5302]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[9,1],[17,2]]}}},
+{"id":"gsibv-vectortile-layer-2307","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2269","title":"枯れ川部","path":"河川-枯れ川部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5302]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2308","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"waterarea","metadata":{"layer-id":"layer-1650","title":"水域","path":"水域","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",55000]],"layout":{"visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2309","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"waterarea","metadata":{"layer-id":"layer-1650","title":"水域","path":"水域","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",55000]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgb(85,75,115)"}},
+{"id":"gsibv-vectortile-layer-2310","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"waterarea","metadata":{"layer-id":"layer-1651","title":"水域","path":"水域","added":1},"minzoom":8,"maxzoom":17,"filter":["all",["in","ftCode",5000]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgb(85,75,115)"}},
+{"id":"gsibv-vectortile-layer-2313","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"lake","metadata":{"layer-id":"layer-2274","title":"通常部","path":"湖池-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5231]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":0.5}},
+{"id":"gsibv-vectortile-layer-2314","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"lake","metadata":{"layer-id":"layer-2275","title":"通常部","path":"湖池-通常部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5231]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":0.5}},
+{"id":"gsibv-vectortile-layer-2315","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"lake","metadata":{"layer-id":"layer-2276","title":"岩等に接する部分","path":"湖池-岩等に接する部分","added":1},"minzoom":14,"maxzoom":18,"filter":["all",["in","ftCode",5232]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2316","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"lake","metadata":{"layer-id":"layer-2277","title":"堤防等に接する部分","path":"湖池-堤防等に接する部分","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5233]],"layout":{"line-cap":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1.5,"line-dasharray":[0.2,4]}},
+{"id":"gsibv-vectortile-layer-2317","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"lake","metadata":{"layer-id":"layer-2277","title":"堤防等に接する部分","path":"湖池-堤防等に接する部分","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5233]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-offset":-1}},
+{"id":"gsibv-vectortile-layer-2318","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"lake","metadata":{"layer-id":"layer-2278","title":"堤防等に接する部分","path":"湖池-堤防等に接する部分","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5233]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2319","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2263","title":"岩等に接する部分","path":"河川-岩等に接する部分","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5202]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":0.5}},
+{"id":"gsibv-vectortile-layer-2320","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2264","title":"岩等に接する部分","path":"河川-岩等に接する部分","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5202]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2321","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2265","title":"堤防等に接する部分","path":"河川-堤防等に接する部分","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5203]],"layout":{"line-cap":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1.5,"line-dasharray":[0.2,4]}},
+{"id":"gsibv-vectortile-layer-2322","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2265","title":"堤防等に接する部分","path":"河川-堤防等に接する部分","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5203]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-offset":-1}},
+{"id":"gsibv-vectortile-layer-2323","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2266","title":"堤防等に接する部分","path":"河川-堤防等に接する部分","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5203]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2326","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2260","title":"通常部","path":"河川-通常部","added":1},"minzoom":8,"maxzoom":14,"filter":["all",["in","ftCode",5301]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(85,75,115,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2327","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2261","title":"通常部","path":"河川-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5201,5301]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":0.5}},
+{"id":"gsibv-vectortile-layer-2328","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2262","title":"通常部","path":"河川-通常部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5201,5301]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2329","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2256","title":"河川幅(大)","path":"河川-河川幅(大)","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",55301]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(231,231,231,1)","line-width":{"stops":[[4,1],[6,2],[7,2.5]]}}},
+{"id":"gsibv-vectortile-layer-2330","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2257","title":"河川幅(中)","path":"河川-河川幅(中)","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",55302]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(231,231,231,1)","line-width":{"stops":[[4,0.5],[6,1.5],[7,2]]}}},
+{"id":"gsibv-vectortile-layer-2331","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2258","title":"河川幅(小)","path":"河川-河川幅(小)","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",55303]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(231,231,231,1)","line-width":{"stops":[[4,0.2],[6,1],[7,1.5]]}}},
+{"id":"gsibv-vectortile-layer-2332","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2259","title":"河川幅(極小)","path":"河川-河川幅(極小)","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",55304]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(231,231,231,1)","line-width":{"stops":[[4,0.1],[6,0.5],[7,1]]}}},
+{"id":"gsibv-vectortile-layer-2333","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"coastline","metadata":{"layer-id":"layer-2251","title":"通常部","path":"海岸線-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5101]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":0.5}},
+{"id":"gsibv-vectortile-layer-2334","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"coastline","metadata":{"layer-id":"layer-2252","title":"通常部","path":"海岸線-通常部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5101]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":0.5}},
+{"id":"gsibv-vectortile-layer-2335","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"coastline","metadata":{"layer-id":"layer-2253","title":"岩等に接する部分","path":"海岸線-岩等に接する部分","added":1},"minzoom":14,"maxzoom":18,"filter":["all",["in","ftCode",5102]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":0.5}},
+{"id":"gsibv-vectortile-layer-2336","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"coastline","metadata":{"layer-id":"layer-2254","title":"堤防等に接する部分","path":"海岸線-堤防等に接する部分","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5103]],"layout":{"line-cap":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1.5,"line-dasharray":[0.2,4]}},
+{"id":"gsibv-vectortile-layer-2337","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"coastline","metadata":{"layer-id":"layer-2254","title":"堤防等に接する部分","path":"海岸線-堤防等に接する部分","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5103]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-offset":-1}},
+{"id":"gsibv-vectortile-layer-2338","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"coastline","metadata":{"layer-id":"layer-2255","title":"堤防等に接する部分","path":"海岸線-堤防等に接する部分","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5103]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1.5,"line-dasharray":[0.2,4]}},
+{"id":"gsibv-vectortile-layer-2339","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"coastline","metadata":{"layer-id":"layer-2255","title":"堤防等に接する部分","path":"海岸線-堤防等に接する部分","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5103]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-offset":-1}},
+{"id":"gsibv-vectortile-layer-2340","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"coastline","metadata":{"layer-id":"layer-2250","title":"海岸線","path":"海岸線-海岸線","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",55101]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(110,110,110,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2386","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1704","title":"送電線","path":"構造物-送電線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8202]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":0.5}},
+{"id":"gsibv-vectortile-layer-2387","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1704","title":"送電線","path":"構造物-送電線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8202]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2,"line-dasharray":[0.5,15],"line-offset":-3}},
+{"id":"gsibv-vectortile-layer-2388","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1704","title":"送電線","path":"構造物-送電線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8202]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2,"line-dasharray":[0.5,15],"line-offset":3}},
+{"id":"gsibv-vectortile-layer-2389","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"wstructurea","metadata":{"layer-id":"layer-1692","title":"ダム(面)","path":"構造物-ダム(面)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5401],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2390","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"wstructurea","metadata":{"layer-id":"layer-1692","title":"ダム(面)","path":"構造物-ダム(面)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5401],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2391","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"wstructurea","metadata":{"layer-id":"layer-1693","title":"桟橋(面)","path":"構造物-桟橋(面)","added":1},"minzoom":8,"maxzoom":17,"filter":["all",["in","ftCode",5411]],"layout":{"visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,0)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2392","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"wstructurea","metadata":{"layer-id":"layer-1693","title":"桟橋(面)","path":"構造物-桟橋(面)","added":1},"minzoom":8,"maxzoom":17,"filter":["all",["in","ftCode",5411]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2393","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurea","metadata":{"layer-id":"layer-1690","title":"タンク","path":"構造物-タンク","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(70,60,100)","added":1},"minzoom":13,"maxzoom":17,"filter":["all",["in","ftCode",4302]],"layout":{"visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":3,"line-dasharray":[2,1]}},
+{"id":"gsibv-vectortile-layer-2394","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurea","metadata":{"layer-id":"layer-1690","title":"タンク","path":"構造物-タンク","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(70,60,100)","added":1,"fill-pattern":"-gsibv-hatch-ltrb-4-255,255,255,1-255,255,255,1"},"minzoom":13,"maxzoom":17,"filter":["all",["in","ftCode",4302]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2395","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurea","metadata":{"layer-id":"layer-1691","title":"タンク","path":"構造物-タンク","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(70,60,100)","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",4302]],"layout":{"visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":3,"line-dasharray":[2,1]}},
+{"id":"gsibv-vectortile-layer-2396","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurea","metadata":{"layer-id":"layer-1691","title":"タンク","path":"構造物-タンク","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(70,60,100)","added":1,"fill-pattern":"-gsibv-hatch-ltrb-4-255,255,255,1-255,255,255,1"},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",4302]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2397","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurea","metadata":{"layer-id":"layer-1688","title":"巨大構造物","path":"構造物-巨大構造物","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(70,60,100)","added":1},"minzoom":13,"maxzoom":17,"filter":["all",["in","ftCode",4301]],"layout":{"visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":3,"line-dasharray":[2,1]}},
+{"id":"gsibv-vectortile-layer-2398","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurea","metadata":{"layer-id":"layer-1688","title":"巨大構造物","path":"構造物-巨大構造物","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(70,60,100)","added":1,"fill-pattern":"-gsibv-hatch-ltrb-4-255,255,255,1-255,255,255,1"},"minzoom":13,"maxzoom":17,"filter":["all",["in","ftCode",4301]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2399","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurea","metadata":{"layer-id":"layer-1689","title":"巨大構造物","path":"構造物-巨大構造物","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(70,60,100)","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",4301]],"layout":{"visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":3,"line-dasharray":[2,1]}},
+{"id":"gsibv-vectortile-layer-2400","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurea","metadata":{"layer-id":"layer-1689","title":"巨大構造物","path":"構造物-巨大構造物","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(70,60,100)","added":1,"fill-pattern":"-gsibv-hatch-ltrb-4-255,255,255,1-255,255,255,1"},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",4301]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2419","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"searoute","metadata":{"layer-id":"layer-2248","title":"水上・海上交通 船舶","path":"航路-水上・海上交通 船舶","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5901]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2420","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"searoute","metadata":{"layer-id":"layer-2249","title":"水上・海上交通 航路の軌跡","path":"航路-水上・海上交通 航路の軌跡","added":1},"minzoom":8,"maxzoom":17,"filter":["all",["in","ftCode",5902]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-dasharray":[6,6]}},
+{"id":"gsibv-vectortile-layer-2421","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"searoute","metadata":{"layer-id":"layer-2247","title":"航路","path":"航路-航路","added":1},"minzoom":6,"maxzoom":8,"filter":["all",["in","ftCode",55902]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1.5,"line-dasharray":[10,10]}},
+{"id":"gsibv-vectortile-layer-2422","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"boundary","metadata":{"layer-id":"layer-2243","title":"特定地区界","path":"境界-特定地区界-特定地区界","added":1},"minzoom":12,"maxzoom":14,"filter":["all",["in","ftCode",6101]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(100, 100, 100,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2423","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"boundary","metadata":{"layer-id":"layer-2244","title":"特定地区界","path":"境界-特定地区界-特定地区界","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",6101]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(100, 100, 100,1)","line-width":1,"line-dasharray":[3,1]}},
+{"id":"gsibv-vectortile-layer-2424","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"boundary","metadata":{"layer-id":"layer-2245","title":"特定地区界","path":"境界-特定地区界-特定地区界","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",6101]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2,"line-dasharray":[10,3]}},
+{"id":"gsibv-vectortile-layer-2425","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"boundary","metadata":{"layer-id":"layer-2246","title":"その他の特定地区界","path":"境界-特定地区界-その他の特定地区界","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",6111]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(100, 100, 100,1)","line-width":1,"line-dasharray":[3,1]}},
+{"id":"gsibv-vectortile-layer-2428","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1694","title":"高塔","path":"構造物-高塔","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",4201]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1.5}},
+{"id":"gsibv-vectortile-layer-2429","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1696","title":"ダム(線)","path":"構造物-ダム(線)","added":1},"minzoom":11,"maxzoom":17,"filter":["all",["in","ftCode",5501],["==","$type","LineString"],["==","orgGILvl","25000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2430","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1697","title":"桟橋(線)","path":"構造物-桟橋(線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5511]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2431","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1698","title":"せき","path":"構造物-せき","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5514],["==","orgGILvl","25000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2,"line-offset":0}},
+{"id":"gsibv-vectortile-layer-2432","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1698","title":"せき","path":"構造物-せき","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5514],["==","orgGILvl","25000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-dasharray":[4,2],"line-offset":6}},
+{"id":"gsibv-vectortile-layer-2433","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1699","title":"せき","path":"構造物-せき","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5514],["==","orgGILvl","2500"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2434","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1700","title":"水門","path":"構造物-水門","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5515],["==","orgGILvl","25000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3.5}},
+{"id":"gsibv-vectortile-layer-2435","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1701","title":"水門","path":"構造物-水門","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5575],["==","orgGILvl","2500"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2436","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1702","title":"透過水制","path":"構造物-透過水制","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5532],["==","orgGILvl","25000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-dasharray":[2,2]}},
+{"id":"gsibv-vectortile-layer-2437","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1703","title":"河川トンネル口","path":"構造物-河川トンネル口","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5551],["==","orgGILvl","25000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2438","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1705","title":"ダム","path":"構造物-ダム","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5501],["==","orgGILvl","2500"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2439","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1706","title":"砂防ダム","path":"構造物-砂防ダム","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5502]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2440","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1707","title":"桟橋(鉄、コンクリート)","path":"構造物-桟橋(鉄、コンクリート)","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5571]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2441","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1708","title":"被覆","path":"構造物-被覆","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5572]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2442","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1709","title":"防波堤","path":"構造物-防波堤","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5563]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2443","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1710","title":"敷石斜坂","path":"構造物-敷石斜坂","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5576]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2444","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"structurel","metadata":{"layer-id":"layer-1711","title":"雨水桝","path":"構造物-雨水桝","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5541]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2445","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1713","title":"普通建物","path":"建物-普通建物-普通建物","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3101],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2446","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1715","title":"普通建物(外周線)","path":"建物-普通建物-普通建物(外周線)","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3101],["==","$type","LineString"]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2447","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1716","title":"堅ろう建物","path":"建物-堅ろう建物-堅ろう建物","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",3102],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2448","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1716","title":"堅ろう建物","path":"建物-堅ろう建物-堅ろう建物","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",3102],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,0)"}},
+{"id":"gsibv-vectortile-layer-2449","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1718","title":"堅ろう建物","path":"建物-堅ろう建物-堅ろう建物","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3102],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2450","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1720","title":"堅ろう建物(外周線)","path":"建物-堅ろう建物-堅ろう建物(外周線)","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3102],["==","$type","LineString"]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":2.5}},
+{"id":"gsibv-vectortile-layer-2451","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1721","title":"高層建物","path":"建物-高層建物-高層建物","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",3103],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2452","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1721","title":"高層建物","path":"建物-高層建物-高層建物","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",3103],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,0)"}},
+{"id":"gsibv-vectortile-layer-2453","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1723","title":"高層建物","path":"建物-高層建物-高層建物","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3103],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2454","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1725","title":"高層建物(外周線)","path":"建物-高層建物-高層建物(外周線)","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3103],["==","$type","LineString"]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":2.5}},
+{"id":"gsibv-vectortile-layer-2455","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1727","title":"普通無壁舎","path":"建物-普通無壁舎-普通無壁舎","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3111],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2456","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1729","title":"普通無壁舎(外周線)","path":"建物-普通無壁舎-普通無壁舎(外周線)","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3111],["==","$type","LineString"]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":1.5,"line-dasharray":[4,4]}},
+{"id":"gsibv-vectortile-layer-2457","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1731","title":"堅ろう無壁舎","path":"建物-堅ろう無壁舎-堅ろう無壁舎","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(70,60,100)","added":1,"fill-pattern":"-gsibv-hatch-ltrb-4-255,255,255,1-255,255,255,0"},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3112],["==","$type","Polygon"]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2458","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1733","title":"堅ろう無壁舎(外周線)","path":"建物-堅ろう無壁舎-堅ろう無壁舎(外周線)","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",3112],["==","$type","LineString"]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":1.5,"line-dasharray":[4,4]}},
+{"id":"gsibv-vectortile-layer-2459","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1712","title":"普通建物","path":"建物-普通建物-普通建物","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3101],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2460","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1714","title":"普通建物(外周線)","path":"建物-普通建物-普通建物(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3101],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":1.5}},
+{"id":"gsibv-vectortile-layer-2461","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1717","title":"堅ろう建物","path":"建物-堅ろう建物-堅ろう建物","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3102],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2462","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1719","title":"堅ろう建物(外周線)","path":"建物-堅ろう建物-堅ろう建物(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3102],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":1.5}},
+{"id":"gsibv-vectortile-layer-2463","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1722","title":"高層建物","path":"建物-高層建物-高層建物","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3103],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2464","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1724","title":"高層建物(外周線)","path":"建物-高層建物-高層建物(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3103],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":1.5}},
+{"id":"gsibv-vectortile-layer-2465","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1726","title":"普通無壁舎","path":"建物-普通無壁舎-普通無壁舎","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3111],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2466","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1728","title":"普通無壁舎(外周線)","path":"建物-普通無壁舎-普通無壁舎(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3111],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":1.5,"line-dasharray":[2,2]}},
+{"id":"gsibv-vectortile-layer-2467","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1730","title":"堅ろう無壁舎","path":"建物-堅ろう無壁舎-堅ろう無壁舎","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(70,60,100)","added":1,"fill-pattern":"-gsibv-hatch-ltrb-4-255,255,255,1-255,255,255,1"},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3112],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2468","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1732","title":"堅ろう無壁舎(外周線)","path":"建物-堅ろう無壁舎-堅ろう無壁舎(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["any",["==","lvOrder",0],["!has","lvOrder"]],["all",["in","ftCode",3112],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":1.5,"line-dasharray":[2,2]}},
+{"id":"gsibv-vectortile-layer-2469","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"boundary","metadata":{"layer-id":"layer-2240","title":"都府県界及び北海道総合振興局・振興局界","path":"境界-行政界-都府県界及び北海道総合振興局・振興局界","added":1},"minzoom":8,"maxzoom":17,"filter":["all",["in","ftCode",1211]],"layout":{"line-cap":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2.5,"line-dasharray":[7,5,0.1,5]}},
+{"id":"gsibv-vectortile-layer-2470","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"boundary","metadata":{"layer-id":"layer-2241","title":"市区町村界","path":"境界-行政界-市区町村界","added":1},"minzoom":11,"maxzoom":17,"filter":["all",["in","ftCode",1212]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1.5,"line-dasharray":[6,2,1,2,1,2]}},
+{"id":"gsibv-vectortile-layer-2471","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"boundary","metadata":{"layer-id":"layer-2242","title":"所属界(所属を明示する境界線)","path":"境界-行政界-所属界(所属を明示する境界線)","added":1},"minzoom":11,"maxzoom":17,"filter":["all",["in","ftCode",1221]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1.5,"line-dasharray":[4,1,1,5]}},
+{"id":"gsibv-vectortile-layer-2472","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"boundary","metadata":{"layer-id":"layer-2238","title":"地方界","path":"境界-行政界-地方界","added":1},"minzoom":6,"maxzoom":8,"filter":["all",["in","ftCode",51212]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":1,"line-dasharray":[10,2,1,2]}},
+{"id":"gsibv-vectortile-layer-2473","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"boundary","metadata":{"layer-id":"layer-2239","title":"国の所属界","path":"境界-行政界-国の所属界","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",51221]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(34,24,21)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2474","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1829","title":"通常部(有料)","path":"道路-市区町村道・その他-通常部(有料)","line-role":"outline","added":1},"minzoom":10,"maxzoom":13,"filter":["all",["in","ftCode",2701,2702,2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","tollSect",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2475","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1800","title":"通常部","path":"道路-都道府県道-通常部","line-role":"outline","added":1},"minzoom":10,"maxzoom":11,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2476","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1808","title":"通常部","path":"道路-都道府県道-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2477","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1813","title":"通常部","path":"道路-都道府県道-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2478","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1818","title":"通常部","path":"道路-都道府県道-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2479","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1823","title":"通常部","path":"道路-都道府県道-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":6}},
+{"id":"gsibv-vectortile-layer-2480","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1769","title":"通常部","path":"道路-国道-通常部","line-role":"outline","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2481","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1777","title":"通常部","path":"道路-国道-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2482","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1782","title":"通常部","path":"道路-国道-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2483","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1787","title":"通常部","path":"道路-国道-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2484","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1792","title":"通常部","path":"道路-国道-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":6}},
+{"id":"gsibv-vectortile-layer-2485","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1738","title":"通常部","path":"道路-高速道路-通常部","line-role":"outline","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",2701],["==","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2486","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1746","title":"通常部","path":"道路-高速道路-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2487","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1750","title":"トンネル","path":"道路-高速道路-5.5m以上13m未満-トンネル","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-dasharray":[6,6],"line-width":{"stops":[[14,0.75]]},"line-offset":{"stops":[[12,-1.5]]}}},
+{"id":"gsibv-vectortile-layer-2488","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1751","title":"通常部","path":"道路-高速道路-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2489","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1755","title":"トンネル","path":"道路-高速道路-13m以上19.5m未満-トンネル","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-dasharray":[4,4],"line-offset":{"stops":[[12,-2]]},"line-width":{"stops":[[14,1]]}}},
+{"id":"gsibv-vectortile-layer-2490","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1756","title":"通常部","path":"道路-高速道路-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2491","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1761","title":"通常部","path":"道路-高速道路-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":6}},
+{"id":"gsibv-vectortile-layer-2492","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1833","title":"通常部","path":"道路-市区町村道・その他-3m未満・その他・不明-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,1.5],[17,4]]}}},
+{"id":"gsibv-vectortile-layer-2493","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1838","title":"通常部","path":"道路-市区町村道・その他-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,3],[17,14]]}}},
+{"id":"gsibv-vectortile-layer-2494","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1843","title":"通常部","path":"道路-市区町村道・その他-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,4],[17,22]]}}},
+{"id":"gsibv-vectortile-layer-2495","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1848","title":"通常部","path":"道路-市区町村道・その他-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,5],[17,25]]}}},
+{"id":"gsibv-vectortile-layer-2496","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1853","title":"通常部","path":"道路-市区町村道・その他-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,10],[17,36]]}}},
+{"id":"gsibv-vectortile-layer-2497","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1858","title":"3m未満・その他・不明","path":"道路-庭園路-3m未満・その他・不明","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,2],[17,6]]},"line-dasharray":[1.5,0.3]}},
+{"id":"gsibv-vectortile-layer-2498","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1859","title":"3m以上5.5m未満","path":"道路-庭園路-3m以上5.5m未満","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,3],[17,9]]},"line-dasharray":[1.5,0.3]}},
+{"id":"gsibv-vectortile-layer-2499","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1860","title":"5.5m以上13m未満","path":"道路-庭園路-5.5m以上13m未満","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,4],[17,13]]},"line-dasharray":[1.5,0.3]}},
+{"id":"gsibv-vectortile-layer-2500","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1861","title":"13m以上19.5m未満","path":"道路-庭園路-13m以上19.5m未満","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,5],[17,17]]},"line-dasharray":[1.5,0.3]}},
+{"id":"gsibv-vectortile-layer-2501","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1862","title":"19.5m以上","path":"道路-庭園路-19.5m以上","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,6],[17,21]]},"line-dasharray":[1.5,0.3]}},
+{"id":"gsibv-vectortile-layer-2502","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1809","title":"通常部","path":"道路-都道府県道-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,3],[17,14]]}}},
+{"id":"gsibv-vectortile-layer-2503","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1814","title":"通常部","path":"道路-都道府県道-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,4],[17,22]]}}},
+{"id":"gsibv-vectortile-layer-2504","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1819","title":"通常部","path":"道路-都道府県道-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,5],[17,25]]}}},
+{"id":"gsibv-vectortile-layer-2505","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1824","title":"通常部","path":"道路-都道府県道-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,10],[17,36]]}}},
+{"id":"gsibv-vectortile-layer-2506","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1778","title":"通常部","path":"道路-国道-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,3],[17,14]]}}},
+{"id":"gsibv-vectortile-layer-2507","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1783","title":"通常部","path":"道路-国道-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,4],[17,22]]}}},
+{"id":"gsibv-vectortile-layer-2508","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1788","title":"通常部","path":"道路-国道-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,5],[17,25]]}}},
+{"id":"gsibv-vectortile-layer-2509","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1793","title":"通常部","path":"道路-国道-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,10],[17,36]]}}},
+{"id":"gsibv-vectortile-layer-2510","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1747","title":"通常部","path":"道路-高速道路-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,3],[17,14]]}}},
+{"id":"gsibv-vectortile-layer-2511","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1752","title":"通常部","path":"道路-高速道路-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,4],[17,22]]}}},
+{"id":"gsibv-vectortile-layer-2512","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1757","title":"通常部","path":"道路-高速道路-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,5],[17,25]]}}},
+{"id":"gsibv-vectortile-layer-2513","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1762","title":"通常部","path":"道路-高速道路-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,10],[17,36]]}}},
+{"id":"gsibv-vectortile-layer-2514","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1768","title":"徒歩道","path":"道路-国道-徒歩道","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2721,2722,2723,2724],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(160,160,160,1)","line-width":{"stops":[[11,1],[15,1],[17,4]]},"line-dasharray":[6,1]}},
+{"id":"gsibv-vectortile-layer-2515","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1799","title":"徒歩道","path":"道路-都道府県道-徒歩道","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2721,2722,2723,2724],["==","rdCtg",1],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(160,160,160,1)","line-width":{"stops":[[11,1],[15,1],[17,4]]},"line-dasharray":[6,1]}},
+{"id":"gsibv-vectortile-layer-2516","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1828","title":"徒歩道","path":"道路-市区町村道・その他-徒歩道","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2721,2722,2723,2724],["in","rdCtg",2,5,6],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[11,1],[15,1],[17,4]]},"line-dasharray":[6,1]}},
+{"id":"gsibv-vectortile-layer-2517","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1838","title":"通常部","path":"道路-市区町村道・その他-3m以上5.5m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,2],[17,12]]}}},
+{"id":"gsibv-vectortile-layer-2518","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1873","title":"雪覆い","path":"道路-雪覆い","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2702,2712,2722]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(200,200,200,1)","line-width":{"stops":[[15,3],[17,20]]}}},
+{"id":"gsibv-vectortile-layer-2519","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1843","title":"通常部","path":"道路-市区町村道・その他-5.5m以上13m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,20]]}}},
+{"id":"gsibv-vectortile-layer-2520","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1848","title":"通常部","path":"道路-市区町村道・その他-13m以上19.5m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,24]]}}},
+{"id":"gsibv-vectortile-layer-2521","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1853","title":"通常部","path":"道路-市区町村道・その他-19.5m以上-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,9],[17,34]]}}},
+{"id":"gsibv-vectortile-layer-2522","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1766","title":"石段","path":"道路-国道-石段","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2731,2732,2733,2734],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":6}},
+{"id":"gsibv-vectortile-layer-2523","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1766","title":"石段","path":"道路-国道-石段","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2731,2732,2733,2734],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5,"line-dasharray":[1,0.1]}},
+{"id":"gsibv-vectortile-layer-2524","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1797","title":"石段","path":"道路-都道府県道-石段","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2731,2732,2733,2734],["==","rdCtg",1],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":6}},
+{"id":"gsibv-vectortile-layer-2525","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1797","title":"石段","path":"道路-都道府県道-石段","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2731,2732,2733,2734],["==","rdCtg",1],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5,"line-dasharray":[1,0.1]}},
+{"id":"gsibv-vectortile-layer-2526","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1827","title":"石段","path":"道路-市区町村道・その他-石段","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2731,2732,2733,2734],["in","rdCtg",2,5,6],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":6}},
+{"id":"gsibv-vectortile-layer-2527","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1827","title":"石段","path":"道路-市区町村道・その他-石段","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2731,2732,2733,2734],["in","rdCtg",2,5,6],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5,"line-dasharray":[1,0.1]}},
+{"id":"gsibv-vectortile-layer-2528","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1858","title":"3m未満・その他・不明","path":"道路-庭園路-3m未満・その他・不明","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,1],[17,5]]}}},
+{"id":"gsibv-vectortile-layer-2529","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1859","title":"3m以上5.5m未満","path":"道路-庭園路-3m以上5.5m未満","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,2],[17,8]]}}},
+{"id":"gsibv-vectortile-layer-2530","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1860","title":"5.5m以上13m未満","path":"道路-庭園路-5.5m以上13m未満","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,12]]}}},
+{"id":"gsibv-vectortile-layer-2531","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1861","title":"13m以上19.5m未満","path":"道路-庭園路-13m以上19.5m未満","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,16]]}}},
+{"id":"gsibv-vectortile-layer-2532","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1862","title":"19.5m以上","path":"道路-庭園路-19.5m以上","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2711,2713,2714],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,5],[17,20]]}}},
+{"id":"gsibv-vectortile-layer-2533","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1868","title":"3m未満・その他・不明","path":"道路-トンネル内の道路-3m未満・その他・不明","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,1],[17,2.5]]}}},
+{"id":"gsibv-vectortile-layer-2534","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1868","title":"3m未満・その他・不明","path":"道路-トンネル内の道路-3m未満・その他・不明","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,-1],[17,-2.5]]}}},
+{"id":"gsibv-vectortile-layer-2535","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1869","title":"3m以上5.5m未満","path":"道路-トンネル内の道路-3m以上5.5m未満","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,1.5],[17,7]]}}},
+{"id":"gsibv-vectortile-layer-2536","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1869","title":"3m以上5.5m未満","path":"道路-トンネル内の道路-3m以上5.5m未満","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,-1.5],[17,-7]]}}},
+{"id":"gsibv-vectortile-layer-2537","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1870","title":"5.5m以上13m未満","path":"道路-トンネル内の道路-5.5m以上13m未満","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,2],[17,11]]}}},
+{"id":"gsibv-vectortile-layer-2538","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1870","title":"5.5m以上13m未満","path":"道路-トンネル内の道路-5.5m以上13m未満","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,-2],[17,-11]]}}},
+{"id":"gsibv-vectortile-layer-2539","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1871","title":"13m以上19.5m未満","path":"道路-トンネル内の道路-13m以上19.5m未満","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,2.5],[17,12.5]]}}},
+{"id":"gsibv-vectortile-layer-2540","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1871","title":"13m以上19.5m未満","path":"道路-トンネル内の道路-13m以上19.5m未満","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,-2.5],[17,-12.5]]}}},
+{"id":"gsibv-vectortile-layer-2541","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1872","title":"19.5m以上","path":"道路-トンネル内の道路-19.5m以上","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,5],[17,18]]}}},
+{"id":"gsibv-vectortile-layer-2542","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1872","title":"19.5m以上","path":"道路-トンネル内の道路-19.5m以上","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2704],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-dasharray":[10,8],"line-width":0.5,"line-offset":{"stops":[[15,-5],[17,-18]]}}},
+{"id":"gsibv-vectortile-layer-2543","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1804","title":"通常部","path":"道路-都道府県道-3m未満・その他・不明-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,1.5],[17,4]]}}},
+{"id":"gsibv-vectortile-layer-2544","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1809","title":"通常部","path":"道路-都道府県道-3m以上5.5m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,2],[17,12]]}}},
+{"id":"gsibv-vectortile-layer-2545","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1814","title":"通常部","path":"道路-都道府県道-5.5m以上13m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,20]]}}},
+{"id":"gsibv-vectortile-layer-2546","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1819","title":"通常部","path":"道路-都道府県道-13m以上19.5m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,24]]}}},
+{"id":"gsibv-vectortile-layer-2547","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1824","title":"通常部","path":"道路-都道府県道-19.5m以上-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,9],[17,34]]}}},
+{"id":"gsibv-vectortile-layer-2548","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1773","title":"通常部","path":"道路-国道-3m未満・その他・不明-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,1.5],[17,4]]}}},
+{"id":"gsibv-vectortile-layer-2549","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1778","title":"通常部","path":"道路-国道-3m以上5.5m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,2],[17,12]]}}},
+{"id":"gsibv-vectortile-layer-2550","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1783","title":"通常部","path":"道路-国道-5.5m以上13m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,20]]}}},
+{"id":"gsibv-vectortile-layer-2551","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1788","title":"通常部","path":"道路-国道-13m以上19.5m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,24]]}}},
+{"id":"gsibv-vectortile-layer-2552","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1793","title":"通常部","path":"道路-国道-19.5m以上-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,9],[17,34]]}}},
+{"id":"gsibv-vectortile-layer-2553","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1917","title":"トンネル","path":"鉄道-地下鉄-トンネル","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["any",["==","staCode","0"],["!has","staCode"]],["in","railState",100,300,500,2,3],["any",["all",[">=","rtCode1","40203000000"],["<","rtCode1","40204000000"]],["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3,"line-dasharray":[3,2]}},
+{"id":"gsibv-vectortile-layer-2554","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1932","title":"通常部","path":"鉄道-側線-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["any",["==","staCode","0"],["!has","staCode"]],["==","snglDbl",3]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2555","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1929","title":"通常部","path":"鉄道-特殊鉄道-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],[">=","rtCode","4021700000"],["<","rtCode","4021800000"]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":6,"line-dasharray":[0.2,3]}},
+{"id":"gsibv-vectortile-layer-2556","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1929","title":"通常部","path":"鉄道-特殊鉄道-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],[">=","rtCode","4021700000"],["<","rtCode","4021800000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2557","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1927","title":"索道","path":"鉄道-索道","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],[">=","rtCode","40206000000"],["<","rtCode","40207000000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(200,200,200,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2558","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1924","title":"路面","path":"鉄道-路面","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],[">=","rtCode","40204000000"],["<","rtCode","40205000000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2559","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1907","title":"トンネル","path":"鉄道-JR以外-トンネル","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["any",["==","staCode","0"],["!has","staCode"]],["in","railState",2,3],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,0.75)","line-width":3,"line-dasharray":[3,2]}},
+{"id":"gsibv-vectortile-layer-2560","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1901","title":"単線","path":"鉄道-JR以外-通常部-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",0],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2561","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1901","title":"単線","path":"鉄道-JR以外-通常部-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",0],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":8,"line-dasharray":[0.1,5]}},
+{"id":"gsibv-vectortile-layer-2562","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1911","title":"運休中","path":"鉄道-JR以外-運休中","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",5],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3,"line-dasharray":[5,1,5]}},
+{"id":"gsibv-vectortile-layer-2563","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1911","title":"運休中","path":"鉄道-JR以外-運休中","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",5],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":8,"line-dasharray":[0.1,4]}},
+{"id":"gsibv-vectortile-layer-2564","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1913","title":"単線","path":"鉄道-地下鉄-通常部-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["in","railState",0,200],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40203000000"],["<","rtCode1","40204000000"]],["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2565","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1913","title":"単線","path":"鉄道-地下鉄-通常部-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["in","railState",0,200],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40203000000"],["<","rtCode1","40204000000"]],["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":8,"line-dasharray":[0.1,5]}},
+{"id":"gsibv-vectortile-layer-2566","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1904","title":"複線","path":"鉄道-JR以外-通常部-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",0],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2567","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1904","title":"複線","path":"鉄道-JR以外-通常部-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",0],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":8,"line-dasharray":[0.1,0.2,0.1,5]}},
+{"id":"gsibv-vectortile-layer-2568","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1915","title":"複線","path":"鉄道-地下鉄-通常部-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["in","railState",0,200],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40203000000"],["<","rtCode1","40204000000"]],["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2569","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1915","title":"複線","path":"鉄道-地下鉄-通常部-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["in","railState",0,200],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40203000000"],["<","rtCode1","40204000000"]],["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":8,"line-dasharray":[0.1,0.2,0.1,5]}},
+{"id":"gsibv-vectortile-layer-2570","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1893","title":"トンネル","path":"鉄道-JR-トンネル","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["any",["==","staCode","0"],["!has","staCode"]],["in","railState",2,3],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3,"line-dasharray":[3,2]}},
+{"id":"gsibv-vectortile-layer-2571","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1887","title":"単線","path":"鉄道-JR-通常部-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2572","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1887","title":"単線","path":"鉄道-JR-通常部-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2573","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1887","title":"単線","path":"鉄道-JR-通常部-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4,"line-dasharray":[2,2]}},
+{"id":"gsibv-vectortile-layer-2574","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1898","title":"運休中","path":"鉄道-JR-運休中","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",5],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2575","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1898","title":"運休中","path":"鉄道-JR-運休中","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",5],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3,"line-dasharray":[5,0.1]}},
+{"id":"gsibv-vectortile-layer-2576","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1935","title":"雪覆い","path":"鉄道-雪覆い","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",4],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(200,200,200,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2577","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1890","title":"複線","path":"鉄道-JR-通常部-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",0],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2578","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1890","title":"複線","path":"鉄道-JR-通常部-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",0],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2579","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1890","title":"複線","path":"鉄道-JR-通常部-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["==","railState",0],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4,"line-dasharray":[4,2,0.1,2]}},
+{"id":"gsibv-vectortile-layer-2580","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1939","title":"地下駅","path":"鉄道-地下駅","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["has","staCode"],["!=","staCode","0"],["in","railState",100,300,500,2,3]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[14,0.5],[17,1]]},"line-dasharray":[6,6],"line-offset":{"stops":[[14,-3],[16,-5]]}}},
+{"id":"gsibv-vectortile-layer-2581","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1939","title":"地下駅","path":"鉄道-地下駅","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["has","staCode"],["!=","staCode","0"],["in","railState",100,300,500,2,3]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-dasharray":[6,6],"line-offset":{"stops":[[14,3],[16,5]]},"line-width":{"stops":[[14,0.5],[17,1]]}}},
+{"id":"gsibv-vectortile-layer-2582","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1937","title":"駅","path":"鉄道-駅","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["has","staCode"],["!=","staCode","0"],["in","railState",0,1,5]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":12}},
+{"id":"gsibv-vectortile-layer-2583","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1937","title":"駅","path":"鉄道-駅","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["has","staCode"],["!=","staCode","0"],["in","railState",0,1,5]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":10}},
+{"id":"gsibv-vectortile-layer-2584","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1742","title":"通常部","path":"道路-高速道路-3m未満・その他・不明-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,1.5],[17,4]]}}},
+{"id":"gsibv-vectortile-layer-2585","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1747","title":"通常部","path":"道路-高速道路-3m以上5.5m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,2],[17,12]]}}},
+{"id":"gsibv-vectortile-layer-2586","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1752","title":"通常部","path":"道路-高速道路-5.5m以上13m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,20]]}}},
+{"id":"gsibv-vectortile-layer-2587","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1757","title":"通常部","path":"道路-高速道路-13m以上19.5m未満-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,24]]}}},
+{"id":"gsibv-vectortile-layer-2588","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1762","title":"通常部","path":"道路-高速道路-19.5m以上-通常部","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2701],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,9],[17,34]]}}},
+{"id":"gsibv-vectortile-layer-2589","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1835","title":"橋・高架","path":"道路-市区町村道・その他-3m未満・その他・不明-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,1.5],[17,4]]}}},
+{"id":"gsibv-vectortile-layer-2590","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1840","title":"橋・高架","path":"道路-市区町村道・その他-3m以上5.5m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,5],[17,16]]}}},
+{"id":"gsibv-vectortile-layer-2591","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1845","title":"橋・高架","path":"道路-市区町村道・その他-5.5m以上13m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,6],[17,24]]}}},
+{"id":"gsibv-vectortile-layer-2592","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1850","title":"橋・高架","path":"道路-市区町村道・その他-13m以上19.5m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,7],[17,19]]}}},
+{"id":"gsibv-vectortile-layer-2593","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1855","title":"橋・高架","path":"道路-市区町村道・その他-19.5m以上-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,12],[17,37]]}}},
+{"id":"gsibv-vectortile-layer-2594","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1811","title":"橋・高架","path":"道路-都道府県道-3m以上5.5m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,5],[17,16]]}}},
+{"id":"gsibv-vectortile-layer-2595","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1816","title":"橋・高架","path":"道路-都道府県道-5.5m以上13m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,6],[17,24]]}}},
+{"id":"gsibv-vectortile-layer-2596","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1821","title":"橋・高架","path":"道路-都道府県道-13m以上19.5m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,7],[17,26]]}}},
+{"id":"gsibv-vectortile-layer-2597","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1826","title":"橋・高架","path":"道路-都道府県道-19.5m以上-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,12],[17,37]]}}},
+{"id":"gsibv-vectortile-layer-2598","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1780","title":"橋・高架","path":"道路-国道-3m以上5.5m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,5],[17,16]]}}},
+{"id":"gsibv-vectortile-layer-2599","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1785","title":"橋・高架","path":"道路-国道-5.5m以上13m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,6],[17,24]]}}},
+{"id":"gsibv-vectortile-layer-2600","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1790","title":"橋・高架","path":"道路-国道-13m以上19.5m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,7],[17,26]]}}},
+{"id":"gsibv-vectortile-layer-2601","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1795","title":"橋・高架","path":"道路-国道-19.5m以上-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,12],[17,37]]}}},
+{"id":"gsibv-vectortile-layer-2602","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1749","title":"橋・高架","path":"道路-高速道路-3m以上5.5m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,5],[17,16]]}}},
+{"id":"gsibv-vectortile-layer-2603","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1754","title":"橋・高架","path":"道路-高速道路-5.5m以上13m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,6],[17,24]]}}},
+{"id":"gsibv-vectortile-layer-2604","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1759","title":"橋・高架","path":"道路-高速道路-13m以上19.5m未満-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,7],[17,26]]}}},
+{"id":"gsibv-vectortile-layer-2605","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1764","title":"橋・高架","path":"道路-高速道路-19.5m以上-橋・高架","line-role":"outline","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,12],[17,37]]}}},
+{"id":"gsibv-vectortile-layer-2606","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1840","title":"橋・高架","path":"道路-市区町村道・その他-3m以上5.5m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,2],[17,12]]}}},
+{"id":"gsibv-vectortile-layer-2607","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1845","title":"橋・高架","path":"道路-市区町村道・その他-5.5m以上13m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,20]]}}},
+{"id":"gsibv-vectortile-layer-2608","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1850","title":"橋・高架","path":"道路-市区町村道・その他-13m以上19.5m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,16]]}}},
+{"id":"gsibv-vectortile-layer-2609","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1855","title":"橋・高架","path":"道路-市区町村道・その他-19.5m以上-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,9],[17,34]]}}},
+{"id":"gsibv-vectortile-layer-2610","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1806","title":"橋・高架","path":"道路-都道府県道-3m未満・その他・不明-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,1.5],[17,4]]}}},
+{"id":"gsibv-vectortile-layer-2611","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1811","title":"橋・高架","path":"道路-都道府県道-3m以上5.5m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,2],[17,12]]}}},
+{"id":"gsibv-vectortile-layer-2612","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1816","title":"橋・高架","path":"道路-都道府県道-5.5m以上13m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,20]]}}},
+{"id":"gsibv-vectortile-layer-2613","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1821","title":"橋・高架","path":"道路-都道府県道-13m以上19.5m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,24]]}}},
+{"id":"gsibv-vectortile-layer-2614","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1826","title":"橋・高架","path":"道路-都道府県道-19.5m以上-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,9],[17,34]]}}},
+{"id":"gsibv-vectortile-layer-2615","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1775","title":"橋・高架","path":"道路-国道-3m未満・その他・不明-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,1.5],[17,4]]}}},
+{"id":"gsibv-vectortile-layer-2616","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1780","title":"橋・高架","path":"道路-国道-3m以上5.5m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,2],[17,12]]}}},
+{"id":"gsibv-vectortile-layer-2617","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1785","title":"橋・高架","path":"道路-国道-5.5m以上13m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,20]]}}},
+{"id":"gsibv-vectortile-layer-2618","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1790","title":"橋・高架","path":"道路-国道-13m以上19.5m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,24]]}}},
+{"id":"gsibv-vectortile-layer-2619","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1795","title":"橋・高架","path":"道路-国道-19.5m以上-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,9],[17,34]]}}},
+{"id":"gsibv-vectortile-layer-2620","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1894","title":"単線","path":"鉄道-JR-橋梁-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":16}},
+{"id":"gsibv-vectortile-layer-2621","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1894","title":"単線","path":"鉄道-JR-橋梁-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2,"line-offset":-4}},
+{"id":"gsibv-vectortile-layer-2622","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1894","title":"単線","path":"鉄道-JR-橋梁-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2,"line-offset":4}},
+{"id":"gsibv-vectortile-layer-2623","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1894","title":"単線","path":"鉄道-JR-橋梁-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2624","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1894","title":"単線","path":"鉄道-JR-橋梁-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2625","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1894","title":"単線","path":"鉄道-JR-橋梁-単線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4,"line-dasharray":[2,2]}},
+{"id":"gsibv-vectortile-layer-2626","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1895","title":"複線","path":"鉄道-JR-橋梁-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":16}},
+{"id":"gsibv-vectortile-layer-2627","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1895","title":"複線","path":"鉄道-JR-橋梁-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2,"line-offset":-4}},
+{"id":"gsibv-vectortile-layer-2628","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1895","title":"複線","path":"鉄道-JR-橋梁-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2,"line-offset":4}},
+{"id":"gsibv-vectortile-layer-2629","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1895","title":"複線","path":"鉄道-JR-橋梁-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2630","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1895","title":"複線","path":"鉄道-JR-橋梁-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2631","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1895","title":"複線","path":"鉄道-JR-橋梁-複線","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["==","snglDbl",2],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40201000000"],["<","rtCode","40202000000"]],["all",[">=","rtCode","40216000000"],["<","rtCode","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4,"line-dasharray":[4,2,0.1,2]}},
+{"id":"gsibv-vectortile-layer-2632","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1908","title":"橋梁","path":"鉄道-JR以外-橋梁","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[14,14],[16,18]]}}},
+{"id":"gsibv-vectortile-layer-2633","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1908","title":"橋梁","path":"鉄道-JR以外-橋梁","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-offset":{"stops":[[14,-4],[16,-6]]}}},
+{"id":"gsibv-vectortile-layer-2634","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1908","title":"橋梁","path":"鉄道-JR以外-橋梁","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-offset":{"stops":[[14,4],[16,6]]}}},
+{"id":"gsibv-vectortile-layer-2635","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1908","title":"橋梁","path":"鉄道-JR以外-橋梁","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40202000000"],["<","rtCode","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2636","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1918","title":"橋梁","path":"鉄道-地下鉄-橋梁","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[14,14],[16,18]]}}},
+{"id":"gsibv-vectortile-layer-2637","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1918","title":"橋梁","path":"鉄道-地下鉄-橋梁","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-offset":{"stops":[[14,-4],[16,-6]]}}},
+{"id":"gsibv-vectortile-layer-2638","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1918","title":"橋梁","path":"鉄道-地下鉄-橋梁","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-offset":{"stops":[[14,4],[16,6]]}}},
+{"id":"gsibv-vectortile-layer-2639","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1918","title":"橋梁","path":"鉄道-地下鉄-橋梁","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",8201],["==","railState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2640","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1744","title":"橋・高架","path":"道路-高速道路-3m未満・その他・不明-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[15,1.5],[17,4]]}}},
+{"id":"gsibv-vectortile-layer-2641","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1749","title":"橋・高架","path":"道路-高速道路-3m以上5.5m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,2],[17,12]]}}},
+{"id":"gsibv-vectortile-layer-2642","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1754","title":"橋・高架","path":"道路-高速道路-5.5m以上13m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,3],[17,20]]}}},
+{"id":"gsibv-vectortile-layer-2643","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1759","title":"橋・高架","path":"道路-高速道路-13m以上19.5m未満-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,4],[17,24]]}}},
+{"id":"gsibv-vectortile-layer-2644","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1764","title":"橋・高架","path":"道路-高速道路-19.5m以上-橋・高架","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":{"stops":[[15,9],[17,34]]}}},
+{"id":"gsibv-vectortile-layer-2645","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1831","title":"トンネル","path":"道路-市区町村道・その他-3m未満・その他・不明-トンネル","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2704],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,0.75)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2646","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1832","title":"通常部","path":"道路-市区町村道・その他-3m未満・その他・不明-通常部","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2647","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1834","title":"橋・高架","path":"道路-市区町村道・その他-3m未満・その他・不明-橋・高架","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2648","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1836","title":"トンネル","path":"道路-市区町村道・その他-3m以上5.5m未満-トンネル","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2704],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,0.75)","line-width":1.5}},
+{"id":"gsibv-vectortile-layer-2649","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1837","title":"通常部","path":"道路-市区町村道・その他-3m以上5.5m未満-通常部","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1.5}},
+{"id":"gsibv-vectortile-layer-2650","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1839","title":"橋・高架","path":"道路-市区町村道・その他-3m以上5.5m未満-橋・高架","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1.5}},
+{"id":"gsibv-vectortile-layer-2651","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1841","title":"トンネル","path":"道路-市区町村道・その他-5.5m以上13m未満-トンネル","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2704],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,0.75)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2652","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1842","title":"通常部","path":"道路-市区町村道・その他-5.5m以上13m未満-通常部","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2653","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1844","title":"橋・高架","path":"道路-市区町村道・その他-5.5m以上13m未満-橋・高架","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2654","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1846","title":"トンネル","path":"道路-市区町村道・その他-13m以上19.5m未満-トンネル","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2704],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,0.75)","line-width":2.5}},
+{"id":"gsibv-vectortile-layer-2655","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1847","title":"通常部","path":"道路-市区町村道・その他-13m以上19.5m未満-通常部","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2.5}},
+{"id":"gsibv-vectortile-layer-2656","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1849","title":"橋・高架","path":"道路-市区町村道・その他-13m以上19.5m未満-橋・高架","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2.5}},
+{"id":"gsibv-vectortile-layer-2657","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1851","title":"トンネル","path":"道路-市区町村道・その他-19.5m以上-トンネル","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2704],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,0.75)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2658","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1852","title":"通常部","path":"道路-市区町村道・その他-19.5m以上-通常部","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2659","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1854","title":"橋・高架","path":"道路-市区町村道・その他-19.5m以上-橋・高架","added":1},"minzoom":13,"maxzoom":14,"filter":["all",["in","ftCode",2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2660","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1801","title":"トンネル","path":"道路-都道府県道-トンネル","added":1},"minzoom":10,"maxzoom":11,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,0.75)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2661","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1800","title":"通常部","path":"道路-都道府県道-通常部","line-role":"outline","added":1},"minzoom":10,"maxzoom":11,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2662","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1800","title":"通常部","path":"道路-都道府県道-通常部","added":1},"minzoom":10,"maxzoom":11,"filter":["all",["in","ftCode",2701],["==","rdCtg",1],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2663","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1802","title":"トンネル","path":"道路-都道府県道-3m未満・その他・不明-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,-1]]}}},
+{"id":"gsibv-vectortile-layer-2664","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1802","title":"トンネル","path":"道路-都道府県道-3m未満・その他・不明-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,1]]}}},
+{"id":"gsibv-vectortile-layer-2665","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1803","title":"通常部","path":"道路-都道府県道-3m未満・その他・不明-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2666","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1805","title":"橋・高架","path":"道路-都道府県道-3m未満・その他・不明-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2667","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1807","title":"トンネル","path":"道路-都道府県道-3m以上5.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,-1.5]]}}},
+{"id":"gsibv-vectortile-layer-2668","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1807","title":"トンネル","path":"道路-都道府県道-3m以上5.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,1.5]]}}},
+{"id":"gsibv-vectortile-layer-2669","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1808","title":"通常部","path":"道路-都道府県道-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2670","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1808","title":"通常部","path":"道路-都道府県道-3m以上5.5m未満-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2671","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1810","title":"橋・高架","path":"道路-都道府県道-3m以上5.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2672","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1810","title":"橋・高架","path":"道路-都道府県道-3m以上5.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2673","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1812","title":"トンネル","path":"道路-都道府県道-5.5m以上13m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[12,0.75]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,-1.5]]}}},
+{"id":"gsibv-vectortile-layer-2674","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1812","title":"トンネル","path":"道路-都道府県道-5.5m以上13m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[12,0.75]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,1.5]]}}},
+{"id":"gsibv-vectortile-layer-2675","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1813","title":"通常部","path":"道路-都道府県道-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2676","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1813","title":"通常部","path":"道路-都道府県道-5.5m以上13m未満-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2677","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1815","title":"橋・高架","path":"道路-都道府県道-5.5m以上13m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2678","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1815","title":"橋・高架","path":"道路-都道府県道-5.5m以上13m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2679","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1817","title":"トンネル","path":"道路-都道府県道-13m以上19.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[14,1]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,-2]]}}},
+{"id":"gsibv-vectortile-layer-2680","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1817","title":"トンネル","path":"道路-都道府県道-13m以上19.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[14,1]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,2]]}}},
+{"id":"gsibv-vectortile-layer-2681","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1818","title":"通常部","path":"道路-都道府県道-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2682","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1818","title":"通常部","path":"道路-都道府県道-13m以上19.5m未満-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2683","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1820","title":"橋・高架","path":"道路-都道府県道-13m以上19.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":6}},
+{"id":"gsibv-vectortile-layer-2684","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1820","title":"橋・高架","path":"道路-都道府県道-13m以上19.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2685","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1822","title":"トンネル","path":"道路-都道府県道-19.5m以上-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[14,1]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,-2.75]]}}},
+{"id":"gsibv-vectortile-layer-2686","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1822","title":"トンネル","path":"道路-都道府県道-19.5m以上-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[14,1]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,2.75]]}}},
+{"id":"gsibv-vectortile-layer-2687","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1823","title":"通常部","path":"道路-都道府県道-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":6}},
+{"id":"gsibv-vectortile-layer-2688","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1823","title":"通常部","path":"道路-都道府県道-19.5m以上-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2689","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1825","title":"橋・高架","path":"道路-都道府県道-19.5m以上-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":7}},
+{"id":"gsibv-vectortile-layer-2690","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1825","title":"橋・高架","path":"道路-都道府県道-19.5m以上-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",1],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2691","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1829","title":"通常部(有料)","path":"道路-市区町村道・その他-通常部(有料)","line-role":"outline","added":1},"minzoom":10,"maxzoom":13,"filter":["all",["in","ftCode",2701,2702,2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","tollSect",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2692","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1829","title":"通常部(有料)","path":"道路-市区町村道・その他-通常部(有料)","added":1},"minzoom":10,"maxzoom":13,"filter":["all",["in","ftCode",2701,2702,2703],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","tollSect",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2693","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1830","title":"トンネル(有料)","path":"道路-市区町村道・その他-トンネル(有料)","added":1},"minzoom":10,"maxzoom":13,"filter":["all",["in","ftCode",2704],["!=","rdCtg",0],["!=","rdCtg",1],["!=","rdCtg",3],["!=","motorway",1],["==","tollSect",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,0.75)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2694","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1767","title":"徒歩道","path":"道路-国道-徒歩道","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2721,2722,2723,2724],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-dasharray":[6,1]}},
+{"id":"gsibv-vectortile-layer-2695","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1798","title":"徒歩道","path":"道路-都道府県道-徒歩道","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2721,2722,2723,2724],["==","rdCtg",1],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-dasharray":[6,1]}},
+{"id":"gsibv-vectortile-layer-2696","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1765","title":"石段","path":"道路-国道-石段","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2731,2732,2733,2734],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2,"line-dasharray":[6,1]}},
+{"id":"gsibv-vectortile-layer-2697","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1796","title":"石段","path":"道路-都道府県道-石段","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2731,2732,2733,2734],["==","rdCtg",1],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2,"line-dasharray":[6,1]}},
+{"id":"gsibv-vectortile-layer-2698","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1770","title":"トンネル","path":"道路-国道-トンネル","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[9,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[9,-1.5]]}}},
+{"id":"gsibv-vectortile-layer-2699","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1770","title":"トンネル","path":"道路-国道-トンネル","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[9,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[9,1.5]]}}},
+{"id":"gsibv-vectortile-layer-2700","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1769","title":"通常部","path":"道路-国道-通常部","line-role":"outline","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2701","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1769","title":"通常部","path":"道路-国道-通常部","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",2701],["==","rdCtg",0],["!=","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2702","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1771","title":"トンネル","path":"道路-国道-3m未満・その他・不明-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,-1]]}}},
+{"id":"gsibv-vectortile-layer-2703","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1771","title":"トンネル","path":"道路-国道-3m未満・その他・不明-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,-1]]}}},
+{"id":"gsibv-vectortile-layer-2704","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1772","title":"通常部","path":"道路-国道-3m未満・その他・不明-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2705","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1774","title":"橋・高架","path":"道路-国道-3m未満・その他・不明-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2706","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1776","title":"トンネル","path":"道路-国道-3m以上5.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,-1.5]]}}},
+{"id":"gsibv-vectortile-layer-2707","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1776","title":"トンネル","path":"道路-国道-3m以上5.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,1.5]]}}},
+{"id":"gsibv-vectortile-layer-2708","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1777","title":"通常部","path":"道路-国道-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2709","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1777","title":"通常部","path":"道路-国道-3m以上5.5m未満-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2710","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1779","title":"橋・高架","path":"道路-国道-3m以上5.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2711","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1779","title":"橋・高架","path":"道路-国道-3m以上5.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2712","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1781","title":"トンネル","path":"道路-国道-5.5m以上13m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[12,0.75]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,-1.5]]}}},
+{"id":"gsibv-vectortile-layer-2713","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1781","title":"トンネル","path":"道路-国道-5.5m以上13m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[12,0.75]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,1.5]]}}},
+{"id":"gsibv-vectortile-layer-2714","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1782","title":"通常部","path":"道路-国道-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2715","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1782","title":"通常部","path":"道路-国道-5.5m以上13m未満-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2716","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1784","title":"橋・高架","path":"道路-国道-5.5m以上13m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2717","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1784","title":"橋・高架","path":"道路-国道-5.5m以上13m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2718","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1786","title":"トンネル","path":"道路-国道-13m以上19.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[14,1]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,-2]]}}},
+{"id":"gsibv-vectortile-layer-2719","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1786","title":"トンネル","path":"道路-国道-13m以上19.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[14,1]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,2]]}}},
+{"id":"gsibv-vectortile-layer-2720","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1787","title":"通常部","path":"道路-国道-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2721","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1787","title":"通常部","path":"道路-国道-13m以上19.5m未満-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2722","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1789","title":"橋・高架","path":"道路-国道-13m以上19.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":6}},
+{"id":"gsibv-vectortile-layer-2723","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1789","title":"橋・高架","path":"道路-国道-13m以上19.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2724","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1791","title":"トンネル","path":"道路-国道-19.5m以上-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[14,1]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,-2.75]]}}},
+{"id":"gsibv-vectortile-layer-2725","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1791","title":"トンネル","path":"道路-国道-19.5m以上-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[14,1]]},"line-dasharray":[4,4],"line-offset":{"stops":[[12,2.75]]}}},
+{"id":"gsibv-vectortile-layer-2726","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1792","title":"通常部","path":"道路-国道-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":6}},
+{"id":"gsibv-vectortile-layer-2727","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1792","title":"通常部","path":"道路-国道-19.5m以上-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2728","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1794","title":"橋・高架","path":"道路-国道-19.5m以上-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":7}},
+{"id":"gsibv-vectortile-layer-2729","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1794","title":"橋・高架","path":"道路-国道-19.5m以上-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","rdCtg",0],["!=","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2730","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1916","title":"トンネル","path":"鉄道-地下鉄-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["any",["==","staCode","0"],["!has","staCode"]],["in","railState",100,300,500,2,3],["any",["all",[">=","rtCode1","40203000000"],["<","rtCode1","40204000000"]],["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2,"line-dasharray":[3,2]}},
+{"id":"gsibv-vectortile-layer-2731","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1926","title":"索道","path":"鉄道-索道","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],[">=","rtCode1","40206000000"],["<","rtCode1","40207000000"]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2732","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1923","title":"路面","path":"鉄道-路面","added":1},"minzoom":8,"maxzoom":14,"filter":["all",["in","ftCode",8201],["==","railState",400]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2733","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1905","title":"トンネル","path":"鉄道-JR以外-トンネル","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["==","opeState",0],["in","railState",100,300,500],["any",["all",[">=","rtCode1","40202000000"],["<","rtCode1","40203000000"]],["all",[">=","rtCode1","40205000000"],["<","rtCode1","40206000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-dasharray":[3,2]}},
+{"id":"gsibv-vectortile-layer-2734","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1906","title":"トンネル","path":"鉄道-JR以外-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["==","opeState",0],["in","railState",100,300,500],["any",["all",[">=","rtCode1","40202000000"],["<","rtCode1","40203000000"]],["all",[">=","rtCode1","40205000000"],["<","rtCode1","40206000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-dasharray":[3,2]}},
+{"id":"gsibv-vectortile-layer-2735","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1899","title":"単線","path":"鉄道-JR以外-通常部-単線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40202000000"],["<","rtCode1","40203000000"]],["all",[">=","rtCode1","40205000000"],["<","rtCode1","40206000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2736","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1900","title":"単線","path":"鉄道-JR以外-通常部-単線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40202000000"],["<","rtCode1","40203000000"]],["all",[">=","rtCode1","40205000000"],["<","rtCode1","40206000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2737","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1909","title":"運休中","path":"鉄道-JR以外-運休中","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["==","opeState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40202000000"],["<","rtCode1","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2,"line-dasharray":[2,2]}},
+{"id":"gsibv-vectortile-layer-2738","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1910","title":"運休中","path":"鉄道-JR以外-運休中","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["==","opeState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40202000000"],["<","rtCode1","40203000000"]],["all",[">=","rtCode","40205000000"],["<","rtCode","40206000000"]]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2,"line-dasharray":[2,2]}},
+{"id":"gsibv-vectortile-layer-2739","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1912","title":"単線","path":"鉄道-地下鉄-通常部-単線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["==","snglDbl",1],["in","railState",0,200],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40203000000"],["<","rtCode1","40204000000"]],["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2740","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1902","title":"複線","path":"鉄道-JR以外-通常部-複線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40202000000"],["<","rtCode1","40203000000"]],["all",[">=","rtCode1","40205000000"],["<","rtCode1","40206000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2741","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1903","title":"複線","path":"鉄道-JR以外-通常部-複線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40202000000"],["<","rtCode1","40203000000"]],["all",[">=","rtCode1","40205000000"],["<","rtCode1","40206000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2742","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1914","title":"複線","path":"鉄道-地下鉄-通常部-複線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["==","snglDbl",2],["in","railState",0,200],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40203000000"],["<","rtCode1","40204000000"]],["all",[">=","rtCode","40203000000"],["<","rtCode","40204000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2743","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1883","title":"トンネル","path":"鉄道-新幹線-トンネル","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","opeState",0],["in","railState",100,300,500],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-dasharray":[3,2]}},
+{"id":"gsibv-vectortile-layer-2744","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1884","title":"トンネル","path":"鉄道-新幹線-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","opeState",0],["in","railState",100,300,500],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-dasharray":[3,2]}},
+{"id":"gsibv-vectortile-layer-2745","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1891","title":"トンネル","path":"鉄道-JR-トンネル","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","opeState",0],["in","railState",100,300,500],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-dasharray":[3,2]}},
+{"id":"gsibv-vectortile-layer-2746","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1892","title":"トンネル","path":"鉄道-JR-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","opeState",0],["in","railState",100,300,500],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-dasharray":[3,2]}},
+{"id":"gsibv-vectortile-layer-2747","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1879","title":"単線","path":"鉄道-新幹線-通常部-単線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2748","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1879","title":"単線","path":"鉄道-新幹線-通常部-単線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2749","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1879","title":"単線","path":"鉄道-新幹線-通常部-単線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4,"line-dasharray":[2,2]}},
+{"id":"gsibv-vectortile-layer-2750","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1880","title":"単線","path":"鉄道-新幹線-通常部-単線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2751","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1880","title":"単線","path":"鉄道-新幹線-通常部-単線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2752","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1880","title":"単線","path":"鉄道-新幹線-通常部-単線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4,"line-dasharray":[2,2]}},
+{"id":"gsibv-vectortile-layer-2753","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1885","title":"単線","path":"鉄道-JR-通常部-単線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2754","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1885","title":"単線","path":"鉄道-JR-通常部-単線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2755","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1885","title":"単線","path":"鉄道-JR-通常部-単線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4,"line-dasharray":[2,2]}},
+{"id":"gsibv-vectortile-layer-2756","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1886","title":"単線","path":"鉄道-JR-通常部-単線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2757","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1886","title":"単線","path":"鉄道-JR-通常部-単線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2758","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1886","title":"単線","path":"鉄道-JR-通常部-単線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",1],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4,"line-dasharray":[2,2]}},
+{"id":"gsibv-vectortile-layer-2759","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1896","title":"運休中","path":"鉄道-JR-運休中","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","opeState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2760","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1896","title":"運休中","path":"鉄道-JR-運休中","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","opeState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4,"line-dasharray":[2,0.1]}},
+{"id":"gsibv-vectortile-layer-2761","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1897","title":"運休中","path":"鉄道-JR-運休中","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","opeState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2762","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1897","title":"運休中","path":"鉄道-JR-運休中","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","opeState",1],["any",["==","staCode","0"],["!has","staCode"]],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4,"line-dasharray":[2,0.1]}},
+{"id":"gsibv-vectortile-layer-2763","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1881","title":"複線","path":"鉄道-新幹線-通常部-複線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2764","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1881","title":"複線","path":"鉄道-新幹線-通常部-複線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2765","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1881","title":"複線","path":"鉄道-新幹線-通常部-複線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4,"line-dasharray":[2,2,0.1,2]}},
+{"id":"gsibv-vectortile-layer-2766","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1882","title":"複線","path":"鉄道-新幹線-通常部-複線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2767","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1882","title":"複線","path":"鉄道-新幹線-通常部-複線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2768","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1882","title":"複線","path":"鉄道-新幹線-通常部-複線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["has","rtCode10"],["==","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4,"line-dasharray":[2,2,0.1,2]}},
+{"id":"gsibv-vectortile-layer-2769","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1888","title":"複線","path":"鉄道-JR-通常部-複線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2770","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1888","title":"複線","path":"鉄道-JR-通常部-複線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2771","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1888","title":"複線","path":"鉄道-JR-通常部-複線","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4,"line-dasharray":[2,2,0.1,2]}},
+{"id":"gsibv-vectortile-layer-2772","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1889","title":"複線","path":"鉄道-JR-通常部-複線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2773","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1889","title":"複線","path":"鉄道-JR-通常部-複線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2774","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1889","title":"複線","path":"鉄道-JR-通常部-複線","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["!=","rtCode10","1"],["==","snglDbl",2],["==","opeState",0],["in","railState",0,200],["any",["all",[">=","rtCode1","40201000000"],["<","rtCode1","40202000000"]],["all",[">=","rtCode1","40216000000"],["<","rtCode1","40217000000"]]],["any",["==","staCode","0"],["!has","staCode"]]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4,"line-dasharray":[2,2,0.1,2]}},
+{"id":"gsibv-vectortile-layer-2775","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1938","title":"地下駅","path":"鉄道-地下駅","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["has","staCode"],["!=","staCode","0"],["in","railState",100,300,500,2,3]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2776","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1936","title":"駅","path":"鉄道-駅","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",8201],["==","railState",0],["has","staCode"],["!=","staCode","0"]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2777","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1738","title":"通常部","path":"道路-高速道路-通常部","line-role":"outline","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",2701],["==","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2778","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1738","title":"通常部","path":"道路-高速道路-通常部","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",2701],["==","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2779","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1739","title":"トンネル","path":"道路-高速道路-トンネル","added":1},"minzoom":8,"maxzoom":11,"filter":["all",["in","ftCode",2704],["==","motorway",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,0.75)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2780","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1740","title":"トンネル","path":"道路-高速道路-3m未満・その他・不明-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,-1]]}}},
+{"id":"gsibv-vectortile-layer-2781","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1740","title":"トンネル","path":"道路-高速道路-3m未満・その他・不明-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[12,0.5]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,1]]}}},
+{"id":"gsibv-vectortile-layer-2782","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1741","title":"通常部","path":"道路-高速道路-3m未満・その他・不明-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2783","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1743","title":"橋・高架","path":"道路-高速道路-3m未満・その他・不明-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","motorway",1],["any",["==","rnkWidth",0],[">=","rnkWidth",5]]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2784","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1745","title":"トンネル","path":"道路-高速道路-3m以上5.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[12,0.5]]},"line-offset":{"stops":[[12,1.5]]},"line-dasharray":[6,6]}},
+{"id":"gsibv-vectortile-layer-2785","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1745","title":"トンネル","path":"道路-高速道路-3m以上5.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[12,0.5]]},"line-offset":{"stops":[[12,-1.5]]},"line-dasharray":[6,6]}},
+{"id":"gsibv-vectortile-layer-2786","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1746","title":"通常部","path":"道路-高速道路-3m以上5.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2787","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1746","title":"通常部","path":"道路-高速道路-3m以上5.5m未満-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2788","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1748","title":"橋・高架","path":"道路-高速道路-3m以上5.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2789","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1748","title":"橋・高架","path":"道路-高速道路-3m以上5.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",1]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2790","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1750","title":"トンネル","path":"道路-高速道路-5.5m以上13m未満-トンネル","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-dasharray":[6,6],"line-width":{"stops":[[14,0.75]]},"line-offset":{"stops":[[12,-1.5]]}}},
+{"id":"gsibv-vectortile-layer-2791","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1750","title":"トンネル","path":"道路-高速道路-5.5m以上13m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[14,0.75]]},"line-dasharray":[6,6],"line-offset":{"stops":[[12,1.5]]}}},
+{"id":"gsibv-vectortile-layer-2792","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1751","title":"通常部","path":"道路-高速道路-5.5m以上13m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2793","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1751","title":"通常部","path":"道路-高速道路-5.5m以上13m未満-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2794","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1753","title":"橋・高架","path":"道路-高速道路-5.5m以上13m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2795","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1753","title":"橋・高架","path":"道路-高速道路-5.5m以上13m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",2]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2796","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1755","title":"トンネル","path":"道路-高速道路-13m以上19.5m未満-トンネル","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-dasharray":[4,4],"line-offset":{"stops":[[12,-2]]},"line-width":{"stops":[[14,1]]}}},
+{"id":"gsibv-vectortile-layer-2797","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1755","title":"トンネル","path":"道路-高速道路-13m以上19.5m未満-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-offset":{"stops":[[12,2]]},"line-dasharray":[4,4],"line-width":{"stops":[[14,1]]}}},
+{"id":"gsibv-vectortile-layer-2798","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1756","title":"通常部","path":"道路-高速道路-13m以上19.5m未満-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2799","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1756","title":"通常部","path":"道路-高速道路-13m以上19.5m未満-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2800","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1758","title":"橋・高架","path":"道路-高速道路-13m以上19.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":6}},
+{"id":"gsibv-vectortile-layer-2801","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1758","title":"橋・高架","path":"道路-高速道路-13m以上19.5m未満-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",3]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":4}},
+{"id":"gsibv-vectortile-layer-2802","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1760","title":"トンネル","path":"道路-高速道路-19.5m以上-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-dasharray":[4,4],"line-width":{"stops":[[14,1]]},"line-offset":{"stops":[[12,2.75]]}}},
+{"id":"gsibv-vectortile-layer-2803","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1760","title":"トンネル","path":"道路-高速道路-19.5m以上-トンネル","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2704],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-dasharray":[4,4],"line-width":{"stops":[[14,1]]},"line-offset":{"stops":[[12,-2.75]]}}},
+{"id":"gsibv-vectortile-layer-2804","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1761","title":"通常部","path":"道路-高速道路-19.5m以上-通常部","line-role":"outline","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":6}},
+{"id":"gsibv-vectortile-layer-2805","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1761","title":"通常部","path":"道路-高速道路-19.5m以上-通常部","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2701,2702],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2806","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1763","title":"橋・高架","path":"道路-高速道路-19.5m以上-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"butt","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":7}},
+{"id":"gsibv-vectortile-layer-2807","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1763","title":"橋・高架","path":"道路-高速道路-19.5m以上-橋・高架","added":1},"minzoom":11,"maxzoom":14,"filter":["all",["in","ftCode",2703],["==","motorway",1],["==","rnkWidth",4]],"layout":{"line-cap":"square","line-join":"round","visibility":"visible"},"paint":{"line-color":"rgba(70,60,100,1)","line-width":5}},
+{"id":"gsibv-vectortile-layer-2808","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1875","title":"主要な鉄道","path":"鉄道-主要な鉄道","added":1},"minzoom":6,"maxzoom":8,"filter":["all",["in","ftCode",58201]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[6,1],[7,1.5]]}}},
+{"id":"gsibv-vectortile-layer-2809","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1876","title":"主要な鉄道トンネル","path":"鉄道-主要な鉄道トンネル","added":1},"minzoom":6,"maxzoom":8,"filter":["all",["in","ftCode",58202]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(124,145,196)","line-width":{"stops":[[6,1],[7,1.5]]}}},
+{"id":"gsibv-vectortile-layer-2810","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1877","title":"新幹線","path":"鉄道-新幹線","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",58203]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[4,0.5],[6,1.5],[7,2.5]]}}},
+{"id":"gsibv-vectortile-layer-2811","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1878","title":"新幹線トンネル","path":"鉄道-新幹線トンネル","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",58204]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,0.75)","line-width":{"stops":[[4,0.5],[6,1.5],[7,2.5]]}}},
+{"id":"gsibv-vectortile-layer-2812","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1933","title":"通常部","path":"鉄道-側線-通常部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2841]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2813","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1930","title":"通常部","path":"鉄道-特殊鉄道-通常部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2811]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2814","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1928","title":"索道","path":"鉄道-索道","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2821]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2815","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1928","title":"索道","path":"鉄道-索道","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2821]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-offset":1,"line-dasharray":[1,10]}},
+{"id":"gsibv-vectortile-layer-2816","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1928","title":"索道","path":"鉄道-索道","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2821]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-offset":-1,"line-dasharray":[1,9]}},
+{"id":"gsibv-vectortile-layer-2817","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1925","title":"路面","path":"鉄道-路面","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2831]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2818","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1919","title":"通常部","path":"鉄道-普通鉄道-通常部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2801]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2819","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1921","title":"トンネル","path":"鉄道-普通鉄道-トンネル","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2804]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3,"line-dasharray":[8,8]}},
+{"id":"gsibv-vectortile-layer-2820","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1922","title":"運休中","path":"鉄道-普通鉄道-運休中","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2806]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2821","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1940","title":"地下駅","path":"鉄道-地下駅","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["has","staCode"],["!=","staCode","0"],["in","railState",100,300,500,2,3]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":{"stops":[[17,3]]},"line-dasharray":[6,6],"line-offset":{"stops":[[17,-12]]}}},
+{"id":"gsibv-vectortile-layer-2822","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1940","title":"地下駅","path":"鉄道-地下駅","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["has","staCode"],["!=","staCode","0"],["in","railState",100,300,500,2,3]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-dasharray":[6,6],"line-offset":{"stops":[[17,12]]},"line-width":{"stops":[[17,3]]}}},
+{"id":"gsibv-vectortile-layer-2823","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1734","title":"主要な道路","path":"道路-主要な道路","added":1},"minzoom":6,"maxzoom":8,"filter":["all",["in","ftCode",52701]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":{"stops":[[6,1],[7,1.5]]}}},
+{"id":"gsibv-vectortile-layer-2824","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1735","title":"主要な道路トンネル","path":"道路-主要な道路トンネル","added":1},"minzoom":6,"maxzoom":8,"filter":["all",["in","ftCode",52702]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":{"stops":[[6,1],[7,1.5]]}}},
+{"id":"gsibv-vectortile-layer-2825","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1863","title":"通常部","path":"道路-庭園路-通常部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2221,2251,2224]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2826","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1864","title":"橋・高架","path":"道路-庭園路-橋・高架","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2223]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2827","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1865","title":"通常部","path":"道路-徒歩道-通常部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2721]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2,"line-dasharray":[10,5]}},
+{"id":"gsibv-vectortile-layer-2828","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1866","title":"雪覆い","path":"道路-徒歩道-雪覆い","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2722]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2829","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1867","title":"橋・高架","path":"道路-徒歩道-橋・高架","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2723]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2830","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1874","title":"トンネル内の道路","path":"道路-トンネル内の道路","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2401,2424]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1,"line-dasharray":[10,8]}},
+{"id":"gsibv-vectortile-layer-2831","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1856","title":"通常部","path":"道路-通常部-通常部","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2201,2241,2204,2244]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":2}},
+{"id":"gsibv-vectortile-layer-2832","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1857","title":"橋・高架","path":"道路-通常部-橋・高架","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2203,2243]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2833","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1934","title":"橋・高架","path":"鉄道-側線-橋・高架","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2843]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2834","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1920","title":"橋・高架","path":"鉄道-普通鉄道-橋・高架","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2803]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":3}},
+{"id":"gsibv-vectortile-layer-2835","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"railway","metadata":{"layer-id":"layer-1931","title":"橋・高架","path":"鉄道-特殊鉄道-橋・高架","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",2813]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,1)","line-width":1}},
+{"id":"gsibv-vectortile-layer-2836","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1736","title":"高速自動車道","path":"道路-高速自動車道","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",52703]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":{"stops":[[4,0.5],[6,1.5],[7,2.5]]}}},
+{"id":"gsibv-vectortile-layer-2837","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"road","metadata":{"layer-id":"layer-1737","title":"高速自動車道トンネル","path":"道路-高速自動車道トンネル","added":1},"minzoom":4,"maxzoom":8,"filter":["all",["in","ftCode",52704]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":{"stops":[[4,0.5],[6,1.5],[7,2.5]]}}},
+{"id":"gsibv-vectortile-layer-2838","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1712","title":"普通建物","path":"建物-普通建物-普通建物","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3101],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2839","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1714","title":"普通建物(外周線)","path":"建物-普通建物-普通建物(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3101],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":1.5}},
+{"id":"gsibv-vectortile-layer-2840","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1717","title":"堅ろう建物","path":"建物-堅ろう建物-堅ろう建物","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3102],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2841","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1719","title":"堅ろう建物(外周線)","path":"建物-堅ろう建物-堅ろう建物(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3102],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":1.5}},
+{"id":"gsibv-vectortile-layer-2842","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1722","title":"高層建物","path":"建物-高層建物-高層建物","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3103],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2843","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1724","title":"高層建物(外周線)","path":"建物-高層建物-高層建物(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3103],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":1.5}},
+{"id":"gsibv-vectortile-layer-2844","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1726","title":"普通無壁舎","path":"建物-普通無壁舎-普通無壁舎","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3111],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2845","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1728","title":"普通無壁舎(外周線)","path":"建物-普通無壁舎-普通無壁舎(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3111],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":1.5,"line-dasharray":[2,2]}},
+{"id":"gsibv-vectortile-layer-2846","type":"fill","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1730","title":"堅ろう無壁舎","path":"建物-堅ろう無壁舎-堅ろう無壁舎","gsi-fill-hatch-style":"ltrb","fill-color":"rgb(70,60,100)","added":1,"fill-pattern":"-gsibv-hatch-ltrb-4-255,255,255,1-255,255,255,1"},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3112],["==","$type","Polygon"]]],"layout":{"visibility":"visible"},"paint":{"fill-color":"rgba(70,60,100,1)"}},
+{"id":"gsibv-vectortile-layer-2847","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"building","metadata":{"layer-id":"layer-1732","title":"堅ろう無壁舎(外周線)","path":"建物-堅ろう無壁舎-堅ろう無壁舎(外周線)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["==","lvOrder",4],["all",["in","ftCode",3112],["==","$type","LineString"]]],"layout":{"line-cap":"butt","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":1.5,"line-dasharray":[2,2]}},
+{"id":"gsibv-vectortile-layer-2848","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2270","title":"人工水路(空間)","path":"河川-人工水路(空間)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5321]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(70,60,100)","line-width":{"stops":[[9,1],[17,2]]}}},
+{"id":"gsibv-vectortile-layer-2849","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2270","title":"人工水路(空間)","path":"河川-人工水路(空間)","added":1},"minzoom":14,"maxzoom":17,"filter":["all",["in","ftCode",5321]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgb(230,230,250)","line-width":{"stops":[[9,2],[17,3]]}}},
+{"id":"gsibv-vectortile-layer-2850","type":"line","source":"gsibv-vectortile-source-1-4-16","source-layer":"river","metadata":{"layer-id":"layer-2271","title":"人工水路(空間)","path":"河川-人工水路(空間)","added":1},"minzoom":17,"maxzoom":18,"filter":["all",["in","ftCode",5321]],"layout":{"line-cap":"square","visibility":"visible"},"paint":{"line-color":"rgba(230,230,250,0.5)","line-width":1}}
+],"sprite":"https://gsi-cyberjapan.github.io/gsivectortile-mapbox-gl-js/sprite/std","metadata":{"gsimaps-vector-url":"https://maps.gsi.go.jp/vector/#7/36.104611/140.084556/&ls=&disp=&d=l","center":{"lng":140.084556,"lat":36.104611},"zl":7}}
\ No newline at end of file
diff --git a/app/public/favicon/android-chrome-192x192.png b/app/public/favicon/android-chrome-192x192.png
new file mode 100644
index 0000000..faacd32
Binary files /dev/null and b/app/public/favicon/android-chrome-192x192.png differ
diff --git a/app/public/favicon/android-chrome-512x512.png b/app/public/favicon/android-chrome-512x512.png
new file mode 100644
index 0000000..f414b6c
Binary files /dev/null and b/app/public/favicon/android-chrome-512x512.png differ
diff --git a/app/public/favicon/apple-touch-icon.png b/app/public/favicon/apple-touch-icon.png
new file mode 100644
index 0000000..5b1b84d
Binary files /dev/null and b/app/public/favicon/apple-touch-icon.png differ
diff --git a/app/public/favicon/favicon-16x16.png b/app/public/favicon/favicon-16x16.png
new file mode 100644
index 0000000..fd8a2a7
Binary files /dev/null and b/app/public/favicon/favicon-16x16.png differ
diff --git a/app/public/favicon/favicon-32x32.png b/app/public/favicon/favicon-32x32.png
new file mode 100644
index 0000000..154cabe
Binary files /dev/null and b/app/public/favicon/favicon-32x32.png differ
diff --git a/app/public/favicon/favicon.ico b/app/public/favicon/favicon.ico
new file mode 100644
index 0000000..2373c1d
Binary files /dev/null and b/app/public/favicon/favicon.ico differ
diff --git a/app/public/favicon/site.webmanifest b/app/public/favicon/site.webmanifest
new file mode 100644
index 0000000..9fb762d
--- /dev/null
+++ b/app/public/favicon/site.webmanifest
@@ -0,0 +1,19 @@
+{
+ "name": "PLATEAU Past/Future for Action #001 Earthquake",
+ "short_name": "PLATEAU Past/Future for Action #001 Earthquake",
+ "icons": [
+ {
+ "src": "/android-chrome-192x192.png",
+ "sizes": "192x192",
+ "type": "image/png"
+ },
+ {
+ "src": "/android-chrome-512x512.png",
+ "sizes": "512x512",
+ "type": "image/png"
+ }
+ ],
+ "theme_color": "#ffffff",
+ "background_color": "#ffffff",
+ "display": "standalone"
+}
diff --git a/app/public/img/burned-overlay/tama-en-sp.png b/app/public/img/burned-overlay/tama-en-sp.png
new file mode 100644
index 0000000..7469c45
Binary files /dev/null and b/app/public/img/burned-overlay/tama-en-sp.png differ
diff --git a/app/public/img/burned-overlay/tama-ja-sp.png b/app/public/img/burned-overlay/tama-ja-sp.png
new file mode 100644
index 0000000..1c3a265
Binary files /dev/null and b/app/public/img/burned-overlay/tama-ja-sp.png differ
diff --git a/app/public/img/burned-overlay/toshin-en-sp.png b/app/public/img/burned-overlay/toshin-en-sp.png
new file mode 100644
index 0000000..1112a96
Binary files /dev/null and b/app/public/img/burned-overlay/toshin-en-sp.png differ
diff --git a/app/public/img/burned-overlay/toshin-ja-sp.png b/app/public/img/burned-overlay/toshin-ja-sp.png
new file mode 100644
index 0000000..a8be1dc
Binary files /dev/null and b/app/public/img/burned-overlay/toshin-ja-sp.png differ
diff --git a/app/public/img/content/burned/earthquake-wind-table-en.png b/app/public/img/content/burned/earthquake-wind-table-en.png
new file mode 100644
index 0000000..4d56dda
Binary files /dev/null and b/app/public/img/content/burned/earthquake-wind-table-en.png differ
diff --git a/app/public/img/content/burned/earthquake-wind-table-jp.png b/app/public/img/content/burned/earthquake-wind-table-jp.png
new file mode 100644
index 0000000..4fa2bd7
Binary files /dev/null and b/app/public/img/content/burned/earthquake-wind-table-jp.png differ
diff --git a/app/public/img/content/burned/graph1-jp.png b/app/public/img/content/burned/graph1-jp.png
new file mode 100644
index 0000000..cccad8a
Binary files /dev/null and b/app/public/img/content/burned/graph1-jp.png differ
diff --git a/app/public/img/content/burned/graph2-jp.png b/app/public/img/content/burned/graph2-jp.png
new file mode 100644
index 0000000..13e2774
Binary files /dev/null and b/app/public/img/content/burned/graph2-jp.png differ
diff --git a/app/public/img/content/burned/graph3-jp.png b/app/public/img/content/burned/graph3-jp.png
new file mode 100644
index 0000000..c2290f3
Binary files /dev/null and b/app/public/img/content/burned/graph3-jp.png differ
diff --git a/app/public/img/content/burned/legend-color.png b/app/public/img/content/burned/legend-color.png
new file mode 100644
index 0000000..4b0177e
Binary files /dev/null and b/app/public/img/content/burned/legend-color.png differ
diff --git a/app/public/img/content/burned/legend-jp.png b/app/public/img/content/burned/legend-jp.png
new file mode 100644
index 0000000..37ec149
Binary files /dev/null and b/app/public/img/content/burned/legend-jp.png differ
diff --git a/app/public/img/content/burned/table2-en.png b/app/public/img/content/burned/table2-en.png
new file mode 100644
index 0000000..bb842d2
Binary files /dev/null and b/app/public/img/content/burned/table2-en.png differ
diff --git a/app/public/img/content/burned/table2-jp.png b/app/public/img/content/burned/table2-jp.png
new file mode 100644
index 0000000..6b50917
Binary files /dev/null and b/app/public/img/content/burned/table2-jp.png differ
diff --git a/app/public/img/content/burned/table3-en.png b/app/public/img/content/burned/table3-en.png
new file mode 100644
index 0000000..73dd3ec
Binary files /dev/null and b/app/public/img/content/burned/table3-en.png differ
diff --git a/app/public/img/content/burned/table3-jp.png b/app/public/img/content/burned/table3-jp.png
new file mode 100644
index 0000000..b750ce5
Binary files /dev/null and b/app/public/img/content/burned/table3-jp.png differ
diff --git a/app/public/img/content/destroyed/legend-color-en.png b/app/public/img/content/destroyed/legend-color-en.png
new file mode 100644
index 0000000..fe5365d
Binary files /dev/null and b/app/public/img/content/destroyed/legend-color-en.png differ
diff --git a/app/public/img/content/destroyed/legend-color-jp.png b/app/public/img/content/destroyed/legend-color-jp.png
new file mode 100644
index 0000000..df688e1
Binary files /dev/null and b/app/public/img/content/destroyed/legend-color-jp.png differ
diff --git a/app/public/img/content/destroyed/legend-color.png b/app/public/img/content/destroyed/legend-color.png
new file mode 100644
index 0000000..1c649e5
Binary files /dev/null and b/app/public/img/content/destroyed/legend-color.png differ
diff --git a/app/public/img/content/destroyed/number-of-destroyed-buildings-jp.png b/app/public/img/content/destroyed/number-of-destroyed-buildings-jp.png
new file mode 100644
index 0000000..e76e558
Binary files /dev/null and b/app/public/img/content/destroyed/number-of-destroyed-buildings-jp.png differ
diff --git a/app/public/img/content/destroyed/number-of-improved-buildings-jp.png b/app/public/img/content/destroyed/number-of-improved-buildings-jp.png
new file mode 100644
index 0000000..0327c21
Binary files /dev/null and b/app/public/img/content/destroyed/number-of-improved-buildings-jp.png differ
diff --git a/app/public/img/content/destroyed/number-of-improved-buildings.png b/app/public/img/content/destroyed/number-of-improved-buildings.png
new file mode 100644
index 0000000..11b6857
Binary files /dev/null and b/app/public/img/content/destroyed/number-of-improved-buildings.png differ
diff --git a/app/public/img/content/destroyed/tokyo-table-en.png b/app/public/img/content/destroyed/tokyo-table-en.png
new file mode 100644
index 0000000..1286102
Binary files /dev/null and b/app/public/img/content/destroyed/tokyo-table-en.png differ
diff --git a/app/public/img/content/destroyed/tokyo-table-jp.png b/app/public/img/content/destroyed/tokyo-table-jp.png
new file mode 100644
index 0000000..e9940c8
Binary files /dev/null and b/app/public/img/content/destroyed/tokyo-table-jp.png differ
diff --git a/app/public/img/content/epilogue/btn-back.png b/app/public/img/content/epilogue/btn-back.png
new file mode 100644
index 0000000..a325f60
Binary files /dev/null and b/app/public/img/content/epilogue/btn-back.png differ
diff --git a/app/public/img/content/epilogue/earthquake-resistant-public-facilities-ratio-jp.png b/app/public/img/content/epilogue/earthquake-resistant-public-facilities-ratio-jp.png
new file mode 100644
index 0000000..fc8ccd3
Binary files /dev/null and b/app/public/img/content/epilogue/earthquake-resistant-public-facilities-ratio-jp.png differ
diff --git a/app/public/img/content/epilogue/public-assistance-initiatives-jp.png b/app/public/img/content/epilogue/public-assistance-initiatives-jp.png
new file mode 100644
index 0000000..a13e881
Binary files /dev/null and b/app/public/img/content/epilogue/public-assistance-initiatives-jp.png differ
diff --git a/app/public/img/content/epilogue/society-wide-initiatives-en.png b/app/public/img/content/epilogue/society-wide-initiatives-en.png
new file mode 100644
index 0000000..c846525
Binary files /dev/null and b/app/public/img/content/epilogue/society-wide-initiatives-en.png differ
diff --git a/app/public/img/content/epilogue/society-wide-initiatives-jp.png b/app/public/img/content/epilogue/society-wide-initiatives-jp.png
new file mode 100644
index 0000000..0259eea
Binary files /dev/null and b/app/public/img/content/epilogue/society-wide-initiatives-jp.png differ
diff --git a/app/public/img/content/epilogue/tokyo-crisis-management-en.png b/app/public/img/content/epilogue/tokyo-crisis-management-en.png
new file mode 100644
index 0000000..e32e304
Binary files /dev/null and b/app/public/img/content/epilogue/tokyo-crisis-management-en.png differ
diff --git a/app/public/img/content/epilogue/tokyo-crisis-management-jp.png b/app/public/img/content/epilogue/tokyo-crisis-management-jp.png
new file mode 100644
index 0000000..1638e9c
Binary files /dev/null and b/app/public/img/content/epilogue/tokyo-crisis-management-jp.png differ
diff --git a/app/public/img/content/epilogue/tokyo_current.jpg b/app/public/img/content/epilogue/tokyo_current.jpg
new file mode 100644
index 0000000..fb542b6
Binary files /dev/null and b/app/public/img/content/epilogue/tokyo_current.jpg differ
diff --git a/app/public/img/content/epilogue/tokyo_current.webp b/app/public/img/content/epilogue/tokyo_current.webp
new file mode 100644
index 0000000..de570ca
Binary files /dev/null and b/app/public/img/content/epilogue/tokyo_current.webp differ
diff --git a/app/public/img/content/epilogue/tokyo_past.png b/app/public/img/content/epilogue/tokyo_past.png
new file mode 100644
index 0000000..7502332
Binary files /dev/null and b/app/public/img/content/epilogue/tokyo_past.png differ
diff --git a/app/public/img/content/epilogue/tokyo_past.webp b/app/public/img/content/epilogue/tokyo_past.webp
new file mode 100644
index 0000000..9689f3d
Binary files /dev/null and b/app/public/img/content/epilogue/tokyo_past.webp differ
diff --git a/app/public/img/content/liquefaction/label-en.png b/app/public/img/content/liquefaction/label-en.png
new file mode 100644
index 0000000..cda5df7
Binary files /dev/null and b/app/public/img/content/liquefaction/label-en.png differ
diff --git a/app/public/img/content/liquefaction/label-jp.png b/app/public/img/content/liquefaction/label-jp.png
new file mode 100644
index 0000000..d9047b6
Binary files /dev/null and b/app/public/img/content/liquefaction/label-jp.png differ
diff --git a/app/public/img/content/seismic/Percentage-of-daily-stockpiling-jp.png b/app/public/img/content/seismic/Percentage-of-daily-stockpiling-jp.png
new file mode 100644
index 0000000..9128987
Binary files /dev/null and b/app/public/img/content/seismic/Percentage-of-daily-stockpiling-jp.png differ
diff --git a/app/public/img/content/seismic/Percentage-of-daily-stockpiling.png b/app/public/img/content/seismic/Percentage-of-daily-stockpiling.png
new file mode 100644
index 0000000..5d34ec9
Binary files /dev/null and b/app/public/img/content/seismic/Percentage-of-daily-stockpiling.png differ
diff --git a/app/public/img/content/seismic/Percentage-of-furniture-toppling-prevention-jp.png b/app/public/img/content/seismic/Percentage-of-furniture-toppling-prevention-jp.png
new file mode 100644
index 0000000..ece992b
Binary files /dev/null and b/app/public/img/content/seismic/Percentage-of-furniture-toppling-prevention-jp.png differ
diff --git a/app/public/img/content/seismic/Percentage-of-furniture-toppling-prevention.png b/app/public/img/content/seismic/Percentage-of-furniture-toppling-prevention.png
new file mode 100644
index 0000000..95e6398
Binary files /dev/null and b/app/public/img/content/seismic/Percentage-of-furniture-toppling-prevention.png differ
diff --git a/app/public/img/content/seismic/Percentage-of-houses-earthquake-proofed-jp.png b/app/public/img/content/seismic/Percentage-of-houses-earthquake-proofed-jp.png
new file mode 100644
index 0000000..772d9a8
Binary files /dev/null and b/app/public/img/content/seismic/Percentage-of-houses-earthquake-proofed-jp.png differ
diff --git a/app/public/img/content/seismic/Percentage-of-houses-earthquake-proofed.png b/app/public/img/content/seismic/Percentage-of-houses-earthquake-proofed.png
new file mode 100644
index 0000000..1259926
Binary files /dev/null and b/app/public/img/content/seismic/Percentage-of-houses-earthquake-proofed.png differ
diff --git a/app/public/img/content/seismic/usage-guide-jp.png b/app/public/img/content/seismic/usage-guide-jp.png
new file mode 100644
index 0000000..1ac56f4
Binary files /dev/null and b/app/public/img/content/seismic/usage-guide-jp.png differ
diff --git a/app/public/img/content/seismic/usage-guide.png b/app/public/img/content/seismic/usage-guide.png
new file mode 100644
index 0000000..4d55836
Binary files /dev/null and b/app/public/img/content/seismic/usage-guide.png differ
diff --git a/app/public/img/content/tutorial/tutorial-pc-en.png b/app/public/img/content/tutorial/tutorial-pc-en.png
new file mode 100644
index 0000000..b1918a2
Binary files /dev/null and b/app/public/img/content/tutorial/tutorial-pc-en.png differ
diff --git a/app/public/img/content/tutorial/tutorial-pc-jp.png b/app/public/img/content/tutorial/tutorial-pc-jp.png
new file mode 100644
index 0000000..c55f677
Binary files /dev/null and b/app/public/img/content/tutorial/tutorial-pc-jp.png differ
diff --git a/app/public/img/content/tutorial/tutorial-sp-en.png b/app/public/img/content/tutorial/tutorial-sp-en.png
new file mode 100644
index 0000000..cd59e75
Binary files /dev/null and b/app/public/img/content/tutorial/tutorial-sp-en.png differ
diff --git a/app/public/img/content/tutorial/tutorial-sp-jp.png b/app/public/img/content/tutorial/tutorial-sp-jp.png
new file mode 100644
index 0000000..1e8b1e3
Binary files /dev/null and b/app/public/img/content/tutorial/tutorial-sp-jp.png differ
diff --git a/app/public/img/logo.png b/app/public/img/logo.png
new file mode 100644
index 0000000..2e4b947
Binary files /dev/null and b/app/public/img/logo.png differ
diff --git a/app/public/img/logo_plateau.png b/app/public/img/logo_plateau.png
new file mode 100644
index 0000000..6131f38
Binary files /dev/null and b/app/public/img/logo_plateau.png differ
diff --git a/app/public/img/logo_yoko.png b/app/public/img/logo_yoko.png
new file mode 100644
index 0000000..bbc47c6
Binary files /dev/null and b/app/public/img/logo_yoko.png differ
diff --git a/app/public/img/marker.svg b/app/public/img/marker.svg
new file mode 100644
index 0000000..c4e9163
--- /dev/null
+++ b/app/public/img/marker.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/app/public/img/ogi.png b/app/public/img/ogi.png
new file mode 100644
index 0000000..b57cba3
Binary files /dev/null and b/app/public/img/ogi.png differ
diff --git a/app/public/img/opening/op1.webp b/app/public/img/opening/op1.webp
new file mode 100644
index 0000000..15c1bcf
Binary files /dev/null and b/app/public/img/opening/op1.webp differ
diff --git a/app/public/img/opening/op2.webp b/app/public/img/opening/op2.webp
new file mode 100644
index 0000000..6cba134
Binary files /dev/null and b/app/public/img/opening/op2.webp differ
diff --git a/app/public/img/opening/op3.webp b/app/public/img/opening/op3.webp
new file mode 100644
index 0000000..e9c2c69
Binary files /dev/null and b/app/public/img/opening/op3.webp differ
diff --git a/app/public/img/opening/op4.webp b/app/public/img/opening/op4.webp
new file mode 100644
index 0000000..99d4f40
Binary files /dev/null and b/app/public/img/opening/op4.webp differ
diff --git a/app/public/img/opening/op5.webp b/app/public/img/opening/op5.webp
new file mode 100644
index 0000000..c5ca7f0
Binary files /dev/null and b/app/public/img/opening/op5.webp differ
diff --git a/app/public/locales/en/translation.json b/app/public/locales/en/translation.json
new file mode 100644
index 0000000..632ffd8
--- /dev/null
+++ b/app/public/locales/en/translation.json
@@ -0,0 +1,555 @@
+{
+ "2012": "2012",
+ "2017": "2017",
+ "2022": "2022",
+ "content_navigation_header": "PLATEAU Earthquake Simulation Map",
+ "switch_sub_scene_button_1": "Earthquake in\nthe southern part",
+ "switch_sub_scene_button_2": "Earthquake in\nThe eastern part",
+ "Population: 9,733,276 people": "Population: 9,733,276",
+ "Wooden": "Wooden",
+ "Buildings": " ",
+ "Non wooden": "Non wooden",
+ "Etc.": "Etc.",
+ "Large damage": "Large\ndamage",
+ "No damage": "No\ndamage",
+ "Source: ": "Source: ",
+ "Legend": "Legend",
+ "September 1, 1923, at 11:58 a.m. An earthquake with an estimated magnitude of 7.9 occurred in the Sagami Trough. Intensity 6 was observed in Saitama, Chiba, Tokyo, Kanagawa, and Yamanashi prefectures. The areas currently marked in red on the map are the locations where fires occurred during the Great Kanto Earthquake.": "September 1, 1923, at 11:58 a.m.\nAn earthquake with an estimated magnitude of 7.9 occurred in the Sagami Trough.\nIntensity 6 was observed in Saitama, Chiba, Tokyo, Kanagawa, and Yamanashi prefectures.\nThe areas currently marked in red on the map are the locations where fires occurred during the Great Kanto Earthquake.",
+ "It is said that the number of dead and missing reached approximately 105,000 people. This disaster became the starting point for disaster preparedness in Japan, and September 1st was designated as \"Disaster Prevention Day.\" In 2023, it will have been 100 years since the Great Kanto Earthquake.": "It is said that the number of dead and missing reached approximately 105,000 people.\nThis disaster became the starting point for disaster preparedness in Japan,\nand September 1st was designated as \"Disaster Prevention Day.\"\nIn 2023, it will have been 100 years since the Great Kanto Earthquake.",
+ "Looking to the future. Preparing for the future. This site is a place to 'see' the future. Let's look together at what could happen in the near future with a high probability: major earthquakes such as the 'Tokyo Metropolitan Area South Subduction Earthquake' and the 'Tama Eastern Subduction Earthquake,' and what we can do about them.": "Looking to the future. Preparing for the future.\nThis site is a place to 'see' the future.\nLet's look together at what could happen in the near future with a high probability:\nmajor earthquakes such as the 'Tokyo Metropolitan Area South Subduction Earthquake'\nand the 'Tama Eastern Subduction Earthquake,' and what we can do about them.",
+ "SKIP": "SKIP",
+ "The photo is a colorized version of a photo from the time of the Great Kanto Earthquake. Photo courtesy: National Museum of Nature and Science, Colorization: Hidenori Watanabe.": "The photo is a colorized version of a photo from the time of the Great Kanto Earthquake.\nPhoto courtesy: National Museum of Nature and Science, Colorization: Hidenori Watanave.",
+ "Credit for this site: SP": "The Ministry of Land, Infrastructure, Transport and Tourism's Urban Bureau (Project PLATEAU) has created this website as a technical survey to assess the usefulness of new mapping techniques.
\"Past & Future for Action\" aims to establish a new expression method by combining the latest technologies such as Web GIS, storytelling, and 3D representation with art. Supervision: The University of Tokyo III and GSII Professor Hidenori Watanave Creative Direction: Panoramatiks Principal Seiichi Satio Production: Eukarya / Panoramatiks",
+ "Credit for this site: PC": "The Ministry of Land, Infrastructure, Transport and Tourism's Urban Bureau (Project PLATEAU) has created this website as a technical survey to assess the usefulness of new mapping techniques.
\"Past & Future for Action\" aims to establish a new expression method by combining the latest technologies such as Web GIS, storytelling, and 3D representation with art. Supervision: The University of Tokyo III and GSII Professor Hidenori Watanave Creative Direction: Panoramatiks Principal Seiichi Satio Production: Eukarya / Panoramatiks",
+ "stop": "stop",
+ "play": "play",
+ "startpage_title": "PLATEAU\n100 Years After\nthe Great Kanto\nEarthquake",
+ "startpage_sount_instruction": "Please enter this site with sound turned on.",
+ "lang_ja": "JA",
+ "lang_en": "EN",
+ "Tutorial areaSelector": "Select district",
+ "Tutorial langButton": "Lang switching",
+ "Tutorial soundButton": "Sound ON/OFF",
+ "Tutorial reportButton": "Report display",
+ "Play/Pause": "Play/Pause",
+ "Time sequence": "Time sequence",
+ "PcMenuButton": "Scene menu",
+ "SpMenuButton": "Menu",
+ "opening": "opening",
+ "Tokyo as it is today": "Tokyo as it is today",
+ "Earthquake in the southern and the eastern part of the metropolis": "Earthquake in the southern and the eastern part of the metropolis",
+ "Seismic intensity distribution": "Seismic intensity distribution",
+ "Distribution of the number of houses totally destroyed": "Distribution of the number of houses totally destroyed",
+ "Distribution of the number of buildings burned": "Distribution of the number of buildings burned",
+ "Liquefaction distribution of the earthquake": "Liquefaction distribution of the earthquake",
+ "Watch again from the beginning": "Watch again from the beginning",
+ "For the future How was the story of the past and future? So far, I have conveyed various perspectives on the risk of disasters. Disasters strike our daily lives without warning. The damage caused by significant tremors is tremendous, swiftly taking away the peaceful days that we had been enjoying.": "For the future\nHow was the story of the past and future?\nSo far, I have conveyed various perspectives on the risk of disasters.\nDisasters strike our daily lives without warning.\nThe damage caused by significant tremors is tremendous,\nswiftly taking away the peaceful days that we had been enjoying.",
+ "To overcome such hardships, we need human strength, bonds, and resilience. In recent years, lessons learned from large-scale disasters have led to steady progress in disaster preparedness measures by national and municipal governments.": "To overcome such hardships,\nwe need human strength, bonds, and resilience.\nIn recent years, lessons learned from large-scale disasters have led to steady progress\nin disaster preparedness measures by national and municipal governments.",
+ "NEXT": "NEXT",
+ "More Details": "More Details",
+ "Public Assistance Initiatives": "Public Assistance Initiatives",
+ "Seismic retrofitting rate for water pipes(Evacuation shelter, Main Station)": "Seismic retrofitting rate for water pipes(Evacuation shelter, Main Station)",
+ "Seismic retrofitting rate for buildings along designated transportation routes": "Seismic retrofitting rate for buildings along designated transportation routes",
+ "Progress of continuity planning in local governments": "Progress of continuity planning in local governments",
+ "Tokyo Disaster Reduction Plan Progress Report 2023": "Tokyo Disaster Reduction Plan Progress Report 2023",
+ "The \"damage estimation\" presented so far is based on data calculated to realistically reflect the situation of Tokyo as a major city. However, hypotheses always have exceptions. Natural disasters inherently involve unpredictable elements.": "The \"damage estimation\" presented so far is based on data calculated to realistically reflect the situation of Tokyo as a major city. However, hypotheses always have exceptions. Natural disasters inherently involve unpredictable elements.",
+ "The future is always uncertain. That's why we must not be confined only to expected outcomes but steadily implement preventive measures such as seismic strengthening and fireproofing in preparation for large earthquakes that may occur anytime and under any conditions. Being prepared is what creates hope for the future.": "The future is always uncertain. That's why we must not be confined only to expected outcomes but steadily implement preventive measures such as seismic strengthening and fireproofing in preparation for large earthquakes that may occur anytime and under any conditions. Being prepared is what creates hope for the future.",
+ "Percentage of public facilities serving as disaster prevention centers that are earthquake resistant": "Percentage of public facilities serving as disaster prevention centers that are earthquake resistant",
+ "Metropolitan area": "Metropolitan area",
+ "Nation wide": "Nation wide",
+ "Metropolitan Area White Paper 2023": "Metropolitan Area White Paper 2023",
+ "Furthermore, it is crucial to establish a comprehensive system to respond promptly according to the situation of disasters. Tokyo Metropolitan Government's disaster response system, centered around the Disaster Management Headquarters, is well-organized and collaborates with national, local government, and other agencies based on information from the Disaster Prevention Center to respond to disasters.": "Furthermore, it is crucial to establish a comprehensive system to respond promptly according to the situation of disasters.\nTokyo Metropolitan Government's disaster response system, centered around the Disaster Management Headquarters, is well-organized and collaborates with national, local government, and other agencies based on information from the Disaster Prevention Center to respond to disasters.",
+ "Tokyo Disaster Prevention System": "Tokyo Disaster Prevention System",
+ "Tokyo Metropolitan Government's Crisis Management System": "Tokyo Metropolitan Government's Crisis Management System",
+ "Based on the damage estimation, various agencies including the Tokyo Metropolitan Government, municipalities, and others will revise local disaster prevention plans and implement various measures to prepare for future disasters. And when a large earthquake occurs, it is essential for each citizen, community, businesses, and society as a whole to work together to minimize damage. We must join forces to protect lives and preserve what is precious.": "Based on the damage estimation, various agencies including the Tokyo Metropolitan Government, municipalities, and others will revise local disaster prevention plans and implement various measures to prepare for future disasters.\nAnd when a large earthquake occurs, it is essential for each citizen, community, businesses, and society as a whole to work together to minimize damage. We must join forces to protect lives and preserve what is precious.",
+ "Society-Wide Initiatives": "Society-Wide Initiatives",
+ "Municipalities, government agencies, each citizen, and private businesses - by collaborating with each other, we can pave the way for tomorrow. Self-help, mutual assistance, and public support. Let's gather all our strengths and face the challenge of large earthquakes together.": "Municipalities, government agencies, each citizen, and private businesses - by collaborating with each other , we can pave the way for tomorrow. Self-help, mutual assistance, and public support.\nLet's gather all our strengths and face the challenge of large earthquakes together.",
+ "Let’s Get Prepared": "Let’s Get Prepared",
+ "Disaster Preparedness Tokyo": "Disaster Preparedness Tokyo",
+ "\"Disaster Preparedness Tokyo\" is a fully Tokyo-specific disaster preparedness guide that takes into account Tokyo's regional characteristics, urban structure, and the lifestyle of its residents. It provides easy-to-understand information on proactive preparation for disasters, as well as how to respond during emergencies, making it a valuable resource that can be utilized immediately and proves useful when the need arises.": "\"Disaster Preparedness Tokyo\" is a fully Tokyo-specific disaster preparedness guide that takes into account Tokyo's regional characteristics, urban structure, and the lifestyle of its residents. It provides easy-to-understand information on proactive preparation for disasters, as well as how to respond during emergencies, making it a valuable resource that can be utilized immediately and proves useful when the need arises.",
+ "Disaster Readiness Guide": "Disaster Readiness Guide",
+ "It includes disaster prevention measures that can be easily implemented in daily life, such as breastfeeding and crime prevention measures in evacuation shelters, as well as solutions to various challenges faced during disaster-affected living conditions.": "It includes disaster prevention measures that can be easily implemented in daily life, such as breastfeeding and crime prevention measures in evacuation shelters, as well as solutions to various challenges faced during disaster-affected living conditions.",
+ "The Disaster Preparedness Tokyo App": "The Disaster Preparedness Tokyo App",
+ "It is the official Tokyo disaster prevention app that is useful both in everyday life and in times of emergency. With the concept of 'play,' 'learn,' and 'use,' it is equipped with content that is helpful during disasters, allowing users to gain basic knowledge of disaster prevention in an enjoyable way.": "It is the official Tokyo disaster prevention app that is useful both in everyday life and in times of emergency. With the concept of 'play,' 'learn,' and 'use,' it is equipped with content that is helpful during disasters, allowing users to gain basic knowledge of disaster prevention in an enjoyable way.",
+ "Things to Do Before a Disaster Strikes": "Things to Do Before a Disaster Strikes",
+ "It's a website that summarizes what you can do before a disaster strikes, including how to arrange furniture, what to stockpile, and a checklist for emergency evacuation bags.": "It's a website that summarizes what you can do before a disaster strikes, including how to arrange furniture, what to stockpile, and a checklist for emergency evacuation bags.",
+ "Reference Links and Sources": "Reference Links and Sources",
+ "Burned buildings distribution": "Burned buildings distribution",
+ "When the Central South Region Earthquake occurs, it is estimated that up to approximately 120,000 houses could be lost due to fires. This number represents about 4% of the entire Tokyo area, excluding the island regions.": "When the Central South Region Earthquake occurs, it is estimated that up to approximately 120,000 houses could be lost due to fires. This number represents about 4% of the entire Tokyo area, excluding the island regions.",
+ "Table: List of number of burned buildings (including shaking damage) at wind speed of 8m/s": "Table: List of number of burned buildings (including shaking damage) at wind speed of 8m/s",
+ "Report on Assumed Damage to Tokyo from a Metropolitan Earthquake, etc.": "Report on Assumed Damage to Tokyo from a Metropolitan Earthquake, etc.",
+ "Central South Burned Buildings": "Central South Burned Buildings",
+ "Actions for fireproofing in the previous decade": "Actions for fireproofing in the previous decade",
+ "In Tokyo, there are densely populated wooden housing areas centered around the Yamanote Line outer loop. To prevent the spread of fires, the \"10-Year Fireproofing Project for Mokumitsu Areas\" was launched. This project aimed to create areas (fire spread prevention zones) that prevent fires from spreading and simultaneously promote fireproofing in areas expected to suffer particularly severe damage during disasters (development areas).": "In Tokyo, there are densely populated wooden housing areas centered around the Yamanote Line outer loop. To prevent the spread of fires, the \"10-Year Fireproofing Project for Mokumitsu Areas\" was launched. This project aimed to create areas (fire spread prevention zones) that prevent fires from spreading and simultaneously promote fireproofing in areas expected to suffer particularly severe damage during disasters (development areas) .",
+ "As a result, the density of wooden housing areas decreased from approximately 16 thousand hectares to approximately 8.6 thousand hectares. The fire-resistant area rate in urban areas (development areas), which indicates the fire resistance of the city, increased significantly from about 58.4% to about 64.0%.": "As a result, the density of wooden housing areas decreased from approximately 16 thousand hectares to approximately 8.6 thousand hectares. The fire-resistant area rate in urban areas (development areas), which indicates the fire resistance of the city, increased significantly from about 58.4% to about 64.0%.",
+ "However, the number of firefighting brigade members, who play a crucial role in regional disaster prevention activities such as firefighting and rescue operations, decreased from approximately 24,000 to approximately 22,000.": "However, the number of firefighting brigade members, who play a crucial role in regional disaster prevention activities such as firefighting and rescue operations, decreased from approximately 24,000 to approximately 22,000.",
+ "Disaster Prevention Information | Major Initiatives and Disaster Reduction Effects Over the Past 10 Years": "Disaster Prevention Information | Major Initiatives and Disaster Reduction Effects Over the Past 10 Years",
+ "Bureau of Construction | Introduction to the \"Mokumitsu Project\"": "Bureau of Construction | Introduction to the \"Mokumitsu Project\"",
+ "The fire-resistant area rate in urban areas (development area)": "The fire-resistant area rate in urban areas (development area)",
+ "Major initiatives and disaster mitigation effects over the past 10 years": "Major initiatives and disaster mitigation effects over the past 10 years",
+ "The effectiveness and challenges of fireproofing": "The effectiveness and challenges of fireproofing",
+ "From 2012 to 2022, Tokyo has made efforts in fireproofing, resulting in a decrease in the estimated number of buildings lost due to fires from about 200,000 to about 120,000, and a reduction in fire-related deaths from about 4,100 to about 2,500. However, significant damage is still anticipated, and there are concerns about the decline in the number of firefighting brigade members, leading to a decrease in the overall disaster prevention capacity of the region. This highlights the need for further efforts in both hardware and software measures to address the challenges effectively.": "From 2012 to 2022, Tokyo has made efforts in fireproofing, resulting in a decrease in the estimated number of buildings lost due to fires from about 200,000 to about 120,000, and a reduction in fire-related deaths from about 4,100 to about 2,500. However, significant damage is still anticipated, and there are concerns about the decline in the number of firefighting brigade members, leading to a decrease in the overall disaster prevention capacity of the region. This highlights the need for further efforts in both hardware and software measures to address the challenges effectively.",
+ "2012 estimated": "2012 estimated",
+ "2022 estimated": "2022 estimated",
+ "Number of buildings burned (buildings)": "Number of buildings burned (buildings)",
+ "Number of buildings burned": "Number of buildings burned",
+ "Approximately": "~",
+ "Number of deaths by fire (persons)": "Number of deaths by fire (persons)",
+ "Number of deaths": "Number of deaths",
+ "Measures for fire outbreak suppression": "Measures for fire outbreak suppression",
+ "To reduce damage caused by fires, it is crucial to decrease the number of fire incidents. Let's examine the effectiveness of fire outbreak suppression measures.": "To reduce damage caused by fires, it is crucial to decrease the number of fire incidents. Let's examine the effectiveness of fire outbreak suppression measures.",
+ "Here, we will look at the impact of implementing fire outbreak suppression measures, specifically focusing on reducing electrical-related fires and increasing the cases that can be extinguished at an early stage.": "Here, we will look at the impact of implementing fire outbreak suppression measures, specifically focusing on reducing electrical-related fires and increasing the cases that can be extinguished at an early stage.",
+ "Currently, the rate of reducing electrical-related fires is set at 8.3%, indicated by the \"installation rate of seismic breakers.\" Additionally, the early extinguishment rate during the Tokyo Metropolitan Area Direct Subsurface Earthquake (winter, evening, wind speed of 8m/s) is 36.6%. We will consider the effects of implementing measures up to \"Accelerator 1\" (reducing electrical-related fires by about 25% and increasing early extinguishment by about 60%) and \"Accelerator 2\" (reducing electrical-related fires by about 50% and increasing early extinguishment by about 90%).": "Currently, the rate of reducing electrical-related fires is set at 8.3%, indicated by the \"installation rate of seismic breakers.\" Additionally, the early extinguishment rate during the Tokyo Metropolitan Area Direct Subsurface Earthquake (winter, evening, wind speed of 8m/s) is 36.6%. We will consider the effects of implementing measures up to \"Accelerator 1\" (reducing electrical-related fires by about 25% and increasing early extinguishment by about 60%) and \"Accelerator 2\" (reducing electrical-related fires by about 50% and increasing early extinguishment by about 90%).",
+ "Calculation criteria for fire suppression measures' effectiveness": "Calculation criteria for fire suppression measures' effectiveness",
+ "Effect of fire prevention initiative": "Effect of fire prevention initiative",
+ "If \"Accelerator 1\" is achieved, it is estimated that both the number of burnt buildings and the number of fatalities will decrease by approximately 70% compared to the current situation. Furthermore, if \"Accelerator 2\" is achieved, both the number of burnt buildings and the number of fatalities can be reduced by an additional approximately 60% from \"Accelerator 1,\" which corresponds to a 90% reduction from the current situation.": "If \"Accelerator 1\" is achieved, it is estimated that both the number of burnt buildings and the number of fatalities will decrease by approximately 70% compared to the current situation. Furthermore, if \"Accelerator 2\" is achieved, both the number of burnt buildings and the number of fatalities can be reduced by an additional approximately 60% from \"Accelerator 1,\" which corresponds to a 90% reduction from the current situation.",
+ "Impact of mitigation measures on fire and loss cases(Central South Region Earthquake,Winter/afternoon/at wind speed of 8m/s)": "Impact of mitigation measures on fire and loss cases\n(Central South Region Earthquake,Winter/afternoon/at wind speed of 8m/s)",
+ "Present condition": "Present condition",
+ "Improvement①": "Improvement①",
+ "Improvement②": "Improvement②",
+ "Approximately 70% reduction": "Approximately 70% reduction",
+ "Approximately 60% reduction": "Approximately 60% reduction",
+ "Impact of measures on death toll": "Impact of measures on death toll",
+ "Report on \"Estimation of damage in the event of an earthquake directly hitting Tokyo\"": "Report on \"Estimation of damage in the event of an earthquake directly hitting Tokyo\"",
+ "Collapsed buildings distribution": "Collapsed buildings distribution",
+ "Total destruction refers to buildings that have lost the basic functions necessary for habitation. This includes cases where the entire residence has collapsed, washed away, buried, or burned down. Additionally, severe damage to the residence that makes it difficult to restore and reuse through repairs also falls under 'total destruction.' This refers to cases where the damaged, burned, or washed away area of the residence accounts for 70% or more of the total floor area. Furthermore, if the economic damage suffered by the main components of the residence accounts for 50% or more of the total economic loss, it is also considered 'total destruction.'": "Total destruction refers to buildings that have lost the basic functions necessary for habitation. This includes cases where the entire residence has collapsed, washed away, buried, or burned down. Additionally, severe damage to the residence that makes it difficult to restore and reuse through repairs also falls under 'total destruction.' This refers to cases where the damaged, burned, or washed away area of the residence accounts for 70% or more of the total floor area. Furthermore, if the economic damage suffered by the main components of the residence accounts for 50% or more of the total economic loss, it is also considered 'total destruction.'",
+ "*\"Shaking\" includes damage to man-made land.": "*\"Shaking\" includes damage to man-made land.",
+ "*Totals may not add up due to rounding to the nearest whole number.": "*Totals may not add up due to rounding to the nearest whole number.",
+ "Report on Assumed Damage to Tokyo from an Earthquake, etc., Directly Under the Tokyo Metropolitan Area": "Report on Assumed Damage to Tokyo from an Earthquake, etc., Directly Under the Tokyo Metropolitan Area",
+ "Collapse rate within the area range": "Number of collapses within the area area",
+ "Increase in seismic retrofitting rate": "Increase in seismic retrofitting rate",
+ "Tokyo has been working on initiatives to improve the seismic resistance ratio in order to reduce building and human damage caused by shaking. As of 2020, the seismic resistance ratio of residential buildings in Tokyo is 92%. Furthermore, there is a need to promote seismic retrofitting for buildings constructed before 1980, which were built according to older seismic standards. By rebuilding or retrofitting all buildings to meet the Building Standards Act (1981 Standards) implemented since June 1981, the damage can be further reduced. Moreover, if all buildings are rebuilt to meet the Building Standards Act (2000 Standards) implemented since June 2000, it will lead to even greater reduction in damage.": "Tokyo has been working on initiatives to improve the seismic resistance ratio in order to reduce building and human damage caused by shaking. As of 2020, the seismic resistance ratio of residential buildings in Tokyo is 92%. Furthermore, there is a need to promote seismic retrofitting for buildings constructed before 1980, which were built according to older seismic standards. By rebuilding or retrofitting all buildings to meet the Building Standards Act (1981 Standards) implemented since June 1981, the damage can be further reduced. Moreover, if all buildings are rebuilt to meet the Building Standards Act (2000 Standards) implemented since June 2000, it will lead to even greater reduction in damage.",
+ "Seismic retrofitting outcomes": "Seismic retrofitting outcomes",
+ "100% earthquake resistant": "100% earthquake resistant",
+ "All rebuilt": "All rebuilt",
+ "Number of buildings totally destroyed due to shaking (buildings)": "Number of buildings totally destroyed due to shaking (buildings)",
+ "Total number of buildings": "Total number of buildings",
+ "Number of deaths due to shaking (persons)": "Number of deaths due to shaking (persons)",
+ "Approximately 50% reduction": "Approximately 50% reduction",
+ "If seismic retrofitting according to the '1981 Standards (New Seismic Standards)' is achieved, it is estimated that the number of completely collapsed buildings and fatalities will decrease by about 60% compared to the current situation. If seismic retrofitting according to the '2000 Standards' is achieved, it is estimated that the number of completely collapsed buildings and fatalities will decrease by an additional approximately 50% compared to seismic retrofitting based on the '1981 Standards (New Seismic Standards)' (a total reduction of about 80% from the current situation).": "If seismic retrofitting according to the '1981 Standards (New Seismic Standards)' is achieved, it is estimated that the number of completely collapsed buildings and fatalities will decrease by about 60% compared to the current situation.\nIf seismic retrofitting according to the '2000 Standards' is achieved, it is estimated that the number of completely collapsed buildings and fatalities will decrease by an additional approximately 50% compared to seismic retrofitting based on the '1981 Standards (New Seismic Standards)' (a total reduction of about 80% from the current situation).",
+ "*Depending on the magnitude of the earthquake shaking, even buildings based on the 2000 standard may suffer a certain degree of damage, so the damage will not be zero.": "*Depending on the magnitude of the earthquake shaking, even buildings based on the 2000 standard may suffer a certain degree of damage, so the damage will not be zero.",
+ "Increase in the implementation rate of measures for preventing furniture and object tipping/falling, and the resultant outcomes": "Increase in the implementation rate of measures for preventing furniture and object tipping/falling, and the resultant outcomes",
+ "Number of deaths (persons)": "Number of deaths (persons)",
+ "Number of seriously injured (persons)": "Number of seriously injured (persons)",
+ "Number of seriously injured": "Number of seriously injured",
+ "Approximately 40% reduction": "Approximately 40% reduction",
+ "Implementing measures to prevent furniture and objects from toppling, falling, and moving is believed to reduce the number of fatalities and severe injuries. As of 2020, the implementation rate is 57.3%. If this rate is increased to 75% (Accelerator 1), it is expected to reduce the number of fatalities and severe injuries by about 40% from the current situation. Furthermore, if it is increased to 100% (Accelerator 2), an estimated reduction of about 70% is anticipated.": "Implementing measures to prevent furniture and objects from toppling, falling, and moving is believed to reduce the number of fatalities and severe injuries . As of 2020, the implementation rate is 57.3%. If this rate is increased to 75% (Accelerator 1), it is expected to reduce the number of fatalities and severe injuries by about 40% from the current situation. Furthermore, if it is increased to 100% (Accelerator 2), an estimated reduction of about 70% is anticipated.",
+ "It's important to note that even if furniture and objects are fixed, if they are not properly secured, the effectiveness of implementation can be reduced. Therefore, promoting the proper method of securing furniture through future dissemination and awareness campaigns is expected to further mitigate damages.": "It's important to note that even if furniture and objects are fixed, if they are not properly secured, the effectiveness of implementation can be reduced. Therefore, promoting the proper method of securing furniture through future dissemination and awareness campaigns is expected to further mitigate damages.",
+ "*It is assumed that the percentage of ineffective implementation will be reduced to 10% by encouraging appropriate fall prevention measures.": "*It is assumed that the percentage of ineffective implementation will be reduced to 10% by encouraging appropriate fall prevention measures.",
+ "Liquefaction area distribution": "Liquefaction area distribution",
+ "When an earthquake occurs and the ground experiences a strong impact, soil particles that were previously supporting each other become loose and disjointed. This phenomenon is known as liquefaction.": "When an earthquake occurs and the ground experiences a strong impact, soil particles that were previously supporting each other become loose and disjointed. This phenomenon is known as liquefaction .",
+ "During liquefaction, water may spout out from the ground, stable ground can suddenly become soft, leading to buildings sinking or tilting, and buried manholes or pipes may surface. The ground as a whole may also flow towards lower areas.": "During liquefaction, water may spout out from the ground, stable ground can suddenly become soft, leading to buildings sinking or tilting, and buried manholes or pipes may surface. The ground as a whole may also flow towards lower areas.",
+ "Ministry of Land, Infrastructure, Transport and Tourism \"About the Liquefaction Phenomenon\"": "Ministry of Land, Infrastructure, Transport and Tourism \"About the Liquefaction Phenomenon\"",
+ "Anticipated damages caused by liquefaction": "Anticipated damages caused by liquefaction",
+ "In reclaimed areas, coastal areas, and bay areas, liquefaction occurrences are anticipated. Liquefaction can lead to complete collapse of buildings, especially in regions like the Tokyo Bay coastal reclaimed areas and riverbanks, where approximately 1,500 buildings could be affected in the event of the Central South Region Earthquake.": "In reclaimed areas, coastal areas, and bay areas, liquefaction occurrences are anticipated. Liquefaction can lead to complete collapse of buildings, especially in regions like the Tokyo Bay coastal reclaimed areas and riverbanks, where approximately 1,500 buildings could be affected in the event of the Central South Region Earthquake.",
+ "In areas with seismic intensity of lower than or equal to 6, not only building collapses are expected but also the leaning or sinking of utility poles due to liquefaction, which could lead to power outages.": "In areas with seismic intensity of lower than or equal to 6, not only building collapses are expected but also the leaning or sinking of utility poles due to liquefaction, which could lead to power outages.",
+ "Reflecting on past liquefaction incidents, various impacts have been observed, including the spouting of water and sand, sinking or tilting of detached houses, deformation of roads, and damage to lifeline facilities. The effects of liquefaction-related damages on post-earthquake life are extensive and diverse, and their occurrence in combination can result in a prolonged impact period.": "Reflecting on past liquefaction incidents, various impacts have been observed, including the spouting of water and sand, sinking or tilting of detached houses, deformation of roads, and damage to lifeline facilities. The effects of liquefaction-related damages on post-earthquake life are extensive and diverse, and their occurrence in combination can result in a prolonged impact period .",
+ "Strategies to prevent liquefaction": "Strategies to prevent liquefaction",
+ "To reduce liquefaction damage in residential areas, a proactive approach by residents and businesses, along with prompt response from authorities during disasters, is crucial. Administrative-led preemptive measures aligned with community initiatives are essential.": "To reduce liquefaction damage in residential areas, a proactive approach by residents and businesses, along with prompt response from authorities during disasters, is crucial. Administrative-led preemptive measures aligned with community initiatives are essential.",
+ "The Ministry of Land, Infrastructure, Transport and Tourism has published guidelines for creating liquefaction hazard maps to facilitate risk communication. Promoting the creation of liquefaction hazard maps at the local level using available resources and increasing awareness about liquefaction-related risks can enhance community disaster resilience.": "The Ministry of Land, Infrastructure, Transport and Tourism has published guidelines for creating liquefaction hazard maps to facilitate risk communication. Promoting the creation of liquefaction hazard maps at the local level using available resources and increasing awareness about liquefaction-related risks can enhance community disaster resilience.",
+ "Guidelines for Creating Liquefaction Hazard Maps for Risk Communication": "Guidelines for Creating Liquefaction Hazard Maps for Risk Communication",
+ "In the event of the central south region earthquake, areas with seismic intensity of 6 strong or higher are expected to be concentrated in the eastern and southwestern parts of the wards. The area with seismic intensity of 7 is approximately 14 km², while the area with seismic intensity of 6 strong is about 388 km².": "In the event of the central south region earthquake, areas with seismic intensity of 6 strong or higher are expected to be concentrated in the eastern and southwestern parts of the wards. The area with seismic intensity of 7 is approximately 14 km², while the area with seismic intensity of 6 strong is about 388 km².",
+ "Impact on Capital Functions": "Impact on Capital Functions",
+ "The central south region earthquake is expected to have a significant impact on the capital functions. Additionally, there are concerns about the impact on transportation networks such as Shinkansen and airports located in the southern part of Tokyo, as well as the risk of fire spread in areas densely populated with wooden houses. Therefore, the 'central south region earthquake' is considered a central earthquake in the considerations for earthquake countermeasures directly beneath the capital.": "The central south region earthquake is expected to have a significant impact on the capital functions. Additionally, there are concerns about the impact on transportation networks such as Shinkansen and airports located in the southern part of Tokyo, as well as the risk of fire spread in areas densely populated with wooden houses. Therefore, the 'central south region earthquake' is considered a central earthquake in the considerations for earthquake countermeasures directly beneath the capital .",
+ "Report on \"Estimation of damage in the event of an earthquake directly hitting Tokyo\" set": "Report on \"Estimation of damage in the event of an earthquake directly hitting Tokyo\"",
+ "Efforts and Disaster Reduction Effects Over the Past 10 Years": "Efforts and Disaster Reduction Effects Over the Past 10 Years",
+ "Tokyo has been making efforts to enhance disaster resilience in preparation for earthquakes such as capital region earthquakes since the 2011 off the Pacific coast of Tohoku Earthquake. Here, let's first examine the efforts made over the past 10 years in terms of seismic strengthening, fireproofing, self-help, and mutual assistance, and the anticipated disaster reduction effects resulting from these efforts.": "Tokyo has been making efforts to enhance disaster resilience in preparation for earthquakes such as capital region earthquakes since the 2011 off the Pacific coast of Tohoku Earthquake. Here, let's first examine the efforts made over the past 10 years in terms of seismic strengthening , fireproofing , self-help, and mutual assistance , and the anticipated disaster reduction effects resulting from these efforts.",
+ "Earthquake Resistance": "Earthquake Resistance",
+ "In Tokyo, efforts have been made to promote \"earthquake resistance.\" Firstly, comprehensive plans have been developed to promote the seismic strengthening of buildings, and ordinances have been established to advance earthquake resistance. Since 2012, there has been a push for mandatory seismic diagnosis. Buildings along designated emergency transport routes, crucial for evacuation, emergency services, and the transportation of essential supplies during disasters, are required to undergo seismic diagnosis. This initiative also includes subsidies for renovation costs. Since 2018, the results of seismic diagnosis have been publicly disclosed. Additionally, financial support and the dispatch of experts to municipalities have been provided. These efforts aim to accelerate seismic diagnosis and renovation of residential buildings. Tokyo has also implemented its unique \"Tokyo Seismic Mark Display System\" and conducted various awareness and promotion activities from different perspectives.": "In Tokyo, efforts have been made to promote \"earthquake resistance .\" Firstly, comprehensive plans have been developed to promote the seismic strengthening of buildings, and ordinances have been established to advance earthquake resistance. Since 2012, there has been a push for mandatory seismic diagnosis . Buildings along designated emergency transport routes, crucial for evacuation, emergency services, and the transportation of essential supplies during disasters, are required to undergo seismic diagnosis. This initiative also includes subsidies for renovation costs . Since 2018, the results of seismic diagnosis have been publicly disclosed . Additionally, financial support and the dispatch of experts to municipalities have been provided. These efforts aim to accelerate seismic diagnosis and renovation of residential buildings. Tokyo has also implemented its unique \"Tokyo Seismic Mark Display System\" and conducted various awareness and promotion activities from different perspectives.",
+ "Anticipated Disaster Reduction Effects": "Anticipated Disaster Reduction Effects",
+ "The seismic retrofitting rate for buildings along designated emergency transport routes has increased by approximately 10.3% (from 81.3% to about 91.6%), and the seismic retrofitting rate for residences has increased by approximately 10.8% (from 81.2% to about 92.0%).": "The seismic retrofitting rate for buildings along designated emergency transport routes has increased by approximately 10.3% (from 81.3% to about 91.6%), and the seismic retrofitting rate for residences has increased by approximately 10.8% (from 81.2% to about 92.0%).",
+ "Seismic retrofitting rate for housing": "Seismic retrofitting rate for housing",
+ "Self-help and Mutual Assistance": "Self-help and Mutual Assistance",
+ "We created and distributed 'Disaster Preparedness Tokyo' and 'Disaster Readiness Guide,' which compile information for disaster preparedness and self-protection. Through 'Tokyo Stockpiling Navi,' we promoted stockpiling of food, daily necessities, and other essentials. Furthermore, we conducted training for disaster coordinators to develop female leadership. We have been promoting awareness through activities such as holding 'Tokyo Disaster Preparedness Learning Seminar' at various locations in Tokyo.": "We created and distributed 'Disaster Preparedness Tokyo ' and 'Disaster Readiness Guide, ' which compile information for disaster preparedness and self-protection. Through 'Tokyo Stockpiling Navi, ' we promoted stockpiling of food, daily necessities, and other essentials. Furthermore, we conducted training for disaster coordinators to develop female leadership. We have been promoting awareness through activities such as holding 'Tokyo Disaster Preparedness Learning Seminar' at various locations in Tokyo.",
+ "Implementation rate of measures for preventing furniture and object tipping/falling": "Implementation rate of measures for preventing furniture and object tipping/falling",
+ "Implementation rate of daily stockpiling": "Implementation rate of daily stockpiling",
+ "As a result, the implementation rate of measures such as preventing furniture from toppling increased from about 53.6% to about 57.3%, and the implementation rate of daily stockpiling increased from about 46.4% to about 56.3%. (*The changes from fiscal year 2017)": "As a result, the implementation rate of measures such as preventing furniture from toppling increased from about 53.6% to about 57.3%, and the implementation rate of daily stockpiling increased from about 46.4% to about 56.3%.\n(*The changes from fiscal year 2017)",
+ "If an earthquake were to occur in Tokyo?": "If an earthquake were to occur in Tokyo?",
+ "Ready for the future": "Ready for the future",
+ "A magnitude 7 earthquake is anticipated in the event of a capital region earthquake, with a probability of occurrence within the next 30 years estimated at around 70% in the southern Kanto region. Tokyo Metropolitan Government has been enhancing disaster preparedness to mitigate potential disasters such as capital region earthquakes. To protect lives and properties from disasters that can occur at any time, efforts in 'self-help' and 'mutual assistance' are necessary in addition to the government's 'public support' initiatives. Here, let's explore the expected damage overview in the event of an earthquake in Tokyo and the disaster prevention measures that the metropolitan government has implemented.": "A magnitude 7 earthquake is anticipated in the event of a capital region earthquake, with a probability of occurrence within the next 30 years estimated at around 70% in the southern Kanto region. Tokyo Metropolitan Government has been enhancing disaster preparedness to mitigate potential disasters such as capital region earthquakes. To protect lives and properties from disasters that can occur at any time, efforts in 'self-help' and 'mutual assistance' are necessary in addition to the government's 'public support' initiatives. Here, let's explore the expected damage overview in the event of an earthquake in Tokyo and the disaster prevention measures that the metropolitan government has implemented.",
+ "The Regional Characteristics of Tokyo Metropolitan Area": "The Regional Characteristics of Tokyo Metropolitan Area",
+ "Tokyo Metropolitan Area has an elongated shape from east to west, characterized by significant differences in altitude. It includes various areas ranging from mountain ranges exceeding 2,000 meters above sea level to zero altitude zones.": "Tokyo Metropolitan Area has an elongated shape from east to west , characterized by significant differences in altitude . It includes various areas ranging from mountain ranges exceeding 2,000 meters above sea level to zero altitude zones.",
+ "Tokyo Metropolitan Area is divided into two regions: \"inland\" and \"island areas.\" The inland region consists of four types of terrain: mountains, hills, plateaus, and lowlands. The island areas include islands like the Izu Islands and Ogasawara Islands, located on the western side of the Pacific Ocean.": "Tokyo Metropolitan Area is divided into two regions: \"inland \" and \"island areas .\" The inland region consists of four types of terrain: mountains, hills, plateaus, and lowlands. The island areas include islands like the Izu Islands and Ogasawara Islands, located on the western side of the Pacific Ocean.",
+ "Furthermore, Tokyo features areas with rows of aging wooden houses, office districts with towering skyscrapers, zones along the bay with high-rise apartments, and lowland areas in the eastern part where the land becomes lower than the sea level at high tide. Disaster preparedness measures tailored to each region's characteristics are necessary.": "Furthermore, Tokyo features areas with rows of aging wooden houses , office districts with towering skyscrapers , zones along the bay with high-rise apartments , and lowland areas in the eastern part where the land becomes lower than the sea level at high tide. Disaster preparedness measures tailored to each region's characteristics are necessary.",
+ "Number of buildings in Tokyo 23 ward": "Number of buildings in Tokyo 23 ward",
+ "Central South Region Earthquake": "Central South Region Earthquake",
+ "\"Central South Region Earthquake\" is anticipated to be the most severe earthquake within Tokyo. In the event of this earthquake, it is estimated that the seismic intensity of 6 strong or higher will spread across about 60% of the wards. The expected death toll could reach a maximum of around 6,000 people. It is anticipated that approximately 190,000 buildings will be damaged.": "\"Central South Region Earthquake \" is anticipated to be the most severe earthquake within Tokyo. In the event of this earthquake, it is estimated that the seismic intensity of 6 strong or higher will spread across about 60% of the wards. The expected death toll could reach a maximum of around 6,000 people. It is anticipated that approximately 190,000 buildings will be damaged.",
+ "Tokyo Fire Department | Guidebook for High School Student Members:Chapter 5": "Tokyo Fire Department | Guidebook for High School Student Members:Chapter 5",
+ "Tama East Region Earthquake": "Tama East Region Earthquake",
+ "\"Tama East Region Earthquake\" is expected to cause significant damage in the Tama region. It is estimated that the seismic intensity of 6 strong or higher will spread across about 20% of the Tama area. Building damage is projected to affect approximately 160,000 buildings, with an anticipated death toll of around 5,000 people.": "\"Tama East Region Earthquake \" is expected to cause significant damage in the Tama region. It is estimated that the seismic intensity of 6 strong or higher will spread across about 20% of the Tama area. Building damage is projected to affect approximately 160,000 buildings, with an anticipated death toll of around 5,000 people.",
+ "Let's take a look at the distribution of burned buildings by municipalities on a map.": "Let's take a look at the distribution of\nburned buildings by 23 wards of Tokyo on a map.",
+ "Have you identified any areas where you live or where your school/workplace is located? This data could be a starting point for researching fireproofing measures for nearby locations.": "Have you identified any areas where you live or where your school/workplace is located? This data could be a starting point for researching fireproofing measures for nearby locations.",
+ "Let's take a look at the distribution of burned buildings by municipalities on a map. Have you identified any areas where you live or where your school/workplace is located? This data could be a starting point for researching fireproofing measures for nearby locations.": "Let's take a look at the distribution of burned buildings by 23 wards of Tokyo on a map.\nHave you identified any areas where you live or where your school/workplace is located? This data could be a starting point for researching fireproofing measures for nearby locations.",
+ "Disclaimer": "Disclaimer",
+ "Please be aware that we cannot accept any responsibility for any loss or damage to life, body, or property that may occur in activities based on information provided on this site. Our site may experience temporary delays or interruptions without prior notice to users due to reasons such as communication network equipment, system failures, maintenance, or other unavoidable circumstances.Even in the event of delays, interruptions, or other issues with the display, we cannot accept any responsibility for damages incurred by users or other third parties resulting from these issues.Please understand these conditions in advance.": "Please be aware that we cannot accept any responsibility for any loss or damage to life, body, or property that may occur in activities based on information provided on this site.\nOur site may experience temporary delays or interruptions without prior notice to users due to reasons such as communication network equipment, system failures, maintenance, or other unavoidable circumstances.Even in the event of delays, interruptions, or other issues with the display, we cannot accept any responsibility for damages incurred by users or other third parties resulting from these issues.Please understand these conditions in advance.",
+ "Not to be displayed in the future": "Not to be displayed in the future",
+ "Tokyo earthquake-resistant portal site": "Tokyo earthquake-resistant portal site",
+ "Tutorial text": "How to use",
+ "Skip": "Skip",
+ "This site is constructed by the Urban Bureau of the Ministry of Land, Infrastructure, Transport and Tourism (Project PLATEAU) as a technical study to verify the usefulness of new map expression techniques. \"Past & Future for Action\" aims to establish new expressive techniques combining the latest technologies and art, such as Web GIS, storytelling, and 3D expression.": "This site is constructed by the Urban Bureau of the Ministry of Land, Infrastructure, Transport and Tourism (Project PLATEAU) as a technical study to verify the usefulness of new map expression techniques.\n\"Past & Future for Action\" aims to establish new expressive techniques combining the latest technologies and art, such as Web GIS, storytelling, and 3D expression.",
+ "Supervisor: Hidenori Watanabe, Professor, Interfaculty Initiative in Information Studies, Graduate School of Interdisciplinary Information Studies, The University of Tokyo Art Direction: Seiichi Saito, Chief Director of Panoramatics": "Supervisor: Hidenori Watanave, Professor, Interfaculty Initiative in Information Studies, Graduate School of Interdisciplinary Information Studies, The University of Tokyo\nArt Direction: Seiichi Saito, Chief Director of Panoramatics",
+ "Production: Eukarya / Panoramatics": "Production: Eukarya / Panoramatics",
+ "Tokyo Disaster Preparedness Plan Progress Report 2023": "Tokyo Disaster Preparedness Plan Progress Report 2023",
+ "Annual Report on Capital Region Development": "Annual Report on Capital Region Development",
+ "Tutorial skipping": "Skip tutorial",
+ "Table: List of the calculation results of the number of buildings burned (wind speed: 8 m/s, including shaking damage)": "Table: List of the calculation results of the number of buildings burned (wind speed: 8 m/s, including shaking damage)",
+ "Burned down in the southern part of the city center (number of buildings)": "Burned down in the southern part of the city center (number of buildings)",
+ "Percentage of noncombustible area (maintenance area)": "Percentage of noncombustible area (maintenance area)",
+ "Calculation Conditions for the Effects of Fire Prevention Measures": "Calculation Conditions for the Effects of Fire Prevention Measures",
+ "Effects of Measures on Number of Fire Outbreaks and Number of Buildings Lost to Fire\n(Earthquake directly under the southern part of Tokyo Metropolitan City, Winter/Evening, Wind Speed 8m/s)": "Effects of Measures on Number of Fire Outbreaks and Number of Buildings Lost to Fire\n(Earthquake directly under the southern part of Tokyo Metropolitan City, Winter/Evening, Wind Speed 8m/s)",
+ "Effects of Measures on Number of Deaths": "Effects of Measures on Number of Deaths",
+ "Collapse rate within the area": "Number of collapses within the area",
+ "Percentage of houses earthquake-proofed": "Percentage of houses earthquake-proofed",
+ "Percentage of furniture toppling prevention, etc.": "Percentage of furniture toppling prevention, etc.",
+ "Percentage of daily stockpiling": "Percentage of daily stockpiling",
+ "Tutorial playButton": "Scene switching",
+ "September 1, 1923, 11:58 a.m..\nAn earthquake estimated to be 7.9 on the Richter scale occurred in the Sagami Trough.\nThe magnitude 6 earthquake was observed in Saitama, Chiba, Tokyo, Kanagawa, and Yamanashi prefectures.\nThe area shown in red on the map now,\nThe area shown in red on the map is the area where fires broke out during the Great Kanto Earthquake.": "September 1, 1923, 11:58 a.m..\nAn earthquake estimated to be 7.9 on the Richter scale occurred in the Sagami Trough.\nThe magnitude 6 earthquake was observed in Saitama, Chiba, Tokyo, Kanagawa, and Yamanashi prefectures.\nThe area shown in red on the map now,\nThe area shown in red on the map is the area where fires broke out during the Great Kanto Earthquake.",
+ "The number of dead and missing is said to have reached approximately 105,000.\nThis disaster became the starting point of Japan's disaster countermeasures,\nSeptember 1 was designated as \"Disaster Prevention Day.\"\nThe year 2023 marks the 100th anniversary of the Great Kanto Earthquake.": "The number of dead and missing is said to have reached approximately 105,000.\nThis disaster became the starting point of Japan's disaster countermeasures,\nSeptember 1 was designated as \"Disaster Prevention Day.\"\nThe year 2023 marks the 100th anniversary of the Great Kanto Earthquake.",
+ "Looking to the future. Prepare for the future.\nThis site is a place to \"see\" the future.\nMajor earthquakes that are expected to occur with high probability in the near future\n\"Earthquake directly under the southern part of central Tokyo\" and \"Earthquake directly under the eastern part of Tama\"\nLet's look at what could happen and what we can do together.": "Looking to the future. Prepare for the future.\nThis site is a place to \"see\" the future.\nMajor earthquakes that are expected to occur with high probability in the near future\n\"Earthquake directly under the southern part of central Tokyo\" and \"Earthquake directly under the eastern part of Tama\"\nLet's look at what could happen and what we can do together.",
+ "*The photos are colorized versions of the photos taken at the time of the Great Kanto Earthquake. Photo collection: National Museum of Nature and Science Colorization: Hidenori Watanabe": "*The photos are colorized versions of the photos taken at the time of the Great Kanto Earthquake.\n Photo collection: National Museum of Nature and Science Colorization: Hidenori Watanave",
+ "How was this story of the past and the future? So far, we have told you about the risks of earthquakes from various angles. Disasters strike our daily lives without warning. The damage caused by a major quake is horrendous, and it can take away the peace and tranquility that has continued uninterruptedly in an instant.": "For the future\nHow was this story of the past and the future?\nSo far, we have told you about\nthe risks of earthquakes from various angles.\nDisasters strike our daily lives without warning.\nThe damage caused by a major quake is horrendous,\nand it can take away the peace and tranquility\nthat has continued uninterruptedly in an instant.",
+ "Overcoming such hardships requires human strength, bonding, and resilience. Lessons learned from recent large-scale disasters and other factors have led to steady progress in national and metropolitan disaster preparedness.": "Overcoming such hardships requires\nhuman strength, bonding, and resilience.\nLessons learned from recent large-scale disasters\nand other factors have led to steady progress\nin national and metropolitan disaster preparedness.",
+ "The \"damage assumptions\" introduced so far are data calculated to reflect the reality of the metropolis of Tokyo as realistically as possible. However, there are always exceptions to assumptions. Natural disasters, by their very nature, are difficult to predict.": "The \"damage assumptions\" introduced so far are data calculated to reflect the reality of the metropolis of Tokyo as realistically as possible. However, there are always exceptions to assumptions. Natural disasters, by their very nature, are difficult to predict.",
+ "The future is always uncertain. That is why we must not be preoccupied with hypothetical outcomes, but must steadily advance preventive measures such as earthquake resistance and noncombustibility in preparation for a major earthquake, which may occur at any time and under any conditions. Prevention is the only way to create hope for the future.": "The future is always uncertain. That is why we must not be preoccupied with hypothetical outcomes, but must steadily advance preventive measures such as earthquake resistance and noncombustibility in preparation for a major earthquake, which may occur at any time and under any conditions. Prevention is the only way to create hope for the future.",
+ "It is also important to have a complete system in place to be able to respond quickly to disaster situations. The Tokyo Metropolitan Government's disaster prevention system is centered on the Disaster Control Headquarters, which responds to disasters in cooperation with the national government, municipalities, and other organizations based on information from the Disaster Prevention Center.": "It is also important to have a complete system in place to be able to respond quickly to disaster situations.\nThe Tokyo Metropolitan Government's disaster prevention system is centered on the Disaster Control Headquarters, which responds to disasters in cooperation with the national government, municipalities, and other organizations based on information from the Disaster Prevention Center.",
+ "Based on the damage estimates, the Tokyo Metropolitan Government, local governments, and other relevant organizations should prepare for future disasters by revising local disaster prevention plans and developing various measures. In the event of a large-scale earthquake, it is essential that the entire society, including each and every citizen, community, and business, work together to minimize the damage. We must work together to save lives and protect what is important to us.": "Based on the damage estimates, the Tokyo Metropolitan Government, local governments, and other relevant organizations should prepare for future disasters by revising local disaster prevention plans and developing various measures.\nIn the event of a large-scale earthquake, it is essential that the entire society, including each and every citizen, community, and business, work together to minimize the damage. We must work together to save lives and protect what is important to us.",
+ "Local governments and administrative agencies, each and every citizen of Tokyo, and private businesses. By mutually cooperating with each other, we can open up a new tomorrow. Self-help, mutual aid, and public assistance. Let's face a large-scale earthquake by mobilizing all our strength.": "Local governments and administrative agencies, each and every citizen of Tokyo, and private businesses. By mutually cooperating with each other , we can open up a new tomorrow. Self-help, mutual aid, and public assistance. Let's face a large-scale earthquake by mobilizing all our strength.",
+ "Prepare Now": "Prepare Now",
+ "Tokyo Disaster Prevention": "Tokyo Disaster Prevention",
+ "The \"Tokyo Disaster Prevention\" is an easy-to-understand, complete disaster prevention book designed for Tokyo, taking into consideration the regional characteristics of Tokyo, the urban structure, and the lifestyles of Tokyo residents, and providing useful information on how to prepare for disasters in advance and what to do in case of an emergency.": "The \"Tokyo Disaster Prevention\" is an easy-to-understand, complete disaster prevention book designed for Tokyo, taking into consideration the regional characteristics of Tokyo, the urban structure, and the lifestyles of Tokyo residents, and providing useful information on how to prepare for disasters in advance and what to do in case of an emergency.",
+ "Tokyo Living Disaster Prevention": "Tokyo Living Disaster Prevention",
+ "It includes disaster prevention measures that can be taken effortlessly in daily life, as well as methods for dealing with various issues in disaster-stricken life, such as breastfeeding and crime prevention measures at evacuation centers.": "It includes disaster prevention measures that can be taken effortlessly in daily life, as well as methods for dealing with various issues in disaster-stricken life, such as breastfeeding and crime prevention measures at evacuation centers.",
+ "Tokyo Disaster Prevention App": "Tokyo Disaster Prevention App",
+ "This is the Tokyo Metropolitan Government's official disaster prevention application that is useful at all times and in case of emergency. Based on the concept of \"play\", \"learn\" and \"use\" the application provides basic knowledge about disaster prevention while having fun, and is equipped with content that is useful in times of disaster.": "This is the Tokyo Metropolitan Government's official disaster prevention application that is useful at all times and in case of emergency. Based on the concept of \"play\", \"learn\" and \"use\" the application provides basic knowledge about disaster prevention while having fun, and is equipped with content that is useful in times of disaster.",
+ "What you can do before disaster strikes": "What you can do before disaster strikes",
+ "This site provides information on what you can do before a disaster occurs, including how to place furniture, what to stockpile, and a checklist for an emergency carryout bag.": "This site provides information on what you can do before a disaster occurs, including how to place furniture, what to stockpile, and a checklist for an emergency carryout bag.",
+ "Distribution of Number of Buildings Lost to Fire in Earthquake directly under the southern part of Tokyo Metropolitan City": "Distribution of Number of Buildings Lost to Fire",
+ "In the event of an Earthquake directly under the southern part of Tokyo Metropolitan City, it is estimated that up to approximately 120,000 houses will be lost to fires. This number accounts for about 4% of all of Tokyo, excluding the island areas.": "In the event of an Earthquake directly under the southern part of Tokyo Metropolitan City, it is estimated that up to approximately 120,000 houses will be lost to fires. This number accounts for about 4% of all of Tokyo, excluding the island areas.",
+ "Noncombustibility Efforts in the past 10 years": "Noncombustibility Efforts in the past 10 years",
+ "Regarding \"fireproofing,\" measures have been taken from two perspectives. Areas with high concentrations of wooden houses (dense wooden areas) are spread mainly around the outer perimeter of the Yamanote Line in Tokyo. Therefore, the \"10-Year Project for Fireproofing Dense Wooden Areas\" was set forth to simultaneously create areas (fire-spread prevention zones) to prevent the spread of fires and to fireproof areas (improvement areas) where damage is likely to be significant.": "Regarding \"fireproofing \", measures have been taken from two perspectives. Areas with high concentrations of wooden houses (dense wooden areas) are spread mainly around the outer perimeter of the Yamanote Line in Tokyo. Therefore, the \"10-Year Project for Fireproofing Dense Wooden Areas\" was set forth to simultaneously create areas (fire-spread prevention zones) to prevent the spread of fires and to fireproof areas (improvement areas) where damage is likely to be significant .",
+ "As a result, the density of areas with high concentrations of wooden houses significantly improved from approximately 16,000 ha to approximately 8,600 ha, and the fire-resistant area rate (improvement areas), which represents the fire resistance of urban areas, significantly improved from approximately 58.4% to approximately 64.0%.": "As a result, the density of areas with high concentrations of wooden houses significantly improved from approximately 16,000 ha to approximately 8,600 ha, and the fire-resistant area rate (improvement areas), which represents the fire resistance of urban areas, significantly improved from approximately 58.4% to approximately 64.0%.",
+ "On the other hand, the number of volunteer fire corps members, who play an important role in regional disaster prevention such as firefighting and rescue activities, has decreased from approximately 24,000 to approximately 22,000.": "On the other hand, the number of volunteer fire corps members, who play an important role in regional disaster prevention such as firefighting and rescue activities, has decreased from approximately 24,000 to approximately 22,000.",
+ "Effects and Challenges of Fireproofing": "Effects and Challenges of Fireproofing",
+ "As a result of the Tokyo Metropolitan Government's efforts to promote fireproofing measures over the 10 years from 2012 to 2022, the estimated number of buildings lost to fire has decreased from approximately 200,000 to approximately 120,000, and the number of deaths due to fire has decreased from approximately 4,100 to approximately 2,500. However, the situation is still one in which enormous damage is anticipated.\nIn addition, there are concerns about the decline in regional disaster prevention capabilities, such as the decrease in the number of volunteer fire corps members, so further efforts are needed not only in terms of hardware but also in terms of software measures.": "As a result of the Tokyo Metropolitan Government's efforts to promote fireproofing measures over the 10 years from 2012 to 2022, the estimated number of buildings lost to fire has decreased from approximately 200,000 to approximately 120,000, and the number of deaths due to fire has decreased from approximately 4,100 to approximately 2,500. However, the situation is still one in which enormous damage is anticipated.\nIn addition, there are concerns about the decline in regional disaster prevention capabilities, such as the decrease in the number of volunteer fire corps members, so further efforts are needed not only in terms of hardware but also in terms of software measures.",
+ "Fire suppression measures": "Fire suppression measures",
+ "To reduce damage from fires, it is important to reduce the number of fires that occur in the first place. So, let's look at how effective fire prevention measures can be if implemented.": "To reduce damage from fires, it is important to reduce the number of fires that occur in the first place. So, let's look at how effective fire prevention measures can be if implemented.",
+ "Here, we will look at the effects of further promoting two fire prevention measures: \"reducing fires caused by electricity\" and \"increasing cases where fires can be extinguished in the initial stage.\"\nAs for the current situation, the percentage of fires caused by electricity that can be reduced is 8.3%, which is the \"installation rate of seismic circuit breakers.\" The initial fire extinguishing rate is 36.6%. From here, we will consider the case where measures can be taken up to \"Promotion ①\" (reducing fires by about 25% and extinguishing about 60% in the initial stage) and the case where measures can be taken up to \"Promotion ②\" (reducing fires by about 50% and extinguishing about 90% in the initial stage).": "Here, we will look at the effects of further promoting two fire prevention measures: \"reducing fires caused by electricity\" and \"increasing cases where fires can be extinguished in the initial stage.\"\nAs for the current situation, the percentage of fires caused by electricity that can be reduced is 8.3%, which is the \"installation rate of seismic circuit breakers.\" The initial fire extinguishing rate is 36.6%. From here, we will consider the case where measures can be taken up to \"Promotion ①\" (reducing fires by about 25% and extinguishing about 60% in the initial stage) and the case where measures can be taken up to \"Promotion ②\" (reducing fires by about 50% and extinguishing about 90% in the initial stage).",
+ "Effects of Fire Prevention Measures": "Effects of Fire Prevention Measures",
+ "If Promotion ① is realized, it is estimated that the number of buildings lost to fire and the number of deaths will decrease by about 70% compared to the current situation. In addition, if Promotion ② is realized, the number of buildings lost to fire and the number of deaths can be further reduced by about 60% from Promotion ①, which is equivalent to a 90% reduction from the current situation.": "If Promotion ① is realized, it is estimated that the number of buildings lost to fire and the number of deaths will decrease by about 70% compared to the current situation. In addition, if Promotion ② is realized, the number of buildings lost to fire and the number of deaths can be further reduced by about 60% from Promotion ①, which is equivalent to a 90% reduction from the current situation.",
+ "Distribution of the number of houses totally destroyed by the earthquake directly under the southern part of the Tokyo metropolitan area": "Distribution of the number of houses totally destroyed",
+ "\"Completely destroyed\" refers to buildings that have lost their basic function as a place to live and have suffered damage to 70% or more of their floor area. Additionally, if the economic damage to the main structural components of a residence accounts for 50% or more of the entire house, it is also considered \"completely destroyed.\"": "Completely destroyed refers to buildings that have lost their basic function as a place to live and have suffered damage to 70% or more of their floor area. Additionally, if the economic damage to the main structural components of a residence accounts for 50% or more of the entire house, it is also considered \"completely destroyed.\"",
+ "Increase in earthquake resistance rate": "Increase in earthquake resistance rate",
+ "The Tokyo Metropolitan Government has been working to improve the seismic resistance rate with the aim of reducing building damage and human casualties caused by shaking. As of 2020, the seismic resistance rate of housing in Tokyo is 92%. Further efforts are needed to promote seismic resistance of buildings constructed before 1980 under the old seismic standards. If all buildings were rebuilt or seismically reinforced to meet the Building Standards Law enacted in June 1981 (1981 standards), damage could be further reduced. In addition, if all buildings were rebuilt to meet the Building Standards Law enacted in June 2000 (2000 standards), damage could be reduced even further.": "The Tokyo Metropolitan Government has been working to improve the seismic resistance rate with the aim of reducing building damage and human casualties caused by shaking. As of 2020, the seismic resistance rate of housing in Tokyo is 92%. Further efforts are needed to promote seismic resistance of buildings constructed before 1980 under the old seismic standards. If all buildings were rebuilt or seismically reinforced to meet the Building Standards Law enacted in June 1981 (1981 standards), damage could be further reduced. In addition, if all buildings were rebuilt to meet the Building Standards Law enacted in June 2000 (2000 standards), damage could be reduced even further.",
+ "Effects of Seismic Resistance": "Effects of Seismic Resistance",
+ "If seismic resistance based on the \"1981 standards (new seismic standards)\" is realized, it is estimated that the number of completely destroyed buildings and deaths will decrease by approximately 60% compared to the current situation.\nIf seismic resistance based on the \"2000 standards\" is realized, it is estimated that the number of completely destroyed buildings and deaths will further decrease by approximately 50% compared to seismic resistance based on the \"1981 standards (new seismic standards)\" (approximately 80% decrease from the current situation).": "If seismic resistance based on the \"1981 standards (new seismic standards)\" is realized, it is estimated that the number of completely destroyed buildings and deaths will decrease by approximately 60% compared to the current situation.\nIf seismic resistance based on the \"2000 standards\" is realized, it is estimated that the number of completely destroyed buildings and deaths will further decrease by approximately 50% compared to seismic resistance based on the \"1981 standards (new seismic standards)\" (approximately 80% decrease from the current situation).",
+ "Improvement of Implementation Rate of Measures to Prevent Furniture from Falling Over and Its Effects": "Improvement of Implementation Rate of Measures to Prevent Furniture from Falling Over and Its Effects",
+ "It is believed that implementing measures to prevent furniture and other items from falling over, falling, or moving can reduce the number of deaths and serious injuries. As of 2020, the implementation rate is 57.3%. If this rate is increased to 75% (promotion ①), a 40% reduction from the current situation is expected. Furthermore, if it is increased to 100% (promotion ①), a 70% reduction from there is expected.": "It is believed that implementing measures to prevent furniture and other items from falling over, falling, or moving can reduce the number of deaths and serious injuries . As of 2020, the implementation rate is 57.3%. If this rate is increased to 75% (promotion ①), a 40% reduction from the current situation is expected. Furthermore, if it is increased to 100% (promotion ①), a 70% reduction from there is expected.",
+ "Even if furniture is fixed, if it is not fixed properly, the effectiveness of the measure will be reduced, so caution is necessary. Through future promotion and awareness-raising efforts, we aim to further reduce damage by promoting the proper fixing of furniture.": "Even if furniture is fixed, if it is not fixed properly, the effectiveness of the measure will be reduced, so caution is necessary. Through future promotion and awareness-raising efforts, we aim to further reduce damage by promoting the proper fixing of furniture.",
+ "Liquefaction distribution of the earthquake directly under the southern part of the Tokyo metropolitan area": "Liquefaction distribution",
+ "When an earthquake occurs and the ground receives a strong impact, the soil particles that were previously in contact with and supporting each other become loose, and the phenomenon of the entire ground becoming like a muddy liquid occurs. This is called liquefaction.": "When an earthquake occurs and the ground receives a strong impact, the soil particles that were previously in contact with and supporting each other become loose, and the phenomenon of the entire ground becoming like a muddy liquid occurs. This is called liquefaction .",
+ "When liquefaction occurs, water gushes out from the ground, and the ground that was previously stable suddenly becomes soft, causing phenomena such as buildings standing on it to sink (or tilt), manholes and buried pipes buried in the ground to float up, and the entire ground to flow out toward lower areas.": "When liquefaction occurs, water gushes out from the ground, and the ground that was previously stable suddenly becomes soft, causing phenomena such as buildings standing on it to sink (or tilt), manholes and buried pipes buried in the ground to float up, and the entire ground to flow out toward lower areas.",
+ "Estimation of Damage Caused by Liquefaction": "Estimation of Damage Caused by Liquefaction",
+ "Liquefaction is expected to occur in reclaimed land, coastal areas, and bay areas. It is estimated that up to approximately 1,500 buildings will be completely destroyed due to liquefaction.\nIn areas with a seismic intensity of 6-lower or higher, it is expected that not only buildings will collapse, but also utility poles will tilt or sink due to liquefaction, leading to power outages.": "Liquefaction is expected to occur in reclaimed land, coastal areas, and bay areas. It is estimated that up to approximately 1,500 buildings will be completely destroyed due to liquefaction.\nIn areas with a seismic intensity of 6-lower or higher, it is expected that not only buildings will collapse, but also utility poles will tilt or sink due to liquefaction, leading to power outages.",
+ "Looking back at past liquefaction damage, the impact of liquefaction damage on post-earthquake life is massive and diverse, such as the occurrence of water fountains and sand boils, subsidence and tilting of detached houses, deformation of road surfaces, and damage to lifeline facilities. These impacts occur in a complex manner, and the duration of the impact is prolonged.": "Looking back at past liquefaction damage, the impact of liquefaction damage on post-earthquake life is massive and diverse, such as the occurrence of water fountains and sand boils, subsidence and tilting of detached houses, deformation of road surfaces, and damage to lifeline facilities. These impacts occur in a complex manner, and the duration of the impact is prolonged .",
+ "Countermeasures against Liquefaction": "Countermeasures against Liquefaction",
+ "In order to mitigate liquefaction damage in residential areas, it is important for residents and businesses to take their own daily precautions in conjunction with pre-disaster countermeasure projects led by the government, as well as prompt responses by the government when a disaster occurs.\nThe Ministry of Land, Infrastructure, Transport and Tourism has published the \"Guidelines for Creating Liquefaction Hazard Maps for Risk Communication\" and is promoting the creation of liquefaction hazard maps.\nIn the future, it is expected that the creation of liquefaction hazard maps in each local government will progress through the utilization of materials related to liquefaction, and that interest in liquefaction damage to residential land will increase, leading to an improvement in regional disaster prevention capabilities.": "In order to mitigate liquefaction damage in residential areas, it is important for residents and businesses to take their own daily precautions in conjunction with pre-disaster countermeasure projects led by the government, as well as prompt responses by the government when a disaster occurs.\nThe Ministry of Land, Infrastructure, Transport and Tourism has published the \"Guidelines for Creating Liquefaction Hazard Maps for Risk Communication\" and is promoting the creation of liquefaction hazard maps.\nIn the future, it is expected that the creation of liquefaction hazard maps in each local government will progress through the utilization of materials related to liquefaction, and that interest in liquefaction damage to residential land will increase, leading to an improvement in regional disaster prevention capabilities.",
+ "Seismic Intensity Distribution": "Seismic Intensity Distribution",
+ "In the event of an Earthquake directly under the southern part of Tokyo Metropolitan City, areas with a seismic intensity of 6-upper or higher are expected to be concentrated mainly in the eastern and southwestern parts of the ward area. The area with a seismic intensity of 7 is approximately 14 km², and the area with a seismic intensity of 6-upper is approximately 388 km².": "In the event of an Earthquake directly under the southern part of Tokyo Metropolitan City, areas with a seismic intensity of 6-upper or higher are expected to be concentrated mainly in the eastern and southwestern parts of the ward area. The area with a seismic intensity of 7 is approximately 14 km², and the area with a seismic intensity of 6-upper is approximately 388 km².",
+ "The Earthquake directly under the southern part of Tokyo Metropolitan City is expected to have a significant direct impact on the functions of the capital. There are also concerns about the impact on transportation networks such as the Shinkansen and airports located in the southern part of Tokyo, as well as the risk of fire spreading in areas with a high concentration of wooden houses. Therefore, the \"Earthquake directly under the southern part of Tokyo Metropolitan City\" is considered to be the central focus when considering countermeasures for earthquakes directly under the capital.": "The Earthquake directly under the southern part of Tokyo Metropolitan City is expected to have a significant direct impact on the functions of the capital. There are also concerns about the impact on transportation networks such as the Shinkansen and airports located in the southern part of Tokyo, as well as the risk of fire spreading in areas with a high concentration of wooden houses. Therefore, \"the Earthquake directly under the southern part of Tokyo Metropolitan City\" is considered to be the central focus when considering countermeasures for earthquakes directly under the capital. ",
+ "Full Set of Reports on Damage Estimates for Tokyo Due to Major Earthquakes Such as an Earthquake Directly Under the Capital": "Reports on Damage Estimates for Tokyo Due to Major Earthquakes Such as an Earthquake Directly Under the Capital",
+ "10 Years of Efforts and Disaster Mitigation Effects": "10 Years of Efforts and Disaster Mitigation Effects",
+ "Since the Great East Japan Earthquake, the Tokyo Metropolitan Government has been working to enhance its disaster preparedness in preparation for major earthquakes such as one directly under the capital. Here, we will first look at the efforts made over the past 10 years and the assumed disaster mitigation effects from the perspectives of seismic resistance, fireproofing, and self-help and mutual assistance.": "Since the Great East Japan Earthquake, the Tokyo Metropolitan Government has been working to enhance its disaster preparedness in preparation for major earthquakes such as one directly under the capital. Here, we will first look at the efforts made over the past 10 years and the assumed disaster mitigation effects from the perspectives of \"seismic resistance,\" \"fireproofing,\" and \"self-help and mutual assistance.\" ",
+ "Major Efforts and Disaster Mitigation Effects over 10 Years": "Major Efforts and Disaster Mitigation Effects over 10 Years",
+ "Earthquake-proofing": "Earthquake-proofing",
+ "The Tokyo Metropolitan Government has been promoting \"seismic resistance.\" First, plans were formulated and ordinances were enacted to comprehensively promote the seismic resistance of buildings. Starting in 2012, mandatory diagnosis was implemented. Buildings adjacent to \"emergency transportation roads\" that serve as major arteries for evacuation, emergency rescue, firefighting, and emergency goods transportation during an earthquake are now required to undergo seismic diagnosis. Subsidies for renovation costs were also started in conjunction with this. Starting in 2018, the results of seismic diagnosis are required to be disclosed. In addition, financial support is provided to wards, cities, and towns, and experts are dispatched. While promoting seismic diagnosis and seismic retrofitting of housing, Tokyo's unique \"Tokyo Seismic Mark Display System\" and other measures have also been implemented. Efforts have been made to raise awareness from various perspectives.": "",
+ "Possible disaster mitigation effects": "Possible disaster mitigation effects",
+ "The seismic resistance rate of buildings along designated emergency transportation roads has increased by approximately 10.3% (from 81.3% to approximately 91.6%), and the seismic resistance rate of housing has increased by approximately 10.8% (from 81.2% to approximately 92.0%).": "The seismic resistance rate of buildings along designated emergency transportation roads has increased by approximately 10.3% (from 81.3% to approximately 91.6%), and the seismic resistance rate of housing has increased by approximately 10.8% (from 81.2% to approximately 92.0%).",
+ "Self-help and mutual aid": "Self-help and mutual aid",
+ "To prepare for disasters, the \"Tokyo Disaster Preparedness\" and \"Tokyo Life Disaster Preparedness\" manuals were created and distributed, compiling information on how to protect oneself. The \"Tokyo Stockpile Navigation\" promotes the stockpiling of food, daily necessities, and other items. In addition, training for disaster prevention coordinators to develop female leadership personnel has been conducted. Awareness-raising activities have been promoted, such as holding the \"Tokyo Disaster Prevention Learning Seminar\" at various locations throughout Tokyo.": "To prepare for disasters, the \"Tokyo Disaster Preparedness\" and \"Tokyo Life Disaster Preparedness\" manuals were created and distributed, compiling information on how to protect oneself. The \"Tokyo Stockpile Navigation\" promotes the stockpiling of food, daily necessities, and other items. In addition, training for disaster prevention coordinators to develop female leadership personnel has been conducted. Awareness-raising activities have been promoted, such as holding the \"Tokyo Disaster Prevention Learning Seminar\" at various locations throughout Tokyo.",
+ "As a result, the implementation rate of measures such as preventing furniture from falling over improved from approximately 53.6% to approximately 57.3%, and the implementation rate of daily stockpiling* improved from approximately 46.4% to approximately 56.3%.\n(*Change from FY2017)": "As a result, the implementation rate of measures such as preventing furniture from falling over improved from approximately 53.6% to approximately 57.3%, and the implementation rate of daily stockpiling* improved from approximately 46.4% to approximately 56.3%.\n(*Change from FY2017)",
+ "What if there is an earthquake in Tokyo?": "What if there is an earthquake in Tokyo?",
+ "Prepare for the future": "Prepare for the future",
+ "An earthquake of magnitude 7 or so is expected to occur directly under the Tokyo metropolitan area.": "An earthquake of magnitude 7 or so is expected to occur directly under the Tokyo metropolitan area. The probability of occurrence within 30 years is estimated to be around 70%. The Tokyo Metropolitan Government has been promoting the reinforcement of disaster prevention capabilities in preparation for such an earthquake. In order to protect people's lives and property from disasters that could occur at any time, it is necessary to promote \"self-help\" and \"mutual aid\" efforts in addition to \"public assistance\" efforts by the Tokyo Metropolitan Government. In this section, we will outline the damage that could be expected in the event of an earthquake in Tokyo, and look at the disaster prevention measures that the Tokyo Metropolitan Government has taken so far.",
+ "Regional Characteristics of Tokyo": "Regional Characteristics of Tokyo",
+ "Tokyo is long and narrow from east to west. It is characterized by large differences in altitude, ranging from mountains over 2,000 meters in elevation to zones with no elevation above sea level. Tokyo is divided into \"inland areas\" and \"island areas\". The inland area consists of four types of terrain: mountains, hills, plateaus, and lowlands, while the island areas include the Izu and Ogasawara Islands on the western side of the Pacific Ocean. There are also areas with rows of dilapidated wooden houses, office areas with high-rise buildings, the bay area with its forests of high-rise condominiums, and the eastern low-lying areas where the land is lower than the sea at high tide, requiring disaster countermeasures tailored to the characteristics of each region.": "Tokyo is long and narrow from east to west . It is characterized by large differences in altitude , ranging from mountains over 2,000 meters in elevation to zones with no elevation above sea level. Tokyo is divided into \"inland areas \" and \"island areas \". The inland area consists of four types of terrain: mountains, hills, plateaus, and lowlands, while the island areas include the Izu and Ogasawara Islands on the western side of the Pacific Ocean. There are also areas with rows of dilapidated wooden houses , office areas with high-rise buildings , the bay area with its forests of high-rise condominiums , and the eastern low-lying areas where the land is lower than the sea at high tide, requiring disaster countermeasures tailored to the characteristics of each region.",
+ "Earthquake in the southern part of the metropolis": "Earthquake in the southern part of the metropolis",
+ "An earthquake directly under the southern part of central Tokyo is expected to cause the greatest damage in Tokyo. In the event of this earthquake, it is said that the seismic intensity of 6 or higher will extend over approximately 60% of the wards of the city. The maximum number of fatalities expected is approximately 6,000. It is estimated that about 190,000 buildings will be damaged.": "An earthquake directly under the southern part of central Tokyo is expected to cause the greatest damage in Tokyo. In the event of this earthquake, it is said that the seismic intensity of 6 or higher will extend over approximately 60% of the wards of the city. The maximum number of fatalities expected is approximately 6,000. It is estimated that about 190,000 buildings will be damaged.",
+ "Tokyo Fire Department, Firefighting Boys and Girls Brigade: A Guide for High School Students, Chapter 5.": "Tokyo Fire Department, \"Firefighting Boy's and Girl's Brigade: A Guide for High School Students,\"",
+ "Earthquake directly under the Tama East": "Earthquake directly under the Tama East",
+ "In the event of an earthquake directly under the eastern part of Tama, the Tama region is expected to be severely damaged. The seismic intensity of 6 or higher is expected to extend over approximately 20% of the Tama region. It is estimated that approximately 160,000 buildings will be damaged and approximately 5,000 people will be killed.": "In the event of an earthquake directly under the eastern part of Tama, the Tama region is expected to be severely damaged. The seismic intensity of 6 or higher is expected to extend over approximately 20% of the Tama region. It is estimated that approximately 160,000 buildings will be damaged and approximately 5,000 people will be killed.",
+ "By replacing the 3D graphs with planes for each region, different perspectives can be observed.": "By replacing the 3D graphs with planes for each region, different perspectives can be observed.",
+ "Please note that we are not responsible for any loss or damage to life, body, or property that may occur as a result of activities based on information provided by this site.This Site may be temporarily delayed or interrupted without prior notice to users due to communication line equipment, system failure, maintenance, or other unavoidable reasons.This site shall not be liable for any damages incurred by users or other third parties resulting from such delays or interruptions.": "Please note that we are not responsible for any loss or damage to life, body, or property that may occur as a result of activities based on information provided by this site.This Site may be temporarily delayed or interrupted without prior notice to users due to communication line equipment, system failure, maintenance, or other unavoidable reasons.This site shall not be liable for any damages incurred by users or other third parties resulting from such delays or interruptions.",
+ "Tokyo Metropolitan Government Earthquake Resistance Portal Site": "Tokyo Metropolitan Government Earthquake Resistance Portal Site",
+ "Earthquake directly under the southern part of Tokyo Metropolitan City": "Earthquake directly under the southern part of Tokyo Metropolitan City",
+ "An earthquake directly under the Tokyo capital region could occur anywhere within the city. The \"Earthquake directly under the southern part of Tokyo Metropolitan City\" is considered to be the earthquake that would cause the most damage to Tokyo, but if the epicenter were to occur in a different location, the seismic intensity and damage to each region would vary greatly. Therefore, it is important to always be prepared for the worst-case scenario.": "An earthquake directly under the Tokyo capital region could occur anywhere within the city. \"The Earthquake directly under the southern part of Tokyo Metropolitan City \" is considered to be the earthquake that would cause the most damage to Tokyo, but if the epicenter were to occur in a different location, the seismic intensity and damage to each region would vary greatly. Therefore, it is important to always be prepared for the worst-case scenario.",
+ "Tokyo Disaster Prevention: Potential Damage Around You": "Tokyo Disaster Prevention: Potential Damage Around You",
+ "For the future": "For the future",
+ "Tokyo has a high concentration of housing and urban functions. Therefore, if a large-scale earthquake occurs in Tokyo, it could cause enormous damage to people's lives and property, and there is a risk that it will become difficult to maintain the functions of the capital. On the other hand, thanks to lessons learned from recent large-scale disasters and other factors, the disaster prevention measures of the national and Tokyo metropolitan governments have been steadily progressing.": "Tokyo has a high concentration of housing and urban functions. Therefore, if a large-scale earthquake occurs in Tokyo, it could cause enormous damage to people's lives and property , and there is a risk that it will become difficult to maintain the functions of the capital. On the other hand, thanks to lessons learned from recent large-scale disasters and other factors, the disaster prevention measures of the national and Tokyo metropolitan governments have been steadily progressing. ",
+ "In the \"damage estimates\" we have seen so far, we have tried to reflect as much as possible the situation of how efforts to realize a safe and secure Tokyo are progressing, as well as changes in the population structure and other aspects of the reality of the major city of Tokyo. In addition, the damage estimates were conducted using the latest data that has become available due to technological advances and the latest knowledge based on recent large-scale earthquakes.": "In the \"damage estimates\" we have seen so far, we have tried to reflect as much as possible the situation of how efforts to realize a safe and secure Tokyo are progressing, as well as changes in the population structure and other aspects of the reality of the major city of Tokyo. In addition, the damage estimates were conducted using the latest data that has become available due to technological advances and the latest knowledge based on recent large-scale earthquakes.",
+ "Nevertheless, damage estimates are conducted based on assumptions. Since natural phenomena involve large uncertainties, there are certain limitations to the estimation results.": "Nevertheless, damage estimates are conducted based on assumptions. Since natural phenomena involve large uncertainties, there are certain limitations to the estimation results.",
+ "Rather than being caught up in the damage estimation results alone, let's steadily promote preventive measures such as seismic resistance and fireproofing in preparation for large-scale earthquakes that can occur at any time and under any conditions. It is also important to establish a perfect system so that we can respond quickly according to the situation of the disaster.": "Rather than being caught up in the damage estimation results alone, let's steadily promote preventive measures such as seismic resistance and fireproofing in preparation for large-scale earthquakes that can occur at any time and under any conditions . It is also important to establish a perfect system so that we can respond quickly according to the situation of the disaster.",
+ "Based on the damage estimates, the Tokyo Metropolitan Government, municipalities, and other related organizations need to promote effective measures by revising regional disaster prevention plans and implementing various measures in the future.\nIn addition, in order to minimize damage in the event of a large-scale earthquake, it is essential for society as a whole, including individual Tokyo residents, communities, and businesses, to work together.": "Based on the damage estimates, the Tokyo Metropolitan Government, municipalities, and other related organizations need to promote effective measures by revising regional disaster prevention plans and implementing various measures in the future.\nIn addition, in order to minimize damage in the event of a large-scale earthquake, it is essential for society as a whole, including individual Tokyo residents, communities, and businesses, to work together.",
+ "Let's unite all the forces of self-help, mutual assistance, and public assistance by having local governments, administrative agencies, individual Tokyo residents, and private businesses work together to face large-scale earthquakes.": "Let's unite all the forces of self-help, mutual assistance, and public assistance by having local governments, administrative agencies, individual Tokyo residents, and private businesses work together to face large-scale earthquakes.",
+ "The Tokyo Metropolitan Government has been promoting \"seismic resistance.\" First, plans were formulated and ordinances were enacted to comprehensively promote the seismic resistance of buildings. Starting in 2012, mandatory diagnosis was implemented. Buildings adjacent to \"emergency transportation roads\" that serve as major arteries for evacuation, emergency rescue, firefighting, and emergency goods transportation during an earthquake are now required to undergo seismic diagnosis. Subsidies for renovation costs were also started in conjunction with this. Starting in 2018, the results of seismic diagnosis are required to be disclosed. In addition, financial support is provided to wards, cities, and towns, and experts are dispatched. While promoting seismic diagnosis and seismic retrofitting of housing, Tokyo's unique \"Tokyo Seismic Mark Display System\" and other measures have also been implemented. Efforts have been made to raise awareness from various perspectives.": "The Tokyo Metropolitan Government has been promoting \"seismic resistance .\" First, plans were formulated and ordinances were enacted to comprehensively promote the seismic resistance of buildings. Starting in 2012, mandatory diagnosis was implemented . Buildings adjacent to \"emergency transportation roads\" that serve as major arteries for evacuation, emergency rescue, firefighting, and emergency goods transportation during an earthquake are now required to undergo seismic diagnosis. Subsidies for renovation costs were also started in conjunction with this. Starting in 2018, the results of seismic diagnosis are required to be disclosed . In addition, financial support is provided to wards, cities, and towns, and experts are dispatched. While promoting seismic diagnosis and seismic retrofitting of housing, Tokyo's unique \"Tokyo Seismic Mark Display System\" and other measures have also been implemented. Efforts have been made to raise awareness from various perspectives.",
+ "Tokyo has a high concentration of housing and urban functions. Therefore, if a large-scale earthquake occurs in Tokyo, it could cause enormous damage to people's lives and property, and there is a risk that it will become difficult to maintain the functions of the capital.\nOn the other hand, thanks to lessons learned from recent large-scale disasters and other factors, the disaster prevention measures of the national and Tokyo metropolitan governments have been steadily progressing.": "Tokyo has a high concentration of housing and urban functions. Therefore, if a large-scale earthquake occurs in Tokyo, it could cause enormous damage to people's lives and property, and there is a risk that it will become difficult to maintain the functions of the capital.\nOn the other hand, thanks to lessons learned from recent large-scale disasters and other factors, the disaster prevention measures of the national and Tokyo metropolitan governments have been steadily progressing.",
+ "Distribution of the number of buildings burned by the earthquake directly under the southern part of central Tokyo": "Distribution of the number of buildings burned by the earthquake directly under the southern part of central Tokyo",
+ "The Tokyo Metropolitan Government has promoted the 10-year project to make densely wooded areas noncombustible by utilizing the special zone system to promote noncombustibility through special support, and by integrally promoting the development of specific development routes to form fire spread zones, and has promoted noncombustibility especially in development areas where severe damage is expected.": "The Tokyo Metropolitan Government has promoted the 10-year project to make densely wooded areas noncombustible by utilizing the special zone system to promote noncombustibility through special support, and by integrally promoting the development of specific development routes to form fire spread zones, and has promoted noncombustibility especially in development areas where severe damage is expected.",
+ "As a result, the area of densely populated wooden houses increased from about 16,000 ha to about 8.6,000 ha, and the percentage of noncombustible area (in developed areas) improved significantly from about 58.4% to about 64.0%.\nOn the other hand, the number of firefighters, who play an important role in local disaster prevention such as firefighting and rescue activities, has decreased from about 24,000 to 22,000.": "As a result, the area of densely populated wooden houses increased from about 16,000 ha to about 8.6,000 ha, and the percentage of noncombustible area (in developed areas) improved significantly from about 58.4% to about 64.0%.\nOn the other hand, the number of firefighters, who play an important role in local disaster prevention such as firefighting and rescue activities, has decreased from about 24,000 to 22,000.",
+ "Potential disaster mitigation benefits": "Potential disaster mitigation benefits",
+ "The number of houses destroyed by fire has decreased from approximately 200,000 to 120,000, and the number of deaths by fire has decreased from approximately 4,100 to 2,500. However, the damage is still expected to be enormous.": "The number of houses destroyed by fire has decreased from approximately 200,000 to 120,000, and the number of deaths by fire has decreased from approximately 4,100 to 2,500. However, the damage is still expected to be enormous.",
+ "On the other hand, there are concerns about the decline in local disaster preparedness, such as a decrease in the number of firefighters, so it is necessary to strengthen not only hardware but also software measures.": "On the other hand, there are concerns about the decline in local disaster preparedness, such as a decrease in the number of firefighters, so it is necessary to strengthen not only hardware but also software measures.",
+ "In order to control the damage caused by fires, it is important to reduce the number of fires themselves. Therefore, we estimate the effect of fire suppression measures.": "In order to control the damage caused by fires, it is important to reduce the number of fires themselves. Therefore, we estimate the effect of fire suppression measures.",
+ "*The following is an estimation of the effect if \"reduction of fires caused by electricity\" and \"improvement of initial fire extinguishing rate\" were promoted as fire suppression measures compared to the current situation.": "*The following is an estimation of the effect if \"reduction of fires caused by electricity\" and \"improvement of initial fire extinguishing rate\" were promoted as fire suppression measures compared to the current situation.",
+ "*The current situation is that the reduction rate of fires caused by electricity is assumed to be 8.3% of the installation rate of earthquake-sensitive breakers, and the initial fire extinguishing rate1 is assumed to be 36.6%.": "*The current situation is that the reduction rate of fires caused by electricity is assumed to be 8.3% of the installation rate of earthquake-sensitive breakers, and the initial fire extinguishing rate1 is assumed to be 36.6%.",
+ "*The table below sets the rate of fire suppression when fire suppression measures are increased.": "*The table below sets the rate of fire suppression when fire suppression measures are increased.",
+ "Conditions for calculating the effect of fire suppression measures": "Conditions for calculating the effect of fire suppression measures",
+ "Effects of countermeasures on the number of fires started and the number of fires burned\n(Earthquake directly under the southern part of central Tokyo, winter, evening, wind speed 8m/s)": "Effects of countermeasures on the number of fires started and the number of fires burned\n(Earthquake directly under the southern part of central Tokyo, winter, evening, wind speed 8m/s)",
+ "The number of deaths and destroyed buildings has decreased by 30~40% from the previous forecast. It is estimated that the number of deaths and destroyed buildings can be reduced by taking further countermeasures.": "The number of deaths and destroyed buildings has decreased by 30~40% from the previous forecast. It is estimated that the number of deaths and destroyed buildings can be reduced by taking further countermeasures.",
+ "Total destruction is the level of damage to a dwelling based on the criteria for damage assessment, where the basic functions of the dwelling have been lost and the floor area of the damaged portion has reached 70% or more of the total floor area of the dwelling, or where the economic damage to the main components of the dwelling, expressed as a percentage of the total damage to the dwelling, has reached 50% or more of the total damage.": "Total destruction is the level of damage to a dwelling based on the criteria for damage assessment, where the basic functions of the dwelling have been lost and the floor area of the damaged portion has reached 70% or more of the total floor area of the dwelling, or where the economic damage to the main components of the dwelling, expressed as a percentage of the total damage to the dwelling, has reached 50% or more of the total damage.",
+ "The earthquake resistance rate of Tokyo's residential buildings was 92% as of 2020, but the city has been promoting the earthquake resistance of buildings built before 1980 that were constructed under the old earthquake resistance standards, and all buildings have been reconstructed or reinforced to comply with the Building Standard Law that came into effect in June 1981 (hereinafter referred to as the \"1981 Standards (New Earthquake Resistance Standards)\"). The effect of the new earthquake-proofing standard is estimated. The effects of meeting the new earthquake resistance standards are estimated.": "The earthquake resistance rate of Tokyo's residential buildings was 92% as of 2020, but the city has been promoting the earthquake resistance of buildings built before 1980 that were constructed under the old earthquake resistance standards, and all buildings have been reconstructed or reinforced to comply with the Building Standard Law that came into effect in June 1981 (hereinafter referred to as the \"1981 Standards (New Earthquake Resistance Standards)\"). The effect of the new earthquake-proofing standard is estimated. The effects of meeting the new earthquake resistance standards are estimated.",
+ "In addition, we estimate the effect if the Building Standard Law that came into effect in June 2000 (hereinafter referred to as the \"2000 Standard\") is met and all buildings are built to the 2000 Standard. The effects are estimated if all buildings were reconstructed in accordance with the Building Standards Law (hereafter referred to as the \"2000 Standards\"), which came into effect in June 2000.": "In addition, we estimate the effect if the Building Standard Law that came into effect in June 2000 (hereinafter referred to as the \"2000 Standard\") is met and all buildings are built to the 2000 Standard. The effects are estimated if all buildings were reconstructed in accordance with the Building Standards Law (hereafter referred to as the \"2000 Standards\"), which came into effect in June 2000.",
+ "Major efforts and disaster mitigation effects over the past 10 years": "Major efforts and disaster mitigation effects over the past 10 years",
+ "Estimated Damage Reduction Benefits": "Estimated Damage Reduction Benefits",
+ "The number of buildings totally destroyed and the number of fatalities are estimated to decrease by approximately 60% from the current level if the buildings are made earthquake resistant according to the \"1981 Standards\" (the new earthquake resistance standards).": "The number of buildings totally destroyed and the number of fatalities are estimated to decrease by approximately 60% from the current level if the buildings are made earthquake resistant according to the \"1981 Standards\" (the new earthquake resistance standards).",
+ "If the \"2000 earthquake resistance standard\" is adopted, the number of buildings totally destroyed and the number of fatalities will be further reduced by approximately 50% compared to the \"1981 standard (new earthquake resistance standard)\" (approximately 80% reduction from the current situation). (about 80% less than the current situation)": "If the \"2000 earthquake resistance standard\" is adopted, the number of buildings totally destroyed and the number of fatalities will be further reduced by approximately 50% compared to the \"1981 standard (new earthquake resistance standard)\" (approximately 80% reduction from the current situation). (about 80% less than the current situation)",
+ "The number of fatalities will be calculated if the implementation rate of measures to prevent furniture from falling over, falling down, and moving is increased from the current rate of 57.3% (in 2020) to 75% (Promotion 1) or 100% (Promotion 2), and the effect of measures to prevent furniture from falling over will be estimated.": "The number of fatalities will be calculated if the implementation rate of measures to prevent furniture from falling over, falling down, and moving is increased from the current rate of 57.3% (in 2020) to 75% (Promotion 1) or 100% (Promotion 2), and the effect of measures to prevent furniture from falling over will be estimated.",
+ "Improvement in the rate of implementation of measures to prevent falling furniture and other objects Increase in the rate of implementation of measures to prevent furniture from falling over and falling down": "Improvement in the rate of implementation of measures to prevent falling furniture and other objects Increase in the rate of implementation of measures to prevent furniture from falling over and falling down",
+ "Even if furniture, etc. is secured, if it is not properly secured, the effect of implementation will be reduced. Further reduction of damage can be expected by encouraging people to secure furniture in an appropriate manner and increasing the effectiveness of countermeasures through further promotion and awareness-raising activities.": "Even if furniture, etc. is secured, if it is not properly secured, the effect of implementation will be reduced. Further reduction of damage can be expected by encouraging people to secure furniture in an appropriate manner and increasing the effectiveness of countermeasures through further promotion and awareness-raising activities.",
+ "According to the results of the Great Hanshin-Awaji Earthquake, about 23% of the furniture and other objects for which measures have been taken were ineffective due to inadequate fixation methods, etc.": "According to the results of the Great Hanshin-Awaji Earthquake, about 23% of the furniture and other objects for which measures have been taken were ineffective due to inadequate fixation methods, etc.",
+ "A phenomenon in which loose sandy soil containing water behaves like a liquid when subjected to strong seismic shaking. Water mixed with sand blows out (sand jet) and moves laterally (lateral flow). Buildings and other structures sink or tilt, and manholes, septic tanks, and other structures lift off the ground. Lateral flow may cause foundation piles to break.": "A phenomenon in which loose sandy soil containing water behaves like a liquid when subjected to strong seismic shaking. Water mixed with sand blows out (sand jet) and moves laterally (lateral flow). Buildings and other structures sink or tilt, and manholes, septic tanks, and other structures lift off the ground. Lateral flow may cause foundation piles to break.",
+ "Tokyo Damage Assumption Report due to an earthquake directly under the Tokyo Metropolitan Area, etc.": "Tokyo Damage Assumption Report due to an earthquake directly under the Tokyo Metropolitan Area, etc.",
+ "Damage Assumption Future Issues and Prospects": "Damage Assumption Future Issues and Prospects",
+ "Tokyo has a high concentration of residences and urban functions, and a large-scale earthquake could cause extensive damage to people's lives and property, as well as make it difficult to maintain the functions of the capital. On the other hand, based on lessons learned from recent large-scale disasters, the national government and metropolitan government have made steady progress in disaster prevention measures.": "Tokyo has a high concentration of residences and urban functions, and a large-scale earthquake could cause extensive damage to people's lives and property, as well as make it difficult to maintain the functions of the capital. On the other hand, based on lessons learned from recent large-scale disasters, the national government and metropolitan government have made steady progress in disaster prevention measures.",
+ "In this report, the damage assumptions are based on the latest accumulated data based on recent technological innovations and the latest findings based on recent large-scale earthquakes, as well as efforts to reflect the actual conditions of the metropolis to the greatest extent possible, including the progress of efforts to realize a safe and secure Tokyo and changes in the population structure.": "In this report, the damage assumptions are based on the latest accumulated data based on recent technological innovations and the latest findings based on recent large-scale earthquakes, as well as efforts to reflect the actual conditions of the metropolis to the greatest extent possible, including the progress of efforts to realize a safe and secure Tokyo and changes in the population structure.",
+ "However, while the damage assumptions are based on assumptions, natural phenomena are subject to large uncertainties, and the assumed results have certain limitations. The damage assumptions made this time are based on various assumptions, such as earthquake size, epicenter, time of occurrence, wind speed, etc., as well as limited data from past disasters.": "However, while the damage assumptions are based on assumptions, natural phenomena are subject to large uncertainties, and the assumed results have certain limitations. The damage assumptions made this time are based on various assumptions, such as earthquake size, epicenter, time of occurrence, wind speed, etc., as well as limited data from past disasters.",
+ "Therefore, it is important to prepare for a large-scale earthquake, which may occur at any time and under any conditions, without being preoccupied only with the damage assumption results, and to steadily promote preventive measures such as earthquake resistance and noncombustibility, and to establish a complete emergency response system so that flexible responses can be made according to disaster conditions.": "Therefore, it is important to prepare for a large-scale earthquake, which may occur at any time and under any conditions, without being preoccupied only with the damage assumption results, and to steadily promote preventive measures such as earthquake resistance and noncombustibility, and to establish a complete emergency response system so that flexible responses can be made according to disaster conditions.",
+ "Based on this damage assumption, the Tokyo Metropolitan Government, municipalities, and other relevant organizations will need to take effective measures by revising regional disaster prevention plans and developing various measures in the future. In addition, in order to minimize damage in the event of a large-scale earthquake, it is essential that the entire society, including individual citizens, local communities, and businesses, take action.": "Based on this damage assumption, the Tokyo Metropolitan Government, municipalities, and other relevant organizations will need to take effective measures by revising regional disaster prevention plans and developing various measures in the future. In addition, in order to minimize damage in the event of a large-scale earthquake, it is essential that the entire society, including individual citizens, local communities, and businesses, take action.",
+ "It is hoped that the damage assumptions used in this report will be used by administrative agencies and individual citizens to prepare for disasters, thereby enhancing the disaster preparedness of Tokyo as a whole and, ultimately, protecting the lives of its citizens.": "It is hoped that the damage assumptions used in this report will be used by administrative agencies and individual citizens to prepare for disasters, thereby enhancing the disaster preparedness of Tokyo as a whole and, ultimately, protecting the lives of its citizens.",
+ "It is my strong hope that each of these entities will further strengthen their respective efforts and, through mutual cooperation, build a social framework that will mobilize all of the forces of self-help, mutual aid, and public assistance to confront a large-scale earthquake.": "It is my strong hope that each of these entities will further strengthen their respective efforts and, through mutual cooperation, build a social framework that will mobilize all of the forces of self-help, mutual aid, and public assistance to confront a large-scale earthquake.",
+ "The main remaining issues in this damage assessment are as follows.": "The main remaining issues in this damage assessment are as follows.",
+ "Quantitative evaluation of possible damage from long-period seismic motions and combined disasters": "Quantitative evaluation of possible damage from long-period seismic motions and combined disasters",
+ "Quantitative assessment of factors that could further increase damage to lifelines (e.g., reduced supply capacity due to damage to power plants, telephone line congestion, etc.)": "Quantitative assessment of factors that could further increase damage to lifelines (e.g., reduced supply capacity due to damage to power plants, telephone line congestion, etc.)",
+ "Assessment of the impact on restoration activities of other infrastructures and lifelines if restoration of infrastructure and lifeline damage is delayed.": "Assessment of the impact on restoration activities of other infrastructures and lifelines if restoration of infrastructure and lifeline damage is delayed.",
+ "Seismic intensity distribution of earthquakes directly under the southern part of central Tokyo": "Seismic intensity distribution of earthquakes directly under the southern part of central Tokyo",
+ "This is an intra-plate earthquake with its epicenter in the southern part of the city, and is the earthquake that will cause the most damage in the entire metropolitan area among the earthquakes assumed in this report. Areas of seismic intensity 6 or higher are distributed mainly in the eastern and southwestern parts of the city. The area of seismic intensity 7 is about 14 km², and the area of seismic intensity 6 or higher is about 388 km².": "This is an intra-plate earthquake with its epicenter in the southern part of the city, and is the earthquake that will cause the most damage in the entire metropolitan area among the earthquakes assumed in this report. Areas of seismic intensity 6 or higher are distributed mainly in the eastern and southwestern parts of the city. The area of seismic intensity 7 is about 14 km², and the area of seismic intensity 6 or higher is about 388 km².",
+ "Major initiatives and disaster mitigation benefits over the past 10 years": "Major initiatives and disaster mitigation benefits over the past 10 years",
+ "Since the Great East Japan Earthquake, the Tokyo Metropolitan Government has been promoting further reinforcement of disaster preparedness in preparation for earthquakes directly under the Tokyo metropolitan area.": "Since the Great East Japan Earthquake, the Tokyo Metropolitan Government has been promoting further reinforcement of disaster preparedness in preparation for earthquakes directly under the Tokyo metropolitan area.",
+ "The following is a summary of the major efforts over the past 10 years in the areas of \"earthquake resistance,\" \"noncombustibility,\" and \"self-help/mutual aid,\" as well as the assumed disaster mitigation effects of these efforts.": "The following is a summary of the major efforts over the past 10 years in the areas of \"earthquake resistance,\" \"noncombustibility,\" and \"self-help/mutual aid,\" as well as the assumed disaster mitigation effects of these efforts.",
+ "The Tokyo Metropolitan Government has been promoting seismic retrofitting based on the Tokyo Metropolitan Government Seismic Retrofitting Promotion Plan and has enacted an ordinance to promote seismic retrofitting. Since 2012, seismic diagnosis has been mandatory for buildings along specified emergency transportation roads, and subsidies have been provided for retrofitting costs. Since 2008, the results of seismic diagnoses have been made public. In addition, the Tokyo Metropolitan Government has been promoting seismic diagnosis and retrofitting of houses and other structures by providing financial support to municipalities and dispatching experts to property owners, as well as promoting awareness through the Tokyo Metropolitan Government's own seismic mark display system.": "The Tokyo Metropolitan Government has been promoting seismic retrofitting based on the Tokyo Metropolitan Government Seismic Retrofitting Promotion Plan and has enacted an ordinance to promote seismic retrofitting. Since 2012, seismic diagnosis has been mandatory for buildings along specified emergency transportation roads, and subsidies have been provided for retrofitting costs. Since 2008, the results of seismic diagnoses have been made public. In addition, the Tokyo Metropolitan Government has been promoting seismic diagnosis and retrofitting of houses and other structures by providing financial support to municipalities and dispatching experts to property owners, as well as promoting awareness through the Tokyo Metropolitan Government's own seismic mark display system.",
+ "The earthquake resistance rate of buildings along specified emergency transportation roads increased from about 81.3% to about 91.6%, and the rate of earthquake resistance of houses increased from about 81.2% to about 92.0%.": "The earthquake resistance rate of buildings along specified emergency transportation roads increased from about 81.3% to about 91.6%, and the rate of earthquake resistance of houses increased from about 81.2% to about 92.0%.",
+ "Tokyo Disaster Prevention\" and \"Tokyo Life Disaster Prevention\" were prepared and distributed to ensure disaster preparedness. The \"Tokyo Stockpiling Navi\" promotes the stockpiling of food and daily necessities.": "Tokyo Disaster Prevention\" and \"Tokyo Life Disaster Prevention\" were prepared and distributed to ensure disaster preparedness. The \"Tokyo Stockpiling Navi\" promotes the stockpiling of food and daily necessities.",
+ "Disaster prevention coordinator training is also conducted to nurture female leaders. The \"Tokyo Disaster Prevention Study Seminar\" has been held at various locations in Tokyo to promote awareness of disaster prevention.": "Disaster prevention coordinator training is also conducted to nurture female leaders. The \"Tokyo Disaster Prevention Study Seminar\" has been held at various locations in Tokyo to promote awareness of disaster prevention.",
+ "Please note that we are not responsible for any loss or damage to life, body, or property that may occur as a result of activities based on information provided by this site.This site may be temporarily delayed or suspended without prior notice to users due to communication line equipment, system failure, maintenance, or other unavoidable reasons.TMG shall not be liable for any damages incurred by users or other third parties resulting from delays or interruptions of this site.": "Please note that we are not responsible for any loss or damage to life, body, or property that may occur as a result of activities based on information provided by this site.\nThis site may be temporarily delayed or suspended without prior notice to users due to communication line equipment, system failure, maintenance, or other unavoidable reasons.\nTokyo Metropolitan Government shall not be liable for any damages incurred by users or other third parties resulting from delays or interruptions of this site.",
+ "Source": "Source",
+ "Asahi Shimbun May 25, 2022 Tokyo Metropolitan Government assumes damage from four types of earthquakes directly under the Tokyo metropolitan area, including the \"Great Kanto Earthquake\".": "Asahi Shimbun May 25, 2022\nTokyo Metropolitan Government assumes damage from four types of earthquakes directly under the Tokyo metropolitan area, including the \"Great Kanto Earthquake\".",
+ "Ministry of Land, Infrastructure, Transport and Tourism, 2022 Annual Report on Metropolitan Area Development (Metropolitan Area White Paper).": "Ministry of Land, Infrastructure, Transport and Tourism, 2022 Annual Report on Metropolitan Area Development (Metropolitan Area White Paper).",
+ "Based on the damage estimates, the Tokyo Metropolitan Government, local governments, and other relevant organizations should prepare for future disasters by revising local disaster prevention plans and developing various measures.\nIn the event of a large-scale earthquake, it is essential that the entire society, including each and every citizen, community, and business, work together to minimize the damage. We must work together to save lives and protect what is important to us.": "",
+ "Local governments and administrative agencies, each and every citizen of Tokyo, and private businesses. By mutually cooperating with each other, we can open up a new tomorrow.\nSelf-help, mutual aid, and public assistance. Let's face a large-scale earthquake by mobilizing all our strength.": "",
+ "It is also important to have a complete system in place to be able to respond quickly to disaster situations.\nThe Tokyo Metropolitan Government's disaster prevention system is centered on the Disaster Control Headquarters, which responds to disasters in cooperation with the national government, municipalities, and other organizations based on information from the Disaster Prevention Center.": "",
+ "SCENE_01": "TOKYO 2023",
+ "SCENE_02": "Earthquake\nSeismic intensity distribution",
+ "SCENE_03": "Distribution of number of\ncompletely destroyed buildings",
+ "SCENE_04": "Distribution of\nnumber of burned buildings",
+ "SCENE_05": "Liquefaction distribution",
+ "SCENE_06": "Epilogue",
+ "SCENE_01_description": "Tokyo is characterized by significant differences in altitude, with various areas ranging from mountainous regions exceeding 2,000 meters above sea level to areas at sea level. Disaster preparedness tailored to the characteristics of each area is necessary.",
+ "SCENE_02_description": "\"Central South Region Earthquake\" and \"Tama East Region Earthquake\" are two types of \"Capital region earthquakes\" that are expected to occur within the Philippine Sea Plate, with a 70% probability within the next 30 years. These earthquakes have the potential to significantly impact the central areas and Tama region.",
+ "SCENE_03_description": "Approximately 80% of the buildings that collapse are believed to be built under the old seismic standards. To mitigate the damage, it is crucial to promote seismic retrofitting to the '2000 standards' and expand measures to prevent furniture from toppling over.",
+ "SCENE_04_description": "The number of ignition incidents refers to an estimate derived from the total number of fires, taking into account the effectiveness of initial firefighting efforts by residents, neighbors, etc., and indicating the number requiring organized firefighting activities. This estimation also considers the potential spread of fires. Encouraging initial firefighting efforts and reducing electrical-related ignitions are necessary measures for mitigating damage.",
+ "SCENE_05_description": "In reclaimed areas, coastal areas, and bays, liquefaction is expected to occur. In the event of liquefaction, buildings are at risk of complete collapse. In the case of a capital region earthquake occurring directly beneath the southern part of Tokyo, it is estimated that up to approximately 1,500 buildings may be affected, primarily in the reclaimed areas and along riverbanks in the Tokyo Bay area.\nThe liquefaction hazard level can be expressed using the PL value calculated based on seismic intensity, boring data, ground models, and other factors.",
+ "SCENE_06_description": null,
+ "SCENE_07_description": null,
+ "SCENE_08_description": null,
+ "SCENE_09_description": null,
+ "SCENE_01_source_title": "Report on \"Estimation of damage in the event of an earthquake directly hitting Tokyo\"",
+ "SCENE_02_source_title": "Report on \"Estimation of damage in the event of an earthquake directly hitting Tokyo\"",
+ "SCENE_03_source_title": "Report on \"Estimation of damage in the event of an earthquake directly hitting Tokyo\"",
+ "SCENE_04_source_title": "Report on \"Estimation of damage in the event of an earthquake directly hitting Tokyo\"",
+ "SCENE_05_source_title": "Report on \"Estimation of damage in the event of an earthquake directly hitting Tokyo\"",
+ "SCENE_06_source_title": null,
+ "SCENE_07_source_title": null,
+ "SCENE_08_source_title": null,
+ "SCENE_09_source_title": null,
+ "SCENE_01_source_url": "https://www.bousai.metro.tokyo.lg.jp/_res/projects/default_project/_page_/001/021/571/20220525/n/002n.pdf",
+ "SCENE_02_source_url": "https://www.bousai.metro.tokyo.lg.jp/_res/projects/default_project/_page_/001/021/571/20220525/n/002n.pdf",
+ "SCENE_03_source_url": "https://www.bousai.metro.tokyo.lg.jp/_res/projects/default_project/_page_/001/021/571/20220525/n/002n.pdf",
+ "SCENE_04_source_url": "https://www.bousai.metro.tokyo.lg.jp/_res/projects/default_project/_page_/001/021/571/20220525/n/002n.pdf",
+ "SCENE_05_source_url": "https://www.bousai.metro.tokyo.lg.jp/_res/projects/default_project/_page_/001/021/571/20220525/n/002n.pdf",
+ "SCENE_06_source_url": null,
+ "SCENE_07_source_url": null,
+ "SCENE_08_source_url": null,
+ "SCENE_09_source_url": null,
+ "SCENE_01_overlay_description": "There are areas with aging wooden houses, business districts with tall buildings,\nwaterfront areas filled with high-rise apartments,\nand low-lying eastern regions where land becomes lower than the sea level at high tide.\nEach area requires disaster preparedness tailored to its specific characteristics.\nThis map visualized the distribution of building structures such as reinforced concrete and wooden constructions.",
+ "SCENE_02_overlay_description": "The earthquakes with the largest anticipated impact within Tokyo are the \"Central South Region Earthquake\"\nand the \"Tama East Region Earthquake\", originating in the eastern part of the Tama region within the plate.\nCapital region earthquakes can occur anywhere within the city.\nLet's always prepare for the worst-case scenario and stay vigilant.\nThis map visualized seismic intensity based on altitude.",
+ "SCENE_03_overlay_description": "In a capital region earthquake, much of the building damage is expected to affect buildings constructed before 1981.\nThis is due to a significant strengthening of seismic standards in June 1981.\nThe background for this change lies in the Miyagi Prefecture Offshore Earthquake of 1978,\nwhich caused substantial damage even to reinforced concrete buildings like schools that were previously considered safe.\nThis map visualized the distribution of collapsed buildings due to this earthquake using color coding and sphere sizes based on seismic intensity distribution.",
+ "SCENE_04_overlay_description": "In Tokyo, there are extensive areas of densely populated wooden housing (mokumitsu areas) centered around the JR Yamanote Line outer loop.\nIn the event of a capital region earthquake, significant damage from fires is anticipated.\nThis map visualized the estimated number of ignition incidents in 3D graphs,\noverlaid with the distribution of fire-resistant buildings.",
+ "SCENE_05_overlay_description": "When liquefaction occurs, water may spout from the ground,\nand the previously stable ground may suddenly become soft,\ncausing the entire ground to flow towards lower areas.\nIn areas with seismic intensity of 6- (weak),\nnot only building collapses but also phenomena such as leaning or sinking of utility poles,\nleading to power outages, are anticipated due to liquefaction.\nThis map visualized the predicted liquefaction hazard using color and streamlines based on ground models and other factors.",
+ "SCENE_06_overlay_description": null,
+ "SCENE_07_overlay_description": null,
+ "SCENE_08_overlay_description": null,
+ "SCENE_09_overlay_description": null,
+ "SCENE_01_overlay_title": "The current Tokyo scene",
+ "SCENE_02_overlay_title": "Seismic intensity distribution",
+ "SCENE_03_overlay_title": "Collapsed buildings distribution",
+ "SCENE_04_overlay_title": "Burned buildings distribution",
+ "SCENE_05_overlay_title": "Liquefaction area distribution",
+ "SCENE_06_overlay_title": null,
+ "SCENE_07_overlay_title": null,
+ "SCENE_08_overlay_title": null,
+ "SCENE_09_overlay_title": null,
+ "SCENE_01_overlay_subtitle": null,
+ "SCENE_02_overlay_subtitle": "Earthquake in the southern and the eastern part of the metropolis",
+ "SCENE_03_overlay_subtitle": "Earthquake in the southern and the eastern part of the metropolis",
+ "SCENE_04_overlay_subtitle": "Earthquake in the southern and the eastern part of the metropolis",
+ "SCENE_05_overlay_subtitle": "Earthquake in the southern and the eastern part of the metropolis",
+ "SCENE_06_overlay_subtitle": null,
+ "SCENE_07_overlay_subtitle": null,
+ "SCENE_08_overlay_subtitle": null,
+ "SCENE_09_overlay_subtitle": null,
+ "SCENE_01_0_legend_title": "Structure type",
+ "SCENE_01_0_legend_0": "Fireproof",
+ "SCENE_01_0_legend_1": "Fire semi-prevention",
+ "SCENE_01_0_legend_2": "Fire prevention",
+ "SCENE_01_0_legend_3": "Wooden",
+ "SCENE_01_0_legend_4": "None",
+ "SCENE_01_1_legend_title": "Shelter",
+ "SCENE_01_1_legend_0": "Click for details",
+ "SCENE_02_0_legend_title": "Structure type",
+ "SCENE_02_0_legend_0": "Fireproof",
+ "SCENE_02_0_legend_1": "Fire semi-prevention",
+ "SCENE_02_0_legend_2": "Fire prevention",
+ "SCENE_02_0_legend_3": "Wooden",
+ "SCENE_02_0_legend_4": "None",
+ "SCENE_02_1_legend_title": "Japanese earthquake scale",
+ "SCENE_02_1_legend_0": "7",
+ "SCENE_02_1_legend_1": "6-upper",
+ "SCENE_02_1_legend_2": "6-lower",
+ "SCENE_02_1_legend_3": "5-upper",
+ "SCENE_02_1_legend_4": "5-lower",
+ "SCENE_02_1_legend_5": "4",
+ "SCENE_02_1_legend_6": "3 or less",
+ "SCENE_03_0_legend_title": "Structure type",
+ "SCENE_03_0_legend_0": "Fireproof",
+ "SCENE_03_0_legend_1": "Fire semi-prevention",
+ "SCENE_03_0_legend_2": "Fire prevention",
+ "SCENE_03_0_legend_3": "Wooden",
+ "SCENE_03_0_legend_4": "None",
+ "SCENE_03_1_legend_title": "Number of collapses within the area",
+ "SCENE_03_1_legend_0": "60 or more",
+ "SCENE_03_1_legend_1": "30〜59",
+ "SCENE_03_1_legend_2": "10〜29",
+ "SCENE_03_1_legend_3": "0〜9",
+ "SCENE_03_1_legend_4": "None",
+ "SCENE_04_2_legend_title": "Number of buildings burned within the area",
+ "SCENE_04_2_legend_0": "100-",
+ "SCENE_04_2_legend_1": "50-100",
+ "SCENE_04_2_legend_2": "20-50",
+ "SCENE_04_2_legend_3": "10-20",
+ "SCENE_04_2_legend_4": "1-10",
+ "SCENE_04_2_legend_5": "0-1",
+ "SCENE_04_2_legend_6": "0",
+ "SCENE_04_1_legend_title": "Structure type",
+ "SCENE_04_1_legend_0": "Fireproof",
+ "SCENE_04_1_legend_1": "Semi-fireproof",
+ "SCENE_04_1_legend_2": "Other",
+ "SCENE_04_1_legend_3": "Unknown",
+ "SCENE_04_1_legend_4": "None",
+ "SCENE_04_0_legend_title": "Fire prevention area",
+ "SCENE_04_0_legend_0": "Fire prevention area",
+ "SCENE_04_0_legend_1": "Semi fire prevention area",
+ "BURNED_OVERLAY_0_legend_title": "Number of buildings burned within the area",
+ "BURNED_OVERLAY_0_legend_0": "100-",
+ "BURNED_OVERLAY_0_legend_1": "50-100",
+ "BURNED_OVERLAY_0_legend_2": "20-50",
+ "BURNED_OVERLAY_0_legend_3": "10-20",
+ "BURNED_OVERLAY_0_legend_4": "1-10",
+ "BURNED_OVERLAY_0_legend_5": "0-1",
+ "BURNED_OVERLAY_0_legend_6": "0",
+ "SCENE_05_0_legend_title": "Structure type",
+ "SCENE_05_0_legend_0": "Fireproof",
+ "SCENE_05_0_legend_1": "Fire semi-prevention",
+ "SCENE_05_0_legend_2": "Fire prevention",
+ "SCENE_05_0_legend_3": "Wooden",
+ "SCENE_05_0_legend_4": "None",
+ "SCENE_05_1_legend_title": "Liquefaction Hazard Classification by PL Value",
+ "SCENE_05_1_legend_0": "15Type of Structure A fire-resistant structure is one in which the walls and floors have a certain level of fire resistance (the performance required to prevent the building from collapsing and the fire from spreading until the end of a normal fire). A \"quasi-fireproof structure\" has a slightly lower standard, and is considered to be a structure necessary to prevent the spread of fire caused by ordinary fires. It is applicable to buildings with a low number of floors and a small total floor area, and is required to prevent the building from collapsing or the fire from spreading for up to one hour. If the construction site is in a fire zone or quasi-fire zone, a significant percentage of buildings must be built with either \"fire-resistant\" or \"quasi-fire-resistant\" construction. Even relatively small-scale houses that are not subject to this requirement are required to have \"fireproof construction\" when built in a fire protection zone or quasi-fire protection zone. Fire-resistant materials must be used for the exterior walls and eaves, the building must not deform or break in any way after 30 minutes of heating, and the back of the building must not reach a dangerous temperature that could cause a fire. Source:Building Standards Law Enforcement Order, Chapter 4 Ministry of Land, Infrastructure, Transport and Tourism Building Standard Law System Summary UR College of Life ",
+ "INFO_FIRE_PREVENTION_AREA": "Fire Protection District A fire protection zone is an area with specific regulations to prevent fire hazards in urban areas. Quasi-fire protection zones surround areas that are designated as fire protection zones. The performance requirements for buildings vary depending on whether the area is a fire zone or a quasi-fire zone. Source:City Planning Law, Article 9, Paragraph 21 Ministry of Land, Infrastructure, Transport and Tourism Regulations for Buildings in Fire Prevention Districts, etc. ",
+ "INFO_FIRE_PREVENTION_AREA_FOR_OVERLAY": "Number of buildings burned within the area The number of buildings burned within an area is the number of buildings expected to be destroyed by fire in the event of an earthquake, calculated for each 250m mesh (parcel). This indicator can be used to identify areas that are likely to be severely damaged by fire and to take focused countermeasures. The calculation procedure is as follows. 1. The number of fires that occur during an earthquake is calculated by cause, and the number of fires that can be extinguished by residents' initial firefighting is subtracted to establish the fire probability for each building. Then, fire probability is calculated for each building by taking into account the fire extinguishing rate of public fire departments and fire brigades, and adding the effect of firefighting. 2. The structure of the building (wood or concrete) and the meteorological data on the strength and direction of the wind in the area are used to set the characteristics of each building. 3. Based on the characteristics of each building, the potential for fire spread to neighboring buildings is analyzed, and areas where all buildings are likely to be destroyed by fire if a certain building catches fire are defined as clusters (communities of fate). 4. Calculate the probability of each building burning down based on the probability of fire starting in each building calculated in step 1 and the fire spread clusters set in step 3. 5. By summing the probabilities of all buildings burning down in a 250-meter mesh unit, the predicted number of buildings that will be destroyed by fire in the area is obtained. However, the number of buildings burned within an area is a probabilistic measure of earthquake and fire risk in an area expressed in the form of the number of buildings, and may include a decimal point. For example, if the number of buildings burned in an area is calculated to be 152.8, this indicates that on average, about 152 to 153 buildings may be destroyed by fire in that area, which may differ from the actual number of buildings damaged. Source:Report on Assumed Damage to Tokyo from the 2022 Tokyo Metropolitan Earthquake, etc. Assumption of Damage to Tokyo from the 2012 Tokyo Metropolitan Earthquake, etc. 4-2 Assumption Methodology for Each Damage "
+}
diff --git a/app/public/locales/ja/translation.json b/app/public/locales/ja/translation.json
new file mode 100644
index 0000000..b1f7a0c
--- /dev/null
+++ b/app/public/locales/ja/translation.json
@@ -0,0 +1,554 @@
+{
+ "2012": "2012年",
+ "2017": "2017年",
+ "2022": "2022年",
+ "content_navigation_header": "PLATEAU 地震シミュレーションマップ",
+ "switch_sub_scene_button_1": "都心南部直下地震",
+ "switch_sub_scene_button_2": "多摩東部直下地震",
+ "Population: 9,733,276 people": "人口: 9,733,276人",
+ "Wooden": "木造",
+ "Buildings": "棟",
+ "Non wooden": "非木造",
+ "Etc.": "など",
+ "Large damage": "被害大",
+ "No damage": "被害無",
+ "Source: ": "出典:",
+ "Legend": "凡例",
+ "September 1, 1923, at 11:58 a.m. An earthquake with an estimated magnitude of 7.9 occurred in the Sagami Trough. Intensity 6 was observed in Saitama, Chiba, Tokyo, Kanagawa, and Yamanashi prefectures. The areas currently marked in red on the map are the locations where fires occurred during the Great Kanto Earthquake.": "1923年9月1日11時58分。\n相模トラフにおいてマグニチュード7.9と推測される地震が発生。\n埼玉県、千葉県、東京都、神奈川県、山梨県で震度6を観測しました。\nいま地図上で赤く表示されている箇所は、\n関東大震災の際に火災が発生したエリアです。",
+ "It is said that the number of dead and missing reached approximately 105,000 people. This disaster became the starting point for disaster preparedness in Japan, and September 1st was designated as \"Disaster Prevention Day.\" In 2023, it will have been 100 years since the Great Kanto Earthquake.": "死者・行方不明者は約10万5000人に及んだといいます。\nこの災害は日本の災害対策の出発点となり、\n9月1日は「防災の日」に定められました。\n2023年は、関東大震災から100年です。",
+ "Looking to the future. Preparing for the future. This site is a place to 'see' the future. Let's look together at what could happen in the near future with a high probability: major earthquakes such as the 'Tokyo Metropolitan Area South Subduction Earthquake' and the 'Tama Eastern Subduction Earthquake,' and what we can do about them.": "未来を見る。未来にそなえる。\nこのサイトは、未来を「見る」ための場所です。\n近い将来に高い確率で起こると想定される大地震\n「都心南部直下地震」「多摩東部直下地震」\n起こり得ることと、できることを、一緒に見ていきましょう。",
+ "SKIP": "SKIP",
+ "The photo is a colorized version of a photo from the time of the Great Kanto Earthquake. Photo courtesy: National Museum of Nature and Science, Colorization: Hidenori Watanabe.": "※写真は関東大震災当時の写真をカラー化したものです。\n\u3000写真所蔵:国立科学博物館\u3000カラー化:渡邉英徳",
+ "Credit for this site: SP": "当サイトは、新しい地図表現技法の有用性を 検証するための技術調査として 国土交通省都市局(Project PLATEAU)が構築したものです。
「Past & Future for Action」は、ウェブGIS、ストーリーテリング、3D表現など、 最新の技術とアートを組み合わせた新たな表現手法の確立を目指しています。 監修: 東京大学大学院 情報学環・学際情報学府 教授 渡邉英徳 クリエイティブ・ディレクション: パノラマティクス 主宰 齋藤 精一 制作: ユーカリヤ / パノラマティクス",
+ "Credit for this site: PC": "当サイトは、新しい地図表現技法の有用性を 検証するための技術調査として 国土交通省都市局(Project PLATEAU)が構築したものです。
「Past & Future for Action」は、ウェブGIS、ストーリーテリング、3D表現など、 最新の技術とアートを組み合わせた新たな表現手法の確立を目指しています。 監修: 東京大学大学院 情報学環・学際情報学府 教授 渡邉英徳 クリエイティブ・ディレクション: パノラマティクス 主宰 齋藤 精一 制作: ユーカリヤ / パノラマティクス",
+ "stop": "一時的停止",
+ "play": "再生",
+ "startpage_title": "PLATEAU\n関東大震災から100年後",
+ "startpage_sount_instruction": "このサイトではサウンドをONにしてください。",
+ "lang_ja": "日",
+ "lang_en": "英",
+ "Tutorial areaSelector": "表示するエリアを選べます",
+ "Tutorial langButton": "言語切り替え",
+ "Tutorial soundButton": "音声ON/OFF",
+ "Tutorial reportButton": "レポート表示",
+ "Play/Pause": "再生/一時停止",
+ "Time sequence": "一定時間経過後に画面が自動遷移していきます",
+ "PcMenuButton": "シーンメニュー",
+ "SpMenuButton": "メニュー",
+ "opening": "オープニング",
+ "Tokyo as it is today": "現在の東京のすがた",
+ "Earthquake in the southern and the eastern part of the metropolis": "都心南部 / 多摩東部直下地震",
+ "Seismic intensity distribution": "震度分布",
+ "Distribution of the number of houses totally destroyed": "全壊棟数分布",
+ "Distribution of the number of buildings burned": "焼失棟数分布",
+ "Liquefaction distribution of the earthquake": "液状化分布",
+ "Watch again from the beginning": "もう一度最初から見る",
+ "For the future How was the story of the past and future? So far, I have conveyed various perspectives on the risk of disasters. Disasters strike our daily lives without warning. The damage caused by significant tremors is tremendous, swiftly taking away the peaceful days that we had been enjoying.": "未来のために\n過去と未来の物語、いかがでしたか。\nここまで、震災のリスクについて\nさまざまな角度からお伝えしてきました。\n災害は予告なく私たちの日常を襲います。\n大きな揺れによってもたらされる被害は凄まじく、\n連綿と続いていた平穏な日々を一瞬で奪い去っていきます。",
+ "To overcome such hardships, we need human strength, bonds, and resilience. In recent years, lessons learned from large-scale disasters have led to steady progress in disaster preparedness measures by national and municipal governments.": "そうした苦難を乗り越えていくためには、\n人間の強さ、絆、そして回復力が必要です。\n近年の大規模災害における教訓などによって、\n国や都の防災対策は着実に進展しています。",
+ "NEXT": "次へ",
+ "More Details": "もっと見る",
+ "Public Assistance Initiatives": "公助の取り組み",
+ "Seismic retrofitting rate for water pipes(Evacuation shelter, Main Station)": "給水管耐震化率(避難所・主要な駅)",
+ "Seismic retrofitting rate for buildings along designated transportation routes": "特定輸送道路沿道建築物の耐震化率",
+ "Progress of continuity planning in local governments": "区市町村の業務継続計画策定状況",
+ "Tokyo Disaster Reduction Plan Progress Report 2023": "東京防災プラン進捗レポート2023",
+ "The \"damage estimation\" presented so far is based on data calculated to realistically reflect the situation of Tokyo as a major city. However, hypotheses always have exceptions. Natural disasters inherently involve unpredictable elements.": "これまでご紹介してきた「被害想定」は、東京という大都市の実情をなるべくリアルに映し出すべく算出されたデータです。しかし、仮説には常に例外があります。自然災害というものは、その性質上、予測困難な要素を抱えています。",
+ "The future is always uncertain. That's why we must not be confined only to expected outcomes but steadily implement preventive measures such as seismic strengthening and fireproofing in preparation for large earthquakes that may occur anytime and under any conditions. Being prepared is what creates hope for the future.": "未来はいつも不確かなものです。だからこそ私たちは想定された結果だけにとらわれず、いつ、どんな条件下で起きるかわからない大規模地震にそなえて、耐震化や不燃化などの予防対策 を着実に進めなければなりません。そなえることこそが、未来への希望を生み出すのです。",
+ "Percentage of public facilities serving as disaster prevention centers that are earthquake resistant": "防災拠点となる公共施設等の耐震化率の推移",
+ "Metropolitan area": "首都圏",
+ "Nation wide": "全国",
+ "Metropolitan Area White Paper 2023": "令和5年版「首都圏白書」",
+ "Furthermore, it is crucial to establish a comprehensive system to respond promptly according to the situation of disasters. Tokyo Metropolitan Government's disaster response system, centered around the Disaster Management Headquarters, is well-organized and collaborates with national, local government, and other agencies based on information from the Disaster Prevention Center to respond to disasters.": "また、災害の状況に応じてすばやく対応ができるよう、万全の体制を構築しておくことが重要です。\n東京都の防災体制は、災害対策本部を中心とし整備され、防災センターの情報をもとに、国、区市町村、その他機関と連携しながら、災害に対応します。",
+ "Tokyo Disaster Prevention System": "東京都の防災体制",
+ "Tokyo Metropolitan Government's Crisis Management System": "東京都の危機管理体制",
+ "Based on the damage estimation, various agencies including the Tokyo Metropolitan Government, municipalities, and others will revise local disaster prevention plans and implement various measures to prepare for future disasters. And when a large earthquake occurs, it is essential for each citizen, community, businesses, and society as a whole to work together to minimize damage. We must join forces to protect lives and preserve what is precious.": "被害想定をふまえ、都、区市町村をはじめとする各関係機関は、これから先、地域防災計画を修正したり、さまざまな施策を展開したりすることで、未来の災害にそなえましょう。\nそして、大規模地震が発生したときは、被害を最小限に抑えるために都民一人ひとりや地域、事業者など社会全体での取り組みが不可欠です。命を守り、大切なものを守り抜くために力を合わせていくのです。",
+ "Society-Wide Initiatives": "社会全体での取り組み",
+ "Municipalities, government agencies, each citizen, and private businesses - by collaborating with each other, we can pave the way for tomorrow. Self-help, mutual assistance, and public support. Let's gather all our strengths and face the challenge of large earthquakes together.": "自治体や行政機関、都民一人ひとり、民間の事業者。それぞれが相互に連携する ことで、明日を切り開いていくことができます。 自助・共助・公助。すべての力を結集して大規模地震に立ち向かっていきましょう。",
+ "Let’s Get Prepared": "いますぐそなえる",
+ "Disaster Preparedness Tokyo": "東京防災",
+ "\"Disaster Preparedness Tokyo\" is a fully Tokyo-specific disaster preparedness guide that takes into account Tokyo's regional characteristics, urban structure, and the lifestyle of its residents. It provides easy-to-understand information on proactive preparation for disasters, as well as how to respond during emergencies, making it a valuable resource that can be utilized immediately and proves useful when the need arises.": "「東京防災」は、東京の地域特性や都市構造、都民のライフスタイルなどを考慮し、災害に対する事前のそなえや発災時の対処法など、今すぐ活用でき、いざというときにも役立つ情報を分かりやすくまとめた完全東京仕様の防災ブックです。",
+ "Disaster Readiness Guide": "東京くらし防災",
+ "It includes disaster prevention measures that can be easily implemented in daily life, such as breastfeeding and crime prevention measures in evacuation shelters, as well as solutions to various challenges faced during disaster-affected living conditions.": "日常生活の中で無理なく取り組める防災対策や、避難所における授乳や防犯対策など、被災生活の様々な課題への対処法を掲載しています。",
+ "The Disaster Preparedness Tokyo App": "東京都防災アプリ",
+ "It is the official Tokyo disaster prevention app that is useful both in everyday life and in times of emergency. With the concept of 'play,' 'learn,' and 'use,' it is equipped with content that is helpful during disasters, allowing users to gain basic knowledge of disaster prevention in an enjoyable way.": "いつも・いざというときにも役に立つ、東京都公式の防災アプリです。「あそぶ」「まなぶ」「つかう」をコンセプトに、楽しみながら防災の基礎知識を得られるなど、災害時に役立つコンテンツが搭載されています。",
+ "Things to Do Before a Disaster Strikes": "災害が起きる前にできること",
+ "It's a website that summarizes what you can do before a disaster strikes, including how to arrange furniture, what to stockpile, and a checklist for emergency evacuation bags.": "家具の置き方や備蓄の内容、非常用持ち出し袋のチェックリストなど、災害が起きる前にできることをまとめたサイトです。",
+ "Reference Links and Sources": "参考リンク・出典",
+ "Burned buildings distribution": "焼失棟数分布",
+ "When the Central South Region Earthquake occurs, it is estimated that up to approximately 120,000 houses could be lost due to fires. This number represents about 4% of the entire Tokyo area, excluding the island regions.": "都心南部直下地震が起きた場合で、火災によって焼失する家屋は、最大で約12万棟にのぼると想定されています。この数は、島しょ地域を除く東京全体の約4%にあたります。",
+ "Table: List of number of burned buildings (including shaking damage) at wind speed of 8m/s": "表 焼失棟数算定結果一覧(風速8m/s、揺れ被害を含む)",
+ "Report on Assumed Damage to Tokyo from a Metropolitan Earthquake, etc.": "首都直下地震等による東京の被害想定報告書",
+ "Central South Burned Buildings": "都心南部焼失(棟数)",
+ "Actions for fireproofing in the previous decade": "不燃化 過去10年の取り組み",
+ "In Tokyo, there are densely populated wooden housing areas centered around the Yamanote Line outer loop. To prevent the spread of fires, the \"10-Year Fireproofing Project for Mokumitsu Areas\" was launched. This project aimed to create areas (fire spread prevention zones) that prevent fires from spreading and simultaneously promote fireproofing in areas expected to suffer particularly severe damage during disasters (development areas).": "「不燃化 」については、2つの視点から対策を進めてきました。 東京都には山手線外周部を中心に木造住宅密集地域(木密地域)が広がっています。そこで、「木密地域不燃化10年プロジェクト」を掲げ、燃え広がるのを防ぐためのエリア(延焼遮断帯)を作る ことと、都では、震災時に特に甚大な被害が想定されるエリア(整備地域)の不燃化 とを同時に推し進めたのです。",
+ "As a result, the density of wooden housing areas decreased from approximately 16 thousand hectares to approximately 8.6 thousand hectares. The fire-resistant area rate in urban areas (development areas), which indicates the fire resistance of the city, increased significantly from about 58.4% to about 64.0%.": "その結果、木造住宅密集地域の密度は約16千ha→約8.6千ha、市街地の燃えにくさを表す不燃領域率(整備地域)は 約58.4%→約64.0%とそれぞれ大きく改善しました。",
+ "However, the number of firefighting brigade members, who play a crucial role in regional disaster prevention activities such as firefighting and rescue operations, decreased from approximately 24,000 to approximately 22,000.": "いっぽうで、消火活動や救助活動など地域防災の重要な役割を担う消防団員数は約2.4万人→約2.2万人と減少しています。",
+ "Disaster Prevention Information | Major Initiatives and Disaster Reduction Effects Over the Past 10 Years": "10年間の主な取組と減災効果",
+ "Bureau of Construction | Introduction to the \"Mokumitsu Project\"": "東京都建設局 木密事業の紹介",
+ "The fire-resistant area rate in urban areas (development area)": "不燃領域率(整備地域)",
+ "Major initiatives and disaster mitigation effects over the past 10 years": "10年間の主な取組と減災効果",
+ "The effectiveness and challenges of fireproofing": "不燃化の効果と課題",
+ "From 2012 to 2022, Tokyo has made efforts in fireproofing, resulting in a decrease in the estimated number of buildings lost due to fires from about 200,000 to about 120,000, and a reduction in fire-related deaths from about 4,100 to about 2,500. However, significant damage is still anticipated, and there are concerns about the decline in the number of firefighting brigade members, leading to a decrease in the overall disaster prevention capacity of the region. This highlights the need for further efforts in both hardware and software measures to address the challenges effectively.": "2012年より2022年までの10年間、東京都が不燃化に関する対策を進めた結果、想定される焼失棟数は約20万棟→約12万棟、火災による死者数は約4,100人→約2,500人まで減少しています。しかし、いまだ甚大な被害が想定されている状況です。\nまた、消防団員の減少など、地域の防災力低下も懸念されるため、ハードはもとよりソフト対策においても、さらなる取り組みが必要です。",
+ "2012 estimated": "2012年想定",
+ "2022 estimated": "2022年想定",
+ "Number of buildings burned (buildings)": "焼失棟数(棟)",
+ "Number of buildings burned": "焼失棟数",
+ "Approximately": "約",
+ "Number of deaths by fire (persons)": "火災による死者数(人)",
+ "Number of deaths": "死者数",
+ "Measures for fire outbreak suppression": "出火抑制対策",
+ "To reduce damage caused by fires, it is crucial to decrease the number of fire incidents. Let's examine the effectiveness of fire outbreak suppression measures.": "火災による被害を抑えるためには、出火件数自体を減らすことが大切です。 そこで、出火抑制対策 を実施した場合にどのくらい効果があるのかを見てみましょう。",
+ "Here, we will look at the impact of implementing fire outbreak suppression measures, specifically focusing on reducing electrical-related fires and increasing the cases that can be extinguished at an early stage.": "ここでは、出火抑制対策として、「電気を要因とする出火を減らすこと」と「初期に消化できるケースを増やす」ことがいまよりも促進できた場合の効果を見ていきます。",
+ "Currently, the rate of reducing electrical-related fires is set at 8.3%, indicated by the \"installation rate of seismic breakers.\" Additionally, the early extinguishment rate during the Tokyo Metropolitan Area Direct Subsurface Earthquake (winter, evening, wind speed of 8m/s) is 36.6%. We will consider the effects of implementing measures up to \"Accelerator 1\" (reducing electrical-related fires by about 25% and increasing early extinguishment by about 60%) and \"Accelerator 2\" (reducing electrical-related fires by about 50% and increasing early extinguishment by about 90%).": "現在の状況としては、電気を要因とする出火を減らせている割合は、「感震ブレーカーの設置率」である8.3% としています。また、都心南部直下地震(冬・夕方、風速 8m/s)における初期消火率は36.6%です。ここから、「促進①」(25%ほど電気を要因とする出火を減らし、60%ほど初期に消化できる)まで対策できた場合と「促進②」(50%ほど電気を要因とする出火を減らし、90%ほど初期に消化できる)まで対策できた場合を考えます。",
+ "Calculation criteria for fire suppression measures' effectiveness": "出火抑制による対策効果の算定条件",
+ "Effect of fire prevention initiative": "出火抑制対策の効果",
+ "If \"Accelerator 1\" is achieved, it is estimated that both the number of burnt buildings and the number of fatalities will decrease by approximately 70% compared to the current situation. Furthermore, if \"Accelerator 2\" is achieved, both the number of burnt buildings and the number of fatalities can be reduced by an additional approximately 60% from \"Accelerator 1,\" which corresponds to a 90% reduction from the current situation.": "促進①が実現した場合、焼失棟数、死者数ともに、現況に対して約70%ほど減少すると考えられます。また、促進②が実現した場合は、焼失棟数、死者数ともに、促進①からさらに約60%減らすことができ、これは現在の状況から見ると90%の減少にあたります。",
+ "Impact of mitigation measures on fire and loss cases(Central South Region Earthquake,Winter/afternoon/at wind speed of 8m/s)": "出火件数・焼失件数の対策効果\n(都心南部直下地震、冬・夕方、風速8m/s)",
+ "Present condition": "現況",
+ "Improvement①": "促進①",
+ "Improvement②": "促進②",
+ "Approximately 70% reduction": "約7割減",
+ "Approximately 60% reduction": "約6割減",
+ "Impact of measures on death toll": "死者数の対策効果",
+ "Report on \"Estimation of damage in the event of an earthquake directly hitting Tokyo\"": "首都直下地震等による東京の被害想定報告書",
+ "Collapsed buildings distribution": "全壊棟数分布",
+ "Total destruction refers to buildings that have lost the basic functions necessary for habitation. This includes cases where the entire residence has collapsed, washed away, buried, or burned down. Additionally, severe damage to the residence that makes it difficult to restore and reuse through repairs also falls under 'total destruction.' This refers to cases where the damaged, burned, or washed away area of the residence accounts for 70% or more of the total floor area. Furthermore, if the economic damage suffered by the main components of the residence accounts for 50% or more of the total economic loss, it is also considered 'total destruction.'": "全壊 とは、「住むための基本的な機能」を喪失した建物です。住家全部が倒壊、流失、埋没、焼失したケースがこれに当たります。また、住家の損壊が甚だしく、補修により元通りに再使用することが難しいものも「全壊」にあたります。これは、住家の損壊、焼失若しくは流失した部分の床面積が住家の70%以上を占める場合を指します。さらに、住家の主な構成要素が受けた経済的な被害が、その住家全体の50%以上を占める場合も、「全壊」とみなされます。",
+ "*\"Shaking\" includes damage to man-made land.": "※「揺れ」には人工造成地における被害を含む。",
+ "*Totals may not add up due to rounding to the nearest whole number.": "※小数点以下の四捨五入により合計値は合わない場合がある。",
+ "Report on Assumed Damage to Tokyo from an Earthquake, etc., Directly Under the Tokyo Metropolitan Area": "首都直下地震等による東京の被害想定報告書",
+ "Collapse rate within the area range": "エリア範囲内の倒壊数",
+ "Increase in seismic retrofitting rate": "耐震化率の向上",
+ "Tokyo has been working on initiatives to improve the seismic resistance ratio in order to reduce building and human damage caused by shaking. As of 2020, the seismic resistance ratio of residential buildings in Tokyo is 92%. Furthermore, there is a need to promote seismic retrofitting for buildings constructed before 1980, which were built according to older seismic standards. By rebuilding or retrofitting all buildings to meet the Building Standards Act (1981 Standards) implemented since June 1981, the damage can be further reduced. Moreover, if all buildings are rebuilt to meet the Building Standards Act (2000 Standards) implemented since June 2000, it will lead to even greater reduction in damage.": "東京都は、揺れによる建物被害や人的被害を軽減させる目的で、耐震化率 を向上させるための取り組みを進めてきました。 東京都の住宅の耐震化率は2020年時点で92%です。 さらに、旧耐震基準で建てられた1980年以前の建物について耐震化を推進していく必要があります。すべての建物を建替えたり耐震補強したりして、1981年6月から施行された建築基準法(1981年基準)を満たせた場合、被害はいっそう軽減できます。 また、2000年6月から施行された建築基準法(2000年基準)を満たし、すべての建物が建て替えられた場合は、さらに被害を軽減できるでしょう。",
+ "Seismic retrofitting outcomes": "耐震化の効果",
+ "100% earthquake resistant": "耐震化100%",
+ "All rebuilt": "全て建替え",
+ "Number of buildings totally destroyed due to shaking (buildings)": "揺れによる全壊棟数(棟)",
+ "Total number of buildings": "全体棟数",
+ "Number of deaths due to shaking (persons)": "揺れによる死者数(人)",
+ "Approximately 50% reduction": "約5割減",
+ "If seismic retrofitting according to the '1981 Standards (New Seismic Standards)' is achieved, it is estimated that the number of completely collapsed buildings and fatalities will decrease by about 60% compared to the current situation. If seismic retrofitting according to the '2000 Standards' is achieved, it is estimated that the number of completely collapsed buildings and fatalities will decrease by an additional approximately 50% compared to seismic retrofitting based on the '1981 Standards (New Seismic Standards)' (a total reduction of about 80% from the current situation).": "「1981年基準(新耐震基準)」による耐震化が実現した場合、全壊棟数および死者数は現在の状況よりも約6割減少すると推計されます。\n「2000年基準」による耐震化が実現した場合、全壊棟数及び死者数は「1981年基準 (新耐震基準)」による耐震化と比べて、さらに約5割減少すると推計されます(現況より約8割減少)。",
+ "*Depending on the magnitude of the earthquake shaking, even buildings based on the 2000 standard may suffer a certain degree of damage, so the damage will not be zero.": "※地震動の大きさによっては、2000 年基準の建物でも一定程度の被害が発生する可能性 があるため、被害は0にはならない",
+ "Increase in the implementation rate of measures for preventing furniture and object tipping/falling, and the resultant outcomes": "家具等の転倒・落下防止対策実施率の向上とその効果",
+ "Number of deaths (persons)": "死者数(人)",
+ "Number of seriously injured (persons)": "重傷者数(人)",
+ "Number of seriously injured": "重傷者数",
+ "Approximately 40% reduction": "約4割減",
+ "Implementing measures to prevent furniture and objects from toppling, falling, and moving is believed to reduce the number of fatalities and severe injuries. As of 2020, the implementation rate is 57.3%. If this rate is increased to 75% (Accelerator 1), it is expected to reduce the number of fatalities and severe injuries by about 40% from the current situation. Furthermore, if it is increased to 100% (Accelerator 2), an estimated reduction of about 70% is anticipated.": "家具等の転倒・落下・移動防止対策を実施した場合、死者数・重症者数を軽減できる と考えられます。 2020年時点で、実施率は57.3%です。ここから 75%(促進①)に引き上げた場合、現況から約40%の死者数・重傷者数の軽減が見込まれます。さらに、 100%(促進②)まで引き上げた場合はそこから約70%の軽減が想定されます。",
+ "It's important to note that even if furniture and objects are fixed, if they are not properly secured, the effectiveness of implementation can be reduced. Therefore, promoting the proper method of securing furniture through future dissemination and awareness campaigns is expected to further mitigate damages.": "家具等を固定していても、適切に固定されていない場合は、実施効果が低減してしまうので注意が必要です。今後の普及や啓発によって、適切な方法での家具の固定を推し進めることで、さらなる被害の抑制が期待されます。",
+ "*It is assumed that the percentage of ineffective implementation will be reduced to 10% by encouraging appropriate fall prevention measures.": "※阪神・淡路大震災の実績によると、固定方法等の不備により、対策実施済みの家具類等の約 23%で実施効果がないとされる。\n※適切な転倒・落下防止対策を促すことで、実施効果がない割合が10%に低減すると設定する。",
+ "Liquefaction area distribution": "液状化分布",
+ "When an earthquake occurs and the ground experiences a strong impact, soil particles that were previously supporting each other become loose and disjointed. This phenomenon is known as liquefaction.": "地震が発生して地盤が強い衝撃を受けると、今まで互いに接して支えあっていた土の粒子がバラバラになり、地盤全体がドロドロの液体のような状態になる現象が起きます。これを液状化 といいます。",
+ "During liquefaction, water may spout out from the ground, stable ground can suddenly become soft, leading to buildings sinking or tilting, and buried manholes or pipes may surface. The ground as a whole may also flow towards lower areas.": "液状化が発生すると、地盤から水が噴き出したり、それまで安定していた地盤が急に柔らかくなるため、その上に立っていた建物が沈んだり(傾いたり)、地中に埋まっていたマンホールや埋設管が浮かんできたり、地面全体が低い方へ流れ出すといった現象が発生します。",
+ "Ministry of Land, Infrastructure, Transport and Tourism \"About the Liquefaction Phenomenon\"": "国土交通省「液状化現象について」",
+ "Anticipated damages caused by liquefaction": "液状化による被害の想定",
+ "In reclaimed areas, coastal areas, and bay areas, liquefaction occurrences are anticipated. Liquefaction can lead to complete collapse of buildings, especially in regions like the Tokyo Bay coastal reclaimed areas and riverbanks, where approximately 1,500 buildings could be affected in the event of the Central South Region Earthquake.": "埋立地や沿岸部、湾岸部において液状化の発生が想定されます。液状化により建物が全壊する被害は、都心南部直下地震の場合、東京湾岸の埋立地や河川沿岸部等の地域を中心に最大で約1,500棟が想定されています。",
+ "In areas with seismic intensity of lower than or equal to 6, not only building collapses are expected but also the leaning or sinking of utility poles due to liquefaction, which could lead to power outages.": "震度6弱以上のエリアでは、建物倒壊だけではなく、この液状化によって電柱が傾いたり沈んだりし、停電につながることが想定されます。",
+ "Reflecting on past liquefaction incidents, various impacts have been observed, including the spouting of water and sand, sinking or tilting of detached houses, deformation of roads, and damage to lifeline facilities. The effects of liquefaction-related damages on post-earthquake life are extensive and diverse, and their occurrence in combination can result in a prolonged impact period.": "過去の液状化被害を振り返ると、噴水・噴砂の発生、戸建て住宅の沈下や傾斜、道路面の変形、ライフライン施設の被害など、液状化による被害が地震後の生活に及ぼす影響は多大にして多種多様であり、これらが複合的に発生することで影響期間は長期に及ぶ ことになります。",
+ "Strategies to prevent liquefaction": "液状化の対策",
+ "To reduce liquefaction damage in residential areas, a proactive approach by residents and businesses, along with prompt response from authorities during disasters, is crucial. Administrative-led preemptive measures aligned with community initiatives are essential.": "宅地における液状化被害を軽減するためには、行政が主導する事前の対策事業にあわせ、住民や事業者が自ら行う日頃からのそなえや、行政による発災時の速やかな対応が重要となります。",
+ "The Ministry of Land, Infrastructure, Transport and Tourism has published guidelines for creating liquefaction hazard maps to facilitate risk communication. Promoting the creation of liquefaction hazard maps at the local level using available resources and increasing awareness about liquefaction-related risks can enhance community disaster resilience.": "国土交通省では、「リスクコミュニケーションを取るための液状化ハザードマップ作成の手引き」を公表し、液状化ハザードマップの作成を推進しています。\n今後は、液状化に関する資料の活用により、各自治体において液状化ハザードマップの作成が進み、宅地の液状化被害に対する関心が高まり、地域防災力の向上が図られることが期待されています。",
+ "Guidelines for Creating Liquefaction Hazard Maps for Risk Communication": "リスクコミュニケーションを取るための液状化ハザードマップ作成の手引き",
+ "In the event of the central south region earthquake, areas with seismic intensity of 6 strong or higher are expected to be concentrated in the eastern and southwestern parts of the wards. The area with seismic intensity of 7 is approximately 14 km², while the area with seismic intensity of 6 strong is about 388 km².": "都心南部直下地震において、震度6強以上の地域は、区部東部や区部南西部を中心に分布すると考えられています。震度7の面積は約14 km²、震度6強の面積は約 388 km²です。",
+ "Impact on Capital Functions": "首都機能への影響",
+ "The central south region earthquake is expected to have a significant impact on the capital functions. Additionally, there are concerns about the impact on transportation networks such as Shinkansen and airports located in the southern part of Tokyo, as well as the risk of fire spread in areas densely populated with wooden houses. Therefore, the 'central south region earthquake' is considered a central earthquake in the considerations for earthquake countermeasures directly beneath the capital.": "都心南部直下地震は首都機能に対し直接的に大きな影響を与えると想定されます。また、東京の南部に位置する新幹線や空港等の交通網への影響や、木密住宅が密集する地域での火災延焼の危険性があります。これらのことから、「都心南部直下地震」は首都直下地震対策を検討していく上で中心となる地震 と位置付けられています。",
+ "Report on \"Estimation of damage in the event of an earthquake directly hitting Tokyo\" set": "首都直下地震等による東京の被害想定報告書",
+ "Efforts and Disaster Reduction Effects Over the Past 10 Years": "10年間の取り組みと減災効果",
+ "Tokyo has been making efforts to enhance disaster resilience in preparation for earthquakes such as capital region earthquakes since the 2011 off the Pacific coast of Tohoku Earthquake. Here, let's first examine the efforts made over the past 10 years in terms of seismic strengthening, fireproofing, self-help, and mutual assistance, and the anticipated disaster reduction effects resulting from these efforts.": "東京都は、東日本大震災が起きてからずっと、首都直下地震等にそなえて、防災力を高めるための取り組みをしてきました。\nここではまず「耐震化 」「不燃化 」「自助・共助 」という視点から、この10年間における取り組みと、それによって生じたと想定される減災効果をみていきましょう。",
+ "Earthquake Resistance": "耐震化",
+ "In Tokyo, efforts have been made to promote \"earthquake resistance.\" Firstly, comprehensive plans have been developed to promote the seismic strengthening of buildings, and ordinances have been established to advance earthquake resistance. Since 2012, there has been a push for mandatory seismic diagnosis. Buildings along designated emergency transport routes, crucial for evacuation, emergency services, and the transportation of essential supplies during disasters, are required to undergo seismic diagnosis. This initiative also includes subsidies for renovation costs. Since 2018, the results of seismic diagnosis have been publicly disclosed. Additionally, financial support and the dispatch of experts to municipalities have been provided. These efforts aim to accelerate seismic diagnosis and renovation of residential buildings. Tokyo has also implemented its unique \"Tokyo Seismic Mark Display System\" and conducted various awareness and promotion activities from different perspectives.": "東京都では「耐震化 」を進めてきました。\nまず、建物の耐震化を総合的に促進するための計画を策定 したり、耐震化を推進する条例を制定 したりしました。 2012年からは、耐震診断の義務化 を進めました。震災時に避難や救急・消火活動、緊急物資輸送の大動脈となる幹線道である「特定緊急輸送道路沿道」に接する建築物は、耐震診断をすることが義務化されたのです。これに伴い、改修費用の助成 も開始しました。 2018年からは耐震診断の結果を公表 するようにしています。 また、区市町村を財政面で支援したり、専門家を派遣したりしています。住宅などの耐震診断や耐震改修を促進すると同時に、東京都独自の「東京都耐震マーク表示制度」なども実施。さまざまな視点から普及・啓発を行ってきました。",
+ "Anticipated Disaster Reduction Effects": "想定される減災効果",
+ "The seismic retrofitting rate for buildings along designated emergency transport routes has increased by approximately 10.3% (from 81.3% to about 91.6%), and the seismic retrofitting rate for residences has increased by approximately 10.8% (from 81.2% to about 92.0%).": "特定緊急輸送道路沿道建築物の耐震化率が約10.3%(81.3%→約91.6%)、住宅の耐震化率が約10.8%(81.2%→約92.0%)増加しました。",
+ "Seismic retrofitting rate for housing": "住宅の耐震化率",
+ "Self-help and Mutual Assistance": "自助・共助",
+ "We created and distributed 'Disaster Preparedness Tokyo' and 'Disaster Readiness Guide,' which compile information for disaster preparedness and self-protection. Through 'Tokyo Stockpiling Navi,' we promoted stockpiling of food, daily necessities, and other essentials. Furthermore, we conducted training for disaster coordinators to develop female leadership. We have been promoting awareness through activities such as holding 'Tokyo Disaster Preparedness Learning Seminar' at various locations in Tokyo.": "災害にそなえ、身を守るための情報をまとめた「東京防災 」「東京くらし防災 」を作成・配布。「東京備蓄ナビ 」により、食料や生活必需品等の備蓄を推進しました。 また、女性のリーダー的人材を育成する防災コーディネーター研修を実施。「東京防災学習セミナー」を都内各所で開催するなど、啓発活動を進めてきました。",
+ "Implementation rate of measures for preventing furniture and object tipping/falling": "家具類転倒防止等実施率",
+ "Implementation rate of daily stockpiling": "日常備蓄の実施率",
+ "As a result, the implementation rate of measures such as preventing furniture from toppling increased from about 53.6% to about 57.3%, and the implementation rate of daily stockpiling increased from about 46.4% to about 56.3%. (*The changes from fiscal year 2017)": "その結果、家具類転倒防止等実施率は約53.6%→約57.3%、日常備蓄の実施率*は約46.4%→約56.3%と改善がみられました。\n(*2017年度からの変化)",
+ "If an earthquake were to occur in Tokyo?": "東京で地震が起きたら?",
+ "Ready for the future": "未来にそなえる",
+ "A magnitude 7 earthquake is anticipated in the event of a capital region earthquake, with a probability of occurrence within the next 30 years estimated at around 70% in the southern Kanto region. Tokyo Metropolitan Government has been enhancing disaster preparedness to mitigate potential disasters such as capital region earthquakes. To protect lives and properties from disasters that can occur at any time, efforts in 'self-help' and 'mutual assistance' are necessary in addition to the government's 'public support' initiatives. Here, let's explore the expected damage overview in the event of an earthquake in Tokyo and the disaster prevention measures that the metropolitan government has implemented.": "首都直下地震で想定されるマグニチュード7程度の地震。南関東地域においてその30年以内の発生確率は、70%程度と予想されています。 東京都はこうした首都直下地震などにそなえ、防災力の強化を推進してきました。いつ起きてもおかしくない災害から人々の命と財産を守るためには、都による「公助」の取り組みと合わせ、「自助」、「共助」の取り組みも進めていく必要があります。 ここでは、東京で地震が起きた場合に想定される被害の概要と、これまでに都が進めてきた防災対策について見ていきましょう。",
+ "The Regional Characteristics of Tokyo Metropolitan Area": "東京都の地域特性",
+ "Tokyo Metropolitan Area has an elongated shape from east to west, characterized by significant differences in altitude. It includes various areas ranging from mountain ranges exceeding 2,000 meters above sea level to zero altitude zones.": "東京都は東西に細長い地形 をしています。高度の差が大きい のも特徴で、標高 2,000mを 超える山りょうから海抜ゼロ地帯まで、さまざまなエリアがあります。",
+ "Tokyo Metropolitan Area is divided into two regions: \"inland\" and \"island areas.\" The inland region consists of four types of terrain: mountains, hills, plateaus, and lowlands. The island areas include islands like the Izu Islands and Ogasawara Islands, located on the western side of the Pacific Ocean.": "東京都は「内陸部 」と「島しょ地域 」とに分けられます。山地、丘陵地、台地、低地の4つの地形からなる内陸部と、太平洋の西側にある伊豆諸島や小笠原諸島などの島しょ地域です。",
+ "Furthermore, Tokyo features areas with rows of aging wooden houses, office districts with towering skyscrapers, zones along the bay with high-rise apartments, and lowland areas in the eastern part where the land becomes lower than the sea level at high tide. Disaster preparedness measures tailored to each region's characteristics are necessary.": "また、老朽化した木造住宅 が連なるエリアや、高層ビル が立ち並ぶオフィス街、湾岸部の高層マンション が林立する地帯、満潮になると陸地が海水面よりも低くなる東部低地帯 などがあり、それぞれの地域特性に合わせた災害対策が必要です。",
+ "Number of buildings in Tokyo 23 ward": "現在の東京都23区内の建物棟数",
+ "Central South Region Earthquake": "都心南部直下地震",
+ "\"Central South Region Earthquake\" is anticipated to be the most severe earthquake within Tokyo. In the event of this earthquake, it is estimated that the seismic intensity of 6 strong or higher will spread across about 60% of the wards. The expected death toll could reach a maximum of around 6,000 people. It is anticipated that approximately 190,000 buildings will be damaged.": "「都心南部直下地震 」は、東京都内で最大規模の被害が想定される地震です。この地震が起きた場合、震度6強以上の範囲は区部の約6割に広がると言われています。予想される死者数は最大で約6,000人。建物被害は約19万棟発生すると想定されています。",
+ "Tokyo Fire Department | Guidebook for High School Student Members:Chapter 5": "消防庁 消防少年団\u3000高校生団員のてびき 第5章 大地震時の東京の被害想定",
+ "Tama East Region Earthquake": "多摩東部直下地震",
+ "\"Tama East Region Earthquake\" is expected to cause significant damage in the Tama region. It is estimated that the seismic intensity of 6 strong or higher will spread across about 20% of the Tama area. Building damage is projected to affect approximately 160,000 buildings, with an anticipated death toll of around 5,000 people.": "「多摩東部直下地震 」が起きた場合は、多摩地域に大きな被害が想定されます。震度6強以上の範囲は多摩地域の約2割に広がると考えられます。建物被害は約16万棟、死者は約5,000人発生すると想定されています。",
+ "Let's take a look at the distribution of burned buildings by municipalities on a map.": "東京23区別の焼失棟数の分布を、\n平面で見てみましょう。",
+ "Have you identified any areas where you live or where your school/workplace is located? This data could be a starting point for researching fireproofing measures for nearby locations.": "お住まいの地域や、学校・職場のある地域はありましたか?このデータをきっかけに、身近な場所の不燃化について調べてみるといいかもしれません。",
+ "Let's take a look at the distribution of burned buildings by municipalities on a map. Have you identified any areas where you live or where your school/workplace is located? This data could be a starting point for researching fireproofing measures for nearby locations.": "東京23区別の焼失棟数の分布を、平面で見てみましょう。お住まいの地域や、学校・職場のある地域はありましたか?\nこのデータをきっかけに、身近な場所の不燃化について調べてみるといいかもしれません。",
+ "Disclaimer": "免責事項",
+ "Please be aware that we cannot accept any responsibility for any loss or damage to life, body, or property that may occur in activities based on information provided on this site. Our site may experience temporary delays or interruptions without prior notice to users due to reasons such as communication network equipment, system failures, maintenance, or other unavoidable circumstances.Even in the event of delays, interruptions, or other issues with the display, we cannot accept any responsibility for damages incurred by users or other third parties resulting from these issues.Please understand these conditions in advance.": "当サイトからの提供情報に基づいた活動において発生したいかなる生命、身体、財産上の損失又は損害についても、一切の責任を負いかねますので、あらかじめご了解ください。当サイトは、通信回線設備、システムの障害、メンテナンス、その他やむを得ない事由により、利用者に事前に通知することなく一時的に遅延又は中断されることがあります。当サイトは、表示の遅延又は中断等が発生しても、これに起因する利用者又は他の第三者が被った損害についても、一切の責任を負いかねますので、あらかじめご了承ください。",
+ "Not to be displayed in the future": "今後は表示しない",
+ "Tokyo earthquake-resistant portal site": "東京都耐震ポータルサイト",
+ "Tutorial text": "操作方法",
+ "Skip": "頭出し",
+ "This site is constructed by the Urban Bureau of the Ministry of Land, Infrastructure, Transport and Tourism (Project PLATEAU) as a technical study to verify the usefulness of new map expression techniques. \"Past & Future for Action\" aims to establish new expressive techniques combining the latest technologies and art, such as Web GIS, storytelling, and 3D expression.": "当サイトは、新しい地図表現技法の有用性を検証するための技術調査として国土交通省都市局(Project PLATEAU)が構築したものです。\n「Past & Future for Action」は、ウェブGIS、ストーリーテリング、3D表現など、最新の技術とアートを組み合わせた新たな表現手法の確立を目指しています。",
+ "Supervisor: Hidenori Watanabe, Professor, Interfaculty Initiative in Information Studies, Graduate School of Interdisciplinary Information Studies, The University of Tokyo Art Direction: Seiichi Saito, Chief Director of Panoramatics": "監修: 東京大学大学院 情報学環・学際情報学府 教授 渡邉英徳\nアート・ディレクション: パノラマティクス 主宰 齋藤 精一",
+ "Production: Eukarya / Panoramatics": "制作: ユーカリヤ / パノラマティクス",
+ "Tokyo Disaster Preparedness Plan Progress Report 2023": "東京都「東京防災プラン進捗レポート2023」",
+ "Annual Report on Capital Region Development": "首都圏整備に関する年次報告",
+ "Tutorial skipping": "スキップ",
+ "Table: List of the calculation results of the number of buildings burned (wind speed: 8 m/s, including shaking damage)": "表 焼失棟数算定結果一覧(風速8m/s、揺れ被害を含む)",
+ "Burned down in the southern part of the city center (number of buildings)": "都心南部焼失(棟数)",
+ "Percentage of noncombustible area (maintenance area)": "不燃領域率(整備地域)",
+ "Calculation Conditions for the Effects of Fire Prevention Measures": "出火抑制による対策効果の算定条件",
+ "Effects of Measures on Number of Fire Outbreaks and Number of Buildings Lost to Fire\n(Earthquake directly under the southern part of Tokyo Metropolitan City, Winter/Evening, Wind Speed 8m/s)": "出火件数・焼失件数の対策効果\n(都心南部直下地震、冬・夕方、風速8m/s)",
+ "Effects of Measures on Number of Deaths": "死者数の対策効果",
+ "Collapse rate within the area": "エリア範囲内の倒壊数",
+ "Percentage of houses earthquake-proofed": "住宅の耐震化率",
+ "Percentage of furniture toppling prevention, etc.": "家具類転倒防止等実施率",
+ "Percentage of daily stockpiling": "日常備蓄の実施率",
+ "Tutorial playButton": "シーン切り替え",
+ "September 1, 1923, 11:58 a.m..\nAn earthquake estimated to be 7.9 on the Richter scale occurred in the Sagami Trough.\nThe magnitude 6 earthquake was observed in Saitama, Chiba, Tokyo, Kanagawa, and Yamanashi prefectures.\nThe area shown in red on the map now,\nThe area shown in red on the map is the area where fires broke out during the Great Kanto Earthquake.": "1923年9月1日11時58分\n相模トラフにおいてマグニチュード7.9と推測される地震が発生。\n埼玉県、千葉県、東京都、神奈川県、山梨県で震度6を観測しました。\nいま地図上で赤く表示されている箇所は、\n関東大震災の際に火災が発生したエリアです。",
+ "The number of dead and missing is said to have reached approximately 105,000.\nThis disaster became the starting point of Japan's disaster countermeasures,\nSeptember 1 was designated as \"Disaster Prevention Day.\"\nThe year 2023 marks the 100th anniversary of the Great Kanto Earthquake.": "死者・行方不明者は約10万5000人に及んだといいます。\nこの災害は日本の災害対策の出発点となり、\n9月1日は「防災の日」に定められました。\n2023年は、関東大震災から100年です。",
+ "Looking to the future. Prepare for the future.\nThis site is a place to \"see\" the future.\nMajor earthquakes that are expected to occur with high probability in the near future\n\"Earthquake directly under the southern part of central Tokyo\" and \"Earthquake directly under the eastern part of Tama\"\nLet's look at what could happen and what we can do together.": "未来を見る。未来にそなえる。\nこのサイトは、未来を「見る」ための場所です。\n近い将来に高い確率で起こると想定される大地震\n「都心南部直下地震」「多摩東部直下地震」\n起こり得ることと、できることを、一緒に見ていきましょう。",
+ "*The photos are colorized versions of the photos taken at the time of the Great Kanto Earthquake. Photo collection: National Museum of Nature and Science Colorization: Hidenori Watanabe": "※写真は関東大震災当時の写真をカラー化したものです。\n\u3000写真所蔵:国立科学博物館\u3000カラー化:渡邉英徳",
+ "How was this story of the past and the future? So far, we have told you about the risks of earthquakes from various angles. Disasters strike our daily lives without warning. The damage caused by a major quake is horrendous, and it can take away the peace and tranquility that has continued uninterruptedly in an instant.": "未来のために\n過去と未来の物語、いかがでしたか。\nここまで、震災のリスクについて\nさまざまな角度からお伝えしてきました。\n災害は予告なく私たちの日常を襲います。\n大きな揺れによってもたらされる被害は凄まじく、\n連綿と続いていた平穏な日々を一瞬で奪い去っていきます。",
+ "Overcoming such hardships requires human strength, bonding, and resilience. Lessons learned from recent large-scale disasters and other factors have led to steady progress in national and metropolitan disaster preparedness.": "そうした苦難を乗り越えていくためには、\n人間の強さ、絆、そして回復力が必要です。\n近年の大規模災害における教訓などによって、\n国や都の防災対策は着実に進展しています。",
+ "The \"damage assumptions\" introduced so far are data calculated to reflect the reality of the metropolis of Tokyo as realistically as possible. However, there are always exceptions to assumptions. Natural disasters, by their very nature, are difficult to predict.": "これまでご紹介してきた「被害想定」は、東京という大都市の実情をなるべくリアルに映し出すべく算出されたデータです。しかし、仮説には常に例外があります。自然災害というものは、その性質上、予測困難な要素を抱えています。",
+ "The future is always uncertain. That is why we must not be preoccupied with hypothetical outcomes, but must steadily advance preventive measures such as earthquake resistance and noncombustibility in preparation for a major earthquake, which may occur at any time and under any conditions. Prevention is the only way to create hope for the future.": "未来はいつも不確かなものです。だからこそ私たちは想定された結果だけにとらわれず、いつ、どんな条件下で起きるかわからない大規模地震にそなえて、耐震化や不燃化などの予防対策 を着実に進めなければなりません。そなえることこそが、未来への希望を生み出すのです。",
+ "It is also important to have a complete system in place to be able to respond quickly to disaster situations. The Tokyo Metropolitan Government's disaster prevention system is centered on the Disaster Control Headquarters, which responds to disasters in cooperation with the national government, municipalities, and other organizations based on information from the Disaster Prevention Center.": "また、災害の状況に応じてすばやく対応ができるよう、万全の体制を構築しておくことが重要です。\n東京都の防災体制は、災害対策本部を中心とし整備され、防災センターの情報をもとに、国、区市町村、その他機関と連携しながら、災害に対応します。",
+ "Based on the damage estimates, the Tokyo Metropolitan Government, local governments, and other relevant organizations should prepare for future disasters by revising local disaster prevention plans and developing various measures. In the event of a large-scale earthquake, it is essential that the entire society, including each and every citizen, community, and business, work together to minimize the damage. We must work together to save lives and protect what is important to us.": "被害想定をふまえ、都、区市町村をはじめとする各関係機関は、これから先、地域防災計画を修正したり、さまざまな施策を展開したりすることで、未来の災害にそなえましょう。\nそして、大規模地震が発生したときは、被害を最小限に抑えるために都民一人ひとりや地域、事業者など社会全体での取り組みが不可欠です。命を守り、大切なものを守り抜くために力を合わせていくのです。",
+ "Local governments and administrative agencies, each and every citizen of Tokyo, and private businesses. By mutually cooperating with each other, we can open up a new tomorrow. Self-help, mutual aid, and public assistance. Let's face a large-scale earthquake by mobilizing all our strength.": "自治体や行政機関、都民一人ひとり、民間の事業者。それぞれが相互に連携する ことで、明日を切り開いていくことができます。 自助・共助・公助。すべての力を結集して大規模地震に立ち向かっていきましょう。",
+ "Prepare Now": "いますぐそなえる",
+ "Tokyo Disaster Prevention": "東京防災",
+ "The \"Tokyo Disaster Prevention\" is an easy-to-understand, complete disaster prevention book designed for Tokyo, taking into consideration the regional characteristics of Tokyo, the urban structure, and the lifestyles of Tokyo residents, and providing useful information on how to prepare for disasters in advance and what to do in case of an emergency.": "「東京防災」は、東京の地域特性や都市構造、都民のライフスタイルなどを考慮し、災害に対する事前のそなえや発災時の対処法など、今すぐ活用でき、いざというときにも役立つ情報を分かりやすくまとめた完全東京仕様の防災ブックです。",
+ "Tokyo Living Disaster Prevention": "東京くらし防災",
+ "It includes disaster prevention measures that can be taken effortlessly in daily life, as well as methods for dealing with various issues in disaster-stricken life, such as breastfeeding and crime prevention measures at evacuation centers.": "日常生活の中で無理なく取り組める防災対策や、避難所における授乳や防犯対策など、被災生活のさまざまな課題への対処法を掲載しています。",
+ "Tokyo Disaster Prevention App": "東京都防災アプリ",
+ "This is the Tokyo Metropolitan Government's official disaster prevention application that is useful at all times and in case of emergency. Based on the concept of \"play\", \"learn\" and \"use\" the application provides basic knowledge about disaster prevention while having fun, and is equipped with content that is useful in times of disaster.": "いつも・いざというときにも役に立つ、東京都公式の防災アプリです。「あそぶ」「まなぶ」「つかう」をコンセプトに、楽しみながら防災の基礎知識を得られるなど、災害時に役立つコンテンツが搭載されています。",
+ "What you can do before disaster strikes": "災害が起きる前にできること",
+ "This site provides information on what you can do before a disaster occurs, including how to place furniture, what to stockpile, and a checklist for an emergency carryout bag.": "家具の置き方や備蓄の内容、非常用持ち出し袋のチェックリストなど、災害が起きる前にできることをまとめたサイトです。",
+ "Distribution of Number of Buildings Lost to Fire in Earthquake directly under the southern part of Tokyo Metropolitan City": "焼失棟数分布",
+ "In the event of an Earthquake directly under the southern part of Tokyo Metropolitan City, it is estimated that up to approximately 120,000 houses will be lost to fires. This number accounts for about 4% of all of Tokyo, excluding the island areas.": "都心南部直下地震が起きた場合で、火災によって焼失する家屋は、最大で約12万棟にのぼると想定されています。この数は、島しょ地域を除く東京全体の約4%にあたります。",
+ "Noncombustibility Efforts in the past 10 years": "不燃化 過去10年の取組",
+ "Regarding \"fireproofing,\" measures have been taken from two perspectives. Areas with high concentrations of wooden houses (dense wooden areas) are spread mainly around the outer perimeter of the Yamanote Line in Tokyo. Therefore, the \"10-Year Project for Fireproofing Dense Wooden Areas\" was set forth to simultaneously create areas (fire-spread prevention zones) to prevent the spread of fires and to fireproof areas (improvement areas) where damage is likely to be significant.": "「不燃化 」については、2つの視点から対策を進めてきました。 東京都には山手線外周部を中心に木造住宅密集地域(木密地域)が広がっています。そこで、「木密地域不燃化10年プロジェクト」を掲げ、燃え広がるのを防ぐためのエリア(延焼遮断帯)を作ることと、被害が大きくなりそうなエリア(整備地域)の不燃化 とを同時に推し進めたのです。",
+ "As a result, the density of areas with high concentrations of wooden houses significantly improved from approximately 16,000 ha to approximately 8,600 ha, and the fire-resistant area rate (improvement areas), which represents the fire resistance of urban areas, significantly improved from approximately 58.4% to approximately 64.0%.": "その結果、木造住宅密集地域の密度は約16千ha→約8.6千ha、市街地の燃えにくさを表す不燃領域率(整備地域)は 約58.4%→約64.0%とそれぞれ大きく改善しました。",
+ "On the other hand, the number of volunteer fire corps members, who play an important role in regional disaster prevention such as firefighting and rescue activities, has decreased from approximately 24,000 to approximately 22,000.": "いっぽうで、消火活動や救助活動など地域防災の重要な役割を担う消防団員数は約2.4万人→約2.2万人と減少しています。",
+ "Effects and Challenges of Fireproofing": "不燃化の効果と課題",
+ "As a result of the Tokyo Metropolitan Government's efforts to promote fireproofing measures over the 10 years from 2012 to 2022, the estimated number of buildings lost to fire has decreased from approximately 200,000 to approximately 120,000, and the number of deaths due to fire has decreased from approximately 4,100 to approximately 2,500. However, the situation is still one in which enormous damage is anticipated.\nIn addition, there are concerns about the decline in regional disaster prevention capabilities, such as the decrease in the number of volunteer fire corps members, so further efforts are needed not only in terms of hardware but also in terms of software measures.": "2012年より2022年までの10年間、東京都が不燃化に関する対策を進めた結果、想定される焼失棟数は約20万棟→約12万棟、火災による死者数は約4,100人→約2,500人まで減少しています。しかし、いまだ甚大な被害が想定されている状況です。\nまた、消防団員の減少など、地域の防災力低下も懸念されるため、ハードはもとよりソフト対策においても、さらなる取り組みが必要です。",
+ "Fire suppression measures": "出火抑制対策",
+ "To reduce damage from fires, it is important to reduce the number of fires that occur in the first place. So, let's look at how effective fire prevention measures can be if implemented.": "火災による被害を抑えるためには、出火件数自体を減らすことが大切です。 そこで、出火抑制対策 を実施した場合にどのくらい効果があるのかを見てみましょう。",
+ "Here, we will look at the effects of further promoting two fire prevention measures: \"reducing fires caused by electricity\" and \"increasing cases where fires can be extinguished in the initial stage.\"\nAs for the current situation, the percentage of fires caused by electricity that can be reduced is 8.3%, which is the \"installation rate of seismic circuit breakers.\" The initial fire extinguishing rate is 36.6%. From here, we will consider the case where measures can be taken up to \"Promotion ①\" (reducing fires by about 25% and extinguishing about 60% in the initial stage) and the case where measures can be taken up to \"Promotion ②\" (reducing fires by about 50% and extinguishing about 90% in the initial stage).": "ここでは、出火抑制対策として、「電気が原因の出火を減らすこと」と「初期に消化できるケースを増やす」ことがいまよりも促進できた場合の効果を見ていきます。\n現在の状況としては、電気を原因の出火を減らせている割合は、「感震ブレーカーの設置率」である8.3% としています。また、初期消火率は36.6%です。ここから、「促進①」(25%ほど出火を減らし、60%ほど初期に消化できる)まで対策できた場合と「促進②」(50%ほど出火を減らし、90%ほど初期に消化できる)まで対策できた場合を考えます。",
+ "Effects of Fire Prevention Measures": "出火抑制対策の効果",
+ "If Promotion ① is realized, it is estimated that the number of buildings lost to fire and the number of deaths will decrease by about 70% compared to the current situation. In addition, if Promotion ② is realized, the number of buildings lost to fire and the number of deaths can be further reduced by about 60% from Promotion ①, which is equivalent to a 90% reduction from the current situation.": "促進①が実現した場合、焼失棟数、死者数ともに、現況に対して約70%ほど減少すると考えられます。また、促進②が実現した場合は、焼失棟数、死者数ともに、促進①からさらに約60%減らすことができ、これは現在の状況から見ると90%の減少にあたります。",
+ "Distribution of the number of houses totally destroyed by the earthquake directly under the southern part of the Tokyo metropolitan area": "全壊棟数分布",
+ "\"Completely destroyed\" refers to buildings that have lost their basic function as a place to live and have suffered damage to 70% or more of their floor area. Additionally, if the economic damage to the main structural components of a residence accounts for 50% or more of the entire house, it is also considered \"completely destroyed.\"": "全壊 とは、「住むための基本的な機能」を喪失した建物で、かつ、床面積の70%以上が損壊しているものを指します。また、住家の主な構成要素が受けた経済的な被害が、その家全体の50%以上を占める場合も、「全壊」とみなされます。",
+ "Increase in earthquake resistance rate": "耐震化率の向上",
+ "The Tokyo Metropolitan Government has been working to improve the seismic resistance rate with the aim of reducing building damage and human casualties caused by shaking. As of 2020, the seismic resistance rate of housing in Tokyo is 92%. Further efforts are needed to promote seismic resistance of buildings constructed before 1980 under the old seismic standards. If all buildings were rebuilt or seismically reinforced to meet the Building Standards Law enacted in June 1981 (1981 standards), damage could be further reduced. In addition, if all buildings were rebuilt to meet the Building Standards Law enacted in June 2000 (2000 standards), damage could be reduced even further.": "東京都は、揺れによる建物被害や人的被害を軽減させる目的で、耐震化率 を向上させるための取り組みを進めてきました。 東京都の住宅の耐震化率は2020年時点で92%です。 さらに、旧耐震基準で建てられた1980年以前の建物について耐震化を推進していく必要があります。すべての建物を建替えたり耐震補強したりして、1981年6月から施行された建築基準法(1981年基準)を満たせた場合、被害はいっそう軽減できます。 また、2000年6月から施行された建築基準法(2000年基準)を満たし、すべての建物が建て替えられた場合は、さらに被害を軽減できるでしょう。",
+ "Effects of Seismic Resistance": "耐震化の効果",
+ "If seismic resistance based on the \"1981 standards (new seismic standards)\" is realized, it is estimated that the number of completely destroyed buildings and deaths will decrease by approximately 60% compared to the current situation.\nIf seismic resistance based on the \"2000 standards\" is realized, it is estimated that the number of completely destroyed buildings and deaths will further decrease by approximately 50% compared to seismic resistance based on the \"1981 standards (new seismic standards)\" (approximately 80% decrease from the current situation).": "「1981年基準(新耐震基準)」による耐震化が実現した場合、全壊棟数および死者数は現在の状況よりも約6割減少すると推計できます。\n「2000年基準」による耐震化が実現した場合、全壊棟数及び死者数は「1981年基準 (新耐震基準)」による耐震化と比べて、さらに約50%減少すると推計されます(現況より約80%減少)。",
+ "Improvement of Implementation Rate of Measures to Prevent Furniture from Falling Over and Its Effects": "家具等の転倒・落下防止対策実施率の向上とその効果",
+ "It is believed that implementing measures to prevent furniture and other items from falling over, falling, or moving can reduce the number of deaths and serious injuries. As of 2020, the implementation rate is 57.3%. If this rate is increased to 75% (promotion ①), a 40% reduction from the current situation is expected. Furthermore, if it is increased to 100% (promotion ①), a 70% reduction from there is expected.": "家具等の転倒・落下・移動防止対策を実施した場合、死者数・重症者数を軽減できる と考えられます。 2020年時点で、実施率は57.3%です。ここから 75%(促進①)に引き上げた場合、現況から40%の軽減が見込まれます。さらに、 100%(促進①)まで引き上げた場合はそこから70%の軽減が想定されます。",
+ "Even if furniture is fixed, if it is not fixed properly, the effectiveness of the measure will be reduced, so caution is necessary. Through future promotion and awareness-raising efforts, we aim to further reduce damage by promoting the proper fixing of furniture.": "家具等を固定していても、適切に固定されていない場合は、実施効果が低減してしまうので注意が必要です。今後の普及や啓発によって、適切な方法での家具の固定を推し進め、さらなる被害の抑制を目指します。",
+ "Liquefaction distribution of the earthquake directly under the southern part of the Tokyo metropolitan area": "液状化分布",
+ "When an earthquake occurs and the ground receives a strong impact, the soil particles that were previously in contact with and supporting each other become loose, and the phenomenon of the entire ground becoming like a muddy liquid occurs. This is called liquefaction.": "地震が発生して地盤が強い衝撃を受けると、今まで互いに接して支えあっていた土の粒子がバラバラになり、地盤全体がドロドロの液体のような状態になる現象が起きます。これを液状化 といいます。",
+ "When liquefaction occurs, water gushes out from the ground, and the ground that was previously stable suddenly becomes soft, causing phenomena such as buildings standing on it to sink (or tilt), manholes and buried pipes buried in the ground to float up, and the entire ground to flow out toward lower areas.": "液状化が発生すると、地盤から水が噴き出したり、それまで安定していた地盤が急に柔らかくなるため、その上に立っていた建物が沈んだり(傾いたり)、地中に埋まっていたマンホールや埋設管が浮かんできたり、地面全体が低い方へ流れ出すといった現象が発生します。",
+ "Estimation of Damage Caused by Liquefaction": "液状化による被害の想定",
+ "Liquefaction is expected to occur in reclaimed land, coastal areas, and bay areas. It is estimated that up to approximately 1,500 buildings will be completely destroyed due to liquefaction.\nIn areas with a seismic intensity of 6-lower or higher, it is expected that not only buildings will collapse, but also utility poles will tilt or sink due to liquefaction, leading to power outages.": "埋立地や沿岸部、湾岸部において液状化の発生が想定されます。液状化により建物が全壊する被害は、最大で約1,500棟が想定されています。\n震度6弱以上のエリアでは、建物倒壊だけではなく、この液状化によって電柱が傾いたり沈んだりし、停電につながることが想定されます。",
+ "Looking back at past liquefaction damage, the impact of liquefaction damage on post-earthquake life is massive and diverse, such as the occurrence of water fountains and sand boils, subsidence and tilting of detached houses, deformation of road surfaces, and damage to lifeline facilities. These impacts occur in a complex manner, and the duration of the impact is prolonged.": "過去の液状化被害を振り返ると、噴水・噴砂の発生、戸建て住宅の沈下や傾斜、道路面の変形、ライフライン施設の被害など、液状化による被害が地震後の生活に及ぼす影響は多大にして多種多様であり、これらが複合的に発生することで影響期間は長期に及ぶ ことになります。",
+ "Countermeasures against Liquefaction": "液状化の対策",
+ "In order to mitigate liquefaction damage in residential areas, it is important for residents and businesses to take their own daily precautions in conjunction with pre-disaster countermeasure projects led by the government, as well as prompt responses by the government when a disaster occurs.\nThe Ministry of Land, Infrastructure, Transport and Tourism has published the \"Guidelines for Creating Liquefaction Hazard Maps for Risk Communication\" and is promoting the creation of liquefaction hazard maps.\nIn the future, it is expected that the creation of liquefaction hazard maps in each local government will progress through the utilization of materials related to liquefaction, and that interest in liquefaction damage to residential land will increase, leading to an improvement in regional disaster prevention capabilities.": "宅地における液状化被害を軽減するためには、行政が主導する事前の対策事業にあわせ、住民や事業者が自ら行う日頃からのそなえや、行政による発災時の速やかな対応が重要となります。\n国土交通省では、「リスクコミュニケーションを取るための液状化ハザードマップ作成の手引き」を公表し、液状化ハザードマップの作成を推進しています。\n今後は、液状化に関する資料の活用により、各自治体において液状化ハザードマップの作成が進み、宅地の液状化被害に対する関心が高まり、地域防災力の向上が図られることが期待されています。",
+ "Seismic Intensity Distribution": "震度分布",
+ "In the event of an Earthquake directly under the southern part of Tokyo Metropolitan City, areas with a seismic intensity of 6-upper or higher are expected to be concentrated mainly in the eastern and southwestern parts of the ward area. The area with a seismic intensity of 7 is approximately 14 km², and the area with a seismic intensity of 6-upper is approximately 388 km².": "都心南部直下地震において、震度6強以上の地域は、区部東部や区部南西部を中心に分布すると考えられています。震度7の面積は約14 km²、震度6強の面積は約 388 km²です。",
+ "The Earthquake directly under the southern part of Tokyo Metropolitan City is expected to have a significant direct impact on the functions of the capital. There are also concerns about the impact on transportation networks such as the Shinkansen and airports located in the southern part of Tokyo, as well as the risk of fire spreading in areas with a high concentration of wooden houses. Therefore, the \"Earthquake directly under the southern part of Tokyo Metropolitan City\" is considered to be the central focus when considering countermeasures for earthquakes directly under the capital.": "都心南部直下地震は首都機能に対し直接的に大きな影響を与えると想定されます。また、東京の南部に位置する新幹線や空港等の交通網への影響や、木密住宅が密集する地域での火災延焼の危険性があります。これらのことから、「都心南部直下地震」は首都直下地震対策を検討していく上で中心となる地震 と位置付けられています。",
+ "Full Set of Reports on Damage Estimates for Tokyo Due to Major Earthquakes Such as an Earthquake Directly Under the Capital": "首都直下地震等による東京の被害想定報告書",
+ "10 Years of Efforts and Disaster Mitigation Effects": "10年間の取り組みと減災効果",
+ "Since the Great East Japan Earthquake, the Tokyo Metropolitan Government has been working to enhance its disaster preparedness in preparation for major earthquakes such as one directly under the capital. Here, we will first look at the efforts made over the past 10 years and the assumed disaster mitigation effects from the perspectives of seismic resistance, fireproofing, and self-help and mutual assistance.": "東京都は、東日本大震災が起きてからずっと、首都直下地震等にそなえて、防災力を高めるための取り組みをしてきました。 ここではまず「耐震化」「不燃化」「自助・共助」 という視点から、この10年間における取り組みと、それによって生じたと想定される減災効果をみていきましょう。",
+ "Major Efforts and Disaster Mitigation Effects over 10 Years": "10年間の主な取組と減災効果",
+ "Earthquake-proofing": "耐震化",
+ "The Tokyo Metropolitan Government has been promoting \"seismic resistance.\" First, plans were formulated and ordinances were enacted to comprehensively promote the seismic resistance of buildings. Starting in 2012, mandatory diagnosis was implemented. Buildings adjacent to \"emergency transportation roads\" that serve as major arteries for evacuation, emergency rescue, firefighting, and emergency goods transportation during an earthquake are now required to undergo seismic diagnosis. Subsidies for renovation costs were also started in conjunction with this. Starting in 2018, the results of seismic diagnosis are required to be disclosed. In addition, financial support is provided to wards, cities, and towns, and experts are dispatched. While promoting seismic diagnosis and seismic retrofitting of housing, Tokyo's unique \"Tokyo Seismic Mark Display System\" and other measures have also been implemented. Efforts have been made to raise awareness from various perspectives.": "",
+ "Possible disaster mitigation effects": "想定される減災効果",
+ "The seismic resistance rate of buildings along designated emergency transportation roads has increased by approximately 10.3% (from 81.3% to approximately 91.6%), and the seismic resistance rate of housing has increased by approximately 10.8% (from 81.2% to approximately 92.0%).": "特定緊急輸送道路沿道建築物の耐震化率が約10.3%(81.3%→約91.6%)、住宅の耐震化率が約10.8%(81.2%→約92.0%)増加しました。",
+ "Self-help and mutual aid": "自助・共助",
+ "To prepare for disasters, the \"Tokyo Disaster Preparedness\" and \"Tokyo Life Disaster Preparedness\" manuals were created and distributed, compiling information on how to protect oneself. The \"Tokyo Stockpile Navigation\" promotes the stockpiling of food, daily necessities, and other items. In addition, training for disaster prevention coordinators to develop female leadership personnel has been conducted. Awareness-raising activities have been promoted, such as holding the \"Tokyo Disaster Prevention Learning Seminar\" at various locations throughout Tokyo.": "災害にそなえ、身を守るための情報をまとめた「東京防災」 「東京くらし防災」 を作成・配布。「東京備蓄ナビ」 により、食料や生活必需品等の備蓄を促進しました。 また、女性のリーダー的人材を育成する防災コーディネーター研修を実施。「東京防災学習セミナー」を都内各所で開催するなど、啓発活動を進めてきました。",
+ "As a result, the implementation rate of measures such as preventing furniture from falling over improved from approximately 53.6% to approximately 57.3%, and the implementation rate of daily stockpiling* improved from approximately 46.4% to approximately 56.3%.\n(*Change from FY2017)": "その結果、家具類転倒防止等実施率は約53.6%→約57.3%、日常備蓄の実施率*は約46.4%→約56.3%と改善がみられました。\n(*2017年度からの変化)",
+ "What if there is an earthquake in Tokyo?": "東京で地震が起きたら?",
+ "Prepare for the future": "未来にそなえる",
+ "An earthquake of magnitude 7 or so is expected to occur directly under the Tokyo metropolitan area.": "首都直下地震で想定されるマグニチュード7程度の地震。その30年以内の発生確率は、70%程度と予想されています。 東京都はこうした首都直下地震などにそなえ、防災力の強化を推進してきました。いつ起きてもおかしくない災害から人々の命と財産を守るためには、都による「公助」の取り組みと合わせ、「自助」、「共助」の取り組みも進めていく必要があります。 ここでは、東京で地震が起きた場合に想定される被害の概要と、これまでに都が進めてきた防災対策について見ていきましょう。",
+ "Regional Characteristics of Tokyo": "東京都の地域特性",
+ "Tokyo is long and narrow from east to west. It is characterized by large differences in altitude, ranging from mountains over 2,000 meters in elevation to zones with no elevation above sea level. Tokyo is divided into \"inland areas\" and \"island areas\". The inland area consists of four types of terrain: mountains, hills, plateaus, and lowlands, while the island areas include the Izu and Ogasawara Islands on the western side of the Pacific Ocean. There are also areas with rows of dilapidated wooden houses, office areas with high-rise buildings, the bay area with its forests of high-rise condominiums, and the eastern low-lying areas where the land is lower than the sea at high tide, requiring disaster countermeasures tailored to the characteristics of each region.": "東京都は東西に細長い地形 をしています。高度の差が大きい のも特徴で、標高 2,000mを越える山りょうから海抜ゼロ地帯まで、さまざまなエリアがあります。 東京都は「内陸部 」と「島しょ地域 」とに分けられます。山地、丘陵地、台地、低地の4つの地形からなる内陸部と、太平洋の西側にある伊豆諸島や小笠原諸島などの島しょ地域です。 また、老朽化した木造住宅 が連なるエリアや、高層ビル が立ち並ぶオフィス街、湾岸部の高層マンション が林立する地帯、満潮になると陸地が海よりも低くなる東部低地帯 などがあり、それぞれの地域特性に合わせた災害対策が必要です。",
+ "Earthquake in the southern part of the metropolis": "都心南部直下地震",
+ "An earthquake directly under the southern part of central Tokyo is expected to cause the greatest damage in Tokyo. In the event of this earthquake, it is said that the seismic intensity of 6 or higher will extend over approximately 60% of the wards of the city. The maximum number of fatalities expected is approximately 6,000. It is estimated that about 190,000 buildings will be damaged.": "「都心南部直下地震」は、東京都内で最大規模の被害が想定される地震です。この地震が起きた場合、震度6強以上の範囲は区部の約6割に広がると言われています。予想される死者数は最大で約6,000人。建物被害は約19万棟発生すると想定されています。",
+ "Tokyo Fire Department, Firefighting Boys and Girls Brigade: A Guide for High School Students, Chapter 5.": "東京消防庁「消防少年団\u3000高校生団員のてびき」",
+ "Earthquake directly under the Tama East": "多摩東部直下地震",
+ "In the event of an earthquake directly under the eastern part of Tama, the Tama region is expected to be severely damaged. The seismic intensity of 6 or higher is expected to extend over approximately 20% of the Tama region. It is estimated that approximately 160,000 buildings will be damaged and approximately 5,000 people will be killed.": "「多摩東部直下地震」が起きた場合は、多摩地域に大きな被害が想定されます。震度6強以上の範囲は多摩地域の約2割に広がると考えられます。建物被害は約16万棟、死者は約5,000人発生すると想定されています。",
+ "By replacing the 3D graphs with planes for each region, different perspectives can be observed.": "3Dのグラフを地域ごとに平面に置き換えることで、異なる視点で観察ができます。",
+ "Please note that we are not responsible for any loss or damage to life, body, or property that may occur as a result of activities based on information provided by this site.This Site may be temporarily delayed or interrupted without prior notice to users due to communication line equipment, system failure, maintenance, or other unavoidable reasons.This site shall not be liable for any damages incurred by users or other third parties resulting from such delays or interruptions.": "当サイトからの提供情報に基づいた活動において発生したいかなる生命、身体、財産上の損失又は損害について、一切の責任を負いかねますので、あらかじめご了解ください。当サイトは、通信回線設備、システムの障害、メンテナンス、その他やむを得ない事由により、利用者に事前に通知することなく一時的に遅延又は中断されることがあります。当サイトは、表示の遅延又は中断等が発生しても、これに起因する利用者又は他の第三者が被った損害について一切の責任を負いかねます。",
+ "Tokyo Metropolitan Government Earthquake Resistance Portal Site": "東京都耐震ポータルサイト",
+ "Earthquake directly under the southern part of Tokyo Metropolitan City": "都心南部直下地震",
+ "An earthquake directly under the Tokyo capital region could occur anywhere within the city. The \"Earthquake directly under the southern part of Tokyo Metropolitan City\" is considered to be the earthquake that would cause the most damage to Tokyo, but if the epicenter were to occur in a different location, the seismic intensity and damage to each region would vary greatly. Therefore, it is important to always be prepared for the worst-case scenario.": "首都直下地震は、都内のどこが震源になってもおかしくありません。「都心南部直下地震 」は、東京に最も被害をおよぼすと想定される地震ですが、異なる場所が震源となった場合、各地域の震度や被害は大きく異なります。このため、常に最悪の状況を想定して、日頃からの備えを行いましょう。",
+ "Tokyo Disaster Prevention: Potential Damage Around You": "東京防災:身の回りで起こり得る被害の様相",
+ "For the future": "未来のために",
+ "Tokyo has a high concentration of housing and urban functions. Therefore, if a large-scale earthquake occurs in Tokyo, it could cause enormous damage to people's lives and property, and there is a risk that it will become difficult to maintain the functions of the capital. On the other hand, thanks to lessons learned from recent large-scale disasters and other factors, the disaster prevention measures of the national and Tokyo metropolitan governments have been steadily progressing.": "東京には住宅や都市機能が密集しています。そのため、東京で大規模地震が発生すると、人々の生命や財産に甚大な被害が生じる とともに、首都機能の維持が困難となる おそれがあります。 いっぽう、近年の大規模災害における教訓などによって、国や都の防災対策は着実に進展 しています。",
+ "In the \"damage estimates\" we have seen so far, we have tried to reflect as much as possible the situation of how efforts to realize a safe and secure Tokyo are progressing, as well as changes in the population structure and other aspects of the reality of the major city of Tokyo. In addition, the damage estimates were conducted using the latest data that has become available due to technological advances and the latest knowledge based on recent large-scale earthquakes.": "これまで見てきた「被害想定」では、安全・安心な東京を実現するための取り組みがどう進んでいるかといった状況や、人口構造の変化など、できるだけ大都市東京の実情を反映するようにしました。また、技術が進歩したことによって蓄積できるようになった最新のデータや、近年の大規模地震をふまえた最新の知見などを生かして被害想定を実施しました。",
+ "Nevertheless, damage estimates are conducted based on assumptions. Since natural phenomena involve large uncertainties, there are certain limitations to the estimation results.": "それでもなお、被害想定は仮定に基づいて実施されています。自然現象とは大きな不確定要素を伴うものなので、想定結果には一定の限界があります。",
+ "Rather than being caught up in the damage estimation results alone, let's steadily promote preventive measures such as seismic resistance and fireproofing in preparation for large-scale earthquakes that can occur at any time and under any conditions. It is also important to establish a perfect system so that we can respond quickly according to the situation of the disaster.": "被害想定結果だけにとらわれず、いつ、どのような条件下で発生するか分からない大規模地震に備え、耐震化・不燃化などの予防対策を着実に進めましょう。 また、災害の状況に応じてすばやく対応ができるよう、万全の体制を構築しておくことが重要です。",
+ "Based on the damage estimates, the Tokyo Metropolitan Government, municipalities, and other related organizations need to promote effective measures by revising regional disaster prevention plans and implementing various measures in the future.\nIn addition, in order to minimize damage in the event of a large-scale earthquake, it is essential for society as a whole, including individual Tokyo residents, communities, and businesses, to work together.": "被害想定をふまえ、都、区市町村をはじめとする各関係機関は、今後、地域防災計画を修正したり、さまざまな施策を展開したりすることで、実効性のある対策を進めていくことが必要です。\nまた、大規模地震が発生した際、被害を最小限に抑えるためには、都民一人ひとりや地域、事業者など社会全体での取り組みが不可欠です。",
+ "Let's unite all the forces of self-help, mutual assistance, and public assistance by having local governments, administrative agencies, individual Tokyo residents, and private businesses work together to face large-scale earthquakes.": "自治体や行政機関、都民一人ひとり、民間の事業者、それぞれが相互に連携する ことで、 自助・共助・公助のすべての力を結集して大規模地震に立ち向かっていきましょう。",
+ "The Tokyo Metropolitan Government has been promoting \"seismic resistance.\" First, plans were formulated and ordinances were enacted to comprehensively promote the seismic resistance of buildings. Starting in 2012, mandatory diagnosis was implemented. Buildings adjacent to \"emergency transportation roads\" that serve as major arteries for evacuation, emergency rescue, firefighting, and emergency goods transportation during an earthquake are now required to undergo seismic diagnosis. Subsidies for renovation costs were also started in conjunction with this. Starting in 2018, the results of seismic diagnosis are required to be disclosed. In addition, financial support is provided to wards, cities, and towns, and experts are dispatched. While promoting seismic diagnosis and seismic retrofitting of housing, Tokyo's unique \"Tokyo Seismic Mark Display System\" and other measures have also been implemented. Efforts have been made to raise awareness from various perspectives.": "東京都では「耐震化 」を進めてきました。 まず、建物の耐震化を総合的に促進するための計画を策定 したり、耐震化を推進する条例を制定 したりしました。 2012年からは、診断の義務化 を進めました。震災時に避難や救急・消火活動、緊急物資輸送の大動脈となる幹線道である「特定緊急輸送道路沿道」に接する建築物は、耐震診断をすることが義務化されたのです。これに伴い、改修費用の助成 も開始しました。 2018年からは耐震診断の結果を公表 するように。 また、区市町村を財政面で支援したり、専門家を派遣したりしています。住宅などの耐震診断や耐震改修を促進すると同時に、東京都独自の「東京都耐震マーク表示制度」なども実施。さまざまな視点から普及・啓発を行ってきました。",
+ "Distribution of the number of buildings burned by the earthquake directly under the southern part of central Tokyo": "都心南部直下地震震度分布",
+ "The Tokyo Metropolitan Government has promoted the 10-year project to make densely wooded areas noncombustible by utilizing the special zone system to promote noncombustibility through special support, and by integrally promoting the development of specific development routes to form fire spread zones, and has promoted noncombustibility especially in development areas where severe damage is expected.": "東京都では木密地域不燃化10年プロジェクトを掲げ、特別な支援により不燃化を推進する不燃化特区制度の活用と、延焼遮断帯を形成する特定整備路線の整備 を一体的に進め、特に甚大な被害が想定される整備地域の不燃化を推進してきた。",
+ "As a result, the area of densely populated wooden houses increased from about 16,000 ha to about 8.6,000 ha, and the percentage of noncombustible area (in developed areas) improved significantly from about 58.4% to about 64.0%.\nOn the other hand, the number of firefighters, who play an important role in local disaster prevention such as firefighting and rescue activities, has decreased from about 24,000 to 22,000.": "その結果、木造住宅密集地域は約16千ha→約8.6千ha、不燃領域率(整備地域) 約58.4%→約64.0%とそれぞれ大きく向上した。\n反面、消火活動や救助活動など地域防災の重要な役割を担う消防団員数は約2.4万人→約2.2万人と減少している。",
+ "Potential disaster mitigation benefits": "想定される減災効果",
+ "The number of houses destroyed by fire has decreased from approximately 200,000 to 120,000, and the number of deaths by fire has decreased from approximately 4,100 to 2,500. However, the damage is still expected to be enormous.": "焼失棟数は約20万棟→約12万棟、火災による死者数は約4,100人→約2,500人と被害想定は減少している。ただし、未だ甚大な被害が想定される。",
+ "On the other hand, there are concerns about the decline in local disaster preparedness, such as a decrease in the number of firefighters, so it is necessary to strengthen not only hardware but also software measures.": "一方、消防団員の減少など、地域の防災力低下も懸念されるため、ハードはもとよりソフト対策も取組強化が必要とされる。",
+ "In order to control the damage caused by fires, it is important to reduce the number of fires themselves. Therefore, we estimate the effect of fire suppression measures.": "火災による被害を抑制するためには、出火件数自体を減少させることが重要である。 そのため、出火抑制対策を実施した場合の効果を推計する。",
+ "*The following is an estimation of the effect if \"reduction of fires caused by electricity\" and \"improvement of initial fire extinguishing rate\" were promoted as fire suppression measures compared to the current situation.": "※ここでは、出火抑制対策として、「電気を要因とする出火の低減」及び「初期消火率 の向上」が、現状よりも促進された場合の効果を推計する。",
+ "*The current situation is that the reduction rate of fires caused by electricity is assumed to be 8.3% of the installation rate of earthquake-sensitive breakers, and the initial fire extinguishing rate1 is assumed to be 36.6%.": "※現況としては、電気を要因とする出火の低減率は感震ブレーカーの設置率の8.3% とし、初期消火率1は36.6%とした。",
+ "*The table below sets the rate of fire suppression when fire suppression measures are increased.": "※下表のとおり出火抑制対策を高めた場合の対策率を設定する。",
+ "Conditions for calculating the effect of fire suppression measures": "出火抑制による対策効果の算定条件",
+ "Effects of countermeasures on the number of fires started and the number of fires burned\n(Earthquake directly under the southern part of central Tokyo, winter, evening, wind speed 8m/s)": "出火件数・焼失件数の対策効果\n(都心南部直下地震、冬・夕方、風速8m/s)",
+ "The number of deaths and destroyed buildings has decreased by 30~40% from the previous forecast. It is estimated that the number of deaths and destroyed buildings can be reduced by taking further countermeasures.": "死者・焼失棟数は、前回想定から3~4割減少。さらに対策を進めることで、死者数、焼失棟数を減少させることが可能と推計。",
+ "Total destruction is the level of damage to a dwelling based on the criteria for damage assessment, where the basic functions of the dwelling have been lost and the floor area of the damaged portion has reached 70% or more of the total floor area of the dwelling, or where the economic damage to the main components of the dwelling, expressed as a percentage of the total damage to the dwelling, has reached 50% or more of the total damage.": "全壊とは、被害認定基準に基づいて設定される住家の被害程度であり、 住家がその居住のための基本的機能を喪失したもので、損壊部分の床面積がその住家の延床面積の 70%以上に達した程度のもの、又は住家の主要な構成要素の経済的被害を住家全体に占める損害割合で表した場合に 50%以上に達した程度のものをいう。",
+ "The earthquake resistance rate of Tokyo's residential buildings was 92% as of 2020, but the city has been promoting the earthquake resistance of buildings built before 1980 that were constructed under the old earthquake resistance standards, and all buildings have been reconstructed or reinforced to comply with the Building Standard Law that came into effect in June 1981 (hereinafter referred to as the \"1981 Standards (New Earthquake Resistance Standards)\"). The effect of the new earthquake-proofing standard is estimated. The effects of meeting the new earthquake resistance standards are estimated.": "東京都の住宅の耐震化率は令和2(2020)年時点で92%であるが、旧耐震基準で建てられた昭和 55(1980)年以前の建物について耐震化を推進し、すべての建物が建替えや耐震補強等の実施により、昭和 56(1981)年 6 月から施行された建築基準法(以下、「1981 年基準(新耐震基準)」という。) を満たした場合の効果を推計する。",
+ "In addition, we estimate the effect if the Building Standard Law that came into effect in June 2000 (hereinafter referred to as the \"2000 Standard\") is met and all buildings are built to the 2000 Standard. The effects are estimated if all buildings were reconstructed in accordance with the Building Standards Law (hereafter referred to as the \"2000 Standards\"), which came into effect in June 2000.": "さらに、平成12(2000)年6月から施行された建築基準法(以下、「2000年基準」と いう。) を満たし、すべての建物が建て替えられた場合の効果を推計する。",
+ "Major efforts and disaster mitigation effects over the past 10 years": "10年間の主な取組と減災効果",
+ "Estimated Damage Reduction Benefits": "推計される被害軽減効果",
+ "The number of buildings totally destroyed and the number of fatalities are estimated to decrease by approximately 60% from the current level if the buildings are made earthquake resistant according to the \"1981 Standards\" (the new earthquake resistance standards).": "「1981年基準(新耐震基準)」による耐震化が実現した場合、全壊棟数及び死者数は現況より約6割減少すると推計。",
+ "If the \"2000 earthquake resistance standard\" is adopted, the number of buildings totally destroyed and the number of fatalities will be further reduced by approximately 50% compared to the \"1981 standard (new earthquake resistance standard)\" (approximately 80% reduction from the current situation). (about 80% less than the current situation)": "「2000 年基準」による耐震化が実現した場合、全壊棟数及び死者数は「1981年基準 (新耐震基準)」による耐震化よりさらに約5割減少すると推計。(現況より約8割減少)。",
+ "The number of fatalities will be calculated if the implementation rate of measures to prevent furniture from falling over, falling down, and moving is increased from the current rate of 57.3% (in 2020) to 75% (Promotion 1) or 100% (Promotion 2), and the effect of measures to prevent furniture from falling over will be estimated.": "東京都の住宅の耐震化率は令和2(2020)年時点で92%であるが、旧耐震基準で建てられた昭和 55(1980)年以前の建物について耐震化を推進し、すべての建物が建替えや耐震補強等の実施により、昭和 56(1981)年 6 月から施行された建築基準法(以下、「1981 年基準(新耐震基準)」という。) を満たした場合の効果を推計する。\nさらに、平成12(2000)年6月から施行された建築基準法(以下、「2000年基準」と いう。) を満たし、すべての建物が建て替えられた場合の効果を推計する。",
+ "Improvement in the rate of implementation of measures to prevent falling furniture and other objects Increase in the rate of implementation of measures to prevent furniture from falling over and falling down": "家具等の転倒・落下防止対策実施率の向上",
+ "Even if furniture, etc. is secured, if it is not properly secured, the effect of implementation will be reduced. Further reduction of damage can be expected by encouraging people to secure furniture in an appropriate manner and increasing the effectiveness of countermeasures through further promotion and awareness-raising activities.": "家具等の転倒・落下・移動防止対策実施率を現状の57.3%(令和2(2020)年)から 75%(促進1)又は 100%(促進2)に引き上げた場合の死者数を算出し、家具等 の転倒防止による対策効果を推計する。",
+ "According to the results of the Great Hanshin-Awaji Earthquake, about 23% of the furniture and other objects for which measures have been taken were ineffective due to inadequate fixation methods, etc.": "また、家具等を固定していても、適切に固定されていない場合は、実施効果が低減してしまう。今後の普及啓発等により、適切な方法による家具の固定を一層促し、対策の実効性を高めることでさらなる被害の抑制が見込まれるため、そうした効果も考慮して推計する。",
+ "A phenomenon in which loose sandy soil containing water behaves like a liquid when subjected to strong seismic shaking. Water mixed with sand blows out (sand jet) and moves laterally (lateral flow). Buildings and other structures sink or tilt, and manholes, septic tanks, and other structures lift off the ground. Lateral flow may cause foundation piles to break.": "水を含む緩い砂質の地盤が地震の強い揺れを受けて液体のような 挙動をする現象。砂混じりの水が吹き出し(噴砂)、横方向へ移動する(側方流動)。建物等は沈下や傾斜、マンホールや浄化槽等の浮き上がりが発生する。側方流動によって基礎杭が折れる可能性がある。",
+ "Tokyo Damage Assumption Report due to an earthquake directly under the Tokyo Metropolitan Area, etc.": "首都直下地震等による東京の被害想定報告書",
+ "Damage Assumption Future Issues and Prospects": "被害想定における今後の課題と展望",
+ "Tokyo has a high concentration of residences and urban functions, and a large-scale earthquake could cause extensive damage to people's lives and property, as well as make it difficult to maintain the functions of the capital. On the other hand, based on lessons learned from recent large-scale disasters, the national government and metropolitan government have made steady progress in disaster prevention measures.": "東京には住宅や都市機能が高度に集積しており、一度大規模地震が発生すると、人々の生命や財産に甚大な被害が生じる とともに、首都機能の維持が困難となる おそれがある。 一方、近年の大規模災害における教訓等を踏まえ、国や都等による防災対策は着実に進展 している。",
+ "In this report, the damage assumptions are based on the latest accumulated data based on recent technological innovations and the latest findings based on recent large-scale earthquakes, as well as efforts to reflect the actual conditions of the metropolis to the greatest extent possible, including the progress of efforts to realize a safe and secure Tokyo and changes in the population structure.": "今回の被害想定においては、安全・安心な東京を実現するための取組の進展や、人口構造の変化など、可能な限り大都市東京の実情を反映するよう努めるとともに、近年の技術革新に基づく最新のデータの蓄積や、近年の大規模地震を踏まえた最新の知見等を活かして被害想定を実施した。",
+ "However, while the damage assumptions are based on assumptions, natural phenomena are subject to large uncertainties, and the assumed results have certain limitations. The damage assumptions made this time are based on various assumptions, such as earthquake size, epicenter, time of occurrence, wind speed, etc., as well as limited data from past disasters.": "しかし、被害想定が仮定に基づき実施されている一方、自然現象は大きな不確定要素を伴うことから、想定結果には一定程度の限界がある。今回の被害想定も、地震の規模や震源域、発生時刻や風速など、様々な仮定をおくとともに、過去の災害事例における限られたデータに基づいて実施したものである。",
+ "Therefore, it is important to prepare for a large-scale earthquake, which may occur at any time and under any conditions, without being preoccupied only with the damage assumption results, and to steadily promote preventive measures such as earthquake resistance and noncombustibility, and to establish a complete emergency response system so that flexible responses can be made according to disaster conditions.": "このため、被害想定結果のみにとらわれることなく、いつ、どのような条件下で発生するか分からない大規模地震に備え、耐震化・不燃化などの予防対策を着実に進めるとともに、災害状況に応じた機動的な対応ができるよう、万全の応急対策体制を構築しておくことが重要である。",
+ "Based on this damage assumption, the Tokyo Metropolitan Government, municipalities, and other relevant organizations will need to take effective measures by revising regional disaster prevention plans and developing various measures in the future. In addition, in order to minimize damage in the event of a large-scale earthquake, it is essential that the entire society, including individual citizens, local communities, and businesses, take action.": "今回の被害想定を踏まえ、都、区市町村をはじめとする各関係機関は、今後、地域防災計画の修正や各種施策の展開により、実効性のある対策を進めていく必要がある。また、大規模地震が発生した際、被害を最小限に抑えるためには、都民一人ひとりや地域、事業者など社会全体での取組が不可欠である。",
+ "It is hoped that the damage assumptions used in this report will be used by administrative agencies and individual citizens to prepare for disasters, thereby enhancing the disaster preparedness of Tokyo as a whole and, ultimately, protecting the lives of its citizens.": "行政機関や都民一人ひとりが具体的な被害を想定し、災害に備える上で、今回の被害想定を活用することで、東京全体の防災力を高め、ひいては、都民の生命を守ることにつながることを期待したい。",
+ "It is my strong hope that each of these entities will further strengthen their respective efforts and, through mutual cooperation, build a social framework that will mobilize all of the forces of self-help, mutual aid, and public assistance to confront a large-scale earthquake.": "今後、各主体がそれぞれの取組を一層強化するとともに、相互に連携することにより、 自助・共助・公助のすべての力を結集して大規模地震に立ち向かっていく社会の仕組みが 構築されることを強く望むものである。",
+ "The main remaining issues in this damage assessment are as follows.": "なお、本被害想定において残された主な課題として、以下のような点が挙げられる。",
+ "Quantitative evaluation of possible damage from long-period seismic motions and combined disasters": "長周期地震動や複合災害について、起こりうる被害の定量評価",
+ "Quantitative assessment of factors that could further increase damage to lifelines (e.g., reduced supply capacity due to damage to power plants, telephone line congestion, etc.)": "ライフライン被害をさらに拡大させる要素の定量評価(発電所被災による供給力低下、電話回線の輻輳等)",
+ "Assessment of the impact on restoration activities of other infrastructures and lifelines if restoration of infrastructure and lifeline damage is delayed.": "インフラ・ライフライン被害の復旧が遅れた場合に、他のインフラ・ライフラインの復旧活動に及ぼす影響の評価",
+ "Seismic intensity distribution of earthquakes directly under the southern part of central Tokyo": "都心南部直下地震震度分布",
+ "This is an intra-plate earthquake with its epicenter in the southern part of the city, and is the earthquake that will cause the most damage in the entire metropolitan area among the earthquakes assumed in this report. Areas of seismic intensity 6 or higher are distributed mainly in the eastern and southwestern parts of the city. The area of seismic intensity 7 is about 14 km², and the area of seismic intensity 6 or higher is about 388 km².": "区部の南部を震源域とするプレート内地震であり、今回の想定地震の中で都全体での被害が最 大となる地震動である。震度6強以上の地域は、区部東部や区部南西部を中心に分布する。震度 7の面積は約 14 km²、震度6強の面積は約 388 km²である。",
+ "Major initiatives and disaster mitigation benefits over the past 10 years": "10年間の主な取組と減災効果",
+ "Since the Great East Japan Earthquake, the Tokyo Metropolitan Government has been promoting further reinforcement of disaster preparedness in preparation for earthquakes directly under the Tokyo metropolitan area.": "東京都は東日本大震災以降、首都直下地震等に備え、一層の防災力の強化を推進している。",
+ "The following is a summary of the major efforts over the past 10 years in the areas of \"earthquake resistance,\" \"noncombustibility,\" and \"self-help/mutual aid,\" as well as the assumed disaster mitigation effects of these efforts.": "平成 24(2012)年の被害想定に基づいて各種防災対策に取り組んでおり、まずは大きく「耐震化」「不燃化」「自助・共助」 において、この10年間における取組と、それによる想定減災効果を整理する。",
+ "The Tokyo Metropolitan Government has been promoting seismic retrofitting based on the Tokyo Metropolitan Government Seismic Retrofitting Promotion Plan and has enacted an ordinance to promote seismic retrofitting. Since 2012, seismic diagnosis has been mandatory for buildings along specified emergency transportation roads, and subsidies have been provided for retrofitting costs. Since 2008, the results of seismic diagnoses have been made public. In addition, the Tokyo Metropolitan Government has been promoting seismic diagnosis and retrofitting of houses and other structures by providing financial support to municipalities and dispatching experts to property owners, as well as promoting awareness through the Tokyo Metropolitan Government's own seismic mark display system.": "東京都では東京都耐震改修促進計画に基づく耐震化の促進や、耐震化推進条例を制定し、平成24年から特定緊急輸送道路沿道建築物の耐震診断を義務化、改修費用の助成を実施。平成30年からは耐震診断結果を公表している。また、区市町村に対する財政支援や所有者への専門家派遣等による、住宅等の耐震診断や耐震改修を促進し、 都独自の東京都耐震マーク表示制度等による普及啓発を実施してきた。",
+ "The earthquake resistance rate of buildings along specified emergency transportation roads increased from about 81.3% to about 91.6%, and the rate of earthquake resistance of houses increased from about 81.2% to about 92.0%.": "特定緊急輸送道路沿道建築物の耐震化率が約81.3%→約91.6%、住宅の耐震化率が約81.2%→約92.0%と増加した。",
+ "Tokyo Disaster Prevention\" and \"Tokyo Life Disaster Prevention\" were prepared and distributed to ensure disaster preparedness. The \"Tokyo Stockpiling Navi\" promotes the stockpiling of food and daily necessities.": "災害への備えを万全にする「東京防災」「東京くらし防災」を作成・配布。「東京備蓄ナビ」により、食料や生活必需品等の備蓄を推進。また、女性のリーダー的人材を育成する防災コーディネーター研修を実施。「東京防災学習セミナー」を都内各所で開催するなど、啓蒙活動を進めてきた。",
+ "Disaster prevention coordinator training is also conducted to nurture female leaders. The \"Tokyo Disaster Prevention Study Seminar\" has been held at various locations in Tokyo to promote awareness of disaster prevention.": "その結果、家具類転倒防止等実施率は約53.6%→約57.3%、日常備蓄の実施率*は約46.4%→約56.3%と改善がみらえる。(*2017年度からの変化)",
+ "Please note that we are not responsible for any loss or damage to life, body, or property that may occur as a result of activities based on information provided by this site.This site may be temporarily delayed or suspended without prior notice to users due to communication line equipment, system failure, maintenance, or other unavoidable reasons.TMG shall not be liable for any damages incurred by users or other third parties resulting from delays or interruptions of this site.": "当サイトからの提供情報に基づいた活動において発生したいかなる生命、身体、財産上の損失又は損害について、一切の責任を負いかねますので、あらかじめご了解ください。\n当サイトは、通信回線設備、システムの障害、メンテナンス、その他やむを得ない事由により、利用者に事前に通知することなく一時的に遅延又は中断されることがあります。\n東京都は、当サイトの遅延又は中断等が発生しても、これに起因する利用者又は他の第三者が被った損害について一切の責任を負いかねます。",
+ "Source": "出典",
+ "Asahi Shimbun May 25, 2022 Tokyo Metropolitan Government assumes damage from four types of earthquakes directly under the Tokyo metropolitan area, including the \"Great Kanto Earthquake\".": "朝日新聞2022年5月25日\n「『関東大震災』も\u3000首都直下地震、4タイプで被害を想定\u3000東京都」",
+ "Ministry of Land, Infrastructure, Transport and Tourism, 2022 Annual Report on Metropolitan Area Development (Metropolitan Area White Paper).": "国土交通省「令和4年度\u3000首都圏整備に関する年次報告(首都圏白書)」",
+ "Based on the damage estimates, the Tokyo Metropolitan Government, local governments, and other relevant organizations should prepare for future disasters by revising local disaster prevention plans and developing various measures.\nIn the event of a large-scale earthquake, it is essential that the entire society, including each and every citizen, community, and business, work together to minimize the damage. We must work together to save lives and protect what is important to us.": "",
+ "Local governments and administrative agencies, each and every citizen of Tokyo, and private businesses. By mutually cooperating with each other, we can open up a new tomorrow.\nSelf-help, mutual aid, and public assistance. Let's face a large-scale earthquake by mobilizing all our strength.": "",
+ "It is also important to have a complete system in place to be able to respond quickly to disaster situations.\nThe Tokyo Metropolitan Government's disaster prevention system is centered on the Disaster Control Headquarters, which responds to disasters in cooperation with the national government, municipalities, and other organizations based on information from the Disaster Prevention Center.": "",
+ "SCENE_01": "TOKYO 2023",
+ "SCENE_02": "震度分布",
+ "SCENE_03": "全壊棟数分布",
+ "SCENE_04": "焼失棟数分布",
+ "SCENE_05": "液状化分布",
+ "SCENE_06": "エピローグ",
+ "SCENE_01_description": "東京都は高度の差が大きいことが特徴で、標高 2,000mを越える山りょうから海抜ゼロ地帯まで、さまざまなエリアがあります。それぞれの地域特性に合わせた災害対策が必要です。",
+ "SCENE_02_description": "「都心南部直下地震」と「多摩東部直下地震」は今後30年以内の発生確率が70%とされるフィリピン海プレート内で起きる「首都直下地震」の一つです。都心部や多摩地域に大きな影響を及ぼす恐れがあります。",
+ "SCENE_03_description": "全壊する建物の約8割は旧耐震基準であると考えられています。\n被害を軽減するためには、「2000年基準」の耐震化の推進や家具転倒防止対策を広げていくことが重要になります。",
+ "SCENE_04_description": "炎上出火件数とは、全出火件数から居住者、隣人等の初期消火による効果を考慮して組織的な消防活動が必要な件数を推定したものを指し、延焼も考慮されています。\n初期消火の促進や電気を要因とする出火の低減が被害軽減のために必要となります。",
+ "SCENE_05_description": "埋立地や沿岸部、湾岸部において液状化の発生が想定されます。液状化により建物が全壊する被害は、都心南部直下地震の場合、東京湾岸の埋立地や河川沿岸部等の地域を中心に最大で約1,500棟が想定されています。\n液状化の危険度は震度、ボーリングデータ、地盤モデル等をもとに算出されたPL値によって表すことができます。",
+ "SCENE_06_description": null,
+ "SCENE_07_description": null,
+ "SCENE_08_description": null,
+ "SCENE_09_description": null,
+ "SCENE_01_source_title": "首都直下地震等による東京の被害想定報告書",
+ "SCENE_02_source_title": "首都直下地震等による東京の被害想定報告書",
+ "SCENE_03_source_title": "首都直下地震等による東京の被害想定報告書",
+ "SCENE_04_source_title": "首都直下地震等による東京の被害想定報告書",
+ "SCENE_05_source_title": "首都直下地震等による東京の被害想定報告書",
+ "SCENE_06_source_title": null,
+ "SCENE_07_source_title": null,
+ "SCENE_08_source_title": null,
+ "SCENE_09_source_title": null,
+ "SCENE_01_source_url": "https://www.bousai.metro.tokyo.lg.jp/_res/projects/default_project/_page_/001/021/571/20220525/n/002n.pdf",
+ "SCENE_02_source_url": "https://www.bousai.metro.tokyo.lg.jp/_res/projects/default_project/_page_/001/021/571/20220525/n/002n.pdf",
+ "SCENE_03_source_url": "https://www.bousai.metro.tokyo.lg.jp/_res/projects/default_project/_page_/001/021/571/20220525/n/002n.pdf",
+ "SCENE_04_source_url": "https://www.bousai.metro.tokyo.lg.jp/_res/projects/default_project/_page_/001/021/571/20220525/n/002n.pdf",
+ "SCENE_05_source_url": "https://www.bousai.metro.tokyo.lg.jp/_res/projects/default_project/_page_/001/021/571/20220525/n/002n.pdf",
+ "SCENE_06_source_url": null,
+ "SCENE_07_source_url": null,
+ "SCENE_08_source_url": null,
+ "SCENE_09_source_url": null,
+ "SCENE_01_overlay_description": "老朽化した木造住宅が連なるエリアや、高層ビルが立ち並ぶオフィス街、\n湾岸部の高層マンションが林立する地帯、\n満潮になると陸地が海水面よりも低くなる東部低地帯などがあり、\nそれぞれの地域特性に合わせた災害対策が必要です。\nこのマップでは、鉄筋コンクリート造や木造など建物の構造の分布をビジュアライズしています。",
+ "SCENE_02_overlay_description": "東京都内で最大規模の被害が想定される地震が「都心南部直下地震」、\nそして多摩地域の東部を震源域とするプレート内地震「多摩東部直下地震」。\n首都直下地震は、都内のどこが震源になってもおかしくありません。\n常に最悪の状況を想定して、日頃からのそなえを行いましょう。\nこのマップでは、震度の大きさを高さによってビジュアライズしています。",
+ "SCENE_03_overlay_description": "首都直下型地震における建物被害の多くは、\n昭和56年以前に建てられた建物が被害を受けると予想されています。\n昭和56年6月に耐震基準が大幅に強化されたためです。\nその背景には昭和53年の宮城県沖地震で、\nそれまで安全と思われていた学校など鉄筋コンクリート造の建物でさえも\n多くの被害を受けたことがあります。\nこのマップでは、震度分布ごとの色分けと球体サイズを用いて\nこの地震による建物の全壊棟数分布をビジュアライズしています。",
+ "SCENE_04_overlay_description": "東京には、JR山手線外周部を中心に\n木造住宅密集地域(木密地域)が広範に分布しており、\n首都直下地震が発生した場合に火災による\n大きな被害が想定されています。\nこのマップでは、想定される炎上出火件数を3Dグラフとし、\n耐火構造を持つ建築物の分布と重ね合わせてビジュアライズしています。",
+ "SCENE_05_overlay_description": "液状化が発生すると、地盤から水が噴き出したり、\nそれまで安定していた地盤が急に柔らかくなるため、\n地面全体が低い方へ流れ出すといった現象が発生します。\n震度6弱以上のエリアでは、建物倒壊だけではなく、\nこの液状化によって電柱が傾いたり沈んだりし、\n停電につながることが想定されます。\nこのマップでは、地盤モデル等を用いて予測された\n液状化の危険度を色と流線でビジュアライズしています。",
+ "SCENE_06_overlay_description": null,
+ "SCENE_07_overlay_description": null,
+ "SCENE_08_overlay_description": null,
+ "SCENE_09_overlay_description": null,
+ "SCENE_01_overlay_title": "現在の東京のすがた",
+ "SCENE_02_overlay_title": "震度分布",
+ "SCENE_03_overlay_title": "全壊棟数分布",
+ "SCENE_04_overlay_title": "焼失棟数分布",
+ "SCENE_05_overlay_title": "液状化分布",
+ "SCENE_06_overlay_title": null,
+ "SCENE_07_overlay_title": null,
+ "SCENE_08_overlay_title": null,
+ "SCENE_09_overlay_title": null,
+ "SCENE_01_overlay_subtitle": null,
+ "SCENE_02_overlay_subtitle": "都心南部/多摩東部直下地震",
+ "SCENE_03_overlay_subtitle": "都心南部/多摩東部直下地震",
+ "SCENE_04_overlay_subtitle": "都心南部/多摩東部直下地震",
+ "SCENE_05_overlay_subtitle": "都心南部/多摩東部直下地震",
+ "SCENE_06_overlay_subtitle": null,
+ "SCENE_07_overlay_subtitle": null,
+ "SCENE_08_overlay_subtitle": null,
+ "SCENE_09_overlay_subtitle": null,
+ "SCENE_01_0_legend_title": "構造種別",
+ "SCENE_01_0_legend_0": "耐火構造",
+ "SCENE_01_0_legend_1": "準防火造",
+ "SCENE_01_0_legend_2": "防火造",
+ "SCENE_01_0_legend_3": "木造",
+ "SCENE_01_0_legend_4": "なし",
+ "SCENE_01_1_legend_title": "避難施設",
+ "SCENE_01_1_legend_0": "クリックで詳細",
+ "SCENE_02_0_legend_title": "構造種別",
+ "SCENE_02_0_legend_0": "耐火構造",
+ "SCENE_02_0_legend_1": "準防火造",
+ "SCENE_02_0_legend_2": "防火造",
+ "SCENE_02_0_legend_3": "木造",
+ "SCENE_02_0_legend_4": "なし",
+ "SCENE_02_1_legend_title": "震度",
+ "SCENE_02_1_legend_0": "7",
+ "SCENE_02_1_legend_1": "6強",
+ "SCENE_02_1_legend_2": "6弱",
+ "SCENE_02_1_legend_3": "5強",
+ "SCENE_02_1_legend_4": "5弱",
+ "SCENE_02_1_legend_5": "4",
+ "SCENE_02_1_legend_6": "3以下",
+ "SCENE_03_0_legend_title": "構造種別",
+ "SCENE_03_0_legend_0": "耐火構造",
+ "SCENE_03_0_legend_1": "準防火造",
+ "SCENE_03_0_legend_2": "防火造",
+ "SCENE_03_0_legend_3": "木造",
+ "SCENE_03_0_legend_4": "なし",
+ "SCENE_03_1_legend_title": "エリア範囲内の倒壊数",
+ "SCENE_03_1_legend_0": "60件\n以上",
+ "SCENE_03_1_legend_1": "30〜59",
+ "SCENE_03_1_legend_2": "10〜29",
+ "SCENE_03_1_legend_3": "0〜9",
+ "SCENE_03_1_legend_4": "なし",
+ "SCENE_04_2_legend_title": "エリア範囲内の焼失棟数",
+ "SCENE_04_2_legend_0": "100-",
+ "SCENE_04_2_legend_1": "50-100",
+ "SCENE_04_2_legend_2": "20-50",
+ "SCENE_04_2_legend_3": "10-20",
+ "SCENE_04_2_legend_4": "1-10",
+ "SCENE_04_2_legend_5": "0-1",
+ "SCENE_04_2_legend_6": "0",
+ "SCENE_04_1_legend_title": "構造種別",
+ "SCENE_04_1_legend_0": "耐火",
+ "SCENE_04_1_legend_1": "準耐火",
+ "SCENE_04_1_legend_2": "その他",
+ "SCENE_04_1_legend_3": "不明",
+ "SCENE_04_1_legend_4": "なし",
+ "SCENE_04_0_legend_title": "防火地域",
+ "SCENE_04_0_legend_0": "防火地域",
+ "SCENE_04_0_legend_1": "準防火地域",
+ "BURNED_OVERLAY_0_legend_title": "エリア範囲内の焼失棟数",
+ "BURNED_OVERLAY_0_legend_0": "100-",
+ "BURNED_OVERLAY_0_legend_1": "50-100",
+ "BURNED_OVERLAY_0_legend_2": "20-50",
+ "BURNED_OVERLAY_0_legend_3": "10-20",
+ "BURNED_OVERLAY_0_legend_4": "1-10",
+ "BURNED_OVERLAY_0_legend_5": "0-1",
+ "BURNED_OVERLAY_0_legend_6": "0",
+ "SCENE_05_0_legend_title": "構造種別",
+ "SCENE_05_0_legend_0": "耐火構造",
+ "SCENE_05_0_legend_1": "準防火造",
+ "SCENE_05_0_legend_2": "防火造",
+ "SCENE_05_0_legend_3": "木造",
+ "SCENE_05_0_legend_4": "なし",
+ "SCENE_05_1_legend_title": "PL値による液状化危険度判定区分",
+ "SCENE_05_1_legend_0": "15構造種別 「耐火構造」とは、壁や床などが一定の耐火性能(通常の火災が終了するまでの間、建築物の倒壊、および延焼を防止するために必要な性能)を備えた構造のことで、階数や構造部分の種類で異なりますが、最長3時間の火災に耐える高い性能が求められます。 「準耐火構造」は少し緩やかな基準となっており、通常の火災による延焼を抑制するために必要な構造、とされています。階数が低く、延床面積が小さめの建物の場合に該当する基準となっていて、最長1時間、火災による建物の崩壊、あるいは延焼しないことが求められます。 建設地が防火地域・準防火地域の場合、かなりの割合で「耐火構造」、「準耐火構造」のどちらかで建てなければなりません。 その対象外である比較的小規模な住宅でも、防火地域・準防火地域で建てる場合に求められるのが「防火構造」です。外壁と軒裏に防火性のある材料を使用し、30分間の加熱でも支障のある変形や破壊を生じることがなく、またその裏面が出火に至る危険温度とならないことが求められます。 出典:建築基準法施行令 第四章 国土交通省建築基準法制度概要集 URくらしのカレッジ ",
+ "INFO_FIRE_PREVENTION_AREA": "防火地域 防火地域とは、市街地における火災の危険を防除するため定める地域として、具体的な規制が定められた地域です。防火地域とされるエリアのまわりを準防火地域が囲っています。 防火地域か準防火地域かで建築物への要求性能が変わります。 出典:都市計画法 第9条第21項 国土交通省 防火地域等における建築物の規制 ",
+ "INFO_FIRE_PREVENTION_AREA_FOR_OVERLAY": "エリア範囲内の焼失棟数 エリア範囲内の焼失棟数とは、地震発生時に火災によって焼失すると予測される建物の数を、250mメッシュ(区画)ごとに算出したものです。この指標を用いることで、火災による被害が大きくなりやすい地域を特定し、重点的な対策を講じることができます。 算出の手順は以下の通りです。 1. 地震発生時に火災が発生する数を原因別に計算し、住民の初期消火で消せる火災の数を差し引いて、建物ごとの出火確率を設定します。そして、公設消防・消防団の消火率を考慮し、消防効果を加味した建物ごとの出火確率を計算します。 2. 建物の構造(木造かコンクリート造か)や、その地域の風の強さや向きの気象データから、建物ごとの特徴を設定します。 3. 建物ごとの特徴から隣接する建物への延焼の可能性を分析し、ある建物が出火すれば、すべての建物が焼失する可能性が高いエリアをクラスター(運命共同体)として設定します。 4. 手順1で計算した建物ごとの出火確率と、手順3で設定した延焼クラスターから、建物ごとに焼失する確率を計算します。 5. 250mメッシュ単位で全ての建物の焼失する確率を合計することで、その地域で火災によって焼失する建物の数の予測値が求められます。 ただし、エリア範囲内の焼失棟数は、ある地域の地震火災リスクを建物数の形で表現した確率的な指標であり、小数点以下の数字を含むことがあります。 例えば、ある地域の焼失棟数が152.8棟と算出された場合、その地域で平均的に152棟から153棟程度の建物が火災で焼失する可能性があることを示していますが、実際の被害棟数とは異なる場合があります。 出典・参照:令和4年度首都直下地震等による東京の被害想定報告書 平成24年度首都直下地震等による東京の被害想定\u30004-2 各被害の想定手法 "
+}
diff --git a/app/public/music/bgm.wav b/app/public/music/bgm.wav
new file mode 100644
index 0000000..8e64f2b
Binary files /dev/null and b/app/public/music/bgm.wav differ
diff --git a/app/public/music/effect.wav b/app/public/music/effect.wav
new file mode 100644
index 0000000..ff4c30a
Binary files /dev/null and b/app/public/music/effect.wav differ
diff --git a/app/public/music/license_certificate_bgm.txt b/app/public/music/license_certificate_bgm.txt
new file mode 100644
index 0000000..595f994
--- /dev/null
+++ b/app/public/music/license_certificate_bgm.txt
@@ -0,0 +1,25 @@
+LICENSE CERTIFICATE: Envato Elements Item
+=================================================
+This license certificate documents a license to use the item listed below
+on a non-exclusive, commercial, worldwide and revokable basis, for
+one Single Use for this Registered Project.
+
+Item Title: Emotional Piano & Strings
+Item URL: https://elements.envato.com/emotional-piano-strings-2C8DVZP
+Item ID: 2C8DVZP
+Author Username: MusicalSmile
+Licensee: takuma shukuin
+Registered Project Name: web
+License Date: February 29th, 2024
+Item License Code: RSAGXCTZ2P
+
+The license you hold for this item is only valid if you complete your End
+Product while your subscription is active. Then the license continues
+for the life of the End Product (even if your subscription ends).
+
+For any queries related to this document or license please contact
+Envato Support via https://help.elements.envato.com/hc/en-us/requests/new
+
+Envato Elements Pty Ltd (ABN 87 613 824 258)
+PO Box 16122, Collins St West, VIC 8007, Australia
+==== THIS IS NOT A TAX RECEIPT OR INVOICE ====
diff --git a/app/public/music/off.mp3 b/app/public/music/off.mp3
new file mode 100644
index 0000000..aea8817
Binary files /dev/null and b/app/public/music/off.mp3 differ
diff --git a/app/public/music/on.mp3 b/app/public/music/on.mp3
new file mode 100644
index 0000000..c8cc54c
Binary files /dev/null and b/app/public/music/on.mp3 differ
diff --git a/app/src/App.tsx b/app/src/App.tsx
new file mode 100644
index 0000000..87492d1
--- /dev/null
+++ b/app/src/App.tsx
@@ -0,0 +1,12 @@
+import { FC, PropsWithChildren } from "react";
+
+import { ComposedProvider } from "./contexts/ComposedProvider";
+import { I18nProvider } from "./i18n";
+
+export const App: FC = ({ children }) => {
+ return (
+
+ {children}
+
+ );
+};
diff --git a/app/src/components/AppHeader/AppHeader.tsx b/app/src/components/AppHeader/AppHeader.tsx
new file mode 100644
index 0000000..c10f49e
--- /dev/null
+++ b/app/src/components/AppHeader/AppHeader.tsx
@@ -0,0 +1,276 @@
+import { styled } from "@linaria/react";
+import { FC, useEffect, useRef, useState } from "react";
+import { useTranslation } from "react-i18next";
+
+import { breakpointMediaQueries } from "../../constants";
+import type { Sound } from "../../utils";
+import { Button } from "../Button";
+import { Language } from "../icons/Language";
+import { Logo } from "../icons/Logo";
+import { SoundOff } from "../icons/SoundOff";
+import { SoundOn } from "../icons/SoundOn";
+import { Select } from "../Select";
+import { SwitchButton } from "../SwitchButton";
+
+type AppHeaderProps = {
+ areas: { id: string; label: string }[];
+ languages: { id: string; label: string }[];
+ selectedArea?: string;
+ selectedLanguage: string;
+ sound: Sound | null;
+ isSwitchButtonActive?: boolean;
+ onChangeArea?: (area: string) => void;
+ onChangeLanguage?: () => void;
+ onChangeSubScene?: (v: boolean) => void;
+ onChangeSound?: () => void;
+ isBreakpointMd: boolean;
+ showSwitchSubSceneButton: boolean;
+ onClick?: () => void;
+ isOpening: boolean;
+ isOpeningScene1: boolean;
+ isEpilogue: boolean;
+ onBackToTopPage?: () => void;
+ isTitleWhite?: boolean;
+ isCounterScene: boolean;
+};
+
+const SWITCH_BUTTON_DURATION = 300;
+
+const useSwitchButtonAnimation = (showSwitchSubSceneButton: boolean) => {
+ const [delayedShowSwitchSceneButton, setDelayedShowSwitchSceneButton] =
+ useState(showSwitchSubSceneButton);
+
+ const delayedShowSwitchSceneButtonRef = useRef(delayedShowSwitchSceneButton);
+ delayedShowSwitchSceneButtonRef.current = delayedShowSwitchSceneButton;
+ useEffect(() => {
+ let timer: number;
+ if (delayedShowSwitchSceneButtonRef.current && !showSwitchSubSceneButton) {
+ timer = window.setTimeout(
+ () => setDelayedShowSwitchSceneButton(showSwitchSubSceneButton),
+ SWITCH_BUTTON_DURATION,
+ );
+ } else {
+ setDelayedShowSwitchSceneButton(showSwitchSubSceneButton);
+ }
+
+ return () => {
+ window.clearTimeout(timer);
+ };
+ }, [showSwitchSubSceneButton]);
+
+ return delayedShowSwitchSceneButton;
+};
+
+export const AppHeader: FC = ({
+ languages,
+ areas,
+ selectedArea,
+ selectedLanguage,
+ sound,
+ isSwitchButtonActive,
+ onChangeArea,
+ onChangeLanguage,
+ onChangeSubScene,
+ onChangeSound,
+ isBreakpointMd,
+ showSwitchSubSceneButton,
+ onClick,
+ isOpening,
+ isOpeningScene1,
+ isEpilogue,
+ onBackToTopPage,
+ isTitleWhite,
+ isCounterScene,
+}) => {
+ const { t } = useTranslation();
+ const delayedShowSwitchSceneButton = useSwitchButtonAnimation(showSwitchSubSceneButton);
+
+ const languageLabel = languages.find(p => p.id === selectedLanguage)?.label || "";
+
+ return (
+
+
+
+ {!isOpeningScene1 && }
+
+
+
+
+ {!isBreakpointMd && !isOpening && (
+
+ {delayedShowSwitchSceneButton && (
+
+
+
+ )}
+
+ )}
+
+
+ {!isBreakpointMd && (
+
+ {!isOpening && !isEpilogue && (
+
+
+
+ )}
+
+ <>
+
+
+
+ {!isOpeningScene1 && (
+
+ {sound === "on" ? (
+
+ ) : (
+
+ )}
+
+ )}
+ >
+
+ )}
+
+
+ );
+};
+
+const Header = styled.header`
+ width: 100%;
+ background: rgba(0, 0, 0, 0);
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ padding: 30px;
+ box-sizing: border-box;
+ gap: 20px;
+ justify-content: space-between;
+
+ ${breakpointMediaQueries.md} {
+ padding: 20px;
+ }
+`;
+
+const HeaderRoot = styled.div`
+ display: flex;
+ width: 100%;
+ align-items: center;
+`;
+
+const Title = styled.div<{ color: string }>`
+ transition: color 300ms ease-in;
+ display: flex;
+ margin: 0;
+ color: ${({ color }) => color};
+ pointer-events: auto;
+ cursor: pointer;
+
+ &.counter {
+ animation: 1s ease-out 2s changeColor;
+ animation-fill-mode: forwards;
+ @keyframes changeColor {
+ from {
+ color: #ffffff;
+ }
+ to {
+ color: #463c64;
+ }
+ }
+ }
+
+ ${breakpointMediaQueries.md} {
+ height: auto;
+ width: 150px;
+ }
+`;
+
+const SwitchButtonWrapper = styled.div`
+ display: flex;
+ flex: 1;
+ margin: 0;
+ pointer-events: auto;
+ justify-content: center;
+`;
+
+const SwitchButtonAnimationWrapper = styled.div`
+ animation: ${SWITCH_BUTTON_DURATION}ms ease-out 0s slidein;
+ animation-fill-mode: forwards;
+
+ @keyframes slidein {
+ from {
+ transform: translateY(-200%);
+ }
+ to {
+ transform: translateY(0%);
+ }
+ }
+
+ &.hide {
+ animation: ${SWITCH_BUTTON_DURATION}ms ease-out 0s slideout;
+ animation-fill-mode: forwards;
+ @keyframes slideout {
+ from {
+ transform: translateY(0%);
+ }
+ to {
+ transform: translateY(-200%);
+ }
+ }
+ }
+ ${breakpointMediaQueries.md} {
+ animation: none;
+ }
+`;
+
+// TODO: Implement actual feature. This is just style for now.
+const AreaWrapper = styled.div`
+ pointer-events: auto;
+ max-width: 100%;
+`;
+
+const RoundButton = styled(Button)`
+ pointer-events: auto;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: auto;
+ margin: auto;
+ padding: 1rem 1rem;
+ border: 1px solid #ffffff;
+ border-radius: 100svh;
+
+ &:hover svg path {
+ fill: #ffffff;
+ }
+
+ ${breakpointMediaQueries.md} {
+ padding: 0.6rem 0.6rem;
+ }
+`;
+
+const SelectWrapper = styled.div`
+ display: flex;
+ justify-content: flex-end;
+ align-items: center;
+ gap: 20px;
+`;
+
+const Spacer = styled.div`
+ flex: 1;
+`;
diff --git a/app/src/components/AppHeader/AppHeaderForMobile.tsx b/app/src/components/AppHeader/AppHeaderForMobile.tsx
new file mode 100644
index 0000000..30e87db
--- /dev/null
+++ b/app/src/components/AppHeader/AppHeaderForMobile.tsx
@@ -0,0 +1,130 @@
+import { styled } from "@linaria/react";
+import { FC, useEffect, useRef, useState } from "react";
+import { useTranslation } from "react-i18next";
+
+import { breakpointMediaQueries } from "../../constants";
+import { Hamburger } from "../icons/Hamburger";
+import { RoundButton } from "../RoundButton";
+import { SwitchButton } from "../SwitchButton";
+
+type AppHeaderProps = {
+ isSwitchButtonActive?: boolean;
+ onChangeSubScene?: (v: boolean) => void;
+ showSwitchSubSceneButton: boolean;
+ isOpening: boolean;
+ onOpenSceneMenu: () => void;
+};
+
+const SWITCH_BUTTON_DURATION = 300;
+
+const useSwitchButtonAnimation = (showSwitchSubSceneButton: boolean) => {
+ const [delayedShowSwitchSceneButton, setDelayedShowSwitchSceneButton] =
+ useState(showSwitchSubSceneButton);
+
+ const delayedShowSwitchSceneButtonRef = useRef(delayedShowSwitchSceneButton);
+ delayedShowSwitchSceneButtonRef.current = delayedShowSwitchSceneButton;
+ useEffect(() => {
+ let timer: number;
+ if (delayedShowSwitchSceneButtonRef.current && !showSwitchSubSceneButton) {
+ timer = window.setTimeout(
+ () => setDelayedShowSwitchSceneButton(showSwitchSubSceneButton),
+ SWITCH_BUTTON_DURATION,
+ );
+ } else {
+ setDelayedShowSwitchSceneButton(showSwitchSubSceneButton);
+ }
+
+ return () => {
+ window.clearTimeout(timer);
+ };
+ }, [showSwitchSubSceneButton]);
+
+ return delayedShowSwitchSceneButton;
+};
+
+export const AppHeaderForMobile: FC = ({
+ isSwitchButtonActive,
+ onChangeSubScene,
+ showSwitchSubSceneButton,
+ isOpening,
+ onOpenSceneMenu,
+}) => {
+ const { t } = useTranslation();
+ const delayedShowSwitchSceneButton = useSwitchButtonAnimation(showSwitchSubSceneButton);
+
+ return (
+
+ {!isOpening && (
+
+ {delayedShowSwitchSceneButton && (
+
+
+
+ )}
+
+ )}
+
+
+
+
+
+ );
+};
+
+const Header = styled.header`
+ width: 100vw;
+ background: transparent;
+ display: flex;
+ align-items: center;
+ padding: 20px;
+ box-sizing: border-box;
+`;
+
+const SwitchButtonWrapper = styled.div`
+ display: flex;
+ flex: 1;
+ margin: 0;
+ pointer-events: auto;
+ justify-content: center;
+`;
+
+const SwitchButtonAnimationWrapper = styled.div`
+ animation: ${SWITCH_BUTTON_DURATION}ms ease-out 0s slidein;
+ animation-fill-mode: forwards;
+
+ @keyframes slidein {
+ from {
+ transform: translateY(-200%);
+ }
+ to {
+ transform: translateY(0%);
+ }
+ }
+
+ &.hide {
+ animation: ${SWITCH_BUTTON_DURATION}ms ease-out 0s slideout;
+ animation-fill-mode: forwards;
+ @keyframes slideout {
+ from {
+ transform: translateY(0%);
+ }
+ to {
+ transform: translateY(-200%);
+ }
+ }
+ }
+ ${breakpointMediaQueries.md} {
+ animation: none;
+ }
+`;
+
+const MenuButton = styled(RoundButton)``;
diff --git a/app/src/components/AppHeader/index.ts b/app/src/components/AppHeader/index.ts
new file mode 100644
index 0000000..6da0af4
--- /dev/null
+++ b/app/src/components/AppHeader/index.ts
@@ -0,0 +1 @@
+export { AppHeader } from "./AppHeader";
diff --git a/app/src/components/Button/Button.tsx b/app/src/components/Button/Button.tsx
new file mode 100644
index 0000000..ca7300e
--- /dev/null
+++ b/app/src/components/Button/Button.tsx
@@ -0,0 +1,21 @@
+import { styled } from "@linaria/react";
+
+export const Button = styled.button<{ active?: boolean }>`
+ border: 1px solid #463c64;
+ color: ${({ active }) => (active ? `#5a2dc5` : `#463c64`)};
+ background: ${({ active }) => (active ? `#00bebe` : `#ffffff`)};
+ cursor: pointer;
+
+ @media (hover: hover) {
+ &:hover {
+ color: #ffffff;
+ background: #5a2dc5;
+ border: 1px solid #5a2dc5;
+ }
+ }
+ &:active {
+ border: 1px solid #5a2dc5;
+ color: #5a2dc5;
+ background: #00bebe;
+ }
+`;
diff --git a/app/src/components/Button/index.ts b/app/src/components/Button/index.ts
new file mode 100644
index 0000000..e22c29a
--- /dev/null
+++ b/app/src/components/Button/index.ts
@@ -0,0 +1 @@
+export * from "./Button";
diff --git a/app/src/components/CircleWithText/CircleWithText.stories.tsx b/app/src/components/CircleWithText/CircleWithText.stories.tsx
new file mode 100644
index 0000000..60e761a
--- /dev/null
+++ b/app/src/components/CircleWithText/CircleWithText.stories.tsx
@@ -0,0 +1,18 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { CircleWithText } from ".";
+
+const meta: Meta = {
+ component: CircleWithText,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ position: { x: 100, y: 100 },
+ text: "テスト",
+ },
+};
diff --git a/app/src/components/CircleWithText/CircleWithText.tsx b/app/src/components/CircleWithText/CircleWithText.tsx
new file mode 100644
index 0000000..637438f
--- /dev/null
+++ b/app/src/components/CircleWithText/CircleWithText.tsx
@@ -0,0 +1,117 @@
+import { styled } from "@linaria/react";
+import { FC, useEffect, useRef, useState } from "react";
+
+import { breakpointMediaQueries } from "../../constants";
+import type { ScreenPosition } from "../../utils";
+
+export type TextAlignment =
+ | "leftOfCircle"
+ | "rightOfCircle"
+ | "aboveCenterOfCircle"
+ | "belowCenterOfCircle";
+
+type CircleWithTextProps = {
+ position: ScreenPosition;
+ text?: string;
+ textAlignment?: TextAlignment;
+ shouldShowCircle?: boolean;
+};
+
+export const CircleWithText: FC = ({
+ position,
+ text,
+ textAlignment = "belowCenterOfCircle",
+ shouldShowCircle = true,
+}) => {
+ const [textSize, setTextSize] = useState({ width: 0, height: 0 });
+ const textRef = useRef(null);
+
+ useEffect(() => {
+ if (textRef.current) {
+ const { width, height } = textRef.current.getBoundingClientRect();
+ setTextSize({ width, height });
+ }
+ }, [text]);
+
+ const calculateTextPosition = (): ScreenPosition => {
+ let x = position.x;
+ let y = position.y;
+ const circleRadius = 15;
+ const offset = 10;
+
+ switch (textAlignment) {
+ case "leftOfCircle":
+ x -= circleRadius + offset + textSize.width;
+ y -= textSize.height / 2;
+ break;
+ case "rightOfCircle":
+ x += circleRadius + offset;
+ y -= textSize.height / 2;
+ break;
+ case "aboveCenterOfCircle":
+ x -= textSize.width / 2;
+ y -= circleRadius + offset + textSize.height;
+ break;
+ case "belowCenterOfCircle":
+ x -= textSize.width / 2;
+ y += circleRadius + offset;
+ break;
+ }
+
+ return { x, y };
+ };
+
+ const textPosition = calculateTextPosition();
+
+ return (
+
+ {shouldShowCircle && }
+ {text && (
+
+ {text}
+
+ )}
+
+ );
+};
+
+const Root = styled.div``;
+
+const CircleText = styled.div<{ position: ScreenPosition }>`
+ position: absolute;
+ color: rgba(235, 240, 0);
+ left: ${({ position }) => position.x}px;
+ top: ${({ position }) => position.y}px;
+
+ ${breakpointMediaQueries.md} {
+ font-size: 10px;
+ }
+`;
+
+const Circle = styled.div<{ position: ScreenPosition }>`
+ position: absolute;
+ width: 30px;
+ height: 30px;
+ border-radius: 50%;
+ background-color: rgba(235, 240, 0, 0.7);
+ transform: translate(-50%, -50%);
+ left: ${({ position }) => position.x}px;
+ top: ${({ position }) => position.y}px;
+ z-index: 5;
+ animation: pulse 1s ease-out infinite;
+
+ @keyframes pulse {
+ 0% {
+ transform: translate(-50%, -50%) scale(1);
+ background-color: rgba(235, 240, 0, 0.7);
+ }
+ 50% {
+ transform: translate(-50%, -50%) scale(1.2);
+ background-color: rgba(235, 240, 0, 0.9);
+ }
+ 100% {
+ transform: translate(-50%, -50%) scale(1);
+ background-color: rgba(235, 240, 0, 0.7);
+ }
+ }
+`;
diff --git a/app/src/components/CircleWithText/index.ts b/app/src/components/CircleWithText/index.ts
new file mode 100644
index 0000000..06f967d
--- /dev/null
+++ b/app/src/components/CircleWithText/index.ts
@@ -0,0 +1 @@
+export { CircleWithText } from "./CircleWithText";
diff --git a/app/src/components/CloseButton/CloseButton.tsx b/app/src/components/CloseButton/CloseButton.tsx
new file mode 100644
index 0000000..9b184b8
--- /dev/null
+++ b/app/src/components/CloseButton/CloseButton.tsx
@@ -0,0 +1,26 @@
+import { styled } from "@linaria/react";
+import { FC } from "react";
+
+import { Close } from "../icons/Close";
+
+type Props = {
+ onClick?: () => void;
+ width?: number;
+ height?: number;
+ color?: string;
+};
+
+export const CloseButton: FC = ({ onClick, width = 20, height = 20, color = "#463c64" }) => {
+ return (
+
+
+
+ );
+};
+
+const Button = styled.button<{ color: string }>`
+ border: none;
+ color: ${({ color }) => color};
+ background: transparent;
+ cursor: pointer;
+`;
diff --git a/app/src/components/CloseButton/index.ts b/app/src/components/CloseButton/index.ts
new file mode 100644
index 0000000..5c8430c
--- /dev/null
+++ b/app/src/components/CloseButton/index.ts
@@ -0,0 +1 @@
+export * from "./CloseButton";
diff --git a/app/src/components/Contents/BaseContent/BaseContent.stories.tsx b/app/src/components/Contents/BaseContent/BaseContent.stories.tsx
new file mode 100644
index 0000000..9c802ff
--- /dev/null
+++ b/app/src/components/Contents/BaseContent/BaseContent.stories.tsx
@@ -0,0 +1,13 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { BaseContent } from ".";
+
+const meta: Meta = {
+ component: BaseContent,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {};
diff --git a/app/src/components/Contents/BaseContent/BaseContent.tsx b/app/src/components/Contents/BaseContent/BaseContent.tsx
new file mode 100644
index 0000000..d35ef24
--- /dev/null
+++ b/app/src/components/Contents/BaseContent/BaseContent.tsx
@@ -0,0 +1,114 @@
+import { styled } from "@linaria/react";
+import { FC, PropsWithChildren } from "react";
+
+import { TITLE_FONT_FAMILY, breakpointMediaQueries } from "../../../constants";
+
+export type BaseContentProps = {};
+
+export const BaseContent: FC> = ({ children }) => {
+ return {children} ;
+};
+
+const Root = styled.div`
+ color: #463c64;
+ a {
+ color: #463c64;
+ }
+
+ & > h2 {
+ font-family: ${TITLE_FONT_FAMILY};
+ }
+
+ & > h2 {
+ font-weight: bold;
+ font-weight: lighter;
+ font-size: 40px;
+ margin: 0;
+ margin-top: 60px;
+
+ ${breakpointMediaQueries.md} {
+ font-size: 25px;
+ margin-top: 15px;
+ }
+ }
+
+ & > h3,
+ & > h4 {
+ font-weight: bold;
+ font-size: 40px;
+ margin: 0;
+ margin-top: 60px;
+
+ ${breakpointMediaQueries.md} {
+ font-size: 25px;
+ margin-top: 10px;
+ }
+ }
+ & > h3 {
+ font-size: 30px;
+
+ ${breakpointMediaQueries.md} {
+ font-size: 18px;
+ }
+ }
+ & > h4 {
+ font-size: 20px;
+
+ ${breakpointMediaQueries.md} {
+ font-size: 16px;
+ }
+ }
+ & > p,
+ & > figure > p {
+ font-size: 18px;
+ line-height: 1.6;
+ margin: 0;
+ margin-top: 20px;
+
+ ${breakpointMediaQueries.md} {
+ font-size: 12px;
+ margin-top: 5px;
+ }
+ }
+ & > img,
+ & > figure > img {
+ margin-top: 20px;
+ width: 100%;
+ height: 100%;
+
+ ${breakpointMediaQueries.md} {
+ margin-top: 5px;
+ }
+ }
+ & > figure {
+ width: 100%;
+ margin: 20px 0 0 0;
+ padding: 0;
+
+ ${breakpointMediaQueries.md} {
+ margin-top: 5px;
+ }
+ }
+ & > figure > figcaption,
+ & > .source {
+ display: inline-block;
+ font-size: 14px;
+ margin-top: 15px;
+
+ ${breakpointMediaQueries.md} {
+ font-size: 10px;
+ margin-top: 5px;
+ }
+ }
+ & > .subtitle {
+ display: inline-block;
+ font-size: 20px;
+ font-weight: bold;
+ margin-top: 20px;
+
+ ${breakpointMediaQueries.md} {
+ font-size: 16px;
+ margin-top: 5px;
+ }
+ }
+`;
diff --git a/app/src/components/Contents/BaseContent/WidthLimitedContent.tsx b/app/src/components/Contents/BaseContent/WidthLimitedContent.tsx
new file mode 100644
index 0000000..c50f435
--- /dev/null
+++ b/app/src/components/Contents/BaseContent/WidthLimitedContent.tsx
@@ -0,0 +1,31 @@
+import { styled } from "@linaria/react";
+import { FC } from "react";
+
+import { BaseContent } from ".";
+
+type WidthLimitedContentProps = {
+ maxWidth?: number;
+ children: React.ReactNode;
+};
+
+const DEFAULT_MAX_WIDTH = 800;
+
+export const WidthLimitedContent: FC = ({ maxWidth, children }) => {
+ return (
+
+
+ {children}
+
+
+ );
+};
+
+const Wrapper = styled.div`
+ display: flex;
+ justify-content: center;
+`;
+
+const Center = styled.div<{ maxWidth?: number }>`
+ max-width: ${({ maxWidth }) => maxWidth ?? DEFAULT_MAX_WIDTH}px;
+ width: 100%;
+`;
diff --git a/app/src/components/Contents/BaseContent/index.ts b/app/src/components/Contents/BaseContent/index.ts
new file mode 100644
index 0000000..dea4e86
--- /dev/null
+++ b/app/src/components/Contents/BaseContent/index.ts
@@ -0,0 +1,2 @@
+export { BaseContent } from "./BaseContent";
+export * from "./WidthLimitedContent";
diff --git a/app/src/components/Contents/Charts/BarAndLineChart.tsx b/app/src/components/Contents/Charts/BarAndLineChart.tsx
new file mode 100644
index 0000000..4f556a0
--- /dev/null
+++ b/app/src/components/Contents/Charts/BarAndLineChart.tsx
@@ -0,0 +1,261 @@
+import { styled } from "@linaria/react";
+import {
+ Chart as ChartJS,
+ LinearScale,
+ CategoryScale,
+ BarElement,
+ PointElement,
+ LineElement,
+ LineController,
+ BarController,
+} from "chart.js";
+import ChartDataLabels from "chartjs-plugin-datalabels";
+import ChartDeferred from "chartjs-plugin-deferred";
+import { FC, useCallback, useMemo, useRef, useState } from "react";
+import { Chart } from "react-chartjs-2";
+
+import { BASE_COLOR, PRIMARY_COLOR } from "./constants";
+
+ChartJS.register(
+ LinearScale,
+ CategoryScale,
+ BarElement,
+ PointElement,
+ LineElement,
+ LineController,
+ BarController,
+ ChartDataLabels,
+ ChartDeferred,
+);
+ChartJS.defaults.font.family = `"Noto Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif`;
+ChartJS.defaults.font.size = 14;
+ChartJS.defaults.color = BASE_COLOR;
+ChartJS.defaults.borderColor = BASE_COLOR;
+
+type DatasetItem = {
+ data: number[];
+ legendText?: string;
+ axisLabel?: string;
+ axisMax?: number;
+ tickStepSize?: number;
+ dataLabelPrefix?: string;
+};
+
+type CompareLabel = {
+ text: string;
+ left?: string;
+ top?: string;
+};
+
+type BarAndLineChartProps = {
+ options: {
+ labels: string[];
+ datasets: {
+ base: DatasetItem;
+ primary: DatasetItem;
+ };
+ compareLabels?: CompareLabel[];
+ isEn?: boolean;
+ // Since label in English could be longer and take more space of chart, we support to set height of chart.
+ chartHeight?: string;
+ legendMaxWidth?: string;
+ };
+};
+
+const DEFAULT_BAR_AND_LINE_CHART_HEIGHT = "226px";
+const DEFAULT_LEGEND_MAX_WIDTH = "200px";
+
+export const BarAndLineChart: FC = ({ options }) => {
+ const { labels, datasets, compareLabels, isEn, chartHeight, legendMaxWidth } = options;
+
+ const animationStarted = useRef(false);
+ const [floatLabelVisible, setFloatLabelVisible] = useState(false);
+ const showFloatLabels = useCallback(() => {
+ setTimeout(() => {
+ setFloatLabelVisible(true);
+ }, 1000);
+ }, []);
+
+ const data = useMemo(
+ () => ({
+ labels,
+ datasets: [
+ {
+ type: "line" as const,
+ borderColor: PRIMARY_COLOR,
+ backgroundColor: PRIMARY_COLOR,
+ borderWidth: 1,
+ data: datasets.primary.data,
+ yAxisID: "Line",
+ datalabels: {
+ color: PRIMARY_COLOR,
+ offset: 5,
+ align: "top" as const,
+ formatter: (value: number) =>
+ `${datasets.primary.dataLabelPrefix ?? ""}${value.toLocaleString()}`,
+ },
+ },
+ {
+ type: "bar" as const,
+ backgroundColor: BASE_COLOR,
+ data: datasets.base.data,
+ borderWidth: 0,
+ yAxisID: "Bar",
+ datalabels: {
+ color: "#FFF",
+ formatter: (value: number) =>
+ `${datasets.base.dataLabelPrefix ?? ""}${value.toLocaleString()}`,
+ },
+ },
+ ],
+ }),
+ [labels, datasets],
+ );
+
+ const chartOptions = useMemo(
+ () => ({
+ events: [],
+ responsive: true,
+ maintainAspectRatio: false,
+ deferred: {
+ yOffset: "70%" as const,
+ delay: 300,
+ },
+ animation: {
+ duration: 1000,
+ onProgress: () => {
+ if (animationStarted.current) {
+ return;
+ }
+ animationStarted.current = true;
+ showFloatLabels();
+ },
+ },
+ scales: {
+ Line: {
+ position: "right" as const,
+ grid: { display: false },
+ beginAtZero: true,
+ ticks: {
+ padding: 0,
+ ...(datasets.primary.tickStepSize
+ ? { stepSize: datasets.primary.tickStepSize }
+ : undefined),
+ },
+ ...(datasets.primary.axisMax ? { max: datasets.primary.axisMax } : undefined),
+ },
+ Bar: {
+ position: "left" as const,
+ grid: { display: false },
+ beginAtZero: true,
+ ticks: {
+ padding: 0,
+ ...(datasets.base.tickStepSize ? { stepSize: datasets.base.tickStepSize } : undefined),
+ },
+ ...(datasets.base.axisMax ? { max: datasets.base.axisMax } : undefined),
+ },
+ x: {
+ ticks: { font: { size: 12 }, padding: 0, autoSkip: false },
+ grid: {
+ display: false,
+ },
+ },
+ },
+ barPercentage: 0.7,
+ }),
+ [datasets, showFloatLabels],
+ );
+
+ return (
+
+
+ {datasets.base.axisLabel}
+ {datasets.primary.axisLabel}
+
+
+
+
+
+
+ {datasets.base.legendText}
+
+
+
+ {datasets.primary.legendText}
+
+
+ {compareLabels?.map((c, i) => (
+
+ {c.text}
+
+ ))}
+
+
+ );
+};
+
+const Wrapper = styled.div`
+ position: relative;
+ margin-top: 20px;
+`;
+
+const AxisLabels = styled.div`
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+`;
+
+const AxisLabel = styled.div`
+ font-size: 12px;
+ max-width: 40%;
+`;
+
+const ChartWrapper = styled.div<{ height?: string }>`
+ position: relative;
+ height: ${({ height }) => height ?? DEFAULT_BAR_AND_LINE_CHART_HEIGHT};
+ margin-top: 17px;
+`;
+
+const LegendArea = styled.div<{ isEn?: boolean; maxWidth?: string }>`
+ position: absolute;
+ max-width: ${({ maxWidth }) => maxWidth ?? DEFAULT_LEGEND_MAX_WIDTH};
+ top: 0;
+ right: 13%;
+ display: flex;
+ flex-direction: column;
+ gap: ${({ isEn }) => (isEn ? "0px" : "8px")};
+`;
+
+const Legend = styled.div`
+ display: flex;
+ gap: 4px;
+ align-items: center;
+ justify-content: flex-start;
+`;
+
+const LegendColor = styled.div<{ color: string }>`
+ width: 30px;
+ height: 2px;
+ flex-shrink: 0;
+ background-color: ${({ color }) => color};
+`;
+
+const LegendText = styled.div<{ color: string }>`
+ color: ${({ color }) => color};
+ font-size: 12px;
+`;
+
+const FloatLabel = styled.div<{ left?: string; top?: string; visible: boolean }>`
+ position: absolute;
+ left: ${({ left }) => left ?? "50%"};
+ top: ${({ top }) => top ?? "50%"};
+ transform: translateY(-100%);
+ font-size: 12px;
+ color: #fff;
+ background-color: ${PRIMARY_COLOR};
+ padding: 4px 6px;
+ border-radius: 30px;
+ max-width: 80px;
+ opacity: ${({ visible }) => (visible ? 1 : 0)};
+ transition: opacity 0.5s ease-in-out;
+`;
diff --git a/app/src/components/Contents/Charts/DoublePieChart.tsx b/app/src/components/Contents/Charts/DoublePieChart.tsx
new file mode 100644
index 0000000..d67e15c
--- /dev/null
+++ b/app/src/components/Contents/Charts/DoublePieChart.tsx
@@ -0,0 +1,35 @@
+import { styled } from "@linaria/react";
+import { FC } from "react";
+
+import { ArrowRight } from "../../icons/ArrowRight";
+
+import { PieChart, PieChartProps } from ".";
+
+type DoublePieChartProps = {
+ pie1: PieChartProps;
+ pie2: PieChartProps;
+};
+
+export const DoublePieChart: FC = ({ pie1, pie2 }) => {
+ return (
+
+
+
+
+
+
+
+
+
+ );
+};
+
+const Wrapper = styled.div`
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+`;
+
+const PieWrapper = styled.div`
+ width: 45%;
+`;
diff --git a/app/src/components/Contents/Charts/DoughnutChartForTokyo23.tsx b/app/src/components/Contents/Charts/DoughnutChartForTokyo23.tsx
new file mode 100644
index 0000000..5eb1522
--- /dev/null
+++ b/app/src/components/Contents/Charts/DoughnutChartForTokyo23.tsx
@@ -0,0 +1,222 @@
+import { styled } from "@linaria/react";
+import { Chart, ArcElement } from "chart.js";
+import ChartDeferred from "chartjs-plugin-deferred";
+import { CountUp } from "countup.js";
+import { FC, useCallback, useEffect, useMemo, useRef, useState } from "react";
+import { Doughnut } from "react-chartjs-2";
+import { useTranslation } from "react-i18next";
+
+import { BASE_COLOR, HIGHLIGHT_COLOR } from "./constants";
+
+Chart.register(ArcElement, ChartDeferred);
+
+export const DoughnutChartForTokyo23: FC = () => {
+ const { t } = useTranslation();
+
+ const percent = (100 * 1161714) / (1161714 + 602225);
+ const title = t("Population: 9,733,276 people");
+
+ const [labelVisible, setLabelVisible] = useState(false);
+ const animationStarted = useRef(false);
+
+ const countup1Ref = useRef(null);
+ const counter1Ref = useRef(null);
+
+ const countup2Ref = useRef(null);
+ const counter2Ref = useRef(null);
+
+ useEffect(() => {
+ if (countup1Ref.current) {
+ counter1Ref.current = new CountUp(countup1Ref.current, 1161714, {
+ duration: 2,
+ decimalPlaces: 0,
+ });
+ }
+ if (countup2Ref.current) {
+ counter2Ref.current = new CountUp(countup2Ref.current, 602225, {
+ duration: 2,
+ decimalPlaces: 0,
+ });
+ }
+ }, []);
+
+ const startCountUp = useCallback(() => {
+ setTimeout(() => {
+ setLabelVisible(true);
+ counter1Ref.current?.start();
+ counter2Ref.current?.start();
+ }, 200);
+ }, []);
+
+ const data = useMemo(
+ () => ({
+ datasets: [
+ {
+ data: [percent, 100 - percent],
+ backgroundColor: [BASE_COLOR, "transparent"],
+ borderWidth: 0,
+ datalabels: {
+ display: false,
+ },
+ cutout: "20%",
+ },
+ {
+ data: [percent, 100 - percent],
+ backgroundColor: [BASE_COLOR, HIGHLIGHT_COLOR],
+ borderWidth: 0,
+ datalabels: {
+ display: false,
+ },
+ cutout: "21%",
+ },
+ {
+ data: [percent, 100 - percent],
+ backgroundColor: [BASE_COLOR, HIGHLIGHT_COLOR],
+ borderWidth: 0,
+ datalabels: {
+ display: false,
+ },
+ cutout: "22%",
+ },
+ {
+ data: [percent, 100 - percent],
+ backgroundColor: [BASE_COLOR, HIGHLIGHT_COLOR],
+ borderWidth: 0,
+ datalabels: {
+ display: false,
+ },
+ cutout: "23%",
+ },
+ {
+ data: [percent, 100 - percent],
+ backgroundColor: [BASE_COLOR, "transparent"],
+ borderWidth: 0,
+ datalabels: {
+ display: false,
+ },
+ cutout: "24%",
+ },
+ ],
+ }),
+ [percent],
+ );
+
+ const options = useMemo(
+ () => ({
+ events: [],
+ plugins: {
+ deferred: {
+ yOffset: "50%" as const,
+ delay: 200,
+ },
+ },
+ animation: {
+ onProgress: () => {
+ if (animationStarted.current) {
+ return;
+ }
+ animationStarted.current = true;
+ startCountUp();
+ },
+ },
+ }),
+ [startCountUp],
+ );
+
+ const label1Position = useMemo(() => ({ top: "55%", left: "80%" }), []);
+ const label2Position = useMemo(() => ({ top: "40%", left: "23%" }), []);
+
+ useEffect(() => {
+ if (animationStarted.current) {
+ counter1Ref.current?.start();
+ counter2Ref.current?.start();
+ }
+ }, []);
+
+ return (
+
+
+
+
+
+ {t("Wooden")}
+
+ 0
+ {t("Buildings")}
+
+
+
+ {t("Non wooden")}
+ {t("Etc.")}
+
+ 0
+ {t("Buildings")}
+
+
+
+ {!!title && {title} }
+
+ );
+};
+
+const Wrapper = styled.div`
+ position: relative;
+ margin-top: 20px;
+`;
+
+const DoughnutWrapper = styled.div`
+ position: relative;
+`;
+
+const Label = styled.div`
+ display: flex;
+ align-items: flex-end;
+ justify-content: center;
+ gap: 3px;
+`;
+
+const MainLabel = styled.div`
+ font-size: 20px;
+ font-weight: 700;
+`;
+
+const SubLabel = styled.div`
+ font-size: 12px;
+ font-weight: 700;
+ padding-bottom: 3px;
+`;
+
+const Title = styled.div`
+ text-align: center;
+ font-size: 20px;
+ margin-top: 15px;
+`;
+
+const CounterWrapper = styled.div<{
+ left?: string;
+ top?: string;
+ color?: string;
+ visible?: boolean;
+}>`
+ position: absolute;
+ transform: translate(-50%, -50%);
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ top: ${({ left }) => left || "50%"};
+ left: ${({ top }) => top || "50%"};
+ color: ${({ color }) => color || BASE_COLOR};
+ opacity: ${({ visible }) => (visible ? 1 : 0)};
+ transition: opacity 0.5s ease-in-out;
+`;
+
+const Counter = styled.div`
+ font-size: 24px;
+ font-weight: 400;
+`;
+
+const Unit = styled.div`
+ font-size: 12px;
+ font-weight: 700;
+`;
diff --git a/app/src/components/Contents/Charts/LineChart.tsx b/app/src/components/Contents/Charts/LineChart.tsx
new file mode 100644
index 0000000..d779352
--- /dev/null
+++ b/app/src/components/Contents/Charts/LineChart.tsx
@@ -0,0 +1,183 @@
+import { styled } from "@linaria/react";
+import { Chart, ArcElement } from "chart.js";
+import ChartDataLabels, { Context as DataLabelsContext } from "chartjs-plugin-datalabels";
+import ChartDeferred from "chartjs-plugin-deferred";
+import { FC, useMemo } from "react";
+import { Line } from "react-chartjs-2";
+
+import { breakpointMediaQueries } from "../../../constants";
+
+Chart.register(ArcElement, ChartDataLabels, ChartDeferred);
+
+type DatasetItem = {
+ data: number[];
+ color?: string;
+ legendText?: string;
+ dataLegendAlign?: "start" | "end";
+};
+
+type LineChartProps = {
+ options: {
+ labels: string[];
+ datasets: DatasetItem[];
+ chartHeight?: string;
+ axisLabel?: string;
+ legendMaxWidth?: string;
+ };
+};
+
+const DEFAULT_DATASET_OPTIONS = {
+ datalabels: {
+ formatter: function (value: number, context: DataLabelsContext) {
+ return context.dataIndex === context.dataset.data.length - 1 ? value : "";
+ },
+ },
+ borderWidth: 1.5,
+};
+const DEFAULT_LINE_CHART_HEIGHT = "252px";
+const DEFAULT_LEGEND_MAX_WIDTH = "70%";
+
+const POINT_STYLES = ["circle", "rect", "rectRot"];
+
+export const LineChart: FC = ({ options }) => {
+ const { labels, datasets, chartHeight, axisLabel, legendMaxWidth } = options;
+
+ const data = useMemo(
+ () => ({
+ labels,
+ datasets: datasets.map((d, i) => ({
+ ...DEFAULT_DATASET_OPTIONS,
+ data: d.data,
+ backgroundColor: d.color,
+ borderColor: d.color,
+ pointStyle: POINT_STYLES[i],
+ pointRadius: d.data.map((_, di) => (di === d.data.length - 1 ? 8 : 3)),
+ datalabels: {
+ ...DEFAULT_DATASET_OPTIONS.datalabels,
+ color: d.color,
+ align: d.dataLegendAlign,
+ offset: 10,
+ font: {
+ size: 14,
+ },
+ },
+ })),
+ }),
+ [labels, datasets],
+ );
+
+ const chartOptions = useMemo(
+ () => ({
+ clip: false as const,
+ events: [],
+ responsive: true,
+ maintainAspectRatio: false,
+ scales: {
+ x: {
+ grid: {
+ display: false,
+ },
+ ticks: {
+ font: {
+ size: 12,
+ },
+ padding: 0,
+ },
+ },
+ y: {
+ min: 75,
+ max: 100,
+ grid: {
+ color: "#E6E6FA",
+ },
+ ticks: {
+ font: {
+ size: 12,
+ },
+ padding: 0,
+ },
+ },
+ },
+ plugins: {
+ deferred: {
+ yOffset: "50%" as const,
+ delay: 200,
+ },
+ },
+ }),
+ [],
+ );
+
+ return (
+
+
+ {axisLabel}
+
+ {datasets.map((d, i) => (
+
+
+ {d.legendText}
+
+ ))}
+
+
+
+
+
+
+ );
+};
+
+const Wrapper = styled.div`
+ position: relative;
+`;
+
+const ChartHeader = styled.div`
+ display: flex;
+ align-items: flex-end;
+ justify-content: space-between;
+`;
+
+const AxisLabel = styled.div`
+ font-size: 12px;
+ max-width: 30%;
+`;
+
+const LegendArea = styled.div<{ maxWidth?: string }>`
+ max-width: ${({ maxWidth }) => maxWidth ?? DEFAULT_LEGEND_MAX_WIDTH};
+ width: 100%;
+ display: flex;
+ align-items: flex-start;
+ justify-content: flex-end;
+ gap: 30px;
+ ${breakpointMediaQueries.md} {
+ flex-direction: column;
+ width: auto;
+ gap: 2px;
+ }
+`;
+
+const Legend = styled.div`
+ display: flex;
+ gap: 4px;
+ align-items: center;
+ justify-content: flex-start;
+`;
+
+const LegendColor = styled.div<{ color?: string }>`
+ width: 30px;
+ height: 2px;
+ flex-shrink: 0;
+ background-color: ${({ color }) => color ?? "black"};
+`;
+
+const LegendText = styled.div<{ color?: string }>`
+ color: ${({ color }) => color ?? "black"};
+ font-size: 12px;
+`;
+
+const ChartWrapper = styled.div<{ height?: string }>`
+ position: relative;
+ height: ${({ height }) => height ?? DEFAULT_LINE_CHART_HEIGHT};
+ margin-top: 17px;
+`;
diff --git a/app/src/components/Contents/Charts/PieChart.tsx b/app/src/components/Contents/Charts/PieChart.tsx
new file mode 100644
index 0000000..6a3fac5
--- /dev/null
+++ b/app/src/components/Contents/Charts/PieChart.tsx
@@ -0,0 +1,125 @@
+import { styled } from "@linaria/react";
+import { Chart, ArcElement } from "chart.js";
+import ChartDeferred from "chartjs-plugin-deferred";
+import { CountUp } from "countup.js";
+import { FC, useCallback, useEffect, useMemo, useRef } from "react";
+import { Pie } from "react-chartjs-2";
+
+import { BASE_COLOR, HIGHLIGHT_COLOR } from "./constants";
+
+Chart.register(ArcElement, ChartDeferred);
+
+export type PieChartProps = {
+ percent?: number;
+ title?: string;
+};
+
+export const PieChart: FC = ({ percent = 0, title }) => {
+ const animationStarted = useRef(false);
+
+ const countupRef = useRef(null);
+ const counterRef = useRef(null);
+
+ useEffect(() => {
+ if (countupRef.current) {
+ counterRef.current = new CountUp(countupRef.current, percent, {
+ duration: 2,
+ decimalPlaces: 1,
+ });
+ }
+ }, [percent]);
+
+ const countPosition = useMemo(() => (percent > 75 ? "bottom" : "right"), [percent]);
+
+ const startCountUp = useCallback(() => {
+ counterRef.current?.start();
+ }, []);
+
+ const data = useMemo(
+ () => ({
+ datasets: [
+ {
+ data: [percent, 100 - percent],
+ backgroundColor: [HIGHLIGHT_COLOR, BASE_COLOR],
+ borderWidth: 0,
+ datalabels: {
+ display: false,
+ },
+ },
+ ],
+ }),
+ [percent],
+ );
+
+ const options = useMemo(
+ () => ({
+ events: [],
+ plugins: {
+ deferred: {
+ yOffset: "50%" as const,
+ delay: 200,
+ },
+ },
+ animation: {
+ onProgress: () => {
+ if (animationStarted.current) {
+ return;
+ }
+ animationStarted.current = true;
+ startCountUp();
+ },
+ },
+ }),
+ [startCountUp],
+ );
+
+ return (
+
+
+
+
+ 0
+ %
+
+
+
+ {!!title && {title} }
+
+ );
+};
+
+const Wrapper = styled.div`
+ position: relative;
+ margin-top: 20px;
+`;
+
+const PieWrapper = styled.div`
+ position: relative;
+`;
+
+const Title = styled.div`
+ text-align: center;
+ font-size: 12px;
+ margin-top: 6px;
+`;
+
+const CounterWrapper = styled.div<{ pos: "bottom" | "right" }>`
+ position: absolute;
+ transform: translate(-50%, -50%);
+ display: flex;
+ gap: 3px;
+ align-items: flex-end;
+ top: ${({ pos }) => (pos === "bottom" ? "72%" : "50%")};
+ left: ${({ pos }) => (pos === "bottom" ? "50%" : "75%")};
+`;
+
+const Counter = styled.div`
+ font-size: 20px;
+ font-weight: bold;
+`;
+
+const Unit = styled.div`
+ font-size: 12px;
+ font-weight: bold;
+ padding-bottom: 3px;
+`;
diff --git a/app/src/components/Contents/Charts/constants.ts b/app/src/components/Contents/Charts/constants.ts
new file mode 100644
index 0000000..f0fcaa8
--- /dev/null
+++ b/app/src/components/Contents/Charts/constants.ts
@@ -0,0 +1,6 @@
+export const HIGHLIGHT_COLOR = "#EBF000";
+export const PRIMARY_COLOR = "#00BEBE";
+export const BASE_COLOR = "#463C64";
+export const CHART_GREEN = "#00BEBE";
+export const CHART_PURPLE = "#5A2DC5";
+export const CHART_YELLOW = "#FECC2F";
diff --git a/app/src/components/Contents/Charts/index.ts b/app/src/components/Contents/Charts/index.ts
new file mode 100644
index 0000000..c86ee84
--- /dev/null
+++ b/app/src/components/Contents/Charts/index.ts
@@ -0,0 +1,5 @@
+export * from "./PieChart";
+export * from "./DoublePieChart";
+export * from "./BarAndLineChart";
+export * from "./LineChart";
+export * from "./DoughnutChartForTokyo23";
diff --git a/app/src/components/Coordinate/Coordinate.tsx b/app/src/components/Coordinate/Coordinate.tsx
new file mode 100644
index 0000000..95ce9f9
--- /dev/null
+++ b/app/src/components/Coordinate/Coordinate.tsx
@@ -0,0 +1,22 @@
+import { styled } from "@linaria/react";
+import { FC } from "react";
+
+type Props = {
+ lng: number;
+ lat: number;
+};
+
+export const Coordinate: FC = ({ lng, lat }) => {
+ return (
+
+ {lng}, {lat}
+
+ );
+};
+
+const Root = styled.div`
+ font-size: 10px;
+ color: #ffffff;
+ white-space: nowrap;
+ pointer-events: auto;
+`;
diff --git a/app/src/components/Coordinate/index.ts b/app/src/components/Coordinate/index.ts
new file mode 100644
index 0000000..8b0cf90
--- /dev/null
+++ b/app/src/components/Coordinate/index.ts
@@ -0,0 +1 @@
+export { Coordinate } from "./Coordinate";
diff --git a/app/src/components/FadeAnimation/FadeAnimation.ts b/app/src/components/FadeAnimation/FadeAnimation.ts
new file mode 100644
index 0000000..7fd0508
--- /dev/null
+++ b/app/src/components/FadeAnimation/FadeAnimation.ts
@@ -0,0 +1,32 @@
+import { styled } from "@linaria/react";
+
+export const FadeAnimation = styled.div<{ duration: number }>`
+ --duration: ${({ duration }) => duration}ms;
+
+ position: relative;
+ opacity: 0;
+ animation: var(--duration) ease-out 0s fadein;
+ animation-fill-mode: forwards;
+ @keyframes fadein {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+
+ &.hide {
+ opacity: 1;
+ animation: var(--duration) ease-out 0s fadeout;
+ animation-fill-mode: forwards;
+ @keyframes fadeout {
+ from {
+ opacity: 1;
+ }
+ to {
+ opacity: 0;
+ }
+ }
+ }
+`;
diff --git a/app/src/components/Float/Float.tsx b/app/src/components/Float/Float.tsx
new file mode 100644
index 0000000..74b9b57
--- /dev/null
+++ b/app/src/components/Float/Float.tsx
@@ -0,0 +1,61 @@
+import { styled } from "@linaria/react";
+import { FC, PropsWithChildren, useEffect, useState } from "react";
+
+type Props = {
+ name: string;
+ delay: number;
+ duration: number;
+ from: string;
+ to: string;
+ direction: "x" | "y";
+ zIndex?: number;
+};
+
+export const Float: FC> = ({
+ name,
+ delay,
+ duration,
+ from,
+ to,
+ direction,
+ children,
+ zIndex = 1,
+}) => {
+ const [shouldStart, setShouldStart] = useState(false);
+ useEffect(() => {
+ setTimeout(() => {
+ setShouldStart(true);
+ }, delay);
+ }, [delay]);
+
+ return (
+
+ {children}
+
+ );
+};
+
+const Root = styled.div<{
+ duration: number;
+ name: string;
+ direction: string;
+ from: string;
+ to: string;
+ shouldStart: boolean;
+ zIndex: number;
+}>`
+ grid-area: ${({ name }) => name};
+ transform: ${({ direction, from, to, shouldStart }) =>
+ `translate${direction}(${shouldStart ? to : from})`};
+ transition: transform ${({ duration }) => duration}ms ease-out;
+ background: transparent;
+ pointer-events: none;
+ z-index: ${({ zIndex }) => zIndex};
+`;
diff --git a/app/src/components/Float/index.ts b/app/src/components/Float/index.ts
new file mode 100644
index 0000000..71a9748
--- /dev/null
+++ b/app/src/components/Float/index.ts
@@ -0,0 +1 @@
+export { Float } from "./Float";
diff --git a/app/src/components/IconButton/IconButton.stories.tsx b/app/src/components/IconButton/IconButton.stories.tsx
new file mode 100644
index 0000000..5024f51
--- /dev/null
+++ b/app/src/components/IconButton/IconButton.stories.tsx
@@ -0,0 +1,17 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { IconButton } from ".";
+
+const meta: Meta = {
+ component: IconButton,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ text: "This is a button",
+ },
+};
diff --git a/app/src/components/IconButton/IconButton.tsx b/app/src/components/IconButton/IconButton.tsx
new file mode 100644
index 0000000..aa5770b
--- /dev/null
+++ b/app/src/components/IconButton/IconButton.tsx
@@ -0,0 +1,25 @@
+import { styled } from "@linaria/react";
+import { ReactElement } from "react";
+
+type IconButtonProps = {
+ children: ReactElement;
+ text: string;
+ onClick?: () => void;
+};
+
+export const IconButton: React.FC = ({ children, text, onClick }) => {
+ return (
+
+ {children}
+ {text}
+
+ );
+};
+
+const StyledIconWithText = styled.div`
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ gap: 30px;
+ cursor: pointer;
+`;
diff --git a/app/src/components/IconButton/index.ts b/app/src/components/IconButton/index.ts
new file mode 100644
index 0000000..c62ce98
--- /dev/null
+++ b/app/src/components/IconButton/index.ts
@@ -0,0 +1 @@
+export { IconButton } from "./IconButton";
diff --git a/app/src/components/IconWithOutline/IconWithOutline.stories.tsx b/app/src/components/IconWithOutline/IconWithOutline.stories.tsx
new file mode 100644
index 0000000..d028731
--- /dev/null
+++ b/app/src/components/IconWithOutline/IconWithOutline.stories.tsx
@@ -0,0 +1,17 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { IconWithOutline } from ".";
+
+const meta: Meta = {
+ component: IconWithOutline,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ iconPath: "/img/sound-on.svg",
+ },
+};
diff --git a/app/src/components/IconWithOutline/IconWithOutline.tsx b/app/src/components/IconWithOutline/IconWithOutline.tsx
new file mode 100644
index 0000000..4ddf5da
--- /dev/null
+++ b/app/src/components/IconWithOutline/IconWithOutline.tsx
@@ -0,0 +1,43 @@
+import { styled } from "@linaria/react";
+
+type IconWithOutlineProps = {
+ iconPath: string;
+ hoverColor?: string;
+ size?: string | number;
+ outlineWidth?: string | number;
+ outlineColor?: string;
+};
+
+export const IconWithOutline: React.FC = ({
+ iconPath,
+ hoverColor = "#a0d8ef",
+ size = "2em",
+ outlineWidth = "3px",
+ outlineColor = "#ffffff",
+}) => {
+ return (
+
+
+
+ );
+};
+
+const StyledIcon = styled.div<{
+ outlineWidth: string | number;
+ outlineColor: string;
+ hoverColor: string;
+}>`
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 50%;
+ box-shadow: 0 0 0 ${props => props.outlineWidth} ${props => props.outlineColor};
+ width: fit-content;
+ height: fit-content;
+ padding: 15px;
+ color: white;
+
+ &:hover {
+ color: ${props => props.hoverColor};
+ }
+`;
diff --git a/app/src/components/IconWithOutline/index.ts b/app/src/components/IconWithOutline/index.ts
new file mode 100644
index 0000000..0439dba
--- /dev/null
+++ b/app/src/components/IconWithOutline/index.ts
@@ -0,0 +1 @@
+export { IconWithOutline } from "./IconWithOutline";
diff --git a/app/src/components/InfoTooltip/InfoTooltip.tsx b/app/src/components/InfoTooltip/InfoTooltip.tsx
new file mode 100644
index 0000000..81cc45b
--- /dev/null
+++ b/app/src/components/InfoTooltip/InfoTooltip.tsx
@@ -0,0 +1,238 @@
+import { computePosition, size, flip, offset, shift } from "@floating-ui/dom";
+import { styled } from "@linaria/react";
+import { FC, PropsWithChildren, useRef, useState, useEffect } from "react";
+import { createPortal } from "react-dom";
+import { Trans } from "react-i18next";
+
+import { breakPoint, breakpointMediaQueries } from "../../constants";
+import { useMediaQuery } from "../../hooks";
+import { Close } from "../icons/Close";
+
+type InfoTooltipProps = {
+ contentKey: string;
+};
+
+export const InfoTooltip: FC> = ({ contentKey, children }) => {
+ const referenceRef = useRef(null);
+ const floatingRef = useRef(null);
+ const [isTooltipVisible, setIsTooltipVisible] = useState(false);
+ const [isMouseOver, setIsMouseOver] = useState(false);
+
+ const isBreakpointMd = useMediaQuery(`(max-width: ${breakPoint.md}px)`);
+
+ useEffect(() => {
+ if (referenceRef.current && floatingRef.current) {
+ computePosition(referenceRef.current, floatingRef.current, {
+ placement: isBreakpointMd ? "bottom" : "top",
+ middleware: [
+ offset(isBreakpointMd ? { mainAxis: 0, crossAxis: (window.innerHeight - 300) / 2 } : 5),
+ flip(),
+ shift({ padding: 10 }),
+ size({
+ apply({ elements, availableWidth, rects }) {
+ const maxWidth = Math.min(300, availableWidth - 10);
+ elements.floating.style.width = `${maxWidth}px`;
+
+ if (isBreakpointMd) {
+ elements.floating.style.height = `400px`;
+ } else {
+ const buttonTop = rects.reference.y;
+ const marginTop = 30;
+ const maxHeight = buttonTop - marginTop;
+ elements.floating.style.maxHeight = `${maxHeight}px`;
+ elements.floating.style.overflowY = "auto";
+ }
+ },
+ }),
+ ],
+ }).then(({ x, y }) => {
+ if (floatingRef.current) {
+ Object.assign(floatingRef.current.style, {
+ left: isBreakpointMd ? "50%" : `${x}px`,
+ top: isBreakpointMd ? "50%" : `${y}px`,
+ position: isBreakpointMd ? "fixed" : "absolute",
+ transform: isBreakpointMd ? "translate(-50%, -50%)" : undefined,
+ visibility: isTooltipVisible ? "visible" : "hidden",
+ });
+ }
+ });
+ }
+ }, [isTooltipVisible, isBreakpointMd]);
+
+ useEffect(() => {
+ if (isBreakpointMd) return;
+
+ const hideTooltip = () => {
+ if (!isMouseOver) {
+ setIsTooltipVisible(false);
+ }
+ };
+
+ const timer = setTimeout(hideTooltip, 100);
+ return () => clearTimeout(timer);
+ }, [isMouseOver, isBreakpointMd]);
+
+ const tooltipContent = (
+
+ l1
+
+ ),
+ l2: (
+
+ l2
+
+ ),
+ l3: (
+
+ l3
+
+ ),
+ l4: (
+
+ l4
+
+ ),
+ l5: (
+
+ l5
+
+ ),
+ l6: (
+
+ l6
+
+ ),
+ l7: (
+
+ l7
+
+ ),
+ }}
+ />
+ );
+
+ return (
+
+ {
+ setIsTooltipVisible(true);
+ setIsMouseOver(true);
+ }}
+ onMouseLeave={() => setIsMouseOver(false)}>
+ {children}
+
+ {isTooltipVisible && (
+ <>
+ {isBreakpointMd &&
+ createPortal(
+ setIsTooltipVisible(false)} />,
+ document.body,
+ )}
+ {createPortal(
+ setIsMouseOver(true)}
+ onMouseLeave={() => setIsMouseOver(false)}>
+ {isBreakpointMd && (
+ setIsTooltipVisible(false)}>
+
+
+ )}
+ {tooltipContent}
+ ,
+ document.body,
+ )}
+ >
+ )}
+
+ );
+};
+
+const TextWrapper = styled.div`
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 14px;
+ height: 14px;
+ border: 1px solid currentColor;
+ border-radius: 50%;
+ font-size: 9px;
+ text-align: center;
+ cursor: pointer;
+ position: relative;
+ font-weight: bold;
+ color: #fff;
+ background: #463c64;
+ margin-top: 2px;
+`;
+
+const TooltipOverlay = styled.div`
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background-color: rgba(70, 60, 100, 0.9);
+ z-index: 998;
+`;
+
+const Tooltip = styled.div`
+ background-color: rgba(70, 60, 100, 0.9);
+ color: #fff;
+ padding: 10px;
+ font-size: 10px;
+ z-index: 999;
+ position: absolute;
+ visibility: hidden;
+
+ a {
+ color: #fff;
+ }
+
+ ${breakpointMediaQueries.md} {
+ position: fixed;
+ left: 50%;
+ top: 50%;
+ font-size: 12px;
+ transform: translate(-50%, -50%);
+ overflow-y: auto;
+ }
+`;
+
+const CloseButton = styled.button`
+ position: absolute;
+ top: 0;
+ right: 0;
+ background: transparent;
+ border: none;
+ cursor: pointer;
+ margin-top: 10px;
+ margin-right: 5px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ color: #ffffff;
+`;
diff --git a/app/src/components/InfoTooltip/index.ts b/app/src/components/InfoTooltip/index.ts
new file mode 100644
index 0000000..6b66ce9
--- /dev/null
+++ b/app/src/components/InfoTooltip/index.ts
@@ -0,0 +1 @@
+export { InfoTooltip } from "./InfoTooltip";
diff --git a/app/src/components/Infobox/Infobox.stories.tsx b/app/src/components/Infobox/Infobox.stories.tsx
new file mode 100644
index 0000000..6a71eeb
--- /dev/null
+++ b/app/src/components/Infobox/Infobox.stories.tsx
@@ -0,0 +1,36 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { Infobox } from ".";
+
+const meta: Meta = {
+ component: Infobox,
+ title: "Components/Infobox",
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ screenPosition: { x: 0, y: 0 },
+ attributes: [
+ {
+ name: "名称",
+ value: "錦糸中学校",
+ },
+ {
+ name: "住所",
+ value: "東京都墨田区石原",
+ },
+ {
+ name: "施設の種類",
+ value: "避難所収容",
+ },
+ {
+ name: "収容人数",
+ value: 1805,
+ },
+ ],
+ },
+};
diff --git a/app/src/components/Infobox/Infobox.tsx b/app/src/components/Infobox/Infobox.tsx
new file mode 100644
index 0000000..5ca266e
--- /dev/null
+++ b/app/src/components/Infobox/Infobox.tsx
@@ -0,0 +1,64 @@
+import { styled } from "@linaria/react";
+import { FC } from "react";
+
+import { breakpointMediaQueries } from "../../constants";
+import { MarkerData } from "../../utils/types/common";
+
+type InfoboxProps = MarkerData;
+
+export const Infobox: FC = ({ screenPosition, attributes }) => {
+ const { x, y } = screenPosition;
+
+ return (
+
+
+
+ {attributes.map((attribute, i) => (
+
+ {attribute.name}
+ {attribute.value}
+
+ ))}
+
+
+
+ );
+};
+
+const StyledInfobox = styled.div<{ x: number; y: number }>`
+ display: flex;
+ flex-direction: column;
+ justify-content: space-around;
+ background-color: #ffffff;
+ font-size: 0.9em;
+ padding: 10px;
+ width: 300px;
+ z-index: 9999;
+ position: absolute;
+ left: ${({ x }) => x - 300 / 2}px;
+ top: ${({ y }) => y - 220}px;
+
+ ${breakpointMediaQueries.md} {
+ width: 200px;
+ font-size: 0.6em;
+ padding: 5px;
+ left: ${({ x }) => x - 200 / 2}px;
+ top: ${({ y }) => y - 160}px;
+ }
+`;
+
+const StyledTable = styled.table`
+ width: 100%;
+ border-collapse: separate;
+ border-spacing: 10px;
+ border: none;
+
+ td {
+ border-bottom: 1px solid transparent;
+ vertical-align: top;
+ }
+
+ tr:last-child td {
+ border-bottom: none;
+ }
+`;
diff --git a/app/src/components/Infobox/index.ts b/app/src/components/Infobox/index.ts
new file mode 100644
index 0000000..dd57a79
--- /dev/null
+++ b/app/src/components/Infobox/index.ts
@@ -0,0 +1 @@
+export { Infobox } from "./Infobox";
diff --git a/app/src/components/Legend/Legend.stories.tsx b/app/src/components/Legend/Legend.stories.tsx
new file mode 100644
index 0000000..ff032ab
--- /dev/null
+++ b/app/src/components/Legend/Legend.stories.tsx
@@ -0,0 +1,94 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { Legend } from ".";
+
+const meta: Meta = {
+ component: Legend,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ items: [
+ {
+ label: "7",
+ color: "#DA3F3F",
+ },
+ {
+ label: "6",
+ color: "#EB9436",
+ },
+ {
+ label: "5",
+ color: "#EBF000",
+ },
+ {
+ label: "4",
+ color: "#9CF259",
+ },
+ {
+ label: "3",
+ color: "#6EE0C4",
+ },
+ ],
+ },
+};
+
+export const HasArrow: Story = {
+ args: {
+ items: [
+ {
+ label: "7",
+ color: "#DA3F3F",
+ },
+ {
+ label: "6",
+ color: "#EB9436",
+ },
+ {
+ label: "5",
+ color: "#EBF000",
+ },
+ {
+ label: "4",
+ color: "#9CF259",
+ },
+ {
+ label: "3",
+ color: "#6EE0C4",
+ },
+ ],
+ showRange: true,
+ },
+};
+
+export const Reverse: Story = {
+ args: {
+ items: [
+ {
+ label: "7",
+ color: "#DA3F3F",
+ },
+ {
+ label: "6",
+ color: "#EB9436",
+ },
+ {
+ label: "5",
+ color: "#EBF000",
+ },
+ {
+ label: "4",
+ color: "#9CF259",
+ },
+ {
+ label: "3",
+ color: "#6EE0C4",
+ },
+ ],
+ reverse: true,
+ },
+};
diff --git a/app/src/components/Legend/Legend.tsx b/app/src/components/Legend/Legend.tsx
new file mode 100644
index 0000000..4f76212
--- /dev/null
+++ b/app/src/components/Legend/Legend.tsx
@@ -0,0 +1,132 @@
+import { styled } from "@linaria/react";
+import { useTranslation } from "react-i18next";
+
+import { breakpointMediaQueries } from "../../constants";
+import { splitN } from "../../utils";
+
+export type LegenItem = {
+ label?: string;
+ color?: string;
+};
+
+export type LegendProps = {
+ items?: LegenItem[];
+ color?: string;
+ showRange?: boolean;
+ reverse?: boolean;
+};
+
+export const Legend: React.FC = ({
+ items = [],
+ color = "#463C64",
+ showRange,
+ reverse = false,
+}) => {
+ const { t } = useTranslation();
+
+ return (
+
+ {showRange && (
+
+
+ {splitN(t("Large damage"))}
+
+ {splitN(t("No damage"))}
+
+
+ )}
+
+ {items.map(item => (
+ -
+
+ {item.label}
+
+ ))}
+
+ {}
+
+ );
+};
+
+const Root = styled.div<{ color: string }>`
+ display: flex;
+ font-size: 12px;
+ color: ${({ color }) => color};
+
+ ${breakpointMediaQueries.md} {
+ font-size: 10px;
+ }
+`;
+
+const Range = styled.div<{ color: string }>`
+ position: relative;
+ display: flex;
+ flex-direction: column;
+ align-items: end;
+ box-sizing: border-box;
+ border-right: 1px solid ${({ color }) => color};
+ padding-right: 10px;
+ margin-right: 10px;
+ white-space: nowrap;
+
+ ${breakpointMediaQueries.md} {
+ padding-right: 5px;
+ margin-right: 5px;
+ }
+`;
+
+const Arrow = styled.div<{ color: string }>`
+ position: absolute;
+ box-sizing: border-box;
+ right: -4px;
+ padding: 3px;
+ border-right: 1px solid ${({ color }) => color};
+ border-top: 1px solid ${({ color }) => color};
+
+ ${breakpointMediaQueries.md} {
+ padding: 2px;
+ right: -3px;
+ }
+`;
+
+const Space = styled.div`
+ flex: 1;
+`;
+
+const List = styled.ul`
+ display: flex;
+ flex-direction: column;
+ gap: 10px 0;
+ padding: 0;
+ list-style: none;
+ margin: 0;
+
+ ${breakpointMediaQueries.md} {
+ gap: 5px 0;
+ }
+`;
+
+const Item = styled.li<{ reverse: boolean }>`
+ display: flex;
+ flex-direction: ${({ reverse }) => (reverse ? "row-reverse" : "row")};
+ gap: 0 10px;
+ align-items: center;
+ margin-right: 5px;
+ font-weight: bold;
+ white-space: nowrap;
+
+ ${breakpointMediaQueries.md} {
+ gap: 0 5px;
+ }
+`;
+
+const Color = styled.div<{ color: string }>`
+ width: 30px;
+ height: 30px;
+ background-color: ${({ color }) => color};
+
+ ${breakpointMediaQueries.md} {
+ width: 20px;
+ height: 20px;
+ }
+`;
diff --git a/app/src/components/Legend/index.ts b/app/src/components/Legend/index.ts
new file mode 100644
index 0000000..01bcbb2
--- /dev/null
+++ b/app/src/components/Legend/index.ts
@@ -0,0 +1 @@
+export { Legend } from "./Legend";
diff --git a/app/src/components/LegendWithImage/LegendWithImage.stories.tsx b/app/src/components/LegendWithImage/LegendWithImage.stories.tsx
new file mode 100644
index 0000000..bbe3d22
--- /dev/null
+++ b/app/src/components/LegendWithImage/LegendWithImage.stories.tsx
@@ -0,0 +1,21 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { Marker } from "../icons/Marker";
+
+import { LegendWithImage } from ".";
+
+const meta: Meta = {
+ component: LegendWithImage,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ label: "避難施設",
+ description: "クリックで詳細",
+ img: ,
+ },
+};
diff --git a/app/src/components/LegendWithImage/LegendWithImage.tsx b/app/src/components/LegendWithImage/LegendWithImage.tsx
new file mode 100644
index 0000000..9be3fc2
--- /dev/null
+++ b/app/src/components/LegendWithImage/LegendWithImage.tsx
@@ -0,0 +1,85 @@
+import { styled } from "@linaria/react";
+import { ReactElement } from "react";
+
+import { breakpointMediaQueries } from "../../constants";
+
+export type LegendWithImageProps = {
+ label: string;
+ description: string;
+ img: ReactElement;
+ color?: string;
+};
+
+export const LegendWithImage: React.FC = ({
+ label,
+ description,
+ img,
+ color = "#463C64",
+}) => {
+ return (
+
+ -
+
+ {label}
+ {description}
+
+ {img}
+
+
+ );
+};
+
+const Root = styled.div<{ color: string }>`
+ display: flex;
+ font-size: 14px;
+ color: ${({ color }) => color};
+
+ ${breakpointMediaQueries.md} {
+ font-size: 10px;
+ }
+`;
+
+const Item = styled.div`
+ display: flex;
+ gap: 0 10px;
+ align-items: center;
+ margin-right: 5px;
+
+ ${breakpointMediaQueries.md} {
+ gap: 0 5px;
+ }
+`;
+
+const Content = styled.div`
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: end;
+ white-space: nowrap;
+`;
+
+const Label = styled.div`
+ font-weight: bold;
+ font-size: 12px;
+
+ ${breakpointMediaQueries.md} {
+ font-size: 10px;
+ }
+`;
+
+const Description = styled.div`
+ font-size: 10px;
+
+ ${breakpointMediaQueries.md} {
+ font-size: 8px;
+ }
+`;
+
+const Image = styled.div`
+ width: 30px;
+ height: auto;
+
+ ${breakpointMediaQueries.md} {
+ width: 20px;
+ }
+`;
diff --git a/app/src/components/LegendWithImage/index.ts b/app/src/components/LegendWithImage/index.ts
new file mode 100644
index 0000000..c329bce
--- /dev/null
+++ b/app/src/components/LegendWithImage/index.ts
@@ -0,0 +1 @@
+export { LegendWithImage } from "./LegendWithImage";
diff --git a/app/src/components/MinimizedReport/MinimizedReport.stories.tsx b/app/src/components/MinimizedReport/MinimizedReport.stories.tsx
new file mode 100644
index 0000000..3aea56c
--- /dev/null
+++ b/app/src/components/MinimizedReport/MinimizedReport.stories.tsx
@@ -0,0 +1,60 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { Marker } from "../icons/Marker";
+
+import { MinimizedReport } from ".";
+
+const meta: Meta = {
+ component: MinimizedReport,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ title: `都心南部直下地震
+焼失棟数分布`,
+ description: "火災によって焼失する家屋は、最大で約12万棟にのぼると想定されています。",
+ sourceLabel: "首都直下地震等による東京の被害想定報告書",
+ sourceUrl:
+ "https://www.bousai.metro.tokyo.lg.jp/_res/projects/default_project/_page_/001/021/571/20220525/n/002n.pdf",
+ legends: [
+ {
+ title: "エリア範囲内の焼失棟数",
+ items: [
+ {
+ label: "Hello World\nHello World",
+ color: "#DA3F3F",
+ },
+ {
+ label: "6",
+ color: "#EB9436",
+ },
+ {
+ label: "5",
+ color: "#EBF000",
+ },
+ {
+ label: "4",
+ color: "#9CF259",
+ },
+ {
+ label: "3",
+ color: "#6EE0C4",
+ },
+ ],
+ },
+ {
+ title: "避難施設",
+ items: [
+ {
+ label: "クリックで詳細",
+ img: ,
+ },
+ ],
+ },
+ ],
+ },
+};
diff --git a/app/src/components/MinimizedReport/MinimizedReport.tsx b/app/src/components/MinimizedReport/MinimizedReport.tsx
new file mode 100644
index 0000000..bd1525f
--- /dev/null
+++ b/app/src/components/MinimizedReport/MinimizedReport.tsx
@@ -0,0 +1,312 @@
+import { styled } from "@linaria/react";
+import {
+ Fragment,
+ ReactElement,
+ useCallback,
+ useEffect,
+ useLayoutEffect,
+ useRef,
+ useState,
+} from "react";
+
+import { breakpointMediaQueries, BURNED_OVERLAY } from "../../constants";
+import { useRefValue } from "../../hooks";
+import { useTranslation } from "../../i18n/hooks";
+import { splitN } from "../../utils";
+import { Button } from "../Button";
+import { Minus } from "../icons/Minus";
+import { Plus } from "../icons/Plus";
+import { InfoTooltip } from "../InfoTooltip";
+
+export const MINMIZED_REPORT_WIDTH = 320;
+
+export type LegendContentItem = {
+ title: string;
+ items: LegendItem[];
+};
+
+export type LegendItem = {
+ label?: string;
+ color?: string;
+ img?: ReactElement;
+};
+
+export type MinimizedReportProps = {
+ legends: LegendContentItem[];
+ title: string;
+ description: string;
+ sourceLabel: string;
+ sourceUrl: string;
+ onClick?: (isOpen: boolean) => void;
+ onOpenReport?: () => void;
+ isDefaultOpen?: boolean;
+};
+
+const tooltipTargets = [
+ { key: "SCENE_01_0_legend_title", contentKey: "INFO_STRUCTURE_TYPE" },
+ { key: "SCENE_02_0_legend_title", contentKey: "INFO_STRUCTURE_TYPE" },
+ { key: "SCENE_03_0_legend_title", contentKey: "INFO_STRUCTURE_TYPE" },
+ { key: "SCENE_04_0_legend_title", contentKey: "INFO_FIRE_PREVENTION_AREA" },
+ { key: `${BURNED_OVERLAY}_0_legend_title`, contentKey: "INFO_FIRE_PREVENTION_AREA_FOR_OVERLAY" },
+ { key: "SCENE_04_1_legend_title", contentKey: "INFO_STRUCTURE_TYPE" },
+ { key: "SCENE_05_0_legend_title", contentKey: "INFO_STRUCTURE_TYPE" },
+];
+
+export const MinimizedReport: React.FC = ({
+ legends,
+ title,
+ description,
+ sourceLabel,
+ sourceUrl,
+ onClick,
+ onOpenReport,
+ isDefaultOpen = true,
+}) => {
+ const { t } = useTranslation();
+ const rootRef = useRef(null);
+ const [isOpen, setIsOpen] = useState(isDefaultOpen);
+ const prevIsOpenRef = useRefValue(isOpen);
+ const handleOpen = useCallback(() => {
+ onClick?.(!prevIsOpenRef.current);
+ setIsOpen(v => !v);
+ }, [onClick, prevIsOpenRef]);
+
+ useEffect(() => {
+ setIsOpen(isDefaultOpen);
+ }, [isDefaultOpen]);
+
+ useLayoutEffect(() => {
+ if (!rootRef.current || !isOpen) return;
+ rootRef.current.scrollTo(0, 0);
+ }, [isOpen, title, description, legends]);
+
+ return (
+
+
+ {splitN(title)}
+
+ {isOpen ? (
+
+
+
+ ) : (
+
+
+
+ )}
+
+
+
+ {splitN(description)}
+
+ {t("Source: ")}
+
+ {sourceLabel}
+
+
+ {t("Legend")}
+
+ {legends.map(legend => (
+
+
+ {legend.title}
+ {tooltipTargets.find(({ key }) => legend.title === t(key))?.contentKey && (
+ legend.title === t(key))!.contentKey
+ }>
+ ?
+
+ )}
+
+
+ {legend.items.map(item =>
+ item.img ? (
+
+ {item.img}
+ {splitN(item.label ?? "")}
+
+ ) : (
+
+
+ {splitN(item.label ?? "")}
+
+ ),
+ )}
+
+
+ ))}
+
+
+
+ More Report
+
+
+
+
+
+ );
+};
+
+const Root = styled.div<{ open: boolean }>`
+ background-color: #ffffff;
+ padding: 20px 20px;
+ box-sizing: border-box;
+ color: #463c64;
+ width: ${MINMIZED_REPORT_WIDTH}px;
+ overflow-y: ${({ open }) => (open ? "auto" : "hidden")};
+ max-height: 50vh;
+ pointer-events: auto;
+
+ ${breakpointMediaQueries.md} {
+ width: 100%;
+ max-height: 40vh;
+ }
+`;
+
+const ContentContainer = styled.div`
+ transform: translateZ(0);
+ transition: max-height 100ms ease-in;
+ overflow-y: hidden;
+ ${breakpointMediaQueries.md} {
+ transform-origin: bottom;
+ }
+`;
+
+const TitleContainer = styled.div`
+ display: flex;
+`;
+
+const Title = styled.div`
+ font-size: 25px;
+ flex: 1;
+ font-weight: bold;
+ ${breakpointMediaQueries.md} {
+ font-size: 20px;
+ }
+`;
+
+const OpenButton = styled(Button)`
+ border: 1px solid #463c64;
+ width: 20px;
+ height: 20px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ margin-top: 10px;
+ ${breakpointMediaQueries.md} {
+ margin-top: 0;
+ }
+`;
+
+const OpenIcon = styled.div`
+ display: flex;
+`;
+
+const Description = styled.div`
+ margin-top: 20px;
+ font-size: 14px;
+
+ ${breakpointMediaQueries.md} {
+ margin-top: 15px;
+ }
+`;
+
+const Source = styled.div`
+ margin-top: 6px;
+ font-size: 10px;
+`;
+
+const SourceLink = styled.a`
+ color: inherit;
+`;
+
+const LegendTitle = styled.div`
+ font-size: 18px;
+ font-weight: bold;
+ margin-top: 20px;
+`;
+
+const LegendContentContainer = styled.ul`
+ display: flex;
+ flex-direction: column;
+
+ padding: 0;
+ list-style: none;
+ margin: 0;
+`;
+
+const LegendContentItemComp = styled.li`
+ display: flex;
+ gap: 6px;
+ margin-top: 10px;
+`;
+
+const LegendContentItemTitle = styled.li`
+ font-size: 14px;
+`;
+
+const LegendList = styled.ul`
+ display: flex;
+ gap: 0 5px;
+ padding: 0;
+ list-style: none;
+ margin: 0;
+ margin-top: 8px;
+ ${breakpointMediaQueries.md} {
+ gap: 0 5px;
+ }
+`;
+
+const LegendListItem = styled.li`
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ gap: 4px 0;
+ font-size: 9px;
+ max-width: 50px;
+ flex: 1;
+ text-align: center;
+
+ ${breakpointMediaQueries.md} {
+ }
+`;
+
+const LegendColor = styled.div<{ color: string }>`
+ width: 20px;
+ height: 20px;
+ background-color: ${({ color }) => color};
+
+ ${breakpointMediaQueries.md} {
+ width: 20px;
+ height: 20px;
+ }
+`;
+
+const LegendImage = styled.div`
+ width: 20px;
+ height: auto;
+`;
+
+const MoreReportButtonContainer = styled.div`
+ display: flex;
+ width: 100%;
+ margin-top: 30px;
+ justify-content: center;
+`;
+
+const MoreReportButton = styled(Button)`
+ display: flex;
+ width: 140px;
+ box-sizing: border-box;
+ padding: 12px 25px;
+ border: 1px solid #463c64;
+ border-radius: 100px;
+ font-size: 12px;
+ align-items: center;
+`;
+
+const MoreReportButtonLabel = styled.div`
+ display: inline-flex;
+ flex: 1;
+`;
diff --git a/app/src/components/MinimizedReport/index.ts b/app/src/components/MinimizedReport/index.ts
new file mode 100644
index 0000000..720de2e
--- /dev/null
+++ b/app/src/components/MinimizedReport/index.ts
@@ -0,0 +1 @@
+export * from "./MinimizedReport";
diff --git a/app/src/components/Opening/Opening.stories.tsx b/app/src/components/Opening/Opening.stories.tsx
new file mode 100644
index 0000000..26e4a9e
--- /dev/null
+++ b/app/src/components/Opening/Opening.stories.tsx
@@ -0,0 +1,13 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { Opening } from ".";
+
+const meta: Meta = {
+ component: Opening,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {};
diff --git a/app/src/components/Opening/Opening.tsx b/app/src/components/Opening/Opening.tsx
new file mode 100644
index 0000000..358bb6a
--- /dev/null
+++ b/app/src/components/Opening/Opening.tsx
@@ -0,0 +1,1011 @@
+import { styled } from "@linaria/react";
+import { CountUp } from "countup.js";
+import { Odometer } from "odometer_countup";
+import { FC, memo, useCallback, useEffect, useMemo, useRef, useState } from "react";
+import { useTranslation } from "react-i18next";
+
+import { breakpointMediaQueries, TITLE_FONT_FAMILY, breakPoint } from "../../constants";
+import { useFirstVisitContext } from "../../contexts/FirstVisitContexts";
+import { useNavigationContext } from "../../contexts/NavigationContexts";
+import { useSoundContext } from "../../contexts/SoundContexts";
+import { useMediaQuery, useEffectSound, useRefValue, useHideAnimation } from "../../hooks";
+import { DisclaimerOverlay } from "../../layers/overlays";
+import { splitN } from "../../utils";
+import { MainScenes, OpeningScenes, PageName } from "../../utils/types/common";
+import { Button } from "../Button";
+import { Forward } from "../icons/Forward";
+import { SoundOff } from "../icons/SoundOff";
+import { SoundOn } from "../icons/SoundOn";
+import { OpeningPictureSlider, PICTURE_SLIDER_TIMEOUT } from "../OpeningPictureSlider";
+
+const SCENE_META = {
+ delay: 300,
+ slidin: 1000,
+ fadein: 1000,
+ waitBeforeSlideIn: 3000,
+ fadeout: 1000,
+};
+
+const Counter = memo(function CounterPresenter({
+ start = 1924,
+ end = 2023,
+}: {
+ start?: number;
+ end?: number;
+}) {
+ const counterRef = useRef();
+ useEffect(() => {
+ const timer = setTimeout(() => {
+ counterRef.current?.start();
+ }, 1 * 1000);
+ return () => {
+ clearTimeout(timer);
+ };
+ }, []);
+ return (
+ {
+ if (r) {
+ counterRef.current = new CountUp(r, end, {
+ plugin: new Odometer({ duration: 2, lastDigitDelay: 0 }),
+ duration: 2,
+ startVal: start,
+ separator: "",
+ });
+ }
+ }}>
+ {start}
+
+ );
+});
+
+const OPENING_SCENE_ORDER = [
+ OpeningScenes.Scene1,
+ OpeningScenes.Scene2,
+ OpeningScenes.Scene3,
+ OpeningScenes.Scene4,
+ OpeningScenes.Scene5,
+ OpeningScenes.Scene4,
+];
+
+export const TITLE_OVERLAY_FADEOUT_DELAY = 3000;
+export const TITLE_OVERLAY_FADEOUT_DURATION = 2000;
+
+export const Opening: FC = () => {
+ const {
+ navigationState: { currentScene },
+ setCurrentScene,
+ setCurrentPage,
+ } = useNavigationContext();
+ const { setSound } = useSoundContext();
+ const { play } = useEffectSound();
+ const { firstVisit, setFirstVisit } = useFirstVisitContext();
+ const { disclaimerAccepted } = firstVisit;
+ const { t } = useTranslation();
+ const isBreakpointMd = useMediaQuery(`(max-width: ${breakPoint.md}px)`);
+ const isBreakpointSm = useMediaQuery(`(max-width: ${breakPoint.sm}px)`);
+
+ const [isShowTitleOverlayActual, setIsShowTitleOverlay] = useState(true);
+ const { value: isShowTitleOverlay, hide: hideTitleOverlay } = useHideAnimation(
+ isShowTitleOverlayActual,
+ TITLE_OVERLAY_FADEOUT_DURATION,
+ true,
+ );
+ useEffect(() => {
+ const timer = window.setTimeout(() => {
+ setIsShowTitleOverlay(false);
+ }, TITLE_OVERLAY_FADEOUT_DELAY);
+ return () => {
+ window.clearTimeout(timer);
+ };
+ }, []);
+
+ const SCENE2_META = {
+ ...SCENE_META,
+ content: splitN(
+ t(
+ "September 1, 1923, at 11:58 a.m. An earthquake with an estimated magnitude of 7.9 occurred in the Sagami Trough. Intensity 6 was observed in Saitama, Chiba, Tokyo, Kanagawa, and Yamanashi prefectures. The areas currently marked in red on the map are the locations where fires occurred during the Great Kanto Earthquake.",
+ ),
+ ),
+ waitBeforeSlideIn: 7500,
+ };
+
+ const SCENE3_META = {
+ ...SCENE_META,
+ content: splitN(
+ t(
+ 'It is said that the number of dead and missing reached approximately 105,000 people. This disaster became the starting point for disaster preparedness in Japan, and September 1st was designated as "Disaster Prevention Day." In 2023, it will have been 100 years since the Great Kanto Earthquake.',
+ ),
+ ),
+ waitBeforeSlideIn: 500,
+ };
+
+ const SCENE4_META = {
+ ...SCENE_META,
+ content: splitN(
+ t(
+ "Looking to the future. Preparing for the future. This site is a place to 'see' the future. Let's look together at what could happen in the near future with a high probability: major earthquakes such as the 'Tokyo Metropolitan Area South Subduction Earthquake' and the 'Tama Eastern Subduction Earthquake,' and what we can do about them.",
+ ),
+ ),
+ waitBeforeSlideIn: 500,
+ };
+
+ const [hide, setHide] = useState(false);
+ const [isContentCompleted, setIsContentCompleted] = useState(false);
+
+ const handleEnter = useCallback(
+ (on?: boolean) => {
+ setSound(on ? "on" : "off");
+ setCurrentScene(OpeningScenes.Scene2);
+ },
+ [setCurrentScene, setSound],
+ );
+
+ const handleAcceptDisclaimer = useCallback(() => {
+ setFirstVisit(prevFirstVisit => ({
+ ...prevFirstVisit,
+ disclaimerAccepted: true,
+ }));
+ }, [setFirstVisit]);
+
+ const timer = useRef();
+ const prevScene = useRefValue(currentScene);
+ const handleNext = useCallback(() => {
+ if (timer.current) {
+ window.clearTimeout(timer.current);
+ }
+ play("on");
+ setHide(true);
+ setIsContentCompleted(false);
+ timer.current = window.setTimeout(() => {
+ const prev = OPENING_SCENE_ORDER.findIndex(o => o === prevScene.current);
+ setCurrentScene(OPENING_SCENE_ORDER[prev + 1]);
+ setHide(false);
+ }, SCENE_META.fadein);
+ }, [setCurrentScene, play, prevScene]);
+
+ const handleSkip = useCallback(() => {
+ play("on");
+ setCurrentPage(PageName.Main);
+ setCurrentScene(MainScenes.Scene1);
+ }, [setCurrentPage, setCurrentScene, play]);
+
+ const shakeScreen = useCallback(
+ (duration: number, frequency: number, amplitude: number, delay: number = 0): void => {
+ setTimeout(() => {
+ const shake = () => {
+ const elapsed = Date.now() - startTime;
+ const progress = Math.min(elapsed / duration, 1);
+ const shakeAngle = Math.sin(elapsed / (frequency / 2)) * amplitude * (1 - progress);
+
+ const easeOutBack = (x: number): number => {
+ const c1 = 1.70158;
+ const c3 = c1 + 1;
+
+ return 1 + c3 * Math.pow(x - 1, 3) + c1 * Math.pow(x - 1, 2);
+ };
+
+ const adjustedAngle = shakeAngle * easeOutBack(progress);
+
+ screen.style.transform = `rotate(${adjustedAngle}deg)`;
+
+ if (progress >= 1) {
+ clearInterval(timer);
+ screen.style.transform = "none";
+ }
+ };
+ const screen = document.body;
+ const startTime: number = Date.now();
+ const timer = window.setInterval(shake, 1000 / 60);
+ }, delay);
+ },
+ [],
+ );
+
+ useEffect(() => {
+ if (currentScene === OpeningScenes.Scene2) {
+ shakeScreen(4000, 100, 2, 3000);
+ }
+ }, [currentScene, shakeScreen]);
+
+ // Handle switching scene for count up
+ useEffect(() => {
+ let timer: number;
+ switch (currentScene) {
+ case OpeningScenes.Scene5:
+ timer = window.setTimeout(() => setCurrentScene(OpeningScenes.Scene6), 2 * 1000);
+ break;
+ case OpeningScenes.Scene6:
+ timer = window.setTimeout(() => {
+ setCurrentPage(PageName.Main);
+ setCurrentScene(MainScenes.Scene1);
+ }, 3 * 1000);
+ break;
+ }
+ return () => {
+ clearTimeout(timer);
+ };
+ }, [currentScene, setCurrentScene, setCurrentPage]);
+
+ // Handle activate the next button after the content is completed
+ useEffect(() => {
+ let timer: number;
+ const delay = 1000;
+ switch (currentScene) {
+ case OpeningScenes.Scene2:
+ timer = window.setTimeout(
+ () => {
+ setIsContentCompleted(true);
+ },
+ SCENE2_META.delay * SCENE2_META.content.length +
+ SCENE2_META.waitBeforeSlideIn +
+ 1000 +
+ delay,
+ );
+ break;
+ case OpeningScenes.Scene3:
+ timer = window.setTimeout(
+ () => {
+ setIsContentCompleted(true);
+ },
+ SCENE3_META.delay * SCENE3_META.content.length +
+ SCENE3_META.waitBeforeSlideIn +
+ 1000 +
+ PICTURE_SLIDER_TIMEOUT +
+ delay,
+ );
+ break;
+ case OpeningScenes.Scene4:
+ timer = window.setTimeout(
+ () => {
+ setIsContentCompleted(true);
+ },
+ SCENE4_META.delay * SCENE4_META.content.length +
+ SCENE4_META.waitBeforeSlideIn +
+ 1000 +
+ delay,
+ );
+ break;
+ }
+ return () => window.clearTimeout(timer);
+ }, [
+ SCENE2_META.content.length,
+ SCENE2_META.delay,
+ SCENE2_META.waitBeforeSlideIn,
+ SCENE3_META.content.length,
+ SCENE3_META.delay,
+ SCENE3_META.waitBeforeSlideIn,
+ SCENE4_META.content.length,
+ SCENE4_META.delay,
+ SCENE4_META.waitBeforeSlideIn,
+ currentScene,
+ ]);
+
+ const SkipOpening = useMemo(() => {
+ const isCounter =
+ currentScene === OpeningScenes.Scene5 || currentScene === OpeningScenes.Scene6;
+ return (
+
+
+ {t("SKIP")}
+
+ );
+ }, [handleSkip, t, currentScene]);
+
+ const content = useMemo(() => {
+ switch (currentScene) {
+ case OpeningScenes.Scene1:
+ return (
+ <>
+
+
+
+
+ {SkipOpening}
+
+
+
+
+
+
+ >
+ );
+ case OpeningScenes.Scene2: {
+ const content = SCENE2_META.content.map((c, i) => (
+ <>
+
+ {c}
+
+
+ >
+ ));
+ return (
+
+ {content}
+
+ );
+ }
+ case OpeningScenes.Scene3: {
+ const content = SCENE3_META.content.map((c, i) => (
+ <>
+
+ {c}
+
+
+ >
+ ));
+ return (
+ <>
+
+ {content}
+
+
+
+
+ {splitN(
+ t(
+ "The photo is a colorized version of a photo from the time of the Great Kanto Earthquake. Photo courtesy: National Museum of Nature and Science, Colorization: Hidenori Watanabe.",
+ ),
+ )}
+
+
+ >
+ );
+ }
+ case OpeningScenes.Scene4: {
+ const content = SCENE4_META.content.map((c, i) => (
+ <>
+
+ {c}
+
+
+ >
+ ));
+ return (
+
+ {content}
+
+ );
+ }
+ case OpeningScenes.Scene5:
+ case OpeningScenes.Scene6: {
+ return ;
+ }
+ }
+ }, [
+ currentScene,
+ hide,
+ SCENE2_META.content,
+ SCENE2_META.delay,
+ SCENE2_META.waitBeforeSlideIn,
+ SCENE3_META.content,
+ SCENE3_META.delay,
+ SCENE3_META.waitBeforeSlideIn,
+ SCENE4_META.content,
+ SCENE4_META.delay,
+ SCENE4_META.waitBeforeSlideIn,
+ t,
+ SkipOpening,
+ ]);
+
+ if (isShowTitleOverlay)
+ return (
+
+
+
+
+
+ );
+
+ return (
+ <>
+
+ {content}
+ {currentScene === OpeningScenes.Scene1 ? (
+
+
+
+ handleEnter(true)}>
+ Sound ON
+
+
+ handleEnter()}>
+ Sound OFF
+
+
+
+
+ ) : [OpeningScenes.Scene2, OpeningScenes.Scene3, OpeningScenes.Scene4].includes(
+ currentScene as OpeningScenes,
+ ) ? (
+
+ {"NEXT"}
+
+ ) : (
+
+ {"SKIP"}
+
+ )}
+ {currentScene !== OpeningScenes.Scene1 && (
+
+ {SkipOpening}
+
+ )}
+
+
+ >
+ );
+};
+
+const TitleOverlay = styled.div`
+ position: fixed;
+ inset: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100svh;
+ height: 100dvh;
+ z-index: 0;
+ background-color: rgba(70, 60, 100, 1);
+
+ animation: 2s ease-out 1s fadeout-background;
+ animation-fill-mode: forwards;
+ @keyframes fadeout-background {
+ from {
+ background-color: rgba(70, 60, 100, 1);
+ }
+ to {
+ background-color: rgba(70, 60, 100, 0.5);
+ }
+ }
+`;
+
+const TitleOverlayTitle = styled.h1`
+ display: block;
+ margin: 0;
+ padding: 0;
+ text-align: center;
+ opacity: 0;
+ animation: 2s ease-out 0.5s fadein;
+ animation-fill-mode: forwards;
+
+ img {
+ display: block;
+ margin: 0 auto;
+ max-width: 700px;
+ width: 100%;
+ height: auto;
+
+ ${breakpointMediaQueries.md} {
+ width: 80%;
+ padding-left: 2.4%;
+ }
+ }
+
+ @keyframes fadein {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+
+ &.hide {
+ opacity: 1;
+ visibility: visible;
+ animation: 2s ease-out 0s fadeout;
+ animation-fill-mode: forwards;
+ @keyframes fadeout {
+ from {
+ opacity: 1;
+ visibility: visible;
+ }
+ to {
+ opacity: 0;
+ visibility: hidden;
+ }
+ }
+ }
+`;
+
+const Root = styled.div`
+ position: fixed;
+ inset: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-direction: column;
+ height: 100svh;
+ z-index: 1;
+ background-color: rgba(70, 60, 100, 0.5);
+`;
+
+const Title = styled.h1`
+ display: block;
+ margin: 0;
+ padding: 0;
+ text-align: center;
+
+ img {
+ display: block;
+ margin: 0 auto;
+ max-width: 700px;
+ width: 90%;
+ height: auto;
+
+ ${breakpointMediaQueries.md} {
+ width: 70%;
+ padding-left: 2.4%;
+ }
+ }
+
+ opacity: 0;
+ animation: 1s ease-out 0s fadein;
+ animation-fill-mode: forwards;
+ @keyframes fadein {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+`;
+
+const Content = styled.div<{ length: number }>`
+ color: #ffffff;
+ font-size: 25px;
+ padding: 0 10px;
+ z-index: 1;
+
+ &.hide {
+ opacity: 1;
+ animation: ${SCENE_META.fadein}ms ease-out 0ms 1 normal forwards running fadeout;
+ @keyframes fadeout {
+ 0% {
+ opacity: 1;
+ }
+ 100% {
+ opacity: 0;
+ }
+ }
+ }
+
+ & > div {
+ box-sizing: border-box;
+ padding: 5px 10px;
+ margin: 5px 0;
+ display: inline-block;
+ background-color: #463c64;
+ transform: translateY(100%);
+ opacity: 0;
+ animation:
+ ${SCENE_META.fadein}ms ease-out 0ms 1 normal forwards running fadein,
+ ${SCENE_META.slidin}ms ease-out 0ms 1 normal forwards running slidein;
+ @keyframes slidein {
+ 0% {
+ transform: translateY(100%);
+ }
+ 100% {
+ transform: translateY(0%);
+ }
+ }
+ @keyframes fadein {
+ 0% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+ }
+
+ &.bold {
+ font-family: ${TITLE_FONT_FAMILY};
+ font-size: 60px;
+ font-weight: lighter;
+ }
+ &:nth-of-type(1).bold {
+ margin-top: -5px;
+ margin-bottom: 70px;
+ }
+ &:nth-last-of-type(1).bold {
+ margin-top: 70px;
+ }
+
+ ${breakpointMediaQueries.md} {
+ font-size: 16px;
+ &.bold {
+ font-size: 30px;
+ }
+ &:nth-of-type(1).bold {
+ margin-bottom: 40px;
+ }
+ &:nth-last-of-type(1).bold {
+ margin-top: 40px;
+ }
+ }
+
+ ${breakpointMediaQueries.sm} {
+ font-size: 12px;
+ &.bold {
+ font-size: 20px;
+ }
+ &:nth-of-type(1).bold {
+ margin-bottom: 20px;
+ }
+ &:nth-last-of-type(1).bold {
+ margin-top: 20px;
+ }
+ }
+ }
+`;
+
+const HideWrapper = styled.div`
+ opacity: 1;
+ &.hide {
+ opacity: 1;
+ animation: ${SCENE_META.fadein}ms ease-out 0ms 1 normal forwards running fadeout;
+ @keyframes fadeout {
+ 0% {
+ opacity: 1;
+ }
+ 100% {
+ opacity: 0;
+ }
+ }
+ }
+`;
+
+const CreditForPictureSlider = styled.div`
+ position: absolute;
+ bottom: 30px;
+ left: 0px;
+ background-color: rgba(255, 255, 255, 0.3);
+ color: #222;
+ font-size: 12px;
+ font-weight: lighter;
+ box-sizing: border-box;
+ padding: 3px 6px;
+ border-radius: 2px;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
+`;
+
+const ActionButton = styled(Button)<{ isContentCompleted: boolean }>`
+ font-size: 20px;
+ cursor: pointer;
+ display: inline-grid;
+ justify-content: center;
+ align-content: center;
+ width: 100%;
+ max-width: 300px;
+ height: 60px;
+ border: 1px #463c64 solid;
+ background: #ffffff;
+ border-radius: 60px;
+ margin-top: 142px;
+ color: #463c64;
+ z-index: 1;
+ transition: background-color 300ms ease-in;
+ background-color: ${({ isContentCompleted }) => (isContentCompleted ? "#fff" : "#777")};
+
+ opacity: 0;
+ animation: 300ms ease-out 0ms 1 normal forwards running fadein;
+ @keyframes fadein {
+ 0% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+ }
+ &.hide {
+ opacity: 1;
+ animation: 300ms ease-out 100ms 1 normal forwards running fadeout;
+ @keyframes fadeout {
+ 0% {
+ opacity: 1;
+ }
+ 100% {
+ opacity: 0;
+ }
+ }
+ }
+
+ ${breakpointMediaQueries.md} {
+ width: 60%;
+ height: 50px;
+ font-size: 18px;
+ margin-top: 124px;
+ }
+
+ ${breakpointMediaQueries.sm} {
+ width: 70%;
+ height: 40px;
+ font-size: 16px;
+ margin-top: 62px;
+ }
+`;
+
+const StyledCounter = styled.div`
+ font-family: ${TITLE_FONT_FAMILY};
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ width: 80%;
+ max-width: 700px;
+ margin: 0 auto;
+
+ font-size: 200px;
+ color: #ffffff;
+ opacity: 0;
+ animation:
+ 1s ease-out 0s fadein,
+ 1s ease-out 2s changeColor;
+ animation-fill-mode: forwards;
+
+ ${breakpointMediaQueries.md} {
+ font-size: 150px;
+ width: 90%;
+ }
+
+ ${breakpointMediaQueries.sm} {
+ font-size: 100px;
+ width: 100%;
+ }
+
+ @keyframes fadein {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+
+ @keyframes changeColor {
+ from {
+ color: #ffffff;
+ }
+ to {
+ color: #463c64;
+ }
+ }
+`;
+
+const SoundButtonList = styled.div`
+ display: flex;
+ gap: 80px;
+`;
+
+const SoundButton = styled(Button)`
+ display: flex;
+ flex-direction: column;
+ border-radius: 50%;
+ width: 150px;
+ height: 150px;
+ font-size: 14px;
+ gap: 16px;
+ align-items: center;
+ justify-content: center;
+
+ ${breakpointMediaQueries.md} {
+ width: 100px;
+ height: 100px;
+ font-size: 12px;
+ gap: 12px;
+ }
+
+ ${breakpointMediaQueries.sm} {
+ width: 90px;
+ height: 90px;
+ font-size: 10px;
+ gap: 5px;
+ }
+`;
+
+const PlateauLogo = styled.div`
+ display: flex;
+ flex-direction: column;
+ align-items: flex-start;
+ gap: 15px
+ width: 200px;
+ height: auto;
+ margin: 20px;
+ text-align: center;
+ opacity: 0;
+ animation: 3s ease-out 0.5s fadein;
+ animation-fill-mode: forwards;
+ font-size: 15px;
+ color: #ffffff;
+ pointer-events: auto;
+
+ & > span {
+ font-weight: lighter;
+ }
+
+ & img {
+ display: block;
+ width: 100%;
+ height: auto;
+ }
+
+ @keyframes fadein {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+
+ ${breakpointMediaQueries.md} {
+ bottom: 30px;
+ right: 20px;
+ font-size: 10px;
+ gap: 10px;
+ width: 150px;
+ }
+`;
+
+const SkipButton = styled.div`
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ gap: 15px;
+ width: 70px;
+ height: auto;
+ margin: 20px;
+ text-align: center;
+ z-index: 1;
+ font-size: 15px;
+ color: #ffffff;
+ fill: #ffffff;
+ cursor: pointer;
+ border-bottom: 1px solid #ffffff;
+ pointer-events: auto;
+
+ &.counter {
+ animation: 1s ease-out 2s changeColor;
+ animation-fill-mode: forwards;
+ @keyframes changeColor {
+ from {
+ color: #ffffff;
+ fill: #ffffff;
+ border-bottom: 1px solid #ffffff;
+ }
+ to {
+ color: #463c64;
+ fill: #463c64;
+ border-bottom: 1px solid #463c64;
+ }
+ }
+ }
+
+ ${breakpointMediaQueries.md} {
+ width: 60px;
+ font-size: 12px;
+ gap: 10px;
+ }
+`;
+
+const OpeningFooter = styled.div`
+ display: flex;
+ justify-content: space-between;
+ align-items: flex-end;
+ width: 100%;
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ padding: 30px 20px;
+ box-sizing: border-box;
+ z-index: 1;
+ pointer-events: none;
+`;
+
+const CreditForThisSite = styled.div`
+ width: 100%;
+ font-size: 14px;
+ text-align: center;
+ color: #ffffff;
+ padding: 0 20px;
+ box-sizing: border-box;
+
+ & .bold {
+ font-size: 20px;
+ font-weight: 700;
+ }
+
+ ${breakpointMediaQueries.md} {
+ width: 90%;
+ font-size: 10px;
+ text-align: left;
+
+ & .bold {
+ font-size: 12px;
+ font-weight: 700;
+ }
+ }
+`;
+
+const SoundButtonWrapper = styled.div`
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ gap: 30px;
+ margin-top: 60px;
+
+ ${breakpointMediaQueries.md} {
+ margin-top: 20px;
+ }
+
+ opacity: 0;
+ animation: 1s ease-out 0s fadein;
+ animation-fill-mode: forwards;
+ @keyframes fadein {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+`;
+
+const SkipOpeningWrapper = styled.div<{ currentScene: OpeningScenes }>`
+ position: absolute;
+ bottom: ${({ currentScene }) => (currentScene === OpeningScenes.Scene3 ? "70" : "30")}px;
+ left: 20px;
+ display: flex;
+ gap: 20px;
+ z-index: 1;
+
+ ${breakpointMediaQueries.md} {
+ bottom: ${({ currentScene }) => (currentScene === OpeningScenes.Scene3 ? "90" : "30")}px;
+ }
+`;
diff --git a/app/src/components/Opening/index.ts b/app/src/components/Opening/index.ts
new file mode 100644
index 0000000..6703ae9
--- /dev/null
+++ b/app/src/components/Opening/index.ts
@@ -0,0 +1 @@
+export { Opening } from "./Opening";
diff --git a/app/src/components/OpeningPictureSlider/OpeningPictureSlider.stories.tsx b/app/src/components/OpeningPictureSlider/OpeningPictureSlider.stories.tsx
new file mode 100644
index 0000000..0e8f104
--- /dev/null
+++ b/app/src/components/OpeningPictureSlider/OpeningPictureSlider.stories.tsx
@@ -0,0 +1,13 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { OpeningPictureSlider } from ".";
+
+const meta: Meta = {
+ component: OpeningPictureSlider,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {};
diff --git a/app/src/components/OpeningPictureSlider/OpeningPictureSlider.tsx b/app/src/components/OpeningPictureSlider/OpeningPictureSlider.tsx
new file mode 100644
index 0000000..ffbc2e4
--- /dev/null
+++ b/app/src/components/OpeningPictureSlider/OpeningPictureSlider.tsx
@@ -0,0 +1,270 @@
+import { styled } from "@linaria/react";
+import { FC, useCallback, useEffect, useRef, useState } from "react";
+
+import { breakPoint } from "../../constants";
+import { useMediaQuery } from "../../hooks";
+
+export const PICTURE_SLIDER_TIMEOUT = 4000;
+
+const IMAGES = [
+ "img/opening/op1.webp",
+ "img/opening/op2.webp",
+ "img/opening/op3.webp",
+ "img/opening/op4.webp",
+ "img/opening/op5.webp",
+];
+
+const makePreloadPictureSlider = () => {
+ const links = IMAGES.map(img => {
+ const link = document.createElement("link");
+ link.rel = "preload";
+ link.href = img;
+ link.as = "image";
+ return link;
+ });
+ document.querySelector("head")?.append(...links);
+};
+makePreloadPictureSlider();
+
+export const OpeningPictureSlider: FC<{
+ onAnimationStart?: () => void;
+ onAnimationEnd?: () => void;
+}> = ({ onAnimationStart, onAnimationEnd }) => {
+ const [shouldShow, setShouldShow] = useState(false);
+ const isBreakpointMd = useMediaQuery(`(max-width: ${breakPoint.md}px)`);
+
+ useEffect(() => {
+ onAnimationStart?.();
+ const timer = window.setTimeout(() => {
+ onAnimationEnd?.();
+ }, PICTURE_SLIDER_TIMEOUT);
+ return () => window.clearTimeout(timer);
+ }, [onAnimationStart, onAnimationEnd]);
+
+ const imageCountRef = useRef(0);
+ const handleOnLoad = useCallback(() => {
+ imageCountRef.current++;
+ if (imageCountRef.current >= IMAGES.length) {
+ setShouldShow(true);
+ }
+ }, []);
+
+ return (
+
+
+
+
+
+
+
+ );
+};
+
+const PictureSlider: FC<{
+ url: string;
+ width: string;
+ posPercent: number;
+ duration?: number;
+ y: string;
+ delay: number;
+ imageWidth: number;
+ imageHeight: number;
+ show?: boolean;
+ onLoad?: () => void;
+}> = ({
+ url,
+ width,
+ posPercent,
+ duration = 30,
+ y,
+ delay,
+ imageWidth,
+ imageHeight,
+ onLoad,
+ show,
+}) => {
+ return (
+ <>
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+};
+
+const DELAY_FOR_SLIDER = 1.5;
+
+const Root = styled.div`
+ position: fixed;
+ inset: 0;
+ background-color: rgba(70, 60, 100, 1);
+
+ animation: 1s linear 2s 1 normal forwards running fadeout;
+
+ @keyframes fadeout {
+ to {
+ background-color: rgba(70, 60, 100, 0);
+ }
+ }
+`;
+
+const Slider = styled.div<{ y: string; duration: number; posPercent: number }>`
+ --x: ${({ posPercent }) => `${posPercent * 10}%`};
+ --duration: ${({ duration }) => `${duration}s`};
+ --firstDuration: ${({ duration }) => `${duration / 2}s`};
+ --firstDelay: ${({ duration }) => `${duration / 2 + DELAY_FOR_SLIDER}s`};
+ --y: ${({ y }) => y};
+
+ position: absolute;
+ top: var(--y);
+ left: var(--x);
+ width: 100%;
+ transform: translateX(-100%);
+
+ &.first {
+ transform: translateX(0%);
+ animation:
+ var(--firstDuration) linear ${DELAY_FOR_SLIDER}s 1 normal none running slide-first,
+ var(--duration) linear var(--firstDelay) infinite normal none running slide;
+ }
+
+ animation: var(--duration) linear ${DELAY_FOR_SLIDER}s infinite normal none running slide;
+
+ @keyframes slide-first {
+ from {
+ transform: translateX(0%);
+ }
+ to {
+ transform: translateX(100%);
+ }
+ }
+ @keyframes slide {
+ from {
+ transform: translateX(-100%);
+ }
+ to {
+ transform: translateX(100%);
+ }
+ }
+
+ &.hide {
+ animation: none;
+ display: none;
+ }
+`;
+
+const ImageContainer = styled.div<{ width: string; delay: number }>`
+ position: relative;
+ width: ${({ width }) => width};
+
+ position: relative;
+ box-sizing: border-box;
+
+ transform-origin: bottom;
+
+ &:before {
+ content: "";
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ display: block;
+ background-color: rgba(70, 60, 100, 1);
+ padding: 1px;
+ animation: 0.5s ease-out 0s 1 normal forwards running slidein;
+ animation-delay: ${({ delay }) => `${delay}s`};
+ @keyframes slidein {
+ to {
+ height: 0%;
+ padding: 0;
+ }
+ }
+ }
+
+ &.hide {
+ animation: none;
+ display: none;
+ }
+`;
+
+const Image = styled.img`
+ width: 100%;
+ height: 100%;
+ object-fit: contain;
+`;
diff --git a/app/src/components/OpeningPictureSlider/index.ts b/app/src/components/OpeningPictureSlider/index.ts
new file mode 100644
index 0000000..09e9665
--- /dev/null
+++ b/app/src/components/OpeningPictureSlider/index.ts
@@ -0,0 +1 @@
+export { OpeningPictureSlider, PICTURE_SLIDER_TIMEOUT } from "./OpeningPictureSlider";
diff --git a/app/src/components/ParticleOverlay/ParticleOverlay.stories.tsx b/app/src/components/ParticleOverlay/ParticleOverlay.stories.tsx
new file mode 100644
index 0000000..a9298ea
--- /dev/null
+++ b/app/src/components/ParticleOverlay/ParticleOverlay.stories.tsx
@@ -0,0 +1,15 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { ParticleOverlay } from ".";
+
+const meta: Meta = {
+ component: ParticleOverlay,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {},
+};
diff --git a/app/src/components/ParticleOverlay/ParticleOverlay.tsx b/app/src/components/ParticleOverlay/ParticleOverlay.tsx
new file mode 100644
index 0000000..7d01060
--- /dev/null
+++ b/app/src/components/ParticleOverlay/ParticleOverlay.tsx
@@ -0,0 +1,161 @@
+import { styled } from "@linaria/react";
+import { ISourceOptions } from "@tsparticles/engine";
+import Particles, { initParticlesEngine } from "@tsparticles/react";
+import { useEffect, useMemo, useState } from "react";
+
+import { loadSlim } from "./loadPreset";
+
+type Props = {
+ show?: boolean;
+ backgroundColor?: string;
+ backgroundOpacity?: number;
+ particleColor?: string;
+ delay?: number;
+};
+
+export const ParticleOverlay: React.FC = ({
+ show = true,
+ backgroundOpacity,
+ backgroundColor,
+ particleColor,
+ delay,
+}) => {
+ const [init, setInit] = useState(false);
+ const [delayedShow, setDelayedShow] = useState(show);
+
+ useEffect(() => {
+ initParticlesEngine(async engine => {
+ await loadSlim(engine);
+ }).then(() => {
+ setInit(true);
+ });
+ }, []);
+
+ useEffect(() => {
+ const timer = window.setTimeout(() => {
+ setDelayedShow(show);
+ }, delay);
+ return () => {
+ window.clearTimeout(timer);
+ };
+ }, [show, delay]);
+
+ const options: ISourceOptions = useMemo(
+ () => ({
+ background: {
+ color: {
+ value: backgroundColor ?? "#000",
+ },
+ opacity: backgroundOpacity ?? 1,
+ },
+ autoPlay: true,
+ clear: true,
+ defaultThemes: {},
+ delay: 0,
+ fullScreen: { enable: true, zIndex: 0 },
+ detectRetina: true,
+ duration: 0,
+ fpsLimit: 120,
+ manualParticles: [],
+ particles: {
+ bounce: { horizontal: { value: 1 }, vertical: { value: 1 } },
+ color: {
+ value: particleColor ?? "#fff",
+ },
+ effect: { close: true, fill: true, options: {}, type: [] },
+ groups: {},
+ move: {
+ angle: { offset: 0, value: 90 },
+ attract: { distance: 200, enable: false, rotate: { x: 3000, y: 3000 } },
+ center: { x: 50, y: 50, mode: "percent", radius: 0 },
+ decay: 0,
+ distance: {},
+ direction: "none",
+ drift: 0,
+ enable: true,
+ gravity: { acceleration: 9.81, enable: false, inverse: false, maxSpeed: 50 },
+ path: { clamp: true, delay: { value: 0 }, enable: false, options: {} },
+ outModes: { default: "out" },
+ random: false,
+ size: false,
+ speed: { min: 0.1, max: 1 },
+ spin: { acceleration: 0, enable: false },
+ straight: false,
+ trail: { enable: false, length: 10, fill: {} },
+ vibrate: false,
+ warp: false,
+ },
+ number: {
+ density: { enable: true, width: 1920, height: 1080 },
+ limit: { mode: "delete", value: 0 },
+ value: 1000,
+ },
+ opacity: {
+ value: { min: 0.1, max: 1 },
+ animation: {
+ count: 0,
+ enable: true,
+ speed: 2,
+ decay: 0,
+ delay: 0,
+ sync: false,
+ mode: "auto",
+ startValue: "random",
+ destroy: "none",
+ },
+ },
+ size: {
+ value: { min: 0.1, max: 2 },
+ animation: {
+ count: 0,
+ enable: true,
+ speed: 1,
+ decay: 0,
+ delay: 0,
+ sync: false,
+ mode: "auto",
+ startValue: "random",
+ destroy: "none",
+ },
+ },
+ reduceDuplicates: false,
+ shape: { close: true, fill: true, options: {}, type: "circle" },
+ zIndex: { value: 0, opacityRate: 1, sizeRate: 1, velocityRate: 1 },
+ destroy: {
+ bounds: {},
+ mode: "none",
+ split: {
+ count: 1,
+ factor: { value: 3 },
+ rate: { value: { min: 4, max: 9 } },
+ sizeOffset: true,
+ },
+ },
+ },
+ pauseOnBlur: true,
+ pauseOnOutsideViewport: true,
+ responsive: [],
+ smooth: false,
+ style: {},
+ themes: [],
+ zLayers: 100,
+ motion: { disable: false, reduce: { factor: 4, value: true } },
+ }),
+ [backgroundColor, backgroundOpacity, particleColor],
+ );
+
+ if (init) {
+ return (
+
+ ;
+
+ );
+ }
+
+ return;
+};
+
+const Root = styled.div<{ show: boolean }>`
+ transition: opacity 300ms ease-out;
+ opacity: ${({ show }) => (show ? 1 : 0)};
+`;
diff --git a/app/src/components/ParticleOverlay/index.ts b/app/src/components/ParticleOverlay/index.ts
new file mode 100644
index 0000000..401784a
--- /dev/null
+++ b/app/src/components/ParticleOverlay/index.ts
@@ -0,0 +1 @@
+export { ParticleOverlay } from "./ParticleOverlay";
diff --git a/app/src/components/ParticleOverlay/loadPreset.ts b/app/src/components/ParticleOverlay/loadPreset.ts
new file mode 100644
index 0000000..4098e5b
--- /dev/null
+++ b/app/src/components/ParticleOverlay/loadPreset.ts
@@ -0,0 +1,65 @@
+import { loadBasic } from "@tsparticles/basic";
+import { tsParticles } from "@tsparticles/engine";
+import type { Engine } from "@tsparticles/engine";
+import { loadExternalAttractInteraction } from "@tsparticles/interaction-external-attract";
+import { loadExternalBounceInteraction } from "@tsparticles/interaction-external-bounce";
+import { loadExternalBubbleInteraction } from "@tsparticles/interaction-external-bubble";
+import { loadExternalConnectInteraction } from "@tsparticles/interaction-external-connect";
+import { loadExternalGrabInteraction } from "@tsparticles/interaction-external-grab";
+import { loadExternalPauseInteraction } from "@tsparticles/interaction-external-pause";
+import { loadExternalPushInteraction } from "@tsparticles/interaction-external-push";
+import { loadExternalRemoveInteraction } from "@tsparticles/interaction-external-remove";
+import { loadExternalRepulseInteraction } from "@tsparticles/interaction-external-repulse";
+import { loadExternalSlowInteraction } from "@tsparticles/interaction-external-slow";
+import { loadParticlesAttractInteraction } from "@tsparticles/interaction-particles-attract";
+import { loadParticlesCollisionsInteraction } from "@tsparticles/interaction-particles-collisions";
+import { loadParticlesLinksInteraction } from "@tsparticles/interaction-particles-links";
+import { loadParallaxMover } from "@tsparticles/move-parallax";
+import { loadEasingQuadPlugin } from "@tsparticles/plugin-easing-quad";
+import { loadEmojiShape } from "@tsparticles/shape-emoji";
+import { loadImageShape } from "@tsparticles/shape-image";
+import { loadLineShape } from "@tsparticles/shape-line";
+import { loadPolygonShape } from "@tsparticles/shape-polygon";
+import { loadSquareShape } from "@tsparticles/shape-square";
+import { loadStarShape } from "@tsparticles/shape-star";
+import { loadLifeUpdater } from "@tsparticles/updater-life";
+import { loadRotateUpdater } from "@tsparticles/updater-rotate";
+import { loadStrokeColorUpdater } from "@tsparticles/updater-stroke-color";
+
+async function loadSlim(engine: Engine, refresh = true): Promise {
+ await loadParallaxMover(engine, false);
+
+ await loadExternalAttractInteraction(engine, false);
+ await loadExternalBounceInteraction(engine, false);
+ await loadExternalBubbleInteraction(engine, false);
+ await loadExternalConnectInteraction(engine, false);
+ await loadExternalGrabInteraction(engine, false);
+ await loadExternalPauseInteraction(engine, false);
+ await loadExternalPushInteraction(engine, false);
+ await loadExternalRemoveInteraction(engine, false);
+ await loadExternalRepulseInteraction(engine, false);
+ await loadExternalSlowInteraction(engine, false);
+
+ await loadParticlesAttractInteraction(engine, false);
+ await loadParticlesCollisionsInteraction(engine, false);
+ await loadParticlesLinksInteraction(engine, false);
+
+ await loadEasingQuadPlugin();
+
+ await loadEmojiShape(engine, false);
+ await loadImageShape(engine, false);
+ await loadLineShape(engine, false);
+ await loadPolygonShape(engine, false);
+ await loadSquareShape(engine, false);
+ await loadStarShape(engine, false);
+
+ await loadLifeUpdater(engine, false);
+ await loadRotateUpdater(engine, false);
+ await loadStrokeColorUpdater(engine, false);
+
+ await loadBasic(engine, refresh);
+}
+
+void loadSlim(tsParticles);
+
+export { loadSlim };
diff --git a/app/src/components/PlayButton/PlayButton.tsx b/app/src/components/PlayButton/PlayButton.tsx
new file mode 100644
index 0000000..8f231b3
--- /dev/null
+++ b/app/src/components/PlayButton/PlayButton.tsx
@@ -0,0 +1,39 @@
+import { styled } from "@linaria/react";
+import { FC } from "react";
+import { useTranslation } from "react-i18next";
+
+import { breakpointMediaQueries } from "../../constants";
+import { Play } from "../icons/Play";
+import { Stop } from "../icons/Stop";
+import { RoundButton } from "../RoundButton";
+
+export const PlayButton: FC<{
+ show?: boolean;
+ active?: boolean;
+ onClick?: () => void;
+ className?: string;
+ delay?: number;
+}> = ({ show = true, active = true, onClick, className, delay = 100 }) => {
+ const { t } = useTranslation();
+ return (
+
+ {active ? : }
+
+ );
+};
+
+const PlayIcon = styled(Play)`
+ aspect-ratio: 13 / 10;
+ width: 100%;
+ ${breakpointMediaQueries.md} {
+ width: 80%;
+ }
+`;
+
+const StopIcon = styled(Stop)`
+ aspect-ratio: 14 / 12;
+ width: 100%;
+ ${breakpointMediaQueries.md} {
+ width: 80%;
+ }
+`;
diff --git a/app/src/components/PlayButton/index.ts b/app/src/components/PlayButton/index.ts
new file mode 100644
index 0000000..3e93b02
--- /dev/null
+++ b/app/src/components/PlayButton/index.ts
@@ -0,0 +1 @@
+export { PlayButton } from "./PlayButton";
diff --git a/app/src/components/PlayController/PlayController.stories.tsx b/app/src/components/PlayController/PlayController.stories.tsx
new file mode 100644
index 0000000..8b423b2
--- /dev/null
+++ b/app/src/components/PlayController/PlayController.stories.tsx
@@ -0,0 +1,125 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { PlayController } from ".";
+
+const meta: Meta = {
+ component: PlayController,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ steps: [
+ {
+ name: "OP",
+ contents: [
+ {
+ duration: 5000,
+ },
+ ],
+ },
+ {
+ contents: [
+ {
+ duration: 5000,
+ },
+ {
+ duration: 5000,
+ },
+ ],
+ },
+ {
+ contents: [
+ {
+ duration: 5000,
+ },
+ {
+ duration: 5000,
+ },
+ {
+ duration: 5000,
+ },
+ ],
+ },
+ {
+ contents: [
+ {
+ duration: 5000,
+ },
+ ],
+ },
+ {
+ name: "ED",
+ contents: [
+ {
+ duration: 5000,
+ },
+ {
+ duration: 5000,
+ },
+ ],
+ },
+ ],
+ },
+};
+
+export const ChangeByProps: Story = {
+ args: {
+ currentMainStepIndex: 2,
+ currentContentStepIndex: 2,
+ steps: [
+ {
+ name: "OP",
+ contents: [
+ {
+ duration: 5000,
+ },
+ ],
+ },
+ {
+ contents: [
+ {
+ duration: 5000,
+ },
+ {
+ duration: 5000,
+ },
+ ],
+ },
+ {
+ contents: [
+ {
+ duration: 5000,
+ },
+ {
+ duration: 5000,
+ },
+ {
+ duration: 5000,
+ },
+ ],
+ },
+ {
+ contents: [
+ {
+ duration: 5000,
+ },
+ ],
+ },
+ {
+ name: "ED",
+ contents: [
+ {
+ duration: 5000,
+ },
+ {
+ duration: 5000,
+ },
+ ],
+ },
+ ],
+ },
+};
diff --git a/app/src/components/PlayController/PlayController.tsx b/app/src/components/PlayController/PlayController.tsx
new file mode 100644
index 0000000..41c7b35
--- /dev/null
+++ b/app/src/components/PlayController/PlayController.tsx
@@ -0,0 +1,444 @@
+import { styled } from "@linaria/react";
+import { useCallback, useEffect, useLayoutEffect, useMemo, useState } from "react";
+
+import { breakpointMediaQueries } from "../../constants";
+import { useRefValue } from "../../hooks";
+import { PlayBack } from "../icons/PlayBack";
+import { PlayNext } from "../icons/PlayNext";
+import { PlayButton } from "../PlayButton";
+import { RoundButton } from "../RoundButton";
+
+export type StepState = "main" | "content";
+
+export type StepItem = {
+ name?: string;
+ duration: number;
+ contents: Omit[];
+};
+
+type PlayControllerProps = {
+ steps: Omit[];
+ currentMainStepIndex?: number;
+ currentContentStepIndex?: number;
+ isPlaying?: boolean;
+ onChangeStep?: (currentMainStepIndex: number, currentContentStepIndex: number) => void;
+ onClickPlayButton?: () => void;
+ onClick?: () => void;
+};
+
+const useSteps = ({
+ steps,
+ currentMainStepIndexProps,
+ currentContentStepIndexProps,
+ isPlaying,
+}: {
+ steps: Omit[];
+ currentMainStepIndexProps?: number;
+ currentContentStepIndexProps?: number;
+ isPlaying: boolean;
+}) => {
+ const [currentMainStepIndex, setCurrentMainStepIndex] = useState(0);
+ const [currentContentStepIndex, setCurrentContentStepIndex] = useState(0);
+
+ const [isConrtolling, setIsControlling] = useState(false);
+
+ const handleControllable = useCallback((cb: () => void) => {
+ setIsControlling(true);
+ setTimeout(cb, 100);
+ }, []);
+
+ const handleNextStep = useCallback(() => {
+ if (currentMainStepIndex === undefined) return;
+ const step = steps[currentMainStepIndex];
+ const nextMainStepIndex = currentMainStepIndex + 1;
+ if (!step) return;
+
+ const updateMainStep = (nextStep: number) => {
+ setCurrentMainStepIndex(Math.max(nextStep, 0));
+ };
+ const updateContentStep = (nextStep: number) => {
+ setCurrentContentStepIndex(Math.max(nextStep, 0));
+ };
+
+ if (currentContentStepIndex === step.contents.length) {
+ handleControllable(() => {
+ updateMainStep(nextMainStepIndex);
+ updateContentStep(0);
+ });
+ return;
+ }
+ if (currentContentStepIndex === undefined) {
+ return;
+ }
+
+ const nextContentStepIndex = currentContentStepIndex + 1;
+ const nextContent = step.contents[nextContentStepIndex];
+ if (!step.contents.length || !nextContent) {
+ handleControllable(() => {
+ updateMainStep(nextMainStepIndex);
+ updateContentStep(0);
+ });
+ return;
+ }
+ if (step.contents.length === nextContentStepIndex) {
+ handleControllable(() => {
+ updateMainStep(currentMainStepIndex);
+ updateContentStep(0);
+ });
+ return;
+ }
+
+ handleControllable(() => {
+ updateContentStep(nextContentStepIndex);
+ });
+ }, [currentMainStepIndex, currentContentStepIndex, steps, handleControllable]);
+
+ const handlePrevStep = useCallback(() => {
+ if (currentMainStepIndex === undefined) return;
+ const step = steps[currentMainStepIndex];
+ const nextMainStepIndex = currentMainStepIndex - 1;
+ const nextStep = steps[nextMainStepIndex];
+ if (!step && !nextStep) return;
+
+ const contentStepLength = 1;
+
+ const updateMainStep = (nextStep: number) => {
+ setCurrentMainStepIndex(Math.max(nextStep, 0));
+ };
+ const updateContentStep = (nextStep: number) => {
+ setCurrentContentStepIndex(Math.max(nextStep, 0));
+ };
+
+ if (steps.length === currentMainStepIndex) {
+ handleControllable(() => {
+ updateMainStep(nextMainStepIndex);
+ updateContentStep(nextStep.contents.length - 1);
+ });
+ return;
+ }
+
+ if (nextStep && currentContentStepIndex === 0) {
+ handleControllable(() => {
+ updateMainStep(nextMainStepIndex);
+ updateContentStep(nextStep.contents.length - 1);
+ });
+ return;
+ }
+ const nextContentStepIndex = currentContentStepIndex - contentStepLength;
+ const nextContent = step?.contents[nextContentStepIndex];
+ if (!nextContent) {
+ handleControllable(() => {
+ updateMainStep(currentMainStepIndex - 1);
+ updateContentStep(0);
+ });
+ return;
+ }
+
+ handleControllable(() => {
+ updateContentStep(nextContentStepIndex);
+ });
+ }, [currentMainStepIndex, currentContentStepIndex, steps, handleControllable]);
+
+ useEffect(() => {
+ if (currentMainStepIndexProps === undefined && currentContentStepIndexProps === undefined)
+ return;
+ handleControllable(() => {
+ if (currentMainStepIndexProps !== undefined) {
+ setCurrentMainStepIndex(currentMainStepIndexProps);
+ }
+ if (currentContentStepIndexProps !== undefined) {
+ setCurrentContentStepIndex(currentContentStepIndexProps);
+ }
+ });
+ }, [currentMainStepIndexProps, currentContentStepIndexProps, handleControllable]);
+
+ useEffect(() => {
+ if (currentMainStepIndex === undefined || !isPlaying) return;
+
+ const step = steps[currentMainStepIndex];
+ if (!step) return;
+ const contents = step.contents;
+ const content =
+ currentContentStepIndex !== undefined ? contents[currentContentStepIndex] : undefined;
+
+ let timer: number;
+
+ if (content) {
+ timer = window.setTimeout(() => {
+ if (
+ currentContentStepIndex !== undefined &&
+ currentContentStepIndex + 1 === contents.length
+ ) {
+ setCurrentMainStepIndex(i => (i ?? 0) + 1);
+ setCurrentContentStepIndex(0);
+ } else {
+ setCurrentContentStepIndex(i => (contents.length - 1 !== i ? (i ?? 0) + 1 : i));
+ }
+ }, content.duration);
+ }
+
+ return () => {
+ window.clearTimeout(timer);
+ };
+ }, [currentContentStepIndex, currentMainStepIndex, steps, isPlaying]);
+
+ useEffect(() => {
+ const timer = window.setTimeout(() => {
+ setIsControlling(false);
+ }, 500);
+ return () => window.clearTimeout(timer);
+ }, [isConrtolling]);
+
+ return {
+ currentMainStepIndex,
+ currentContentStepIndex,
+ handleNextStep,
+ handlePrevStep,
+ isConrtolling,
+ };
+};
+
+export const PlayController: React.FC = ({
+ steps,
+ currentMainStepIndex: currentMainStepIndexProps,
+ currentContentStepIndex: currentContentStepIndexProps,
+ isPlaying: initialIsPlaying = true,
+ onChangeStep,
+ onClickPlayButton,
+ onClick,
+}) => {
+ const [isPlaying, setIsPlaying] = useState(initialIsPlaying);
+ const [initialized, setInitialized] = useState(false);
+
+ useEffect(() => {
+ setIsPlaying(initialIsPlaying);
+ }, [initialIsPlaying]);
+
+ const handleOnPlay = useCallback(() => {
+ setIsPlaying(v => !v);
+ onClickPlayButton?.();
+ }, [onClickPlayButton]);
+
+ const {
+ currentMainStepIndex,
+ currentContentStepIndex,
+ isConrtolling,
+ handleNextStep,
+ handlePrevStep,
+ } = useSteps({
+ steps,
+ currentMainStepIndexProps,
+ currentContentStepIndexProps,
+ isPlaying,
+ });
+
+ const handleOnClickPlayButton = useCallback(() => {
+ onClick?.();
+ handleOnPlay();
+ }, [handleOnPlay, onClick]);
+ const handleOnClickPlayNextButton = useCallback(() => {
+ onClick?.();
+ handleNextStep();
+ }, [handleNextStep, onClick]);
+ const handleOnClickPlayPrevButton = useCallback(() => {
+ onClick?.();
+ handlePrevStep();
+ }, [handlePrevStep, onClick]);
+
+ const onChangeStepRef = useRefValue(onChangeStep);
+ const initializedRef = useRefValue(initialized);
+ useEffect(() => {
+ if (!initializedRef.current) return;
+ onChangeStepRef.current?.(currentMainStepIndex, currentContentStepIndex);
+ }, [onChangeStepRef, currentMainStepIndex, currentContentStepIndex, initializedRef]);
+
+ const currentContents = useMemo(
+ () => steps[currentMainStepIndex]?.contents ?? [],
+ [steps, currentMainStepIndex],
+ );
+
+ const progress = useMemo(() => {
+ const playing = !isConrtolling && isPlaying;
+ const addtional = playing ? 1 : 0;
+ const currentMainStepProgress =
+ currentContents.length <= 1 ? currentMainStepIndex + addtional : currentMainStepIndex;
+ const movementOfProgress = currentContentStepIndex + addtional;
+ const currentContentStepProgress =
+ currentContents.length > 1 ? movementOfProgress / currentContents.length : 0;
+ const next = currentMainStepProgress + currentContentStepProgress;
+ return initialized ? Math.max(Math.min(next / steps.length, 1), 0) : 0;
+ }, [
+ currentMainStepIndex,
+ currentContentStepIndex,
+ steps,
+ currentContents,
+ isPlaying,
+ isConrtolling,
+ initialized,
+ ]);
+
+ const currentDuration = useMemo(() => {
+ const currentContent = currentContents[currentContentStepIndex];
+ return currentContent?.duration ?? 0;
+ }, [currentContentStepIndex, currentContents]);
+
+ useLayoutEffect(() => {
+ requestAnimationFrame(() => {
+ setInitialized(true);
+ });
+ }, []);
+
+ return (
+
+
+
+
+
+
+
+
+
+
+ {steps.map((mainStep, i) => (
+
+ {mainStep.name ?? String(i).padStart(2, "0")}
+
+ {mainStep.contents.map((_, i) => (
+
+ ))}
+
+
+ ))}
+
+
+
+ );
+};
+
+const Root = styled.div`
+ display: flex;
+ width: 100%;
+ align-items: center;
+`;
+
+const PlayBackIcon = styled(PlayBack)`
+ aspect-ratio: 13 / 18;
+ width: 100%;
+ margin-left: -5px;
+ ${breakpointMediaQueries.md} {
+ width: 14px;
+ margin-left: -3px;
+ }
+`;
+const PlayNextIcon = styled(PlayNext)`
+ aspect-ratio: 13 / 18;
+ width: 100%;
+ margin-right: -5px;
+ ${breakpointMediaQueries.md} {
+ width: 14px;
+ margin-right: -3px;
+ }
+`;
+
+const ButtonController = styled.div`
+ display: flex;
+ gap: 10px;
+ margin-right: 28px;
+
+ ${breakpointMediaQueries.md} {
+ margin-right: 10px;
+ gap: 5px;
+ }
+`;
+
+const ProgressRoot = styled.div`
+ position: relative;
+ height: 36px;
+ width: 100%;
+`;
+
+const ProgressBarBase = styled.div`
+ position: absolute;
+ left: 0;
+ right: 0;
+ bottom: 5px;
+ height: 10px;
+ background: #fff;
+ box-sizing: border-box;
+`;
+
+const ProgressBarActual = styled(ProgressBarBase)<{ duration: number }>`
+ --duration: ${({ duration }) => `${duration}ms`};
+ transition: transform var(--duration) linear;
+ transform-origin: left;
+ transform: scaleX(0);
+ background: #ebf000;
+ box-sizing: border-box;
+`;
+
+const ProgressGrid = styled.div<{ mainStepLength: number }>`
+ --main-steps: ${({ mainStepLength }) => mainStepLength};
+ display: grid;
+ grid-template-columns: repeat(var(--main-steps), 1fr);
+ position: relative;
+ width: 100%;
+ height: 100%;
+`;
+
+const MainStep = styled.div`
+ --step-box-width: 18px;
+ --step-box-height: 14px;
+
+ display: flex;
+ position: relative;
+ box-sizing: border-box;
+ padding-left: var(--step-box-width);
+ padding-top: var(--step-box-height);
+ border-left: 1px solid #463c64;
+ align-items: end;
+`;
+
+const MainStepBox = styled.div`
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ position: absolute;
+ left: calc(var(--step-box-width) / 2 * -1);
+ top: 0;
+ width: var(--step-box-width);
+ height: var(--step-box-height);
+ background-color: #463c64;
+ font-size: 10px;
+ color: #ffffff;
+`;
+
+const MainStepGrid = styled.div<{ contentStepLength: number }>`
+ --content-steps: ${({ contentStepLength }) => contentStepLength};
+ display: grid;
+ grid-template-columns: repeat(var(--content-steps), 1fr);
+ position: relative;
+ margin-left: calc(var(--step-box-width) * -1);
+ width: calc(100% + var(--step-box-width));
+ height: 10px;
+ margin-bottom: 5px;
+`;
+
+const ContentStep = styled.div`
+ border-right: 1px solid #463c64;
+ &:nth-last-of-type(1) {
+ border-right: none;
+ }
+`;
diff --git a/app/src/components/PlayController/index.ts b/app/src/components/PlayController/index.ts
new file mode 100644
index 0000000..609220e
--- /dev/null
+++ b/app/src/components/PlayController/index.ts
@@ -0,0 +1 @@
+export * from "./PlayController";
diff --git a/app/src/components/Popover/Popover.tsx b/app/src/components/Popover/Popover.tsx
new file mode 100644
index 0000000..047c9f5
--- /dev/null
+++ b/app/src/components/Popover/Popover.tsx
@@ -0,0 +1,37 @@
+import { useRef } from "react";
+import { DismissButton, Overlay, usePopover } from "react-aria";
+import type { AriaPopoverProps } from "react-aria";
+import type { OverlayTriggerState } from "react-stately";
+
+interface PopoverProps extends Omit {
+ children: React.ReactNode;
+ state: OverlayTriggerState;
+}
+
+export const Popover = ({ children, state, ...props }: PopoverProps) => {
+ const popoverRef = useRef(null);
+ const { popoverProps, underlayProps } = usePopover(
+ {
+ ...props,
+ popoverRef,
+ },
+ state,
+ );
+
+ return (
+
+
+
+
+ {children}
+
+
+
+ );
+};
diff --git a/app/src/components/Popover/index.ts b/app/src/components/Popover/index.ts
new file mode 100644
index 0000000..7ce91dd
--- /dev/null
+++ b/app/src/components/Popover/index.ts
@@ -0,0 +1 @@
+export { Popover } from "./Popover";
diff --git a/app/src/components/RoundButton/RoundButton.tsx b/app/src/components/RoundButton/RoundButton.tsx
new file mode 100644
index 0000000..b2ce74c
--- /dev/null
+++ b/app/src/components/RoundButton/RoundButton.tsx
@@ -0,0 +1,64 @@
+import { styled } from "@linaria/react";
+import { FC, PropsWithChildren } from "react";
+
+import { breakpointMediaQueries } from "../../constants";
+import { Button } from "../Button";
+
+export const RoundButton: FC<
+ PropsWithChildren<{
+ show?: boolean;
+ onClick?: () => void;
+ className?: string;
+ delay?: number;
+ }>
+> = ({ show = true, onClick, className, delay = 100, children }) => {
+ return (
+
+ {children}
+
+ );
+};
+
+const Root = styled(Button)<{ delay: number }>`
+ display: flex;
+ flex-shrink: 0;
+ align-items: center;
+ justify-content: center;
+ border-radius: 20px;
+ border: none;
+ width: 40px;
+ height: 40px;
+ pointer-events: auto;
+
+ opacity: 0;
+ animation: 300ms ease-out 0s fadein;
+ animation-fill-mode: forwards;
+ animation-delay: ${({ delay }) => `${delay}ms`};
+ @keyframes fadein {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+
+ &.hide {
+ opacity: 1;
+ animation: 300ms ease-out 0s fadeout;
+ animation-fill-mode: forwards;
+ @keyframes fadeout {
+ from {
+ opacity: 1;
+ }
+ to {
+ opacity: 0;
+ }
+ }
+ }
+
+ ${breakpointMediaQueries.sm} {
+ height: 30px;
+ width: 30px;
+ }
+`;
diff --git a/app/src/components/RoundButton/index.ts b/app/src/components/RoundButton/index.ts
new file mode 100644
index 0000000..cd3b923
--- /dev/null
+++ b/app/src/components/RoundButton/index.ts
@@ -0,0 +1 @@
+export { RoundButton } from "./RoundButton";
diff --git a/app/src/components/SPnavigation/SPnavigation.tsx b/app/src/components/SPnavigation/SPnavigation.tsx
new file mode 100644
index 0000000..a3e88c0
--- /dev/null
+++ b/app/src/components/SPnavigation/SPnavigation.tsx
@@ -0,0 +1,110 @@
+import { styled } from "@linaria/react";
+import { FC } from "react";
+
+import { breakpointMediaQueries } from "../../constants";
+import { useTranslation } from "../../i18n/hooks";
+import { Close } from "../icons/Close";
+import { Select } from "../Select";
+
+type SPnavigationProps = {
+ areas: { id: string; label: string }[];
+ languages: { id: string; label: string }[];
+ selectedArea?: string;
+ selectedLanguage: string;
+ onCloseSpNav: () => void;
+ onChangeArea?: (area: string) => void;
+ onChangeLanguage?: (lang: string) => void;
+ onClick?: () => void;
+};
+
+export const SPnavigation: FC = ({
+ languages,
+ areas,
+ selectedArea,
+ selectedLanguage,
+ onCloseSpNav,
+ onChangeArea,
+ onChangeLanguage,
+ onClick,
+}) => {
+ const { t } = useTranslation();
+
+ return (
+
+ {t("content_navigation_header")}
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+const Header = styled.header`
+ width: 100%;
+ background: rgba(0, 0, 0, 0);
+ display: flex;
+ align-items: center;
+ padding: 30px;
+ box-sizing: border-box;
+ gap: 0 20px;
+
+ ${breakpointMediaQueries.md} {
+ padding: 20px;
+ }
+`;
+
+const Title = styled.h1`
+ display: flex;
+ flex: 1;
+ margin: 0;
+ font-size: 1.5em;
+ color: #ffffff;
+ min-width: 300px;
+
+ ${breakpointMediaQueries.md} {
+ font-size: 0.8em;
+ }
+`;
+
+const SelectWrapper = styled.div`
+ pointer-events: auto;
+`;
+
+const CloseButton = styled.button`
+ display: none;
+
+ ${breakpointMediaQueries.md} {
+ position: fixed;
+ top: 20px;
+ right: 20px;
+ display: block;
+ cursor: pointer;
+ background: transparent;
+ color: white;
+ border: none;
+ pointer-events: auto;
+ user-select: none;
+ & > * {
+ user-drag: none;
+ }
+ }
+`;
diff --git a/app/src/components/SPnavigation/index.ts b/app/src/components/SPnavigation/index.ts
new file mode 100644
index 0000000..3f15754
--- /dev/null
+++ b/app/src/components/SPnavigation/index.ts
@@ -0,0 +1 @@
+export { SPnavigation } from "./SPnavigation";
diff --git a/app/src/components/SceneDescription/SceneDescription.stories.tsx b/app/src/components/SceneDescription/SceneDescription.stories.tsx
new file mode 100644
index 0000000..61cf189
--- /dev/null
+++ b/app/src/components/SceneDescription/SceneDescription.stories.tsx
@@ -0,0 +1,21 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { SceneDescription } from ".";
+
+const meta: Meta = {
+ component: SceneDescription,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ content: "東京都内で最大規模の被害が想定される地震が「都心南部直下地震」です。",
+ source: {
+ title: "首都直下地震等による東京の被害想定報告書",
+ url: "https://www.bousai.metro.tokyo.lg.jp/_res/projects/default_project/_page_/001/021/571/20220525/n/002n.pdf",
+ },
+ },
+};
diff --git a/app/src/components/SceneDescription/SceneDescription.tsx b/app/src/components/SceneDescription/SceneDescription.tsx
new file mode 100644
index 0000000..b5d913d
--- /dev/null
+++ b/app/src/components/SceneDescription/SceneDescription.tsx
@@ -0,0 +1,74 @@
+import { styled } from "@linaria/react";
+import { useMemo } from "react";
+import { useTranslation } from "react-i18next";
+
+import { breakpointMediaQueries } from "../../constants";
+import { splitN, NavigationState, MainScenes } from "../../utils";
+
+export type SceneDescriptionProps = {
+ content: string;
+ source?: { title?: string; url?: string };
+ color?: string;
+ lineHeight?: string;
+ navigationState: NavigationState;
+};
+
+export const SceneDescription: React.FC = ({
+ content,
+ source,
+ color = "#463C64",
+ lineHeight = "200%",
+ navigationState,
+}) => {
+ const { t, i18n } = useTranslation();
+ const isEn = i18n.language === "en";
+ const { currentScene } = navigationState;
+ const shouldSmallFont = isEn && currentScene === MainScenes.Scene5;
+
+ const brContents = useMemo(() => splitN(content), [content]);
+
+ return (
+
+
+ {brContents}
+
+ {source && source.title && source.url && (
+
+ {t("Source: ")}
+
+ {source.title}
+
+
+ )}
+
+ );
+};
+
+const Root = styled.div<{ color: string }>`
+ max-width: 360px;
+ color: ${({ color }) => color};
+ background-color: rgba(255, 255, 255, 0.7);
+ padding: 10px;
+ box-sizing: border-box;
+`;
+
+const Content = styled.div<{ lineHeight: string; shouldSmallFont: boolean }>`
+ font-size: 18px;
+ line-height: ${({ lineHeight }) => lineHeight};
+ font-weight: lighter;
+ ${breakpointMediaQueries.md} {
+ font-size: ${({ shouldSmallFont }) => (shouldSmallFont ? 8 : 10)}px;
+ line-height: 120%;
+ }
+`;
+const Source = styled.div`
+ font-size: 14px;
+ ${breakpointMediaQueries.md} {
+ font-size: 10px;
+ line-height: 130%;
+ }
+`;
+const Link = styled.a`
+ color: inherit;
+ pointer-events: auto;
+`;
diff --git a/app/src/components/SceneDescription/index.ts b/app/src/components/SceneDescription/index.ts
new file mode 100644
index 0000000..eaaa00c
--- /dev/null
+++ b/app/src/components/SceneDescription/index.ts
@@ -0,0 +1 @@
+export { SceneDescription } from "./SceneDescription";
diff --git a/app/src/components/SceneIndicator/SceneIndicator.tsx b/app/src/components/SceneIndicator/SceneIndicator.tsx
new file mode 100644
index 0000000..1e27a40
--- /dev/null
+++ b/app/src/components/SceneIndicator/SceneIndicator.tsx
@@ -0,0 +1,50 @@
+import { styled } from "@linaria/react";
+import { FC } from "react";
+
+import { breakpointMediaQueries } from "../../constants";
+import { MainScenes, NavigationState } from "../../utils/types/common";
+
+type SceneIndicatorProps = {
+ navigationState: NavigationState;
+};
+
+export const SceneIndicator: FC = ({ navigationState }) => {
+ return (
+
+ SCENE
+
+ {navigationState.currentScene.slice(6)}
+ / {String(Object.values(MainScenes).length).padStart(2, "0")}
+
+
+ );
+};
+
+const Root = styled.div`
+ display: flex;
+ flex-direction: column;
+ align-items: flex-start;
+
+ ${breakpointMediaQueries.md} {
+ display: none;
+ }
+`;
+
+const SceneLabel = styled.span`
+ font-size: 0.8em;
+ color: #ffffff;
+ font-weight: bold;
+`;
+
+const SceneNumber = styled.span`
+ font-size: 84px;
+ color: #ffffff;
+ font-weight: bold;
+ line-height: 1;
+`;
+
+const SceneTotal = styled.span`
+ font-size: 34px;
+ color: #ffffff;
+ margin-left: 5px;
+`;
diff --git a/app/src/components/SceneIndicator/index.ts b/app/src/components/SceneIndicator/index.ts
new file mode 100644
index 0000000..643007a
--- /dev/null
+++ b/app/src/components/SceneIndicator/index.ts
@@ -0,0 +1 @@
+export { SceneIndicator } from "./SceneIndicator";
diff --git a/app/src/components/SceneMenuModal/SceneListModal.tsx b/app/src/components/SceneMenuModal/SceneListModal.tsx
new file mode 100644
index 0000000..a249420
--- /dev/null
+++ b/app/src/components/SceneMenuModal/SceneListModal.tsx
@@ -0,0 +1,198 @@
+import { styled } from "@linaria/react";
+import { FC, ReactElement } from "react";
+
+import { breakPoint, breakpointMediaQueries, TITLE_FONT_FAMILY } from "../../constants";
+import { useHideAnimation, useMediaQuery } from "../../hooks";
+import { CloseButton } from "../CloseButton";
+import { FadeAnimation } from "../FadeAnimation/FadeAnimation";
+
+export type SceneMenuItem = { id: string; name: string; disabled?: boolean };
+
+type Props = {
+ show?: boolean;
+ list: (SceneMenuItem & { children?: SceneMenuItem[] })[];
+ onClickItem?: (item: SceneMenuItem) => void;
+ onClose?: () => void;
+ renderHeader?: () => ReactElement | null;
+ renderFooter?: () => ReactElement | null;
+ zIndex: number;
+};
+
+const DURATION = 300;
+
+export const SceneMenuModal: FC = ({
+ show = true,
+ list,
+ zIndex,
+ onClickItem,
+ onClose,
+ renderHeader,
+ renderFooter,
+}) => {
+ const { value: showAnimation, hide } = useHideAnimation(show, DURATION);
+ const isBreakpointMd = useMediaQuery(`(max-width: ${breakPoint.md}px)`);
+
+ if (!showAnimation) return;
+
+ return (
+
+
+ {renderHeader?.()}
+
+
+
+
+ {list.map(item => (
+
+ onClickItem?.(item)}>
+ {item.name}
+
+ {item.children?.length && (
+
+ {item.children.map(child => (
+ onClickItem?.(child)}>
+ {child.name}
+
+ ))}
+
+ )}
+
+ ))}
+
+ {renderFooter?.()}
+
+
+ );
+};
+
+const Root = styled(FadeAnimation)<{ zIndex: number }>`
+ position: fixed;
+ inset: 0;
+ background: rgba(70, 60, 100, 0.9);
+ color: #fff;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ font-family: ${TITLE_FONT_FAMILY};
+ overflow-y: auto;
+ z-index: ${({ zIndex }) => zIndex};
+`;
+
+const Container = styled.div`
+ position: relative;
+ width: 80vw;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ box-sizing: border-box;
+ padding: 0 20px;
+
+ ${breakpointMediaQueries.md} {
+ align-items: start;
+ flex-direction: column;
+ width: auto;
+ height: 100%;
+ }
+`;
+
+const List = styled.ul`
+ list-style: none;
+ padding: 0;
+ margin: 0;
+ display: flex;
+ flex-direction: column;
+ gap: 30px 0;
+
+ ${breakpointMediaQueries.md} {
+ gap: 10px 0;
+ }
+`;
+
+const ListItem = styled.li`
+ font-size: 25px;
+
+ ${breakpointMediaQueries.md} {
+ font-size: 20px;
+ }
+`;
+
+const ChildrenList = styled(List)`
+ margin-top: 30px
+ gap: 20px 0;
+ padding-left: 50px;
+
+ ${breakpointMediaQueries.md} {
+ padding-left: 20px;
+ gap: 10px 0;
+ margin-top: 10px
+ }
+`;
+
+const ChildListItem = styled(ListItem)`
+ display: flex;
+ font-size: 20px;
+ gap: 0 12px;
+ align-items: center;
+ cursor: pointer;
+ &:before {
+ content: "";
+ display: block;
+ width: 30px;
+ height: 1px;
+ background: #fff;
+ margin-right: 12px;
+ }
+
+ ${breakpointMediaQueries.md} {
+ font-size: 16px;
+ }
+`;
+
+const ListItemButton = styled.button`
+ cursor: pointer;
+ background: transparent;
+ border: none;
+ font-size: inherit;
+ color: inherit;
+ font-family: inherit;
+ text-align: left;
+
+ @media (hover: hover) {
+ &:hover {
+ color: #00bebe;
+ }
+ }
+ &:active {
+ color: #5a2dc5;
+ }
+
+ &:disabled {
+ cursor: auto;
+ @media (hover: hover) {
+ &:hover {
+ color: #fff;
+ }
+ }
+ &:active {
+ color: #fff;
+ }
+ }
+`;
+
+const CloseButtonContainer = styled.div`
+ position: absolute;
+ top: 0;
+ right: 0;
+ transform: translateY(-50%);
+ ${breakpointMediaQueries.md} {
+ position: fixed;
+ transform: translateY(0%);
+ top: 20px;
+ right: 20px;
+ }
+`;
diff --git a/app/src/components/SceneMenuModal/SceneMenuModal.stories.tsx b/app/src/components/SceneMenuModal/SceneMenuModal.stories.tsx
new file mode 100644
index 0000000..cb6b43c
--- /dev/null
+++ b/app/src/components/SceneMenuModal/SceneMenuModal.stories.tsx
@@ -0,0 +1,98 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { SceneMenuModal } from ".";
+
+const meta: Meta = {
+ component: SceneMenuModal,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ show: true,
+ list: [
+ {
+ id: "イントロダクション",
+ name: "イントロダクション",
+ },
+ {
+ id: "都心南部 / 多摩東部直下地震",
+ name: "都心南部 / 多摩東部直下地震",
+ children: [
+ {
+ id: "震度分布",
+ name: "震度分布",
+ },
+ {
+ id: "倒壊棟数分布",
+ name: "倒壊棟数分布",
+ },
+ {
+ id: "焼失棟数分布",
+ name: "焼失棟数分布",
+ },
+ {
+ id: "液状化分布",
+ name: "液状化分布",
+ },
+ ],
+ },
+ {
+ id: "未来のために",
+ name: "未来のために",
+ },
+ ],
+ },
+};
+
+export const Render: Story = {
+ args: {
+ show: true,
+ renderHeader: () => (
+
+ ),
+ renderFooter: () => (
+
+ ),
+ list: [
+ {
+ id: "イントロダクション",
+ name: "イントロダクション",
+ },
+ {
+ id: "都心南部 / 多摩東部直下地震",
+ name: "都心南部 / 多摩東部直下地震",
+ children: [
+ {
+ id: "震度分布",
+ name: "震度分布",
+ },
+ {
+ id: "倒壊棟数分布",
+ name: "倒壊棟数分布",
+ },
+ {
+ id: "焼失棟数分布",
+ name: "焼失棟数分布",
+ },
+ {
+ id: "液状化分布",
+ name: "液状化分布",
+ },
+ ],
+ },
+ {
+ id: "未来のために",
+ name: "未来のために",
+ },
+ ],
+ },
+};
diff --git a/app/src/components/SceneMenuModal/index.ts b/app/src/components/SceneMenuModal/index.ts
new file mode 100644
index 0000000..6e40849
--- /dev/null
+++ b/app/src/components/SceneMenuModal/index.ts
@@ -0,0 +1 @@
+export * from "./SceneListModal";
diff --git a/app/src/components/SceneNavigation/SceneNavigation.stories.tsx b/app/src/components/SceneNavigation/SceneNavigation.stories.tsx
new file mode 100644
index 0000000..712afd5
--- /dev/null
+++ b/app/src/components/SceneNavigation/SceneNavigation.stories.tsx
@@ -0,0 +1,31 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { MainScenes, NavigationState, PageName, SubScenes } from "../../utils/types/common";
+
+import { SceneNavigation } from ".";
+
+const meta: Meta = {
+ component: SceneNavigation,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+const mockNavigationState: NavigationState = {
+ currentPage: PageName.Opening,
+ currentScene: MainScenes.Scene1,
+ currentSubScene: SubScenes.Tama,
+ currentSceneContentIndex: 0,
+};
+
+const mockSetCurrentScene = (scene: MainScenes) => {
+ console.log("Scene changed to: ", scene);
+};
+
+export const Default: Story = {
+ args: {
+ navigationState: mockNavigationState,
+ setCurrentScene: mockSetCurrentScene,
+ },
+};
diff --git a/app/src/components/SceneNavigation/SceneNavigation.tsx b/app/src/components/SceneNavigation/SceneNavigation.tsx
new file mode 100644
index 0000000..5678b4d
--- /dev/null
+++ b/app/src/components/SceneNavigation/SceneNavigation.tsx
@@ -0,0 +1,122 @@
+import { styled } from "@linaria/react";
+import { FC } from "react";
+
+import { breakpointMediaQueries } from "../../constants";
+import { useTranslation } from "../../i18n/hooks";
+import { splitN } from "../../utils";
+import { MainScenes, NavigationState } from "../../utils/types/common";
+
+type SceneNavigationProps = {
+ navigationState: NavigationState;
+ setCurrentScene: (scene: MainScenes) => void;
+ onClick?: () => void;
+ resetTimer?: number;
+ onNextScene?: () => void;
+ isSpNavOpen: boolean;
+ handleSpNavState: () => void;
+};
+
+export const SceneNavigation: FC = ({
+ navigationState,
+ setCurrentScene,
+ onClick,
+ isSpNavOpen,
+ handleSpNavState,
+}) => {
+ const { t } = useTranslation();
+
+ return (
+ <>
+
+
+ {!isSpNavOpen && }
+
+ {Object.values(MainScenes).map(scene => (
+ {
+ setCurrentScene(scene);
+ if (isSpNavOpen) handleSpNavState();
+ onClick?.();
+ }}
+ isSpNavOpen={isSpNavOpen}>
+ {splitN(t(scene))}
+
+ ))}
+
+
+ >
+ );
+};
+
+const Spacer = styled.div``;
+
+const SceneSelector = styled.div<{ isSpNavOpen: boolean }>`
+ display: flex;
+ flex-direction: column;
+ align-items: flex-start;
+ gap: 15px;
+ position: relative;
+ padding-left: ${({ isSpNavOpen }) => (isSpNavOpen ? `0px` : `20px`)};
+
+ ${breakpointMediaQueries.md} {
+ padding-left: ${({ isSpNavOpen }) => (isSpNavOpen ? `0px` : `10px`)};
+ gap: ${({ isSpNavOpen }) => (isSpNavOpen ? `15px` : `5px`)};
+ }
+`;
+
+const SceneButton = styled.button<{
+ isSelected: boolean;
+ isSpNavOpen: boolean;
+}>`
+ pointer-events: auto;
+ background: none;
+ border: none;
+ color: ${props => (props.isSelected ? "#ffffff" : "#00BEBE")};
+ font-weight: ${props => (props.isSelected ? "bold" : "normal")};
+ background-color: ${props => (props.isSelected ? "#00BEBE" : "rgba(255, 255, 255, 0.7)")};
+ text-align: left;
+ padding: 5px;
+ font-size: 0.8em;
+ cursor: pointer;
+ display: flex;
+ align-items: center;
+ justify-content: flex-start;
+ box-sizing: border-box;
+
+
+ @media (hover: hover) {
+ &:hover {
+ text-decoration: underline;
+ }
+ }
+
+ &:focus {
+ outline: none;
+ }
+
+ ${breakpointMediaQueries.md} {
+ font-size: ${props => (props.isSpNavOpen ? "15px" : "8px")};
+ padding: 5px;
+ margin: 2px;
+ width: ${props => (props.isSpNavOpen ? "300px" : "150px")};
+ height: ${props => (props.isSpNavOpen ? "100%" : "30px")};
+
+ span {
+ display: inline;
+ padding: 2px
+ box-decoration-break: clone;
+ -webkit-box-decoration-break: clone;
+ }
+ }
+`;
+
+const BaseLine = styled.div`
+ position: absolute;
+ top: 0;
+ left: 4px;
+ width: 4px;
+ background-color: #ffffff;
+ height: 100%;
+`;
diff --git a/app/src/components/SceneNavigation/index.ts b/app/src/components/SceneNavigation/index.ts
new file mode 100644
index 0000000..785592b
--- /dev/null
+++ b/app/src/components/SceneNavigation/index.ts
@@ -0,0 +1 @@
+export { SceneNavigation } from "./SceneNavigation";
diff --git a/app/src/components/ScrollableContents/ScrollableContents.stories.tsx b/app/src/components/ScrollableContents/ScrollableContents.stories.tsx
new file mode 100644
index 0000000..7149b3e
--- /dev/null
+++ b/app/src/components/ScrollableContents/ScrollableContents.stories.tsx
@@ -0,0 +1,21 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { ScrollableContents } from ".";
+
+const meta: Meta = {
+ component: ScrollableContents,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ children: [
+
+
コンテンツ1
+ ,
+ ],
+ },
+};
diff --git a/app/src/components/ScrollableContents/ScrollableContents.tsx b/app/src/components/ScrollableContents/ScrollableContents.tsx
new file mode 100644
index 0000000..0d439b9
--- /dev/null
+++ b/app/src/components/ScrollableContents/ScrollableContents.tsx
@@ -0,0 +1,72 @@
+import { styled } from "@linaria/react";
+import { FC, useRef, useEffect, MutableRefObject } from "react";
+
+type ScrollableContentsProps = {
+ children: React.ReactElement[];
+ onPageTransition?: (pageIndex: number) => void;
+ ref?: MutableRefObject;
+ updateKey?: string;
+};
+
+export const ScrollableContents: FC = ({ children, ref, updateKey }) => {
+ const containerRef = useRef(null);
+ // const lastNotifiedIndexRef = useRef(null);
+
+ useEffect(() => {
+ const container = containerRef.current;
+ if (!container) return;
+ container.scrollTo(0, 0);
+ // const handleScroll = () => {
+ // if (containerRef.current) {
+ // const container = containerRef.current;
+ // for (let i = 0; i < children.length; i++) {
+ // const contentElement = container.children[i] as HTMLElement;
+
+ // if (
+ // contentElement.offsetTop <= container.scrollTop &&
+ // contentElement.offsetTop + contentElement.offsetHeight > container.scrollTop
+ // // Determines the Content located at the top edge of the Scrollable.
+ // ) {
+ // if (i !== lastNotifiedIndexRef.current) {
+ // onPageTransition(i);
+ // lastNotifiedIndexRef.current = i;
+ // }
+ // break;
+ // }
+ // }
+ // }
+ // };
+
+ // if (containerRef.current) {
+ // containerRef.current.addEventListener("scroll", handleScroll);
+ // }
+
+ // return () => {
+ // if (container) {
+ // container.removeEventListener("scroll", handleScroll);
+ // }
+ // };
+ }, [updateKey]);
+
+ return (
+ {
+ containerRef.current = e;
+ if (ref) {
+ ref.current = e;
+ }
+ }}>
+ {children.map((Content, index) => (
+ {Content}
+ ))}
+
+ );
+};
+
+const Scrollable = styled.div`
+ overflow-y: auto;
+ max-height: 100%;
+ height: 100%;
+ padding: 20px 30px;
+ box-sizing: border-box;
+`;
diff --git a/app/src/components/ScrollableContents/index.ts b/app/src/components/ScrollableContents/index.ts
new file mode 100644
index 0000000..d9e1aa8
--- /dev/null
+++ b/app/src/components/ScrollableContents/index.ts
@@ -0,0 +1 @@
+export { ScrollableContents } from "./ScrollableContents";
diff --git a/app/src/components/Select/ListBox.tsx b/app/src/components/Select/ListBox.tsx
new file mode 100644
index 0000000..e77fbf4
--- /dev/null
+++ b/app/src/components/Select/ListBox.tsx
@@ -0,0 +1,68 @@
+import { styled } from "@linaria/react";
+import { FC, RefObject, useRef } from "react";
+import { useListBox, useOption, AriaListBoxOptions } from "react-aria";
+import { SelectState, Node } from "react-stately";
+
+type Props = {
+ state: SelectState;
+ listBoxRef?: RefObject;
+ onClick?: () => void;
+} & AriaListBoxOptions;
+
+export const ListBox: FC = ({ state, ...props }) => {
+ const ref = useRef(null);
+ const { listBoxRef = ref } = props;
+ const { listBoxProps } = useListBox(props, state, listBoxRef);
+
+ return (
+
+ {[...state.collection].map(item => (
+
+ ))}
+
+ );
+};
+
+function Option({ item, state }: { item: Node; state: SelectState }) {
+ const ref = useRef(null);
+ const { optionProps, isSelected, isFocused, isDisabled } = useOption(
+ { key: item.key },
+ state,
+ ref,
+ );
+
+ return (
+ -
+ {item.rendered}
+
+ );
+}
+
+const Item = styled.li<{
+ isFocued: boolean;
+ isSelected: boolean;
+ isDisabled: boolean;
+}>`
+ background: ${({ isSelected, isFocued }) =>
+ isSelected ? "#00bebe" : isFocued ? "#eeeeee" : "#ffffff"};
+ width: 250px;
+ padding: 15px 30px;
+ box-sizing: border-box;
+ color: #463c64;
+`;
diff --git a/app/src/components/Select/Select.tsx b/app/src/components/Select/Select.tsx
new file mode 100644
index 0000000..de8321a
--- /dev/null
+++ b/app/src/components/Select/Select.tsx
@@ -0,0 +1,108 @@
+import { styled } from "@linaria/react";
+import { FC, Key, useCallback, useRef } from "react";
+import { useSelect, HiddenSelect, AriaSelectOptions, useButton } from "react-aria";
+import { useTranslation } from "react-i18next";
+import { useSelectState, SelectStateOptions, Item } from "react-stately";
+
+import { Popover } from "../Popover";
+
+import { ListBox } from "./ListBox";
+
+type Props = {
+ label: string;
+ selectedItem?: string;
+ items: { id: string; label: string }[];
+ onChange?: (id: string) => void;
+ onClick?: () => void;
+ shouldReplace?: boolean;
+};
+
+export const Select: FC = ({
+ label,
+ selectedItem,
+ items,
+ onChange,
+ onClick,
+ shouldReplace,
+}) => {
+ const { t } = useTranslation();
+
+ const handleSelectionChange = useCallback(
+ (key: Key) => {
+ if (typeof key === "string") {
+ onChange?.(key);
+ }
+ },
+ [onChange],
+ );
+
+ return (
+
+ {items.map(item => (
+ - {t(item.id)}
+ ))}
+
+ );
+};
+
+const SelectInner: FC<
+ SelectStateOptions &
+ AriaSelectOptions & {
+ onClick?: () => void;
+ shouldReplace?: boolean;
+ }
+> = ({ onClick, shouldReplace, ...props }) => {
+ const state = useSelectState(props);
+
+ const ref = useRef(null);
+ const { triggerProps, valueProps, menuProps } = useSelect(props, state, ref);
+ const { buttonProps } = useButton(triggerProps, ref);
+
+ return (
+
+
+
+ {shouldReplace ? (
+ <>
+ {state.selectedItem?.rendered ?? props.label}
+
+ >
+ ) : (
+ <>
+ {props.label}:
+ {state.selectedItem ? state.selectedItem.rendered : ""}
+ >
+ )}
+ ▼
+
+ {state.isOpen && (
+
+
+
+ )}
+
+ );
+};
+
+const Button = styled.button`
+ font-size: 14px;
+ color: #463c64;
+ padding: 14px 25px;
+ box-sizing: border-box;
+ width: 180px;
+ display: grid;
+ grid-template-columns: auto auto 1fr;
+ background: #ffffff;
+ border: 1px solid #463c64;
+ text-align: right;
+`;
diff --git a/app/src/components/Select/index.ts b/app/src/components/Select/index.ts
new file mode 100644
index 0000000..b6497e6
--- /dev/null
+++ b/app/src/components/Select/index.ts
@@ -0,0 +1 @@
+export { Select } from "./Select";
diff --git a/app/src/components/StartPage/StartPage.stories.tsx b/app/src/components/StartPage/StartPage.stories.tsx
new file mode 100644
index 0000000..fa4e3b2
--- /dev/null
+++ b/app/src/components/StartPage/StartPage.stories.tsx
@@ -0,0 +1,13 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { StartPage } from ".";
+
+const meta: Meta = {
+ component: StartPage,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {};
diff --git a/app/src/components/StartPage/StartPage.tsx b/app/src/components/StartPage/StartPage.tsx
new file mode 100644
index 0000000..b1e3d0d
--- /dev/null
+++ b/app/src/components/StartPage/StartPage.tsx
@@ -0,0 +1,93 @@
+import { styled } from "@linaria/react";
+import { FC } from "react";
+
+import { useSoundContext } from "../../contexts/SoundContexts";
+import { useTranslation } from "../../i18n/hooks";
+import { Language } from "../../utils/types/common";
+import { IconButton } from "../IconButton";
+import { IconWithOutline } from "../IconWithOutline";
+
+export const StartPage: FC = () => {
+ const { t, i18n } = useTranslation();
+ const currentLanguage = i18n.language;
+ const toggleLanguage = (lang: Language) => i18n.changeLanguage(lang);
+
+ const { setSound } = useSoundContext();
+
+ return (
+
+ {t("startpage_title")}
+
+ {t("startpage_sount_instruction")}
+
+ setSound("on")}>
+
+
+ setSound("off")}>
+
+
+
+
+
+ toggleLanguage("ja")} selected={currentLanguage === "ja"}>
+ {t("lang_ja")}
+
+ {" | "}
+ toggleLanguage("en")} selected={currentLanguage === "en"}>
+ {t("lang_en")}
+
+
+
+ );
+};
+
+const Root = styled.div`
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ height: 100svh;
+ height: 100dvh;
+ background-color: #313131;
+ color: white;
+ font-family: sans-serif; // Tokyo CityFont Cond StdN?
+`;
+
+const Title = styled.h1`
+ font-size: 4em;
+ font-weight: 700;
+ width: 40%;
+ white-space: pre-wrap;
+ margin-left: 100px;
+`;
+
+const SoundToggle = styled.div`
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: space-around;
+ width: 60%;
+ gap: 50px;
+`;
+
+const SoundOptions = styled.div`
+ display: flex;
+ justify-content: space-between;
+ width: 50%;
+`;
+
+const LanguageToggle = styled.span`
+ position: absolute;
+ top: 30px;
+ right: 30px;
+ font-size: 2em;
+ font-weight: 100;
+`;
+
+const Instructions = styled.span`
+ font-size: 1.5em;
+`;
+
+const LanguageOption = styled.span<{ selected: boolean }>`
+ cursor: pointer;
+ text-decoration: ${props => (props.selected ? "underline" : "none")};
+`;
diff --git a/app/src/components/StartPage/index.ts b/app/src/components/StartPage/index.ts
new file mode 100644
index 0000000..09ff1a0
--- /dev/null
+++ b/app/src/components/StartPage/index.ts
@@ -0,0 +1 @@
+export { StartPage } from "./StartPage";
diff --git a/app/src/components/SwitchButton/SwitchButton.stories.tsx b/app/src/components/SwitchButton/SwitchButton.stories.tsx
new file mode 100644
index 0000000..e700ff1
--- /dev/null
+++ b/app/src/components/SwitchButton/SwitchButton.stories.tsx
@@ -0,0 +1,17 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { SwitchButton } from ".";
+
+const meta: Meta = {
+ component: SwitchButton,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ contents: ["都心南部直下地震", "多摩東部直下地震"],
+ },
+};
diff --git a/app/src/components/SwitchButton/SwitchButton.tsx b/app/src/components/SwitchButton/SwitchButton.tsx
new file mode 100644
index 0000000..1a5372c
--- /dev/null
+++ b/app/src/components/SwitchButton/SwitchButton.tsx
@@ -0,0 +1,72 @@
+import { styled } from "@linaria/react";
+
+import { breakpointMediaQueries } from "../../constants";
+import { splitN } from "../../utils";
+import { Button } from "../Button";
+
+type ToggleButtonProps = {
+ onClick?: (v: boolean) => void;
+ active?: boolean;
+ contents: [string, string];
+};
+
+export const SwitchButton: React.FC = ({ onClick, active, contents }) => {
+ const handleClick = (v: boolean) => () => {
+ if (v === active) return;
+ onClick?.(v);
+ };
+ return (
+
+
+ {splitN(contents[0])}
+
+
+ {splitN(contents[1])}
+
+
+ );
+};
+
+const Root = styled.div`
+ display: inline-grid;
+ grid-template-columns: 1fr 1fr;
+`;
+
+const ButtonWrapper = styled(Button)<{ active?: boolean; left?: boolean }>`
+ display: grid;
+ align-content: center;
+ justify-content: center;
+ width: 100%;
+ color: #463c64;
+
+ border: none;
+
+ box-sizing: border-box;
+
+ --radius: 20px;
+ border-radius ${({ left }) =>
+ left ? "var(--radius) 0 0 var(--radius)" : "0 var(--radius) var(--radius) 0"};
+ font-size: 12px;
+ min-height: 40px;
+ min-width: 140px;
+ box-sizing: border-box;
+ padding: 5px 10px;
+ background: ${({ active }) => (active ? "#00bebe" : "#FFFFFF")};
+
+ ${breakpointMediaQueries.md} {
+ font-size: 10px;
+ min-height: 30px;
+ padding: 3px 10px;
+ }
+
+ @media (hover: hover) {
+ &:hover {
+ color: #ffffff;
+ background: #5a2dc5;
+ }
+ }
+ &:active {
+ color: #463c64;
+ background: #00bebe;
+ }
+`;
diff --git a/app/src/components/SwitchButton/index.ts b/app/src/components/SwitchButton/index.ts
new file mode 100644
index 0000000..daf3699
--- /dev/null
+++ b/app/src/components/SwitchButton/index.ts
@@ -0,0 +1 @@
+export { SwitchButton } from "./SwitchButton";
diff --git a/app/src/components/ToggleButton/ToggleButton.stories.tsx b/app/src/components/ToggleButton/ToggleButton.stories.tsx
new file mode 100644
index 0000000..90ffe97
--- /dev/null
+++ b/app/src/components/ToggleButton/ToggleButton.stories.tsx
@@ -0,0 +1,17 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { ToggleButton } from ".";
+
+const meta: Meta = {
+ component: ToggleButton,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ children: "This is a button",
+ },
+};
diff --git a/app/src/components/ToggleButton/ToggleButton.tsx b/app/src/components/ToggleButton/ToggleButton.tsx
new file mode 100644
index 0000000..fda326a
--- /dev/null
+++ b/app/src/components/ToggleButton/ToggleButton.tsx
@@ -0,0 +1,35 @@
+import { styled } from "@linaria/react";
+import { PropsWithChildren } from "react";
+
+type ToggleButtonProps = {
+ onClick?: () => void;
+ active?: boolean;
+};
+
+export const ToggleButton: React.FC> = ({
+ children,
+ onClick,
+ active,
+}) => {
+ return (
+
+ {children}
+
+ );
+};
+
+const Button = styled.div<{ active?: boolean }>`
+ display: grid;
+ align-content: center;
+ justify-content: center;
+ width: 100%;
+ cursor: pointer;
+ color: #463c64;
+ border: 1px solid #463c64;
+ border-radius: 100px;
+ font-size: 14px;
+ min-height: 40px;
+ box-sizing: border-box;
+ padding: 5px 10px;
+ background-color: ${({ active }) => (active ? "#00BEBE" : "#FFFFFF")};
+`;
diff --git a/app/src/components/ToggleButton/index.ts b/app/src/components/ToggleButton/index.ts
new file mode 100644
index 0000000..a146cc2
--- /dev/null
+++ b/app/src/components/ToggleButton/index.ts
@@ -0,0 +1 @@
+export { ToggleButton } from "./ToggleButton";
diff --git a/app/src/components/icons/ArrowRight.tsx b/app/src/components/icons/ArrowRight.tsx
new file mode 100644
index 0000000..d2ff68a
--- /dev/null
+++ b/app/src/components/icons/ArrowRight.tsx
@@ -0,0 +1,16 @@
+import { FC, HTMLAttributes } from "react";
+
+export const ArrowRight: FC> = props => (
+
+
+
+);
diff --git a/app/src/components/icons/Close.tsx b/app/src/components/icons/Close.tsx
new file mode 100644
index 0000000..4127dc8
--- /dev/null
+++ b/app/src/components/icons/Close.tsx
@@ -0,0 +1,30 @@
+import { FC } from "react";
+
+type CloseProps = {
+ width?: number;
+ height?: number;
+};
+
+export const Close: FC = ({ width = 15, height = 15 }) => (
+
+
+
+
+);
diff --git a/app/src/components/icons/Forward.tsx b/app/src/components/icons/Forward.tsx
new file mode 100644
index 0000000..a2864f7
--- /dev/null
+++ b/app/src/components/icons/Forward.tsx
@@ -0,0 +1,8 @@
+import { FC } from "react";
+
+export const Forward: FC = () => (
+
+
+
+
+);
diff --git a/app/src/components/icons/Hamburger.tsx b/app/src/components/icons/Hamburger.tsx
new file mode 100644
index 0000000..55d10f3
--- /dev/null
+++ b/app/src/components/icons/Hamburger.tsx
@@ -0,0 +1,17 @@
+import { FC, HTMLAttributes } from "react";
+
+export const Hamburger: FC<
+ HTMLAttributes & { width?: number; height?: number }
+> = props => (
+
+
+
+
+
+);
diff --git a/app/src/components/icons/Language.tsx b/app/src/components/icons/Language.tsx
new file mode 100644
index 0000000..5123665
--- /dev/null
+++ b/app/src/components/icons/Language.tsx
@@ -0,0 +1,31 @@
+import { styled } from "@linaria/react";
+import { FC } from "react";
+
+type LanguageProps = {
+ lang: string;
+};
+
+export const Language: FC = ({ lang }) => {
+ return (
+
+
+
+
+ {lang}
+
+ );
+};
+
+const LanguageIconWrapper = styled.div`
+ display: flex;
+ align-items: center;
+ gap: 10px;
+`;
diff --git a/app/src/components/icons/Logo.tsx b/app/src/components/icons/Logo.tsx
new file mode 100644
index 0000000..089b9e2
--- /dev/null
+++ b/app/src/components/icons/Logo.tsx
@@ -0,0 +1,105 @@
+import { FC, HTMLAttributes } from "react";
+
+export const Logo: FC<
+ HTMLAttributes & { width?: number; height?: number }
+> = props => (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+);
diff --git a/app/src/components/icons/Marker.tsx b/app/src/components/icons/Marker.tsx
new file mode 100644
index 0000000..1c46aa5
--- /dev/null
+++ b/app/src/components/icons/Marker.tsx
@@ -0,0 +1,23 @@
+import { FC, HTMLAttributes } from "react";
+
+export const Marker: FC> = props => (
+
+
+
+
+
+
+
+
+
+
+);
diff --git a/app/src/components/icons/Minus.tsx b/app/src/components/icons/Minus.tsx
new file mode 100644
index 0000000..5861ece
--- /dev/null
+++ b/app/src/components/icons/Minus.tsx
@@ -0,0 +1,18 @@
+import { FC, HTMLAttributes } from "react";
+
+type Props = {
+ width?: number;
+ height?: number;
+};
+
+export const Minus: FC & Props> = props => (
+
+
+
+);
diff --git a/app/src/components/icons/OpenArrow.tsx b/app/src/components/icons/OpenArrow.tsx
new file mode 100644
index 0000000..c7308c5
--- /dev/null
+++ b/app/src/components/icons/OpenArrow.tsx
@@ -0,0 +1,25 @@
+import { FC, HTMLAttributes } from "react";
+
+export const OpenArrow: FC<
+ HTMLAttributes & { width?: number; height?: number }
+> = props => (
+
+
+
+
+
+
+
+
+
+
+);
diff --git a/app/src/components/icons/Play.tsx b/app/src/components/icons/Play.tsx
new file mode 100644
index 0000000..6a77e5a
--- /dev/null
+++ b/app/src/components/icons/Play.tsx
@@ -0,0 +1,13 @@
+import { FC, HTMLAttributes } from "react";
+
+export const Play: FC> = props => (
+
+
+
+);
diff --git a/app/src/components/icons/PlayBack.tsx b/app/src/components/icons/PlayBack.tsx
new file mode 100644
index 0000000..027e6ca
--- /dev/null
+++ b/app/src/components/icons/PlayBack.tsx
@@ -0,0 +1,14 @@
+import { FC, HTMLAttributes } from "react";
+
+export const PlayBack: FC> = props => (
+
+
+
+
+);
diff --git a/app/src/components/icons/PlayNext.tsx b/app/src/components/icons/PlayNext.tsx
new file mode 100644
index 0000000..5dc5478
--- /dev/null
+++ b/app/src/components/icons/PlayNext.tsx
@@ -0,0 +1,14 @@
+import { FC, HTMLAttributes } from "react";
+
+export const PlayNext: FC> = props => (
+
+
+
+
+);
diff --git a/app/src/components/icons/Plus.tsx b/app/src/components/icons/Plus.tsx
new file mode 100644
index 0000000..c8c9052
--- /dev/null
+++ b/app/src/components/icons/Plus.tsx
@@ -0,0 +1,19 @@
+import { FC, HTMLAttributes } from "react";
+
+type PlusProps = {
+ width?: number;
+ height?: number;
+};
+
+export const Plus: FC & PlusProps> = props => (
+
+
+
+
+);
diff --git a/app/src/components/icons/SoundOff.tsx b/app/src/components/icons/SoundOff.tsx
new file mode 100644
index 0000000..4627a19
--- /dev/null
+++ b/app/src/components/icons/SoundOff.tsx
@@ -0,0 +1,42 @@
+import { FC } from "react";
+
+type SoundOffProps = {
+ width?: number;
+ height?: number;
+};
+
+export const SoundOff: FC = ({ width = 42, height = 42 }) => (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+);
diff --git a/app/src/components/icons/SoundOn.tsx b/app/src/components/icons/SoundOn.tsx
new file mode 100644
index 0000000..5abf336
--- /dev/null
+++ b/app/src/components/icons/SoundOn.tsx
@@ -0,0 +1,37 @@
+import { FC } from "react";
+
+type SoundOnProps = {
+ width?: number;
+ height?: number;
+};
+
+export const SoundOn: FC = ({ width = 42, height = 30 }) => (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+);
diff --git a/app/src/components/icons/Stop.tsx b/app/src/components/icons/Stop.tsx
new file mode 100644
index 0000000..303ea9c
--- /dev/null
+++ b/app/src/components/icons/Stop.tsx
@@ -0,0 +1,14 @@
+import { FC, HTMLAttributes } from "react";
+
+export const Stop: FC> = props => (
+
+
+
+
+);
diff --git a/app/src/components/icons/ZoomIn.tsx b/app/src/components/icons/ZoomIn.tsx
new file mode 100644
index 0000000..88ad37a
--- /dev/null
+++ b/app/src/components/icons/ZoomIn.tsx
@@ -0,0 +1,17 @@
+import { FC, HTMLAttributes } from "react";
+
+export const ZoomIn: FC> = props => (
+
+
+
+
+);
diff --git a/app/src/components/icons/ZoomOut.tsx b/app/src/components/icons/ZoomOut.tsx
new file mode 100644
index 0000000..8936120
--- /dev/null
+++ b/app/src/components/icons/ZoomOut.tsx
@@ -0,0 +1,17 @@
+import { FC, HTMLAttributes } from "react";
+
+export const ZoomOut: FC> = props => (
+
+
+
+
+);
diff --git a/app/src/constants/23wards.ts b/app/src/constants/23wards.ts
new file mode 100644
index 0000000..7bf2f62
--- /dev/null
+++ b/app/src/constants/23wards.ts
@@ -0,0 +1,27 @@
+import { Area } from "../utils";
+
+export const AREAS: Area[] = [
+ { id: "千代田区", label: "千代田区", lat: 35.69389, lon: 139.75361 },
+ { id: "中央区", label: "中央区", lat: 35.67056, lon: 139.77194 },
+ { id: "港区", label: "港区", lat: 35.65806, lon: 139.75167 },
+ { id: "新宿区", label: "新宿区", lat: 35.69389, lon: 139.70361 },
+ { id: "文京区", label: "文京区", lat: 35.70778, lon: 139.75278 },
+ { id: "台東区", label: "台東区", lat: 35.7125, lon: 139.77972 },
+ { id: "墨田区", label: "墨田区", lat: 35.71056, lon: 139.80139 },
+ { id: "江東区", label: "江東区", lat: 35.67306, lon: 139.81694 },
+ { id: "品川区", label: "品川区", lat: 35.60889, lon: 139.73028 },
+ { id: "目黒区", label: "目黒区", lat: 35.64139, lon: 139.69833 },
+ { id: "大田区", label: "大田区", lat: 35.56111, lon: 139.71611 },
+ { id: "世田谷区", label: "世田谷区", lat: 35.64639, lon: 139.65333 },
+ { id: "渋谷区", label: "渋谷区", lat: 35.66361, lon: 139.69778 },
+ { id: "中野区", label: "中野区", lat: 35.7075, lon: 139.66389 },
+ { id: "杉並区", label: "杉並区", lat: 35.69944, lon: 139.63639 },
+ { id: "豊島区", label: "豊島区", lat: 35.72611, lon: 139.71667 },
+ { id: "北区", label: "北区", lat: 35.75278, lon: 139.73361 },
+ { id: "荒川区", label: "荒川区", lat: 35.73611, lon: 139.78333 },
+ { id: "板橋区", label: "板橋区", lat: 35.75111, lon: 139.70917 },
+ { id: "練馬区", label: "練馬区", lat: 35.73556, lon: 139.65194 },
+ { id: "足立区", label: "足立区", lat: 35.775, lon: 139.80472 },
+ { id: "葛飾区", label: "葛飾区", lat: 35.74333, lon: 139.84722 },
+ { id: "江戸川区", label: "江戸川区", lat: 35.70667, lon: 139.86806 },
+];
diff --git a/app/src/constants/font.ts b/app/src/constants/font.ts
new file mode 100644
index 0000000..f80242a
--- /dev/null
+++ b/app/src/constants/font.ts
@@ -0,0 +1,2 @@
+export const TITLE_FONT_FAMILY = `"Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif`;
+export const GOTHIC_FONT_FAMILY = `"Noto Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif`;
diff --git a/app/src/constants/index.ts b/app/src/constants/index.ts
new file mode 100644
index 0000000..92fd154
--- /dev/null
+++ b/app/src/constants/index.ts
@@ -0,0 +1,6 @@
+export * from "./styles";
+export * from "./scene";
+export * from "./font";
+export * from "./languages";
+export * from "./23wards";
+export * from "./resource";
diff --git a/app/src/constants/languages.ts b/app/src/constants/languages.ts
new file mode 100644
index 0000000..1fc7abc
--- /dev/null
+++ b/app/src/constants/languages.ts
@@ -0,0 +1,10 @@
+export const LANGUAGES = [
+ {
+ id: "en",
+ label: "EN",
+ },
+ {
+ id: "ja",
+ label: "JA",
+ },
+];
diff --git a/app/src/constants/resource.ts b/app/src/constants/resource.ts
new file mode 100644
index 0000000..b688d0c
--- /dev/null
+++ b/app/src/constants/resource.ts
@@ -0,0 +1 @@
+export const RESOURCE_URL = import.meta.env.VITE_DATA_RESOURCE_URL;
diff --git a/app/src/constants/scene/burned.ts b/app/src/constants/scene/burned.ts
new file mode 100644
index 0000000..ac9bb0d
--- /dev/null
+++ b/app/src/constants/scene/burned.ts
@@ -0,0 +1,4 @@
+import { MainScenes } from "../../utils";
+
+export const BURNED_OVERLAY_MAIN_SCENE = MainScenes.Scene4;
+export const BURNED_OVERLAY_CONTENT_INDEX = 3;
diff --git a/app/src/constants/scene/index.ts b/app/src/constants/scene/index.ts
new file mode 100644
index 0000000..5446d4b
--- /dev/null
+++ b/app/src/constants/scene/index.ts
@@ -0,0 +1,2 @@
+export * from "./legend";
+export * from "./burned";
diff --git a/app/src/constants/scene/legend.tsx b/app/src/constants/scene/legend.tsx
new file mode 100644
index 0000000..a9451b5
--- /dev/null
+++ b/app/src/constants/scene/legend.tsx
@@ -0,0 +1,207 @@
+import { Marker } from "../../components/icons/Marker";
+import { LegendItem } from "../../components/MinimizedReport";
+import { MainScenes } from "../../utils";
+
+const TOKYO23_LEGEND_COLORS = [
+ {
+ color: "rgb(160, 192, 222)",
+ },
+ {
+ color: "rgb(166, 222, 214)",
+ },
+ {
+ color: "rgb(189, 182, 222)",
+ },
+ {
+ color: "rgb(222, 171, 153)",
+ },
+ {
+ color: "rgb(202, 202, 202)",
+ },
+];
+
+export const BURNED_OVERLAY = "BURNED_OVERLAY";
+
+export const SCENE_LEGEND: {
+ [K in MainScenes | typeof BURNED_OVERLAY]?: {
+ items: LegendItem[];
+ }[];
+} = {
+ [MainScenes.Scene1]: [
+ {
+ items: TOKYO23_LEGEND_COLORS,
+ },
+ {
+ items: [
+ {
+ img: ,
+ },
+ ],
+ },
+ ],
+ [MainScenes.Scene2]: [
+ {
+ items: TOKYO23_LEGEND_COLORS,
+ },
+ {
+ items: [
+ {
+ color: "#FF5631",
+ },
+ {
+ color: "#FFA068",
+ },
+ {
+ color: "#FFD72E",
+ },
+ {
+ color: "#8AFF2E",
+ },
+ {
+ color: "#2EFFD9",
+ },
+ {
+ color: "#2EA7FF",
+ },
+ {
+ color: "#464EFF",
+ },
+ ],
+ },
+ ],
+ [MainScenes.Scene3]: [
+ {
+ items: TOKYO23_LEGEND_COLORS,
+ },
+ {
+ items: [
+ {
+ color: "#FEEE70",
+ },
+ {
+ color: "#F979D0",
+ },
+ {
+ color: "#AE52CF",
+ },
+ {
+ color: "#AE52CF",
+ },
+ {
+ color: "#CACACA",
+ },
+ ],
+ },
+ ],
+ [MainScenes.Scene4]: [
+ {
+ items: [
+ {
+ color: "rgb(4, 41, 64)",
+ },
+ {
+ color: "rgb(0, 92, 83)",
+ },
+ ],
+ },
+ {
+ items: [
+ {
+ color: "rgb(31, 76, 166)",
+ },
+ {
+ color: "rgb(113, 166, 201)",
+ },
+ {
+ color: "rgb(62, 110, 140)",
+ },
+ {
+ color: "rgb(242, 185, 172)",
+ },
+ {
+ color: "rgb(202, 202, 202)",
+ },
+ ],
+ },
+ {
+ items: [
+ {
+ color: "rgba(235, 51, 35, 1)",
+ },
+ {
+ color: "rgba(222, 130, 68, 1)",
+ },
+ {
+ color: "rgba(255, 254, 85, 1)",
+ },
+ {
+ color: "rgba(117, 250, 76, 1)",
+ },
+ {
+ color: "rgba(116, 252, 253, 1)",
+ },
+ {
+ color: "rgba(144, 138, 212, 1)",
+ },
+ {
+ color: "rgba(160, 179, 206, 1)",
+ },
+ ],
+ },
+ ],
+ [BURNED_OVERLAY]: [
+ {
+ items: [
+ {
+ color: "rgba(235, 51, 35, 1)",
+ },
+ {
+ color: "rgba(222, 130, 68, 1)",
+ },
+ {
+ color: "rgba(255, 254, 85, 1)",
+ },
+ {
+ color: "rgba(117, 250, 76, 1)",
+ },
+ {
+ color: "rgba(116, 252, 253, 1)",
+ },
+ {
+ color: "rgba(144, 138, 212, 1)",
+ },
+ {
+ color: "rgba(160, 179, 206, 1)",
+ },
+ ],
+ },
+ ],
+ [MainScenes.Scene5]: [
+ {
+ items: TOKYO23_LEGEND_COLORS,
+ },
+ {
+ items: [
+ {
+ color: "#2FFF82",
+ // color: "rgb(180, 85, 66)",
+ },
+ {
+ color: "#38E8E8",
+ // color: "rgb(180, 114, 66)",
+ },
+ {
+ color: "#4085EE",
+ // color: "rgb(180, 143, 66)",
+ },
+ {
+ color: "#7284C5",
+ // color: "rgb(180, 172, 66)",
+ },
+ {
+ color: "#CACACA",
+ },
+ ],
+ },
+ ],
+};
diff --git a/app/src/constants/styles.ts b/app/src/constants/styles.ts
new file mode 100644
index 0000000..c37ce6e
--- /dev/null
+++ b/app/src/constants/styles.ts
@@ -0,0 +1,13 @@
+export const REPORT_WIDTH = 480;
+
+export const breakPoint = {
+ sm: 480,
+ md: 768,
+ lg: 1024,
+};
+
+export const breakpointMediaQueries = {
+ sm: `@media screen and (max-width: ${breakPoint.sm}px)`,
+ md: `@media screen and (max-width: ${breakPoint.md}px)`,
+ lg: `@media screen and (max-width: ${breakPoint.lg}px)`,
+};
diff --git a/app/src/containers/AppFooterContainer.tsx b/app/src/containers/AppFooterContainer.tsx
new file mode 100644
index 0000000..bd5b84d
--- /dev/null
+++ b/app/src/containers/AppFooterContainer.tsx
@@ -0,0 +1,91 @@
+import { styled } from "@linaria/react";
+import { FC } from "react";
+
+import { SceneIndicator } from "../components/SceneIndicator";
+import { breakpointMediaQueries } from "../constants";
+import { useNavigationContext } from "../contexts/NavigationContexts";
+import { LayerData } from "../layers";
+
+import { PlayControllerContainer } from "./PlayControllerContainer";
+import { ZoomContainer } from "./ZoomContainer";
+
+type Props = {
+ additionalWidth: number;
+ lng?: number;
+ lat?: number;
+ onZoomIn?: () => void;
+ onZoomOut?: () => void;
+ initialLayers: LayerData[];
+ isTutorialCompleted: boolean;
+ onOpenSceneMenu: () => void;
+ isSceneMenuOpen: boolean;
+};
+
+export const AppFooterContainer: FC = ({
+ additionalWidth,
+ onZoomIn,
+ onZoomOut,
+ initialLayers,
+ isTutorialCompleted,
+ onOpenSceneMenu,
+ isSceneMenuOpen,
+}) => {
+ const { navigationState } = useNavigationContext();
+
+ return (
+
+ {isTutorialCompleted && (
+
+
+
+ )}
+
+
+
+
+
+
+ {isTutorialCompleted && }
+
+
+ );
+};
+
+const Root = styled.div<{ additionalWidth: number }>`
+ transition: width 500ms ease-out;
+ width: ${({ additionalWidth }) => `calc(100vw - ${additionalWidth}px)`};
+ z-index: 1;
+ display: grid;
+ grid-template: "indicator controller zoom" auto / auto 1fr auto;
+ align-items: end;
+ box-sizing: border-box;
+ padding: 0 40px 25px 25px;
+ ${breakpointMediaQueries.md} {
+ display: none;
+ }
+`;
+
+const ControllerContainer = styled.div`
+ grid-area: controller;
+ margin: 0 20px;
+ margin-top: 20px;
+ width: 100%;
+`;
+
+const ControllerContainerInner = styled.div`
+ max-width: 744px;
+ margin: 0 auto;
+`;
+
+const StyledSceneIndicator = styled.div`
+ margin-bottom: -8px;
+ grid-area: indicator;
+`;
+
+const ZoomPosition = styled.div`
+ grid-area: zoom;
+`;
diff --git a/app/src/containers/AppHeaderContainer.tsx b/app/src/containers/AppHeaderContainer.tsx
new file mode 100644
index 0000000..9987a38
--- /dev/null
+++ b/app/src/containers/AppHeaderContainer.tsx
@@ -0,0 +1,119 @@
+import { styled } from "@linaria/react";
+import { FC, useCallback, useState } from "react";
+import { useTranslation } from "react-i18next";
+
+import { AppHeader } from "../components/AppHeader";
+import { breakpointMediaQueries, LANGUAGES } from "../constants";
+import { AREAS } from "../constants/23wards";
+import { useNavigationContext } from "../contexts/NavigationContexts";
+import { useSoundContext } from "../contexts/SoundContexts";
+import { Area, MainScenes, OpeningScenes, SubScenes, PageName } from "../utils";
+
+export type SelectedArea = Area;
+
+type Props = {
+ additionalWidth: number;
+ onClick?: () => void;
+ onChangeLanguage?: (lang: string) => void;
+ onChangeArea?: (area?: SelectedArea) => void;
+ onChangeSubScene?: (subScene?: SubScenes) => void;
+ isBreakpointMd: boolean;
+ isTitleWhite?: boolean;
+};
+
+export const AppHeaderContainer: FC = ({
+ additionalWidth,
+ onClick,
+ onChangeLanguage,
+ onChangeArea,
+ onChangeSubScene,
+ isBreakpointMd,
+ isTitleWhite,
+}) => {
+ const {
+ i18n: { language, changeLanguage },
+ } = useTranslation();
+ const { navigationState, setCurrentPage, setCurrentScene, setCurrentSubScene } =
+ useNavigationContext();
+ const { sound, setSound } = useSoundContext();
+
+ const [selectedArea, setSelectedArea] = useState ();
+
+ const isOpening = navigationState.currentPage === PageName.Opening;
+ const isOpeningScene1 = navigationState.currentScene === OpeningScenes.Scene1;
+ const isEpilogue = navigationState.currentScene === MainScenes.Scene6;
+
+ const handleBackToTopPage = useCallback(() => {
+ setCurrentPage(PageName.Opening);
+ setCurrentScene(OpeningScenes.Scene1);
+ }, [setCurrentPage, setCurrentScene]);
+
+ const handleChangeLanguage = useCallback(() => {
+ const changedTo = language === "en" ? "ja" : "en";
+ onChangeLanguage?.(changedTo);
+ changeLanguage(changedTo);
+ }, [changeLanguage, onChangeLanguage, language]);
+ const handleChangeArea = useCallback(
+ (v: string) => {
+ const foundArea = AREAS.find(p => p.id === v);
+ onChangeArea?.(foundArea);
+ setSelectedArea(foundArea);
+ },
+ [onChangeArea],
+ );
+
+ const handleChangeSubScene = useCallback(
+ (v: boolean) => {
+ const subScene = v ? SubScenes.Tama : SubScenes.Toshin;
+ setCurrentSubScene(subScene);
+ onChangeSubScene?.(subScene);
+ },
+ [setCurrentSubScene, onChangeSubScene],
+ );
+
+ const handleToggleSound = useCallback(() => {
+ setSound(sound === "on" ? "off" : "on");
+ }, [sound, setSound]);
+
+ return (
+
+
+
+ );
+};
+
+const Root = styled.div<{ additionalWidth: number }>`
+ transition: width 500ms ease-out;
+ width: ${({ additionalWidth }) => `calc(100vw - ${additionalWidth}px)`};
+ z-index: 1;
+
+ ${breakpointMediaQueries.md} {
+ width: 100vw;
+ }
+`;
diff --git a/app/src/containers/AppHeaderForMobileContainer.tsx b/app/src/containers/AppHeaderForMobileContainer.tsx
new file mode 100644
index 0000000..e052445
--- /dev/null
+++ b/app/src/containers/AppHeaderForMobileContainer.tsx
@@ -0,0 +1,49 @@
+import { styled } from "@linaria/react";
+import { FC, useCallback } from "react";
+
+import { AppHeaderForMobile } from "../components/AppHeader/AppHeaderForMobile";
+import { useNavigationContext } from "../contexts/NavigationContexts";
+import { Area, MainScenes, SubScenes, PageName } from "../utils";
+
+export type SelectedArea = Area;
+
+type Props = {
+ onChangeSubScene?: (subScene?: SubScenes) => void;
+ onOpenSceneMenu: () => void;
+};
+
+export const AppHeaderForMobileContainer: FC = ({ onChangeSubScene, onOpenSceneMenu }) => {
+ const { navigationState, setCurrentSubScene } = useNavigationContext();
+
+ const isOpening = navigationState.currentPage === PageName.Opening;
+
+ const handleChangeSubScene = useCallback(
+ (v: boolean) => {
+ const subScene = v ? SubScenes.Tama : SubScenes.Toshin;
+ setCurrentSubScene(subScene);
+ onChangeSubScene?.(subScene);
+ },
+ [setCurrentSubScene, onChangeSubScene],
+ );
+
+ return (
+
+
+
+ );
+};
+
+const Root = styled.div`
+ transition: width 500ms ease-out;
+ z-index: 1;
+ width: 100%;
+`;
diff --git a/app/src/containers/BGMContainer.tsx b/app/src/containers/BGMContainer.tsx
new file mode 100644
index 0000000..fa61adb
--- /dev/null
+++ b/app/src/containers/BGMContainer.tsx
@@ -0,0 +1,19 @@
+import { FC, useEffect, useRef } from "react";
+
+import { useSoundContext } from "../contexts/SoundContexts";
+
+export const BGMContainer: FC = () => {
+ const { sound } = useSoundContext();
+ const audioRef = useRef(null);
+
+ useEffect(() => {
+ if (sound === "on" && audioRef.current) {
+ audioRef.current.volume = 0.1;
+ audioRef.current.play();
+ } else {
+ audioRef.current?.pause();
+ }
+ }, [sound]);
+
+ return ;
+};
diff --git a/app/src/containers/CircleTextContainer.tsx b/app/src/containers/CircleTextContainer.tsx
new file mode 100644
index 0000000..f4071c5
--- /dev/null
+++ b/app/src/containers/CircleTextContainer.tsx
@@ -0,0 +1,194 @@
+import { FC, useEffect, useState } from "react";
+import { useTranslation } from "react-i18next";
+
+import { CircleWithText } from "../components/CircleWithText";
+import type { TextAlignment } from "../components/CircleWithText/CircleWithText";
+import { breakPoint } from "../constants";
+import { useMediaQuery } from "../hooks";
+import type { ScreenPosition } from "../utils";
+
+type ElementState = ScreenPosition & {
+ width: number;
+ height: number;
+};
+
+type TargetElements = {
+ areaSelector: ElementState;
+ langButton: ElementState;
+ soundButton: ElementState;
+ reportButton: ElementState;
+ playButton: ElementState;
+ playBackButton: ElementState;
+ playNextButton: ElementState;
+ timeSequence: ElementState;
+ PcMenuButton: ElementState;
+ SpMenuButton: ElementState;
+};
+
+export const CircleTextContainer: FC = () => {
+ const { t } = useTranslation();
+ const isBreakpointMd = useMediaQuery(`(max-width: ${breakPoint.md}px)`);
+
+ const [windowWidth, setWindowWidth] = useState(window.innerWidth);
+ const [positions, setPositions] = useState({
+ areaSelector: { x: -10000, y: -10000, width: 0, height: 0 },
+ langButton: { x: -10000, y: -10000, width: 0, height: 0 },
+ soundButton: { x: -10000, y: -10000, width: 0, height: 0 },
+ reportButton: { x: -10000, y: -10000, width: 0, height: 0 },
+ playButton: { x: -10000, y: -10000, width: 0, height: 0 },
+ playBackButton: { x: -10000, y: -10000, width: 0, height: 0 },
+ playNextButton: { x: -10000, y: -10000, width: 0, height: 0 },
+ timeSequence: { x: -10000, y: -10000, width: 0, height: 0 },
+ PcMenuButton: { x: -10000, y: -10000, width: 0, height: 0 },
+ SpMenuButton: { x: -10000, y: -10000, width: 0, height: 0 },
+ });
+
+ useEffect(() => {
+ const handleResize = () => {
+ setWindowWidth(window.innerWidth);
+ };
+
+ window.addEventListener("resize", handleResize);
+ return () => window.removeEventListener("resize", handleResize);
+ }, []);
+
+ useEffect(() => {
+ const timer = setTimeout(() => {
+ const updatePosition = (elementId: keyof TargetElements) => {
+ const element = document.getElementById(elementId);
+ if (element) {
+ const rect = element.getBoundingClientRect();
+ setPositions(prevPositions => ({
+ ...prevPositions,
+ [elementId]: {
+ x: rect.left,
+ y: rect.top,
+ width: rect.width,
+ height: rect.height,
+ },
+ }));
+ }
+ };
+
+ updatePosition("areaSelector");
+ updatePosition("langButton");
+ updatePosition("soundButton");
+ updatePosition("reportButton");
+ updatePosition("playButton");
+ updatePosition("playBackButton");
+ updatePosition("playNextButton");
+ updatePosition("timeSequence");
+ updatePosition("PcMenuButton");
+ updatePosition("SpMenuButton");
+ }, 1500);
+ return () => clearTimeout(timer);
+ }, [windowWidth]);
+
+ return (
+ <>
+ {Object.entries(positions).map(([key, { x, y, width, height }], index) => {
+ let adjustedX = x;
+ let adjustedY = y;
+ let text = "";
+ let textAlignment: TextAlignment = "belowCenterOfCircle";
+
+ switch (key) {
+ case "areaSelector":
+ adjustedY += height;
+ text = t("Tutorial areaSelector");
+ textAlignment = "leftOfCircle";
+ break;
+ case "langButton":
+ adjustedY += height;
+ text = t("Tutorial langButton");
+ textAlignment = "belowCenterOfCircle";
+ break;
+ case "soundButton":
+ adjustedX += width / 2;
+ adjustedY += height;
+ text = t("Tutorial soundButton");
+ textAlignment = "belowCenterOfCircle";
+ break;
+ case "reportButton":
+ if (!isBreakpointMd) {
+ adjustedY += height;
+ textAlignment = "leftOfCircle";
+ } else {
+ adjustedX += width;
+ adjustedY += height / 2;
+ textAlignment = "rightOfCircle";
+ }
+ text = t("Tutorial reportButton");
+ break;
+ case "playButton":
+ text = t("Play/Pause");
+ adjustedX += width / 2;
+ textAlignment = "aboveCenterOfCircle";
+ break;
+ case "playBackButton":
+ text = "";
+ if (!isBreakpointMd) {
+ adjustedY += height / 2;
+ textAlignment = "leftOfCircle";
+ } else {
+ adjustedX += width / 2;
+ adjustedY += (height * 4) / 3;
+ textAlignment = "belowCenterOfCircle";
+ }
+ break;
+ case "playNextButton":
+ text = "";
+ if (!isBreakpointMd) {
+ adjustedX += width;
+ adjustedY += height / 2;
+ textAlignment = "rightOfCircle";
+ } else {
+ adjustedX += width / 2;
+ adjustedY += (height * 4) / 3;
+ textAlignment = "belowCenterOfCircle";
+ }
+ break;
+ case "timeSequence":
+ text = t("Time sequence");
+ adjustedX += width / 2;
+ adjustedY += height / 2;
+ textAlignment = "aboveCenterOfCircle";
+ break;
+ case "PcMenuButton":
+ text = t("PcMenuButton");
+ if (!isBreakpointMd) {
+ adjustedX += (width * 1) / 2;
+ textAlignment = "aboveCenterOfCircle";
+ } else {
+ adjustedX += -10000;
+ adjustedY += -10000;
+ textAlignment = "belowCenterOfCircle";
+ }
+ break;
+ case "SpMenuButton":
+ text = t("SpMenuButton");
+ if (!isBreakpointMd) {
+ adjustedX += -10000;
+ adjustedY += -10000;
+ textAlignment = "belowCenterOfCircle";
+ } else {
+ adjustedX += width / 2;
+ adjustedY += height;
+ textAlignment = "belowCenterOfCircle";
+ }
+ break;
+ }
+
+ return (
+
+ );
+ })}
+ >
+ );
+};
diff --git a/app/src/containers/EpilogueContainer.tsx b/app/src/containers/EpilogueContainer.tsx
new file mode 100644
index 0000000..391510d
--- /dev/null
+++ b/app/src/containers/EpilogueContainer.tsx
@@ -0,0 +1,262 @@
+import { styled } from "@linaria/react";
+import { motion } from "framer-motion";
+import { FC, PropsWithChildren, useState, useEffect, useCallback } from "react";
+
+import { ParticleOverlay } from "../components/ParticleOverlay";
+import { breakpointMediaQueries, breakPoint } from "../constants";
+import { ForTheFuture, Epilogue } from "../contents/Epilogue";
+import { useNavigationContext } from "../contexts/NavigationContexts";
+import { useEffectSound, useMediaQuery } from "../hooks";
+import { MainScenes } from "../utils/types/common";
+
+const SWITCH_IMAGE_DELAY = 3000;
+const EXPAND_IMAGE_DELAY = 6000;
+const TEXT_DELAY = 3000;
+
+export const EpilogueContainer: FC = ({ children }) => {
+ const { setCurrentScene } = useNavigationContext();
+ const [isCurrentImageVisible, setIsCurrentImageVisible] = useState(false);
+ const [isCurrentImageExpanded, setIsCurrentImageExpanded] = useState(false);
+ const [show, setShow] = useState(false);
+ const [showMoreDetails, setShowMoreDetails] = useState(false);
+ const { play } = useEffectSound();
+ const isBreakpointMd = useMediaQuery(`(max-width: ${breakPoint.md}px)`);
+
+ const handleEffectSoundForClick = useCallback(() => {
+ play("on");
+ }, [play]);
+
+ useEffect(() => {
+ const timer1 = setTimeout(() => {
+ setIsCurrentImageVisible(true);
+ }, SWITCH_IMAGE_DELAY);
+
+ const timer2 = setTimeout(() => {
+ setIsCurrentImageExpanded(true);
+ }, EXPAND_IMAGE_DELAY);
+
+ const timer3 = setTimeout(() => {
+ setShow(true);
+ }, EXPAND_IMAGE_DELAY + TEXT_DELAY);
+
+ return () => {
+ clearTimeout(timer1);
+ clearTimeout(timer2);
+ clearTimeout(timer3);
+ };
+ }, []);
+
+ const handleBackButton = () => {
+ setCurrentScene(MainScenes.Scene1);
+ };
+
+ return (
+
+ {children}
+
+ {showMoreDetails && (
+
+
+
+ )}
+
+
+
+
+ {isCurrentImageVisible && (
+
+
+
+ )}
+ {isCurrentImageExpanded && (
+
+
+
+ )}
+
+ {show && (
+ <>
+ {!showMoreDetails && (
+
+
+
+ )}
+
+ {showMoreDetails && (
+
+
+
+ )}
+ >
+ )}
+
+
+
+ );
+};
+
+const Root = styled.div<{ showMoreDetails: boolean; show: boolean }>`
+ position: fixed;
+ top: 0;
+ left: 0;
+ z-index: 10;
+ width: 100vw;
+ height: 100svh;
+ height: 100dvh;
+ background-color: ${({ showMoreDetails, show }) =>
+ showMoreDetails ? "#ffffff" : show ? "rgba(230, 230, 250, 0.3)" : "rgba(230, 230, 250, 0.7)"};
+ padding-bottom: 100px;
+ overflow-x: hidden;
+ overflow-y: auto;
+`;
+
+const Content = styled.div`
+ width: 100%;
+ height: 100%;
+`;
+
+const BackButton = styled.button`
+ position: absolute;
+ top: 150px;
+ left: 30px;
+ background: none;
+ border: none;
+ cursor: pointer;
+ z-index: 1;
+
+ & img {
+ width: 60px;
+ height: 60px;
+
+ ${breakpointMediaQueries.md} {
+ width: 45px;
+ height: 45px;
+ }
+ }
+
+ ${breakpointMediaQueries.md} {
+ top: 80px;
+ left: 20px;
+ }
+`;
+
+const ImageContainer = styled.div`
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ z-index: -1;
+`;
+
+const TextContainer = styled.div`
+ position: relative;
+ width: 100%;
+ height: 100%;
+ z-index: 1;
+ ${breakpointMediaQueries.md} {
+ padding: 2rem 0;
+ }
+`;
diff --git a/app/src/containers/InfoboxContainer.tsx b/app/src/containers/InfoboxContainer.tsx
new file mode 100644
index 0000000..929ad32
--- /dev/null
+++ b/app/src/containers/InfoboxContainer.tsx
@@ -0,0 +1,12 @@
+import { FC } from "react";
+
+import { Infobox } from "../components/Infobox";
+import { useMarkerDataContext } from "../contexts/MarkerContexts";
+
+export const InfoboxContainer: FC = () => {
+ const { markerData } = useMarkerDataContext();
+
+ return markerData ? (
+
+ ) : null;
+};
diff --git a/app/src/containers/MapContainer.tsx b/app/src/containers/MapContainer.tsx
new file mode 100644
index 0000000..7f3d9db
--- /dev/null
+++ b/app/src/containers/MapContainer.tsx
@@ -0,0 +1,228 @@
+import { MapViewState } from "@deck.gl/core/typed";
+import { forwardRef, useCallback, useEffect, useMemo, useRef, useState } from "react";
+import { ViewState } from "react-map-gl";
+
+import { useNavigationContext } from "../contexts/NavigationContexts";
+import { useScenePlayerContext } from "../contexts/ScenePlayerContexts";
+import { useRefValue } from "../hooks";
+import { LayerData } from "../layers";
+import { Map, MapRef } from "../map";
+import { wait } from "../utils";
+import { MainScenes, OpeningScenes, PageName } from "../utils/types/common";
+
+type Props = {
+ initialLayers: LayerData[];
+ isReportOpen: boolean;
+ isBreakpointMd: boolean;
+ onViewStateChange?: (viewState: MapViewState) => void;
+ onSelectFeature?: () => void;
+ viewState?: Partial;
+ onWaitNextSceneStart?: () => void;
+ onWaitNextSceneEnd?: () => void;
+ onChangeScene?: (currentScene: OpeningScenes | MainScenes) => void;
+};
+
+export const WAIT_ANIMATION = 1000;
+
+export const MapContainer = forwardRef(function MapContainerPresenter(
+ {
+ initialLayers,
+ isReportOpen,
+ isBreakpointMd,
+ onViewStateChange,
+ onSelectFeature,
+ viewState,
+ onWaitNextSceneStart,
+ onWaitNextSceneEnd,
+ onChangeScene,
+ },
+ ref,
+) {
+ const { navigationState } = useNavigationContext();
+ const { playing } = useScenePlayerContext();
+ const playingRef = useRefValue(playing);
+ const currentScene = navigationState.currentScene;
+ const currentSubScene = navigationState.currentSubScene;
+ const currentSceneContentIndex = navigationState.currentSceneContentIndex;
+
+ const [filteredLayers, setFilteredLayers] = useState([]);
+
+ const prevFilteredLayers = useRef([]);
+ prevFilteredLayers.current = filteredLayers;
+ const prevCurrentScene = useRef();
+ const prevCurrentSubScene = useRef(currentSubScene);
+ const prevCurrentSceneContentIndex = useRef(currentSceneContentIndex);
+
+ const onWaitNextSceneStartRef = useRefValue(onWaitNextSceneStart);
+ const onWaitNextSceneEndRef = useRefValue(onWaitNextSceneEnd);
+
+ const sceneTimerRef = useRef();
+ const prevMaxAnimationDuration = useRef();
+
+ const updateNextScene = useCallback(
+ (shouldWait = true) => {
+ return window.setTimeout(
+ () => {
+ sceneTimerRef.current = undefined;
+ prevMaxAnimationDuration.current = undefined;
+ onWaitNextSceneEndRef.current?.();
+ setFilteredLayers(
+ initialLayers
+ .filter(layer => layer.scene.includes(currentScene))
+ .map(layer => {
+ return layer.subScene && !layer.subScene.includes(currentSubScene)
+ ? { ...layer, hide: true }
+ : layer;
+ })
+ .filter(
+ layer =>
+ layer.contentIndex === undefined ||
+ layer.contentIndex === currentSceneContentIndex ||
+ layer.contentIndexToDisableAnimation === currentSceneContentIndex,
+ )
+ .map(l =>
+ l.contentIndexToDisableAnimation === currentSceneContentIndex
+ ? { ...l, inHiddenAnimation: true }
+ : { ...l, inHiddenAnimation: false },
+ ),
+ );
+ onChangeScene?.(currentScene);
+ },
+ shouldWait ? prevMaxAnimationDuration.current ?? 0 : 0,
+ );
+ },
+ [
+ currentScene,
+ currentSubScene,
+ currentSceneContentIndex,
+ onChangeScene,
+ onWaitNextSceneEndRef,
+ initialLayers,
+ ],
+ );
+
+ const isSceneChangedRef = useRef(false);
+
+ // For scene
+ useEffect(() => {
+ const update = async () => {
+ const isSceneChanged = !prevCurrentScene.current || prevCurrentScene.current !== currentScene;
+ const isSubSceneChanged = !isSceneChanged && prevCurrentSubScene.current !== currentSubScene;
+ const isSceneContentIndexChanged =
+ prevCurrentSceneContentIndex.current !== currentSceneContentIndex;
+
+ if (isSceneChanged || isSceneContentIndexChanged) {
+ if (!isSceneContentIndexChanged) {
+ prevMaxAnimationDuration.current = prevFilteredLayers.current.reduce(
+ (max, layer) =>
+ Math.max(
+ max,
+ playingRef.current
+ ? layer.animation?.endDuration ?? layer.animation?.startDuration ?? 0
+ : 0,
+ ),
+ 0,
+ );
+ prevMaxAnimationDuration.current =
+ prevMaxAnimationDuration.current === 0
+ ? 0
+ : prevMaxAnimationDuration.current + WAIT_ANIMATION;
+
+ const nextHiddenLayers = prevFilteredLayers.current.map(l =>
+ (!l.subScene || l.subScene.includes(currentSubScene)) &&
+ l.contentIndex !== currentSceneContentIndex &&
+ l.contentIndexToDisableAnimation !== currentSceneContentIndex
+ ? { ...l, show: false }
+ : { ...l, inHiddenAnimation: true },
+ );
+
+ setFilteredLayers(nextHiddenLayers);
+
+ // Wait until closing animation finishes
+ onWaitNextSceneStartRef.current?.();
+ }
+ const timer = updateNextScene();
+ sceneTimerRef.current = timer;
+ isSceneChangedRef.current = true;
+ }
+ prevCurrentScene.current = currentScene;
+ prevCurrentSceneContentIndex.current = currentSceneContentIndex;
+
+ if (isSubSceneChanged) {
+ const maxAnimationDuration = prevFilteredLayers.current.reduce(
+ (max, layer) =>
+ Math.max(
+ max,
+ layer.delayForNextSubScene ??
+ (layer.subScene
+ ? layer.animation?.endDuration ?? layer.animation?.startDuration
+ : 0) ??
+ 0,
+ ),
+ 0,
+ );
+ setFilteredLayers(layers =>
+ layers.map(l =>
+ l.subScene && !l.subScene.includes(currentSubScene) ? { ...l, show: false } : l,
+ ),
+ );
+ // Wait until closing animation finishes
+ if (maxAnimationDuration !== 0) {
+ await wait(maxAnimationDuration + 500);
+ }
+ setFilteredLayers(layers =>
+ layers.map(layer =>
+ !layer.subScene || layer.subScene.includes(currentSubScene)
+ ? { ...layer, show: true, hide: false }
+ : layer,
+ ),
+ );
+ }
+ prevCurrentSubScene.current = currentSubScene;
+ };
+ update();
+ }, [
+ currentScene,
+ currentSubScene,
+ currentSceneContentIndex,
+ onWaitNextSceneStartRef,
+ updateNextScene,
+ playingRef,
+ ]);
+
+ const isStoppedSceneTimer = useRef(false);
+ useEffect(() => {
+ if (isSceneChangedRef.current) {
+ isSceneChangedRef.current = false;
+ return;
+ }
+ if (!playing && !isStoppedSceneTimer.current) {
+ window.clearTimeout(sceneTimerRef.current);
+ isStoppedSceneTimer.current = true;
+ }
+ if (playing && isStoppedSceneTimer.current) {
+ isStoppedSceneTimer.current = false;
+ sceneTimerRef.current = updateNextScene();
+ }
+ }, [playing, updateNextScene]);
+
+ const hasPickable = useMemo(() => filteredLayers.some(l => l.pickable), [filteredLayers]);
+
+ // MEMO: Get data and inject the data to the component
+ return (
+
+ );
+});
diff --git a/app/src/containers/OpeningContainer.tsx b/app/src/containers/OpeningContainer.tsx
new file mode 100644
index 0000000..2e8a6ff
--- /dev/null
+++ b/app/src/containers/OpeningContainer.tsx
@@ -0,0 +1,33 @@
+import { styled } from "@linaria/react";
+import { FC, PropsWithChildren } from "react";
+
+import { Opening } from "../components/Opening";
+import {
+ TITLE_OVERLAY_FADEOUT_DELAY,
+ TITLE_OVERLAY_FADEOUT_DURATION,
+} from "../components/Opening/Opening";
+
+export const OpeningContainer: FC = ({ children }) => {
+ return (
+ <>
+
+ {children}
+ >
+ );
+};
+
+const Delay = styled.div`
+ z-index: 1;
+ opacity: 0;
+ visibility: visible;
+ animation: 1s ease-out ${TITLE_OVERLAY_FADEOUT_DELAY + TITLE_OVERLAY_FADEOUT_DURATION}ms fadeout;
+ animation-fill-mode: forwards;
+ @keyframes fadeout {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+`;
diff --git a/app/src/containers/PlayControllerContainer.tsx b/app/src/containers/PlayControllerContainer.tsx
new file mode 100644
index 0000000..44f7c73
--- /dev/null
+++ b/app/src/containers/PlayControllerContainer.tsx
@@ -0,0 +1,185 @@
+import { styled } from "@linaria/react";
+import { uniqBy } from "lodash-es";
+import { FC, useCallback, useMemo } from "react";
+
+import { Hamburger } from "../components/icons/Hamburger";
+import { PlayController, StepItem } from "../components/PlayController";
+import { RoundButton } from "../components/RoundButton";
+import { breakpointMediaQueries } from "../constants";
+import { useFirstVisitContext } from "../contexts/FirstVisitContexts";
+import { useNavigationContext } from "../contexts/NavigationContexts";
+import { useScenePlayerContext } from "../contexts/ScenePlayerContexts";
+import { useEffectSound, useRefValue } from "../hooks";
+import { LayerData } from "../layers";
+import { MainScenes, PageName } from "../utils";
+
+import { WAIT_ANIMATION } from "./MapContainer";
+
+type Props = {
+ initialLayers: LayerData[];
+ onOpenSceneMenu: () => void;
+ isSceneMenuOpen: boolean;
+};
+
+const EPILOGUE_SCENE = MainScenes.Scene6;
+const OPENING_NAME = "OP";
+const MAIN_SCENE_ORDER: MainScenes[] = Object.values(MainScenes);
+
+type SceneStep = Omit & {
+ id?: string;
+ contents: (Pick["contents"][number] & {
+ isMain?: boolean;
+ })[];
+};
+
+export const PlayControllerContainer: FC = ({
+ initialLayers,
+ onOpenSceneMenu,
+ isSceneMenuOpen,
+}) => {
+ const { navigationState, setCurrentPage, setCurrentScene, setCurrentSceneContentIndex } =
+ useNavigationContext();
+ const { playing, toggle, setShouldSceneDescriptionShow } = useScenePlayerContext();
+ const { play: playEffectSound } = useEffectSound();
+ const { firstVisit } = useFirstVisitContext();
+ const { isTutorialCompleted } = firstVisit;
+
+ const steps: SceneStep[] = useMemo(
+ () => [
+ {
+ name: OPENING_NAME,
+ contents: [
+ {
+ duration: 30000, // Dummy duration
+ },
+ ],
+ },
+ ...MAIN_SCENE_ORDER.filter(s => s !== EPILOGUE_SCENE).reduce((result, scene) => {
+ const targets = initialLayers.filter(l => l.scene.includes(scene));
+ const step = {
+ id: scene,
+ contents: uniqBy(targets, t => t.contentIndex)
+ .map(t =>
+ t.contentDuration
+ ? {
+ isMain: t.isMain,
+ duration: t.contentDuration + WAIT_ANIMATION,
+ }
+ : undefined,
+ )
+ .filter((t): t is NonNullable => !!t),
+ };
+ result.push(step);
+ return result;
+ }, [] as SceneStep[]),
+ {
+ id: EPILOGUE_SCENE,
+ name: "EP",
+ contents: [
+ {
+ duration: 30000, // Dummy duration
+ },
+ ],
+ },
+ ],
+ [initialLayers],
+ );
+
+ const currentMainStepIndex = useMemo(
+ () => steps.findIndex(s => s.id === navigationState.currentScene),
+ [steps, navigationState.currentScene],
+ );
+
+ const navigationStateRef = useRefValue(navigationState);
+ const handleChangeStep = useCallback(
+ (currentMainStepIndex: number, currentContentStepIndex: number) => {
+ const currentStep = steps[currentMainStepIndex];
+
+ if (!currentStep) return;
+
+ if (
+ currentStep.name === OPENING_NAME &&
+ navigationStateRef.current.currentPage !== PageName.Opening
+ ) {
+ setCurrentPage(PageName.Opening);
+ return;
+ }
+
+ const mainSceneKey = currentStep.id;
+ if (!mainSceneKey) return;
+ const nextScene = MAIN_SCENE_ORDER.find(s => s === mainSceneKey);
+ if (nextScene) {
+ setCurrentScene(nextScene);
+ setCurrentSceneContentIndex(currentContentStepIndex);
+
+ const { isMain } = currentStep.contents[currentContentStepIndex] ?? {};
+ if (isMain) {
+ setShouldSceneDescriptionShow(true);
+ } else {
+ setShouldSceneDescriptionShow(false);
+ }
+ }
+ },
+ [
+ steps,
+ navigationStateRef,
+ setCurrentPage,
+ setCurrentScene,
+ setCurrentSceneContentIndex,
+ setShouldSceneDescriptionShow,
+ ],
+ );
+
+ const handleOnClickController = useCallback(() => {
+ playEffectSound("on");
+ }, [playEffectSound]);
+
+ return (
+
+
+
+
+
+
+ );
+};
+
+const Root = styled.div`
+ z-index: 1;
+`;
+
+const PlayControllerWrapper = styled.div`
+ display: flex;
+ align-items: center;
+ gap: 28px;
+`;
+
+const MenuButton = styled(RoundButton)`
+ transition:
+ opacity 300ms ease-in,
+ visibility 300ms ease-in;
+ opacity: 1;
+ visibility: visible;
+ &.hide {
+ opacity: 0;
+ visibility: hidden;
+ }
+`;
+
+const MenuButtonWrapper = styled.div`
+ ${breakpointMediaQueries.md} {
+ display: none;
+ }
+`;
diff --git a/app/src/containers/SceneMenuModalContainer.tsx b/app/src/containers/SceneMenuModalContainer.tsx
new file mode 100644
index 0000000..97ae2cc
--- /dev/null
+++ b/app/src/containers/SceneMenuModalContainer.tsx
@@ -0,0 +1,262 @@
+import { styled } from "@linaria/react";
+import { FC, useCallback, useMemo, useState } from "react";
+
+import { Button } from "../components/Button";
+import { Language } from "../components/icons/Language";
+import { Logo } from "../components/icons/Logo";
+import { SoundOff } from "../components/icons/SoundOff";
+import { SoundOn } from "../components/icons/SoundOn";
+import { SceneMenuModal, SceneMenuItem } from "../components/SceneMenuModal";
+import { Select } from "../components/Select";
+import { LANGUAGES } from "../constants";
+import { AREAS } from "../constants/23wards";
+import { useNavigationContext } from "../contexts/NavigationContexts";
+import { useSoundContext } from "../contexts/SoundContexts";
+import { useTranslation } from "../i18n/hooks";
+import { Area, MainScenes, OpeningScenes, PageName } from "../utils";
+
+import { SelectedArea } from "./AppHeaderContainer";
+
+type Props = {
+ show: boolean;
+ onClose: () => void;
+ onChangeArea?: (area?: SelectedArea) => void;
+ onChangeLanguage?: (lang: string) => void;
+ isBreakpointMd: boolean;
+ onClick?: () => void;
+};
+
+export const SceneMenuModalContainer: FC = ({ show, onClose, isBreakpointMd, ...props }) => {
+ const { t } = useTranslation();
+ const { setCurrentPage, setCurrentScene } = useNavigationContext();
+ const sceneList = useMemo(
+ () => [
+ {
+ id: PageName.Opening,
+ name: t("opening"),
+ },
+ {
+ id: MainScenes.Scene1,
+ name: t("Tokyo as it is today"),
+ },
+ {
+ id: PageName.Main,
+ name: t("Earthquake in the southern and the eastern part of the metropolis"),
+ disabled: true,
+ children: [
+ {
+ id: MainScenes.Scene2,
+ name: t("Seismic intensity distribution"),
+ },
+ {
+ id: MainScenes.Scene3,
+ name: t("Distribution of the number of houses totally destroyed"),
+ },
+ {
+ id: MainScenes.Scene4,
+ name: t("Distribution of the number of buildings burned"),
+ },
+ {
+ id: MainScenes.Scene5,
+ name: t("Liquefaction distribution of the earthquake"),
+ },
+ ],
+ },
+ {
+ id: MainScenes.Scene6,
+ name: t(MainScenes.Scene6),
+ },
+ ],
+ [t],
+ );
+
+ const handleClickItem = useCallback(
+ (item: SceneMenuItem) => {
+ switch (item.id) {
+ case PageName.Opening: {
+ setCurrentPage(PageName.Opening);
+ break;
+ }
+ case PageName.Main: {
+ break;
+ }
+ default: {
+ setCurrentPage(PageName.Main);
+ setCurrentScene(item.id as MainScenes);
+ break;
+ }
+ }
+ onClose?.();
+ },
+ [setCurrentPage, setCurrentScene, onClose],
+ );
+
+ return isBreakpointMd ? (
+
+ ) : (
+
+ );
+};
+
+const SceneMenuModalForDesktop: FC<
+ Pick & {
+ sceneList: SceneMenuItem[];
+ onClickItem: (item: SceneMenuItem) => void;
+ }
+> = ({ show, sceneList, onClickItem, onClose }) => {
+ return (
+
+ );
+};
+
+const SceneMenuModalForMobile: FC<
+ Omit & {
+ sceneList: SceneMenuItem[];
+ onClickItem: (item: SceneMenuItem) => void;
+ }
+> = ({ show, sceneList, onClickItem, onClose, onChangeArea, onChangeLanguage, onClick }) => {
+ const { t } = useTranslation();
+
+ const {
+ i18n: { language, changeLanguage },
+ } = useTranslation();
+ const { navigationState, setCurrentPage, setCurrentScene } = useNavigationContext();
+ const { sound, setSound } = useSoundContext();
+
+ const isOpening = navigationState.currentPage === PageName.Opening;
+ const isEpilogue = navigationState.currentScene === MainScenes.Scene6;
+
+ const [selectedArea, setSelectedArea] = useState ();
+
+ const handleBackToTopPage = useCallback(() => {
+ setCurrentPage(PageName.Opening);
+ setCurrentScene(OpeningScenes.Scene1);
+ }, [setCurrentPage, setCurrentScene]);
+
+ const handleChangeLanguage = useCallback(() => {
+ const changedTo = language === "en" ? "ja" : "en";
+ onChangeLanguage?.(changedTo);
+ changeLanguage(changedTo);
+ }, [changeLanguage, onChangeLanguage, language]);
+ const handleChangeArea = useCallback(
+ (v: string) => {
+ const foundArea = AREAS.find(p => p.id === v);
+ onChangeArea?.(foundArea);
+ setSelectedArea(foundArea);
+ },
+ [onChangeArea],
+ );
+
+ const handleToggleSound = useCallback(() => {
+ setSound(sound === "on" ? "off" : "on");
+ }, [sound, setSound]);
+
+ const languageLabel = LANGUAGES.find(p => p.id === language)?.label || "";
+
+ const renderHeader = useCallback(() => {
+ return (
+ <>
+
+
+
+
+ {!isOpening && (
+
+
+
+ )}
+ >
+ );
+ }, [handleBackToTopPage, handleChangeArea, onClick, selectedArea?.id, t, isOpening]);
+
+ const renderFooter = useCallback(() => {
+ return (
+
+
+
+
+
+ {sound === "on" ? (
+
+ ) : (
+
+ )}
+
+
+ );
+ }, [handleChangeLanguage, handleToggleSound, languageLabel, sound]);
+
+ return (
+
+ );
+};
+
+const Title = styled.div<{ color: string }>`
+ position: fixed;
+ top: 20px;
+ left: 20px;
+ display: flex;
+ color: ${({ color }) => color};
+ pointer-events: auto;
+ cursor: pointer;
+ height: auto;
+ width: 150px;
+`;
+
+const AreaWrapper = styled.div`
+ pointer-events: auto;
+ max-width: 100%;
+ margin: 20px 0;
+`;
+
+const Footer = styled.div`
+ display: flex;
+ margin-top: 20px;
+ gap: 10px;
+`;
+
+const RoundButton = styled(Button)`
+ pointer-events: auto;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: auto;
+ margin: auto;
+ padding: 1rem 1rem;
+ border: 1px solid #ffffff;
+ border-radius: 100svh;
+
+ padding: 0.6rem 0.6rem;
+`;
diff --git a/app/src/containers/SceneNavigationContainer.tsx b/app/src/containers/SceneNavigationContainer.tsx
new file mode 100644
index 0000000..ddb3075
--- /dev/null
+++ b/app/src/containers/SceneNavigationContainer.tsx
@@ -0,0 +1,155 @@
+import { styled } from "@linaria/react";
+import { FC, useCallback, useMemo } from "react";
+import { useTranslation } from "react-i18next";
+
+import { SceneDescription } from "../components/SceneDescription";
+import { SceneDescriptionProps } from "../components/SceneDescription/SceneDescription";
+import { SceneNavigation } from "../components/SceneNavigation";
+import { breakpointMediaQueries } from "../constants";
+import { useNavigationContext } from "../contexts/NavigationContexts";
+import { useScenePlayerContext } from "../contexts/ScenePlayerContexts";
+import { useHideAnimation } from "../hooks";
+import { MainScenes, PageName, PageScenes, SubScenes } from "../utils";
+
+const TIMEOUT_SCENE_DESCRIPTION = 500;
+
+export const SceneNavigationContainer: FC<{
+ onClick?: () => void;
+ resetTimer: number;
+ isSpNavOpen: boolean;
+ handleSpNavState: () => void;
+}> = ({ onClick, resetTimer, isSpNavOpen, handleSpNavState }) => {
+ const { navigationState, setCurrentScene, setCurrentSceneContentIndex } = useNavigationContext();
+ const {
+ t,
+ i18n: { language },
+ } = useTranslation();
+ const { shouldSceneDescriptioShow } = useScenePlayerContext();
+
+ const handleSetCurrentScene = useCallback(
+ (currentScene: PageScenes[PageName]) => {
+ setCurrentScene(currentScene);
+ setCurrentSceneContentIndex(0);
+ },
+ [setCurrentScene, setCurrentSceneContentIndex],
+ );
+
+ const moveToNextScene = useCallback(() => {
+ if (navigationState.currentPage !== PageName.Main) return;
+ const currentSceneIndex = Object.values(MainScenes).indexOf(
+ navigationState.currentScene as MainScenes,
+ );
+ const nextSceneIndex = (currentSceneIndex + 1) % Object.values(MainScenes).length;
+ const nextScene = Object.values(MainScenes)[nextSceneIndex];
+ setCurrentScene(nextScene);
+ }, [navigationState, setCurrentScene]);
+
+ const isToshin = navigationState.currentSubScene === SubScenes.Toshin;
+
+ const prevSceneDescriptionProps = useMemo(() => {
+ // WORKALOND TO CHECK UNDEFINED.
+ const title = t(`${navigationState.currentScene}_source_title`, {
+ defaultValue: "NONE",
+ });
+ const url = t(`${navigationState.currentScene}_source_url`, {
+ defaultValue: "NONE",
+ });
+ return {
+ content: t(`${navigationState.currentScene}_description`),
+ source: {
+ title: title !== "NONE" ? title : undefined,
+ url: url !== "NONE" ? url : undefined,
+ },
+ navigationState: navigationState,
+ };
+ }, [navigationState, t]);
+
+ const { value: sceneDescriptionProps, hide: hideSceneDescription } =
+ useHideAnimation(prevSceneDescriptionProps, TIMEOUT_SCENE_DESCRIPTION);
+
+ return (
+
+
+
+
+ {!isSpNavOpen && (
+
+
+
+ )}
+
+ );
+};
+
+export const SCENE_NAVIGATION_WIDTH = 250;
+
+const Root = styled.div`
+ display: flex;
+ ${breakpointMediaQueries.md} {
+ font-size: 12px;
+ line-height: 130%;
+ flex-direction: column-reverse;
+ }
+`;
+
+const SceneNavigationWrapper = styled.div<{ isSpNavOpen: boolean }>`
+ z-index: 99;
+ max-width: ${SCENE_NAVIGATION_WIDTH}px;
+ background: transparent;
+ display: flex;
+ flex-direction: column;
+ margin-left: ${({ isSpNavOpen }) => (isSpNavOpen ? `calc(100vw / 7)` : `20px`)};
+
+ ${breakpointMediaQueries.md} {
+ margin-left: ${({ isSpNavOpen }) => (isSpNavOpen ? `calc(100vw / 7)` : `10px`)};
+ }
+`;
+
+const SceneDescriptionWrapper = styled.div`
+ margin-left: 30px;
+ opacity: 0;
+ animation: ${TIMEOUT_SCENE_DESCRIPTION}ms ease-out 0s fadein;
+ animation-fill-mode: forwards;
+ @keyframes fadein {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+
+ &.hide {
+ opacity: 1;
+ animation: ${TIMEOUT_SCENE_DESCRIPTION}ms ease-out 0s fadeout;
+ animation-fill-mode: forwards;
+ @keyframes fadeout {
+ from {
+ opacity: 1;
+ }
+ to {
+ opacity: 0;
+ }
+ }
+ }
+
+ ${breakpointMediaQueries.md} {
+ margin-left: 10px;
+ margin-bottom: 10px;
+ min-height: 150px; // To prevent CLS
+ display: flex;
+ align-items: end;
+ }
+`;
diff --git a/app/src/containers/StartPageContainer.tsx b/app/src/containers/StartPageContainer.tsx
new file mode 100644
index 0000000..7e24c8f
--- /dev/null
+++ b/app/src/containers/StartPageContainer.tsx
@@ -0,0 +1,7 @@
+import { FC } from "react";
+
+import { StartPage } from "../components/StartPage";
+
+export const StartPageContainer: FC = () => {
+ return ;
+};
diff --git a/app/src/containers/StorytellingContainer.tsx b/app/src/containers/StorytellingContainer.tsx
new file mode 100644
index 0000000..b304def
--- /dev/null
+++ b/app/src/containers/StorytellingContainer.tsx
@@ -0,0 +1,216 @@
+import { styled } from "@linaria/react";
+import { FC, RefObject, useCallback, useEffect, useMemo, useRef, useState } from "react";
+
+import { CloseButton } from "../components/CloseButton";
+import { FadeAnimation } from "../components/FadeAnimation/FadeAnimation";
+import { LegendContentItem, MinimizedReport } from "../components/MinimizedReport";
+import { ScrollableContents } from "../components/ScrollableContents";
+import {
+ BURNED_OVERLAY,
+ BURNED_OVERLAY_CONTENT_INDEX,
+ BURNED_OVERLAY_MAIN_SCENE,
+ REPORT_WIDTH,
+ SCENE_LEGEND,
+ breakpointMediaQueries,
+} from "../constants";
+import { SouthernEarthquakeContent } from "../contents/SouthernEarthquakeContent";
+import { useNavigationContext } from "../contexts/NavigationContexts";
+import { useScenePlayerContext } from "../contexts/ScenePlayerContexts";
+import { useEffectSound, useHideAnimation } from "../hooks";
+import { useTranslation } from "../i18n/hooks";
+import { MainScenes } from "../utils";
+
+type Props = {
+ isOpen: boolean;
+ isBreakpointMd: boolean;
+ onClick: () => void;
+ reportRef: RefObject;
+};
+
+const TIMEOUT_SCENE_MINIMIZED_REPORT = 500;
+
+const MainScenesArray = Object.values(MainScenes);
+
+export const StorytellingContainer: FC = ({
+ isOpen,
+ onClick,
+ isBreakpointMd,
+ reportRef,
+}) => {
+ const {
+ navigationState: { currentScene },
+ } = useNavigationContext();
+
+ const minimizedReportContent = useRef(null);
+ const [minimizedReportContentHeight, setMinimizedReportContentHeight] = useState(0);
+
+ const onPageTransition = (pageIndex: number) => {
+ console.log("onPageTransition", pageIndex);
+ };
+
+ const { t } = useTranslation();
+ const { navigationState } = useNavigationContext();
+ const { shouldSceneDescriptioShow } = useScenePlayerContext();
+ const { play } = useEffectSound();
+
+ const title = useMemo(
+ () => t(MainScenesArray.find(v => v === navigationState.currentScene) ?? ""),
+ [t, navigationState.currentScene],
+ );
+ const { value: minimizedReportTitle, hide: hideTitle } = useHideAnimation(
+ title,
+ TIMEOUT_SCENE_MINIMIZED_REPORT,
+ );
+
+ const isInBurnedOverlay =
+ navigationState.currentScene === BURNED_OVERLAY_MAIN_SCENE &&
+ navigationState.currentSceneContentIndex === BURNED_OVERLAY_CONTENT_INDEX;
+
+ const translatedSceneLegends = useMemo(() => {
+ const sceneName = isInBurnedOverlay
+ ? BURNED_OVERLAY
+ : (navigationState.currentScene as MainScenes);
+ const nextList = SCENE_LEGEND[sceneName] as LegendContentItem[];
+ return nextList.map((next, nextIndex) => ({
+ ...next,
+ title: t(`${sceneName}_${nextIndex}_legend_title`),
+ items: next?.items?.map((v, i) => ({
+ ...v,
+ label: t(`${sceneName}_${nextIndex}_legend_${i}`),
+ })),
+ }));
+ }, [isInBurnedOverlay, navigationState.currentScene, t]);
+ const { value: sceneLegendPropsList, hide: hideLegend } = useHideAnimation(
+ translatedSceneLegends,
+ TIMEOUT_SCENE_MINIMIZED_REPORT,
+ );
+
+ const prevSceneDescriptionProps = useMemo(() => {
+ // WORKALOND TO CHECK UNDEFINED.
+ const title = t(`${navigationState.currentScene}_source_title`, {
+ defaultValue: "NONE",
+ });
+ const url = t(`${navigationState.currentScene}_source_url`, {
+ defaultValue: "NONE",
+ });
+ return {
+ content: t(`${navigationState.currentScene}_description`),
+ source: {
+ title: title !== "NONE" ? title : undefined,
+ url: url !== "NONE" ? url : undefined,
+ },
+ navigationState: navigationState,
+ };
+ }, [navigationState, t]);
+
+ const { value: sceneDescriptionProps, hide: hideSceneDescription } = useHideAnimation(
+ prevSceneDescriptionProps,
+ TIMEOUT_SCENE_MINIMIZED_REPORT,
+ );
+
+ useEffect(() => {
+ setMinimizedReportContentHeight(minimizedReportContent.current?.clientHeight ?? 0);
+ }, [minimizedReportTitle]);
+
+ const handleClickMinimizedReport = useCallback(
+ (isOpen: boolean) => {
+ if (isOpen) {
+ play("on");
+ } else {
+ play("off");
+ }
+ },
+ [play],
+ );
+
+ return (
+
+
+
+
+
+
+ {!isBreakpointMd && (
+
+
+
+
+
+ {[ ]}
+
+
+ )}
+
+ );
+};
+
+const Root = styled(FadeAnimation)`
+ position: relative;
+ height: 100%;
+`;
+
+const ReportContainer = styled.div<{ isOpen: boolean }>`
+ position: relative;
+ pointer-events: auto;
+ transition: transform 500ms ease-out;
+ transform: translateX(${({ isOpen }) => (isOpen ? "0" : `${REPORT_WIDTH}px`)});
+ max-height: 100svh;
+ max-height: 100dvh;
+ height: 100%;
+ width: ${REPORT_WIDTH}px;
+ background: #ffffff;
+ box-sizing: border-box;
+`;
+
+const MinimizedReportContainer = styled(FadeAnimation)`
+ position: absolute;
+ top: 50%;
+ transform: translateY(-50%);
+ width: ${REPORT_WIDTH}px;
+ display: flex;
+ justify-content: end;
+ padding-right: 30px;
+ box-sizing: border-box;
+
+ ${breakpointMediaQueries.md} {
+ position: relative;
+ padding-top: 20px;
+ padding-right: 0px;
+ top: 0;
+ width: 100%;
+ transform: translateY(0%);
+ }
+`;
+
+const CloseButtonContainer = styled.div`
+ position: absolute;
+ top: 30px;
+ right: 30px;
+ z-index: 1;
+`;
diff --git a/app/src/containers/ViewContainer.tsx b/app/src/containers/ViewContainer.tsx
new file mode 100644
index 0000000..4065af6
--- /dev/null
+++ b/app/src/containers/ViewContainer.tsx
@@ -0,0 +1,367 @@
+import { FlyToInterpolator, MapViewState } from "@deck.gl/core/typed";
+import { styled } from "@linaria/react";
+import { useCallback, useEffect, useRef, useState } from "react";
+import { ViewState } from "react-map-gl";
+
+import { CloseButton } from "../components/CloseButton";
+import { Float } from "../components/Float";
+import { REPORT_WIDTH, breakPoint, breakpointMediaQueries } from "../constants";
+import { SouthernEarthquakeContent } from "../contents/SouthernEarthquakeContent";
+import { useFirstVisitContext } from "../contexts/FirstVisitContexts";
+import { useNavigationContext } from "../contexts/NavigationContexts";
+import { useScenePlayerContext } from "../contexts/ScenePlayerContexts";
+import { useEffectSound, useMediaQuery, useRefValue } from "../hooks";
+import { LAYERS } from "../layers";
+import { MapRef } from "../map";
+import { MainScenes, PageName } from "../utils/types/common";
+
+import { AppFooterContainer } from "./AppFooterContainer";
+import { AppHeaderContainer, SelectedArea } from "./AppHeaderContainer";
+import { AppHeaderForMobileContainer } from "./AppHeaderForMobileContainer";
+import { BGMContainer } from "./BGMContainer";
+import { EpilogueContainer } from "./EpilogueContainer";
+import { InfoboxContainer } from "./InfoboxContainer";
+import { MapContainer } from "./MapContainer";
+import { OpeningContainer } from "./OpeningContainer";
+import { PlayControllerContainer } from "./PlayControllerContainer";
+import { SceneMenuModalContainer } from "./SceneMenuModalContainer";
+import { StorytellingContainer } from "./StorytellingContainer";
+
+export const ViewContainer = () => {
+ const { navigationState } = useNavigationContext();
+ const { firstVisit } = useFirstVisitContext();
+ const { isTutorialCompleted } = firstVisit;
+ const isOpening = navigationState.currentPage === PageName.Opening;
+ const isEpilogue = navigationState.currentScene === MainScenes.Scene6;
+ const initialLayers = LAYERS;
+ const { playing: isScenePlaying, play: playScene, stop: stopScene } = useScenePlayerContext();
+ const { play } = useEffectSound();
+
+ const [isReportOpen, setIsReportOpen] = useState(false);
+
+ const [isSceneMenuOpen, setIsSceneMenuOpen] = useState(false);
+ const handleOpenSceneMenu = useCallback(() => {
+ play("on");
+ setIsSceneMenuOpen(true);
+ }, [play]);
+ const handleCloseSceneMenu = useCallback(() => {
+ play("on");
+ setIsSceneMenuOpen(false);
+ }, [play]);
+
+ const isBreakpointMd = useMediaQuery(`(max-width: ${breakPoint.md}px)`);
+
+ const isReportOpenRef = useRefValue(isReportOpen);
+ const isScenePlayingRef = useRefValue(isScenePlaying);
+ const isStopedSceneByReportOpen = useRef(false);
+ const handleReportToggle = useCallback(() => {
+ if (isReportOpenRef.current) {
+ play("off");
+ } else {
+ play("on");
+ }
+
+ reportRef.current?.scrollTo(0, 0);
+
+ // Stop scene only in mobile
+ const next = !isReportOpenRef.current;
+ if (isBreakpointMd && next && isScenePlayingRef.current) {
+ stopScene();
+ isStopedSceneByReportOpen.current = true;
+ }
+ if (isBreakpointMd && !next && isStopedSceneByReportOpen.current) {
+ playScene();
+ isStopedSceneByReportOpen.current = false;
+ }
+
+ setIsReportOpen(next);
+ }, [isBreakpointMd, playScene, stopScene, play, isReportOpenRef, isScenePlayingRef]);
+
+ const reportRef = useRef(null);
+
+ const handleEffectSoundForClick = useCallback(() => {
+ play("on");
+ }, [play]);
+
+ const handleEffectSoundForChange = useCallback(() => {
+ play("on");
+ }, [play]);
+
+ const [viewState, setViewState] = useState | undefined>();
+
+ // TODO: Handle fly to
+ const handleChangeArea = useCallback(
+ (area?: SelectedArea) => {
+ handleEffectSoundForChange();
+ if (area) {
+ setViewState(v => ({
+ ...v,
+ longitude: area.lon,
+ latitude: area.lat,
+ zoom: 15,
+ transitionDuration: 300,
+ transitionInterpolator: new FlyToInterpolator(),
+ }));
+ }
+ },
+ [handleEffectSoundForChange],
+ );
+
+ const handleViewStateChange = useCallback((_viewState: MapViewState) => {}, []);
+
+ const handleChangeSubScene = useCallback(() => {
+ play("on");
+ }, [play]);
+
+ const mapRef = useRef(null);
+ const handleZoomIn = useCallback(() => {
+ handleEffectSoundForClick();
+ mapRef.current?.zoom(1.5);
+ }, [handleEffectSoundForClick]);
+ const handleZoomOut = useCallback(() => {
+ handleEffectSoundForClick();
+ mapRef.current?.zoom(-1.5);
+ }, [handleEffectSoundForClick]);
+
+ const additionalWidth = isReportOpen ? REPORT_WIDTH : 0;
+
+ // Report should be closed if main scene is changed
+ useEffect(() => {
+ setIsReportOpen(false);
+ }, [navigationState.currentScene]);
+
+ const [zIndexMinimizedReport, setZIndexMinimizedReport] = useState(isSceneMenuOpen ? 3 : 5);
+ useEffect(() => {
+ if (isSceneMenuOpen) {
+ setZIndexMinimizedReport(3);
+ } else {
+ const timer = setTimeout(() => setZIndexMinimizedReport(5));
+ return () => clearTimeout(timer);
+ }
+ }, [isSceneMenuOpen]);
+
+ useEffect(() => {
+ if (isOpening) return;
+ const html = window.document.querySelector("html");
+ if (!html) return;
+ html.style.backgroundColor = "#E6E6FA";
+ }, [isOpening]);
+
+ useEffect(() => {
+ const setVH = () => {
+ const vh = window.innerHeight * 0.01;
+ document.documentElement.style.setProperty("--app-vh", `${vh}px`);
+ };
+
+ setVH();
+ }, []);
+
+ return (
+
+
+
+ {isOpening && (
+
+ {isBreakpointMd ? (
+
+ ) : (
+
+ )}
+
+ )}
+
+ {!isOpening && isEpilogue && (
+
+ {isBreakpointMd ? (
+
+ ) : (
+
+ )}
+
+ )}
+
+ {!isOpening && !isEpilogue && (
+
+ {isBreakpointMd ? (
+
+ ) : (
+
+ )}
+
+ )}
+
+ {!isOpening && !isEpilogue && (
+
+
+
+ )}
+ {!isOpening && isBreakpointMd && !isEpilogue && (
+
+
+
+
+
+ )}
+
+ {!isOpening && !isBreakpointMd && !isEpilogue && (
+
+
+
+ )}
+
+ {!isOpening && }
+
+ {isBreakpointMd && (
+
+
+
+
+
+
+ )}
+
+
+
+
+
+ );
+};
+
+const Root = styled.div`
+ width: 100vw;
+ height: 100dvh;
+ position: relative;
+ display: grid;
+ grid-template:
+ "header header report" auto
+ "scene . report" 1fr
+ "footer footer report" auto / auto 1fr auto;
+
+ ${breakpointMediaQueries.md} {
+ grid-template:
+ "header header header" auto
+ ". . ." 1fr
+ "controller controller controller" auto
+ "report report report" auto;
+ }
+`;
+
+const ControllerPosition = styled.div`
+ margin: 0 15px;
+`;
+
+const Report = styled.div<{ isOpen: boolean }>`
+ max-height: 100%;
+ height: 100%;
+ padding: 20px 30px;
+ box-sizing: border-box;
+ position: fixed;
+ width: 100vw;
+ height: 100%;
+ transition:
+ opacity 300ms ease-out,
+ visibility 300ms ease-out;
+ overflow-y: auto;
+ opacity: ${({ isOpen }) => (isOpen ? "1" : "0")};
+ visibility: ${({ isOpen }) => (isOpen ? "visible" : "hidden")};
+ background-color: #fff;
+ z-index: 5;
+`;
+
+const CloseButtonContainer = styled.div`
+ position: fixed;
+ top: 10px;
+ right: 10px;
+ z-index: 1;
+`;
diff --git a/app/src/containers/ZoomContainer.tsx b/app/src/containers/ZoomContainer.tsx
new file mode 100644
index 0000000..cc1e008
--- /dev/null
+++ b/app/src/containers/ZoomContainer.tsx
@@ -0,0 +1,55 @@
+import { styled } from "@linaria/react";
+import { FC } from "react";
+
+import { ZoomIn } from "../components/icons/ZoomIn";
+import { ZoomOut } from "../components/icons/ZoomOut";
+
+type Props = {
+ onZoomIn?: () => void;
+ onZoomOut?: () => void;
+};
+
+export const ZoomContainer: FC = ({ onZoomIn, onZoomOut }) => {
+ return (
+
+
+
+
+
+
+
+
+ );
+};
+
+const Zoom = styled.div`
+ position: relative;
+ display: flex;
+ flex-direction: column;
+ gap: 15px;
+ justify-self: end;
+`;
+
+const ZoomButton = styled.button`
+ cursor: pointer;
+ background: transparent;
+ border: none;
+ padding: 0;
+
+ pointer-events: auto;
+ user-select: none;
+ & > * {
+ user-drag: none;
+ }
+
+ color: #463c64;
+
+ @media (hover: hover) {
+ &:hover {
+ color: #5a2dc5;
+ }
+ }
+ &:active {
+ color: #00bebe;
+ }
+`;
diff --git a/app/src/contents/Epilogue/Epilogue.stories.tsx b/app/src/contents/Epilogue/Epilogue.stories.tsx
new file mode 100644
index 0000000..518c005
--- /dev/null
+++ b/app/src/contents/Epilogue/Epilogue.stories.tsx
@@ -0,0 +1,13 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { Epilogue } from ".";
+
+const meta: Meta = {
+ component: Epilogue,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {};
diff --git a/app/src/contents/Epilogue/Epilogue.tsx b/app/src/contents/Epilogue/Epilogue.tsx
new file mode 100644
index 0000000..3734a89
--- /dev/null
+++ b/app/src/contents/Epilogue/Epilogue.tsx
@@ -0,0 +1,74 @@
+import { styled } from "@linaria/react";
+import { FC } from "react";
+import { useTranslation } from "react-i18next";
+
+import { Button } from "../../components/Button";
+import { breakpointMediaQueries } from "../../constants";
+
+import { Initiatives } from "./Initiatives";
+import { Preparations } from "./Preparations";
+import { Sources } from "./Sources";
+
+type Props = {
+ handleBackButton: () => void;
+ onClick: () => void;
+};
+
+export const Epilogue: FC = ({ handleBackButton, onClick }) => {
+ const { t } = useTranslation();
+
+ const handleClickButton = () => {
+ onClick();
+ handleBackButton();
+ };
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ {t("Watch again from the beginning")}
+
+
+ );
+};
+
+const Root = styled.div``;
+
+const ContentContainer = styled.div<{ bgColor: string }>`
+ padding: 0 12rem 4rem;
+ background-color: ${({ bgColor }) => bgColor};
+
+ ${breakpointMediaQueries.md} {
+ padding: 20px 30px;
+ }
+`;
+
+const BackButtonContainer = styled.div`
+ display: flex;
+ justify-content: center;
+ width: 100%;
+ background-color: #ffffff;
+ padding-bottom: 200px;
+`;
+
+const BackButton = styled(Button)`
+ padding: 0 3rem;
+ font-size: 20px;
+ cursor: pointer;
+ max-width: 400px;
+ height: 60px;
+ border: 1px #463c64 solid;
+ background: #ffffff;
+ border-radius: 60px;
+ margin-top: 124px;
+ font-color: #463c64;
+ margin: auto;
+`;
diff --git a/app/src/contents/Epilogue/ForTheFuture.tsx b/app/src/contents/Epilogue/ForTheFuture.tsx
new file mode 100644
index 0000000..ef5adc6
--- /dev/null
+++ b/app/src/contents/Epilogue/ForTheFuture.tsx
@@ -0,0 +1,250 @@
+import { styled } from "@linaria/react";
+import { FC, useState, useEffect } from "react";
+import { useTranslation } from "react-i18next";
+
+import { Button } from "../../components/Button";
+import { WidthLimitedContent } from "../../components/Contents/BaseContent";
+import { breakpointMediaQueries, TITLE_FONT_FAMILY } from "../../constants";
+import { splitN } from "../../utils";
+
+type ForTheFutureProps = {
+ setShowMoreDetails: (show: boolean) => void;
+};
+
+const SCENE_META = {
+ delay: 500,
+ slidin: 1000,
+ fadein: 1000,
+ waitBeforeSlideIn: 3000,
+ fadeout: 1000,
+};
+
+export const ForTheFuture: FC = ({ setShowMoreDetails }) => {
+ const { t } = useTranslation();
+ const [showContent2, setShowContent2] = useState(false);
+ const [showNextButton, setShowNextButton] = useState(false);
+ const [showMoreDetailsButton, setShowMoreDetailsButton] = useState(false);
+
+ const CONTENT1 = {
+ ...SCENE_META,
+ content: [
+ ...splitN(
+ t(
+ "For the future How was the story of the past and future? So far, I have conveyed various perspectives on the risk of disasters. Disasters strike our daily lives without warning. The damage caused by significant tremors is tremendous, swiftly taking away the peaceful days that we had been enjoying.",
+ ),
+ ),
+ ],
+ };
+ const CONTENT2 = {
+ ...SCENE_META,
+ content: [
+ ...splitN(
+ t(
+ "To overcome such hardships, we need human strength, bonds, and resilience. In recent years, lessons learned from large-scale disasters have led to steady progress in disaster preparedness measures by national and municipal governments.",
+ ),
+ ),
+ ],
+ };
+
+ const content1 = CONTENT1.content.map((c, i) => (
+ <>
+ {c && (
+
+ {c}
+
+ )}
+
+ >
+ ));
+ const content2 = CONTENT2.content.map((c, i) => (
+ <>
+ {c && (
+
+ {c}
+
+ )}
+
+ >
+ ));
+
+ useEffect(() => {
+ const timer1 = setTimeout(() => {
+ setShowNextButton(true);
+ }, 9000);
+
+ return () => {
+ clearTimeout(timer1);
+ };
+ }, []);
+
+ useEffect(() => {
+ if (showContent2) {
+ const timer2 = setTimeout(() => {
+ setShowMoreDetailsButton(true);
+ }, 4000);
+
+ return () => clearTimeout(timer2);
+ }
+ }, [showContent2]);
+
+ return (
+
+
+
+ {[content1[0], ...(showContent2 ? [] : content1.slice(1))]}
+ {showContent2 && content2}
+
+
+ {showNextButton && !showContent2 && (
+
+ setShowContent2(true)}>{t("NEXT")}
+
+ )}
+ {showMoreDetailsButton && (
+
+ setShowMoreDetails(true)}>{t("More Details")}
+
+ )}
+
+ );
+};
+
+const ContentWrapper = styled.div`
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: flex-start;
+ width: 80%;
+ height: 100%;
+ padding: 0 3rem;
+`;
+
+const Content = styled.div<{ length: number }>`
+ color: #463c64;
+ font-size: 25px;
+
+ & > div {
+ box-sizing: border-box;
+ padding: 7px 10px;
+ margin: 7px 0;
+ display: inline-block;
+ background-color: #e6e6fa;
+ transform: translateY(100%);
+ opacity: 0;
+ animation:
+ ${SCENE_META.fadein}ms ease-out 0ms 1 normal forwards running fadein,
+ ${SCENE_META.slidin}ms ease-out 0ms 1 normal forwards running slidein;
+ @keyframes slidein {
+ 0% {
+ transform: translateY(100%);
+ }
+ 100% {
+ transform: translateY(0%);
+ }
+ }
+ @keyframes fadein {
+ 0% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+ }
+
+ &.bold {
+ font-family: ${TITLE_FONT_FAMILY};
+ font-size: 60px;
+ font-weight: lighter;
+ }
+ &:nth-of-type(1).bold {
+ margin-top: -5px;
+ margin-bottom: 70px;
+ }
+ &:nth-last-of-type(1).bold {
+ margin-top: 70px;
+ }
+
+ ${breakpointMediaQueries.md} {
+ font-size: 16px;
+ margin: 1px 0;
+ padding: 2px 5px;
+ &.bold {
+ font-size: 30px;
+ }
+ &:nth-of-type(1).bold {
+ margin-bottom: 40px;
+ }
+ &:nth-last-of-type(1).bold {
+ margin-top: 40px;
+ }
+ }
+
+ ${breakpointMediaQueries.sm} {
+ font-size: 12px;
+ margin: 1px 0;
+ padding: 2px 5px;
+ &.bold {
+ font-size: 20px;
+ }
+ &:nth-of-type(1).bold {
+ margin-bottom: 20px;
+ }
+ &:nth-last-of-type(1).bold {
+ margin-top: 20px;
+ }
+ }
+ }
+`;
+
+const ButtonContainer = styled.div`
+ display: flex;
+ justify-content: center;
+ width: 100%;
+ margin-top: 50px;
+ padding-bottom: 200px;
+ animation: fadeIn 1s ease-out forwards;
+
+ @keyframes fadeIn {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+`;
+
+const StyledButton = styled(Button)`
+ padding: 0 5rem;
+ font-size: 20px;
+ cursor: pointer;
+ max-width: 400px;
+ height: 60px;
+ border: 1px #463c64 solid;
+ background: #ffffff;
+ border-radius: 60px;
+ margin-top: 124px;
+ font-color: #463c64;
+ margin: auto;
+
+ ${breakpointMediaQueries.md} {
+ height: 50px;
+ font-size: 18px;
+ }
+
+ ${breakpointMediaQueries.sm} {
+ height: 40px;
+ font-size: 16px;
+ }
+`;
diff --git a/app/src/contents/Epilogue/Initiatives.tsx b/app/src/contents/Epilogue/Initiatives.tsx
new file mode 100644
index 0000000..ac65593
--- /dev/null
+++ b/app/src/contents/Epilogue/Initiatives.tsx
@@ -0,0 +1,205 @@
+import { styled } from "@linaria/react";
+import { FC, useMemo } from "react";
+import { useTranslation, Trans } from "react-i18next";
+
+import { WidthLimitedContent } from "../../components/Contents/BaseContent";
+import { LineChart } from "../../components/Contents/Charts";
+import {
+ CHART_GREEN,
+ CHART_PURPLE,
+ CHART_YELLOW,
+} from "../../components/Contents/Charts/constants";
+import { TITLE_FONT_FAMILY } from "../../constants";
+import { splitN } from "../../utils";
+
+type Props = {};
+
+export const Initiatives: FC = () => {
+ const { t, i18n } = useTranslation();
+ const isEn = i18n.language === "en";
+
+ return (
+
+ {t("Public Assistance Initiatives")}
+
+
+ ({
+ labels: isEn
+ ? ["", "2017", "2018", "2019", "2020", "2021", "2022", ""]
+ : ["", "17年度", "18年度", "19年度", "20年度", "21年度", "22年度", ""],
+ datasets: [
+ {
+ data: [NaN, 83, 90, 97, 100, 100],
+ color: CHART_GREEN,
+ legendText: t(
+ "Seismic retrofitting rate for water pipes(Evacuation shelter, Main Station)",
+ ),
+ dataLegendAlign: "start",
+ },
+ {
+ data: [NaN, 83.8, 84.8, 85.9, 86.7, 87.1, 87.7],
+ color: CHART_PURPLE,
+ legendText: t(
+ "Seismic retrofitting rate for buildings along designated transportation routes",
+ ),
+ dataLegendAlign: "end",
+ },
+ {
+ data: [NaN, NaN, 83.9, 85.5, 87.1, 91.9, 93.5],
+ color: CHART_YELLOW,
+ legendText: t("Progress of continuity planning in local governments"),
+ dataLegendAlign: "end",
+ },
+ ],
+ axisLabel: "(%)",
+ }),
+ [isEn, t],
+ )}
+ />
+
+ {t("Source: ")}
+
+ {t("Tokyo Disaster Reduction Plan Progress Report 2023")}
+
+
+
+
+
+ {splitN(
+ t(
+ 'The "damage estimation" presented so far is based on data calculated to realistically reflect the situation of Tokyo as a major city. However, hypotheses always have exceptions. Natural disasters inherently involve unpredictable elements.',
+ ),
+ )}
+
+
+
+
+
+
+
+ {t(
+ "Percentage of public facilities serving as disaster prevention centers that are earthquake resistant",
+ )}
+
+
+
+ ({
+ labels: [
+ "",
+ "2013",
+ "2014",
+ "2015",
+ "2016",
+ "2017",
+ "2018",
+ "2019",
+ "2020",
+ "2021",
+ "",
+ ],
+ datasets: [
+ {
+ data: [NaN, 86.9, 89.8, 92.2, 94.3, 95.2, 95.7, 96.3, 96.8, 97.3],
+ color: CHART_GREEN,
+ legendText: t("Metropolitan area"),
+ dataLegendAlign: "end",
+ },
+ {
+ data: [NaN, 82.6, 85.4, 88.3, 90.9, 92.2, 93.1, 94.2, 95.1, 95.6],
+ color: CHART_PURPLE,
+ legendText: t("Nation wide"),
+ dataLegendAlign: "start",
+ },
+ ],
+ axisLabel: "(%)",
+ }),
+ [t],
+ )}
+ />
+
+ {t("Source: ")}
+
+ {t("Metropolitan Area White Paper 2023")}
+
+
+
+
+
+ {splitN(
+ t(
+ "Furthermore, it is crucial to establish a comprehensive system to respond promptly according to the situation of disasters. Tokyo Metropolitan Government's disaster response system, centered around the Disaster Management Headquarters, is well-organized and collaborates with national, local government, and other agencies based on information from the Disaster Prevention Center to respond to disasters.",
+ ),
+ )}
+
+
+ {t("Tokyo Disaster Prevention System")}
+
+
+ {isEn ? (
+
+ ) : (
+
+ )}
+
+ {t("Source: ")}
+
+ {t("Tokyo Metropolitan Government's Crisis Management System")}
+
+
+
+
+
+ {splitN(
+ t(
+ "Based on the damage estimation, various agencies including the Tokyo Metropolitan Government, municipalities, and others will revise local disaster prevention plans and implement various measures to prepare for future disasters. And when a large earthquake occurs, it is essential for each citizen, community, businesses, and society as a whole to work together to minimize damage. We must join forces to protect lives and preserve what is precious.",
+ ),
+ )}
+
+
+ {t("Society-Wide Initiatives")}
+
+ {isEn ? (
+
+ ) : (
+
+ )}
+
+
+
+
+
+
+ );
+};
+
+const FirstH2 = styled.span`
+ display: block;
+ font-family: ${TITLE_FONT_FAMILY};
+ font-weight: bold;
+ font-weight: lighter;
+ font-size: 50px;
+ margin: 10px 0;
+`;
diff --git a/app/src/contents/Epilogue/Preparations.tsx b/app/src/contents/Epilogue/Preparations.tsx
new file mode 100644
index 0000000..42a8f15
--- /dev/null
+++ b/app/src/contents/Epilogue/Preparations.tsx
@@ -0,0 +1,91 @@
+import { styled } from "@linaria/react";
+import { FC } from "react";
+import { useTranslation } from "react-i18next";
+
+import { WidthLimitedContent } from "../../components/Contents/BaseContent";
+
+type Props = {};
+
+export const Preparations: FC = () => {
+ const { t } = useTranslation();
+
+ return (
+
+ {t("Let’s Get Prepared")}
+
+
+
+
+
+ {t(
+ '"Disaster Preparedness Tokyo" is a fully Tokyo-specific disaster preparedness guide that takes into account Tokyo\'s regional characteristics, urban structure, and the lifestyle of its residents. It provides easy-to-understand information on proactive preparation for disasters, as well as how to respond during emergencies, making it a valuable resource that can be utilized immediately and proves useful when the need arises.',
+ )}
+
+
+
+
+
+
+ {t(
+ "It includes disaster prevention measures that can be easily implemented in daily life, such as breastfeeding and crime prevention measures in evacuation shelters, as well as solutions to various challenges faced during disaster-affected living conditions.",
+ )}
+
+
+
+
+
+
+ {t(
+ "It is the official Tokyo disaster prevention app that is useful both in everyday life and in times of emergency. With the concept of 'play,' 'learn,' and 'use,' it is equipped with content that is helpful during disasters, allowing users to gain basic knowledge of disaster prevention in an enjoyable way.",
+ )}
+
+
+
+
+
+ {t(
+ "It's a website that summarizes what you can do before a disaster strikes, including how to arrange furniture, what to stockpile, and a checklist for emergency evacuation bags.",
+ )}
+
+
+
+
+ );
+};
+
+const LinksGrid = styled.div`
+ display: grid;
+ grid-template:
+ "1fr 1fr"
+ "1fr 1fr";
+ gap: 20px;
+ margin: 20px 0;
+`;
diff --git a/app/src/contents/Epilogue/Sources.tsx b/app/src/contents/Epilogue/Sources.tsx
new file mode 100644
index 0000000..c21cd6d
--- /dev/null
+++ b/app/src/contents/Epilogue/Sources.tsx
@@ -0,0 +1,108 @@
+import { styled } from "@linaria/react";
+import { FC } from "react";
+import { useTranslation } from "react-i18next";
+
+import { WidthLimitedContent } from "../../components/Contents/BaseContent";
+import { splitN } from "../../utils";
+
+type Props = {};
+
+const sources = [
+ {
+ i18nKey: "Asahi Shimbun, May 25, 2022",
+ link: "https://digital.asahi.com/articles/ASQ5T4TGCQ5SUTIL01H.html",
+ },
+ {
+ i18nKey: "MLIT | White Paper on National Capital Region Development,The Year of Reiwa 4",
+ link: "https://www.mlit.go.jp:8088/report/press/toshi03_hh_000090.html",
+ },
+ {
+ i18nKey: "MLIT | About Liquefaction phenomenon",
+ link: "https://www.mlit.go.jp/toshi/toshi_fr1_000010.html",
+ },
+ {
+ i18nKey:
+ "Disaster Prevention Information | Tokyo Metropolitan Government's Crisis Management System",
+ link: "https://www.bousai.metro.tokyo.lg.jp/taisaku/torikumi/1000067/1000369.html",
+ },
+ {
+ i18nKey:
+ "This site is based on the Tokyo Metropolitan Government's Disaster Prevention website's \"Disaster Prevention Information | Projected Damage to Tokyo from a Capital Region Earthquake and Similar Events (Announced on May 25, 2022),\" and processed and visualized independently by this site.",
+ link: "https://www.bousai.metro.tokyo.lg.jp/taisaku/torikumi/1000902/1021571.html",
+ },
+ {
+ i18nKey:
+ "Disaster Prevention Information | The Aspect of Possible Damage in One's Immediate Surroundings",
+ link: "https://www.bousai.metro.tokyo.lg.jp/taisaku/torikumi/1000902/1021641/index.html",
+ },
+ {
+ i18nKey:
+ "Disaster Prevention Information | Major Initiatives and Disaster Reduction Effects Over the Past 10 Years",
+ link: "https://www.bousai.metro.tokyo.lg.jp/_res/projects/default_project/_page_/001/021/571/20220525/torikumi.pdf",
+ },
+ {
+ i18nKey: "Tokyo Disaster Preparedness Plan Progress Report 2023",
+ link: "https://www.metro.tokyo.lg.jp/tosei/hodohappyo/press/2023/03/31/12.html",
+ },
+ {
+ i18nKey:
+ 'Tokyo Metropolitan Government Bureau of Urban Development | "Mokumitsu Area Fireproofing 10-Year Project" Implementation Policy',
+ link: "https://www.toshiseibi.metro.tokyo.lg.jp/bosai/mokumitu/pdf/houshin.pdf",
+ },
+ {
+ i18nKey:
+ "Tokyo Metropolitan Government Bureau of Urban Development | The Fireproofing Special Zone System and Efforts in Specific Development Routes",
+ link: "https://www.funenka.metro.tokyo.lg.jp/initiatives/fireproof-special-zone-system/",
+ },
+ {
+ i18nKey: "Tokyo earthquake-resistant portal site | When will the big earthquake occur?",
+ link: "https://www.taishin.metro.tokyo.lg.jp/why/topic01.html",
+ },
+ {
+ i18nKey:
+ "Tokyo Metropolitan Government's Liquefaction Countermeasures Portal Site | What is Liquefaction?",
+ link: "https://kenchiku-ekijoka.metro.tokyo.lg.jp/about.html",
+ },
+ {
+ i18nKey: "Tokyo Fire Department | Guidebook for High School Student Members",
+ link: "https://www.tfd.metro.tokyo.lg.jp/inf/bfc/high_school/cp5/index.html",
+ },
+ {
+ i18nKey:
+ "Colorized Photo Provision and Project Advice: University of Tokyo Graduate School, Hidenori Watanave Laboratory",
+ link: "https://labo.wtnv.jp/",
+ },
+];
+
+const SourceItem: FC<{ text: string; link: string }> = ({ text, link }) => (
+
+ {splitN(text)}
+
+ {link}
+
+
+);
+
+export const Sources: FC = () => {
+ const { t } = useTranslation();
+
+ return (
+
+ {t("Reference Links and Sources")}
+ {sources.map(({ i18nKey, link }, i) => (
+
+ ))}
+
+ );
+};
+
+const Source = styled.div`
+ margin: 20px 0;
+ font-size: 14px;
+ & > p {
+ margin-bottom: 0px;
+ }
+ & > a {
+ word-break: break-all;
+ }
+`;
diff --git a/app/src/contents/Epilogue/index.ts b/app/src/contents/Epilogue/index.ts
new file mode 100644
index 0000000..03a3e4d
--- /dev/null
+++ b/app/src/contents/Epilogue/index.ts
@@ -0,0 +1,2 @@
+export { Epilogue } from "./Epilogue";
+export { ForTheFuture } from "./ForTheFuture";
diff --git a/app/src/contents/SouthernEarthquakeContent/BurnedContent.tsx b/app/src/contents/SouthernEarthquakeContent/BurnedContent.tsx
new file mode 100644
index 0000000..328dbc8
--- /dev/null
+++ b/app/src/contents/SouthernEarthquakeContent/BurnedContent.tsx
@@ -0,0 +1,256 @@
+import { FC, useMemo } from "react";
+import { useTranslation, Trans } from "react-i18next";
+
+import { BaseContent } from "../../components/Contents/BaseContent";
+import { BarAndLineChart, DoublePieChart } from "../../components/Contents/Charts";
+import { splitN } from "../../utils";
+
+type Props = {};
+
+export const BurnedContent: FC = () => {
+ const { t, i18n } = useTranslation();
+ const isEn = i18n.language === "en";
+
+ return (
+
+ {t("Burned buildings distribution")}
+
+
+ {t(
+ "When the Central South Region Earthquake occurs, it is estimated that up to approximately 120,000 houses could be lost due to fires. This number represents about 4% of the entire Tokyo area, excluding the island regions.",
+ )}
+
+
+
+ {t(
+ "Table: List of number of burned buildings (including shaking damage) at wind speed of 8m/s",
+ )}
+
+
+ {isEn ? (
+
+ ) : (
+
+ )}
+
+ {t("Source: ")}
+
+ {t("Report on Assumed Damage to Tokyo from a Metropolitan Earthquake, etc.")}
+
+
+
+
+ {t("Legend")}:{t("Central South Burned Buildings")}
+
+
+
+ {t("Actions for fireproofing in the previous decade")}
+
+
+
+
+ {t(
+ "As a result, the density of wooden housing areas decreased from approximately 16 thousand hectares to approximately 8.6 thousand hectares. The fire-resistant area rate in urban areas (development areas), which indicates the fire resistance of the city, increased significantly from about 58.4% to about 64.0%.",
+ )}
+
+
+ {t(
+ "However, the number of firefighting brigade members, who play a crucial role in regional disaster prevention activities such as firefighting and rescue operations, decreased from approximately 24,000 to approximately 22,000.",
+ )}
+
+
+ {t("Source: ")}
+
+ {t(
+ "Disaster Prevention Information | Major Initiatives and Disaster Reduction Effects Over the Past 10 Years",
+ )}
+
+ ,
+
+ {t('Bureau of Construction | Introduction to the "Mokumitsu Project"')}
+
+
+
+ {t("The fire-resistant area rate in urban areas (development area)")}
+ ({ percent: 58.4, title: t("2012") }), [t])}
+ pie2={useMemo(() => ({ percent: 64.0, title: t("2022") }), [t])}
+ />
+
+ {t("Source: ")}
+
+ {t(`Major initiatives and disaster mitigation effects over the past 10 years`)}
+
+
+
+ {t("The effectiveness and challenges of fireproofing")}
+
+ {splitN(
+ t(
+ "From 2012 to 2022, Tokyo has made efforts in fireproofing, resulting in a decrease in the estimated number of buildings lost due to fires from about 200,000 to about 120,000, and a reduction in fire-related deaths from about 4,100 to about 2,500. However, significant damage is still anticipated, and there are concerns about the decline in the number of firefighting brigade members, leading to a decrease in the overall disaster prevention capacity of the region. This highlights the need for further efforts in both hardware and software measures to address the challenges effectively.",
+ ),
+ )}
+
+ ({
+ labels: [t("2012 estimated"), t("2022 estimated")],
+ datasets: {
+ base: {
+ data: [200000, 120000],
+ axisLabel: t("Number of buildings burned (buildings)"),
+ legendText: t("Number of buildings burned"),
+ dataLabelPrefix: t("Approximately"),
+ axisMax: 240000,
+ tickStepSize: 60000,
+ },
+ primary: {
+ data: [4100, 2500],
+ axisLabel: t("Number of deaths by fire (persons)"),
+ legendText: t("Number of deaths"),
+ dataLabelPrefix: t("Approximately"),
+ axisMax: 4500,
+ tickStepSize: 1000,
+ },
+ },
+ legendMaxWidth: isEn ? "150px" : undefined,
+ isEn,
+ }),
+ [t, isEn],
+ )}
+ />
+
+ {t("Source: ")}
+
+ {t(
+ "Disaster Prevention Information | Major Initiatives and Disaster Reduction Effects Over the Past 10 Years",
+ )}
+
+
+
+ {t("Measures for fire outbreak suppression")}
+
+
+
+
+
+ {splitN(
+ t(
+ "Here, we will look at the impact of implementing fire outbreak suppression measures, specifically focusing on reducing electrical-related fires and increasing the cases that can be extinguished at an early stage.",
+ ),
+ )}
+
+
+ {splitN(
+ t(
+ 'Currently, the rate of reducing electrical-related fires is set at 8.3%, indicated by the "installation rate of seismic breakers." Additionally, the early extinguishment rate during the Tokyo Metropolitan Area Direct Subsurface Earthquake (winter, evening, wind speed of 8m/s) is 36.6%. We will consider the effects of implementing measures up to "Accelerator 1" (reducing electrical-related fires by about 25% and increasing early extinguishment by about 60%) and "Accelerator 2" (reducing electrical-related fires by about 50% and increasing early extinguishment by about 90%).',
+ ),
+ )}
+
+
+ {isEn ? (
+
+ ) : (
+
+ )}
+
+ {t("Calculation criteria for fire suppression measures' effectiveness")}
+
+
+ {t("Effect of fire prevention initiative")}
+
+ {t(
+ 'If "Accelerator 1" is achieved, it is estimated that both the number of burnt buildings and the number of fatalities will decrease by approximately 70% compared to the current situation. Furthermore, if "Accelerator 2" is achieved, both the number of burnt buildings and the number of fatalities can be reduced by an additional approximately 60% from "Accelerator 1," which corresponds to a 90% reduction from the current situation.',
+ )}
+
+ {isEn ? (
+
+ ) : (
+
+ )}
+
+ {splitN(
+ t(
+ "Impact of mitigation measures on fire and loss cases(Central South Region Earthquake,Winter/afternoon/at wind speed of 8m/s)",
+ ),
+ )}
+
+ ({
+ labels: [t("Present condition"), t("Improvement①"), t("Improvement②")],
+ datasets: {
+ base: {
+ data: [118734, 39573, 14067],
+ axisLabel: t("Number of buildings burned (buildings)"),
+ legendText: t("Number of buildings burned"),
+ axisMax: 150000,
+ tickStepSize: 50000,
+ },
+ primary: {
+ data: [2462, 807, 293],
+ axisLabel: t("Number of deaths by fire (persons)"),
+ legendText: t("Number of deaths"),
+ axisMax: 3000,
+ tickStepSize: 1000,
+ },
+ },
+ compareLabels: [
+ {
+ text: t("Approximately 70% reduction"),
+ left: isEn ? "30%" : "40%",
+ top: isEn ? "46%" : "43%",
+ },
+ {
+ text: t("Approximately 60% reduction"),
+ left: isEn ? "62%" : "63%",
+ top: isEn ? "62%" : "69%",
+ },
+ ],
+ legendMaxWidth: isEn ? "150px" : undefined,
+ chartHeight: isEn ? "250px" : undefined,
+ isEn,
+ }),
+ [t, isEn],
+ )}
+ />
+ {splitN(t("Impact of measures on death toll"))}
+
+ {t("Source: ")}
+
+ {t(
+ 'Report on "Estimation of damage in the event of an earthquake directly hitting Tokyo"',
+ )}
+
+
+
+ );
+};
diff --git a/app/src/contents/SouthernEarthquakeContent/DestroyedContent.tsx b/app/src/contents/SouthernEarthquakeContent/DestroyedContent.tsx
new file mode 100644
index 0000000..720874f
--- /dev/null
+++ b/app/src/contents/SouthernEarthquakeContent/DestroyedContent.tsx
@@ -0,0 +1,214 @@
+import { FC, useMemo } from "react";
+import { useTranslation, Trans } from "react-i18next";
+
+import { BaseContent } from "../../components/Contents/BaseContent";
+import { BarAndLineChart } from "../../components/Contents/Charts";
+import { splitN } from "../../utils";
+
+type Props = {};
+
+export const DestroyedContent: FC = () => {
+ const { t, i18n } = useTranslation();
+ const isEn = i18n.language === "en";
+
+ return (
+
+ {t("Collapsed buildings distribution")}
+
+
+
+ {isEn ? (
+
+ ) : (
+
+ )}
+
+ {t(`*"Shaking" includes damage to man-made land.`)}
+
+ {t(`*Totals may not add up due to rounding to the nearest whole number.`)}
+
+ {t(`Source: `)}
+
+ {t(
+ "Report on Assumed Damage to Tokyo from an Earthquake, etc., Directly Under the Tokyo Metropolitan Area",
+ )}
+
+
+
+ {t("Legend")}:{t("Collapse rate within the area range")}
+
+ {isEn ? (
+
+ ) : (
+
+ )}
+
+ {t("Increase in seismic retrofitting rate")}
+
+
+
+
+ {t(`Source: `)}
+
+ {t(
+ "Report on Assumed Damage to Tokyo from an Earthquake, etc., Directly Under the Tokyo Metropolitan Area",
+ )}
+
+
+
+ {t("Seismic retrofitting outcomes")}
+ ({
+ labels: [t("Present condition"), t("100% earthquake resistant"), t("All rebuilt")],
+ datasets: {
+ base: {
+ data: [80530, 31552, 14252],
+ axisLabel: t("Number of buildings totally destroyed due to shaking (buildings)"),
+ legendText: t("Total number of buildings"),
+ tickStepSize: 20000,
+ },
+ primary: {
+ data: [3209, 1154, 474],
+ axisLabel: t("Number of deaths due to shaking (persons)"),
+ legendText: t("Number of deaths"),
+ tickStepSize: 1000,
+ axisMax: 4000,
+ },
+ },
+ compareLabels: [
+ {
+ text: t("Approximately 60% reduction"),
+ left: isEn ? "41%" : "42%",
+ top: isEn ? "40%" : "45%",
+ },
+ {
+ text: t("Approximately 50% reduction"),
+ left: isEn ? "64%" : "64%",
+ top: isEn ? "57%" : "66%",
+ },
+ ],
+ chartHeight: isEn ? "260px" : undefined,
+ isEn,
+ }),
+ [t, isEn],
+ )}
+ />
+
+ {splitN(
+ t(
+ "If seismic retrofitting according to the '1981 Standards (New Seismic Standards)' is achieved, it is estimated that the number of completely collapsed buildings and fatalities will decrease by about 60% compared to the current situation. If seismic retrofitting according to the '2000 Standards' is achieved, it is estimated that the number of completely collapsed buildings and fatalities will decrease by an additional approximately 50% compared to seismic retrofitting based on the '1981 Standards (New Seismic Standards)' (a total reduction of about 80% from the current situation).",
+ ),
+ )}
+
+
+
+ {t(
+ `*Depending on the magnitude of the earthquake shaking, even buildings based on the 2000 standard may suffer a certain degree of damage, so the damage will not be zero.`,
+ )}
+
+
+ {t(`*"Shaking" includes damage to man-made land.`)}
+
+ {t(`*Totals may not add up due to rounding to the nearest whole number.`)}
+
+ {t(`Source: `)}
+
+ {t(
+ "Report on Assumed Damage to Tokyo from an Earthquake, etc., Directly Under the Tokyo Metropolitan Area",
+ )}
+
+
+
+
+ {t(
+ "Increase in the implementation rate of measures for preventing furniture and object tipping/falling, and the resultant outcomes",
+ )}
+
+ ({
+ labels: [t("Present condition"), t("Improvement①"), t("Improvement②")],
+ datasets: {
+ base: {
+ data: [239, 141, 44],
+ axisLabel: t("Number of deaths (persons)"),
+ legendText: t("Number of deaths"),
+ axisMax: 300,
+ },
+ primary: {
+ data: [1362, 818, 255],
+ axisLabel: t("Number of seriously injured (persons)"),
+ legendText: t("Number of seriously injured"),
+ axisMax: 1500,
+ tickStepSize: 500,
+ },
+ },
+ compareLabels: [
+ {
+ text: t("Approximately 40% reduction"),
+ left: isEn ? "24%" : "34%",
+ top: isEn ? "34%" : "25%",
+ },
+ {
+ text: t("Approximately 70% reduction"),
+ left: isEn ? "62%" : "62%",
+ top: isEn ? "60%" : "57%",
+ },
+ ],
+ legendMaxWidth: isEn ? "150px" : undefined,
+ isEn,
+ }),
+ [t, isEn],
+ )}
+ />
+
+
+
+
+ {t(
+ "It's important to note that even if furniture and objects are fixed, if they are not properly secured, the effectiveness of implementation can be reduced. Therefore, promoting the proper method of securing furniture through future dissemination and awareness campaigns is expected to further mitigate damages.",
+ )}
+
+
+ {splitN(
+ t(
+ `*It is assumed that the percentage of ineffective implementation will be reduced to 10% by encouraging appropriate fall prevention measures.`,
+ ),
+ )}
+
+
+ {t(`*"Shaking" includes damage to man-made land.`)}
+
+ {t(`*Totals may not add up due to rounding to the nearest whole number.`)}
+
+ {t(`Source: `)}
+
+ {t(
+ "Report on Assumed Damage to Tokyo from an Earthquake, etc., Directly Under the Tokyo Metropolitan Area",
+ )}
+
+
+
+ );
+};
diff --git a/app/src/contents/SouthernEarthquakeContent/LiquefactionContent.tsx b/app/src/contents/SouthernEarthquakeContent/LiquefactionContent.tsx
new file mode 100644
index 0000000..b52d71e
--- /dev/null
+++ b/app/src/contents/SouthernEarthquakeContent/LiquefactionContent.tsx
@@ -0,0 +1,91 @@
+import { FC } from "react";
+import { useTranslation, Trans } from "react-i18next";
+
+import { BaseContent } from "../../components/Contents/BaseContent";
+import { splitN } from "../../utils";
+
+type Props = {};
+
+export const LiquefactionContent: FC = () => {
+ const { t, i18n } = useTranslation();
+ const isEn = i18n.language === "en";
+
+ return (
+
+ {t("Liquefaction area distribution")}
+
+
+
+ {t(
+ "During liquefaction, water may spout out from the ground, stable ground can suddenly become soft, leading to buildings sinking or tilting, and buried manholes or pipes may surface. The ground as a whole may also flow towards lower areas.",
+ )}
+
+
+ {t("Source: ")}
+
+ {t(
+ 'Ministry of Land, Infrastructure, Transport and Tourism "About the Liquefaction Phenomenon"',
+ )}
+
+
+
+ {t("Legend")}
+ {isEn ? (
+
+ ) : (
+
+ )}
+
+ {t("Anticipated damages caused by liquefaction")}
+
+ {splitN(
+ t(
+ "In reclaimed areas, coastal areas, and bay areas, liquefaction occurrences are anticipated. Liquefaction can lead to complete collapse of buildings, especially in regions like the Tokyo Bay coastal reclaimed areas and riverbanks, where approximately 1,500 buildings could be affected in the event of the Central South Region Earthquake.",
+ ),
+ )}
+
+
+
+
+ {t("Source: ")}
+
+ {t(
+ 'Report on "Estimation of damage in the event of an earthquake directly hitting Tokyo"',
+ )}
+
+
+
+ {t("Strategies to prevent liquefaction")}
+
+
+ {splitN(
+ t(
+ "To reduce liquefaction damage in residential areas, a proactive approach by residents and businesses, along with prompt response from authorities during disasters, is crucial. Administrative-led preemptive measures aligned with community initiatives are essential.",
+ ),
+ )}
+ {splitN(
+ t(
+ "The Ministry of Land, Infrastructure, Transport and Tourism has published guidelines for creating liquefaction hazard maps to facilitate risk communication. Promoting the creation of liquefaction hazard maps at the local level using available resources and increasing awareness about liquefaction-related risks can enhance community disaster resilience.",
+ ),
+ )}
+
+
+ {t("Source: ")}
+
+ {t("Guidelines for Creating Liquefaction Hazard Maps for Risk Communication")}
+
+
+
+ );
+};
diff --git a/app/src/contents/SouthernEarthquakeContent/SeismicContent.tsx b/app/src/contents/SouthernEarthquakeContent/SeismicContent.tsx
new file mode 100644
index 0000000..7e04f5b
--- /dev/null
+++ b/app/src/contents/SouthernEarthquakeContent/SeismicContent.tsx
@@ -0,0 +1,187 @@
+import { FC, useMemo } from "react";
+import { useTranslation, Trans } from "react-i18next";
+
+import { BaseContent } from "../../components/Contents/BaseContent";
+import { DoublePieChart } from "../../components/Contents/Charts";
+import { splitN } from "../../utils";
+
+type Props = {};
+
+export const SeismicContent: FC = () => {
+ const { t, i18n } = useTranslation();
+ const isEn = i18n.language === "en";
+
+ return (
+
+ {t("Seismic intensity distribution")}
+
+ {t(
+ "In the event of the central south region earthquake, areas with seismic intensity of 6 strong or higher are expected to be concentrated in the eastern and southwestern parts of the wards. The area with seismic intensity of 7 is approximately 14 km², while the area with seismic intensity of 6 strong is about 388 km².",
+ )}
+
+
+ {isEn ? (
+
+ ) : (
+
+ )}
+
+ {t("Source: ")}
+
+ {t(
+ "Report on Assumed Damage to Tokyo from an Earthquake, etc., Directly Under the Tokyo Metropolitan Area",
+ )}
+
+
+
+
+ {t("Impact on Capital Functions")}
+
+
+
+
+ {t("Source: ")}
+
+ {t(
+ 'Report on "Estimation of damage in the event of an earthquake directly hitting Tokyo" set',
+ )}
+
+
+
+ {t("Efforts and Disaster Reduction Effects Over the Past 10 Years")}
+
+
+
+
+ {t("Source: ")}
+
+ {t(
+ "Disaster Prevention Information | Major Initiatives and Disaster Reduction Effects Over the Past 10 Years",
+ )}
+
+
+
+ {t("Earthquake Resistance")}
+
+
+
+
+ {t("Source: ")}
+
+ {t(
+ "Disaster Prevention Information | Major Initiatives and Disaster Reduction Effects Over the Past 10 Years",
+ )}
+
+
+
+ {t("Anticipated Disaster Reduction Effects")}
+
+ {t(
+ "The seismic retrofitting rate for buildings along designated emergency transport routes has increased by approximately 10.3% (from 81.3% to about 91.6%), and the seismic retrofitting rate for residences has increased by approximately 10.8% (from 81.2% to about 92.0%).",
+ )}
+
+
+ {t("Seismic retrofitting rate for housing")}
+ ({ percent: 81.2, title: t("2012") }), [t])}
+ pie2={useMemo(() => ({ percent: 92.0, title: t("2022") }), [t])}
+ />
+
+ {t("Source: ")}
+
+ {t(
+ "Disaster Prevention Information | Major Initiatives and Disaster Reduction Effects Over the Past 10 Years",
+ )}
+
+
+
+ {t("Self-help and Mutual Assistance")}
+
+
+ l1
+
+ ),
+ l2: (
+
+ l2
+
+ ),
+ l3: (
+
+ l3
+
+ ),
+ }}
+ />
+
+
+
+ {t("Implementation rate of measures for preventing furniture and object tipping/falling")}
+
+ ({ percent: 53.6, title: t("2012") }), [t])}
+ pie2={useMemo(() => ({ percent: 57.3, title: t("2022") }), [t])}
+ />
+ {t("Implementation rate of daily stockpiling")}
+ ({ percent: 46.4, title: t("2017") }), [t])}
+ pie2={useMemo(() => ({ percent: 56.3, title: t("2022") }), [t])}
+ />
+
+ {splitN(
+ t(
+ "As a result, the implementation rate of measures such as preventing furniture from toppling increased from about 53.6% to about 57.3%, and the implementation rate of daily stockpiling increased from about 46.4% to about 56.3%. (*The changes from fiscal year 2017)",
+ ),
+ )}
+
+
+ {t("Source: ")}
+
+ {t(
+ "Disaster Prevention Information | Major Initiatives and Disaster Reduction Effects Over the Past 10 Years",
+ )}
+
+
+
+ );
+};
diff --git a/app/src/contents/SouthernEarthquakeContent/SouthernEarthquakeContent.tsx b/app/src/contents/SouthernEarthquakeContent/SouthernEarthquakeContent.tsx
new file mode 100644
index 0000000..429477e
--- /dev/null
+++ b/app/src/contents/SouthernEarthquakeContent/SouthernEarthquakeContent.tsx
@@ -0,0 +1,31 @@
+import { styled } from "@linaria/react";
+import { FC, useCallback } from "react";
+
+import { MainScenes } from "../../utils";
+
+import { BurnedContent } from "./BurnedContent";
+import { DestroyedContent } from "./DestroyedContent";
+import { LiquefactionContent } from "./LiquefactionContent";
+import { SeismicContent } from "./SeismicContent";
+import { Tokyo23Content } from "./Tokyo23Content";
+
+export const SouthernEarthquakeContent: FC<{ scene: MainScenes }> = ({ scene }) => {
+ const renderContent = useCallback(() => {
+ switch (scene) {
+ case MainScenes.Scene1:
+ return ;
+ case MainScenes.Scene2:
+ return ;
+ case MainScenes.Scene3:
+ return ;
+ case MainScenes.Scene4:
+ return ;
+ case MainScenes.Scene5:
+ return ;
+ }
+ }, [scene]);
+
+ return {renderContent()} ;
+};
+
+const Root = styled.div``;
diff --git a/app/src/contents/SouthernEarthquakeContent/Tokyo23Content.tsx b/app/src/contents/SouthernEarthquakeContent/Tokyo23Content.tsx
new file mode 100644
index 0000000..8b72392
--- /dev/null
+++ b/app/src/contents/SouthernEarthquakeContent/Tokyo23Content.tsx
@@ -0,0 +1,82 @@
+import { FC } from "react";
+import { useTranslation, Trans } from "react-i18next";
+
+import { BaseContent } from "../../components/Contents/BaseContent";
+import { DoughnutChartForTokyo23 } from "../../components/Contents/Charts";
+
+type Props = {};
+
+export const Tokyo23Content: FC = () => {
+ const { t } = useTranslation();
+
+ return (
+
+ {t("If an earthquake were to occur in Tokyo?")}
+
+ {t("Ready for the future")}
+
+
+
+
+
+ {t("The Regional Characteristics of Tokyo Metropolitan Area")}
+
+
+
+
+
+
+
+
+
+
+
+ {t("Source: ")}
+
+ {t(
+ 'Report on "Estimation of damage in the event of an earthquake directly hitting Tokyo"',
+ )}
+
+
+
+ {t("Number of buildings in Tokyo 23 ward")}
+
+
+
+ {t("Central South Region Earthquake")}
+
+
+
+
+
+ {t("Source: ")}
+
+ {t("Tokyo Fire Department | Guidebook for High School Student Members:Chapter 5")}
+
+
+
+ {t("Tama East Region Earthquake")}
+
+
+
+
+
+ {t("Source: ")}
+
+ {t("Tokyo Fire Department | Guidebook for High School Student Members:Chapter 5")}
+
+
+
+ );
+};
diff --git a/app/src/contents/SouthernEarthquakeContent/index.ts b/app/src/contents/SouthernEarthquakeContent/index.ts
new file mode 100644
index 0000000..3766847
--- /dev/null
+++ b/app/src/contents/SouthernEarthquakeContent/index.ts
@@ -0,0 +1 @@
+export * from "./SouthernEarthquakeContent";
diff --git a/app/src/contexts/BurnedOverlayContexts.tsx b/app/src/contexts/BurnedOverlayContexts.tsx
new file mode 100644
index 0000000..73b3879
--- /dev/null
+++ b/app/src/contexts/BurnedOverlayContexts.tsx
@@ -0,0 +1,22 @@
+import { createContext, useContext, useState, FC, PropsWithChildren } from "react";
+
+type BurnedOverlayContextType = {
+ isInBurnedOverlay: boolean;
+ setIsInBurnedOverlay: React.Dispatch>;
+};
+
+const BurnedOverlayContext = createContext({
+ isInBurnedOverlay: false,
+ setIsInBurnedOverlay: () => {},
+});
+
+export const BurnedOverlayProvider: FC = ({ children }) => {
+ const [isInBurnedOverlay, setIsInBurnedOverlay] = useState(false);
+ return (
+
+ {children}
+
+ );
+};
+
+export const useBurnedOverlayContext = () => useContext(BurnedOverlayContext);
diff --git a/app/src/contexts/ComposedProvider.tsx b/app/src/contexts/ComposedProvider.tsx
new file mode 100644
index 0000000..a62719d
--- /dev/null
+++ b/app/src/contexts/ComposedProvider.tsx
@@ -0,0 +1,37 @@
+import { FC, PropsWithChildren } from "react";
+
+import { BurnedOverlayProvider } from "./BurnedOverlayContexts";
+import { FirstVisitProvider } from "./FirstVisitContexts";
+import { MarkerDataProvider } from "./MarkerContexts";
+import { NavigationProvider } from "./NavigationContexts";
+import { ScenePlayerProvider } from "./ScenePlayerContexts";
+import { SoundProvider } from "./SoundContexts";
+
+const composeComponents = (...components: FC>[]) => {
+ if (components.length === 0) {
+ return (arg: any) => arg;
+ }
+ if (components.length === 1) {
+ return components[0];
+ }
+ return components.reduce((A, B) => {
+ const WrappedComponent = (props: PropsWithChildren) => (
+
+
+
+ );
+ WrappedComponent.displayName = `Wrapped(${A.displayName || A.name})+(${
+ B.displayName || B.name
+ })`;
+ return WrappedComponent;
+ });
+};
+
+export const ComposedProvider = composeComponents(
+ FirstVisitProvider,
+ SoundProvider,
+ NavigationProvider,
+ MarkerDataProvider,
+ ScenePlayerProvider,
+ BurnedOverlayProvider,
+);
diff --git a/app/src/contexts/FirstVisitContexts.tsx b/app/src/contexts/FirstVisitContexts.tsx
new file mode 100644
index 0000000..a6e4eed
--- /dev/null
+++ b/app/src/contexts/FirstVisitContexts.tsx
@@ -0,0 +1,37 @@
+import { createContext, useContext, useState, FC, PropsWithChildren, useEffect } from "react";
+
+import { FirstVisit } from "../utils/types/common";
+
+type FirstVisitContextType = {
+ firstVisit: FirstVisit;
+ setFirstVisit: React.Dispatch>;
+};
+
+const FirstVisitContext = createContext({
+ firstVisit: { disclaimerAccepted: false, isTutorialCompleted: false },
+ setFirstVisit: () => {},
+});
+
+export const FirstVisitProvider: FC = ({ children }) => {
+ const [firstVisit, setFirstVisit] = useState(() => {
+ const storedFirstVisit = localStorage.getItem("firstVisit");
+ return storedFirstVisit
+ ? JSON.parse(storedFirstVisit)
+ : {
+ disclaimerAccepted: false,
+ isTutorialCompleted: false,
+ };
+ });
+
+ useEffect(() => {
+ localStorage.setItem("firstVisit", JSON.stringify(firstVisit));
+ }, [firstVisit]);
+
+ return (
+
+ {children}
+
+ );
+};
+
+export const useFirstVisitContext = () => useContext(FirstVisitContext);
diff --git a/app/src/contexts/MarkerContexts.tsx b/app/src/contexts/MarkerContexts.tsx
new file mode 100644
index 0000000..4900294
--- /dev/null
+++ b/app/src/contexts/MarkerContexts.tsx
@@ -0,0 +1,30 @@
+import { createContext, useContext, useState, FC, PropsWithChildren } from "react";
+
+import { MarkerData } from "../utils/types/common";
+
+type MarkerDataType = MarkerData | null;
+
+type MarkerDataContextType = {
+ markerData: MarkerDataType;
+ setMarkerData: React.Dispatch>;
+ resetMarkerData: () => void;
+};
+
+const MarkerDataContext = createContext({
+ markerData: null,
+ setMarkerData: () => {},
+ resetMarkerData: () => {},
+});
+
+export const MarkerDataProvider: FC = ({ children }) => {
+ const [markerData, setMarkerData] = useState(null);
+ const resetMarkerData = () => setMarkerData(null);
+
+ return (
+
+ {children}
+
+ );
+};
+
+export const useMarkerDataContext = () => useContext(MarkerDataContext);
diff --git a/app/src/contexts/NavigationContexts.tsx b/app/src/contexts/NavigationContexts.tsx
new file mode 100644
index 0000000..b06d99e
--- /dev/null
+++ b/app/src/contexts/NavigationContexts.tsx
@@ -0,0 +1,85 @@
+import { createContext, useContext, useState, FC, PropsWithChildren } from "react";
+
+import {
+ NavigationState,
+ PageName,
+ PageScenes,
+ SubScenes,
+ defaultScenes,
+ initialNavigationState,
+} from "../utils/types/common";
+
+type NavigationContextType = {
+ navigationState: NavigationState;
+ setCurrentPage: (page: PageName) => void;
+ setCurrentScene: (scene: PageScenes[T]) => void;
+ setCurrentSceneContentIndex: (contentIndex: number) => void;
+ setCurrentSubScene: (subScene: SubScenes) => void;
+};
+
+const defaultNavigationContext: NavigationContextType = {
+ navigationState: initialNavigationState,
+ setCurrentPage: () => {
+ throw new Error("setCurrentPage was called without being overridden");
+ },
+ setCurrentScene: () => {
+ throw new Error("setCurrentScene was called without being overridden");
+ },
+ setCurrentSceneContentIndex: () => {
+ throw new Error("setCurrentSceneContentIndex was called without being overridden");
+ },
+ setCurrentSubScene: () => {
+ throw new Error("setCurrentSubScene was called without being overridden");
+ },
+};
+
+const NavigationContext = createContext(defaultNavigationContext);
+
+export const NavigationProvider: FC = ({ children }) => {
+ const [navigationState, setNavigationState] = useState(initialNavigationState);
+
+ const setCurrentPage = (page: PageName) => {
+ setNavigationState(prevState => ({
+ ...prevState,
+ currentPage: page,
+ currentScene: defaultScenes[page],
+ currentSceneContentIndex: 0,
+ }));
+ };
+
+ const setCurrentScene = (scene: PageScenes[T]) => {
+ setNavigationState(prevState => ({
+ ...prevState,
+ currentScene: scene as PageScenes[T],
+ }));
+ };
+
+ const setCurrentSceneContentIndex = (currentSceneContentIndex: number) => {
+ setNavigationState(prevState => ({
+ ...prevState,
+ currentSceneContentIndex,
+ }));
+ };
+
+ const setCurrentSubScene = (subScene: SubScenes) => {
+ setNavigationState(prevState => ({
+ ...prevState,
+ currentSubScene: subScene,
+ }));
+ };
+
+ return (
+
+ {children}
+
+ );
+};
+
+export const useNavigationContext = () => useContext(NavigationContext);
diff --git a/app/src/contexts/ScenePlayerContexts.tsx b/app/src/contexts/ScenePlayerContexts.tsx
new file mode 100644
index 0000000..bd8f4e9
--- /dev/null
+++ b/app/src/contexts/ScenePlayerContexts.tsx
@@ -0,0 +1,52 @@
+import { createContext, useContext, useState, FC, PropsWithChildren, useCallback } from "react";
+
+type SoundContextType = {
+ playing: boolean;
+ shouldSceneDescriptioShow: boolean;
+ play: () => void;
+ stop: () => void;
+ toggle: () => void;
+ setShouldSceneDescriptionShow: (show: boolean) => void;
+};
+
+const ScenePlayerContext = createContext({
+ playing: true,
+ shouldSceneDescriptioShow: false,
+ play: () => {},
+ stop: () => {},
+ toggle: () => {},
+ setShouldSceneDescriptionShow: () => {},
+});
+
+export const ScenePlayerProvider: FC = ({ children }) => {
+ const [playing, setPlaying] = useState(true);
+ const [shouldSceneDescriptioShow, setShouldSceneDescriptionShow] = useState(false);
+
+ const play = useCallback(() => {
+ setPlaying(true);
+ }, []);
+
+ const stop = useCallback(() => {
+ setPlaying(false);
+ }, []);
+
+ const toggle = useCallback(() => {
+ setPlaying(v => !v);
+ }, []);
+
+ return (
+
+ {children}
+
+ );
+};
+
+export const useScenePlayerContext = () => useContext(ScenePlayerContext);
diff --git a/app/src/contexts/SoundContexts.tsx b/app/src/contexts/SoundContexts.tsx
new file mode 100644
index 0000000..294c3f2
--- /dev/null
+++ b/app/src/contexts/SoundContexts.tsx
@@ -0,0 +1,22 @@
+import { createContext, useContext, useState, FC, PropsWithChildren } from "react";
+
+import { Sound } from "../utils/types/common";
+
+type SoundType = Sound | null;
+type SoundContextType = {
+ sound: SoundType;
+ setSound: React.Dispatch>;
+};
+
+const SoundContext = createContext({
+ sound: null,
+ setSound: () => {},
+});
+
+export const SoundProvider: FC = ({ children }) => {
+ const [sound, setSound] = useState(null);
+
+ return {children} ;
+};
+
+export const useSoundContext = () => useContext(SoundContext);
diff --git a/app/src/helpers/index.ts b/app/src/helpers/index.ts
new file mode 100644
index 0000000..92a19fe
--- /dev/null
+++ b/app/src/helpers/index.ts
@@ -0,0 +1 @@
+export * from "./mesh";
diff --git a/app/src/helpers/mesh.ts b/app/src/helpers/mesh.ts
new file mode 100644
index 0000000..d541cfd
--- /dev/null
+++ b/app/src/helpers/mesh.ts
@@ -0,0 +1,11 @@
+import { convertCodeToBounds, inferMeshType } from "../map";
+
+export const computeCenterOfBoundsFromMeshCode = (meshCode: string) => {
+ const code = String(meshCode);
+ const meshType = inferMeshType(code);
+ if (!meshType) {
+ throw new Error("meshType could not find");
+ }
+ const bounds = convertCodeToBounds(code, meshType);
+ return [(bounds.west + bounds.east) / 2, (bounds.south + bounds.north) / 2] as [number, number];
+};
diff --git a/app/src/hooks/animation.ts b/app/src/hooks/animation.ts
new file mode 100644
index 0000000..7d906da
--- /dev/null
+++ b/app/src/hooks/animation.ts
@@ -0,0 +1,62 @@
+import { useEffect, useRef, useState } from "react";
+
+import { useRefValue } from "./ref";
+
+export const useHideAnimation = (
+ state: S,
+ timeout: number,
+ avoidUpdateIfStateIsSame: boolean = false,
+) => {
+ const [nextState, setNextState] = useState(state);
+ const [hide, setHide] = useState(false);
+ const timeoutRef = useRef(timeout);
+ timeoutRef.current = timeout;
+ const prevStateRef = useRef(state);
+ useEffect(() => {
+ if (avoidUpdateIfStateIsSame && prevStateRef.current === state) {
+ return;
+ }
+ prevStateRef.current = state;
+ setHide(true);
+ const timer = window.setTimeout(() => {
+ setNextState(state);
+ setHide(false);
+ }, timeoutRef.current);
+ return () => window.clearTimeout(timer);
+ }, [state, avoidUpdateIfStateIsSame, prevStateRef]);
+
+ return {
+ value: nextState,
+ hide,
+ };
+};
+
+export const useFrameTime = (offset: number = 500, playing: boolean = true) => {
+ const [time, setTime] = useState(0);
+ const offsetRef = useRefValue(offset);
+ const playingRef = useRefValue(playing);
+ useEffect(() => {
+ if (!playing) return;
+
+ let timer: number;
+ let start: number;
+
+ const run = (time: number) => {
+ if (!playingRef.current) {
+ cancelAnimationFrame(timer);
+ return;
+ }
+ if (!start) {
+ start = time;
+ }
+ setTime(prev => {
+ return playingRef.current ? (time - start) / offsetRef.current : prev;
+ });
+ timer = requestAnimationFrame(run);
+ };
+ timer = requestAnimationFrame(run);
+ return () => cancelAnimationFrame(timer);
+ }, [offsetRef, playingRef, playing]);
+
+ return time;
+};
diff --git a/app/src/hooks/effect.ts b/app/src/hooks/effect.ts
new file mode 100644
index 0000000..63823c3
--- /dev/null
+++ b/app/src/hooks/effect.ts
@@ -0,0 +1,67 @@
+import { useCallback } from "react";
+import { useSound } from "use-sound";
+
+import { useSoundContext } from "../contexts/SoundContexts";
+
+// type PlayId = "first" | "second" | "third" | "fourth";
+type PlayId = "on" | "off";
+
+// export const useEffectSound = () => {
+// const { sound } = useSoundContext();
+// const sprite: Record = {
+// first: [0, 200],
+// second: [5000, 5200],
+// third: [10000, 10200],
+// fourth: [150000, 15200],
+// };
+// const [play] = useSound("music/effect.wav", {
+// sprite,
+// interrupt: true,
+// volume: 0.5,
+// });
+
+// const handlePlay = useCallback(
+// (id: PlayId) => {
+// if (sound === "on") {
+// play({ id });
+// }
+// },
+// [play, sound],
+// );
+
+// return {
+// play: handlePlay,
+// };
+// };
+
+export const useEffectSound = () => {
+ const { sound } = useSoundContext();
+ const [playOn] = useSound("music/on.mp3", {
+ interrupt: true,
+ volume: 0.5,
+ });
+ const [playOff] = useSound("music/off.mp3", {
+ interrupt: true,
+ volume: 0.5,
+ });
+
+ const handlePlay = useCallback(
+ (id: PlayId) => {
+ if (sound === "on") {
+ switch (id) {
+ case "on":
+ playOn();
+ break;
+ case "off":
+ playOff();
+ break;
+ }
+ }
+ },
+ [sound, playOn, playOff],
+ );
+
+ return {
+ play: handlePlay,
+ };
+};
diff --git a/app/src/hooks/index.ts b/app/src/hooks/index.ts
new file mode 100644
index 0000000..84face3
--- /dev/null
+++ b/app/src/hooks/index.ts
@@ -0,0 +1,4 @@
+export * from "./effect";
+export * from "./mediaQuery";
+export * from "./animation";
+export * from "./ref";
diff --git a/app/src/hooks/mediaQuery.ts b/app/src/hooks/mediaQuery.ts
new file mode 100644
index 0000000..bc3dac1
--- /dev/null
+++ b/app/src/hooks/mediaQuery.ts
@@ -0,0 +1,88 @@
+import { useEffect, useLayoutEffect, useState } from "react";
+
+export const useIsomorphicLayoutEffect =
+ typeof window !== "undefined" ? useLayoutEffect : useEffect;
+
+type UseMediaQueryOptions = {
+ defaultValue?: boolean;
+ initializeWithValue?: boolean;
+};
+
+const IS_SERVER = typeof window === "undefined";
+
+export function useMediaQuery(query: string, options?: UseMediaQueryOptions): boolean;
+/**
+ * Custom hook for tracking the state of a media query.
+ * @deprecated - this useMediaQuery's signature is deprecated, it now accepts an query parameter and an options object.
+ * @param {string} query - The media query to track.
+ * @param {?boolean} [defaultValue] - The default value to return if the hook is being run on the server (default is `false`).
+ * @returns {boolean} The current state of the media query (true if the query matches, false otherwise).
+ * @see [Documentation](https://usehooks-ts.com/react-hook/use-media-query)
+ * @see [MDN Match Media](https://developer.mozilla.org/en-US/docs/Web/API/Window/matchMedia)
+ * @example
+ * const isSmallScreen = useMediaQuery('(max-width: 600px)');
+ * // Use `isSmallScreen` to conditionally apply styles or logic based on the screen size.
+ */
+export function useMediaQuery(query: string, defaultValue: boolean): boolean; // defaultValue should be false by default
+/**
+ * Custom hook for tracking the state of a media query.
+ * @param {string} query - The media query to track.
+ * @param {boolean | ?UseMediaQueryOptions} [options] - The default value to return if the hook is being run on the server (default is `false`).
+ * @param {?boolean} [options.defaultValue] - The default value to return if the hook is being run on the server (default is `false`).
+ * @param {?boolean} [options.initializeWithValue] - If `true` (default), the hook will initialize reading the media query. In SSR, you should set it to `false`, returning `options.defaultValue` or `false` initially.
+ * @returns {boolean} The current state of the media query (true if the query matches, false otherwise).
+ * @see [Documentation](https://usehooks-ts.com/react-hook/use-media-query)
+ * @see [MDN Match Media](https://developer.mozilla.org/en-US/docs/Web/API/Window/matchMedia)
+ * @example
+ * const isSmallScreen = useMediaQuery('(max-width: 600px)');
+ * // Use `isSmallScreen` to conditionally apply styles or logic based on the screen size.
+ */
+export function useMediaQuery(query: string, options?: boolean | UseMediaQueryOptions): boolean {
+ // TODO: Refactor this code after the deprecated signature has been removed.
+ const defaultValue = typeof options === "boolean" ? options : options?.defaultValue ?? false;
+ const initializeWithValue =
+ typeof options === "boolean" ? undefined : options?.initializeWithValue ?? undefined;
+
+ const [matches, setMatches] = useState(() => {
+ if (initializeWithValue) {
+ return getMatches(query);
+ }
+ return defaultValue;
+ });
+
+ const getMatches = (query: string): boolean => {
+ if (IS_SERVER) {
+ return defaultValue;
+ }
+ return window.matchMedia(query).matches;
+ };
+
+ /** Handles the change event of the media query. */
+ function handleChange() {
+ setMatches(getMatches(query));
+ }
+
+ useIsomorphicLayoutEffect(() => {
+ const matchMedia = window.matchMedia(query);
+
+ // Triggered at the first client-side load and if query changes
+ handleChange();
+
+ // Use deprecated `addListener` and `removeListener` to support Safari < 14 (#135)
+ if (matchMedia.addListener) {
+ matchMedia.addListener(handleChange);
+ } else {
+ matchMedia.addEventListener("change", handleChange);
+ }
+
+ return () => {
+ if (matchMedia.removeListener) {
+ matchMedia.removeListener(handleChange);
+ } else {
+ matchMedia.removeEventListener("change", handleChange);
+ }
+ };
+ }, [query]);
+
+ return matches;
+}
diff --git a/app/src/hooks/ref.ts b/app/src/hooks/ref.ts
new file mode 100644
index 0000000..ff769b5
--- /dev/null
+++ b/app/src/hooks/ref.ts
@@ -0,0 +1,7 @@
+import { useRef } from "react";
+
+export const useRefValue = (v: V) => {
+ const vRef = useRef(v);
+ vRef.current = v;
+ return vRef;
+};
diff --git a/app/src/i18n/hooks.ts b/app/src/i18n/hooks.ts
new file mode 100644
index 0000000..df53707
--- /dev/null
+++ b/app/src/i18n/hooks.ts
@@ -0,0 +1,5 @@
+import { useTranslation as useNextTranslation } from "react-i18next";
+
+export const useTranslation = () => {
+ return useNextTranslation("translation");
+};
diff --git a/app/src/i18n/index.ts b/app/src/i18n/index.ts
new file mode 100644
index 0000000..db1b945
--- /dev/null
+++ b/app/src/i18n/index.ts
@@ -0,0 +1 @@
+export { I18nProvider } from "./provider";
diff --git a/app/src/i18n/load.ts b/app/src/i18n/load.ts
new file mode 100644
index 0000000..7aa5dcd
--- /dev/null
+++ b/app/src/i18n/load.ts
@@ -0,0 +1,22 @@
+import i18next from "i18next";
+import HttpApi from "i18next-http-backend";
+import { initReactI18next } from "react-i18next";
+
+i18next
+ .use(initReactI18next) // passes i18n down to react-i18next
+ .use(HttpApi) // passes i18n down to react-i18next
+ .init({
+ fallbackLng: "ja",
+ // allow keys to be phrases having `:`, `.`
+ nsSeparator: false,
+ keySeparator: false,
+ returnEmptyString: false,
+ returnNull: false,
+ backend: {
+ loadPath: function (lng: string, ns: string) {
+ return `locales/${lng}/${ns}.json`;
+ },
+ },
+ });
+
+export default i18next;
diff --git a/app/src/i18n/provider.tsx b/app/src/i18n/provider.tsx
new file mode 100644
index 0000000..7c97583
--- /dev/null
+++ b/app/src/i18n/provider.tsx
@@ -0,0 +1,21 @@
+import { FC, PropsWithChildren, useEffect } from "react";
+import { I18nextProvider } from "react-i18next";
+
+import i18n from "./load";
+
+export const I18nProvider: FC = ({ children }) => {
+ useEffect(() => {
+ const handleLanguageChange = (lang: string) => {
+ window.document.getElementsByTagName("html")[0]?.setAttribute("lang", lang);
+ };
+ i18n.on("languageChanged", handleLanguageChange);
+
+ const lang = window.navigator.language?.split("-")[0] ?? "ja";
+ i18n.changeLanguage(lang);
+
+ return () => {
+ i18n.off("languageChange", handleLanguageChange);
+ };
+ }, []);
+ return {children} ;
+};
diff --git a/app/src/index.css b/app/src/index.css
new file mode 100644
index 0000000..05e29f4
--- /dev/null
+++ b/app/src/index.css
@@ -0,0 +1,57 @@
+html {
+ background-color: rgba(70, 60, 100, 1);
+}
+
+body,
+#root {
+ display: flex;
+ flex-direction: column;
+ padding: 0;
+ margin: 0;
+ min-height: 100svh;
+ min-height: 100dvh;
+ min-width: 100vw;
+ font-family: "Noto Sans", "游ゴシック体", YuGothic, "游ゴシック Medium",
+ "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
+ overflow: hidden;
+ padding-top: env(safe-area-inset-top);
+ padding-bottom: env(safe-area-inset-bottom);
+}
+
+div[mapboxgl-children] {
+ display: none;
+}
+
+.maplibregl-ctrl-bottom-right {
+ position: fixed !important;
+ bottom: 0px;
+ left: 0px;
+ background-color: rgba(255, 255, 255, 0.7);
+ padding: 2px 6px;
+ border-radius: 2px;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
+ font-size: 12px;
+ color: #333;
+ border: 1px solid rgba(0, 0, 0, 0.1);
+}
+
+.maplibregl-ctrl-bottom-right a {
+ color: #427af9;
+ text-decoration: none;
+}
+
+.maplibregl-ctrl-bottom-right a:hover {
+ text-decoration: underline;
+}
+
+.maplibregl-ctrl-attrib-button {
+ display: none;
+}
+
+.maplibregl-ctrl-attrib-inner {
+ pointer-events: none;
+}
+
+.maplibregl-ctrl-attrib-inner a {
+ pointer-events: auto;
+}
diff --git a/app/src/layers/constants.ts b/app/src/layers/constants.ts
new file mode 100644
index 0000000..12a5350
--- /dev/null
+++ b/app/src/layers/constants.ts
@@ -0,0 +1 @@
+export const MAIN_SCENE_DURATION = 30000;
diff --git a/app/src/layers/contents/index.tsx b/app/src/layers/contents/index.tsx
new file mode 100644
index 0000000..0975511
--- /dev/null
+++ b/app/src/layers/contents/index.tsx
@@ -0,0 +1,6 @@
+import { LayerData } from "../types";
+
+import { MAIN_LAYERS } from "./main";
+import { OPENING_LAYERS } from "./opening";
+
+export const LAYERS: LayerData[] = [...OPENING_LAYERS, ...MAIN_LAYERS];
diff --git a/app/src/layers/contents/main/burned.tsx b/app/src/layers/contents/main/burned.tsx
new file mode 100644
index 0000000..851b8ea
--- /dev/null
+++ b/app/src/layers/contents/main/burned.tsx
@@ -0,0 +1,309 @@
+import { FlyToInterpolator } from "@deck.gl/core/typed";
+import { useCallback } from "react";
+
+import { RESOURCE_URL } from "../../../constants";
+import { computeCenterOfBoundsFromMeshCode } from "../../../helpers";
+import { Layer } from "../../../map";
+import { OverlayContentProps } from "../../../map/layers";
+import { MainScenes, SubScenes } from "../../../utils";
+import { MAIN_SCENE_DURATION } from "../../constants";
+import TamaBurnedAreaJSON from "../../data/tama-burned-area3-zero.json";
+import ToshinBurnedAreaJSON from "../../data/toshin-burned-area3-zero.json";
+import {
+ BurnedBuildingOverlay,
+ SCENE_DESCRIPTION_TIMEOUT,
+ SceneDescriptionOverlay,
+} from "../../overlays";
+import { LayerData } from "../../types";
+
+import { BASE_LABEL_MVT, TOKYO23_MVT } from "./tokyo23";
+
+const DEFAULT_GRID_FOR_NON_ZERO: Omit, "id" | "type" | "url"> = {
+ opacity: 0.7,
+ getColorWeight: data => {
+ const value = data.properties["value"];
+ if (100 < value) return 100;
+ if (50 < value) return 80;
+ if (20 < value) return 60;
+ if (10 < value) return 40;
+ if (1 < value) return 20;
+ return 0;
+ },
+ getPosition: data => {
+ return computeCenterOfBoundsFromMeshCode(String(data.properties.MESHCODE));
+ },
+ getElevationWeight: data => {
+ return data.properties["value"];
+ },
+ colorRange: [
+ [160, 179, 206, 255],
+ [116, 252, 253, 255],
+ [117, 250, 76, 255],
+ [255, 254, 85, 255],
+ [222, 130, 68, 255],
+ [235, 51, 35, 255],
+ ],
+ scale: 9,
+ brightness: 0.24,
+ animation: {
+ startDuration: 300,
+ endDuration: 100,
+ },
+};
+const DEFAULT_GRID_FOR_ZERO: Omit, "id" | "type" | "url"> = {
+ opacity: 0.7,
+ getColorWeight: data => {
+ const value = data.properties["value"];
+ if (0 < value) return 100;
+ return value;
+ },
+ getPosition: data => {
+ return computeCenterOfBoundsFromMeshCode(String(data.properties.MESHCODE));
+ },
+ getElevation: () => {
+ return 1;
+ },
+ getElevationWeight: () => {
+ return 1;
+ },
+ colorRange: [
+ [160, 179, 206, 255],
+ [144, 138, 212, 255],
+ ],
+ scale: 1,
+ brightness: 0.25,
+ animation: {
+ startDuration: 300,
+ endDuration: 100,
+ },
+ shouldInfiniteScale: false,
+};
+
+const URBANPLAN_FIREPROOF_MVT: Omit, "scene"> = {
+ id: "urbanplan-fireproof-mvt",
+ type: "mvt",
+ url: `${RESOURCE_URL}data/urbanplan-fireproof-mvt/{z}/{x}/{y}.pbf`,
+ getFillColor: ({ properties }) => {
+ const level = properties["TUP6F1"];
+ if (level === 10) {
+ return [4, 41, 64, 255];
+ }
+ if (level === 20) {
+ return [0, 92, 83, 255];
+ }
+
+ return [0, 0, 0, 0];
+ },
+ minZoom: 10,
+ maxZoom: 16,
+};
+
+const WrappedBurnedBuildingOverlay = (
+ props: OverlayContentProps & { data: any; isToshin: boolean },
+) => {
+ const getColor = useCallback((value: number) => {
+ if (100 < value) return "rgb(235, 51, 35)";
+ if (50 < value) return "rgb(222, 130, 68)";
+ if (20 < value) return "rgb(255, 254, 85)";
+ if (10 < value) return "rgb(117, 250, 76)";
+ if (1 < value) return "rgb(116, 252, 253)";
+ if (0 < value) return "rgb(144, 138, 212)";
+ return "rgb(160, 179, 206)";
+ }, []);
+ return ;
+};
+
+const GET_DEFAULT_OVERLAY: (
+ data: any,
+ isToshin?: boolean,
+) => Omit, "id" | "type"> = (data, isToshin = false) => ({
+ renderContent: props => (
+
+ ),
+ delay: 2000,
+});
+
+export const BURNED_LAYERS: LayerData[] = [
+ {
+ id: "scene4-scene-description-overlay",
+ type: "overlay",
+ scene: [MainScenes.Scene4],
+ renderContent: props => ,
+ contentIndex: 0,
+ contentDuration: SCENE_DESCRIPTION_TIMEOUT,
+ },
+ {
+ ...TOKYO23_MVT,
+ type: "mvt",
+ getFillColor: ({ properties }) => {
+ const { fireproofStructureType } = properties;
+
+ // 耐火
+ if (fireproofStructureType === 1001) {
+ return [31, 76, 166, 255];
+ }
+ // 準耐火造
+ if (fireproofStructureType === 1002) {
+ return [113, 166, 201, 255];
+ }
+ // その他
+ if (fireproofStructureType === 1003) {
+ return [62, 110, 140, 255];
+ }
+ // 不明
+ if (fireproofStructureType === 1004) {
+ return [242, 185, 172, 255];
+ }
+
+ return [202, 202, 202, 255];
+ },
+ scene: [MainScenes.Scene4],
+ },
+ {
+ ...BASE_LABEL_MVT,
+ scene: [MainScenes.Scene4],
+ },
+ {
+ id: "scene4-camera-1",
+ type: "camera",
+ viewState: {
+ longitude: 139.695,
+ latitude: 35.665,
+ bearing: 360 * 0.1,
+ pitch: 360 * 0.19,
+ zoom: 10,
+ transitionDuration: 1000,
+ transitionInterpolator: new FlyToInterpolator({ curve: 2 }),
+ },
+ enableInfiniteRotation: true,
+ scene: [MainScenes.Scene4],
+ contentIndex: 0,
+ },
+ {
+ id: "scene4-camera-2",
+ type: "camera",
+ viewState: {
+ longitude: 139.695,
+ latitude: 35.665,
+ bearing: 360 * 0.25,
+ pitch: 360 * 0.19,
+ zoom: 12,
+ transitionDuration: 500,
+ transitionInterpolator: new FlyToInterpolator({ curve: 2 }),
+ },
+ enableInfiniteRotation: true,
+ scene: [MainScenes.Scene4],
+ contentIndex: 1,
+ contentDuration: 10000,
+ isMain: true,
+ },
+ {
+ ...URBANPLAN_FIREPROOF_MVT,
+ scene: [MainScenes.Scene4],
+ },
+ {
+ id: "scene4-camera-3",
+ type: "camera",
+ viewState: {
+ longitude: 139.758877,
+ latitude: 35.6843181,
+ bearing: 360 * 0.1,
+ pitch: 360 * 0.19,
+ zoom: 12,
+ transitionDuration: 500,
+ transitionInterpolator: new FlyToInterpolator({ curve: 2 }),
+ },
+ enableInfiniteRotation: true,
+ scene: [MainScenes.Scene4],
+ contentIndex: 2,
+ isMain: true,
+ contentDuration: MAIN_SCENE_DURATION,
+ },
+ {
+ ...DEFAULT_GRID_FOR_NON_ZERO,
+ id: "toshin-burned-non-zero",
+ type: "grid",
+ url: `${RESOURCE_URL}data/distributions/split_nonzero_toshin-burned.geojson`,
+ scene: [MainScenes.Scene4],
+ subScene: [SubScenes.Toshin],
+ contentIndexToDisableAnimation: 3,
+ contentIndex: 2,
+ },
+ {
+ ...DEFAULT_GRID_FOR_ZERO,
+ id: "toshin-burned-zero",
+ type: "grid",
+ url: `${RESOURCE_URL}data/distributions/split_zero_toshin-burned.geojson`,
+ scene: [MainScenes.Scene4],
+ subScene: [SubScenes.Toshin],
+ contentIndexToDisableAnimation: 3,
+ contentIndex: 2,
+ },
+ {
+ ...DEFAULT_GRID_FOR_NON_ZERO,
+ id: "tama-burned-non-zero",
+ type: "grid",
+ url: `${RESOURCE_URL}data/distributions/split_nonzero_tama-burned.geojson`,
+ scene: [MainScenes.Scene4],
+ subScene: [SubScenes.Tama],
+ contentIndexToDisableAnimation: 3,
+ contentIndex: 2,
+ },
+ {
+ ...DEFAULT_GRID_FOR_ZERO,
+ id: "tama-burned-zero",
+ type: "grid",
+ url: `${RESOURCE_URL}data/distributions/split_zero_tama-burned.geojson`,
+ scene: [MainScenes.Scene4],
+ subScene: [SubScenes.Tama],
+ contentIndexToDisableAnimation: 3,
+ contentIndex: 2,
+ },
+ {
+ id: "scene4-camera-end-before",
+ type: "camera",
+ viewState: {
+ longitude: 139.695,
+ latitude: 35.665,
+ bearing: 360 * 0.03,
+ zoom: 9,
+ transitionDuration: 500,
+ transitionInterpolator: new FlyToInterpolator({ curve: 1 }),
+ },
+ scene: [MainScenes.Scene4],
+ contentIndex: 3,
+ contentDuration: 10000,
+ isMain: true,
+ },
+ {
+ id: "scene4-camera-end",
+ type: "camera",
+ viewState: {
+ longitude: 139.695,
+ latitude: 35.665,
+ bearing: 0,
+ pitch: 0,
+ zoom: 9,
+ transitionDuration: 500,
+ transitionInterpolator: new FlyToInterpolator({ curve: 1 }),
+ },
+ scene: [MainScenes.Scene4],
+ contentIndex: 3,
+ },
+ {
+ ...GET_DEFAULT_OVERLAY(ToshinBurnedAreaJSON.list, true),
+ id: "toshin-overlay",
+ type: "overlay",
+ scene: [MainScenes.Scene4],
+ subScene: [SubScenes.Toshin],
+ contentIndex: 3,
+ },
+ {
+ ...GET_DEFAULT_OVERLAY(TamaBurnedAreaJSON.list),
+ id: "tama-overlay",
+ type: "overlay",
+ scene: [MainScenes.Scene4],
+ subScene: [SubScenes.Tama],
+ contentIndex: 3,
+ },
+];
diff --git a/app/src/layers/contents/main/destroyed.tsx b/app/src/layers/contents/main/destroyed.tsx
new file mode 100644
index 0000000..cddc5a7
--- /dev/null
+++ b/app/src/layers/contents/main/destroyed.tsx
@@ -0,0 +1,273 @@
+import { FlyToInterpolator } from "@deck.gl/core/typed";
+import seedrandom from "seedrandom";
+
+import { computeCenterOfBoundsFromMeshCode } from "../../../helpers";
+import { Layer } from "../../../map";
+import { MainScenes, SubScenes } from "../../../utils";
+import { MAIN_SCENE_DURATION } from "../../constants";
+import TamaParticle1 from "../../data/particles/tama-destroyed_particles_1.json";
+import TamaParticle2 from "../../data/particles/tama-destroyed_particles_2.json";
+import TamaParticle3 from "../../data/particles/tama-destroyed_particles_3.json";
+import TamaParticle4 from "../../data/particles/tama-destroyed_particles_4.json";
+import ToshinParticle1 from "../../data/particles/toshin-destroyed_particles_1.json";
+import ToshinParticle2 from "../../data/particles/toshin-destroyed_particles_2.json";
+import ToshinParticle3 from "../../data/particles/toshin-destroyed_particles_3.json";
+import ToshinParticle4 from "../../data/particles/toshin-destroyed_particles_4.json";
+import { SCENE_DESCRIPTION_TIMEOUT, SceneDescriptionOverlay } from "../../overlays";
+import { LayerData } from "../../types";
+
+import { TAMA_SHINDO_MASK_MAP } from "./textures/tama-shindo-mask-map";
+import { TAMA_SHINDO_TERRAIN_MAP } from "./textures/tama-shindo-terrain-map";
+import { TOSHIN_SHINDO_MASK_MAP } from "./textures/toshin-shindo-mask-map";
+import { TOSHIN_SHINDO_TERRAIN_MAP } from "./textures/toshin-shindo-terrain-map";
+import { BASE_LABEL_MVT, TOKYO23_MVT } from "./tokyo23";
+
+const DEFAULT_TERRAIN: Omit, "id" | "type"> = {
+ valueProperty: "揺全壊",
+ meshCodeProperty: "MESHCODE",
+ getValue: v => v * 1e7,
+ opacity: 0.5,
+ getTerrainColor: value => {
+ const scaleValue = 1e7;
+ const nextValue = value;
+ if (nextValue >= 60 * scaleValue) {
+ return [254, 238, 112, 255];
+ }
+ if (nextValue >= 30 * scaleValue) {
+ return [249, 121, 208, 255];
+ }
+ if (nextValue >= 10 * scaleValue) {
+ return [201, 46, 255, 255];
+ }
+ if (nextValue > 0 * scaleValue) {
+ return [46, 167, 255, 255];
+ }
+ return [202, 202, 202, 255];
+ },
+ shouldSpreadPixel: true,
+ backgroundColor: [255, 255, 255, 0],
+ scaleTerrain: 20,
+ brightness: 0.3,
+ animation: {
+ startDuration: 300,
+ endDuration: 200,
+ },
+};
+
+const DEFAULT_PARTICLE_1: Omit, "id" | "type" | "url"> = {
+ getColor: _data => {
+ return [254, 238, 112, 255];
+ },
+ getPosition: data => {
+ const rng = seedrandom(data.properties["揺全壊"]);
+ const [lng, lat] = computeCenterOfBoundsFromMeshCode(String(data.properties["MESHCODE"]));
+ return [lng, lat, rng.quick() * 10000];
+ },
+ colorThreashold: 10000,
+ pointSize: 1000,
+ brightness: 0.3,
+ translation: 10000,
+ animation: {
+ startDuration: 150,
+ endDuration: 100,
+ },
+};
+const DEFAULT_PARTICLE_2: Omit, "id" | "type" | "url"> = {
+ getColor: _data => {
+ return [249, 121, 208, 255];
+ },
+ getPosition: data => {
+ const rng = seedrandom(data.properties["揺全壊"]);
+ const [lng, lat] = computeCenterOfBoundsFromMeshCode(String(data.properties["MESHCODE"]));
+ return [lng, lat, rng.quick() * 10000];
+ },
+ colorThreashold: 10000,
+ pointSize: 500,
+ brightness: 0.3,
+ translation: 10000,
+ animation: {
+ startDuration: 150,
+ endDuration: 100,
+ },
+};
+const DEFAULT_PARTICLE_3: Omit, "id" | "type" | "url"> = {
+ getColor: _data => {
+ return [201, 46, 255, 255];
+ },
+ getPosition: data => {
+ const rng = seedrandom(data.properties["揺全壊"]);
+ const [lng, lat] = computeCenterOfBoundsFromMeshCode(String(data.properties["MESHCODE"]));
+ return [lng, lat, rng.quick() * 10000];
+ },
+ colorThreashold: 10000,
+ pointSize: 300,
+ brightness: 0.3,
+ translation: 10000,
+ animation: {
+ startDuration: 150,
+ endDuration: 100,
+ },
+};
+const DEFAULT_PARTICLE_4: Omit, "id" | "type" | "url"> = {
+ getColor: _data => {
+ return [46, 167, 255, 255];
+ },
+ getPosition: data => {
+ const rng = seedrandom(String(data.properties["揺全壊"]));
+ const [lng, lat] = computeCenterOfBoundsFromMeshCode(String(data.properties["MESHCODE"]));
+ return [lng, lat, rng.quick() * 10000];
+ },
+ colorThreashold: 10000,
+ pointSize: 200,
+ brightness: 0.3,
+ translation: 10000,
+ animation: {
+ startDuration: 150,
+ endDuration: 100,
+ },
+};
+
+export const DESTROYED_LAYERS: LayerData[] = [
+ {
+ id: "scene3-scene-description-overlay",
+ type: "overlay",
+ scene: [MainScenes.Scene3],
+ renderContent: props => ,
+ contentIndex: 0,
+ contentDuration: SCENE_DESCRIPTION_TIMEOUT + 4000,
+ },
+ {
+ id: "scene3-camera",
+ type: "camera",
+ viewState: {
+ longitude: 139.6,
+ latitude: 35.705,
+ bearing: 360 * 0.93,
+ pitch: 360 * 0.4,
+ zoom: 10.4,
+ transitionDuration: 1000,
+ transitionInterpolator: new FlyToInterpolator({ curve: 2.5 }),
+ },
+ enableInfiniteRotation: true,
+ scene: [MainScenes.Scene3],
+ contentIndex: 0,
+ contentDuration: MAIN_SCENE_DURATION,
+ },
+ {
+ id: "scene3-camera-2",
+ type: "camera",
+ viewState: {
+ longitude: 139.758877,
+ latitude: 35.6843181,
+ bearing: 360 * 0.05,
+ pitch: 360 * 0.19,
+ zoom: 12,
+ transitionDuration: 1000,
+ transitionInterpolator: new FlyToInterpolator({ curve: 2 }),
+ },
+ enableInfiniteRotation: true,
+ scene: [MainScenes.Scene3],
+ contentIndex: 1,
+ isMain: true,
+ contentDuration: MAIN_SCENE_DURATION,
+ },
+ {
+ ...TOKYO23_MVT,
+ type: "mvt",
+ scene: [MainScenes.Scene3],
+ },
+ {
+ ...BASE_LABEL_MVT,
+ scene: [MainScenes.Scene3],
+ },
+ {
+ ...DEFAULT_TERRAIN,
+ id: "toshin-destroyed",
+ type: "terrain",
+ // url: "data/distributions/toshin-destroyed.geojson",
+ terrainMap: TOSHIN_SHINDO_TERRAIN_MAP,
+ maskMap: TOSHIN_SHINDO_MASK_MAP,
+ bounds: [137.440625, 33.99999999999999, 141.41875000000002, 37.39999999999999],
+ scene: [MainScenes.Scene3],
+ subScene: [SubScenes.Toshin],
+ },
+ {
+ ...DEFAULT_TERRAIN,
+ id: "tama-destroyed",
+ type: "terrain",
+ // url: "data/distributions/tama-destroyed.geojson",
+ terrainMap: TAMA_SHINDO_TERRAIN_MAP,
+ maskMap: TAMA_SHINDO_MASK_MAP,
+ bounds: [137.440625, 33.99999999999999, 141.41875000000002, 37.39999999999999],
+ scene: [MainScenes.Scene3],
+ subScene: [SubScenes.Tama],
+ },
+
+ // Particle for Toshin
+ {
+ ...DEFAULT_PARTICLE_2,
+ id: "toshin-destroyed-particle2",
+ type: "particle",
+ data: ToshinParticle2 as any,
+ scene: [MainScenes.Scene3],
+ subScene: [SubScenes.Toshin],
+ },
+ {
+ ...DEFAULT_PARTICLE_1,
+ id: "toshin-destroyed-particle1",
+ type: "particle",
+ data: ToshinParticle1 as any,
+ scene: [MainScenes.Scene3],
+ subScene: [SubScenes.Toshin],
+ },
+ {
+ ...DEFAULT_PARTICLE_3,
+ id: "toshin-destroyed-particle3",
+ type: "particle",
+ data: ToshinParticle3 as any,
+ scene: [MainScenes.Scene3],
+ subScene: [SubScenes.Toshin],
+ },
+ {
+ ...DEFAULT_PARTICLE_4,
+ id: "toshin-destroyed-particle4",
+ type: "particle",
+ data: ToshinParticle4 as any,
+ scene: [MainScenes.Scene3],
+ subScene: [SubScenes.Toshin],
+ },
+
+ // Particle for Tama
+ {
+ ...DEFAULT_PARTICLE_2,
+ id: "tama-destroyed-particle2",
+ type: "particle",
+ data: TamaParticle2 as any,
+ scene: [MainScenes.Scene3],
+ subScene: [SubScenes.Tama],
+ },
+ {
+ ...DEFAULT_PARTICLE_1,
+ id: "tama-destroyed-particle1",
+ type: "particle",
+ data: TamaParticle1 as any,
+ scene: [MainScenes.Scene3],
+ subScene: [SubScenes.Tama],
+ },
+ {
+ ...DEFAULT_PARTICLE_3,
+ id: "tama-destroyed-particle3",
+ type: "particle",
+ data: TamaParticle3 as any,
+ scene: [MainScenes.Scene3],
+ subScene: [SubScenes.Tama],
+ },
+ {
+ ...DEFAULT_PARTICLE_4,
+ id: "tama-destroyed-particle4",
+ type: "particle",
+ data: TamaParticle4 as any,
+ scene: [MainScenes.Scene3],
+ subScene: [SubScenes.Tama],
+ },
+];
diff --git a/app/src/layers/contents/main/epilogue.tsx b/app/src/layers/contents/main/epilogue.tsx
new file mode 100644
index 0000000..11a9042
--- /dev/null
+++ b/app/src/layers/contents/main/epilogue.tsx
@@ -0,0 +1,29 @@
+import { FlyToInterpolator } from "@deck.gl/core/typed";
+
+import { MainScenes } from "../../../utils";
+import { LayerData } from "../../types";
+
+import { TOKYO23_MVT } from "./tokyo23";
+
+export const EPILOGUE_LAYERS: LayerData[] = [
+ {
+ id: "scene6-camera",
+ type: "camera",
+ viewState: {
+ bearing: -31.982512864554757,
+ latitude: 35.658752635910965,
+ longitude: 139.7438975323571,
+ pitch: 73.73208989259854,
+ zoom: 16.16825896291775,
+
+ maxPitch: 85,
+ transitionDuration: 700,
+ transitionInterpolator: new FlyToInterpolator({ curve: 2 }),
+ },
+ scene: [MainScenes.Scene6],
+ },
+ {
+ ...TOKYO23_MVT,
+ scene: [MainScenes.Scene6],
+ },
+];
diff --git a/app/src/layers/contents/main/index.tsx b/app/src/layers/contents/main/index.tsx
new file mode 100644
index 0000000..931323a
--- /dev/null
+++ b/app/src/layers/contents/main/index.tsx
@@ -0,0 +1,28 @@
+import { LayerData } from "../../types";
+
+import { BURNED_LAYERS } from "./burned";
+import { DESTROYED_LAYERS } from "./destroyed";
+import { EPILOGUE_LAYERS } from "./epilogue";
+import { LIQUID_LAYERS } from "./liquid";
+import { SHINDO_LAYERS } from "./shindo";
+import { TOKYO23_LAYERS } from "./tokyo23";
+
+export const MAIN_LAYERS: LayerData[] = [
+ // Scene1
+ ...TOKYO23_LAYERS,
+
+ // Scene2
+ ...SHINDO_LAYERS,
+
+ // Scene3
+ ...DESTROYED_LAYERS,
+
+ // Scene4
+ ...BURNED_LAYERS,
+
+ // Scene5
+ ...LIQUID_LAYERS,
+
+ // Scene6
+ ...EPILOGUE_LAYERS,
+];
diff --git a/app/src/layers/contents/main/liquid.tsx b/app/src/layers/contents/main/liquid.tsx
new file mode 100644
index 0000000..14cbecd
--- /dev/null
+++ b/app/src/layers/contents/main/liquid.tsx
@@ -0,0 +1,192 @@
+import { FlyToInterpolator } from "@deck.gl/core/typed";
+
+import { RESOURCE_URL } from "../../../constants";
+import { Layer } from "../../../map";
+import { MainScenes, SubScenes } from "../../../utils";
+import { MAIN_SCENE_DURATION } from "../../constants";
+import { SCENE_DESCRIPTION_TIMEOUT, SceneDescriptionOverlay } from "../../overlays";
+import { LayerData } from "../../types";
+
+import { BASE_LABEL_MVT, TOKYO23_MVT } from "./tokyo23";
+
+const DEFAULT_POLYGON: Omit, "id" | "type" | "url"> = {
+ getPolygon: data => {
+ return data.geometry.coordinates;
+ },
+ getFillColor: data => {
+ const v = data.properties["value"];
+
+ if (v === 0) {
+ return [114, 132, 197, 255];
+ }
+ if (v > 0 && v <= 5) {
+ return [47, 255, 130, 255];
+ }
+ if (v > 5 && v <= 15) {
+ return [56, 232, 232, 255];
+ }
+ if (v > 15) {
+ return [47, 255, 130, 255];
+ }
+ return [202, 202, 202, 255];
+ },
+ opacity: 0.5,
+ animation: {
+ startDuration: 300,
+ endDuration: 100,
+ },
+};
+
+const DEFAULT_WATER: Omit, "id" | "type" | "url"> = {
+ valueProperty: "PLcorrecte",
+ meshCodeProperty: "MeshCode",
+ color: [255, 255, 255, 255],
+ brightness: 2,
+ opacity: 0.5,
+ animation: {
+ startDuration: 300,
+ endDuration: 100,
+ },
+};
+
+// const DEFAULT_LIQUID: Omit, "id" | "type" | "url"> = {
+// valueProperty: "PLcorrecte",
+// meshCodeProperty: "MeshCode",
+// getValue: v => v * 1e7,
+// opacity: 0.8,
+// getTerrainColor: (_value, _scale, ratio) => {
+// if (ratio >= 0.4) {
+// return [180, 85, 66, 255];
+// }
+// if (ratio >= 0.1) {
+// return [180, 114, 66, 255];
+// }
+// if (ratio >= 0.05) {
+// return [180, 143, 66, 255];
+// }
+// if (ratio > 0.01) {
+// return [180, 172, 66, 255];
+// }
+// return [202, 202, 202, 0];
+// },
+// shouldSpreadPixel: true,
+// backgroundColor: [255, 255, 255, 0],
+// scaleTerrain: 3,
+// brightness: 0.3,
+// animation: {
+// startDuration: 300,
+// endDuration: 200,
+// },
+// };
+
+export const LIQUID_LAYERS: LayerData[] = [
+ {
+ id: "scene5-scene-description-overlay",
+ type: "overlay",
+ scene: [MainScenes.Scene5],
+ renderContent: props => ,
+ contentIndex: 0,
+ contentDuration: SCENE_DESCRIPTION_TIMEOUT,
+ },
+ {
+ id: "scene5-camera",
+ type: "camera",
+ viewState: {
+ longitude: 139.695,
+ latitude: 35.665,
+ bearing: 0,
+ pitch: 0,
+ zoom: 10.5,
+ transitionDuration: 1000,
+ transitionInterpolator: new FlyToInterpolator({ curve: 2 }),
+ },
+ enableInfiniteRotation: true,
+ scene: [MainScenes.Scene5],
+ contentIndex: 0,
+ },
+ {
+ id: "scene5-camera-2",
+ type: "camera",
+ viewState: {
+ longitude: 139.758877,
+ latitude: 35.6843181,
+ bearing: 360 * 0.05,
+ pitch: 360 * 0.19,
+ zoom: 12,
+ transitionDuration: 1000,
+ transitionInterpolator: new FlyToInterpolator({ curve: 2 }),
+ },
+ enableInfiniteRotation: true,
+ scene: [MainScenes.Scene5],
+ isMain: true,
+ contentIndex: 1,
+ contentDuration: MAIN_SCENE_DURATION,
+ },
+ {
+ ...TOKYO23_MVT,
+ type: "mvt",
+ scene: [MainScenes.Scene5],
+ },
+ {
+ ...BASE_LABEL_MVT,
+ scene: [MainScenes.Scene5],
+ },
+ // {
+ // ...DEFAULT_LIQUID,
+ // id: "toshin-ekijo_liquid",
+ // type: "liquid",
+ // // url: `${RESOURCE_URL}data/distributions/toshin-ekijo.geojson`,
+ // terrainMap: `${RESOURCE_URL}data/distributions/maps/toshin-liquid_terrain.png`,
+ // maskMap: `${RESOURCE_URL}data/distributions/maps/toshin-liquid_mask.png`,
+ // bounds: [137.48125, 32.85, 141.421875, 37.34166666666666],
+ // scene: [MainScenes.Scene5],
+ // subScene: [SubScenes.Toshin],
+ // },
+ // {
+ // ...DEFAULT_LIQUID,
+ // id: "tama-ekijo_liquid",
+ // type: "liquid",
+ // // url: `${RESOURCE_URL}data/distributions/tama-ekijo.geojson`,
+ // terrainMap: `${RESOURCE_URL}data/distributions/maps/tama-liquid_terrain.png`,
+ // maskMap: `${RESOURCE_URL}data/distributions/maps/tama-liquid_mask.png`,
+ // bounds: [137.48125, 34.02083333333333, 141.421875, 37.34166666666666],
+ // scene: [MainScenes.Scene5],
+ // subScene: [SubScenes.Tama],
+ // },
+ {
+ ...DEFAULT_POLYGON,
+ id: "toshin-ekijo_polygon",
+ type: "polygon",
+ url: `${RESOURCE_URL}data/distributions/minified_toshin-ekijo.geojson`,
+ scene: [MainScenes.Scene5],
+ subScene: [SubScenes.Toshin],
+ },
+ {
+ ...DEFAULT_POLYGON,
+ id: "tama-ekijo_polygon",
+ type: "polygon",
+ url: `${RESOURCE_URL}data/distributions/minified_tama-ekijo.geojson`,
+ scene: [MainScenes.Scene5],
+ subScene: [SubScenes.Tama],
+ },
+ {
+ ...DEFAULT_WATER,
+ id: "toshin-ekijo",
+ type: "water",
+ // url: `${RESOURCE_URL}data/distributions/toshin-ekijo.geojson`,
+ waterMap: `${RESOURCE_URL}data/distributions/maps/toshin-liquid_wind.png`,
+ bounds: [138.98125, 35.52083333333333, 139.921875, 35.84166666666666],
+ scene: [MainScenes.Scene5],
+ subScene: [SubScenes.Toshin],
+ },
+ {
+ ...DEFAULT_WATER,
+ id: "tama-ekijo",
+ type: "water",
+ // url: `${RESOURCE_URL}data/distributions/tama-ekijo.geojson`,
+ waterMap: `${RESOURCE_URL}data/distributions/maps/tama-liquid_wind.png`,
+ bounds: [138.98125, 34.35, 139.921875, 35.84166666666666],
+ scene: [MainScenes.Scene5],
+ subScene: [SubScenes.Tama],
+ },
+];
diff --git a/app/src/layers/contents/main/shindo.tsx b/app/src/layers/contents/main/shindo.tsx
new file mode 100644
index 0000000..7660b06
--- /dev/null
+++ b/app/src/layers/contents/main/shindo.tsx
@@ -0,0 +1,134 @@
+import { FlyToInterpolator } from "@deck.gl/core/typed";
+
+import { Layer } from "../../../map";
+import { MainScenes, SubScenes } from "../../../utils";
+import { MAIN_SCENE_DURATION } from "../../constants";
+import { SCENE_DESCRIPTION_TIMEOUT, SceneDescriptionOverlay } from "../../overlays";
+import { LayerData } from "../../types";
+
+import { TAMA_MASK_MAP } from "./textures/tama-mask-map";
+import { TAMA_TERRAIN_MAP } from "./textures/tama-terrain-map";
+import { TOSHIN_MASK_MAP } from "./textures/toshin-mask-map";
+import { TOSHIN_TERRAIN_MAP } from "./textures/toshin-terrain-map";
+import { BASE_LABEL_MVT, TOKYO23_MVT } from "./tokyo23";
+
+const DEFAULT_TERRAIN: Omit, "id" | "type"> = {
+ getValue: value => {
+ const scaleValue = 1e20;
+ return Math.round(value * scaleValue);
+ },
+ getCode: code => code.slice(0, -2),
+ valueProperty: "IJMAs",
+ meshCodeProperty: "MeshCode",
+ opacity: 0.5,
+ getTerrainColor: value => {
+ const scaleValue = 1e20;
+
+ if (value >= 6.5 * scaleValue) {
+ return [255, 86, 49, 255];
+ }
+ if (value >= 6 * scaleValue) {
+ return [255, 160, 104, 255];
+ }
+ if (value >= 5.5 * scaleValue) {
+ return [255, 215, 46, 255];
+ }
+ if (value >= 5 * scaleValue) {
+ return [138, 255, 46, 255];
+ }
+ if (value >= 4.5 * scaleValue) {
+ return [46, 215, 217, 255];
+ }
+ if (value >= 4 * scaleValue) {
+ return [46, 167, 255, 255];
+ }
+ if (value >= 3 * scaleValue) {
+ return [70, 78, 255, 255];
+ }
+ return [202, 202, 202, 255];
+ },
+ backgroundColor: [255, 255, 255, 0],
+ scaleTerrain: 30,
+ brightness: 0.3,
+ shouldSpreadPixel: true,
+ animation: {
+ startDuration: 300,
+ endDuration: 100,
+ },
+};
+
+export const SHINDO_LAYERS: LayerData[] = [
+ {
+ id: "scene2-scene-description-overlay",
+ type: "overlay",
+ scene: [MainScenes.Scene2],
+ renderContent: props => ,
+ contentIndex: 0,
+ contentDuration: SCENE_DESCRIPTION_TIMEOUT,
+ },
+ {
+ id: "scene2-camera-1",
+ type: "camera",
+ viewState: {
+ longitude: 139.385,
+ latitude: 35.735,
+ bearing: 360 * 0.1,
+ pitch: 360 * 0.18,
+ zoom: 10,
+ transitionDuration: 1000,
+ transitionInterpolator: new FlyToInterpolator({ curve: 3 }),
+ },
+ enableInfiniteRotation: true,
+ scene: [MainScenes.Scene2],
+ contentIndex: 0,
+ },
+ {
+ id: "scene2-camera-2",
+ type: "camera",
+ viewState: {
+ longitude: 139.385,
+ latitude: 35.735,
+ bearing: 360 * 0.1,
+ pitch: 360 * 0.18,
+ zoom: 10,
+ transitionDuration: 1000,
+ transitionInterpolator: new FlyToInterpolator({ curve: 3 }),
+ },
+ enableInfiniteRotation: true,
+ scene: [MainScenes.Scene2],
+ isMain: true,
+ contentIndex: 1,
+ contentDuration: MAIN_SCENE_DURATION,
+ },
+ {
+ ...TOKYO23_MVT,
+ type: "mvt",
+ scene: [MainScenes.Scene2],
+ },
+ {
+ ...BASE_LABEL_MVT,
+ scene: [MainScenes.Scene2],
+ },
+ {
+ ...DEFAULT_TERRAIN,
+ id: "toshin-shindo",
+ type: "terrain",
+ // url: "data/distributions/toshin-shindo.geojson",
+ terrainMap: TOSHIN_TERRAIN_MAP,
+ maskMap: TOSHIN_MASK_MAP,
+ bounds: [137.428125, 33.997916666666654, 141.41875000000002, 37.39791666666666],
+ scene: [MainScenes.Scene2],
+ subScene: [SubScenes.Toshin],
+ },
+ {
+ ...DEFAULT_TERRAIN,
+ id: "tama-shindo",
+ type: "terrain",
+ // url: "data/distributions/tama-shindo.geojson",
+ terrainMap: TAMA_TERRAIN_MAP,
+ maskMap: TAMA_MASK_MAP,
+ bounds: [137.428125, 33.997916666666654, 141.41875000000002, 37.39791666666666],
+ scene: [MainScenes.Scene2],
+ subScene: [SubScenes.Tama],
+ },
+];
diff --git a/app/src/layers/contents/main/textures/tama-mask-map.ts b/app/src/layers/contents/main/textures/tama-mask-map.ts
new file mode 100644
index 0000000..dbfe57b
--- /dev/null
+++ b/app/src/layers/contents/main/textures/tama-mask-map.ts
@@ -0,0 +1 @@
+export const TAMA_MASK_MAP = `data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABP0AAAZgCAYAAAAFxDLZAAAAAXNSR0IArs4c6QAAIABJREFUeF7s3buOI4eVgOE2ZkMbMwYWmxhw4gdQ4FhPr3iDeYBNDG+yECALdmjBC7bFnupqXqpIFln863MmTV94vnPG6/3By29e/IcAAQIECBAgQIAAAQIECBAgQIAAgZTAb1LTGIYAAQIECBAgQIAAAQIECBAgQIAAgRfRzxEQIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAh5Asc8AAAgAElEQVQQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBFeKgCAAACAASURBVAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIEnljg+++//9elD/+HH37wvwMuxfN9BAgQIECAAAECBFYu4H/sr3xBHh4BAgQIEDglsI9+P37+OhnqP3/+7u1rhb/JbL6QAAECBAgQIECAwFMJiH5PtS4PlgABAgQIvBe4JPrtfoLw55IIECBAgAABAgQItAVEv/Z+TUeAAAECcYFLo5/wFz8M4xEgQIAAAQIECGxeQPTb/AkAIECAAIFnFrgm+gl/z7x5j50AAQIECBAgQIDAaQHRz4UQIECAAIEnFRh+iMec9/Qbjzt8qe/uz7zP35MehIdNgAABAgQIECBAYCAg+jkHAgQIECCwQoE5n8p7TfAbju59/lZ4CB4SAQIECBAgQIAAgQsFRL8L4XwbAQIECBBYUmAf/b5++o+3X/PdL/98GQa+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3yB08LJvJzZnX/WdthT6BRdAaQIECBAgcGABod+BF8fQCBAgQIAAAQJpgR9OjP3xz+GWQr9hqtiFS1/1vTYT9sXYFSZAgAABAqcQEPqdYpkMkgABAgQIECCQFXjkHX9Cv+yaqE6AAAECBAgQeEZA6PeMnnsJECBAgAABAm8i8MijvkK/N1l80yBAgAABAgTeUkDo95bLalIECBAgQIAAgW0CTvpt83I1AQIECBAgQODoAkK/o6+Q8REgQIAAAQIEXiAg9HsBshYECBAgQIAAgRcKCP1eiK0VAQIECBAgQOCoAkK/o66McREgQIAAAQIEHhMQ+j3m5i4CBAgQIECAwFsJeKffWy2nyRAgQIAAAQIEvgj9bAICBAgQIECAAIGvAqOn/a4f8Liy/frrr/6d0h4iQIAAAQIECBxMwL+gHWxBDIcAAQIECBAg0BKYnvYbGYOwb0TJNQQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgABkRzEAAAAgAElEQVSBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmH6eex8AAB3cSURBVIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQIECAAAECBAgQIECAAIGOgNCv464rAQIECBAgQIAAAQIECBAgQIAAgZiA0C9GqzABAgQIECBAgAABAgQIECBAgACBjoDQr+OuKwECBAgQIECAAAECBAgQIECAAIGYgNAvRqswAQIECBAgQIAAAQIECBAgQIAAgY6A0K/jrisBAgQIECBAgAABAgQIECBAgACBmIDQL0arMAECBAgQ+P/t2DENAAAAwjD/rlFB9tQAJD1HgAABAgQIECBAgAABAo2A6Ne4eyVAgAABAgQIECBAgAABAgQIECBwExD9brSGCRAgQIAAAQIECBAgQIAAAQIECDQCol/j7pUAAQIECBAgQIAAAQIECBAgQIDATUD0u9EaJkCAAAECBAgQIECAAAECBAgQINAIiH6Nu1cCBAgQIECAAAECBAgQIECAAAECNwHR70ZrmAABAgQIECBAgAABAgQIECBAgEAjIPo17l4JECBAgAABAgQIECBAgAABAgQI3AREvxutYQIECBAgQIAAAQIECBAgQIAAAQKNgOjXuHslQIAAAQIECBAgQIAAAQIECBAgcBMQ/W60hgkQIECAAAECBAgQIECAAAECBAg0AqJf4+6VAAECBAgQIECAAAECBAgQIECAwE1A9LvRGiZAgAABAgQIECBAgAABAgQIECDQCIh+jbtXAgQIECBAgAABAgQIECBAgAABAjcB0e9Ga5gAAQIECBAgQIAAAQIECBAgQIBAIyD6Ne5eCRAgQIAAAQIECBAgQIAAAQIECNwERL8brWECBAgQIECAAAECBAgQIECAAAECjYDo17h7JUCAAAECBAgQIECAAAECBAgQIHATEP1utIYJECBAgAABAgQIECBAgAABAgQINAKiX+PulQABAgQIECBAgAABAgQIECBAgMBNQPS70RomQIAAAQIECBAgQIAAAQIECBAg0AiIfo27VwIECBAgQIAAAQIECBAgQIAAAQI3AdHvRmuYAAECBAgQIECAAAECBAgQIECAQCMg+jXuXgkQIECAAAECBAgQIECAAAECBAjcBES/G61hAgQIECBAgAABAgQIECBAgAABAo2A6Ne4eyVAgAABAgQIECBAgAABAgQIECBwExD9brSGCRAgQIAAAQIECBAgQIAAAQIECDQCol/j7pUAAQIECBAgQIAAAQIECBAgQIDATUD0u9EaJkCAAAECBAgQIECAAAECBAgQINAIiH6Nu1cCBAgQIECAAAECBAgQIECAAAECNwHR70ZrmAABAgQIECBAgAABAgQIECBAgEAjIPo17l4JECBAgAABAgQIECBAgAABAgQI3AREvxutYQIECBAgQIAAAQIECBAgQIAAAQKNgOjXuHslQIAAAQIECBAgQIAAAQIECBAgcBMQ/W60hgkQIECAAAECBAgQIECAAAECBAg0AqJf4+6VAAECBAgQIECAAAECBAgQIECAwE1A9LvRGiZAgAABAgQIECBAgAABAgQIECDQCIh+jbtXAgQIECBAgAABAgQIECBAgAABAjcB0e9Ga5gAAQIECBAgQIAAAQIECBAgQIBAIyD6Ne5eCRAgQIAAAQIECBAgQIAAAQIECNwERL8brWECBAgQIECAAAECBAgQIECAAAECjYDo17h7JUCAAAECBAgQIECAAAECBAgQIHATEP1utIYJECBAgAABAgQIECBAgAABAgQINAKiX+PulQABAgQIECBAgAABAgQIECBAgMBNQPS70RomQIAAAQIECBAgQIAAAQIECBAg0AiIfo27VwIECBAgQIAAAQIECBAgQIAAAQI3AdHvRmuYAAECBAgQIECAAAECBAgQIECAQCMg+jXuXgkQIECAAAECBAgQIECAAAECBAjcBES/G61hAgQIECBAgAABAgQIECBAgAABAo2A6Ne4eyVAgAABAgQIECBAgAABAgQIECBwExD9brSGCRAgQIAAAQIECBAgQIAAAQIECDQCol/j7pUAAQIECBAgQIAAAQIECBAgQIDATUD0u9EaJkCAAAECBAgQIECAAAECBAgQINAIiH6Nu1cCBAgQIECAAAECBAgQIECAAAECNwHR70ZrmAABAgQIECBAgAABAgQIECBAgEAjIPo17l4JECBAgAABAgQIECBAgAABAgQI3AREvxutYQIECBAgQIAAAQIECBAgQIAAAQKNgOjXuHslQIAAAQIECBAgQIAAAQIECBAgcBMQ/W60hgkQIECAAAECBAgQIECAAAECBAg0AqJf4+6VAAECBAgQIECAAAECBAgQIECAwE1A9LvRGiZAgAABAgQIECBAgAABAgQIECDQCIh+jbtXAgQIECBAgAABAgQIECBAgAABAjcB0e9Ga5gAAQIECBAgQIAAAQIECBAgQIBAIyD6Ne5eCRAgQIAAAQIECBAgQIAAAQIECNwERL8brWECBAgQIECAAAECBAgQIECAAAECjYDo17h7JUCAAAECBAgQIECAAAECBAgQIHATEP1utIYJECBAgAABAgQIECBAgAABAgQINAKiX+PulQABAgQIECBAgAABAgQIECBAgMBNQPS70RomQIAAAQIECBAgQIAAAQIECBAg0AiIfo27VwIECBAgQIAAAQIECBAgQIAAAQI3AdHvRmuYAAECBAgQIECAAAECBAgQIECAQCMg+jXuXgkQIECAAAECBAgQIECAAAECBAjcBES/G61hAgQIECBAgAABAgQIECBAgAABAo2A6Ne4eyVAgAABAgQIECBAgAABAgQIECBwExD9brSGCRAgQIAAAQIECBAgQIAAAQIECDQCol/j7pUAAQIECBAgQIAAAQIECBAgQIDATUD0u9EaJkCAAAECBAgQIECAAAECBAgQINAIiH6Nu1cCBAgQIECAAAECBAgQIECAAAECNwHR70ZrmAABAgQIECBAgAABAgQIECBAgEAjIPo17l4JECBAgAABAgQIECBAgAABAgQI3AREvxutYQIECBAgQIAAAQIECBAgQIAAAQKNgOjXuHslQIAAAQIECBAgQIAAAQIECBAgcBMQ/W60hgkQIECAAAECBAgQIECAAAECBAg0AqJf4+6VAAECBAgQIECAAAECBAgQIECAwE1A9LvRGiZAgAABAgQIECBAgAABAgQIECDQCIh+jbtXAgQIECBAgAABAgQIECBAgAABAjcB0e9Ga5gAAQIECBAgQIAAAQIECBAgQIBAIyD6Ne5eCRAgQIAAAQIECBAgQIAAAQIECNwERL8brWECBAgQIECAAAECBAgQIECAAAECjYDo17h7JUCAAAECBAgQIECAAAECBAgQIHATEP1utIYJECBAgAABAgQIECBAgAABAgQINAKiX+PulQABAgQIECBAgAABAgQIECBAgMBNQPS70RomQIAAAQIECBAgQIAAAQIECBAg0AiIfo27VwIECBAgQIAAAQIECBAgQIAAAQI3AdHvRmuYAAECBAgQIECAAAECBAgQIECAQCMg+jXuXgkQIECAAAECBAgQIECAAAECBAjcBES/G61hAgQIECBAgAABAgQIECBAgAABAo2A6Ne4eyVAgAABAgQIECBAgAABAgQIECBwExD9brSGCRAgQIAAAQIECBAgQIAAAQIECDQCol/j7pUAAQIECBAgQIAAAQIECBAgQIDATUD0u9EaJkCAAAECBAgQIECAAAECBAgQINAIiH6Nu1cCBAgQIECAAAECBAgQIECAAAECNwHR70ZrmAABAgQIECBAgAABAgQIECBAgEAjIPo17l4JECBAgAABAgQIECBAgAABAgQI3AREvxutYQIECBAgQIAAAQIECBAgQIAAAQKNgOjXuHslQIAAAQIECBAgQIAAAQIECBAgcBMQ/W60hgkQIECAAAECBAgQIECAAAECBAg0AqJf4+6VAAECBAgQIECAAAECBAgQIECAwE1A9LvRGiZAgAABAgQIECBAgAABAgQIECDQCIh+jbtXAgQIECBAgAABAgQIECBAgAABAjcB0e9Ga5gAAQIECBAgQIAAAQIECBAgQIBAIyD6Ne5eCRAgQIAAAQIECBAgQIAAAQIECNwERL8brWECBAgQIECAAAECBAgQIECAAAECjYDo17h7JUCAAAECBAgQIECAAAECBAgQIHATEP1utIYJECBAgAABAgQIECBAgAABAgQINAKiX+PulQABAgQIECBAgAABAgQIECBAgMBNQPS70RomQIAAAQIECBAgQIAAAQIECBAg0AiIfo27VwIECBAgQIAAAQIECBAgQIAAAQI3AdHvRmuYAAECBAgQIECAAAECBAgQIECAQCMg+jXuXgkQIECAAAECBAgQIECAAAECBAjcBES/G61hAgQIECBAgAABAgQIECBAgAABAo2A6Ne4eyVAgAABAgQIECBAgAABAgQIECBwExD9brSGCRAgQIAAAQIECBAgQIAAAQIECDQCol/j7pUAAQIECBAgQIAAAQIECBAgQIDATUD0u9EaJkCAAAECBAgQIECAAAECBAgQINAIiH6Nu1cCBAgQIECAAAECBAgQIECAAAECNwHR70ZrmAABAgQIECBAgAABAgQIECBAgEAjIPo17l4JECBAgAABAgQIECBAgAABAgQI3AREvxutYQIECBAgQIAAAQIECBAgQIAAAQKNgOjXuHslQIAAAQIECBAgQIAAAQIECBAgcBMQ/W60hgkQIECAAAECBAgQIECAAAECBAg0AqJf4+6VAAECBAgQIECAAAECBAgQIECAwE1A9LvRGiZAgAABAgQIECBAgAABAgQIECDQCIh+jbtXAgQIECBAgAABAgQIECBAgAABAjcB0e9Ga5gAAQIECBAgQIAAAQIECBAgQIBAIyD6Ne5eCRAgQIAAAQIECBAgQIAAAQIECNwERL8brWECBAgQIECAAAECBAgQIECAAAECjYDo17h7JUCAAAECBAgQIECAAAECBAgQIHATEP1utIYJECBAgAABAgQIECBAgAABAgQINAID7NicQtpTAWgAAAAASUVORK5CYII=`;
diff --git a/app/src/layers/contents/main/textures/tama-shindo-mask-map.ts b/app/src/layers/contents/main/textures/tama-shindo-mask-map.ts
new file mode 100644
index 0000000..2232273
--- /dev/null
+++ b/app/src/layers/contents/main/textures/tama-shindo-mask-map.ts
@@ -0,0 +1 @@
+export const TAMA_SHINDO_MASK_MAP = `data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABPkAAAZgCAYAAAAML5KjAAAAAXNSR0IArs4c6QAAIABJREFUeF7s3bGS62Z2qNGj2FWazJEzO7afQE+vJ7DjcebI2ajK8bhgmUc8FNj4QYIkPmBNZFvd7I21d+ve+Yrd/dM3/yFAgAABAgQIECBAgAABAgQIECBAIC3wU3p6wxMgQIAAAQIECBAgQIAAAQIECBAg8E3kcwQECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQICKIj6eAAAgAElEQVQAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQC2lJAcAACAASURBVIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgACBuMAvv/zy95FH+PXXX/2/+yNQPoYAAQIECBAgQIBAUMD/Zz+4NCMTIECAAIGLwGjguxYT+9wPAQIECBAgQIAAgeMJiHzH26knIkCAAIETCTwS+SYeoe9ER+JRCRAgQIAAAQIETiEg8p1izR6SAAECBI4q8GjkE/qOehGeiwABAgQIECBA4KwCIt9ZN++5CRAgQOAQAs9EPqHvECfgIQgQIECAAAECBAj8n4DI5xAIECBAgEBU4NnAd3lsP7obPQBjEyBAgAABAgQIELgSEPmcAwECBAgQCApsFfiEvuDyjUyAAAECBAgQIEBgRkDkcxYECBAgQGCHAltHvJFH9I6+ESUfQ4AAAQIECBAgQGCfAiLfPvdiKgIECBA4ocAnwt4ts9B3wsPzyAQIECBAgAAB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AQIECBAgQIAAgaiAyBflNIwAAQIECBAgQIAAAQIECBAgQIBAvYDIV29uRQIECBAgQIAAAQIECBAgQIAAAQJRAZEvymkYAQIECBAgQIAAAQIECBAgQIAAgXoBka/e3IoECBAgQIAAAQIECBAgQIAAAQIEogIiX5TTMAIECBAgQIAAAQIECBAgQIAAAQL1AiJfvbkVCRAgQIAAAQIECBAgQIAAAQIECEQFRL4op2EECBAgQIAAAQIECBAgQIAAAQIE6gVEvnpzKxIgQIAAAQIECBAgQIAAAQIECBCICoh8UU7DCBAgQIDA/7djxzQAAAAIw/y7xgTZVQOQ9BwBAgQIECBAgAABAgQI9AIiX2/ukQABAgQIECBAgAABAgQIECBAgMBVQOS7chojQIAAAQIECBAgQIAAAQIECBAg0AuIfL25RwIECBAgQIAAAQIECBAgQIAAAQJXAZHvymmMAAECBAgQIECAAAECBAgQIECAQC8g8vXmHgkQIECAAAECBAgQIECAAAECBAhcBUS+K6cxAgQIECBAgAABAgQIECBAgAABAr2AyNebeyRAgAABAgQIECBAgAABAgQIECBwFRD5rpzGCBAgQIAAAQIECBAgQIAAAQIECPQCIl9v7pEAAQIECBAgQIAAAQIECBAgQIDAVUDku3IaI0CAAAECBAgQIECAAAECBAgQINALiHy9uUcCBAgQIECAAAECBAgQIECAAAECVwGR78ppjAABAgQIECBAgAABAgQIECBAgEAvIPL15h4JECBAgAABAgQIECBAgAABAgQIXAVEviunMQIECBAgQIAAAQIECBAgQIAAAQK9gMjXm3skQIAAAQIECBAgQIAAAQIECBAgcBUQ+a6cxggQIECAAAECBAgQIECAAAECBAj0AiJfb+6RAAECBAgQIECAAAECBAgQIECAwFVA5LtyGiNAgAABAgQIECBAgAABAgQIECDQC4h8vblHAgQIECBAgAABAgQIECBAgAABAlcBke/KaYwAAQIECBAgQIAAAQIECBAgQIBALyDy9eYeCRAgQIAAAQIECBAgQIAAAQIECFwFRL4rpzECBAgQIECAAAECBAgQIECAAAECvYDI15t7JECAAAECBAgQIECAAAECBAgQIHAVEPmunMYIECBAgAABAgQIECBAgAABAgQI9AIiX2/ukQABAgQIECBAgAABAgQIECBAgMBVQOS7chojQIAAAQIECBAgQIAAAQIECBAg0AuIfL25RwIECBAgQIAAAQIECBAgQIAAAQJXAZHvymmMAAECBAgQIECAAAECBAgQIECAQC8g8vXmHgkQIECAAAECBAgQIECAAAECBAhcBUS+K6cxAgQIECBAgAABAgQIECBAgAABAr2AyNebeyRAgAABAgQIECBAgAABAgQIECBwFRD5rpzGCBAgQIAAAQIECBAgQIAAAQIECPQCIl9v7pEAAQIECBAgQIAAAQIECBAgQIDAVUDku3IaI0CAAAECBAgQIECAAAECBAgQINALiHy9uUcCBAgQIECAAAECBAgQIECAAAECVwGR78ppjAABAgQIECBAgAABAgQIECBAgEAvIPL15h4JECBAgAABAgQIECBAgAABAgQIXAVEviunMQIECBAgQIAAAQIECBAgQIAAAQK9gMjXm3skQIAAAQIECBAgQIAAAQIECBAgcBUQ+a6cxggQIECAAAECBAgQIECAAAECBAj0AiJfb+6RAAECBAgQIECAAAECBAgQIECAwFVA5LtyGiNAgAABAgQIECBAgAABAgQIECDQC4h8vblHAgQIECBAgAABAgQIECBAgAABAlcBke/KaYwAAQIECBAgQIAAAQIECBAgQIBALyDy9eYeCRAgQIAAAQIECBAgQIAAAQIECFwFRL4rpzECBAgQIECAAAECBAgQIECAAAECvYDI15t7JECAAAECBAgQIECAAAECBAgQIHAVEPmunMYIECBAgAABAgQIECBAgAABAgQI9AIiX2/ukQABAgQIECBAgAABAgQIECBAgMBVQOS7chojQIAAAQIECBAgQIAAAQIECBAg0AuIfL25RwIECBAgQIAAAQIECBAgQIAAAQJXAZHvymmMAAECBAgQIECAAAECBAgQIECAQC8g8vXmHgkQIECAAAECBAgQIECAAAECBAhcBUS+K6cxAgQIECBAgAABAgQIECBAgAABAr2AyNebeyRAgAABAgQIECBAgAABAgQIECBwFRD5rpzGCBAgQIAAAQIECBAgQIAAAQIECPQCIl9v7pEAAQIECBAgQIAAAQIECBAgQIDAVUDku3IaI0CAAAECBAgQIECAAAECBAgQINALiHy9uUcCBAgQIECAAAECBAgQIECAAAECVwGR78ppjAABAgQIECBAgAABAgQIECBAgEAvIPL15h4JECBAgAABAgQIECBAgAABAgQIXAVEviunMQIECBAgQIAAAQIECBAgQIAAAQK9gMjXm3skQIAAAQIECBAgQIAAAQIECBAgcBUQ+a6cxggQIECAAAECBAgQIECAAAECBAj0AiJfb+6RAAECBAgQIECAAAECBAgQIECAwFVA5LtyGiNAgAABAgQIECBAgAABAgQIECDQC4h8vblHAgQIECBAgAABAgQIECBAgAABAlcBke/KaYwAAQIECBAgQIAAAQIECBAgQIBALyDy9eYeCRAgQIAAAQIECBAgQIAAAQIECFwFRL4rpzECBAgQIECAAAECBAgQIECAAAECvYDI15t7JECAAAECBAgQIECAAAECBAgQIHAVEPmunMYIECBAgAABAgQIECBAgAABAgQI9AIiX2/ukQABAgQIECBAgAABAgQIECBAgMBVQOS7chojQIAAAQIECBAgQIAAAQIECBAg0AuIfL25RwIECBAgQIAAAQIECBAgQIAAAQJXAZHvymmMAAECBAgQIECAAAECBAgQIECAQC8g8vXmHgkQIECAAAECBAgQIECAAAECBAhcBUS+K6cxAgQIECBAgAABAgQIECBAgAABAr2AyNebeyRAgAABAgQIECBAgAABAgQIECBwFRD5rpzGCBAgQIAAAQIECBAgQIAAAQIECPQCIl9v7pEAAQIECBAgQIAAAQIECBAgQIDAVUDku3IaI0CAAAECBAgQIECAAAECBAgQINALiHy9uUcCBAgQIECAAAECBAgQIECAAAECVwGR78ppjAABAgQIECBAgAABAgQIECBAgEAvIPL15h4JECBAgAABAgQIECBAgAABAgQIXAVEviunMQIECBAgQIAAAQIECBAgQIAAAQK9gMjXm3skQIAAAQIECBAgQIAAAQIECBAgcBUQ+a6cxggQIECAAAECBAgQIECAAAECBAj0AiJfb+6RAAECBAgQIECAAAECBAgQIECAwFVA5LtyGiNAgAABAgQIECBAgAABAgQIECDQC4h8vblHAgQIECBAgAABAgQIECBAgAABAlcBke/KaYwAAQIECBAgQIAAAQIECBAgQIBALyDy9eYeCRAgQIAAAQIECBAgQIAAAQIECFwFRL4rpzECBAgQIECAAAECBAgQIECAAAECvYDI15t7JECAAAECBAgQIECAAAECBAgQIHAVEPmunMYIECBAgAABAgQIECBAgAABAgQI9AIiX2/ukQABAgQIECBAgAABAgQIECBAgMBVQOS7chojQIAAAQIECBAgQIAAAQIECBAg0AuIfL25RwIECBAgQIAAAQIECBAgQIAAAQJXAZHvymmMAAECBAgQIECAAAECBAgQIECAQC8g8vXmHgkQIECAAAECBAgQIECAAAECBAhcBUS+K6cxAgQIECBAgAABAgQIECBAgAABAr2AyNebeyRAgAABAgQIECBAgAABAgQIECBwFRD5rpzGCBAgQIAAAQIECBAgQIAAAQIECPQCIl9v7pEAAQIECBAgQIAAAQIECBAgQIDAVUDku3IaI0CAAAECBAgQIECAAAECBAgQINALiHy9uUcCBAgQIECAAAECBAgQIECAAAECVwGR78ppjAABAgQIECBAgAABAgQIECBAgEAvIPL15h4JECBAgAABAgQIECBAgAABAgQIXAVEviunMQIECBAgQIAAAQIECBAgQIAAAQK9gMjXm3skQIAAAQIECBAgQIAAAQIECBAgcBUQ+a6cxggQIECAAAECBAgQIECAAAECBAj0AiJfb+6RAAECBAgQIECAAAECBAgQIECAwFVA5LtyGiNAgAABAgQIECBAgAABAgQIECDQC4h8vblHAgQIECBAgAABAgQIECBAgAABAlcBke/KaYwAAQIECBAgQIAAAQIECBAgQIBALyDy9eYeCRAgQIAAAQIECBAgQIAAAQIECFwFRL4rpzECBAgQIECAAAECBAgQIECAAAECvYDI15t7JECAAAECBAgQIECAAAECBAgQIHAVEPmunMYIECBAgAABAgQIECBAgAABAgQI9AIiX2/ukQABAgQIECBAgAABAgQIECBAgMBVQOS7chojQIAAAQIECBAgQIAAAQIECBAg0AuIfL25RwIECBAgQIAAAQIECBAgQIAAAQJXAZHvymmMAAECBAgQIECAAAECBAgQIECAQC8g8vXmHgkQIECAAAECBAgQIECAAAECBAhcBUS+K6cxAgQIECBAgAABAgQIECBAgAABAr2AyNebeyRAgAABAgQIECBAgAABAgQIECBwFRD5rpzGCBAgQIAAAQIECBAgQIAAAQIECPQCIl9v7pEAAQIECBAgQIAAAQIECBAgQIDAVUDku3IaI0CAAAECBAgQIECAAAECBAgQINALiHy9uUcCBAgQIECAAAECBAgQIECAAAECVwGR78ppjAABAgQIECBAgAABAgQIECBAgEAvIPL15h4JECBAgAABAgQIECBAgAABAgQIXAVEviunMQIECBAgQIAAAQIECBAgQIAAAQK9gMjXm3skQIAAAQIECBAgQIAAAQIECBAgcBUQ+a6cxggQIECAAAECBAgQIECAAAECBAj0AiJfb+6RAAECBAgQIECAAAECBAgQIECAwFVA5LtyGiNAgAABAgQIECBAgAABAgQIECDQC4h8vblHAgQIECBAgAABAgQIECBAgAABAlcBke/KaYwAAQIECBAgQIAAAQIECBAgQIBALyDy9eYeCRAgQIAAAQIECBAgQIAAAQIECFwFRL4rpzECBAgQIECAAAECBAgQIECAAAECvYDI15t7JECAAAECBAgQIECAAAECBAgQIHAVEPmunMYIECBAgAABAgQIECBAgAABAgQI9AIDyqSAYNj5/JsAAAAASUVORK5CYII=`;
diff --git a/app/src/layers/contents/main/textures/tama-shindo-terrain-map.ts b/app/src/layers/contents/main/textures/tama-shindo-terrain-map.ts
new file mode 100644
index 0000000..a8c71c9
--- /dev/null
+++ b/app/src/layers/contents/main/textures/tama-shindo-terrain-map.ts
@@ -0,0 +1 @@
+export const TAMA_SHINDO_TERRAIN_MAP = `data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABPkAAAZgCAYAAAAML5KjAAAAAXNSR0IArs4c6QAAIABJREFUeF7s3WlrneUWgOFd59nW+Sgi+Af8//9DEMEPKoo4T1Xr2MPa8ITXnJwOaXaSO70CYm3TZOVa65wPN+9Oru12u9s7bwQIECBAgAABAgQIECBAgAABAgQIZAWuiXzZ3RmcAAECBAgQIECAAAECBAgQIECAwF5A5HMIBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgqK5bDAAAgAElEQVQQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBLWbVq4AACAASURBVAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBweIFr167tbt++ffhP5DMQIECAAAECBAgQOKWAyHdKOH+NAAECBAgQuPoCE/fW24p8gt/V37uvkAABAgQIECBQFBD5ilszMwECBAgQIHAuAncLenf783MZ0ichQIAAAQIECBAgsNvtRD5nQIAAAQIECBA4QeBOAW894eclvE6HAAECBAgQIEDgsgiIfJdlE+YgQIAAAQIEMgKe4MusyqAECBAgQIAAgYdGQOR7aFbtCyVAgAABAgTOSkDkOytJH4cAAQIECBAgQOCsBES+s5L0cQgQIECAAAECBAgQIECAAAECBAhckIDId0HwPi0BAgQIECDQFPAUX3NvpiZAgAABAgQIXHUBke+qb9jXR4AAAQIECJyJgLh3Jow+CAECBAgQIECAwIEERL4DwfqwBAgQIECAwNUVEPyu7m59ZQQIECBAgACBqoDIV92cuQkQIECAAIGDC4h5Byf2CU4QmLubf/755x8+BAgQIECAAIF7FhD57pnKOxIgQIAAAQIPi8Ajjzyyu3379v4fbwTOW+Cxxx7bR76///5b6DtvfJ+PAAECBAiEBUS+8PKMToAAAQIECBAgcLUE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QAIJJJBAAgkkkEACuxAo5NvFY2gSCSSQQAIJJJBAAgkkkEACCSSQQAIJbBco5Ntu15kJJJBAAgkkkEACCSSQQAIJJJBAAgnsQqCQbxePoUkkkEACCSSQQAIJJJBAAgkkkEACCSSwXaCQb7tdZyaQQAIJJJBAAgkkkEACCSSQQAIJJLALgUK+XTyGJpFAAgkkkEACCSSQQAIJJJBAAgkkkMB2gUK+7XadmUACCSSQQAIJJJBAAgkkkEACCSSQwC4ECvl28RiaRAIJJJBAAgkkkEACCSSQQAIJJJBAAtsFCvm223VmAgkkkEACCSSQQAIJJJBAAgkkkEACuxAo5NvFY2gSCSSQQAIJJJBAAgkkkEACCSSQQAIJbBco5Ntu15n/Xzt2TAMAAIAwzL9rPHDtqAASUj4IECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgABnm69WAAAbkElEQVQBAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr+Ak++3kyRAgAABAgQIECBAgAABAgQIECCQEHDyJWZQggABAgQIECBAgAABAgQIECBAgMAv4OT77SQJECBAgAABAgQIECBAgAABAgQIJAScfIkZlCBAgAABAgQIECBAgAABAgQIECDwCzj5fjtJAgQIECBAgAABAgQIECBAgAABAgkBJ19iBiUIECBAgAABAgQIECBAgAABAgQI/AJOvt9OkgABAgQIECBAgAABAgQIECBAgEBCwMmXmEEJAgQIECBAgAABAgQIECBAgAABAr/AAGQu5e3iA01cAAAAAElFTkSuQmCC`;
diff --git a/app/src/layers/contents/main/textures/tama-terrain-map.ts b/app/src/layers/contents/main/textures/tama-terrain-map.ts
new file mode 100644
index 0000000..15eaf3a
--- /dev/null
+++ b/app/src/layers/contents/main/textures/tama-terrain-map.ts
@@ -0,0 +1 @@
+export const TAMA_TERRAIN_MAP = `data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABP0AAAZgCAYAAAAFxDLZAAAAAXNSR0IArs4c6QAAIABJREFUeF7s3UmLnGUXBuA3jtFOjIlRQRGNGoggLl0oKKL4C3Qr+gP8Ne5F3LoQRBDEcaE4LAQnFFFjoiASNdCZHPNxXjjFkyKRz8Qk3XddDdLp6qrquq9z3Ny8w5Zpmk5OvggQIECAAAECBAgQIECAAAECBAgQiBHYovSLmaUgBAgQIECAAAECBAgQIECAAAECBGYBpZ9FIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQLytXT8AAAgAElEQVQECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAqG26EAAACAASURBVAQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgAABAgQIECBAgAABAgQIhAko/cIGKg4BAgQIECBAgAABAgQIECBAgAABpZ8dIECAAAECBAgQIECAAAECBAgQIBAmoPQLG6g4BAgQIECAAAECBAgQIECAAAECBJR+doAAAQIECBAgQIAAAQIECBAgQIBAmIDSL2yg4hAgQIAAAQIECBAgQIAAAQIECBBQ+tkBAgQIECBAgAABAgQIECBAgAABAmECSr+wgYpDgAABAgQIECBAgAABAgQIECBAQOlnBwgQIECAAAECBAgQIECAAAECBAiECSj9wgYqDgECBAgQIECAAAECBAgQIECAAAGlnx0gQIAAAQIECBAgQIAAAQIECBAgECag9AsbqDgECBAgQIAAAQIECBAgQIAAAQIElH52gAABAgQIECBAgAABAgQIECBAgECYgNIvbKDiECBAgAABAgQIECBAgAABAgQIEFD62QECBAgQIECAAAECBAgQIECAAAECYQJKv7CBikOAAAECBAgQIECAAAECBAgQIEBA6WcHCBAgQIAAAQIECBAgQIAAAQIECIQJKP3CBioOAQIECBAgQIAAAQIECBAgQIAAAaWfHSBAgAABAgQIECBAgAABAgQIECAQJqD0CxuoOAQIECBAgAABAgQIECBAgAABAgSUfnaAAAECBAgQIECAAAECBAgQIECAQJiA0i9soOIQIECAAAECBAgQIECAAAECBAgQUPrZAQIECBAgQIAAAQIECBAgQIAAAQJhAkq/sIGKQ4AAAQIECBAgQIAAAQIECBAgQEDpZwcIECBAgECIwG233Tbt379/6u+33HLLdPDgwWnPnj3T+vr6tLa2Nn333XchacUgQIAAAQIECBAgQOCfBJR+9oMAAQIECIQIVNlXX1u2bJlOnjw5/fXXX/PPl1566eKxelzxFzJwMQgQIECAAAECBAj8g4DSz3oQIECAAIEQgVtvvXVOcskll8zff//997nsu+yyy+afq/Crn6sMrCMAfREgQIAAAQIECBAgkCug9MudrWQECBAgsGICVfpVqddffaRflX5V+NV/Xf7V9wMHDqyYkLgECBAgQIAAAQIEVkdA6bc6s5aUAAECBMIF+vTeMWYVfX3k359//jmf6ltlYB/x98MPP4SriEeAAAECBAgQIEBgNQWUfqs5d6kJECBAIExgLPz6iL6O2KXfiRMn5of6dN+///57/rkKwO+//z5MRBwCBAgQIECAAAECqy2g9Fvt+UtPgAABAptAYNu2bdORI0cWn3T37t3ToUOHFj/ffPPNUx2x19f0W45UpV79d/z48UXpN54G7Ki/TbAEPiIBAgQIECBAgACBfymg9PuXYJ5OgAABAgQutMC11147n5JbR+zV961bt84foYu/Kv3qa/mGHfVY38m3/v3HH3/MP3fh19/7SEB39b3Qk/X3CBAgQIAAAQIECJw/AaXf+bP1zgQIECBA4JwEquw7fPjwVN/r64orrpj6unx1Cu+VV145P95l3lVXXbW4Vl8XfvW979pbJV/d0bdLvuXSr97bNf7OaWReTIAAAQIECBAgQGDDCCj9NswofBACBAgQIHCqwM6dO+cHqrSro/i6rKvHLr/88qmuydfX5auj/6r8q6+6WUc9t3/uIwDr8XqvKvf6qMEq/sYjBOv9Dh48aBQECBAgQIAAAQIECGxyAaXfJh+gj0+AAAECeQLbt2+f1tfXp127ds3hutirI/3Gryrx6qvvxts/V6FXZV6Ve/XVhWHfybffr35fz+uSsN+7Hvv222/PCLt3797pq6++yoOXiAABAgQIECBAgECQgNIvaJiiECBAgMDmFtixY8eiwKskdTRfl3pV2PW1/Lq0q7KuCrqjR4/Oz6sbflTh13fvHW/WUb/v59fv67++TmA9Xu85lob1/G+++WZ+3z179szfuwis0q++FH+be998egIECBAgQIAAgWwBpV/2fKUjQIAAgU0kUNfu6zvp1sfuI/aqnKuvvoZfl3pd5NVdeeuxKv3Gr/H142m8/ZzxSMD+e/W9rwFY3+vmHnfeeefiFOMvv/xyuuOOOxZHCNbPvggQIECAAAECBAgQ2HgCSr+NNxOfiAABAgRWUKBO6e0j7brUq9Ny+7p9ddRfH7m3fHpuPV438egSrwu++rneq963Xt+nAfe1AeumHvVVpw33Y/33xjv81u/7NOB6v3pOX2ewviv+VnBhRSZAgAABAgQIENjwAkq/DT8iH5AAAQIEUgXqdN4u5X799df5Lr193b3xFN2xBCyLLuROnDgx/7uv2Vf/7v9Gsz6ttx9bLv2qEOzCsd97vMtvl4J9w496nyoQx9OB66Yhfbrvvn37pi+++CJ1bHIRIECAAAECBAgQ2BQCSr9NMSYfkgABAgQSBarkG0u85Wvx9c99um2VblXK9ZF+v/3223wEXz9vvNFHPafv8Nt37a2yr/7rIwL7On59jb++ZuB4em/9vb5OYJ9ePJaH/dx67PPPP59/ddddd82f6UzF39133z19+umniSOViQABAgQIECBAgMCGEVD6bZhR+CAECBAgsGoCdXfeKt766LozlX7t0qVf33W3XltH3PUReHWKcB391yVdPz5eA7D+1vh36r36iL0uDfsz9RGB/feXS78+grCvOVjP/+yzz+bSr77q73/yySdTlXydsX6+55575t/X6z/66KNVG7u8BAgQIECAAAECBC6IgNLvgjD7IwQIECBA4FSBvmnHWPj1NffGa/t1QddH6/W79DX1xuKvSr96vI4ArPetU3Tre98FuAu//ptV0vVRg1X49bX6upDr8rDeswq/sSwcXzuWkvXvfs8q/ZYLx1Ghc3Zp+PHHH1sTAgQIECBAgAABAgT+IwGl338E6W0IECBAgMC/Fagj/cbTY/vGGn3TjuXr+o0316i/1a+t6+lVCXfdddfNj9XdfOu5fSOPPkJw+YjC5XJxvGZfvU8VgX3Nwfoby0f6je9Xz+tysT9bfR+vMdjPH526iOxSs4vHOiLQFwECBAgQIECAAAECZy+g9Dt7O68kQIAAAQLnJFClXxdjVZrVqbldrC3fKKP/UN/oo36uIq5Ksz5Sbm1tbXEjkC7eurTrv1Pfu1ysO/7W1/KReV3EdenXp/mO1was14x3/K336dKwX798zcB6/lgC9merz98lYx+5WD8r/s5pvbyYAAECBAgQIEBgxQWUfiu+AOITIECAwMUTGEu/Lt+6+BuPiutybfn03CrGqvjrIwK3bds2l2p95N94JF+nrPeqkq3KtSr96rVd+vWRen1jj/GU3rHU6/fqz9jXGKzn93vVc+rv1+/681cp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z//ZfiuzgcgrXvGKbRht2NE6mq2n6SBAgAABAgSOLgGh39FVL3dLgAABAgQIHKZAnX6zwcYEZT1OR9106k0IMx2Bc/mmQc4mD4VATaGcALHrFpwUxkyoV5hUUFTwMp1cu983od9Mp5zpnNM5WEDTvc104LrVdj8/nXjTnThjms9PEDhhVyFRx+704a4/awOOw3SYzfTVOuK6RtN7e22mKU+H4exCOyHlhGCd17UOve+5n5+022vB321ve9vtPt/3vvdt93rTm950e956hx1ds+BsNibp/uY7MyvYzKSNRepWm118CwjnMzNtdneaczswz6YVfb7QsPdnc46u2/3MtNfpoBuv7qn3e73fQNOBp1NuatP3Tog7a+XN9ON+S/0rvJxa9PuZDtA6S7/97W/vT8ueTr4JrgtFu2bnzDTfCRb7bTc1vRC2DUoaU2759FrXmh2t536OO+64LfgrAOzYDf0O8z85pxEgQIAAAQIHTEDod8AK4nYIECBAgACBn1+g4GLCsQnDJhwrYJkAb8KZHqdjrfML/ApOZuOOArtCtNlooWtf8pKX3G60z81GGb0+67TN900QU+DSUVBTV1wBT/dSINNjYdlML+28wqbpUOv5hIGjU6hTsDUh14RwhVC9VrDTve2uLdj1pztvwrKZBltnYedP6FfHXdec3YgzKPDq+hNmjd9sGrHbOTlhX6/1908K/WYs73rXu/ZufvOb7xf+k5/85Om66mZqaifMtOnZWKLvbmpu49ytcV18c++ZV5fen5CtTr/G207MfX52C54AsdpPWFiNpo4znvmurptLAfGEzIWA01HZd8z3T+A7a/B1/uxiXJg6u/BOJ2njbcOQwsHG2z30r/stlO3vvqsgr3r2uf5l1Odmo5bW6KujsXP7bTeGr3/969tvYTZwmfC173zZy162d+973/vn/w/RFQgQIECAAIEjKiD0O6L8vpwAAQIECBA4qwQm+Gt6ZAHahIAFIgVuE+JMOLXbudbf05lX2Ne0yJkGO7vEtqvshF6zNts8Trdb157ddif0m+mm81iIthv6FQj1fNZam89P6DcB0oRMBT4dc/+FYBMmzpTcHicAq5OsEGlMCsE6ZjpxfxcgTYg2a+LN9OACsAkUu+6skTidk7MxynSvjfuh03t/Wt0/85nPbCFV1yuAnOtP6DfhW8aFgq1V19/zmZkmO0HY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Cv46ZsOO2cV3pgFPh2DhUp+f760r7etf//r2WkHS0byxR2v8HXfccfslfutb37q/wUYBXUehamvnNc23Nf8KATtm7b0xnHUX53E6/rLK9ND1+/LOcnZp7nN1B7YmYPbTEVg4mHV1qMPwVre61fb97UB9jWtcY3/6cK8VAlan7m2mhVejCTA7R+h3JP+L9t0ECBAgQODsERD6nT3OvoUAAQIECBAgcKYItJZb4VGhTseEcoVGhTp1mLWeXJ15HW08UYB01atedXteJ9j3v//97dzWjuv1L33pS1vwVDBVyFXHYJ9ryvCEgYVPHXWyFSBd7GIX2543Hbag6lGPetSZMr6DcpGCwJneXHfdTPOtw64AbtbYmzX5CtoKA9sNuKCtcLDwroCuTr+PfOQj2+t1ENb91+vT5Veg2Bp/OVbPajshXx17u9N4u5fu64Y3vOHpqD772c9un+s7q88pp5yyTVHu8x0zrVen30H5hbkPAgQIECBw1gsI/c56Y99AgAABAgQIEDhTBAr8bn7zm2/XqhttNtWY6biFde0U29Fus70+67i1+2t/t2ZcQV4h3uzk2/mzK3ABYQHRXKcprR0XvOAF904++eT9jSUmPJrQ8WEPe9iZMsaDcpETTjhhm4KbRUFattNB2WOhX9N3CwN7f6buZt65vVeAWiiY90c/+tHNtPcK5+oa7HNNJ+56F7rQhbZrzaYpBbJ1CeZcGFhnYZ/repkfGvoV3HbM9OxZo7HAsHtrDb+6Ou3ae1B+Ye6DAAECBAic9QJCv7Pe2DcQIECAAAECBM50gTrROpqW2np0BUcFTq0DN52APX73u9/dzmsNurrMCoFm6u58pvcLnAqnpguwkKn325iixwtc4ALbdb785S9vj50768/1vDCqNf6OlaPQr+CuceZVJ950UxaiNT260C63uvJyz2k6I7PJOs/CuzrvZip0G3pUj8y69nQU1l35ta99bSOczryCvroCCwwLALtm177+9a9/OuoCvdmYZTfs7dyuMZ2ex0p9jIMAAQIECBD46QJCv59u5AwCBAgQIECAwIESKJC67W1vu39PBYAFPoVUhU8FT7PhRuFR00oLfjqnvwurvv3tb2+fryOs6aaFVxNKNVW1jSc66vBrymqdZx0TLNVRNsFUr09H2iMf+cgDZXVGbua1r33t9rHCukK2xnme85xnf029NkUp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AQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDA9mgJWgAAIABJREFUGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQIECBAgsJCA0G+hYhsqAQIECBAgQIAAAQIECBAgQIDAGgJCvzXqbJQECBAgQIAAAQIECBAgQIAAAQILCQj9Fiq2oRIgQIAAAQIECBAgQIAAAQIECKwhIPRbo85GSYAAAQIECBAgQIAAAQL/Xzt2TAAAAMAgqH9rg0iEsU8CBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAGVd1q8AAARCUlEQVQCBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAiIfo+frSRAgAABAgQIECBAgAABAgQIEBgJiH6js00lQIAAAQIECBAgQIAAAQIECBB4CIh+j5+tJECAAAECBAgQIECAAAECBAgQGAmIfqOzTSVAgAABAgQIECBAgAABAgQIEHgIiH6Pn60kQIAAAQIECBAgQIAAAQIECBAYCYh+o7NNJUCAAAECBAgQIECAAAECBAgQeAgEaJUF+H9wg4IAAAAASUVORK5CYII=`;
diff --git a/app/src/layers/contents/main/textures/toshin-mask-map.ts b/app/src/layers/contents/main/textures/toshin-mask-map.ts
new file mode 100644
index 0000000..decf1f2
--- /dev/null
+++ b/app/src/layers/contents/main/textures/toshin-mask-map.ts
@@ -0,0 +1 @@
+export const TOSHIN_MASK_MAP = `data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABP0AAAZgCAYAAAAFxDLZAAAAAXNSR0IArs4c6QAAIABJREFUeF7s3TuPJId1gNEVyMyUlwYEJQaU+Ads4Ji/nrGDdc5EgBOBgEhIykTYqDVrWFvb3VXVXf36+iixxZ1+3HPvEvaHnpnfvfMfAgQIECBAgAABAgQIECBAgAABAgRSAr9LTWMYAgQIECBAgAABAgQIECBAgAABAgTeiX6OgAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECDKSWUBAAAgAElEQVRAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIEBWQbNkAACAASURBVCBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIECAAAECBAgQIECAAAECMQHRL7ZQ4xAgQIAAAQIECBAgQIAAAQIECBAQ/dwAAQIECBAgQIAAAQIECBAgQIAAgZiA6BdbqHEIECBAgAABAgQIECBAgAABAgQIiH5ugAABAgQIECBAgAABAgQIECBAgEBMQPSLLdQ4BAgQIECAAAECBAgQIECAAAECBEQ/N0CAAAECBAgQIECAAAECBAgQIEAgJiD6xRZqHAIECBAgQIAAAQIECBAgQIAAAQKinxsgQIAAAQIECBAgQIAAAQIECBAgEBMQ/WILNQ4BAgQIECBAgAABAgQIECBAgAAB0c8NECBAgAABAgQIECBAgAABAgQIEIgJiH6xhRqHAAECBAgQIECAAAECBAgQIECAgOjnBggQIECAAAECBAgQIECAAAECBAjEBES/2EKNQ4AAAQIECBAgQIAAAQIECBAgQED0cwMECBAgQIAAAQIECBAgQIAAAQIEYgKiX2yhxiFAgAABAgQIECBAgAABAgQIECAg+rkBAgQIECBAgAABAgQIECBAgAABAjEB0S+2UOMQIECAAAECBAgQIECAAAECBAgQEP3cAAECBAgQIECAAAECBAgQIECAAIGYgOgXW6hxCBAgQIAAAQIECBAgQIAAAQIECIh+boAAAQIECBAgQIAAAQIECBAgQIBATED0iy3UOAQIECBAgAABAgQIECBAgAABAgREPzdAgAABAgQIECBAgAABAgQIECBAICYg+sUWahwCBAgQIECAAAECBAgQIECAAAECop8bIECAAAECBAgQIECAAAECBAgQIBATEP1iCzUOAQIECBAgQIAAAQIECBAgQIAAAdHPDRAgQIAAAQIECBAgQIAAAQIECBCICYh+sYUahwABAgQIECBAgAABAgQIECBAgIDo5wYIECBAgAABAgQIECBAgAABAgQIxAREv9hCjUOAAAECBAgQIECAAAECBAgQIEBA9HMDBAgQIECAAAECBAgQIECAAAECBGICol9socYhQIAAAQIECBAgQIAAAQIECBAgIPq5AQIECBAgQIAAAQIECBAgQIAAAQIxAdEvtlDjECBAgAABAgQIECBAgAABAgQIEBD93AABAgQIECBAgAABAgQIECBAgACBmIDoF1uocQgQIECAAAECBAgQIECAAAECBAiIfm6AAAECBAgQIECAAAECBAgQIECAQExA9Ist1DgECBAgQIAAAQIECBAgQIAAAQIERD83QIAAAQIECBAgQIAAAQIECBAgQCAmIPrFFmocAgQIECBAgAABAgQIECBAgAABAqKfGyBAgAABAgQIECBAgAABAgQIECAQExD9Ygs1DgECBAgQIECAAAECBAgQIECAAAHRzw0QIECAAAECBAgQIECAAAECBAgQiAmIfrGFGocAAQIECBAgQIAAAQIECBAgQICA6OcGCBAgQIAAAQIECBAgQIAAAQIECMQERL/YQo1DgAABAgQIECBAgAABAgQIECBAQPRzAwQIECBAgAABAgQIECBAgAABAgRiAqJfbKHGIUCAAAECBAgQIECAAAECBAgQICD6uQECBAgQIPDEAt99993/nvv2v//+e/93wLl4HkeAAAECBAgQIEDgwQX8H/sPviBvjwABAgQInBIYo9/Hr75eDfXhl3++fa3wt5rNFxIgQIAAAQIECBB4KgHR76nW5c0SIECAAIHPBc6JfsMzCH8uiQABAgQIECBAgEBbQPRr79d0BAgQIBAXODf6CX/xwzAeAQIECBAgQIDAywuIfi9/AgAIECBA4JkFLol+wt8zb957J0CAAAECBAgQIHBaQPRzIQQIECBA4EkFpr/EY8vP9JuPO/1W3+HP/Jy/Jz0Ib5sAAQIECBAgQIDARED0cw4ECBAgQOABBbb8Vt5Lgt90dD/n7wEPwVsiQIAAAQIECBAgcKaA6HcmnIcRIECAAIFrCrx92+4/3r+9zId/+fnd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lQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECPNprDAAAgAElEQVSAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx14XeIX8AACAASURBVJUAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIECAAAECBAgQIECAAAECBAjUCAj9atx1JUCAAAECBAgQIECAAAECBAgQIBATEPrFaBUmQIAAAQIECBAgQIAAAQIECBAgUCMg9Ktx15UAAQIECBAgQIAAAQIECBAgQIBATEDoF6NVmAABAgQIECBAgAABAgQIECBAgECNgNCvxl1XAgQIECBAgAABAgQIECBAgAABAjEBoV+MVmECBAgQIECAAAECBAgQIECAAAECNQJCvxp3XQkQIECAAAECBAgQIECAAAECBAjEBIR+MVqFCRAgQIAAAQIECBAgQIAAAQIECNQICP1q3HUlQIAAAQIECBAgQIAAAQIECBAgEBMQ+sVoFSZAgAABAgQIECBAgAABAgQIECBQIyD0q3HXlQABAgQIECBAgAABAgQIECBAgEBMQOgXo1WYAAECBAgQIECAAAECBAgQIECAQI2A0K/GXVcCBAgQIECAAAECBAgQIECAAAECMQGhX4xWYQIECBAgQIAAAQIECBAgQIAAAQI1AkK/GnddCRAgQIAAAQIECBAgQIAAAQIECMQEhH4xWoUJECBAgAABAgQIECBAgAABAgQI1AgI/WrcdSVAgAABAgQIECBAgAABAgQIECAQExD6xWgVJkCAAAECBAgQIECAAAECBAgQIFAjIPSrcdeVAAECBAgQIECAAAECBAgQIECAQExA6BejVZgAAQIECBAgQIAAAQIECBAgQIBAjYDQr8ZdVwIECBAgQIAAAQIECBAgQIAAAQIxAaFfjFZhAgQIECBAgAABAgQIECBAgAABAjUCQr8ad10JECBAgAABAgQIECBAgAABAgQIxASEfjFahQkQIPB/7dgxDQAAAMIw/65RQfbUACQ9R4AAAQIECBAgQIAAAQIECDQCol/j7pUAAQIECBAgQIAAAQIECBAgQIDATUD0u9EaJkCAAAECBAgQIECAAAECBAgQINAIiH6Nu1cCBAgQIECAAAECBAgQIECAAAECNwHR70ZrmAABAgQIECBAgAABAgQIECBAgEAjIPo17l4JECBAgAABAgQIECBAgAABAgQI3AREvxutYQIECBAgQIAAAQIECBAgQIAAAQKNgOjXuHslQIAAAQIECBAgQIAAAQIECBAgcBMQ/W60hgkQIECAAAECBAgQIECAAAECBAg0AqJf4+6VAAECBAgQIECAAAECBAgQIECAwE1A9LvRGiZAgAABAgQIECBAgAABAgQIECDQCIh+jbtXAgQIECBAgAABAgQIECBAgAABAjcB0e9Ga5gAAQIECBAgQIAAAQIECBAgQIBAIyD6Ne5eCRAgQIAAAQIECBAgQIAAAQIECNwERL8brWECBAgQIECAAAECBAgQIECAAAECjYDo17h7JUCAAAECBAgQIECAAAECBAgQIHATEP1utIYJECBAgAABAgQIECBAgAABAgQINAKiX+PulQABAgQIECBAgAABAgQIECBAgMBNQPS70RomQIAAAQIECBAgQIAAAQIECBAg0AiIfo27VwIECBAgQIAAAQIECBAgQIAAAQI3AdHvRmuYAAECBAgQIECAAAECBAgQIECAQCMg+jXuXgkQIECAAAECBAgQIECAAAECBAjcBES/G61hAgQIECBAgAABAgQIECBAgAABAo2A6Ne4eyVAgAABAgQIECBAgAABAgQIECBwExD9brSGCRAgQIAAAQIECBAgQIAAAQIECDQCol/j7pUAAQIECBAgQIAAAQIECBAgQIDATUD0u9EaJkCAAAECBAgQIECAAAECBAgQINAIiH6Nu1cCBAgQIECAAAECBAgQIECAAAECNwHR70ZrmAABAgQIECBAgAABAgQIECBAgEAjIPo17l4JECBAgAABAgQIECBAgAABAgQI3AREvxutYQIECBAgQIAAAQIECBAgQIAAAQKNgOjXuHslQIAAAQIECBAgQIAAAQIECBAgcBMQ/W60hgkQIECAAAECBAgQIECAAAECBAg0AqJf4+6VAAECBAgQIECAAAECBAgQIECAwE1A9LvRGiZAgAABAgQIECBAgAABAgQIECDQCIh+jbtXAgQIECBAgAABAgQIECBAgAABAjcB0e9Ga5gAAQIECBAgQIAAAQIECBAgQIBAIyD6Ne5eCRAgQIAAAQIECBAgQIAAAQIECNwERL8brWECBAgQIECAAAECBAgQIECAAAECjYDo17h7JUCAAAECBAgQIECAAAECBAgQIHATEP1utIYJECBAgAABAgQIECBAgAABAgQINAKiX+PulQABAgQIECBAgAABAgQIECBAgMBNQPS70RomQIAAAQIECBAgQIAAAQIECBAg0AiIfo27VwIECBAgQIAAAQIECBAgQIAAAQI3AdHvRmuYAAECBAgQIECAAAECBAgQIECAQCMg+jXuXgkQIECAAAECBAgQIECAAAECBAjcBES/G61hAgQIECBAgAABAgQIECBAgAABAo2A6Ne4eyVAgAABAgQIECBAgAABAgQIECBwExD9brSGCRAgQIAAAQIECBAgQIAAAQIECDQCol/j7pUAAQIECBAgQIAAAQIECBAgQIDATUD0u9EaJkCAAAECBAgQIECAAAECBAgQINAIiH6Nu1cCBAgQIECAAAECBAgQIECAAAECNwHR70ZrmAABAgQIECBAgAABAgQIECBAgEAjIPo17l4JECBAgAABAgQIECBAgAABAgQI3AREvxutYQIECBAgQIAAAQIECBAgQIAAAQKNgOjXuHslQIAAAQIECBAgQIAAAQIECBAgcBMQ/W60hgkQIECAAAECBAgQIECAAAECBAg0AqJf4+6VAAECBAgQIECAAAECBAgQIECAwE1A9LvRGiZAgAABAgQIECBAgAABAgQIECDQCIh+jbtXAgQIECBAgAABAgQIECBAgAABAjcB0e9Ga5gAAQIECBAgQIAAAQIECBAgQIBAIyD6Ne5eCRAgQIAAAQIECBAgQIAAAQIECNwERL8brWECBAgQIECAAAECBAgQIECAAAECjYDo17h7JUCAAAECBAgQIECAAAECBAgQIHATEP1utIYJECBAgAABAgQIECBAgAABAgQINAKiX+PulQABAgQIECBAgAABAgQIECBAgMBNQPS70RomQIAAAQIECBAgQIAAAQIECBAg0AiIfo27VwIECBAgQIAAAQIECBAgQIAAAQI3AdHvRmuYAAECBAgQIECAAAECBAgQIECAQCMg+jXuXgkQIECAAAECBAgQIECAAAECBAjcBES/G61hAgQIECBAgAABAgQIECBAgAABAo2A6Ne4eyVAgAABAgQIECBAgAABAgQIECBwExD9brSGCRAgQIAAAQIECBAgQIAAAQIECDQCol/j7pUAAQIECBAgQIAAAQIECBAgQIDATUD0u9EaJkCAAAECBAgQIECAAAECBAgQINAIiH6Nu1cCBAgQIECAAAECBAgQIECAAAECNwHR70ZrmAABAgQIECBAgAABAgQIECBAgEAjIPo17l4JECBAgAABAgQIECBAgAABAgQI3AREvxutYQIECBAgQIAAAQIECBAgQIAAAQKNgOjXuHslQIAAAQIECBAgQIAAAQIECBAgcBMQ/W60hgkQIECAAAECBAgQIECAAAECBAg0AqJf4+6VAAECBAgQIECAAAECBAgQIECAwE1A9LvRGiZAgAABAgQIECBAgAABAgQIECDQCIh+jbtXAgQIECBAgAABAgQIECBAgAABAjcB0e9Ga5gAAQIECBAgQIAAAQIECBAgQIBAIyD6Ne5eCRAgQIAAAQIECBAgQIAAAQIECNwERL8brWECBAgQIECAAAECBAgQIECAAAECjYDo17h7JUCAAAECBAgQIECAAAECBAgQIHATEP1utIYJECBAgAABAgQIECBAgAABAgQINAKiX+PulQABAgQIECBAgAABAgQIECBAgMBNQPS70RomQIAAAQIECBAgQIAAAQIECBAg0AiIfo27VwIECBAgQIAAAQIECBAgQIAAAQI3AdHvRmuYAAECBAgQIECAAAECBAgQIECAQCMg+jXuXgkQIECAAAECBAgQIECAAAECBAjcBES/G61hAgQIECBAgAABAgQIECBAgAABAo2A6Ne4eyVAgAABAgQIECBAgAABAgQIECBwExD9brSGCRAgQIAAAQIECBAgQIAAAQIECDQCol/j7pUAAQIECBAgQIAAAQIECBAgQIDATUD0u9EaJkCAAAECBAgQIECAAAECBAgQINAIiH6Nu1cCBAgQIECAAAECBAgQIECAAAECNwHR70ZrmAABAgQIECBAgAABAgQIECBAgEAjIPo17l4JECBAgAABAgQIECBAgAABAgQI3AREvxutYQIECBAgQIAAAQIECBAgQIAAAQKNgOjXuHslQIAAAQIECBAgQIAAAQIECBAgcBMQ/W60hgkQIECAAAECBAgQIECAAAECBAg0AqJf4+6VAAECBAgQIECAAAECBAgQIECAwE1A9LvRGiZAgAABAgQIECBAgAABAgQIECDQCIh+jbtXAgQIECBAgAABAgQIECBAgAABAjcB0e9Ga5gAAQIECBAgQIAAAQIECBAgQIBAIyD6Ne5eCRAgQIAAAQIECBAgQIAAAQIECNwERL8brWECBAgQIECAAAECBAgQIECAAAECjYDo17h7JUCAAAECBAgQIECAAAECBAgQIHATEP1utIYJECBAgAABAgQIECBAgAABAgQINAKiX+PulQABAgQIECBAgAABAgQIECBAgMBNQPS70RomQIAAAQIECBAgQIAAAQIECBAg0AiIfo27VwIECBAgQIAAAQIECBAgQIAAAQI3AdHvRmuYAAECBAgQIECAAAECBAgQIECAQCMg+jXuXgkQIECAAAECBAgQIECAAAECBAjcBES/G61hAgQIECBAgAABAgQIECBAgAABAo2A6Ne4eyVAgAABAgQIECBAgAABAgQIECBwExD9brSGCRAgQIAAAQIECBAgQIAAAQIECDQCol/j7pUAAQIECBAgQIAAAQIECBAgQIDATUD0u9EaJkCAAAECBAgQIECAAAECBAgQINAIiH6Nu1cCBAgQIECAAAECBAgQIECAAAECNwHR70ZrmAABAgQIECBAgAABAgQIECBAgEAjIPo17l4JECBAgAABAgQIECBAgAABAgQI3AREvxutYQIECBAgQIAAAQIECBAgQIAAAQKNgOjXuHslQIAAAQIECBAgQIAAAQIECBAgcBMQ/W60hgkQIECAAAECBAgQIECAAAECBAg0AqJf4+6VAAECBAgQIECAAAECBAgQIECAwE1A9LvRGiZAgAABAgQIECBAgAABAgQIECDQCIh+jbtXAgQIECBAgAABAgQIECBAgAABAjcB0e9Ga5gAAQIECBAgQIAAAQIECBAgQIBAIyD6Ne5eCRAgQIAAAQIECBAgQIAAAQIECNwERL8brWECBAgQIECAAAECBAgQIECAAAECjYDo17h7JUCAAAECBAgQIECAAAECBAgQIHATEP1utIYJECBAgAABAgQIECBAgAABAgQINAKiX+PulQABAgQIECBAgAABAgQIECBAgMBNQPS70RomQIAAAQIECBAgQIAAAQIECBAg0AiIfo27VwIECBAgQIAAAQIECBAgQIAAAQI3AdHvRmuYAAECBAgQIECAAAECBAgQIECAQCMg+jXuXgkQIECAAAECBAgQIECAAAECBAjcBES/G61hAgQIECBAgAABAgQIECBAgAABAo2A6Ne4eyVAgAABAgQIECBAgAABAgQIECBwExD9brSGCRAgQIAAAQIECBAgQIAAAQIECDQCol/j7pUAAQIECBAgQIAAAQIECBAgQIDATUD0u9EaJkCAAAECBAgQIECAAAECBAgQINAIiH6Nu1cCBAgQIECAAAECBAgQIECAAAECNwHR70ZrmAABAgQIECBAgAABAgQIECBAgEAjIPo17l4JECBAgAABAgQIECBAgAABAgQI3AREvxutYQIECBAgQIAAAQIECBAgQIAANoettQAAADxJREFUAQKNgOjXuHslQIAAAQIECBAgQIAAAQIECBAgcBMQ/W60hgkQIECAAAECBAgQIECAAAECBAg0AgOk3U9RPBJTVwAAAABJRU5ErkJggg==`;
diff --git a/app/src/layers/contents/main/textures/toshin-shindo-mask-map.ts b/app/src/layers/contents/main/textures/toshin-shindo-mask-map.ts
new file mode 100644
index 0000000..0da5c76
--- /dev/null
+++ b/app/src/layers/contents/main/textures/toshin-shindo-mask-map.ts
@@ -0,0 +1 @@
+export const TOSHIN_SHINDO_MASK_MAP = `data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABPkAAAZgCAYAAAAML5KjAAAAAXNSR0IArs4c6QAAIABJREFUeF7s3T2TJGdWgNGWTYSEhYUHFgbYGPr1MrAXAws8LCxWEdgiSrE1m8qpqnyzPvPJPGuBprv65rl3BPtEdfcPX/5DgAABAgQIECBAgAABAgQIECBAgEBa4If09IYnQIAAAQIECBAgQIAAAQIECBAgQOBL5HMEBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECiZ17sAAAgAElEQVSAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIPtCz2sAACAASURBVECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAgbjAzz///NvII/zyyy/+7/4IlI8hQIAAAQIECBAgEBTw/+wHl2ZkAgQIECBwFhgNfFMxsc/9ECBAgAABAgQIENifgMi3v516IgIECBA4kMA9ke/EI/Qd6Eg8KgECBAgQIECAwCEERL5DrNlDEiBAgMBeBe6NfELfXi/CcxEgQIAAAQIECBxVQOQ76uY9NwECBAjsQuCRyCf07eIEPAQBAgQIECBAgACB3wVEPodAgAABAgSiAo8GvvNj+9bd6AEYmwABAgQIECBAgMBEQORzDgQIECBAICjwrMAn9AWXb2QCBAgQIECAAAECFwREPmdBgAABAgQ2KPDsiDfyiN7RN6LkYwgQIECAAAECBAhsU0Dk2+ZeTEWAAAECBxT4RNibMwt9Bzw8j0yAAAECBAgQ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QIAAAQIECBAgQIBAVEDki3IaRoAAAQIECBAgQIAAAQIECBAgQKBeQOSrN7ciAQIECBAgQIAAAQIECPz/duyYBgAAAGGYf9eYWLhqAJKeI0CAAAECqYDIl3IaI0CAAAECBAgQIECAAAECBAgQIPAXEPn+5h4JECBAgAABAgQIECBAgAABAgQIpAIiX8ppjAABAgQIECBAgAABAgQIECBAgMBfQOT7m3skQIAAAQIECBAgQIAAAQIECBAgkAqIfCmnMQIECBAgQIAAAQIECBAgQIAAAQJ/AZHvb+6RAAECBAgQIECAAAECBAgQIECAQCog8qWcxggQIECAAAECBAgQIECAAAECBAj8BUS+v7lHAgQIECBAgAABAgQIECBAgAABAqmAyJdyGiNAgAABAgQIECBAgAABAgQIECDwFxD5/uYeCRAgQIAAAQIECBAgQIAAAQIECKQCIl/KaYwAAQIECBAgQIAAAQIECBAgQIDAX0Dk+5t7JECAAAECBAgQIECAAAECBAgQIJAKiHwppzECBAgQIECAAAECBAgQIECAAAECfwGR72/ukQABAgQIECBAgAABAgQIECBAgEAqIPKlnMYIECBAgAABAgQIECBAgAABAgQI/AVEvr+5RwIECBAgQIAAAQIECBAgQIAAAQKpgMiXchojQIAAAQIECBAgQIAAAQIECBAg8BcQ+f7mHgkQIECAAAECBAgQIECAAAECBAikAiJfymmMAAECBAgQIECAAAECBAgQIECAwF9A5PubeyRAgAABAgQIECBAgAABAgQIECCQCoh8KacxAgQIECBAgAABAgQIECBAgAABAn8Bke9v7pEAAQIECBAgQIAAAQIECBAgQIBAKiDypZzGCBAgQIAAAQIECBAgQIAAAQIECPwFRL6/uUcCBAgQIECAAAECBAgQIECAAAECqYDIl3IaI0CAAAECBAgQIECAAAECBAgQIPAXEPn+5h4JECBAgAABAgQIECBAgAABAgQIpAIiX8ppjAABAgQIECBAgAABAgQIECBAgMBfQOT7m3skQIAAAQIECBAgQIAAAQIECBAgkAqIfCmnMQIECBAgQIAAAQIECBAgQIAAAQJ/AZHvb+6RAAECBAgQIECAAAECBAgQIECAQCog8qWcxggQIECAAAECBAgQIECAAAECBAj8BUS+v7lHAgQIECBAgAABAgQIECBAgAABAqmAyJdyGiNAgAABAgQIECBAgAABAgQIECDwFxD5/uYeCRAgQIAAAQIECBAgQIAAAQIECKQCIl/KaYwAAQIECBAgQIAAAQIECBAgQIDAX0Dk+5t7JECAAAECBAgQIECAAAECBAgQIJAKiHwppzECBAgQIECAAAECBAgQIECAAAECfwGR72/ukQABAgQIECBAgAABAgQIECBAgEAqIPKlnMYIECBAgAABAgQIECBAgAABAgQI/AVEvr+5RwIECBAgQIAAAQIECBAgQIAAAQKpgMiXchojQIAAAQIECBAgQIAAAQIECBAg8BcQ+f7mHgkQIECAAAECBAgQIECAAAECBAikAiJfymmMAAECBAgQIECAAAECBAgQIECAwF9A5PubeyRAgAABAgQIECBAgAABAgQIECCQCoh8KacxAgQIECBAgAABAgQIECBAgAABAn8Bke9v7pEAAQIECBAgQIAAAQIECBAgQIBAKiDypZzGCBAgQIAAAQIECBAgQIAAAQIECPwFRL6/uUcCBAgQIECAAAECBAgQIECAAAECqYDIl3IaI0CAAAECBAgQIECAAAECBAgQIPAXEPn+5h4JECBAgAABAgQIECBAgAABAgQIpAIiX8ppjAABAgQIECBAgAABAgQIECBAgMBfQOT7m3skQIAAAQIECBAgQIAAAQIECBAgkAqIfCmnMQIECBAgQIAAAQIECBAgQIAAAQJ/AZHvb+6RAAECBAgQIECAAAECBAgQIECAQCog8qWcxggQIECAAAECBAgQIECAAAECBAj8BUS+v7lHAgQIECBAgAABAgQIECBAgAABAqmAyJdyGiNAgAABAgQIECBAgAABAgQIECDwFxD5/uYeCRAgQIAAAQIECBAgQIAAAQIECKQCIl/KaYwAAQIECBAgQIAAAQIECBAgQIDAX0Dk+5t7JECAAAECBAgQIECAAAECBAgQIJAKiHwppzECBAgQIECAAAECBAgQIECAAAECfwGR72/ukQABAgQIECBAgAABAgQIECBAgEAqIPKlnMYIECBAgAABAgQIECBAgAABAgQI/AVEvr+5RwIECBAgQIAAAQIECBAgQIAAAQKpgMiXchojQIAAAQIECBAgQIAAAQIECBAg8BcQ+f7mHgkQIECAAAECBAgQIECAAAECBAikAiJfymmMAAECBAgQIECAAAECBAgQIECAwF9A5PubeyRAgAABAgQIECBAgAABAgQIECCQCoh8KacxAgQIECBAgAABAgQIECBAgAABAn8Bke9v7pEAAQIECBAgQIAAAQIECBAgQIBAKiDypZzGCBAgQIAAAQIECBAgQIAAAQIECPwFRL6/uUcCBAgQIECAAAECBAgQIECAAAECqYDIl3IaI0CAAAECBAgQIECAAAECBAgQIPAXEPn+5h4JECBAgAABAgQIECBAgAABAgQIpAIiX8ppjAABAgQIECBAgAABAgQIECBAgMBfQOT7m3skQIAAAQIECBAgQIAAAQIECBAgkAqIfCmnMQIECBAgQIAAAQIECBAgQIAAAQJ/AZHvb+6RAAECBAgQIECAAAECBAgQIECAQCog8qWcxggQIECAAAECBAgQIECAAAECBAj8BUS+v7lHAgQIECBAgAABAgQIECBAgAABAqmAyJdyGiNAgAABAgQIECBAgAABAgQIECDwFxD5/uYeCRAgQIAAAQIECBAgQIAAAQIECKQCIl/KaYwAAQIECBAgQIAAAQIECBAgQIDAX0Dk+5t7JECAAAECBAgQIECAAAECBAgQIJAKiHwppzECBAgQIECAAAECBAgQIECAAAECfwGR72/ukQABAgQIECBAgAABAgQIECBAgEAqIPKlnMYIECBAgAABAgQIECBAgAABAgQI/AVEvr+5RwIECBAgQIAAAQIECBAgQIAAAQKpgMiXchojQIAAAQIECBAgQIAAAQIECBAg8BcQ+f7mHgkQIECAAAECBAgQIECAAAECBAikAiJfymmMAAECBAgQIECAAAECBAgQIECAwF9A5PubeyRAgAABAgQIECBAgAABAgQIECCQCoh8KacxAgQIECBAgAABAgQIECBAgAABAn8Bke9v7pEAAQIECBAgQIAAAQIECBAgQIBAKiDypZzGCBAgQIAAAQIECBAgQIAAAQIECPwFRL6/uUcCBAgQIECAAAECBAgQIECAAAECqYDIl3IaI0CAAAECBAgQIECAAAECBAgQIPAXEPn+5h4JECBAgAABAgQIECBAgAABAgQIpAIiX8ppjAABAgQIECBAgAABAgQIECBAgMBfQOT7m3skQIAAAQIECBAgQIAAAQIECBAgkAqIfCmnMQIECBAgQIAAAQIECBAgQIAAAQJ/AZHvb+6RAAECBAgQIECAAAECBAgQIECAQCog8qWcxggQIECAAAECBAgQIECAAAECBAj8BUS+v7lHAgQIECBAgAABAgQIECBAgAABAqmAyJdyGiNAgAABAgQIECBAgAABAgQIECDwFxD5/uYeCRAgQIAAAQIECBAgQIAAAQIECKQCIl/KaYwAAQIECBAgQIAAAQIECBAgQIDAX0Dk+5t7JECAAAECBAgQIECAAAECBAgQIJAKiHwppzECBAgQIECAAAECBAgQIECAAAECfwGR72/ukQABAgQIECBAgAABAgQIECBAgEAqIPKlnMYIECBAgAABAgQIECBAgAABAgQI/AVEvr+5RwIECBAgQIAAAQIECBAgQIAAAQKpgMiXchojQIAAAQIECBAgQIAAAQIECBAg8BcQ+f7mHgkQIECAAAECBAgQIECAAAECBAikAiJfymmMAAECBAgQIECAAAECBAgQIECAwF9A5PubeyRAgAABAgQIECBAgAABAgQIECCQCoh8KacxAgQIECBAgAABAgQIECBAgAABAn8Bke9v7pEAAQIECBAgQIAAAQIECBAgQIBAKiDypZzGCBAgQIAAAQIECBAgQIAAAQIECPwFRL6/uUcCBAgQIECAAAECBAgQIECAAAECqYDIl3IaI0CAAAECBAgQIECAAAECBAgQIPAXEPn+5h4JECBAgAABAgQIECBAgAABAgQIpAIiX8ppjAABAgQIECBAgAABAgQIECBAgMBfQOT7m3skQIAAAQIECBAgQIAAAQIECBAgkAqIfCmnMQIECBAgQIAAAQIECBAgQIAAAQJ/AZHvb+6RAAECBAgQIECAAAECBAgQIECAQCog8qWcxggQIECAAAECBAgQIECAAAECBAj8BUS+v7lHAgQIECBAgAABAgQIECBAgAABAqmAyJdyGiNAgAABAgQIECBAgAABAgQIECDwFxD5/uYeCRAgQIAAAQIECBAgQIAAAQIECKQCIl/KaYwAAQIECBAgQIAAAQIECBAgQIDAX0Dk+5t7JECAAAECBAgQIECAAAECBAgQIJAKiHwppzECBAgQIECAAAECBAgQIECAAAECfwGR72/ukQABAgQIECBAgAABAgQIECBAgEAqIPKlnMYIECBAgAABAgQIECBAgAABAgQI/AVEvr+5RwIECBAgQIAAAQIECBAgQIAAAQKpgMiXchojQIAAAQIECBAgQIAAAQIECBAg8BcQ+f7mHgkQIECAAAECBAgQIECAAAECBAikAiJfymmMAAECBAgQIECAAAECBAgQIECAwF9A5PubeyRAgAABAgQIECBAgAABAgQIECCQCoh8KacxAgQIECBAgAABAgQIECBAgAABAn+BAYLd71EUKUPfAAAAAElFTkSuQmCC`;
diff --git a/app/src/layers/contents/main/textures/toshin-shindo-terrain-map.ts b/app/src/layers/contents/main/textures/toshin-shindo-terrain-map.ts
new file mode 100644
index 0000000..7a6e7e2
--- /dev/null
+++ b/app/src/layers/contents/main/textures/toshin-shindo-terrain-map.ts
@@ -0,0 +1 @@
+export const TOSHIN_SHINDO_TERRAIN_MAP = `data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABPkAAAZgCAYAAAAML5KjAAAAAXNSR0IArs4c6QAAIABJREFUeF7s3VmPpQXVhuGNoAzKPAY9wBhCwl/nd3DAEQkJeMQBMwoKqMyTeXby9lf2R4wtdnXd3VclBOmuYdW1lid33l111+l0+vHkjQABAgQIECBAgAABAgQIECBAgACBrMBdIl92dwYnQIAAAQIECBAgQIAAAQIECBAgcBYQ+RwCAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBBWwZd9AAAgAElEQVQgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECAYrzesAACAASURBVBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgAABAgQIECBAgAABAiKfGyBAgAABAgQIECBAgAABAgQIECAQFxD54gs0PgECBAgQIECAAAECBAgQIECAAAGRzw0QIECAAAECBAgQIECAAAECBAgQiAuIfPEFGp8AAQIECBAgQIAAAQIECBAgQICAyOcGCBAgQIAAAQIECBAgQIAAAQIECMQFRL74Ao1PgAABAgQIECBAgAABAgQIECBAQORzAwQIECBAgAABAgQIECBAgAABAgTiAiJffIHGJ0CAAAECBAgQIECAAAECBAgQICDyuQECBAgQIECAAAECBAgQIECAAAECcQGRL75A4xMgQIAAAQIECBAgQIAAAQIECBAQ+dwAAQIECBAgQIAAAQIECBAgQIAAgbiAyBdfoPEJECBAgAABAgQIECBAgAABAgQIiHxugAABAgQIECBAgAABAgQIECBAgEBcQOSLL9D4BAgQIECAAAECBAgQIECAAAECBEQ+N0CAAAECBAgQIECAAAECBAgQIEAgLiDyxRdofAIECBAgQIAAAQIECBAgQIAAAQIinxsgQIAAAQIECBAgQIAAAQIECBAgEBcQ+eILND4BAgQIECBAgAABAgQIECBAgAABkc8NECBAgAABAgQIECBAgAABAgQIEIgLiHzxBRqfAAECBAgQIECAAAECBAgQIECAgMjnBggQIECAAAECBAgQIECAAAECBAjEBUS++AKNT4AAAQIECBAgQIAAAQIECBAgQEDkcwMECBAgQIAAAQIECBAgQIAAAQIE4gIiX3yBxidAgAABAgQIECBAgAABAgQIECAg8rkBAgQIECBAgAABAgQIECBAgAABAnEBkS++QOMTIECAAAECBAgQIECAAAECBAgQEPncAAECBAgQIECAAAECBAgQIECAAIG4gMgXX6DxCRAgQIAAAQIECBAgQIAAAQIECIh8boAAAQIECBAgQIAAAQIECBAgQIBAXEDkiy/Q+AQIECBAgAABAgQIECBAgAABAgREPjdAgAABAgQIECBAgAABAgQIECBAIC4g8sUXaHwCBAgQIECAAAECBAgQIECAAAECIp8bIECAAAECBAgQIECAAAECBAgQIBAXEPniCzQ+AQIECBAgQIAAAQIECBAgQIAAAZHPDRAgQIAAAQIECBAgQIAAAQIECBCIC4h88QUanwABAgQIECBAgAABAgQIECBAgIDI5wYIECBAgAABAgQIECBAgAABAgQIxAVEvvgCjU+AAAECBAgQIECAAAECBAgQIEBA5HMDBAgQIECAAAECBAgQIECAAAECBOICIl98gcYnQIAAAQIECBAgQIAAAQIECBAgIPK5AQIECBAgQIAAAQIECBAgQIAAAQJxAZEvvkDjEyBAgAABAgQIECBAgAABAgQIEBD53AABAgQIECBAgAABAgQIECBAgACBuIDIF1+g8QkQIECAAAECBAgQIECAAAECBAiIfG6AAAECBAgQIECAAAECBAgQIECAQFxA5Isv0PgECBAgQIAAAQIECBAgQIAAAQIERD43QIAAAQIECBAgQIAAAQIECBAgQCAuIPLFF2h8AgQIECBAgACB20vgnnvuOf3444+n77///vb6xnw3BAgQIECAwE0VEPluKq9PToAAAQIECBAgQOA/F7jrrrtOv/71r0/ffffdtX/+84/2ngQIECBAgMCdLCDy3cnb970TIECAAAECBAhcKYG777779OSTT56++OKL07333nv66KOP/uv5Fgz3RKA3AgQIECBA4M4QEPnujD37LgkQIECAAAECBK6gwELcwt5eorun9/b2xBNPnH744YfTL37xi9M//vGP8z83+rbPuc8h8t2onPcnQIAAAQJdAZGvuzuTEyBAgAABAgQIxAUW8n75y1+eQ9+33357/jl8jz322PlJvvvvv/8c//7yl79cC4A/9e1e/8TeQw89dA58/00cjHManwABAgQI3NECIt8dvX7fPAECBAgQIECAwK0UWKC77777zlFuP4vvs88+Oz/Bt+i3/17429vi3570+/rrr/9l3AcffPD8d1999dW1p/aOj//mm29u5bfmaxMgQIAAAQKXLCDyXTK4L0eAAAECBAjcngKLNXvz8sjbc78367s6nuTb598TfXuCb0/v7Z5+9atfnb/s3ufxxx8/39Zi3t///vfzU3oLgXufxcAvv/zyHPv2PvtncdAt3qyt+bwECBAgQOBqCoh8V3MvpiJAgAABAgQiAgswR1iJjHwlxvRLIf5vDbPYL9lYmDti8f52L9fd03sPPPDAOfztzvZ++/e77757DnwPP/zw+f32kt79+T5+IdDP47sSZ24IAgQIECBwqQIi36Vy+2IECBAgQIAAAQIE/r/AnuJbyDtednv8Qo5F5OOfvc/xEt5FvcW9/dlesvu3v/3t/LH77wW+I/Rd/5X29N+e+PNGgAABAgQI3H4CIt/tt1PfEQECBAgQIHBJAl6ie2PQF59Su4ovJb3VTxceT/NdfDJ0T+vtvxfnHnnkkdPvf//704cffnj+5RxvvPHGOfrtbT+rb5HweIJv/339z+/b59/nW+Tby3uv4g5u7KK8NwECBAgQIHBRQORzDwQIECBAgACBnylwq+PQzxz/0j78qkTRY18X59nTcntZ7BHa9jLZ60PY3ufJJ588ffzxxzflabh9/eufwFvEO8Ldwt7Fl+Ie0W5/tnC3l/vuZ/rt82zWPd13vO2/Fwn3iz2O798TfZd2+r4QAQIECBC4FAGR71KYfRECBAgQIECAAIGrJHAEvr28dUFvT8rtSbj9+3i56+Y9nqJ79NFHz0/G/fa3vz39+c9/Pu031+6f65+W+znf4yLewts+58LdwtzTTz99jo2Ld/stvE899dT56x/z7+/2c/n2sftlHHu/I04uAi707Xs6fknH8Us59j3vbd+rNwIECBAgQOD2EBD5bo89+i4IECBAgAABAlda4Ko87bg5jlmOX1SxSLafa7eXwR6/oXaB7WIA28tcF8oWBffbbffvffw+bj8f7+e+HU8R7sm9PW230Le59vTdX//613O4+81vfnOOdouRe2rv+G28i3mLf59//vl55n3s3nf/3sft+92f7599Dxd/wce+h/353ufiy33Fv5+7UR9PgAABAgQuX0Dku3xzX5EAAQIECBAgcEcJXAxr+8Zvxc+CO34L8v690LWn4vY024LXAt7+2VNwi3wLXHu/ve1/7+/27/3dPnYft48/gtzi2M/5GXf7nAt1+xr7nPuFGpvld7/73fnP9vLgme3v9r8ff/zx06effnp+vw8++OD88tx9jv33Rx99dH6qb4HwCHjvv//++fvZnAt/F0PmEQD38Xv/w2ku3ggQIECAAIGWgMjX2pdpCRAgQIAAAQIpgavyyzaO0Lh/L4btSbe93HZPzR1PrV38WX3HU34LYxcD2fEU3P58IW2fY++7eHY8Xbc/u5G3fd19rn2O47fs7uXBDz300PnpwoW7/SzAJ5544vTHP/7x9OKLL57eeuutc9jbxz777LPn99nTfH/605/OMx2xbn+/uY6It/99BMkjeB5Bc/FyX38R8Ea/hxv5fr0vAQIECBAgcHMERL6b4+qzEiBAgAABAgTueIGfCny36pdvHEHs+Pl0C3t7Kex+jt3+uTjr8fPrFt329Nzxc/IWw46AtuUekez4mX574m8/S2+fa5Fun2dP3v27p+IW1fb+i477mL3//vfC4ULi/m5/toD33nvvnX9G357c25N+e79FwOPlxvtcm+G111679jP9js+972Gfb/8cLwc+fgbh/m7fyz52s+778Us57vj/+wIgQIAAgaCAyBdcmpEJECBAgAABAldZ4OJTZItVx8tzb1Xg29fdTBdfgvvvfubcXjp7vLR1IW3h6/gFGwtgx1N+F3dw/Ay/40m4vZx3T9ztCbw9OffKK6+cw9zFt33uPVW4yLiYuK+xz7/PtZn3stvNcsy+l93uF38sNO799rLdt99++/wpFwEX7/a2nxG42Li3hbt9nU8++eT8lN6eBtxLffe1jpciHy/fPV6WvM99/GKOq3xnZiNAgAABAgT+VUDkcxEECBAgQIAAAQL/U4HjpbHHJ73+Z/Bd9s/kO57iu/hN/tSTapt773s82bYotqf99os2Fs2OP9/nOT7+CIf7s0WzZ5555lpAW+jb5/vDH/5wev3118/h7vglHfvzRbwFu33cQtyi3ZtvvnntSboFwP1ijz3ht6f3Fuf270XB/ZKNvZx3L9PdjMcvBNnn2t8foW7zLSDu/Rf4Fg0X/BYe9777uL1tjs209z9+LuFl7+l/eoQ+GQECBAgQuAMFRL47cOm+ZQIECBAgQIDAzRY4nubb17n422xv9te9/vMfT/Edv1TiCFsLWdeHvuM3zO5n3L3zzjvnAHb8TLvjKcTjqbd9vkWx4+34XHsCcP97gW8R77nnnjsHtOPJwFdfffX8JOCi3uLcPscC4p6ie+GFF04vv/zy+cnB4332Utznn3/+/KTefrPufhnHSy+9dH7/fdzC4P69kLcIuJh3fPxC36LgdnH8xt2Fw0W+/dk/2bu3WNuu+jzg6yVtQMEGX88xvmEMmIuNA3agFJKWJFWVRkFBVahEIzVNUjUPfYkq9aVV1bdeHltVraJWyUPVNk2qFNJElOYKhhAuNmCwscF3c/AVMBBQ1Ifqm+p3OpisfTtnn332nvO3pKO991pzjjnGbyz74dN/jJGgr/NUnzHAHCsWx8BP+HfU32LPI0CAAAEC+xMQ8u3PyVUECBAgQIAAAQJDYLcNY74H3/xU3Z7kepSQ85BvDK7an3FJcUKvVLyNFXcJ6Tq2MbDsstoEh/k3jrcB4C233DIFbzfffPMUHH7xi188uyQ3AV1DvgRyCfQSwCWQS9sJGbPcN7+nAi/vp7Ivy3Lf9KY3TUuA0/dUGl533XXTYRy5J31JgJewMdc3zEvQmOvSTu5LFWACwQR/uSfv55q+l7/zWX7GwD59R/nN9SwCBAgQIHBwASHfwc3cQYAAAQIECBBYpUADrp0Gv+2gjS5nbbi22154+0E96L5+DfnS9nxp7TieVMIl0ErA94UvfGEKwbpn3TzkG/s5BoStcGsFYEK8VPIlaLv//vun9hLIpSKv16YiL1V/eX6q9HI6bvbeS19ThXfTTTdNfUol3wMPPDCFhKkAfM973rP50Ic+NAVyjzzyyPT5gw8+uLnhhhumQDAhZYLDnqabsWZ8uS6/Z1lwwrvu+dfDQRLkpS95P+FkKg4TKnYvwv3MkWsIECBAgACBiyMg5Ls47p5KgAABAgQIEDgxAtvCu72CvoZY43LQ8x3w2I/9LgHuEtyGjNnfLtVy4/LdhG+tvMv13ZOuz+sS34RfWRrb5bCtBGz1XIKwhGP5O9VzeaUyblw2m+AvoVn2zethHrk+4Vv6lLYTKvYZCQh/6qd+avP+979/CgjTlyzfffrppzdvfOMbp/5kCXD6kvsSCCY0zDPyL+PNczK+06dPT4d/vOENb9j83u/93hTi9UTd0TN97oEjeb9Vgec7f+4nQIAAAQIELqyAkO/C+mqdAAECBAgQILAqgb0Cwb2qAfcKD/N52ugBGbtVBva63pMQLUFdQqv2Y1xq21CuAVvCrrxyX8K7hH/5bDylN/3IvwRsuS6BXf7uktgswX3FK14xhWmf+tSnzh7Mkb+zfLevPOv666+f2k+l3sMPP3z2OT2F96d/+qc3X/nKVzYf//jHp7Avz8l4UiWYZ6eNhHoZ27PPPjv1Ict9s1dfru2hHQkOE/YlaEw/cmJvKvv6yns9JTjtdmyr+iIbLAECBAgQOIECQr4TOGm6TIAAAQIECBA4CoG9Arud+rCteq/71eWzVLYdJOwb+5GwKgFXK+TGiryxerB75I19zD0N5PJ7T5JtRV4Dw3HfvlyT9xPyJexqEDierptrUlHX9tunBHYJzG677bZpvM8///zmoYcemk7bzdLZT3/602eX7abdBHR33nnn5t57752q9q6++uqzS2pT6Zf7c5hHPkuIl9+zvDeBXKryelpv+5J+N6TLewn50u8YpF8JAdOvhIsJCrtktyHmGIQexffNMwgQIECAAIHzExDynZ+fuwkQIECAAAECixNoqDYu4RxDud0Cut7bwG1sa1z+GrS9TmntUtueaNugcNtS3QZ2CbDSbu5pQNcJyt8NuBrYNfQb+92QL+/1nrbZfreKLhVx+axLdVvN14Mscv8ll1yyyYm9ORgjYdtb3vKWzUc+8pHpnnkImUCw++XltN2098QTT0yB3x133LH53Oc+NwWEWa6bCr/swZc9/J588snpOfk9Y8u/VOzlmjwz+wB2CW6q//LsBIOpNMy1CQ4zpgSGDftyTSsdF/clNyACBAgQILBAASHfAifVkAgQIECAAAEC5yOwLeTbb3tj1d22e8Yqud1CvraTkKzVf+PBGQ3wEkKNYd48VGyQNlanJdhK6DXe1+rCBntdDtvTZlvtNwacub972qUKL9V1CeAalKWNBGa9Nyfb/rW/9temADLLbj/wgQ+cDdRq1T31ssQ2lXn5l/AtPxPWvfvd79782q/92lQd2JNy89z8O3PmzHTgRq5PCJi9+fJKH/N+xpKKxOzNl8M6Tp06NYWCPWSk1Ypjn9N3p+ru99vvOgIECBAgcHEFhHwX19/TCRAgQIAAAQLHQmAeXqVT48mxu3VyXuXXe3tPP9/PEt15WwmmWk02BoRpu9d277xtFX9jtVyr8npvw7cetNH3c93Y5y57HQ26F1+CsYRiCfe611/Ct4RneSWYS79b+Ze2EzLmdNwcjPFv/+2/na5LuPfMM89M7SSES8iX6r2OLYdtZGlulu0msEtlYK7Labsf/ehHpxAwe+wluEvAl3GnyrCn4nYpcp6f5bldUp2wM/96mm4sMvZW8+1VbXksvrw6QYAAAQIECEwCQj5fBAIECBAgQIDAygW2hW87BXI7XTsP9kbSLrPdT2iYKriGeeOhGvN75xV7+buB1k7PS9CW0GwMC8cQrCfszsO8Vrp1r72GduP+gF0enKq57nuXdnpabvr0wz/8w5s/+IM/mA66+OVf/uVp771f/dVfnSruEu5lz73cm73zUhmY9nNwRg7uSJiXthIE9vTdhHjxStiX67P8NsFh+tBgNO813Mwy3bSZaxLqpe0865577plCwxwE0grGebAq7Fv5/yQMnwABAgROhICQ70RMk04SIECAAAECBI5GoCHetsMzDtqDcZ+7eeg3DwXH0C5B1HyZ6DzkG5fR9qTdef/GYKrLfvvcnkSbqrdxD74xIMy1Y6jZir5W+uXzVtC1GrCn7yZQyzNyuEWr41KFl6q5HLyRYO6Tn/zk2b9TuZd98b761a+eHUaCuIR4Ce1SJdiqwG3zEIPswZfn59o3velNU5iXffqyNDjvpb28lzYTFCbky/sJFzPOLjMel0V3zJbsHvTb73oCBAgQIHD0AkK+ozf3RAIECBAgQIDAkQocpFKvHTuXkG++1Ha+vHbb333eGPL1EI2GbP1srOxrWLctEJwHiPl73JMv7XU/voZXfUbHnXsazo2h3tjfjqfX9cTa7hM4BoppPyFblvLmlbAt4Vter3/96zfvete7Nu973/umJbl9f6cvSQLC3JPn3X333VN1X5clJ1xM0JfALv3ItQny8l6W8+aefJb3Wn2Yz3J/KgpzT8LC/GyomEBwbn+kX2API0CAAAECBPYlIOTbF5OLCBAgQIAAAQLLE9hWabefffN2k5jfv9MzGoA1fEuINF47/z1VcQ2y5mFh+zNW9M2XlzYMTDtpO8FVArFU2nX/ubQzBopto8tdG4o1COxYW2WYqrlU5LV/vT+hWoPCVvcl7Mv9WSKbUC3LalsFOC477thyf9p59atfvcmpu1nCm/v/9//+39OpuR/+8Ien0C5B4rXXXrt57WtfOy3xvfzyy6dDNuKbvuX5CfoS+HX5ce7LM9N+Xvk8Ngkiu/Q4TpbsLu//AUZEgAABAssSEPItaz6NhgABAgQIEFixwHha7DaGsVqugc1hBzf7qRpsJd22PoyVdPl8DPcypoR1uaYnwOa9XDMeutEAsRV1XYKb9xsmzqsO83er1bpUuGFdD9kYQ8Cxii/72iUES8DW0HBcXtznp/0EaQnlfvqnf3rao+8//If/MB26kdNxE8z91m/91nS4xoMPPjhV0uXe7NfX8SaM+8t/+S9v3vve925+5Vd+Zar6S7iYPiYofPjhh6epb+Xg6173uk0O7chegFkO3LGk7ZrFL6Fn7snnGUfeyzV5XisVVfOt+H8uhk6AAAECJ0JAyHcipkknCRAgQIAAAQL7E9irEm9bZd3+Wv7u/el2CxF3Cg777N7bQG8M3hrQza/tuOb9H/ePa6Vd2xj32mvw1cq0MdRrG+MBG/MQMKFX9/XrPnXj9V0e26C1Id8YoPX6BGkJBlOVl+tTNZeDL1Ld94UvfGF6/2Mf+9jmj/7oj6bP//E//sfTIR2f+tSnpmW2qbD7pV/6pc1v/uZvTsFdAsC0meDv3/27f3c2yMwzcv9LX/rS6ZqGngki83tCwdqPp+92LPVM0Jf2x5OK9/udcR0BAgQIECBwdAJCvqOz9iQCBAgQIECAwIkQmAdsY/B2kMq/MZibL7HdFjZ2L75xD7xte+TtVAk4VgbOA76GfOMS27HCr9c3wOtn7ec84EvolXsaiKX9hGLjHn+t3EvA1v3uErDl1UM1rr/++unwjR/90R+d/t11111TVV3azYm5CeoSAH7gAx+YqvQeeOCB6bPc98QTT0whXcK3LPl985vfPC3/zYEe6W9Cw56k+8Y3vnEKEN/61rduPvvZz04VgDmdt8FdQ74u4R0P4RjH5ACOE/GfsE4SIECAwEoFhHwrnXjDJkCAAAECBAg0+GqIN/5dnW2h3k5VdfP3x3bbXq9pSDYua+17vbZh3xhANXRL+JXfU402738r5sZ2xtlutd0Y8o0VeOO147516V/39Gu/G/Tl/h5U0f3/EuzllTBtrFrMePIve981sDx16tTm1ltvnd5P6JcwMEt6/97f+3vTnnpZbptw7oMf/ODm3e9+9+bjH//4FNqNB278w3/4Dzfvf//7pwrA9Cun53afv4R2WfabgzgS/HWfvi4zbqVfvwP1yBjyjO4T2CDWfz0ECBAgQIDA8RMQ8h2/OdEjAgQIECBAgMBFERir68Zqvv0sv+01e903VsZ177u9ArgxcGzoNh6a0aW3DdIawG1b8tu25vv1pb2Ecbkne+YlaBvHnesT8DXoSziWvxui5ffsrZfwMQdepJ2EeKnKaxXgHXfcMe2199WvfnUKzXLPuIQ3y3Tz7ByQkc9zgu7b3/72zQ033DCFfHnv93//9zcvf/nLN2fOnJmqA1Otl749+eSTZ/fQS5up+kslYCoG08e8d/XVV0/LfbPEN/3LzxzM8dxzz039bFja8DP35tV9+fr5Qao5L8oX2UMJECBAgMBKBYR8K514wyZAgAABAgQIbBMY6uJSlwAAIABJREFU96LbS2gM7Ho4Q+8Zl8WO7fSeVrDNl38mQEqQ1r3ixpNsx4Mxek3absjX58z7Mi6pbbtjBWE/Tzs96GO3pb+piBvbSQh26aWXnj3YogFigrP2uYHfP/kn/2Q6MOPpp5+e+p3ntEpuDBETGL7tbW/b/Mt/+S83//k//+dpP77f+I3fmAK77g944403TtV6jz766BT65XXzzTdvvvzlL099iV1CvPQh/Ut/cu/zzz8/vde2ukdf7h/dY9z3xmrKOgv79vovxOcECBAgQOBoBYR8R+vtaQQIECBAgACBIxfYtv/dPIxrWJaf8/BmHvzN2xuX3radMUSbV/fl7wZI20K+LtPtz1b8db+89nF87viMMahqmDgeltHgsD9TxZeltmNwN1YFju/n2eOege1DKvhSJZfALoFen9fAr4dYZEluKvTe9773TdekerDeY3Vh2s0+en/37/7dTcK8//bf/tvm13/918+GdDlRt6cM96Tc9q1ViXlmTurNM/JeQr0cwpHKvezhl/cT+qWyMM9LO52/Bp613nbCrpDvyP9T9kACBAgQILCrgJDPF4QAAQIECBAgcEIFGr4dpPpuDPM67L3CmvE52+5pYDdfJtvqr228Dd+2LdnN9W2z/R2r+PKcMRwcg7wuNe3y2gZ0DavGsXYZbffVG/el6550Y2jZir9c37350n6W2CYgS2iWJa6tRkzg12ek7Z7sm3tSYZdr83uq8DLeLv3N/RnHtddeOy3J/af/9J9Ov7/nPe/Z/PAP//Dmf/7P/zkFhTlxN8Hi3Dn3JnTMfoW5P89KyPfMM89Mz8ly31Tz5bpU9z377LPTdd3fsGFhru3JwxnLGLLW84T+p6PbBAgQIEBgkQJCvkVOq0ERIECAAAECaxDYViG32/55DY/6cz8h3zzsmt/TUG1b6DPu07etOnC3OWq41L6O1YM9/KHh1hgIts1W2LWCLu+PFXkNLtNW963L5/2XEK9jGkPEeiTwy798dtlll01LZBOEtQIuP8fQbuzzuAT5la985eahhx46GwwmdGulYyoCU3H38z//89PnTz311OZnfuZnNr/wC7+wed3rXjedkPuZz3zmbD879gR2Wcabk3bzuuWWW6ZqvVhkrNmrr4FdD/nIkt0s8W2Qmc97uEmXHW+rulzDf2fGSIAAAQIEToqAkO+kzJR+EiBAgAABAgS2CMyDvr2Q9qr6Gz9vgLctOBzfax/GJa7zfuwU8iWMS3jUz7edsDuGbQ2nGraNVYStCmxI1sMtGvDlGQ0Px8CvB2DkuvalVWzdL68n5o7j6j58DfTSftvNvn3db68hYSsQxzE0ZMxnqQhMtV1eeV5CvlTdfeADH9j883/+zzf/9b/+183f+Tt/Zwrssg9fArmcttvrG8JlSW7Cw5ygm6W5aSvBXgLDBHc5pCPPyiuHcTzwwAPT+6lGTDDZqsMGmfm7DuNehXt913xOgAABAgQIHK2AkO9ovT2NAAECBAgQIHBRBfYK+bZ1bqyi2+n+BGXj0thty3DnFYTj0tqxYm9bxeHYdvs47tnXIHDehwZ+Caryav9z3TxQHJcb57q2NS5b7TLghl7zpbJj9WKf1fGkvwnOcm/+5dVqwIRur3rVq86evtvANOHcO97xjimAu//++zepuMsefX/jb/yNzb//9/9+89hjj01hYKr1UtWXKr7bb799WoKba1Ptl7Gngu+aa66Zlhl/85vfnJbmZglvQr7Pfe5z0/s5yfdP/uRPpvvS9+4vWLuGmLW+qF9kDydAgAABAgS+R0DI50tBgAABAgQIEFiBQAOnnUK6MXBrwFSW8d6RqqFY3muFXAOgVtrtVKHX93ua7RjczUOkefg2hnXjs8f+pM8Jv3oKb4Kr8b4xSOz7DSa3hZFpp6FgfnaPuh5IMfZxDPradoPCfJZ+ZS+9VhbmZxyy7PfUqVObz372s9NnDVdTgZeDNlJtl/Au9//4j//45uMf//i0JDcVhQnuUuGXsPBv/a2/tUkl4W/+5m9Oz8n7eaWN7gOYpbm9LyFefs/PhIk9OKRh3/jdaBXiturOFfxnZIgECBAgQOBYCwj5jvX06BwBAgQIECBA4PAEGtakxfEgiz5hrNjre2PY1Mq53jt+Nla+NdjadiDEuNxz21LjnZYIjyfi9lCJ8fnzIHCsohurBBs+zvfq6wEZrbBr37qcuFV42Z+u+9Y1jOyzxyXAY3A4Vhx2fN2vr87tVw7W+NjHPjYd4tEx5HkJ3nJSbirzrrvuus1tt902VeF9+tOf3jz99NPTMt8szU1ImM9/9Ed/dHPPPfdMlX7Z8y/hXdpLyJd/DfDS94wxoWCWBt93333T+NK/VvN1SXSuSTg4hqmH9+3UEgECBAgQIHC+AkK+8xV0PwECBAgQIEDghAhsC/EaRuVnw6iGgA2AEl61Um+sduu9vW88mKFVauP+c2MotlNfxjbH8LHBU97LktSEYL12rIhr0Nb+9kTbhms9AKOn2Y5hYD8b2231XtptZWCCwLHdLmMdxzqOb/Tp++P9o3dCupx8mzCxXnnuFVdcMVXl5f13vvOdm7/yV/7KtET33/ybfzMtz03VXgK9m266aXPzzTdPp/Gmyi/LbxOK5rNxifIrXvGKKRxM31MpmFCv1YV5Rvpcoy4x7hyk7/MA94T8J6CbBAgQIEBg0QJCvkVPr8ERIECAAAECaxXYaVnuNo+xwm88lbaHTTQ4a0DVgKdLVccKv16T97pvXZ/ZpbPzPswr8salv2071WcJ91KRljCqlW8NIHcab4OtLkHtCbgN0Ppzt9Cq1XwJuTquMQgcw8gGfeMY5+NueDYGp3VPNV3CuXH/u7SVIC7e2Z8vIV4+//rXvz5V9p0+fXrz4Q9/eFqWm+tikX37cgBHx5uKvyeeeOJsMJo2YpklvAkVv/a1r01ja1CbZb/5PBV/Y9jb78J4WMpa/xszbgIECBAgcNwEhHzHbUb0hwABAgQIECBwBAIN4xrw5WdCni7TTBcSjM1PVR0r1MZlsF3C2VBuDKnGSrvxuWMgNi7d7dLfsbIwv6c/qTLrs8YlutnTrgHVGBqO1WtdKtyluRnjGETOqwu3LfNtGFe3MfBMCDhW9TVAHO/p9d2LsEFqx5equ4RuXSpbu7SdQC4HcfzQD/3Q5m/+zb+5+dVf/dWpGi/79KVSL/f+3M/93OY3fuM3Nnfccce0vPejH/3o5JbDNRKUZklvXvk9IWA805ccwpHnZjnu9ddfv3nqqaemseTehH15JWRNwJpXxqGa7wj+Q/UIAgQIECBwAAEh3wGwXEqAAAECBAgQOIkCe1X1db+7MYxqYNbPxkBnp7355ocxjPvrzQO0BnnxnPdvrCzsZ2MI2PBtrDxroJafrZBrnxtW9pkNNMcgLb93OWrH0Wc3FMz7XWY77r83ho0x7PLWhog1nFcstkIw/WvAmrAtz0gF3XgicA/uSMCXvfFSifdbv/VbU+VeQrhU/+V03L//9//+FOxlj76cxpsQL0FgDuZ45StfOVXzvfDCC9PXOEt284w8P+FfD9/Is9ufjDPXdLlyQ+C+N5/zk/jfhz4TIECAAIGlCAj5ljKTxkGAAAECBAgQ2CKwV8A3Blnj7fOgax6iNTDbK+TZKZybL0edd31cstsgsH0YK/0alI2h21hNOD+9N9flvQZ8DQW7/DcB27wqMH2d39P+bgs2c22XETcUa8DXQyz6eX42XOzvqcA7c+bM9xyOknYTyKXS7lvf+ta0XDchXqoR08aVV165+YVf+IXNBz/4wSnIywEcaeu///f/PgWBuT/X96Th3JOKvuxvmJ/XXHPNtJffww8/PFX0pXIwVYIJEtNel+22mm+vOfQfJAECBAgQIHC0AkK+o/X2NAIECBAgQIDAkQuMQd8Yuo0dabVZA7UGXePS2LHSbafqtG2DG5fdbgvF+t4Y1I2n2o5LfMdKup5y27BpXI6be1qN2KAvP3tPA68uO83frZzrHnpjX3cLS7uktnbdt6/VdwnhxurCBooJ7BK45dl5NRDMMtrskTcGrbknlXb5l3AvlXkNO3Nf3k/49973vnfzpS99aQrn/sW/+BfTv9/5nd+ZluKmjQaIPdgjz01lYALBPDOVgp/4xCemZ2dpcAxT/dd9BHP9eChIx3LkX2oPJECAAAECBL5HQMjnS0GAAAECBAgQWKjAuNR1DIw63DHYG0+lHfei65LXBnUNrMYlqmlvt4q+hnQNhBqKjaHefFnuuLS24dm4jDcHQ6TarIFaq+22HXyR+xOk5ZrsK9d9/fJ+xtP256Fex9X+9vO55ejV38f9Dbs8OO21f10CnOe3bz0kI0HkGMLl2oRsl19++VSRl88SviXca99yYEfafte73rW57bbbps9//Md/fPOP/tE/2tx7771TdV76Ebc3vOENm89+9rPTQR155frs4ZcKvSeffHIKCB999NGpki/tJ1DMc8fgNMFg+p056Hdhof8ZGRYBAgQIEDgxAkK+EzNVOkqAAAECBAgQOD+BsSJu3CNvW2g1VmjN97AbQ7Fe12WoYzC2LTTrvQ34tgWEY9/GfQJbsdfQa6zgG5/VKsAGh62oy7N6eESX6/aaLFftMtaxaq+B2zwQHZcTjwFjg7D5voAdR8dbt1zfz8Y9+OZViQ3o0seMIfen8i5hXiruEgCmSi+n7eZQjuzJ97GPfWw6XCMhXQ7l+NSnPjX9fP3rXz/t0/fFL35xCugy9ne+853Tyb2/9mu/NoWHuT/PzGeZqy7XbeibADChZMK/Bpe7Bb3n9811NwECBAgQILAfASHffpRcQ4AAAQIECBBYgEDDulabjYFcl6j2vf49BmU9iXa+VDft9ZTY8YCO+XPaVu7vUto8r1WCY/XeWB1X+jH4GqvqEkTl3uwtN74aoDVYbL/z7AaFXa6b9xo85r5xL7+xkm+sYOw4ev0YcnVZcd8bKyLTn+7J14q+/N2qwtGk9yVsPH369BS2peIu7ef6uGf8aSfLf0+dOrW54YYbptNys0w3e+y96lWv2tx1113TPbkm7+W+Bx98cFr6m9dP/MRPbG6//fapzf/4H//jZJk2Egqm4i/hYsbSPnbO66GabwH/gzAEAgQIEDjxAkK+Ez+FBkCAAAECBAgsTWDbMtvzHePYZivlGiY13JofXtHAryHZuBR2rHabV/FtC+XG8K/t9bqxrQZqY9XhfFnvaNFqvoRXWcY6VtzNK/gSXLWCrodjNHDLz1bSNXRscNVKu46/fRv38RvH0s/HMHQ06efzpdDtyxiYjsFmwrxbb711WnqbPfbSTgK7nJp7zz33TKflpsIuS21T5Zdlt5dddtnmrW996xQqPvbYY9PnOUk31X6/8iu/Mv2ezxLmJeR76KGHzi7NzfNimlBx3Iev465TwsPOoWq+8/0v1f0ECBAgQODcBYR8527nTgIECBAgQIDABRcYl64exsPGgK9hUqvqxiW0Dfhy/XjPGNY13BuDqHkQ1tBuvG9bgDeGkNvCv7zXJbCtJhtDtI5lXMLbkK9jSIg3rxpMvzqOVvONzvNlua0w3Gk8tWh/6phKvFbfzaveWmHZADJt9+CTViPmsyzTTZVeQr4swc3y3J/8yZ+cQr0svU2I+eY3v3nzhS98YfOzP/uzm8cff3zz/ve/f9o3L/d9+ctfnpb2XnHFFWcr+NK/3JtXqgAT5nWJbn7m3gZ8PVV3PNF4rABt0CroO4z/UrVBgAABAgQOLiDkO7iZOwgQIECAAAECF0xgW6g3Vrqd74PnFXhdIjsGa11K2gqthk8N1cbQbx6INfzaqXJvPpYGQn2/odFYkZewqUuFG0Q2mBxPwm0gNy71bYA27tOX9npwRfuZ6+aVfBlb2x+rGBNm9ZCMvN9wq31KPxLSjWNtmNhlufMgbNyzbx6spq1U2qUKL0FeKvTyjJ62mwAxoV8O38gS21Tx3XTTTZu3v/3tmw996ENT6Jc2Pv/5z0/3ZPlu9uqLQ/btO3PmzDSNV1555Xed9pt78rwuC07I177Nw9zcP1YoCvrO979U9xMgQIAAgYMLCPkObuYOAgQIECBAgMCJFNgWzrWKbQy7GvLNq9ValZfBj0tN54HOuG/dGB6Oz+++eA3hWoGXwCqh0rxicKyoGysOG1KOfWg/E2JlfD0ZNr83TMtBFTl8Iv3o/nnpa57fMKvXjnvl5ZqXvOQlZ0+4bXg3VkPmvrSTV4LD9rFjbWCZz8d+NxRstWHHmfZyKm6ekTCv40tlX95PyJh/+T1Vd1mCm2tTsXf99ddPgeADDzwwLdeNSa5Nxd8b3/jGyeC//Jf/MplfffXVU9CXoDDBYJb/PvLII9Mz815+jkHeuIw6gWBeaT/XeREgQIAAAQJHLyDkO3pzTyRAgAABAgQInJPAtoq+MTjbq3pq27Xj/nNtf75X3Lzabuz8GEz1/YZi415989NmGyTmnrF6MQFaQqJWETYIa0A2D8K6BHc+9l6X9hJ+5eCIb33rW1M1XCsTU/E2Vgh2mWreSxCWNrIkNste50ubx/H0WV1i2yq3cW+9XtMwc5yLMfybh5kNzxKyZQzpW23yXkK8hJhx6OnAOUwj16Vi77rrrpv28ctS3ZyuG4+MO+3mvpzGm595veY1r5mMMvZe0zHk/czLOKed5/S/gWgqDnuYxzl9yd1EgAABAgQInLOAkO+c6dxIgAABAgQIEDhagTEM2+3JYxi4rXpvfm+DpYZfrUpr+JTrG/x12eu2NsYga+zruPy0YVyr/RI2NfgaT5odn5f7WxHX63PPvC/bQs68l2Are8vlZ5a0JgxLO6liS8CVv8dqu4yt4Wd+T9VflsiOy3Fz/ejU0LKh3HzfwLHqbV69l2dlr7wcpjFWS3bZcfvTZcDpcz7LHnqtPMwYWuX3ohe9aBpTfFLtl99T1Zd/2b8vQecTTzwxjTljaH9SyZc2Ex7ef//9Zysq00ZeCf7Sz4ytz+rc1i99zFzNl2sf7X8pnkaAAAECBNYpIORb57wbNQECBAgQIHAAgYZfB7jlSC/dFuSN1XfzzsxDpgY1rURr6NbAqdeP+8bNQ5z5ARXjgQzbKgEbYI2HZ7QiLP0dqwFzTQO1hnvjIRUd3ziucR/BBk/Zjy5Vbel7Ar4Ed6062xY2pr30o5WACa+6zLjtNwhtdV1CtwZ+raxr/xqEbQtIezBHPut8dr+/MSDMcxLGNbzMfelXQsz8zHLdvJe99FJV1/6lOi/3JsDLtRn/fA5zX07qTdVeqwZzOu8LL7wwPTMVjWmnzxsrGNPvHtAh4DvS//w9jAABAgQInBUQ8vkyECBAgAABAgROsMA84Gt4NgZr8yq1bQFgQrkeJjGGTGP74/LTMchpwNfQJ2FSK9rGAK5h3bw/Y+Vhq9XSfpe9jpWGCZgSRrUScP5zvHa+NDYB1h133DHtM5fAKtVoCbMa3KXteSA5X1bbwzkyrgZ6+b2BaAO5jnFb4LVTRWaD0Z4KnEAt40kf86yEdulzTsrNZ1lenOdmLK3eS1+++tWvbq699tppqXF+T4Vg9ulLFWPey7V/9Ed/9D3f+rSXPfkSAiYQzX15TvqT4C+f/8zP/MzmP/2n/3R22fC4fDf93FZNeYL/89J1AgQIECBwogSEfCdqunSWAAECBAgQWJrAYVQJjkHUbiFLr2uoNl9SOx6+EecxfMvf4xLWLvNspViv3/Z+K9vG5zaca7uthBsr4/K8ho8N0dpGKwDH6rj2v9cmlMrS1i7Xvfnmm6fwKu899NBDU3iWyraEm63Sa7/67AZtqVLribz9DravrS5sMNln5O9Wt433NBTc9l1umx1fwr2Gqwnostw2S2rzSpVd+pSqvCwpzv56OVU3B2wkqEsg95nPfGbz7ne/e/Prv/7rU1CYEC+HaiQYnH9Xsow3S3PT5zw/1YDpT95rAPxDP/RDm3vvvXeqgmygmWenrbwn5Fva/6GMhwABAgROkoCQ7yTNlr4SIECAAAECF11gv4HafjvaUGcMqPZ770Gvm4d8DeYaNDagGZe6zgOpMVRr1eBOy1DH/nWc+dmgbjzgo1V7+SyhVkK3/EzVWUKnhkxpsxVvDQ/HZcXjoRcJrRJ29b2cFptKuLSXJahtawwm21ZDvuxBl73ock9CwwRfHfe8+nEMIGs9Vv7NQ87d5q8ViXlmXg0qE1CmT/08h2vkUI1U2qWPr33ta6cxZ8+9t7zlLZuHH354qgD8xV/8xc1v//ZvT+//0i/90uaf/bN/tnnmmWe+qwvxajCavias7AEdOXE4jgkOP/jBD06BYsPNVEjm2TnB14sAAQIECBC4eAJCvotn78kECBAgQIDACReYV7qdz3B2WsJ5Pm3udO8YVOaacT+6baFe2xmrtOZjn1dw7VSh2JAvbY5hYoO4+bLXsSque9SlIi1h13hoxNjvPiPXJ7RKQNZDLcY9/bpX31hVmHu6XDbtpJIvfUiIln/jibLjfTVqSJnP0s/xNNzRaD8Vb33+6dOnN7fddtvm7rvvnsK0hHiprkugF4dU8t14441TgJcqvzzz05/+9ObVr371dH0q7HIKb54Zh7T75JNPnt3nMH3vAR1dZp2fqXyM8ZkzZ6bnJCyMWcLAtFnnnqibANWLAAECBAgQuHgCQr6LZ+/JBAgQIECAwEIEdgr79rsUt0sz50HVPHA7X66xkmz8vc/v4Rbjc1oxNl/KO4Za833nxpBt3uexmjCfjYHjvJqxy4MTIiWgSjXZaDIevtFDQdrGuFdcAqv8nWWlCcLSVg+UGJcBN2hMsJd+xeMNb3jD2arCz372s1MYlrBvPNl3rGTM77mmgWTaSL9b/dcx77RX3zxITXvpf/6lzwnp8koAl/DvnnvumQ7FSFVeAr08O22k4rBLkF/3utedDf3yWfqf4K6BZdpLlWOCu3yW8eeVMC/X9/CRHFKS/mSZc/qfvQG/9KUvnd0f8Xy/n+4nQIAAAQIEzk9AyHd+fu4mQIAAAQIECOwqsJ+gbz/XnE/V4Fgl2NCu4dYYOm0L68aQbwyqel/DsBFhHgyO184DsbFyr200JByvbbVhlu+2YqxVeQnSGvKNfWw/cm/Cr1TWdVlrTszNkt28l1eCrFyf9tveLbfcsnnpS186LU3N9R/5yEfOVj3OA8bYdV/Bjjf3JOAbl+xusxntxvC17XScPf04fU0V32te85qz+wmmyi8Ha/zcz/3c1Ny//tf/ejp0I4Fdgs1U9f3u7/7u5r3vfe8U0mVfvoameWbCzFQEZmlynpf78rwulU6gGPc8Oz+3BcL+V0CAAAECBAhcXAEh38X193QCBAgQIEBgBQLnEtDNl9SOgdcY/hyEb1wqO7bR/u1UXTYGgw3Ruh/etnvmy3/H6r3eP+4DOI5tXvE2hpGtsOspuL027yd0alCX4K7VZnlOgrpW9uWaXJ8wq0FVn58gMMtac3BFrs8hEznoIsFglsjmlQq5VvGNoV6eMy4fTpvpx3hi737mah7y5Z5WWnYvws5HDg35+Z//+Wnp7cc//vEppPtX/+pfTYeKfPSjH52q7XLt7/zO72ze9a53TWPOHn1XXHHFdE3HH4+MO0t9cyBHxtoThxN6ZgxZrhuHbfO9n3G5hgABAgQIELjwAkK+C2/sCQQIECBAgACBrQJjhV0vaKAzhmHjzV3OuW0/uN2Yx6BxDBDnYWLb6MmpDQPH++cHZuSzccnxGOA1pBrvadVdQ6aEggnfOqb2ab5nXwKnhHd5NcBKMJX3Gkx1L7we3pFnZJlunpH9+XJtA75W7DX8TNh1zTXXTO0/9dRTU6iVar4EYnl2lg0nUGvV3jhnbWPcsy+fd772G/TO52b8O2NKsJegMf1J5V5dc+hFT8/Ne/n31re+depvqvhSzZflxjmhN4Hdc889N1Uypv0enJEKvXe84x2bP/3TP52ekXA0c5DwMDYJ++y7539mBAgQIEDg+AoI+Y7v3OgZAQIECBAgcMIE9lp2u1PQM1a6NcAaw50ERQmpxiBtHjSdC1WeMe5l1z3wGhLNK/D6jDG4Gvs0Xj/u9za65PdWuI33bhv36JVn9nCI3pcQKmFXA73sKdfqulbudalrxpQKthyikdNoE1blve53N1bQpe+tmsszcnBHgr4xnBwr2uqWNsZxj3PSIHS3Za7bwtcu0W3YmlAzFYYJ7LJH3yOPPDIFddmTL9fGI+FdlgrnWd1f7wd/8AengztyGm+WH6diLzYJPnNP+p1xps0EgAlD+3naycEf2f+vewKey/fNPQQIECBAgMCFFRDyXVhfrRMgQIAAAQIrE0jg0xBqHujsVc01r+ybV/X184QyqcZq5dt4WMN+uMdAq2FYK+PGNrf1N++Nh3DMKwH793zsHUt+drlrl+K2arEhWQOxjGVsJ++36i+/J/RLZVoCqlTe5TWGeql6yysHTySgSlupfuuJtA3Bes/LXvayKSzL+BIGJghMSJb96FLNlmrB+eEgab8n0rb6cVzGO46t495pyWtP4x3nZ/xO5L63vOUtU4VhvgMZc56VfuVfArsuGY7N29/+9qkq7yd/8ienJbvdoy/97fLjhJhxSrCX+xtk5vfs+5dQL+NPMHjfffedraTcz/fMNQQIECBAgMDRCgj5jtbb0wgQIECAAIGFC3TZ5hiGjSHcGJyNlW/zkK3h0bgst4HRWEmX6/azT9o8jBvDp4Zj2yrJtrU/v24e/M3Dufw9Vru1zXEJb6sKx0M0GvDNw84EUAnq8n5CuCyjzcmvHUeDxIR/CbBS/ZZALMFWD9pISNbQbry+J/Heeeedmz/+4z+enpHqt+zNl0MoWuU4fo1b9Zd7a7Ftz8KGmvlsHsz2e9N269W9/hreZbwJ79KXLMHNzwRx+fme97xn87nPfW6qOszS2vYhY819DQJzbZbj5pXqvfgkxMs9se0hJfk8lX05yff+++/ffP7zn1/4f72GR4AAAQIETraAkO/eSk2XAAAgAElEQVRkz5/eEyBAgAABAidMoIcmzKv2OoyGPw22xusaEI4B0UGq+Bokze8Z9/+bh3/zkG8M9ObLbceAatuy1T4/gVMDs9yT9xO+taKup9E26Oo1CdHGz8b97+Yn27ZCsZV4DcMSDo5LnfPcVhAm3MorbSXkSxVcq/PSTpaw5rN5qJpnpY1UxfUE2nE/wfZtWxVgq/s6xvHrPFaFjuO+4YYbpkrDfJ499xLUxe7qq6+egr8zZ85Mn8Unz2ywmeuybPczn/nMVJmYV56fcY9VlAlNU9XY5br5LBWO+XeQ79sJ+09TdwkQIECAwIkXEPKd+Ck0AAIECBAgQOCkCjQc2hb+bFsq2yDoXEO+3t+gbh40NlRr9eA8FByfO1bm5f2GYb1mW3Vh22s42Gu63LWVbg3zGji28i1VeQmfvv3tb09hU5atJrxrENn99fJegrVUpXUJbA6fSOiVarZUrcW+S3/bnx4uUZeGcwnBEpClGrAHhIxLlhvG5Wf73lCu+w/2OzoPSRvAtVJvdGs/8l6enwCx7/31v/7Xpwq+LLPN/noJ/vLsBHxZlttX5yOfpZ1bb711Mki1X0O+WIzVkbk2gWEC0Ywj449plzKf1P/e9JsAAQIECCxdQMi39Bk2PgIECBAgQODYCyS4GQ+nGAOhBlhjQJffx2W8BxnguER4HgTNl/SOlYPzJcIJpxJMtd/jUuJtfRsDw7FCr20kaOqBFw2V0k4r6Npmlp72UImEfT0gokt7uy9dl55mjG94wxumICzBVQKwHEzRwzrGfjeYyzPHZbJXXnnlFIzl2lyTZ45h3BgYtgIuy4dz7ViROXeJSQK1HAiSE38znnrGN2O55JJLpuAu1XU9NKRhYn7mZNzslZd989LPLNdtELnte9GlxWPFaE8ezn35l7byM6b51yA1/avRQb5zriVAgAABAgSORkDIdzTOnkKAAAECBAisSGBehbdTVd4Y5o3XtKJtrOTqew1nzmfZZJcMN+DaaWrGir8x1OqebePy1QRSuT7VX2NYOO67N/a9lWVjH/J73k/I1uq99LX7y6XdBHx5bsOwhFF5dvaYq1HHk2sSWCWoyom611577bS/XH7PctWEV7l/tM/vqRhM1VyCtTw7gVvaynutWkz/Gkymyq4WNet1DeQaZjaA6xykr+lXQsSxAq+f5zm/+Iu/uHnf+9437TsY37zq1+fFLL+nH/Pv0ji/276LeS+GeWZ+JkzMsxLqJVTN+OObZzhdd0X/IzNUAgQIEDhxAkK+EzdlOkyAAAECBAgcZ4Ex4JpXv+0WzI2hTsY3Lp0dx7tTlVyuGdufB1e7LbXtvePy3THgG5/ZqsMuUW31XfeAa5jVNscQb1zS21Ncc133peszu3y3n3XvvbzfCru8l9Cpy1z7/PZ17GcPxLj99tun4C5B1YMPPji1ldAs1XIJ2cZDP9JO9tjLteP+gvPTiHNP2k8QltCwlYdjpeNY0ZcxjYFp7k0QmaXACei2vf7BP/gH08EX2UuvpwiPQWb62mrCBqL9fKxU3C1sTj/ikFe/B7GpSQ/xyBJpLwIECBAgQOB4Cgj5jue86BUBAgQIECBwAgXmy13H8Gyvyrv5Mtr59WNV35ymgVar37o0dtw3ruHN+N4YWM2r4ObBXp859qPPaQVeT55tmDTv1xj8NdRsG93/rqHU2EYCs7bdffPGysbxYIve3+Aw915++eVT+JYqtSzbzd+pmusefqlaa7CY5/beVgu2eq5hWsbRvfa6919OoU0Al3t7X4Ox8YCQcXlzx5B7s4S4y2JH61x/1VVXTW9l2e781TB4rCCcf++2Bc9jO/k8408/EjT2e5GxpZqvh3ekv/nbiwABAgQIEDieAkK+4zkvekWAAAECBAicUIHdKvkavuw0tHk41/3cxmqseTgzhmWtamu41iWj84BuXmHY5479a2iU97aNqX3qwRGtVmu13liZOFYIbqsKHKsG87y20X43gMv4Eta1jVbRdS+5sVItQVWW3WaZad7PXnlpJ+Fewqwssc2y1O5hl7/zWUO60Xlcctz3M76Ech13lxinT1nO3L0CG+p1Lrv0t+FZ3s9egQn55lVyrc7LOHZaJtv25sub59+x3ULmzk8MUumYPmWZbvqU8XQsGas9+U7o/5h0mwABAgRWISDkW8U0GyQBAgQIECBwVALjfncNzXZbJjnv13htA6Kd+t7gqNVcPXwi1/eznU653Rb6jGHc2I+dgsvuA5dntAqtAePYhwaC81OEu2S3zxqX9tZuDDHzXveiGyv7WimX+2uQ+xKAJXDLXnr5/TWvec3m85///HTQRf5leeojjzwyVfbllNrs0zfOXw3z3IZ5XYabZ/bzVvO1onEM8DLGVgZ2vAntUj3Ypc3jacI7zfW271Cf3z30eu9OofBubaf9jC0hXyoeG3Zm3JnnVClmjveqSD2q/848hwABAgQIEPheASGfbwUBAgQIECBA4BAEGoQ1yGkV3RiQjSFMft8p/NtvKNjrxjCq4dhuQxorBvf7rN0CovGZ85Bvvoy0146B4txlPp6EYN37L0FUK/dyX6rgEuIlWEubY8iXILCHZ2RecmhHD75IeNW5amCXZbkJBbv8N+2Np8x2zuZznfdzT9pPuz2RtoFkwsT0MePKe+3rWA3ZkHQMOvcK1Obh67Yw9ly+2gn54pzqx4w/fX7iiSempvbq07k8zz0ECBAgQIDA4QgI+Q7HUSsECBAgQIDAigUarrSirgFfA5uxIm9eYXeQkK3Xzu/ZFphte69TNIZBu1X8zad0vK/h3U7TnuqvvBqg5ffuUTcGcW1z3JOvXn3GuHdgAqcciJHKu1br9bCLPq973eXzfJbAKkthxyXEDdxaoTf2L5/1lOCGlulf+92gMZ/1VOEsC+7vuS7XtKLvlltu2Tz22GOTRcO89Ct/J1Tsdefyn9A8RD7fEC5jT6Vh5y1Vghlblu5uqwo9lz67hwABAgQIELgwAkK+C+OqVQIECBAgQGAlAg2OxmWlrQBrqBWKhi8JrLp/2rlUbfXwh3Fpbtpv8DTut9cwcAx+5kFdp2m/AU6rAMelwt1Db1yO26WrCYvGexqm9bl163ga0OXzMRyNW9pKtVzeT+iUMWfZbZa+dq+4miY8S6CWPiUYbACXyr4sy+3cpFotbfV5uS7PyGm7aSv70TW8ze/tZ9rM57m+J9qOJ9Hm8waX48EhuafhXoLEVimeSzg3Brm7hboH+U8x7SREzVj7nRr35TtIW64lQIAAAQIEjlZAyHe03p5GgAABAgQILEig4VWGNFZ8zfeg62d9v8tKDxLyjaFY7psHd9vCorHib/57+zyGbnvtAdg+jMtV+9x+1r7ND6toKDiGUXOPtDGGoWOf+34qy/JKCJc283f3tEu1XgKpHBrRyr2GfAmsEqpl/71ckyAr+/FlKW0O3HjnO985BVtpN1V3qbRLSNjDMNJOwrz0Ke3n2vZvDMNa3ZdQsvcmcMzfub/LX7tseJzHgwZ9/f7VfAxwx7a6LDn9HJcFz/9T7Hjabg7iyCtu9uNb0P+4DIUAAQIEFisg5Fvs1BoYAQIECBAgcKEEGqaMhzSMAVhDl3loMwZd86BuP33dq1prp88b3ozLYPO8/N3KtAY7B6noaxtj9WCDujF46t50fa/VjNvMev8YoI42eT9BXffKSxVe2s+/q666agqkvva1r02n5+aaLqPtXnkN226//fbNM888s/nKV74yOdQmgVxeDbVaydeKxAR8NWro1/Gkb+Npt+Pefq1QHKviOl/bKi73830Y938cv2sZSyoM816rC9v//L2fOU7bsUhbWU7cw0320y/XECBAgAABAhdHQMh3cdw9lQABAgQIEDjBAuPS3A6jS1b79xjiNdw7l8q9tDcGXruFg7sFdWOV1xiujRV3Bwke0962sG50GIO+hlzjvnjpR4OqLmHueNtOPx9ds0Q3nyewSrVcx5ZgL78nfMvvXcKbSr2GmVdeeeXZPf0uu+yyzfPPPz8t903/0mZCuvzeMDBtdPluT+vtacI94bfhXsPBhI0JGlMN2P4lhOx4E5rVYwz/DvqfxBgSdh77XpcLj3M6LmHe61lpZwyB97re5wQIECBAgMDFFxDyXfw50AMCBAgQIEDghAmMyyQb4I3BWX4f98ybL4Nt5da8Emvbctlxyep+mHZbcjsGfeN1YyXZXs8bg6Vxf8FxqecYLG1bgtr75n1tCDoP9jLuLgtOmJXQrUtk83eub+Va2shnDfrSr1TzPfXUU1Pwl89TnZd7smQ3AWADvlQI5rTe7NmXZbs333zz5tFHH92cPn16WsLbffy6R1/Dulb05cCKVABm7juWPD/3pX+phms42TBzrII8l+W6Y/g5/35kjK0mHA0P+pz9fO9cQ4AAAQIECFx8ASHfxZ8DPSBAgAABAgROiMC2AG0M+cYQbaclkduCtgZCbf8wQ5gxfGsVXbkTADWwGk+83avv8yq0tjevZtxrWWgtxj60im4MTRuuNYzL9QnUEvx1r71U96VqLiFbPkuQl/u6T1+CuJ7Mm9Avry7J7d5+qb5LMHbttdeeXcab4O+b3/zm5tSpU5uHHnpoui/9SGCX4K6HcdQkn7fCL2FkPs+rB4f0s8P4yjdsTv/ny2lbadnTe/u3vfUOQ14bBAgQIEDgeAoI+Y7nvOgVAQIECBAgcAwFxgq+hj3jUtq+Nw/pxmBvrPBqINSlkb1/r3BsvzRjwJd7xlBtrDZre/sNF8cKxLHd9n/8eS59HU1rkWeOXlkKmzAv4Vaq7lKll8AvlXg5UCPjy6EcqdRLe9mrL2FYD83o3nldnpsDOJ599tnpGa0a7NLf3pMg8bnnnpsCu7SXkC+hWfqSv3Ndqvs6/rSdNhq0xbdLiPfrcq7X5bk9kKRttLLvXNt0HwECBAgQIHC8BYR8x3t+9I4AAQIECBA4RgJ7LWXdravjvQ31ug9dwqcuYZ0v8+1924K/nfozX0I8D922hX/z/fN2Gsu2w0Z67dif/QaG8+e0jYZ6Y78aUo5ttz+5vuFgAr9U8CVQSzCXAC7VeA3Yuj9en5V9+hLe9Vld/ptwLtV9eb3xjW+cgsSPfOQjU4CYMDHh3pkzZ85WBHZpbqvmehhI7v/yl788tX9UIV+e2e/BGE4fVoB8jP6z1BUCBAgQIEDg/wkI+XwVCBAgQIAAAQJ7CBy0AmqvMLDLUxsqzZfMNsTq++OhFOnqPDAcQ7y9nj2vKuwBDW23QdX5hnTn86VqH+dhZNtssJewLf1vn+dOGUOW3qaaL4Fdgr5WMDYAS/VdqvF6+mze7/LXsaLwpptumkK9VOrlRN8crpEgMeFgluTm/m33taKupwEfJKw9H8Mx5Bu/H+fbpvsJECBAgACB4ysg5Du+c6NnBAgQIECAwAIEtoVuDanmYdZYxbfT0Bs8zU+x3Vbl1jbmn419atg17rO3Uyi02zMuxFSNIdtoNfavDlk6m4q9eTiZ6rsEga2UTEDXKsGxnYZ88znJvnoJB1O5l2ck2Msz3/SmN23uuuuus3vhNQhuiFjPeQDZ5dpjP/cKZi+ErTYJECBAgACB5QkI+ZY3p0ZEgAABAgQIHJHA/HTcPHZbld220Gxc9to94PZbPbcttNspmGuf+vlOQd28wm8/AeGFZk6fxiWnrYKbH3Yy7tvXpbIJ2xLcvfjFL9687GUvm35P1V5Oye0S3gR2fcZ4CMcY0GVfvYR7aSfPTWiYpbdZ4pu28l5P861x2sqrn/WwjXEfxP3O9YU21j4BAgQIECCwHAEh33Lm0kgIECBAgACBiyAwD/W2ncDbbm07kKNh33yp6U5D2W813X7Dxr3I5ktmW5m2132H8XkDuNp07DVu31od1wq9hnpZUvvUU09N4V6W7Caoyx57vW8MEBvAtd/dty9/txIw7eSeVPblWVm+m9/Tv7Q9nrTbE4Fb4deqxAaAh+GjDQIECBAgQIDAKCDk830gQIAAAQIECJynwHy55TwYS/O7VW4ddLnmTlV3ec5+Q8CDDHl83l5jOUi7B7l2btpgr2Pu3wniEtglZDt9+vTknr/zfk/dnVcI9t7uq9fgNT+771/29MuhGfl5+eWXb77+9a9P+/Ml2Mspv2kjv+ee/GyVZ+4Zl0R3zCr5DjL7riVAgAABAgT2IyDk24+SawgQIECAAAECBxAYK83ONRQbQ61tFYBHGRLt1pcDsJz3pduWKbdCroeY9CF5P/vp3XDDDZtvfOMbUzXes88+Ox2aMYZu8zbHQ1HGQC7vp1ovy3UT9KUyMAFglupm2W9CxD/7sz87G+Ym3Evb3Wcx16WPCRKz/DfvH+VJu+eNrwECBAgQIEDg2AsI+Y79FOkgAQIECBAgcFIFzqWq7qBVfXOb/d6/3+vOtf2jnLM6bxtTgrkEfJdddtkUuuVfwrVU4SWoS2iX4G9+EEbb6rLbBIa575JLLplO483nCezyyjU95Tft5v1U8uVffu/14zLhXJ+DQrwIECBAgAABAoclIOQ7LEntECBAgAABAgT+n8C5Bmj7BdwtPNzPs88lfNxv3y7mda3CSx/GU2wTqCXMO3Xq1Oa55547G7xlP71W9eWaHuAxVgU2wMt7L33pSzc/+IM/uHnb2962ef755zePPvro5g//8A+nNlLJl4rBLhXO32kzewDmZwLCtp+9/PLKsl4vAgQIECBAgMBhCQj5DktSOwQIECBAgACBQxDYK4AbP59XsB1kCe9ez9k2lHO55xBIzrmJVNIlWEvglmAtB3Ik2EtlXYK5VPC1uq976PUk3Dy0e/I1PEwbMc7PXH/nnXduPvaxj00hXir40lbvzzN7Sm+W8zbkG0/c7XLdMZA858G6kQABAgQIEFi9gJBv9V8BAAQIECBAgMBxEditCm+nz/ZTudfxjdce5L75/edy78UwbsiX/maZbcK57I2XcC+fJXxL5d38YIwute2hHel79uHL3z184/Wvf/3m8ccf37z5zW/e3HXXXdPwEh522W5P5O3efenDNddcs3nmmWem67IvX4LB7tl3kID2Ylh6JgECBAgQIHD8BYR8x3+O9JAAAQIECBAgMFWJHTQIOpd7dqIeDxM5SZVn4z542Z/vqquumpbQZgzdF6+HaiRwy6m5qcZLCJcwLr8n9Oure/Rdf/31myeffHJzxx13bO6+++4pBMx7OWn35S9/+eZ3f/d3pwrCBHkJBnMoR5fpZp++9CUh4/zAEF91AgQIECBAgMC5Cgj5zlXOfQQIECBAgACBfQjMq+fGJa8HDe328bjvuqQVannzMJ91mOHhQcd0Lte3vwnrrr322mnvvARtMUmYlwAugVzCuCuuuGKqtsv+e3ndcsstm0984hNnl9vmnnHvvrT39NNPTwHejTfeuLn11ls3v/3bvz0FeGkjIV/az/PyjFQS5sCNfJb7DnNezsXGPQQIECBAgMByBIR8y5lLIyFAgAABAgSOocBOS2QTwDV822/Qc9Bwrc9oKHUYPOM+gIfZ7mH0ba824pFTduOdQy9SyZeQLxV8+fnUU09tXvva126eeOKJs1V8p0+fnpb3pvov948Vja3q6yEbN9988+bVr371VMWXQDFtPvvss9M9CfsuvfTSadlwKgDzed4bXwed373G63MCBAgQIEBgXQJCvnXNt9ESIECAAAECx0hg3Atup4BnP9cc5pAaYu3UZkO+BpSH+ewL3Vb6nmCvrwRueaUCL5995jOfmSr5UnnXAC5hXK77yle+MoV2WYqbkC6v3NMwL78nxEvQd+WVV27uvffeKTTMqb655rHH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ASHf0Xp7GgECBAgQIEDgWAokxDt9+vTm2Wef3WQJb17f+c53pqq+fNalukK+Yzl9OkWAAAECBAgQ2Aj5fAkIECBAgAABAgSmqr2GeX/xL/7FzbXXXrt55plnvqeiT8jny0KAAAECBAgQOJ4CQr7jOS96RYAAAQIECBA4UoHsv5fDNRLw5RCOU6dOTQduvPDCC9914Ia9+Y50WjyMAAECBAgQILBvASHfvqlcSIAAAQIECBBYrkCX5ebni170ounQje///u+flu+mei/LdXvC7nIVjIwAAQIECBAgcHIFhHwnd+70nAABAgQIECBwaAJZqptXl+1eeumlm6997WvT3w35LNU9NG4NESBAgAABAgQOXUDId+ikGiRAgAABAgQInFyBhH05eKOn6aaqLwdwZAmvFwECBAgQIECAwPEVEPId37nRMwIECBAgQIDAkQs05MvS3Pz+kpe8ZPOtb31r8+d//udH3hcPJECAAAECBAgQ2L+AkG//Vq4kQIAAAQIECCxeoCFfluZmf74cwJFlu9/85jcXP3YDJECAAAECBAicZAEh30mePX0nQIAAAQIECByyQIK9/EslX37mAI6csutFgAABAgQIECBwvAWEfMd7fvSOAAECBAgQIHDkAgn3cppu9+bLfnz524sAAQIECBAgQOD4Cgj5ju/c6BkBAgQIECBA4KIIZMluTtVNsJefQr6LMg0eSoAAAQIECBA4kICQ70BcLiZAgAABAgQIrEMgQV/+deluAj/VfOuYe6MkQIAAAQIETqaAkO9kzpteEyBAgAABAgQuqEADvjwk+/MJ+C4ot8YJECBAgAABAuctIOQ7b0INECBAgAABAgSWKZCgLy8B3zLn16gIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABDqbMYgAAIABJREFUAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIECCwQgEh3won3ZAJECBAgAABAgQIECBAgAABAgSWJSDkW9Z8Gg0BAgQIECBAgAABAgQIECBAgMAKBYR8K5x0QyZAgAABAgQIECBAgAABAgQIEFiWgJBvWfNpNAQIECBAgAABAgQIECBAgAABAisUEPKtcNINmQABAgQIECBAgAABAgQIECBAYFkCQr5lzafRECBAgAABAgQIECBAgAABAgQIrFBAyLfCSTdkAgQIECBAgAABAgQIECBAgACBZQkI+ZY1n0ZDgAABAgQIECBAgAABAgQIEPi/7dgxAQAAAIKw/q3tIYvg/CAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBDnD2CzAAAPk0lEQVQgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJiHxff1pDgAABAgQIECBAgAABAgQIECAQFBD5gqebTIAAAQIECBAgQIAAAQIECBAg8CUg8n39aQ0BAgQIECBAgAABAgQIECBAgEBQQOQLnm4yAQIECBAgQIAAAQIECBAgQIDAl4DI9/WnNQQIECBAgAABAgQIECBAgAABAkEBkS94uskECBAgQIAAAQIECBAgQIAAAQJfAiLf15/WECBAgAABAgQIECBAgAABAgQIBAVEvuDpJhMgQIAAAQIECBAgQIAAAQIECHwJDBpn9P1H13ALAAAAAElFTkSuQmCC`;
diff --git a/app/src/layers/contents/main/textures/toshin-terrain-map.ts b/app/src/layers/contents/main/textures/toshin-terrain-map.ts
new file mode 100644
index 0000000..339f1a4
--- /dev/null
+++ b/app/src/layers/contents/main/textures/toshin-terrain-map.ts
@@ -0,0 +1 @@
+export const TOSHIN_TERRAIN_MAP = `data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABP0AAAZgCAYAAAAFxDLZAAAAAXNSR0IArs4c6QAAIABJREFUeF7s3UmLXeUWBuAdm5iQtkxMNKgzJyo2A0EHik79LToS/A2COvO3OBJsEARBRLEDUVAwsakkJkGTGJvL2rDqftlWqfHqraq3ngKpnFOne5+1nLzsffauaZp+m/wQIECAAAECBAgQIECAAAECBAgQIBAjsEvpFzNLQQgQIECAAAECBAgQIECAAAECBAjMAko/i0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBBX+7H8AAAgAElEQVQIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIED8CZeoAACAASURBVCBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgAABAgQIECBAgAABAgQIEAgTUPqFDVQcAgQIECBAgAABAgQIECBAgAABAko/O0CAAAECBAgQIECAAAECBAgQIEAgTEDpFzZQcQgQIECAAAECBAgQIECAAAECBAgo/ewAAQIECBAgQIAAAQIECBAgQIAAgTABpV/YQMUhQIAAAQIECBAgQIAAAQIECBAgoPSzAwQIECBAgAABAgQIECBAgAABAgTCBJR+YQMVhwABAgQIECBAgAABAgQIECBAgIDSzw4QIECAAAECBAgQIECAAAECBAgQCBNQ+oUNVBwCBAgQIECAAAECBAgQIECAAAECSj87QIAAAQIECBAgQIAAAQIECBAgQCBMQOkXNlBxCBAgQIAAAQIECBAgQIAAAQIECCj97AABAgQIECBAgAABAgQIECBAgACBMAGlX9hAxSFAgAABAgQIECBAgAABAgQIECCg9LMDBAgQIECAAAECBAgQIECAAAECBMIElH5hAxWHAAECBAgQIECAAAECBAgQIECAgNLPDhAgQIAAAQIECBAgQIAAAQIECBAIE1D6hQ1UHAIECBAgQIAAAQIECBAgQIAAAQJKPztAgAABAgQIECBAgAABAgQIECBAIExA6Rc2UHEIECBAgAABAgQIECBAgAABAgQIKP3sAAECBAgQIECAAAECBAgQIECAAIEwAaVf2EDFIUCAAAECBAgQIECAAAECBAgQIKD0swMECBAgQIAAAQIECBAgQIAAAQIEwgSUfmEDFYcAAQIECBAgQIAAAQIECBAgQICA0s8OECBAgACBEIGVlZXp7Nmz08033zydOXNmGm9fuXJl2r1793T69OmQtGIQIECAAAECBAgQIPBHAko/+0GAAAECBEIEquTrn127dk2//fbbfLP+XT/XXXfd/Ht1dTUksRgE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CBA4IgJCvyPC7ksJECBAgAABAjtL4H3ve98m68Blx96EfQmR8vi1X/u1y2Om/Sbwy5HnT3jCE3ZWAe5G6Oc3QIAAAQIECOwnIPTzgyBAgAABAgQIEFgEMsX3SU960vL3VVddtfm6r/u6rd17M/Ivo/66kYfQb+f9aG688cbNKaecsvNuzB0RIECAAAECR0RA6HdE2H0pAQIECBAgQGBnC1x33XXLlN6O7suIv//8z//cei7029n9c3cECBAgQIAAAaGf3wABAgQIECBAgMB+Ah/5yEeWUX05/uu//mt57POs75fj8Y9/PDUCBAgQIECAAIEdLCD028HNcWsECBAgQIAAgSMlcM0112xN5e3U3vW9PO5xjztSt+Z7CRAgQIAAAQIEDkBA6HcASE4hQIAAAQIECEwTSOiXqb3//d//vZSetfzyLyP/bOQx7degXgIECBAgQGA3Cgj9dmPX3DMBAgQIECBA4D4WuPbaa5dv2B76ZdRfpvg+8YlPvI/vwOUJECBAgAABAgTujYDQ797o+SwBAgQIECBAYA8KJPC76667lhF9Rx111PL4H//xH8vj13/91y8Vn3nmmXuwciURIECAAAECBPaOgNBv7/RSJQQIECBAgACBQyZw2WWXbb7xG79xk117E/b9+7//+/J4v/vdb3ntu7/7uw/Zd7kQAQIECBAgQIDAoRcQ+h16U1ckQIAAAQIECOx6gUsvvXRz9NFHb43o+7M/+7PN/e9//80TnvCEXV+bAggQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGnkvvDUAACAASURBVAkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQSa/I8gAAIABJREFUIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1WLAECBAgQIECAAAECBAgQIECAwAQBod+ELquRAAECBAgQIECAAAECBAgQIEBglIDQb1S7FUuAAAECBAgQIECAAAECBAgQIDBBQOg3octqJECAAAECBAgQIECAAAECBAgQGCUg9BvVbsUSIECAAAECBAgQIECAAAECBAhMEBD6TeiyGgkQIECAAAECBAgQIECAAAECBEYJCP1GtVuxBAgQIECAAAECBAgQIECAAAECEwSEfhO6rEYCBAgQIECAAAECBAgQIECAAIFRAkK/Ue1W7P9px44JAAAAGAT1b20QiTD2SYAAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQICBQ0WRAAADYElEQVQAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQEP0OL9tIgAABAgQIECBAgAABAgQIECCwEhD9VncbS4AAAQIECBAgQIAAAQIECBAgcBAQ/Q4v20iAAAECBAgQIECAAAECBAgQILASEP1WdxtLgAABAgQIECBAgAABAgQIECBwEBD9Di/bSIAAAQIECBAgQIAAAQIECBAgsBIQ/VZ3G0uAAAECBAgQIECAAAECBAgQIHAQCFZqqDXHR7KRAAAAAElFTkSuQmCC`;
diff --git a/app/src/layers/contents/main/tokyo23.tsx b/app/src/layers/contents/main/tokyo23.tsx
new file mode 100644
index 0000000..cb2427c
--- /dev/null
+++ b/app/src/layers/contents/main/tokyo23.tsx
@@ -0,0 +1,128 @@
+import { FlyToInterpolator } from "@deck.gl/core/typed";
+
+import { RESOURCE_URL } from "../../../constants";
+import { MainScenes } from "../../../utils";
+import { MAIN_SCENE_DURATION } from "../../constants";
+import { SCENE_DESCRIPTION_TIMEOUT, TutorialSwitcher } from "../../overlays";
+import { LayerData } from "../../types";
+
+export const TOKYO23_MVT: Omit, "scene"> = {
+ id: "tokyo23-mvt",
+ type: "mvt",
+ url: `${RESOURCE_URL}data/tokyo23-mvt/{z}/{x}/{y}.pbf`,
+ getElevation: ({ properties }) => properties.z ?? 0,
+ getFillColor: ({ properties }) => {
+ const { buildingStructureType } = properties;
+
+ if (buildingStructureType === 11) {
+ return [160, 192, 222, 255];
+ }
+ if (buildingStructureType === 12) {
+ return [166, 222, 214, 255];
+ }
+ if (buildingStructureType === 21) {
+ return [189, 182, 222, 255];
+ }
+ if (buildingStructureType === 22) {
+ return [222, 171, 153, 255];
+ }
+
+ return [202, 202, 202, 255];
+ },
+ minZoom: 10,
+ maxZoom: 16,
+ extruded: true,
+};
+
+export const BASE_LABEL_MVT: Omit, "scene"> = {
+ id: "base-label-mvt",
+ type: "mvt",
+ url: "https://cyberjapandata.gsi.go.jp/xyz/optimal_bvmap-v1/{z}/{x}/{y}.pbf",
+ getFillColor: () => [0, 0, 0, 0],
+ getText: ({ properties }) => {
+ const code = properties.vt_code;
+ // 市区町村 or 都道府県
+ if (![110, 140].includes(code)) return;
+ if (
+ typeof properties.vt_code === "number" &&
+ `${properties.vt_code}`.length === 3 &&
+ typeof properties.vt_text === "string" &&
+ (properties.vt_arrng == null || typeof properties.vt_arrng === "number") &&
+ (properties.vt_arrngagl == null || typeof properties.vt_arrngagl === "number")
+ ) {
+ return properties.vt_text;
+ }
+ },
+ getTextColor: () => [70, 60, 100, 255],
+ getTextSize: 16,
+ textOutlineColor: [230, 230, 250],
+ textOutlineWidth: 6,
+ textFontWeight: 600,
+ getTextAlignmentBaseline: "bottom",
+ minZoom: 4,
+ maxZoom: 17,
+};
+
+export const SHELTER_MARKER: Omit, "scene"> = {
+ id: "避難所",
+ type: "marker",
+ url: `${RESOURCE_URL}data/points/ShelterPoint.geojson`,
+};
+
+export const TOKYO23_LAYERS: LayerData[] = [
+ {
+ id: "scene1-scene-description-overlay",
+ type: "overlay",
+ scene: [MainScenes.Scene1],
+ renderContent: props => ,
+ contentIndex: 0,
+ contentDuration: SCENE_DESCRIPTION_TIMEOUT,
+ },
+ {
+ id: "scene1-camera-1",
+ type: "camera",
+ viewState: {
+ longitude: 139.788877,
+ latitude: 35.6943181,
+ bearing: 360 * 0.2,
+ pitch: 360 * 0.2,
+ zoom: 12,
+ transitionDuration: 700,
+ transitionInterpolator: new FlyToInterpolator({ curve: 1 }),
+ },
+ enableInfiniteRotation: true,
+ scene: [MainScenes.Scene1],
+ contentIndex: 0,
+ },
+ {
+ id: "scene1-camera-2",
+ type: "camera",
+ viewState: {
+ longitude: 139.790877,
+ latitude: 35.6975181,
+ bearing: 360 * 1.0,
+ pitch: 360 * 0.15,
+ zoom: 15.5,
+ transitionDuration: 700,
+ transitionInterpolator: new FlyToInterpolator({ curve: 1 }),
+ },
+ enableInfiniteRotation: true,
+ scene: [MainScenes.Scene1],
+ contentIndex: 1,
+ isMain: true,
+ contentDuration: MAIN_SCENE_DURATION,
+ },
+ {
+ ...TOKYO23_MVT,
+ scene: [MainScenes.Scene1],
+ },
+ {
+ ...BASE_LABEL_MVT,
+ scene: [MainScenes.Scene1],
+ },
+ {
+ ...SHELTER_MARKER,
+ scene: [MainScenes.Scene1],
+ pickable: true,
+ },
+];
diff --git a/app/src/layers/contents/opening.tsx b/app/src/layers/contents/opening.tsx
new file mode 100644
index 0000000..02adf2f
--- /dev/null
+++ b/app/src/layers/contents/opening.tsx
@@ -0,0 +1,38 @@
+import { FlyToInterpolator } from "@deck.gl/core/typed";
+
+import { OpeningScenes } from "../../utils";
+import { LayerData } from "../types";
+
+export const OPENING_LAYERS: LayerData[] = [
+ // Opening
+ // Scene1
+ {
+ id: "opening-scene1-camera",
+ type: "camera",
+ enableInfiniteRotation: true,
+ scene: [OpeningScenes.Scene1],
+ },
+
+ // Scene2
+ {
+ id: "opening-scene2-camera",
+ type: "camera",
+ viewState: {
+ longitude: 139.758877,
+ latitude: 35.6843181,
+ bearing: 360 * 0.15,
+ pitch: 360 * 0.35,
+ zoom: 13,
+ transitionDuration: 1500,
+ transitionInterpolator: new FlyToInterpolator({ curve: 1 }),
+ },
+ scene: [OpeningScenes.Scene2],
+ },
+ {
+ id: "延焼火災出火地点",
+ type: "animationGradientPoint",
+ url: "data/points/point-of-burned.geojson",
+ getRadiusProperty: (props: { properties: any }) => props.properties.buffer_2_1,
+ scene: [OpeningScenes.Scene2],
+ },
+];
diff --git a/app/src/layers/data/particles/tama-destroyed_particles_1.json b/app/src/layers/data/particles/tama-destroyed_particles_1.json
new file mode 100644
index 0000000..706fcb8
--- /dev/null
+++ b/app/src/layers/data/particles/tama-destroyed_particles_1.json
@@ -0,0 +1 @@
+{"type":"FeatureCollection","features":[{"type":"Feature","id":16505,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.691666999105664],[139.640625,35.691666999105664],[139.640625,35.69374999910563],[139.6375,35.69374999910563],[139.6375,35.691666999105664]]]},"properties":{"MESHCODE":"5339453111","揺全壊":77.07524}},{"type":"Feature","id":18341,"geometry":{"type":"Polygon","coordinates":[[[139.81875,35.70416699910552],[139.821875,35.70416699910552],[139.821875,35.70624999910548],[139.81875,35.70624999910548],[139.81875,35.70416699910552]]]},"properties":{"MESHCODE":"5339464541","揺全壊":62.46841}},{"type":"Feature","id":18497,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.712499999105425],[139.815625,35.712499999105425],[139.815625,35.714582999105396],[139.8125,35.714582999105396],[139.8125,35.712499999105425]]]},"properties":{"MESHCODE":"5339465531","揺全壊":68.16807}},{"type":"Feature","id":18498,"geometry":{"type":"Polygon","coordinates":[[[139.815625,35.712499999105425],[139.81875,35.712499999105425],[139.81875,35.714582999105396],[139.815625,35.714582999105396],[139.815625,35.712499999105425]]]},"properties":{"MESHCODE":"5339465532","揺全壊":75.27155}},{"type":"Feature","id":18499,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.714582999105396],[139.815625,35.714582999105396],[139.815625,35.71666699910537],[139.8125,35.71666699910537],[139.8125,35.714582999105396]]]},"properties":{"MESHCODE":"5339465533","揺全壊":66.83166}},{"type":"Feature","id":18500,"geometry":{"type":"Polygon","coordinates":[[[139.815625,35.714582999105396],[139.81875,35.714582999105396],[139.81875,35.71666699910537],[139.815625,35.71666699910537],[139.815625,35.714582999105396]]]},"properties":{"MESHCODE":"5339465534","揺全壊":64.53299}},{"type":"Feature","id":18501,"geometry":{"type":"Polygon","coordinates":[[[139.81875,35.712499999105425],[139.821875,35.712499999105425],[139.821875,35.714582999105396],[139.81875,35.714582999105396],[139.81875,35.712499999105425]]]},"properties":{"MESHCODE":"5339465541","揺全壊":95.84475}},{"type":"Feature","id":18502,"geometry":{"type":"Polygon","coordinates":[[[139.821875,35.712499999105425],[139.825,35.712499999105425],[139.825,35.714582999105396],[139.821875,35.714582999105396],[139.821875,35.712499999105425]]]},"properties":{"MESHCODE":"5339465542","揺全壊":67.33811}},{"type":"Feature","id":18504,"geometry":{"type":"Polygon","coordinates":[[[139.821875,35.714582999105396],[139.825,35.714582999105396],[139.825,35.71666699910537],[139.821875,35.71666699910537],[139.821875,35.714582999105396]]]},"properties":{"MESHCODE":"5339465544","揺全壊":100.22489}},{"type":"Feature","id":18623,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.718749999105356],[139.796875,35.718749999105356],[139.796875,35.72083299910535],[139.79375,35.72083299910535],[139.79375,35.718749999105356]]]},"properties":{"MESHCODE":"5339466323","揺全壊":66.80428}},{"type":"Feature","id":18628,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.72291699910533],[139.79375,35.72291699910533],[139.79375,35.72499999910529],[139.790625,35.72499999910529],[139.790625,35.72291699910533]]]},"properties":{"MESHCODE":"5339466334","揺全壊":69.05628}},{"type":"Feature","id":18629,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.72083299910535],[139.796875,35.72083299910535],[139.796875,35.72291699910533],[139.79375,35.72291699910533],[139.79375,35.72083299910535]]]},"properties":{"MESHCODE":"5339466341","揺全壊":88.00489}},{"type":"Feature","id":18649,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.71666699910537],[139.815625,35.71666699910537],[139.815625,35.718749999105356],[139.8125,35.718749999105356],[139.8125,35.71666699910537]]]},"properties":{"MESHCODE":"5339466511","揺全壊":84.00713}},{"type":"Feature","id":18651,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.718749999105356],[139.815625,35.718749999105356],[139.815625,35.72083299910535],[139.8125,35.72083299910535],[139.8125,35.718749999105356]]]},"properties":{"MESHCODE":"5339466513","揺全壊":75.7384}},{"type":"Feature","id":18781,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.72499999910529],[139.796875,35.72499999910529],[139.796875,35.72708299910527],[139.79375,35.72708299910527],[139.79375,35.72499999910529]]]},"properties":{"MESHCODE":"5339467321","揺全壊":90.61529}},{"type":"Feature","id":18782,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.72499999910529],[139.8,35.7249999991053],[139.8,35.72708299910527],[139.796875,35.72708299910527],[139.796875,35.72499999910529]]]},"properties":{"MESHCODE":"5339467322","揺全壊":85.00071}},{"type":"Feature","id":18818,"geometry":{"type":"Polygon","coordinates":[[[139.815625,35.72916699910524],[139.81875,35.72916699910524],[139.81875,35.731249999105245],[139.815625,35.731249999105245],[139.815625,35.72916699910524]]]},"properties":{"MESHCODE":"5339467532","揺全壊":64.07225}},{"type":"Feature","id":18922,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.733332999105215],[139.78125,35.7333329991052],[139.78125,35.735416999105176],[139.778125,35.73541699910518],[139.778125,35.733332999105215]]]},"properties":{"MESHCODE":"5339468212","揺全壊":109.11181}},{"type":"Feature","id":18924,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.73541699910518],[139.78125,35.735416999105176],[139.78125,35.737499999105154],[139.778125,35.73749999910516],[139.778125,35.73541699910518]]]},"properties":{"MESHCODE":"5339468214","揺全壊":63.6688}},{"type":"Feature","id":18925,"geometry":{"type":"Polygon","coordinates":[[[139.78125,35.7333329991052],[139.784375,35.73333299910522],[139.784375,35.73541699910518],[139.78125,35.735416999105176],[139.78125,35.7333329991052]]]},"properties":{"MESHCODE":"5339468221","揺全壊":65.51258}},{"type":"Feature","id":18927,"geometry":{"type":"Polygon","coordinates":[[[139.78125,35.735416999105176],[139.784375,35.73541699910518],[139.784375,35.73749999910516],[139.78125,35.737499999105154],[139.78125,35.735416999105176]]]},"properties":{"MESHCODE":"5339468223","揺全壊":78.13825}},{"type":"Feature","id":18930,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.73749999910516],[139.78125,35.737499999105154],[139.78125,35.73958299910514],[139.778125,35.73958299910514],[139.778125,35.73749999910516]]]},"properties":{"MESHCODE":"5339468232","揺全壊":105.76848}},{"type":"Feature","id":18931,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.73958299910514],[139.778125,35.73958299910514],[139.778125,35.741666999105114],[139.775,35.741666999105114],[139.775,35.73958299910514]]]},"properties":{"MESHCODE":"5339468233","揺全壊":97.9279}},{"type":"Feature","id":18932,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.73958299910514],[139.78125,35.73958299910514],[139.78125,35.741666999105114],[139.778125,35.741666999105114],[139.778125,35.73958299910514]]]},"properties":{"MESHCODE":"5339468234","揺全壊":118.39917}},{"type":"Feature","id":18933,"geometry":{"type":"Polygon","coordinates":[[[139.78125,35.737499999105154],[139.784375,35.73749999910516],[139.784375,35.739582999105146],[139.78125,35.73958299910514],[139.78125,35.737499999105154]]]},"properties":{"MESHCODE":"5339468241","揺全壊":100.08312}},{"type":"Feature","id":18939,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.73541699910518],[139.790625,35.735416999105176],[139.790625,35.73749999910516],[139.7875,35.73749999910516],[139.7875,35.73541699910518]]]},"properties":{"MESHCODE":"5339468313","揺全壊":84.38877}},{"type":"Feature","id":19064,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.747916999105065],[139.7625,35.747916999105065],[139.7625,35.749999999105036],[139.759375,35.749999999105036],[139.759375,35.747916999105065]]]},"properties":{"MESHCODE":"5339469044","揺全壊":104.93591}},{"type":"Feature","id":19075,"geometry":{"type":"Polygon","coordinates":[[[139.7625,35.747916999105065],[139.765625,35.747916999105065],[139.765625,35.749999999105036],[139.7625,35.749999999105036],[139.7625,35.747916999105065]]]},"properties":{"MESHCODE":"5339469133","揺全壊":67.17879}},{"type":"Feature","id":19076,"geometry":{"type":"Polygon","coordinates":[[[139.765625,35.747916999105065],[139.76875,35.747916999105065],[139.76875,35.749999999105036],[139.765625,35.749999999105036],[139.765625,35.747916999105065]]]},"properties":{"MESHCODE":"5339469134","揺全壊":63.53002}},{"type":"Feature","id":19078,"geometry":{"type":"Polygon","coordinates":[[[139.771875,35.74583299910507],[139.775,35.74583299910506],[139.775,35.747916999105065],[139.771875,35.747916999105065],[139.771875,35.74583299910507]]]},"properties":{"MESHCODE":"5339469142","揺全壊":67.00735}},{"type":"Feature","id":19080,"geometry":{"type":"Polygon","coordinates":[[[139.771875,35.747916999105065],[139.775,35.747916999105065],[139.775,35.749999999105036],[139.771875,35.749999999105036],[139.771875,35.747916999105065]]]},"properties":{"MESHCODE":"5339469144","揺全壊":77.27661}},{"type":"Feature","id":19081,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.741666999105114],[139.778125,35.741666999105114],[139.778125,35.74374999910509],[139.775,35.74374999910509],[139.775,35.741666999105114]]]},"properties":{"MESHCODE":"5339469211","揺全壊":145.65172}},{"type":"Feature","id":19082,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.741666999105114],[139.78125,35.741666999105114],[139.78125,35.74374999910509],[139.778125,35.74374999910509],[139.778125,35.741666999105114]]]},"properties":{"MESHCODE":"5339469212","揺全壊":88.50084}},{"type":"Feature","id":19083,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.74374999910509],[139.778125,35.74374999910509],[139.778125,35.74583299910506],[139.775,35.74583299910506],[139.775,35.74374999910509]]]},"properties":{"MESHCODE":"5339469213","揺全壊":89.19806}},{"type":"Feature","id":19084,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.74374999910509],[139.78125,35.74374999910509],[139.78125,35.74583299910506],[139.778125,35.74583299910506],[139.778125,35.74374999910509]]]},"properties":{"MESHCODE":"5339469214","揺全壊":109.20519}},{"type":"Feature","id":19087,"geometry":{"type":"Polygon","coordinates":[[[139.78125,35.74374999910509],[139.784375,35.74374999910509],[139.784375,35.74583299910506],[139.78125,35.74583299910506],[139.78125,35.74374999910509]]]},"properties":{"MESHCODE":"5339469223","揺全壊":67.58643}},{"type":"Feature","id":19089,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.74583299910506],[139.778125,35.74583299910506],[139.778125,35.747916999105065],[139.775,35.747916999105065],[139.775,35.74583299910506]]]},"properties":{"MESHCODE":"5339469231","揺全壊":123.49714}},{"type":"Feature","id":19090,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.74583299910506],[139.78125,35.74583299910506],[139.78125,35.747916999105065],[139.778125,35.747916999105065],[139.778125,35.74583299910506]]]},"properties":{"MESHCODE":"5339469232","揺全壊":132.49322}},{"type":"Feature","id":19091,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.747916999105065],[139.778125,35.747916999105065],[139.778125,35.749999999105036],[139.775,35.749999999105036],[139.775,35.747916999105065]]]},"properties":{"MESHCODE":"5339469233","揺全壊":83.72816}},{"type":"Feature","id":19092,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.747916999105065],[139.78125,35.747916999105065],[139.78125,35.749999999105036],[139.778125,35.749999999105036],[139.778125,35.747916999105065]]]},"properties":{"MESHCODE":"5339469234","揺全壊":100.21981}},{"type":"Feature","id":19093,"geometry":{"type":"Polygon","coordinates":[[[139.78125,35.74583299910506],[139.784375,35.74583299910506],[139.784375,35.747916999105065],[139.78125,35.747916999105065],[139.78125,35.74583299910506]]]},"properties":{"MESHCODE":"5339469241","揺全壊":81.03739}},{"type":"Feature","id":19126,"geometry":{"type":"Polygon","coordinates":[[[139.809375,35.74583299910506],[139.8125,35.74583299910506],[139.8125,35.747916999105065],[139.809375,35.747916999105065],[139.809375,35.74583299910506]]]},"properties":{"MESHCODE":"5339469442","揺全壊":64.19917}},{"type":"Feature","id":25212,"geometry":{"type":"Polygon","coordinates":[[[139.746875,35.75208299910503],[139.75,35.75208299910503],[139.75,35.75416699910498],[139.746875,35.75416699910498],[139.746875,35.75208299910503]]]},"properties":{"MESHCODE":"5339550924","揺全壊":73.84205}},{"type":"Feature","id":25371,"geometry":{"type":"Polygon","coordinates":[[[139.74375,35.76041699910492],[139.746875,35.76041699910492],[139.746875,35.762499999104904],[139.74375,35.762499999104904],[139.74375,35.76041699910492]]]},"properties":{"MESHCODE":"5339551923","揺全壊":69.32346}},{"type":"Feature","id":25372,"geometry":{"type":"Polygon","coordinates":[[[139.746875,35.76041699910492],[139.75,35.76041699910492],[139.75,35.762499999104904],[139.746875,35.762499999104904],[139.746875,35.76041699910492]]]},"properties":{"MESHCODE":"5339551924","揺全壊":63.68401}},{"type":"Feature","id":25376,"geometry":{"type":"Polygon","coordinates":[[[139.740625,35.764582999104874],[139.74375,35.764582999104874],[139.74375,35.766666999104864],[139.740625,35.766666999104864],[139.740625,35.764582999104874]]]},"properties":{"MESHCODE":"5339551934","揺全壊":63.65969}},{"type":"Feature","id":25377,"geometry":{"type":"Polygon","coordinates":[[[139.74375,35.762499999104904],[139.746875,35.762499999104904],[139.746875,35.76458299910489],[139.74375,35.764582999104874],[139.74375,35.762499999104904]]]},"properties":{"MESHCODE":"5339551941","揺全壊":77.95699}},{"type":"Feature","id":25953,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.75208299910503],[139.7625,35.75208299910503],[139.7625,35.75416699910498],[139.759375,35.75416699910498],[139.759375,35.75208299910503]]]},"properties":{"MESHCODE":"5339560024","揺全壊":65.8476}},{"type":"Feature","id":25960,"geometry":{"type":"Polygon","coordinates":[[[139.75625,35.75624999910496],[139.759375,35.75624999910496],[139.759375,35.75833299910495],[139.75625,35.75833299910495],[139.75625,35.75624999910496]]]},"properties":{"MESHCODE":"5339560043","揺全壊":60.43566}},{"type":"Feature","id":25963,"geometry":{"type":"Polygon","coordinates":[[[139.765625,35.749999999105036],[139.76875,35.749999999105036],[139.76875,35.75208299910503],[139.765625,35.75208299910503],[139.765625,35.749999999105036]]]},"properties":{"MESHCODE":"5339560112","揺全壊":75.61212}},{"type":"Feature","id":25979,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.749999999105036],[139.78125,35.749999999105036],[139.78125,35.75208299910501],[139.778125,35.75208299910503],[139.778125,35.749999999105036]]]},"properties":{"MESHCODE":"5339560212","揺全壊":61.42737}},{"type":"Feature","id":26000,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.75208299910503],[139.796875,35.75208299910503],[139.796875,35.75416699910498],[139.79375,35.754166999104996],[139.79375,35.75208299910503]]]},"properties":{"MESHCODE":"5339560323","揺全壊":69.42413}},{"type":"Feature","id":26006,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.754166999104996],[139.796875,35.75416699910498],[139.796875,35.75624999910496],[139.79375,35.75624999910497],[139.79375,35.754166999104996]]]},"properties":{"MESHCODE":"5339560341","揺全壊":75.30527}},{"type":"Feature","id":26007,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.75416699910498],[139.8,35.75416699910498],[139.8,35.75624999910496],[139.796875,35.75624999910496],[139.796875,35.75416699910498]]]},"properties":{"MESHCODE":"5339560342","揺全壊":61.13885}},{"type":"Feature","id":26164,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.764582999104874],[139.790625,35.764582999104874],[139.790625,35.766666999104864],[139.7875,35.766666999104864],[139.7875,35.764582999104874]]]},"properties":{"MESHCODE":"5339561333","揺全壊":91.54977}},{"type":"Feature","id":26168,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.764582999104874],[139.796875,35.76458299910489],[139.796875,35.766666999104864],[139.79375,35.766666999104864],[139.79375,35.764582999104874]]]},"properties":{"MESHCODE":"5339561343","揺全壊":60.26137}},{"type":"Feature","id":26181,"geometry":{"type":"Polygon","coordinates":[[[139.803125,35.76458299910489],[139.80625,35.76458299910489],[139.80625,35.766666999104864],[139.803125,35.766666999104864],[139.803125,35.76458299910489]]]},"properties":{"MESHCODE":"5339561434","揺全壊":61.14778}},{"type":"Feature","id":26309,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.7729169991048],[139.78125,35.77291699910479],[139.78125,35.77499999910478],[139.778125,35.77499999910478],[139.778125,35.7729169991048]]]},"properties":{"MESHCODE":"5339562234","揺全壊":64.05965}},{"type":"Feature","id":26478,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.77499999910478],[139.796875,35.77499999910478],[139.796875,35.777082999104756],[139.79375,35.777082999104756],[139.79375,35.77499999910478]]]},"properties":{"MESHCODE":"5339563321","揺全壊":77.07426}}]}
\ No newline at end of file
diff --git a/app/src/layers/data/particles/tama-destroyed_particles_2.json b/app/src/layers/data/particles/tama-destroyed_particles_2.json
new file mode 100644
index 0000000..1d3c881
--- /dev/null
+++ b/app/src/layers/data/particles/tama-destroyed_particles_2.json
@@ -0,0 +1 @@
+{"type":"FeatureCollection","features":[{"type":"Feature","id":772,"geometry":{"type":"Polygon","coordinates":[[[139.46875,35.52291699910743],[139.471875,35.52291699910743],[139.471875,35.5249999991074],[139.46875,35.5249999991074],[139.46875,35.52291699910743]]]},"properties":{"MESHCODE":"5339232743","揺全壊":18.8341}},{"type":"Feature","id":794,"geometry":{"type":"Polygon","coordinates":[[[139.459375,35.52708299910737],[139.4625,35.527082999107385],[139.4625,35.52916699910736],[139.459375,35.52916699910736],[139.459375,35.52708299910737]]]},"properties":{"MESHCODE":"5339233624","揺全壊":24.39604}},{"type":"Feature","id":806,"geometry":{"type":"Polygon","coordinates":[[[139.46875,35.5249999991074],[139.471875,35.5249999991074],[139.471875,35.52708299910737],[139.46875,35.52708299910737],[139.46875,35.5249999991074]]]},"properties":{"MESHCODE":"5339233721","揺全壊":23.99962}},{"type":"Feature","id":811,"geometry":{"type":"Polygon","coordinates":[[[139.465625,35.52916699910736],[139.46875,35.52916699910736],[139.46875,35.531249999107345],[139.465625,35.531249999107345],[139.465625,35.52916699910736]]]},"properties":{"MESHCODE":"5339233732","揺全壊":18.01102}},{"type":"Feature","id":1457,"geometry":{"type":"Polygon","coordinates":[[[139.703125,35.556249999107074],[139.70625,35.55624999910706],[139.70625,35.558332999107044],[139.703125,35.558332999107044],[139.703125,35.556249999107074]]]},"properties":{"MESHCODE":"5339256634","揺全壊":18.443}},{"type":"Feature","id":1464,"geometry":{"type":"Polygon","coordinates":[[[139.7125,35.55208299910712],[139.715625,35.552082999107114],[139.715625,35.55416699910708],[139.7125,35.554166999107096],[139.7125,35.55208299910712]]]},"properties":{"MESHCODE":"5339256713","揺全壊":17.00813}},{"type":"Feature","id":1466,"geometry":{"type":"Polygon","coordinates":[[[139.71875,35.54999999910713],[139.721875,35.54999999910713],[139.721875,35.55208299910712],[139.71875,35.55208299910712],[139.71875,35.54999999910713]]]},"properties":{"MESHCODE":"5339256721","揺全壊":16.70893}},{"type":"Feature","id":1530,"geometry":{"type":"Polygon","coordinates":[[[139.696875,35.56041699910703],[139.7,35.56041699910703],[139.7,35.56249999910702],[139.696875,35.56249999910702],[139.696875,35.56041699910703]]]},"properties":{"MESHCODE":"5339257524","揺全壊":16.40831}},{"type":"Feature","id":1539,"geometry":{"type":"Polygon","coordinates":[[[139.7,35.55833299910706],[139.703125,35.558332999107044],[139.703125,35.56041699910703],[139.7,35.56041699910703],[139.7,35.55833299910706]]]},"properties":{"MESHCODE":"5339257611","揺全壊":18.90942}},{"type":"Feature","id":1541,"geometry":{"type":"Polygon","coordinates":[[[139.7,35.56041699910703],[139.703125,35.56041699910703],[139.703125,35.56249999910702],[139.7,35.56249999910702],[139.7,35.56041699910703]]]},"properties":{"MESHCODE":"5339257613","揺全壊":18.12145}},{"type":"Feature","id":1545,"geometry":{"type":"Polygon","coordinates":[[[139.70625,35.56041699910703],[139.709375,35.56041699910703],[139.709375,35.56249999910702],[139.70625,35.56249999910702],[139.70625,35.56041699910703]]]},"properties":{"MESHCODE":"5339257623","揺全壊":21.40227}},{"type":"Feature","id":1597,"geometry":{"type":"Polygon","coordinates":[[[139.7375,35.564582999106975],[139.740625,35.564582999106975],[139.740625,35.56666699910696],[139.7375,35.56666699910695],[139.7375,35.564582999106975]]]},"properties":{"MESHCODE":"5339257933","揺全壊":15.50442}},{"type":"Feature","id":1615,"geometry":{"type":"Polygon","coordinates":[[[139.678125,35.57083299910691],[139.68125,35.57083299910691],[139.68125,35.572916999106894],[139.678125,35.572916999106894],[139.678125,35.57083299910691]]]},"properties":{"MESHCODE":"5339258432","揺全壊":15.52069}},{"type":"Feature","id":1638,"geometry":{"type":"Polygon","coordinates":[[[139.7,35.56666699910696],[139.703125,35.56666699910696],[139.703125,35.568749999106934],[139.7,35.568749999106934],[139.7,35.56666699910696]]]},"properties":{"MESHCODE":"5339258611","揺全壊":20.17609}},{"type":"Feature","id":1645,"geometry":{"type":"Polygon","coordinates":[[[139.709375,35.568749999106934],[139.7125,35.56874999910694],[139.7125,35.57083299910691],[139.709375,35.57083299910691],[139.709375,35.568749999106934]]]},"properties":{"MESHCODE":"5339258624","揺全壊":24.17756}},{"type":"Feature","id":1656,"geometry":{"type":"Polygon","coordinates":[[[139.7125,35.56874999910694],[139.715625,35.568749999106934],[139.715625,35.57083299910691],[139.7125,35.57083299910691],[139.7125,35.56874999910694]]]},"properties":{"MESHCODE":"5339258713","揺全壊":15.53272}},{"type":"Feature","id":1663,"geometry":{"type":"Polygon","coordinates":[[[139.715625,35.57083299910691],[139.71875,35.57083299910691],[139.71875,35.572916999106894],[139.715625,35.572916999106894],[139.715625,35.57083299910691]]]},"properties":{"MESHCODE":"5339258732","揺全壊":18.67329}},{"type":"Feature","id":1664,"geometry":{"type":"Polygon","coordinates":[[[139.7125,35.572916999106894],[139.715625,35.572916999106894],[139.715625,35.57499999910687],[139.7125,35.57499999910688],[139.7125,35.572916999106894]]]},"properties":{"MESHCODE":"5339258733","揺全壊":24.16968}},{"type":"Feature","id":1665,"geometry":{"type":"Polygon","coordinates":[[[139.715625,35.572916999106894],[139.71875,35.572916999106894],[139.71875,35.57499999910688],[139.715625,35.57499999910687],[139.715625,35.572916999106894]]]},"properties":{"MESHCODE":"5339258734","揺全壊":16.83881}},{"type":"Feature","id":1710,"geometry":{"type":"Polygon","coordinates":[[[139.675,35.57499999910687],[139.678125,35.57499999910687],[139.678125,35.577082999106864],[139.675,35.577082999106864],[139.675,35.57499999910687]]]},"properties":{"MESHCODE":"5339259411","揺全壊":19.09698}},{"type":"Feature","id":1711,"geometry":{"type":"Polygon","coordinates":[[[139.678125,35.57499999910687],[139.68125,35.57499999910688],[139.68125,35.577082999106864],[139.678125,35.577082999106864],[139.678125,35.57499999910687]]]},"properties":{"MESHCODE":"5339259412","揺全壊":18.36795}},{"type":"Feature","id":1712,"geometry":{"type":"Polygon","coordinates":[[[139.675,35.577082999106864],[139.678125,35.577082999106864],[139.678125,35.57916699910683],[139.675,35.57916699910683],[139.675,35.577082999106864]]]},"properties":{"MESHCODE":"5339259413","揺全壊":17.93638}},{"type":"Feature","id":1741,"geometry":{"type":"Polygon","coordinates":[[[139.696875,35.5812499991068],[139.7,35.5812499991068],[139.7,35.58333299910679],[139.696875,35.58333299910679],[139.696875,35.5812499991068]]]},"properties":{"MESHCODE":"5339259544","揺全壊":17.51333}},{"type":"Feature","id":1742,"geometry":{"type":"Polygon","coordinates":[[[139.7,35.57499999910689],[139.703125,35.57499999910688],[139.703125,35.577082999106864],[139.7,35.577082999106864],[139.7,35.57499999910689]]]},"properties":{"MESHCODE":"5339259611","揺全壊":21.527}},{"type":"Feature","id":1744,"geometry":{"type":"Polygon","coordinates":[[[139.7,35.577082999106864],[139.703125,35.577082999106864],[139.703125,35.57916699910683],[139.7,35.57916699910683],[139.7,35.577082999106864]]]},"properties":{"MESHCODE":"5339259613","揺全壊":22.3819}},{"type":"Feature","id":1759,"geometry":{"type":"Polygon","coordinates":[[[139.715625,35.57499999910687],[139.71875,35.57499999910688],[139.71875,35.577082999106864],[139.715625,35.57708299910685],[139.715625,35.57499999910687]]]},"properties":{"MESHCODE":"5339259712","揺全壊":19.32253}},{"type":"Feature","id":1768,"geometry":{"type":"Polygon","coordinates":[[[139.7125,35.5812499991068],[139.715625,35.581249999106795],[139.715625,35.58333299910678],[139.7125,35.58333299910679],[139.7125,35.5812499991068]]]},"properties":{"MESHCODE":"5339259733","揺全壊":19.04004}},{"type":"Feature","id":3163,"geometry":{"type":"Polygon","coordinates":[[[139.34375,35.63124999910628],[139.346875,35.63124999910628],[139.346875,35.63333299910626],[139.34375,35.633332999106244],[139.34375,35.63124999910628]]]},"properties":{"MESHCODE":"5339325743","揺全壊":16.50978}},{"type":"Feature","id":3168,"geometry":{"type":"Polygon","coordinates":[[[139.353125,35.62708299910633],[139.35625,35.62708299910633],[139.35625,35.62916699910631],[139.353125,35.62916699910631],[139.353125,35.62708299910633]]]},"properties":{"MESHCODE":"5339325814","揺全壊":17.56361}},{"type":"Feature","id":3174,"geometry":{"type":"Polygon","coordinates":[[[139.353125,35.62916699910631],[139.35625,35.62916699910631],[139.35625,35.63124999910628],[139.353125,35.63124999910628],[139.353125,35.62916699910631]]]},"properties":{"MESHCODE":"5339325832","揺全壊":19.45067}},{"type":"Feature","id":3179,"geometry":{"type":"Polygon","coordinates":[[[139.35625,35.63124999910628],[139.359375,35.63124999910628],[139.359375,35.633332999106244],[139.35625,35.633332999106244],[139.35625,35.63124999910628]]]},"properties":{"MESHCODE":"5339325843","揺全壊":18.93635}},{"type":"Feature","id":3313,"geometry":{"type":"Polygon","coordinates":[[[139.34375,35.633332999106244],[139.346875,35.63333299910626],[139.346875,35.63541699910623],[139.34375,35.63541699910623],[139.34375,35.633332999106244]]]},"properties":{"MESHCODE":"5339326721","揺全壊":15.30781}},{"type":"Feature","id":3329,"geometry":{"type":"Polygon","coordinates":[[[139.35625,35.633332999106244],[139.359375,35.633332999106244],[139.359375,35.63541699910623],[139.35625,35.63541699910624],[139.35625,35.633332999106244]]]},"properties":{"MESHCODE":"5339326821","揺全壊":17.62519}},{"type":"Feature","id":5411,"geometry":{"type":"Polygon","coordinates":[[[139.621875,35.620832999106376],[139.625,35.620832999106376],[139.625,35.62291699910637],[139.621875,35.62291699910637],[139.621875,35.620832999106376]]]},"properties":{"MESHCODE":"5339344942","揺全壊":17.50557}},{"type":"Feature","id":5509,"geometry":{"type":"Polygon","coordinates":[[[139.61875,35.62499999910634],[139.621875,35.62499999910634],[139.621875,35.62708299910633],[139.61875,35.62708299910633],[139.61875,35.62499999910634]]]},"properties":{"MESHCODE":"5339345921","揺全壊":23.92514}},{"type":"Feature","id":5622,"geometry":{"type":"Polygon","coordinates":[[[139.596875,35.63541699910623],[139.6,35.63541699910624],[139.6,35.637499999106225],[139.596875,35.637499999106225],[139.596875,35.63541699910623]]]},"properties":{"MESHCODE":"5339346724","揺全壊":19.12167}},{"type":"Feature","id":5628,"geometry":{"type":"Polygon","coordinates":[[[139.596875,35.637499999106225],[139.6,35.637499999106225],[139.6,35.639582999106196],[139.596875,35.639582999106196],[139.596875,35.637499999106225]]]},"properties":{"MESHCODE":"5339346742","揺全壊":16.40895}},{"type":"Feature","id":5629,"geometry":{"type":"Polygon","coordinates":[[[139.59375,35.63958299910618],[139.596875,35.639582999106196],[139.596875,35.64166699910617],[139.59375,35.64166699910617],[139.59375,35.63958299910618]]]},"properties":{"MESHCODE":"5339346743","揺全壊":16.6425}},{"type":"Feature","id":5633,"geometry":{"type":"Polygon","coordinates":[[[139.6,35.63541699910624],[139.603125,35.63541699910623],[139.603125,35.637499999106225],[139.6,35.637499999106225],[139.6,35.63541699910624]]]},"properties":{"MESHCODE":"5339346813","揺全壊":22.82288}},{"type":"Feature","id":5637,"geometry":{"type":"Polygon","coordinates":[[[139.60625,35.63541699910623],[139.609375,35.63541699910623],[139.609375,35.637499999106225],[139.60625,35.637499999106225],[139.60625,35.63541699910623]]]},"properties":{"MESHCODE":"5339346823","揺全壊":22.54538}},{"type":"Feature","id":5638,"geometry":{"type":"Polygon","coordinates":[[[139.609375,35.63541699910623],[139.6125,35.63541699910623],[139.6125,35.63749999910623],[139.609375,35.637499999106225],[139.609375,35.63541699910623]]]},"properties":{"MESHCODE":"5339346824","揺全壊":19.72805}},{"type":"Feature","id":5639,"geometry":{"type":"Polygon","coordinates":[[[139.6,35.637499999106225],[139.603125,35.637499999106225],[139.603125,35.639582999106196],[139.6,35.639582999106196],[139.6,35.637499999106225]]]},"properties":{"MESHCODE":"5339346831","揺全壊":21.65428}},{"type":"Feature","id":5643,"geometry":{"type":"Polygon","coordinates":[[[139.60625,35.637499999106225],[139.609375,35.637499999106225],[139.609375,35.639582999106196],[139.60625,35.639582999106196],[139.60625,35.637499999106225]]]},"properties":{"MESHCODE":"5339346841","揺全壊":22.08718}},{"type":"Feature","id":5644,"geometry":{"type":"Polygon","coordinates":[[[139.609375,35.637499999106225],[139.6125,35.63749999910623],[139.6125,35.639582999106196],[139.609375,35.639582999106196],[139.609375,35.637499999106225]]]},"properties":{"MESHCODE":"5339346842","揺全壊":21.87128}},{"type":"Feature","id":5645,"geometry":{"type":"Polygon","coordinates":[[[139.60625,35.639582999106196],[139.609375,35.639582999106196],[139.609375,35.64166699910617],[139.60625,35.64166699910617],[139.60625,35.639582999106196]]]},"properties":{"MESHCODE":"5339346843","揺全壊":22.10371}},{"type":"Feature","id":5654,"geometry":{"type":"Polygon","coordinates":[[[139.621875,35.63541699910623],[139.625,35.63541699910623],[139.625,35.637499999106225],[139.621875,35.637499999106225],[139.621875,35.63541699910623]]]},"properties":{"MESHCODE":"5339346924","揺全壊":15.24988}},{"type":"Feature","id":5655,"geometry":{"type":"Polygon","coordinates":[[[139.6125,35.63749999910623],[139.615625,35.637499999106225],[139.615625,35.639582999106196],[139.6125,35.639582999106196],[139.6125,35.63749999910623]]]},"properties":{"MESHCODE":"5339346931","揺全壊":16.85523}},{"type":"Feature","id":5658,"geometry":{"type":"Polygon","coordinates":[[[139.615625,35.639582999106196],[139.61875,35.639582999106196],[139.61875,35.64166699910617],[139.615625,35.64166699910617],[139.615625,35.639582999106196]]]},"properties":{"MESHCODE":"5339346934","揺全壊":23.34452}},{"type":"Feature","id":5659,"geometry":{"type":"Polygon","coordinates":[[[139.61875,35.637499999106225],[139.621875,35.637499999106225],[139.621875,35.639582999106196],[139.61875,35.639582999106196],[139.61875,35.637499999106225]]]},"properties":{"MESHCODE":"5339346941","揺全壊":20.65985}},{"type":"Feature","id":5662,"geometry":{"type":"Polygon","coordinates":[[[139.621875,35.639582999106196],[139.625,35.639582999106196],[139.625,35.64166699910617],[139.621875,35.64166699910617],[139.621875,35.639582999106196]]]},"properties":{"MESHCODE":"5339346944","揺全壊":21.36791}},{"type":"Feature","id":5776,"geometry":{"type":"Polygon","coordinates":[[[139.590625,35.64166699910617],[139.59375,35.64166699910617],[139.59375,35.64374999910615],[139.590625,35.64374999910615],[139.590625,35.64166699910617]]]},"properties":{"MESHCODE":"5339347712","揺全壊":20.72565}},{"type":"Feature","id":5779,"geometry":{"type":"Polygon","coordinates":[[[139.59375,35.64166699910617],[139.596875,35.64166699910617],[139.596875,35.64374999910615],[139.59375,35.64374999910615],[139.59375,35.64166699910617]]]},"properties":{"MESHCODE":"5339347721","揺全壊":18.99848}},{"type":"Feature","id":5798,"geometry":{"type":"Polygon","coordinates":[[[139.609375,35.64374999910615],[139.6125,35.64374999910615],[139.6125,35.645832999106126],[139.609375,35.645832999106126],[139.609375,35.64374999910615]]]},"properties":{"MESHCODE":"5339347824","揺全壊":19.67851}},{"type":"Feature","id":5800,"geometry":{"type":"Polygon","coordinates":[[[139.603125,35.645832999106126],[139.60625,35.645832999106126],[139.60625,35.64791699910609],[139.603125,35.64791699910609],[139.603125,35.645832999106126]]]},"properties":{"MESHCODE":"5339347832","揺全壊":16.09725}},{"type":"Feature","id":5801,"geometry":{"type":"Polygon","coordinates":[[[139.6,35.64791699910611],[139.603125,35.64791699910609],[139.603125,35.64999999910607],[139.6,35.64999999910607],[139.6,35.64791699910611]]]},"properties":{"MESHCODE":"5339347833","揺全壊":16.71894}},{"type":"Feature","id":5811,"geometry":{"type":"Polygon","coordinates":[[[139.61875,35.64166699910617],[139.621875,35.64166699910617],[139.621875,35.64374999910615],[139.61875,35.64374999910615],[139.61875,35.64166699910617]]]},"properties":{"MESHCODE":"5339347921","揺全壊":18.54701}},{"type":"Feature","id":5812,"geometry":{"type":"Polygon","coordinates":[[[139.621875,35.64166699910617],[139.625,35.64166699910617],[139.625,35.64374999910615],[139.621875,35.64374999910615],[139.621875,35.64166699910617]]]},"properties":{"MESHCODE":"5339347922","揺全壊":15.25013}},{"type":"Feature","id":6185,"geometry":{"type":"Polygon","coordinates":[[[139.696875,35.585416999106755],[139.7,35.585416999106755],[139.7,35.58749999910675],[139.696875,35.587499999106726],[139.696875,35.585416999106755]]]},"properties":{"MESHCODE":"5339350524","揺全壊":22.50109}},{"type":"Feature","id":6187,"geometry":{"type":"Polygon","coordinates":[[[139.690625,35.587499999106726],[139.69375,35.587499999106726],[139.69375,35.58958299910671],[139.690625,35.58958299910671],[139.690625,35.587499999106726]]]},"properties":{"MESHCODE":"5339350532","揺全壊":21.14179}},{"type":"Feature","id":6188,"geometry":{"type":"Polygon","coordinates":[[[139.6875,35.58958299910671],[139.690625,35.58958299910671],[139.690625,35.5916669991067],[139.6875,35.5916669991067],[139.6875,35.58958299910671]]]},"properties":{"MESHCODE":"5339350533","揺全壊":23.32193}},{"type":"Feature","id":6190,"geometry":{"type":"Polygon","coordinates":[[[139.69375,35.587499999106726],[139.696875,35.587499999106726],[139.696875,35.58958299910671],[139.69375,35.58958299910671],[139.69375,35.587499999106726]]]},"properties":{"MESHCODE":"5339350541","揺全壊":16.75428}},{"type":"Feature","id":6193,"geometry":{"type":"Polygon","coordinates":[[[139.696875,35.58958299910671],[139.7,35.58958299910671],[139.7,35.5916669991067],[139.696875,35.5916669991067],[139.696875,35.58958299910671]]]},"properties":{"MESHCODE":"5339350544","揺全壊":16.59446}},{"type":"Feature","id":6199,"geometry":{"type":"Polygon","coordinates":[[[139.709375,35.58333299910679],[139.7125,35.58333299910679],[139.7125,35.585416999106755],[139.709375,35.585416999106755],[139.709375,35.58333299910679]]]},"properties":{"MESHCODE":"5339350622","揺全壊":15.92842}},{"type":"Feature","id":6210,"geometry":{"type":"Polygon","coordinates":[[[139.7125,35.58333299910679],[139.715625,35.58333299910678],[139.715625,35.585416999106755],[139.7125,35.585416999106755],[139.7125,35.58333299910679]]]},"properties":{"MESHCODE":"5339350711","揺全壊":20.00394}},{"type":"Feature","id":6216,"geometry":{"type":"Polygon","coordinates":[[[139.71875,35.58541699910676],[139.721875,35.58541699910676],[139.721875,35.587499999106726],[139.71875,35.58749999910675],[139.71875,35.58541699910676]]]},"properties":{"MESHCODE":"5339350723","揺全壊":17.13161}},{"type":"Feature","id":6221,"geometry":{"type":"Polygon","coordinates":[[[139.715625,35.58958299910671],[139.71875,35.58958299910671],[139.71875,35.5916669991067],[139.715625,35.5916669991067],[139.715625,35.58958299910671]]]},"properties":{"MESHCODE":"5339350734","揺全壊":16.67509}},{"type":"Feature","id":6224,"geometry":{"type":"Polygon","coordinates":[[[139.71875,35.58958299910671],[139.721875,35.589582999106725],[139.721875,35.5916669991067],[139.71875,35.5916669991067],[139.71875,35.58958299910671]]]},"properties":{"MESHCODE":"5339350743","揺全壊":15.22768}},{"type":"Feature","id":6225,"geometry":{"type":"Polygon","coordinates":[[[139.721875,35.589582999106725],[139.725,35.58958299910671],[139.725,35.5916669991067],[139.721875,35.5916669991067],[139.721875,35.589582999106725]]]},"properties":{"MESHCODE":"5339350744","揺全壊":19.36976}},{"type":"Feature","id":6288,"geometry":{"type":"Polygon","coordinates":[[[139.671875,35.5916669991067],[139.675,35.591666999106685],[139.675,35.59374999910667],[139.671875,35.59374999910667],[139.671875,35.5916669991067]]]},"properties":{"MESHCODE":"5339351322","揺全壊":16.82471}},{"type":"Feature","id":6320,"geometry":{"type":"Polygon","coordinates":[[[139.696875,35.5916669991067],[139.7,35.5916669991067],[139.7,35.59374999910667],[139.696875,35.59374999910667],[139.696875,35.5916669991067]]]},"properties":{"MESHCODE":"5339351522","揺全壊":23.54553}},{"type":"Feature","id":6327,"geometry":{"type":"Polygon","coordinates":[[[139.69375,35.59583299910665],[139.696875,35.59583299910665],[139.696875,35.59791699910664],[139.69375,35.59791699910664],[139.69375,35.59583299910665]]]},"properties":{"MESHCODE":"5339351541","揺全壊":18.0521}},{"type":"Feature","id":6331,"geometry":{"type":"Polygon","coordinates":[[[139.7,35.5916669991067],[139.703125,35.5916669991067],[139.703125,35.59374999910667],[139.7,35.59374999910667],[139.7,35.5916669991067]]]},"properties":{"MESHCODE":"5339351611","揺全壊":15.59345}},{"type":"Feature","id":6350,"geometry":{"type":"Polygon","coordinates":[[[139.715625,35.59374999910666],[139.71875,35.59374999910667],[139.71875,35.59583299910665],[139.715625,35.59583299910664],[139.715625,35.59374999910666]]]},"properties":{"MESHCODE":"5339351714","揺全壊":24.5723}},{"type":"Feature","id":6354,"geometry":{"type":"Polygon","coordinates":[[[139.721875,35.59374999910667],[139.725,35.59374999910667],[139.725,35.59583299910665],[139.721875,35.59583299910665],[139.721875,35.59374999910667]]]},"properties":{"MESHCODE":"5339351724","揺全壊":18.06105}},{"type":"Feature","id":6355,"geometry":{"type":"Polygon","coordinates":[[[139.7125,35.59583299910665],[139.715625,35.59583299910664],[139.715625,35.59791699910662],[139.7125,35.59791699910664],[139.7125,35.59583299910665]]]},"properties":{"MESHCODE":"5339351731","揺全壊":15.25207}},{"type":"Feature","id":6360,"geometry":{"type":"Polygon","coordinates":[[[139.721875,35.59583299910665],[139.725,35.59583299910665],[139.725,35.59791699910664],[139.721875,35.59791699910664],[139.721875,35.59583299910665]]]},"properties":{"MESHCODE":"5339351742","揺全壊":23.83357}},{"type":"Feature","id":6371,"geometry":{"type":"Polygon","coordinates":[[[139.725,35.59583299910665],[139.728125,35.59583299910665],[139.728125,35.59791699910664],[139.725,35.59791699910664],[139.725,35.59583299910665]]]},"properties":{"MESHCODE":"5339351831","揺全壊":22.89276}},{"type":"Feature","id":6372,"geometry":{"type":"Polygon","coordinates":[[[139.728125,35.59583299910665],[139.73125,35.59583299910665],[139.73125,35.59791699910664],[139.728125,35.59791699910664],[139.728125,35.59583299910665]]]},"properties":{"MESHCODE":"5339351832","揺全壊":19.20476}},{"type":"Feature","id":6432,"geometry":{"type":"Polygon","coordinates":[[[139.65625,35.60624999910655],[139.659375,35.606249999106545],[139.659375,35.60833299910652],[139.65625,35.608332999106516],[139.65625,35.60624999910655]]]},"properties":{"MESHCODE":"5339352243","揺全壊":16.99502}},{"type":"Feature","id":6436,"geometry":{"type":"Polygon","coordinates":[[[139.6625,35.60208299910657],[139.665625,35.60208299910657],[139.665625,35.60416699910657],[139.6625,35.60416699910657],[139.6625,35.60208299910657]]]},"properties":{"MESHCODE":"5339352313","揺全壊":15.24903}},{"type":"Feature","id":6442,"geometry":{"type":"Polygon","coordinates":[[[139.6625,35.60416699910657],[139.665625,35.60416699910657],[139.665625,35.606249999106545],[139.6625,35.60624999910655],[139.6625,35.60416699910657]]]},"properties":{"MESHCODE":"5339352331","揺全壊":16.7762}},{"type":"Feature","id":6444,"geometry":{"type":"Polygon","coordinates":[[[139.6625,35.60624999910655],[139.665625,35.606249999106545],[139.665625,35.60833299910652],[139.6625,35.60833299910652],[139.6625,35.60624999910655]]]},"properties":{"MESHCODE":"5339352333","揺全壊":20.08791}},{"type":"Feature","id":6497,"geometry":{"type":"Polygon","coordinates":[[[139.709375,35.606249999106545],[139.7125,35.606249999106545],[139.7125,35.60833299910652],[139.709375,35.60833299910652],[139.709375,35.606249999106545]]]},"properties":{"MESHCODE":"5339352644","揺全壊":21.69754}},{"type":"Feature","id":6502,"geometry":{"type":"Polygon","coordinates":[[[139.71875,35.59999999910661],[139.721875,35.59999999910662],[139.721875,35.60208299910657],[139.71875,35.60208299910657],[139.71875,35.59999999910661]]]},"properties":{"MESHCODE":"5339352721","揺全壊":21.54877}},{"type":"Feature","id":6503,"geometry":{"type":"Polygon","coordinates":[[[139.721875,35.59999999910662],[139.725,35.59999999910661],[139.725,35.602082999106585],[139.721875,35.60208299910657],[139.721875,35.59999999910662]]]},"properties":{"MESHCODE":"5339352722","揺全壊":16.01451}},{"type":"Feature","id":6515,"geometry":{"type":"Polygon","coordinates":[[[139.728125,35.59999999910661],[139.73125,35.59999999910661],[139.73125,35.602082999106585],[139.728125,35.60208299910657],[139.728125,35.59999999910661]]]},"properties":{"MESHCODE":"5339352812","揺全壊":20.0716}},{"type":"Feature","id":6520,"geometry":{"type":"Polygon","coordinates":[[[139.73125,35.602082999106585],[139.734375,35.602082999106585],[139.734375,35.60416699910658],[139.73125,35.60416699910657],[139.73125,35.602082999106585]]]},"properties":{"MESHCODE":"5339352823","揺全壊":21.52664}},{"type":"Feature","id":6521,"geometry":{"type":"Polygon","coordinates":[[[139.734375,35.602082999106585],[139.7375,35.60208299910657],[139.7375,35.60416699910657],[139.734375,35.60416699910658],[139.734375,35.602082999106585]]]},"properties":{"MESHCODE":"5339352824","揺全壊":20.82953}},{"type":"Feature","id":6559,"geometry":{"type":"Polygon","coordinates":[[[139.634375,35.612499999106454],[139.6375,35.612499999106454],[139.6375,35.61458299910646],[139.634375,35.61458299910646],[139.634375,35.612499999106454]]]},"properties":{"MESHCODE":"5339353042","揺全壊":19.54589}},{"type":"Feature","id":6562,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.60833299910652],[139.640625,35.60833299910652],[139.640625,35.6104169991065],[139.6375,35.610416999106484],[139.6375,35.60833299910652]]]},"properties":{"MESHCODE":"5339353111","揺全壊":19.86944}},{"type":"Feature","id":6564,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.610416999106484],[139.640625,35.6104169991065],[139.640625,35.61249999910647],[139.6375,35.612499999106454],[139.6375,35.610416999106484]]]},"properties":{"MESHCODE":"5339353113","揺全壊":21.94659}},{"type":"Feature","id":6570,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.612499999106454],[139.640625,35.61249999910647],[139.640625,35.61458299910646],[139.6375,35.61458299910646],[139.6375,35.612499999106454]]]},"properties":{"MESHCODE":"5339353131","揺全壊":24.77364}},{"type":"Feature","id":6572,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.61458299910646],[139.640625,35.61458299910646],[139.640625,35.61666699910644],[139.6375,35.616666999106435],[139.6375,35.61458299910646]]]},"properties":{"MESHCODE":"5339353133","揺全壊":18.99183}},{"type":"Feature","id":6598,"geometry":{"type":"Polygon","coordinates":[[[139.66875,35.60833299910652],[139.671875,35.60833299910652],[139.671875,35.610416999106484],[139.66875,35.610416999106484],[139.66875,35.60833299910652]]]},"properties":{"MESHCODE":"5339353321","揺全壊":18.74134}},{"type":"Feature","id":6638,"geometry":{"type":"Polygon","coordinates":[[[139.69375,35.612499999106454],[139.696875,35.61249999910647],[139.696875,35.61458299910646],[139.69375,35.61458299910646],[139.69375,35.612499999106454]]]},"properties":{"MESHCODE":"5339353541","揺全壊":22.08173}},{"type":"Feature","id":6647,"geometry":{"type":"Polygon","coordinates":[[[139.709375,35.60833299910652],[139.7125,35.60833299910652],[139.7125,35.610416999106484],[139.709375,35.610416999106484],[139.709375,35.60833299910652]]]},"properties":{"MESHCODE":"5339353622","揺全壊":19.48587}},{"type":"Feature","id":6649,"geometry":{"type":"Polygon","coordinates":[[[139.709375,35.610416999106484],[139.7125,35.610416999106484],[139.7125,35.61249999910647],[139.709375,35.612499999106454],[139.709375,35.610416999106484]]]},"properties":{"MESHCODE":"5339353624","揺全壊":19.73887}},{"type":"Feature","id":6650,"geometry":{"type":"Polygon","coordinates":[[[139.7,35.61249999910647],[139.703125,35.612499999106454],[139.703125,35.61458299910646],[139.7,35.61458299910646],[139.7,35.61249999910647]]]},"properties":{"MESHCODE":"5339353631","揺全壊":20.25569}},{"type":"Feature","id":6660,"geometry":{"type":"Polygon","coordinates":[[[139.7125,35.610416999106484],[139.715625,35.610416999106484],[139.715625,35.612499999106454],[139.7125,35.61249999910647],[139.7125,35.610416999106484]]]},"properties":{"MESHCODE":"5339353713","揺全壊":16.00406}},{"type":"Feature","id":6661,"geometry":{"type":"Polygon","coordinates":[[[139.715625,35.610416999106484],[139.71875,35.610416999106484],[139.71875,35.612499999106454],[139.715625,35.612499999106454],[139.715625,35.610416999106484]]]},"properties":{"MESHCODE":"5339353714","揺全壊":23.0934}},{"type":"Feature","id":6709,"geometry":{"type":"Polygon","coordinates":[[[139.628125,35.6187499991064],[139.63125,35.6187499991064],[139.63125,35.620832999106376],[139.628125,35.620832999106376],[139.628125,35.6187499991064]]]},"properties":{"MESHCODE":"5339354014","揺全壊":18.59665}},{"type":"Feature","id":6710,"geometry":{"type":"Polygon","coordinates":[[[139.63125,35.616666999106435],[139.634375,35.616666999106435],[139.634375,35.6187499991064],[139.63125,35.6187499991064],[139.63125,35.616666999106435]]]},"properties":{"MESHCODE":"5339354021","揺全壊":17.76579}},{"type":"Feature","id":6717,"geometry":{"type":"Polygon","coordinates":[[[139.628125,35.62291699910637],[139.63125,35.62291699910637],[139.63125,35.62499999910634],[139.628125,35.62499999910634],[139.628125,35.62291699910637]]]},"properties":{"MESHCODE":"5339354034","揺全壊":23.53624}},{"type":"Feature","id":6722,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.616666999106435],[139.640625,35.61666699910644],[139.640625,35.618749999106406],[139.6375,35.6187499991064],[139.6375,35.616666999106435]]]},"properties":{"MESHCODE":"5339354111","揺全壊":22.38685}},{"type":"Feature","id":6723,"geometry":{"type":"Polygon","coordinates":[[[139.640625,35.61666699910644],[139.64375,35.616666999106435],[139.64375,35.6187499991064],[139.640625,35.618749999106406],[139.640625,35.61666699910644]]]},"properties":{"MESHCODE":"5339354112","揺全壊":19.45104}},{"type":"Feature","id":6724,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.6187499991064],[139.640625,35.618749999106406],[139.640625,35.620832999106376],[139.6375,35.620832999106376],[139.6375,35.6187499991064]]]},"properties":{"MESHCODE":"5339354113","揺全壊":22.39223}},{"type":"Feature","id":6725,"geometry":{"type":"Polygon","coordinates":[[[139.640625,35.618749999106406],[139.64375,35.6187499991064],[139.64375,35.620832999106376],[139.640625,35.620832999106376],[139.640625,35.618749999106406]]]},"properties":{"MESHCODE":"5339354114","揺全壊":19.16604}},{"type":"Feature","id":6791,"geometry":{"type":"Polygon","coordinates":[[[139.696875,35.616666999106435],[139.7,35.61666699910644],[139.7,35.6187499991064],[139.696875,35.6187499991064],[139.696875,35.616666999106435]]]},"properties":{"MESHCODE":"5339354522","揺全壊":20.09224}},{"type":"Feature","id":6797,"geometry":{"type":"Polygon","coordinates":[[[139.690625,35.62291699910637],[139.69375,35.62291699910637],[139.69375,35.62499999910634],[139.690625,35.62499999910634],[139.690625,35.62291699910637]]]},"properties":{"MESHCODE":"5339354534","揺全壊":15.72195}},{"type":"Feature","id":6867,"geometry":{"type":"Polygon","coordinates":[[[139.628125,35.62499999910634],[139.63125,35.62499999910634],[139.63125,35.62708299910633],[139.628125,35.62708299910633],[139.628125,35.62499999910634]]]},"properties":{"MESHCODE":"5339355012","揺全壊":21.91945}},{"type":"Feature","id":6869,"geometry":{"type":"Polygon","coordinates":[[[139.628125,35.62708299910633],[139.63125,35.62708299910633],[139.63125,35.62916699910631],[139.628125,35.62916699910631],[139.628125,35.62708299910633]]]},"properties":{"MESHCODE":"5339355014","揺全壊":24.26414}},{"type":"Feature","id":6871,"geometry":{"type":"Polygon","coordinates":[[[139.634375,35.62499999910634],[139.6375,35.62499999910634],[139.6375,35.62708299910633],[139.634375,35.62708299910633],[139.634375,35.62499999910634]]]},"properties":{"MESHCODE":"5339355022","揺全壊":16.16904}},{"type":"Feature","id":6872,"geometry":{"type":"Polygon","coordinates":[[[139.63125,35.62708299910633],[139.634375,35.62708299910633],[139.634375,35.62916699910631],[139.63125,35.62916699910631],[139.63125,35.62708299910633]]]},"properties":{"MESHCODE":"5339355023","揺全壊":21.98505}},{"type":"Feature","id":6875,"geometry":{"type":"Polygon","coordinates":[[[139.628125,35.62916699910631],[139.63125,35.62916699910631],[139.63125,35.63124999910628],[139.628125,35.63124999910628],[139.628125,35.62916699910631]]]},"properties":{"MESHCODE":"5339355032","揺全壊":24.64395}},{"type":"Feature","id":6876,"geometry":{"type":"Polygon","coordinates":[[[139.625,35.63124999910628],[139.628125,35.63124999910628],[139.628125,35.633332999106244],[139.625,35.633332999106244],[139.625,35.63124999910628]]]},"properties":{"MESHCODE":"5339355033","揺全壊":24.00032}},{"type":"Feature","id":6878,"geometry":{"type":"Polygon","coordinates":[[[139.63125,35.62916699910631],[139.634375,35.62916699910631],[139.634375,35.63124999910628],[139.63125,35.63124999910628],[139.63125,35.62916699910631]]]},"properties":{"MESHCODE":"5339355041","揺全壊":19.19191}},{"type":"Feature","id":6879,"geometry":{"type":"Polygon","coordinates":[[[139.634375,35.62916699910631],[139.6375,35.62916699910631],[139.6375,35.63124999910628],[139.634375,35.63124999910628],[139.634375,35.62916699910631]]]},"properties":{"MESHCODE":"5339355042","揺全壊":17.48962}},{"type":"Feature","id":6880,"geometry":{"type":"Polygon","coordinates":[[[139.63125,35.63124999910628],[139.634375,35.63124999910628],[139.634375,35.633332999106244],[139.63125,35.633332999106244],[139.63125,35.63124999910628]]]},"properties":{"MESHCODE":"5339355043","揺全壊":18.81591}},{"type":"Feature","id":6943,"geometry":{"type":"Polygon","coordinates":[[[139.684375,35.6291669991063],[139.6875,35.62916699910631],[139.6875,35.63124999910628],[139.684375,35.63124999910628],[139.684375,35.6291669991063]]]},"properties":{"MESHCODE":"5339355442","揺全壊":21.68489}},{"type":"Feature","id":6944,"geometry":{"type":"Polygon","coordinates":[[[139.68125,35.63124999910628],[139.684375,35.63124999910628],[139.684375,35.633332999106244],[139.68125,35.633332999106244],[139.68125,35.63124999910628]]]},"properties":{"MESHCODE":"5339355443","揺全壊":16.53114}},{"type":"Feature","id":6945,"geometry":{"type":"Polygon","coordinates":[[[139.684375,35.63124999910628],[139.6875,35.63124999910628],[139.6875,35.633332999106244],[139.684375,35.633332999106244],[139.684375,35.63124999910628]]]},"properties":{"MESHCODE":"5339355444","揺全壊":19.39043}},{"type":"Feature","id":6948,"geometry":{"type":"Polygon","coordinates":[[[139.6875,35.62708299910633],[139.690625,35.62708299910633],[139.690625,35.62916699910631],[139.6875,35.62916699910631],[139.6875,35.62708299910633]]]},"properties":{"MESHCODE":"5339355513","揺全壊":17.21937}},{"type":"Feature","id":6960,"geometry":{"type":"Polygon","coordinates":[[[139.69375,35.63124999910628],[139.696875,35.63124999910629],[139.696875,35.633332999106244],[139.69375,35.633332999106244],[139.69375,35.63124999910628]]]},"properties":{"MESHCODE":"5339355543","揺全壊":18.71162}},{"type":"Feature","id":7026,"geometry":{"type":"Polygon","coordinates":[[[139.625,35.633332999106244],[139.628125,35.633332999106244],[139.628125,35.63541699910623],[139.625,35.63541699910623],[139.625,35.633332999106244]]]},"properties":{"MESHCODE":"5339356011","揺全壊":23.85961}},{"type":"Feature","id":7027,"geometry":{"type":"Polygon","coordinates":[[[139.628125,35.633332999106244],[139.63125,35.633332999106244],[139.63125,35.63541699910623],[139.628125,35.63541699910623],[139.628125,35.633332999106244]]]},"properties":{"MESHCODE":"5339356012","揺全壊":16.94523}},{"type":"Feature","id":7036,"geometry":{"type":"Polygon","coordinates":[[[139.625,35.639582999106196],[139.628125,35.639582999106196],[139.628125,35.64166699910617],[139.625,35.64166699910617],[139.625,35.639582999106196]]]},"properties":{"MESHCODE":"5339356033","揺全壊":21.56962}},{"type":"Feature","id":7037,"geometry":{"type":"Polygon","coordinates":[[[139.628125,35.639582999106196],[139.63125,35.63958299910618],[139.63125,35.64166699910617],[139.628125,35.64166699910617],[139.628125,35.639582999106196]]]},"properties":{"MESHCODE":"5339356034","揺全壊":15.54772}},{"type":"Feature","id":7057,"geometry":{"type":"Polygon","coordinates":[[[139.646875,35.639582999106196],[139.65,35.63958299910618],[139.65,35.64166699910617],[139.646875,35.64166699910616],[139.646875,35.639582999106196]]]},"properties":{"MESHCODE":"5339356144","揺全壊":15.77104}},{"type":"Feature","id":7064,"geometry":{"type":"Polygon","coordinates":[[[139.65625,35.63541699910623],[139.659375,35.63541699910623],[139.659375,35.637499999106225],[139.65625,35.637499999106225],[139.65625,35.63541699910623]]]},"properties":{"MESHCODE":"5339356223","揺全壊":18.46472}},{"type":"Feature","id":7084,"geometry":{"type":"Polygon","coordinates":[[[139.6625,35.639582999106196],[139.665625,35.639582999106196],[139.665625,35.64166699910617],[139.6625,35.64166699910617],[139.6625,35.639582999106196]]]},"properties":{"MESHCODE":"5339356333","揺全壊":20.04725}},{"type":"Feature","id":7094,"geometry":{"type":"Polygon","coordinates":[[[139.68125,35.633332999106244],[139.684375,35.633332999106244],[139.684375,35.63541699910623],[139.68125,35.63541699910623],[139.68125,35.633332999106244]]]},"properties":{"MESHCODE":"5339356421","揺全壊":22.55083}},{"type":"Feature","id":7202,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.64166699910617],[139.640625,35.64166699910617],[139.640625,35.64374999910615],[139.6375,35.64374999910615],[139.6375,35.64166699910617]]]},"properties":{"MESHCODE":"5339357111","揺全壊":15.75957}},{"type":"Feature","id":7209,"geometry":{"type":"Polygon","coordinates":[[[139.646875,35.643749999106134],[139.65,35.64374999910615],[139.65,35.64583299910614],[139.646875,35.645832999106126],[139.646875,35.643749999106134]]]},"properties":{"MESHCODE":"5339357124","揺全壊":18.85426}},{"type":"Feature","id":7210,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.645832999106126],[139.640625,35.64583299910614],[139.640625,35.64791699910611],[139.6375,35.64791699910609],[139.6375,35.645832999106126]]]},"properties":{"MESHCODE":"5339357131","揺全壊":15.10616}},{"type":"Feature","id":7212,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.64791699910609],[139.640625,35.64791699910611],[139.640625,35.64999999910607],[139.6375,35.64999999910607],[139.6375,35.64791699910609]]]},"properties":{"MESHCODE":"5339357133","揺全壊":18.02961}},{"type":"Feature","id":7214,"geometry":{"type":"Polygon","coordinates":[[[139.64375,35.645832999106126],[139.646875,35.645832999106126],[139.646875,35.64791699910609],[139.64375,35.64791699910609],[139.64375,35.645832999106126]]]},"properties":{"MESHCODE":"5339357141","揺全壊":15.59403}},{"type":"Feature","id":7230,"geometry":{"type":"Polygon","coordinates":[[[139.65625,35.645832999106126],[139.659375,35.645832999106126],[139.659375,35.64791699910609],[139.65625,35.64791699910609],[139.65625,35.645832999106126]]]},"properties":{"MESHCODE":"5339357241","揺全壊":20.00794}},{"type":"Feature","id":7231,"geometry":{"type":"Polygon","coordinates":[[[139.659375,35.645832999106126],[139.6625,35.645832999106126],[139.6625,35.64791699910609],[139.659375,35.64791699910609],[139.659375,35.645832999106126]]]},"properties":{"MESHCODE":"5339357242","揺全壊":17.78963}},{"type":"Feature","id":7375,"geometry":{"type":"Polygon","coordinates":[[[139.646875,35.65416699910603],[139.65,35.65416699910603],[139.65,35.65624999910601],[139.646875,35.65624999910601],[139.646875,35.65416699910603]]]},"properties":{"MESHCODE":"5339358142","揺全壊":17.92004}},{"type":"Feature","id":7530,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.662499999105954],[139.640625,35.66249999910595],[139.640625,35.664582999105924],[139.6375,35.664582999105924],[139.6375,35.662499999105954]]]},"properties":{"MESHCODE":"5339359131","揺全壊":18.86496}},{"type":"Feature","id":12836,"geometry":{"type":"Polygon","coordinates":[[[139.390625,35.672916999105844],[139.39375,35.672916999105844],[139.39375,35.674999999105815],[139.390625,35.674999999105815],[139.390625,35.672916999105844]]]},"properties":{"MESHCODE":"5339430134","揺全壊":23.47232}},{"type":"Feature","id":12974,"geometry":{"type":"Polygon","coordinates":[[[139.384375,35.674999999105815],[139.3875,35.674999999105815],[139.3875,35.6770829991058],[139.384375,35.67708299910581],[139.384375,35.674999999105815]]]},"properties":{"MESHCODE":"5339431022","揺全壊":17.71341}},{"type":"Feature","id":12986,"geometry":{"type":"Polygon","coordinates":[[[139.390625,35.674999999105815],[139.39375,35.674999999105815],[139.39375,35.67708299910581],[139.390625,35.67708299910581],[139.390625,35.674999999105815]]]},"properties":{"MESHCODE":"5339431112","揺全壊":18.51594}},{"type":"Feature","id":13735,"geometry":{"type":"Polygon","coordinates":[[[139.46875,35.714582999105396],[139.471875,35.714582999105396],[139.471875,35.71666699910537],[139.46875,35.71666699910537],[139.46875,35.714582999105396]]]},"properties":{"MESHCODE":"5339435743","揺全壊":20.42819}},{"type":"Feature","id":13878,"geometry":{"type":"Polygon","coordinates":[[[139.459375,35.72083299910535],[139.4625,35.72083299910535],[139.4625,35.72291699910532],[139.459375,35.72291699910533],[139.459375,35.72083299910535]]]},"properties":{"MESHCODE":"5339436642","揺全壊":16.05854}},{"type":"Feature","id":13894,"geometry":{"type":"Polygon","coordinates":[[[139.471875,35.72083299910535],[139.475,35.72083299910533],[139.475,35.72291699910532],[139.471875,35.72291699910533],[139.471875,35.72083299910535]]]},"properties":{"MESHCODE":"5339436742","揺全壊":23.63332}},{"type":"Feature","id":14042,"geometry":{"type":"Polygon","coordinates":[[[139.465625,35.72499999910529],[139.46875,35.72499999910529],[139.46875,35.72708299910527],[139.465625,35.72708299910527],[139.465625,35.72499999910529]]]},"properties":{"MESHCODE":"5339437712","揺全壊":15.02547}},{"type":"Feature","id":14547,"geometry":{"type":"Polygon","coordinates":[[[139.6,35.672916999105844],[139.603125,35.672916999105844],[139.603125,35.674999999105815],[139.6,35.674999999105815],[139.6,35.672916999105844]]]},"properties":{"MESHCODE":"5339440833","揺全壊":21.29732}},{"type":"Feature","id":14827,"geometry":{"type":"Polygon","coordinates":[[[139.575,35.685416999105726],[139.578125,35.685416999105726],[139.578125,35.68749999910568],[139.575,35.68749999910568],[139.575,35.685416999105726]]]},"properties":{"MESHCODE":"5339442613","揺全壊":15.64814}},{"type":"Feature","id":14886,"geometry":{"type":"Polygon","coordinates":[[[139.621875,35.68749999910568],[139.625,35.68749999910568],[139.625,35.68958299910567],[139.621875,35.68958299910567],[139.621875,35.68749999910568]]]},"properties":{"MESHCODE":"5339442942","揺全壊":18.98289}},{"type":"Feature","id":14979,"geometry":{"type":"Polygon","coordinates":[[[139.5625,35.69791699910557],[139.565625,35.69791699910557],[139.565625,35.69999999910556],[139.5625,35.69999999910555],[139.5625,35.69791699910557]]]},"properties":{"MESHCODE":"5339443533","揺全壊":17.15483}},{"type":"Feature","id":15333,"geometry":{"type":"Polygon","coordinates":[[[139.59375,35.712499999105425],[139.596875,35.712499999105425],[139.596875,35.714582999105396],[139.59375,35.714582999105396],[139.59375,35.712499999105425]]]},"properties":{"MESHCODE":"5339445741","揺全壊":18.02619}},{"type":"Feature","id":15480,"geometry":{"type":"Polygon","coordinates":[[[139.584375,35.72291699910533],[139.5875,35.72291699910533],[139.5875,35.72499999910529],[139.584375,35.72499999910529],[139.584375,35.72291699910533]]]},"properties":{"MESHCODE":"5339446644","揺全壊":21.03019}},{"type":"Feature","id":15533,"geometry":{"type":"Polygon","coordinates":[[[139.50625,35.72499999910529],[139.509375,35.72499999910529],[139.509375,35.72708299910527],[139.50625,35.72708299910527],[139.50625,35.72499999910529]]]},"properties":{"MESHCODE":"5339447021","揺全壊":15.36125}},{"type":"Feature","id":15629,"geometry":{"type":"Polygon","coordinates":[[[139.58125,35.7249999991053],[139.584375,35.72499999910529],[139.584375,35.72708299910527],[139.58125,35.72708299910527],[139.58125,35.7249999991053]]]},"properties":{"MESHCODE":"5339447621","揺全壊":15.97342}},{"type":"Feature","id":15644,"geometry":{"type":"Polygon","coordinates":[[[139.590625,35.72708299910527],[139.59375,35.72708299910527],[139.59375,35.72916699910524],[139.590625,35.72916699910524],[139.590625,35.72708299910527]]]},"properties":{"MESHCODE":"5339447714","揺全壊":15.30315}},{"type":"Feature","id":15686,"geometry":{"type":"Polygon","coordinates":[[[139.621875,35.72916699910524],[139.625,35.72916699910524],[139.625,35.731249999105245],[139.621875,35.731249999105245],[139.621875,35.72916699910524]]]},"properties":{"MESHCODE":"5339447942","揺全壊":16.56412}},{"type":"Feature","id":15967,"geometry":{"type":"Polygon","coordinates":[[[139.59375,35.74374999910509],[139.596875,35.74374999910509],[139.596875,35.74583299910506],[139.59375,35.74583299910506],[139.59375,35.74374999910509]]]},"properties":{"MESHCODE":"5339449723","揺全壊":23.09714}},{"type":"Feature","id":15973,"geometry":{"type":"Polygon","coordinates":[[[139.59375,35.74583299910506],[139.596875,35.74583299910506],[139.596875,35.747916999105065],[139.59375,35.747916999105065],[139.59375,35.74583299910506]]]},"properties":{"MESHCODE":"5339449741","揺全壊":22.03994}},{"type":"Feature","id":15974,"geometry":{"type":"Polygon","coordinates":[[[139.596875,35.74583299910506],[139.6,35.74583299910507],[139.6,35.747916999105065],[139.596875,35.747916999105065],[139.596875,35.74583299910506]]]},"properties":{"MESHCODE":"5339449742","揺全壊":23.13452}},{"type":"Feature","id":16020,"geometry":{"type":"Polygon","coordinates":[[[139.628125,35.672916999105844],[139.63125,35.672916999105844],[139.63125,35.674999999105815],[139.628125,35.674999999105815],[139.628125,35.672916999105844]]]},"properties":{"MESHCODE":"5339450034","揺全壊":15.03865}},{"type":"Feature","id":16063,"geometry":{"type":"Polygon","coordinates":[[[139.66875,35.668749999105884],[139.671875,35.668749999105884],[139.671875,35.670832999105855],[139.66875,35.670832999105855],[139.66875,35.668749999105884]]]},"properties":{"MESHCODE":"5339450323","揺全壊":15.62054}},{"type":"Feature","id":16084,"geometry":{"type":"Polygon","coordinates":[[[139.678125,35.672916999105844],[139.68125,35.672916999105844],[139.68125,35.674999999105815],[139.678125,35.674999999105815],[139.678125,35.672916999105844]]]},"properties":{"MESHCODE":"5339450434","揺全壊":16.02688}},{"type":"Feature","id":16176,"geometry":{"type":"Polygon","coordinates":[[[139.634375,35.67708299910581],[139.6375,35.67708299910581],[139.6375,35.67916699910577],[139.634375,35.67916699910577],[139.634375,35.67708299910581]]]},"properties":{"MESHCODE":"5339451024","揺全壊":21.21806}},{"type":"Feature","id":16185,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.674999999105815],[139.640625,35.674999999105815],[139.640625,35.6770829991058],[139.6375,35.67708299910581],[139.6375,35.674999999105815]]]},"properties":{"MESHCODE":"5339451111","揺全壊":17.53796}},{"type":"Feature","id":16219,"geometry":{"type":"Polygon","coordinates":[[[139.6625,35.67708299910581],[139.665625,35.67708299910581],[139.665625,35.67916699910577],[139.6625,35.67916699910577],[139.6625,35.67708299910581]]]},"properties":{"MESHCODE":"5339451313","揺全壊":15.85818}},{"type":"Feature","id":16225,"geometry":{"type":"Polygon","coordinates":[[[139.6625,35.67916699910577],[139.665625,35.67916699910577],[139.665625,35.68124999910575],[139.6625,35.68124999910575],[139.6625,35.67916699910577]]]},"properties":{"MESHCODE":"5339451331","揺全壊":16.47469}},{"type":"Feature","id":16234,"geometry":{"type":"Polygon","coordinates":[[[139.678125,35.674999999105815],[139.68125,35.674999999105815],[139.68125,35.67708299910581],[139.678125,35.6770829991058],[139.678125,35.674999999105815]]]},"properties":{"MESHCODE":"5339451412","揺全壊":15.32914}},{"type":"Feature","id":16235,"geometry":{"type":"Polygon","coordinates":[[[139.675,35.67708299910581],[139.678125,35.6770829991058],[139.678125,35.67916699910577],[139.675,35.67916699910577],[139.675,35.67708299910581]]]},"properties":{"MESHCODE":"5339451413","揺全壊":20.01926}},{"type":"Feature","id":16240,"geometry":{"type":"Polygon","coordinates":[[[139.684375,35.67708299910581],[139.6875,35.6770829991058],[139.6875,35.67916699910579],[139.684375,35.67916699910577],[139.684375,35.67708299910581]]]},"properties":{"MESHCODE":"5339451424","揺全壊":20.36595}},{"type":"Feature","id":16241,"geometry":{"type":"Polygon","coordinates":[[[139.675,35.67916699910577],[139.678125,35.67916699910577],[139.678125,35.68124999910575],[139.675,35.68124999910575],[139.675,35.67916699910577]]]},"properties":{"MESHCODE":"5339451431","揺全壊":24.34351}},{"type":"Feature","id":16242,"geometry":{"type":"Polygon","coordinates":[[[139.678125,35.67916699910577],[139.68125,35.67916699910577],[139.68125,35.68124999910575],[139.678125,35.68124999910575],[139.678125,35.67916699910577]]]},"properties":{"MESHCODE":"5339451432","揺全壊":17.42335}},{"type":"Feature","id":16340,"geometry":{"type":"Polygon","coordinates":[[[139.628125,35.68958299910567],[139.63125,35.68958299910567],[139.63125,35.69166699910565],[139.628125,35.691666999105664],[139.628125,35.68958299910567]]]},"properties":{"MESHCODE":"5339452034","揺全壊":16.15121}},{"type":"Feature","id":16342,"geometry":{"type":"Polygon","coordinates":[[[139.634375,35.68749999910568],[139.6375,35.68749999910568],[139.6375,35.68958299910567],[139.634375,35.68958299910567],[139.634375,35.68749999910568]]]},"properties":{"MESHCODE":"5339452042","揺全壊":22.15985}},{"type":"Feature","id":16353,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.68749999910568],[139.640625,35.68749999910568],[139.640625,35.689582999105674],[139.6375,35.68958299910567],[139.6375,35.68749999910568]]]},"properties":{"MESHCODE":"5339452131","揺全壊":24.33986}},{"type":"Feature","id":16354,"geometry":{"type":"Polygon","coordinates":[[[139.640625,35.68749999910568],[139.64375,35.68749999910568],[139.64375,35.68958299910567],[139.640625,35.689582999105674],[139.640625,35.68749999910568]]]},"properties":{"MESHCODE":"5339452132","揺全壊":16.66941}},{"type":"Feature","id":16371,"geometry":{"type":"Polygon","coordinates":[[[139.65,35.68958299910567],[139.653125,35.68958299910567],[139.653125,35.691666999105664],[139.65,35.69166699910565],[139.65,35.68958299910567]]]},"properties":{"MESHCODE":"5339452233","揺全壊":16.82151}},{"type":"Feature","id":16396,"geometry":{"type":"Polygon","coordinates":[[[139.678125,35.685416999105705],[139.68125,35.685416999105726],[139.68125,35.68749999910568],[139.678125,35.68749999910568],[139.678125,35.685416999105705]]]},"properties":{"MESHCODE":"5339452414","揺全壊":17.46325}},{"type":"Feature","id":16401,"geometry":{"type":"Polygon","coordinates":[[[139.675,35.68749999910568],[139.678125,35.68749999910568],[139.678125,35.68958299910567],[139.675,35.68958299910567],[139.675,35.68749999910568]]]},"properties":{"MESHCODE":"5339452431","揺全壊":16.36489}},{"type":"Feature","id":16496,"geometry":{"type":"Polygon","coordinates":[[[139.634375,35.69374999910561],[139.6375,35.69374999910563],[139.6375,35.69583299910559],[139.634375,35.69583299910559],[139.634375,35.69374999910561]]]},"properties":{"MESHCODE":"5339453024","揺全壊":17.61077}},{"type":"Feature","id":16498,"geometry":{"type":"Polygon","coordinates":[[[139.628125,35.69583299910559],[139.63125,35.69583299910559],[139.63125,35.69791699910557],[139.628125,35.69791699910557],[139.628125,35.69583299910559]]]},"properties":{"MESHCODE":"5339453032","揺全壊":16.27325}},{"type":"Feature","id":16502,"geometry":{"type":"Polygon","coordinates":[[[139.634375,35.69583299910559],[139.6375,35.69583299910559],[139.6375,35.69791699910557],[139.634375,35.69791699910557],[139.634375,35.69583299910559]]]},"properties":{"MESHCODE":"5339453042","揺全壊":15.41831}},{"type":"Feature","id":16503,"geometry":{"type":"Polygon","coordinates":[[[139.63125,35.69791699910557],[139.634375,35.69791699910557],[139.634375,35.69999999910556],[139.63125,35.69999999910556],[139.63125,35.69791699910557]]]},"properties":{"MESHCODE":"5339453043","揺全壊":21.92747}},{"type":"Feature","id":16504,"geometry":{"type":"Polygon","coordinates":[[[139.634375,35.69791699910557],[139.6375,35.69791699910557],[139.6375,35.69999999910556],[139.634375,35.69999999910556],[139.634375,35.69791699910557]]]},"properties":{"MESHCODE":"5339453044","揺全壊":16.49155}},{"type":"Feature","id":16510,"geometry":{"type":"Polygon","coordinates":[[[139.646875,35.69166699910565],[139.65,35.69166699910565],[139.65,35.69374999910564],[139.646875,35.69374999910561],[139.646875,35.69166699910565]]]},"properties":{"MESHCODE":"5339453122","揺全壊":18.43717}},{"type":"Feature","id":16512,"geometry":{"type":"Polygon","coordinates":[[[139.646875,35.69374999910561],[139.65,35.69374999910564],[139.65,35.695832999105605],[139.646875,35.69583299910558],[139.646875,35.69374999910561]]]},"properties":{"MESHCODE":"5339453124","揺全壊":19.05167}},{"type":"Feature","id":16518,"geometry":{"type":"Polygon","coordinates":[[[139.646875,35.69583299910558],[139.65,35.695832999105605],[139.65,35.69791699910558],[139.646875,35.69791699910557],[139.646875,35.69583299910558]]]},"properties":{"MESHCODE":"5339453142","揺全壊":18.05112}},{"type":"Feature","id":16519,"geometry":{"type":"Polygon","coordinates":[[[139.64375,35.69791699910557],[139.646875,35.69791699910557],[139.646875,35.69999999910555],[139.64375,35.69999999910556],[139.64375,35.69791699910557]]]},"properties":{"MESHCODE":"5339453143","揺全壊":24.60586}},{"type":"Feature","id":16562,"geometry":{"type":"Polygon","coordinates":[[[139.678125,35.69583299910558],[139.68125,35.69583299910559],[139.68125,35.69791699910557],[139.678125,35.69791699910557],[139.678125,35.69583299910558]]]},"properties":{"MESHCODE":"5339453432","揺全壊":15.36461}},{"type":"Feature","id":16563,"geometry":{"type":"Polygon","coordinates":[[[139.675,35.69791699910557],[139.678125,35.69791699910557],[139.678125,35.69999999910556],[139.675,35.69999999910555],[139.675,35.69791699910557]]]},"properties":{"MESHCODE":"5339453433","揺全壊":20.03528}},{"type":"Feature","id":16649,"geometry":{"type":"Polygon","coordinates":[[[139.625,35.69999999910556],[139.628125,35.69999999910556],[139.628125,35.70208299910554],[139.625,35.70208299910554],[139.625,35.69999999910556]]]},"properties":{"MESHCODE":"5339454011","揺全壊":22.4318}},{"type":"Feature","id":16654,"geometry":{"type":"Polygon","coordinates":[[[139.634375,35.69999999910556],[139.6375,35.69999999910556],[139.6375,35.70208299910554],[139.634375,35.70208299910554],[139.634375,35.69999999910556]]]},"properties":{"MESHCODE":"5339454022","揺全壊":18.00081}},{"type":"Feature","id":16663,"geometry":{"type":"Polygon","coordinates":[[[139.63125,35.70624999910548],[139.634375,35.70624999910548],[139.634375,35.70833299910548],[139.63125,35.70833299910548],[139.63125,35.70624999910548]]]},"properties":{"MESHCODE":"5339454043","揺全壊":17.04186}},{"type":"Feature","id":16665,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.69999999910556],[139.640625,35.69999999910557],[139.640625,35.702082999105556],[139.6375,35.70208299910554],[139.6375,35.69999999910556]]]},"properties":{"MESHCODE":"5339454111","揺全壊":24.66813}},{"type":"Feature","id":16666,"geometry":{"type":"Polygon","coordinates":[[[139.640625,35.69999999910557],[139.64375,35.69999999910556],[139.64375,35.70208299910554],[139.640625,35.702082999105556],[139.640625,35.69999999910557]]]},"properties":{"MESHCODE":"5339454112","揺全壊":21.69312}},{"type":"Feature","id":16671,"geometry":{"type":"Polygon","coordinates":[[[139.64375,35.70208299910554],[139.646875,35.702082999105535],[139.646875,35.70416699910551],[139.64375,35.70416699910552],[139.64375,35.70208299910554]]]},"properties":{"MESHCODE":"5339454123","揺全壊":22.74802}},{"type":"Feature","id":16730,"geometry":{"type":"Polygon","coordinates":[[[139.690625,35.69999999910556],[139.69375,35.69999999910556],[139.69375,35.70208299910554],[139.690625,35.70208299910554],[139.690625,35.69999999910556]]]},"properties":{"MESHCODE":"5339454512","揺全壊":15.52084}},{"type":"Feature","id":16833,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.712499999105425],[139.640625,35.712499999105425],[139.640625,35.714582999105396],[139.6375,35.714582999105396],[139.6375,35.712499999105425]]]},"properties":{"MESHCODE":"5339455131","揺全壊":24.98376}},{"type":"Feature","id":16835,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.714582999105396],[139.640625,35.714582999105396],[139.640625,35.71666699910538],[139.6375,35.71666699910537],[139.6375,35.714582999105396]]]},"properties":{"MESHCODE":"5339455133","揺全壊":18.86741}},{"type":"Feature","id":16984,"geometry":{"type":"Polygon","coordinates":[[[139.634375,35.72291699910533],[139.6375,35.72291699910533],[139.6375,35.72499999910529],[139.634375,35.72499999910529],[139.634375,35.72291699910533]]]},"properties":{"MESHCODE":"5339456044","揺全壊":15.79756}},{"type":"Feature","id":17137,"geometry":{"type":"Polygon","coordinates":[[[139.625,35.72916699910524],[139.628125,35.72916699910524],[139.628125,35.731249999105245],[139.625,35.731249999105245],[139.625,35.72916699910524]]]},"properties":{"MESHCODE":"5339457031","揺全壊":22.43652}},{"type":"Feature","id":17138,"geometry":{"type":"Polygon","coordinates":[[[139.628125,35.72916699910524],[139.63125,35.72916699910524],[139.63125,35.731249999105245],[139.628125,35.731249999105245],[139.628125,35.72916699910524]]]},"properties":{"MESHCODE":"5339457032","揺全壊":18.58275}},{"type":"Feature","id":17140,"geometry":{"type":"Polygon","coordinates":[[[139.628125,35.731249999105245],[139.63125,35.731249999105245],[139.63125,35.733332999105215],[139.628125,35.733332999105215],[139.628125,35.731249999105245]]]},"properties":{"MESHCODE":"5339457034","揺全壊":15.66405}},{"type":"Feature","id":17447,"geometry":{"type":"Polygon","coordinates":[[[139.74375,35.73958299910514],[139.746875,35.73958299910514],[139.746875,35.741666999105114],[139.74375,35.741666999105114],[139.74375,35.73958299910514]]]},"properties":{"MESHCODE":"5339458943","揺全壊":22.60257}},{"type":"Feature","id":17487,"geometry":{"type":"Polygon","coordinates":[[[139.65625,35.743749999105084],[139.659375,35.74374999910509],[139.659375,35.74583299910506],[139.65625,35.74583299910507],[139.65625,35.743749999105084]]]},"properties":{"MESHCODE":"5339459223","揺全壊":15.99389}},{"type":"Feature","id":17500,"geometry":{"type":"Polygon","coordinates":[[[139.665625,35.743749999105084],[139.66875,35.74374999910509],[139.66875,35.74583299910506],[139.665625,35.74583299910506],[139.665625,35.743749999105084]]]},"properties":{"MESHCODE":"5339459314","揺全壊":18.9582}},{"type":"Feature","id":17584,"geometry":{"type":"Polygon","coordinates":[[[139.734375,35.74374999910509],[139.7375,35.743749999105084],[139.7375,35.74583299910506],[139.734375,35.74583299910506],[139.734375,35.74374999910509]]]},"properties":{"MESHCODE":"5339459824","揺全壊":23.79944}},{"type":"Feature","id":17594,"geometry":{"type":"Polygon","coordinates":[[[139.740625,35.741666999105114],[139.74375,35.741666999105114],[139.74375,35.74374999910509],[139.740625,35.74374999910509],[139.740625,35.741666999105114]]]},"properties":{"MESHCODE":"5339459912","揺全壊":17.86619}},{"type":"Feature","id":17686,"geometry":{"type":"Polygon","coordinates":[[[139.809375,35.670832999105855],[139.8125,35.670832999105855],[139.8125,35.672916999105844],[139.809375,35.672916999105844],[139.809375,35.670832999105855]]]},"properties":{"MESHCODE":"5339460442","揺全壊":20.52977}},{"type":"Feature","id":17704,"geometry":{"type":"Polygon","coordinates":[[[139.821875,35.672916999105844],[139.825,35.672916999105844],[139.825,35.674999999105815],[139.821875,35.674999999105815],[139.821875,35.672916999105844]]]},"properties":{"MESHCODE":"5339460544","揺全壊":19.51646}},{"type":"Feature","id":17716,"geometry":{"type":"Polygon","coordinates":[[[139.828125,35.672916999105844],[139.83125,35.672916999105844],[139.83125,35.674999999105815],[139.828125,35.674999999105815],[139.828125,35.672916999105844]]]},"properties":{"MESHCODE":"5339460634","揺全壊":21.10291}},{"type":"Feature","id":17818,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.674999999105815],[139.79375,35.674999999105815],[139.79375,35.67708299910581],[139.790625,35.67708299910581],[139.790625,35.674999999105815]]]},"properties":{"MESHCODE":"5339461312","揺全壊":15.71311}},{"type":"Feature","id":17832,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.68124999910575],[139.8,35.68124999910575],[139.8,35.68333299910573],[139.796875,35.68333299910573],[139.796875,35.68124999910575]]]},"properties":{"MESHCODE":"5339461344","揺全壊":24.88133}},{"type":"Feature","id":17842,"geometry":{"type":"Polygon","coordinates":[[[139.803125,35.67916699910579],[139.80625,35.67916699910577],[139.80625,35.68124999910575],[139.803125,35.68124999910575],[139.803125,35.67916699910579]]]},"properties":{"MESHCODE":"5339461432","揺全壊":20.63749}},{"type":"Feature","id":17843,"geometry":{"type":"Polygon","coordinates":[[[139.8,35.68124999910575],[139.803125,35.68124999910575],[139.803125,35.68333299910573],[139.8,35.68333299910573],[139.8,35.68124999910575]]]},"properties":{"MESHCODE":"5339461433","揺全壊":23.60851}},{"type":"Feature","id":17844,"geometry":{"type":"Polygon","coordinates":[[[139.803125,35.68124999910575],[139.80625,35.68124999910575],[139.80625,35.68333299910573],[139.803125,35.68333299910573],[139.803125,35.68124999910575]]]},"properties":{"MESHCODE":"5339461434","揺全壊":22.06576}},{"type":"Feature","id":17856,"geometry":{"type":"Polygon","coordinates":[[[139.821875,35.67708299910581],[139.825,35.67708299910581],[139.825,35.67916699910577],[139.821875,35.67916699910577],[139.821875,35.67708299910581]]]},"properties":{"MESHCODE":"5339461524","揺全壊":15.04809}},{"type":"Feature","id":17868,"geometry":{"type":"Polygon","coordinates":[[[139.828125,35.67708299910581],[139.83125,35.67708299910581],[139.83125,35.67916699910577],[139.828125,35.67916699910577],[139.828125,35.67708299910581]]]},"properties":{"MESHCODE":"5339461614","揺全壊":16.3047}},{"type":"Feature","id":17967,"geometry":{"type":"Polygon","coordinates":[[[139.78125,35.685416999105705],[139.784375,35.685416999105726],[139.784375,35.68749999910568],[139.78125,35.68749999910568],[139.78125,35.685416999105705]]]},"properties":{"MESHCODE":"5339462223","揺全壊":20.73372}},{"type":"Feature","id":17982,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.68333299910573],[139.8,35.68333299910573],[139.8,35.685416999105726],[139.796875,35.685416999105726],[139.796875,35.68333299910573]]]},"properties":{"MESHCODE":"5339462322","揺全壊":21.98296}},{"type":"Feature","id":17984,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.685416999105726],[139.8,35.685416999105726],[139.8,35.68749999910568],[139.796875,35.68749999910568],[139.796875,35.685416999105726]]]},"properties":{"MESHCODE":"5339462324","揺全壊":15.72645}},{"type":"Feature","id":17989,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.68749999910568],[139.796875,35.68749999910568],[139.796875,35.68958299910567],[139.79375,35.689582999105674],[139.79375,35.68749999910568]]]},"properties":{"MESHCODE":"5339462341","揺全壊":15.83749}},{"type":"Feature","id":17999,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.685416999105726],[139.809375,35.685416999105726],[139.809375,35.68749999910568],[139.80625,35.68749999910568],[139.80625,35.685416999105726]]]},"properties":{"MESHCODE":"5339462423","揺全壊":16.24164}},{"type":"Feature","id":18002,"geometry":{"type":"Polygon","coordinates":[[[139.803125,35.68749999910568],[139.80625,35.68749999910568],[139.80625,35.68958299910567],[139.803125,35.68958299910567],[139.803125,35.68749999910568]]]},"properties":{"MESHCODE":"5339462432","揺全壊":16.12125}},{"type":"Feature","id":18007,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.68958299910567],[139.809375,35.68958299910567],[139.809375,35.691666999105664],[139.80625,35.691666999105664],[139.80625,35.68958299910567]]]},"properties":{"MESHCODE":"5339462443","揺全壊":17.03953}},{"type":"Feature","id":18011,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.685416999105726],[139.815625,35.685416999105705],[139.815625,35.68749999910568],[139.8125,35.68749999910568],[139.8125,35.685416999105726]]]},"properties":{"MESHCODE":"5339462513","揺全壊":17.55693}},{"type":"Feature","id":18019,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.68958299910567],[139.815625,35.68958299910567],[139.815625,35.691666999105664],[139.8125,35.69166699910565],[139.8125,35.68958299910567]]]},"properties":{"MESHCODE":"5339462533","揺全壊":15.19599}},{"type":"Feature","id":18037,"geometry":{"type":"Polygon","coordinates":[[[139.83125,35.68749999910568],[139.834375,35.68749999910568],[139.834375,35.68958299910567],[139.83125,35.68958299910567],[139.83125,35.68749999910568]]]},"properties":{"MESHCODE":"5339462641","揺全壊":15.21496}},{"type":"Feature","id":18041,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.68333299910573],[139.840625,35.68333299910573],[139.840625,35.685416999105726],[139.8375,35.685416999105726],[139.8375,35.68333299910573]]]},"properties":{"MESHCODE":"5339462711","揺全壊":17.93387}},{"type":"Feature","id":18051,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.68958299910567],[139.840625,35.68958299910567],[139.840625,35.691666999105664],[139.8375,35.691666999105664],[139.8375,35.68958299910567]]]},"properties":{"MESHCODE":"5339462733","揺全壊":20.30094}},{"type":"Feature","id":18142,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.691666999105664],[139.8,35.69166699910565],[139.8,35.69374999910563],[139.796875,35.69374999910564],[139.796875,35.691666999105664]]]},"properties":{"MESHCODE":"5339463322","揺全壊":16.69649}},{"type":"Feature","id":18153,"geometry":{"type":"Polygon","coordinates":[[[139.8,35.69166699910565],[139.803125,35.69166699910565],[139.803125,35.69374999910564],[139.8,35.69374999910563],[139.8,35.69166699910565]]]},"properties":{"MESHCODE":"5339463411","揺全壊":16.54298}},{"type":"Feature","id":18157,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.691666999105664],[139.809375,35.691666999105664],[139.809375,35.69374999910563],[139.80625,35.69374999910563],[139.80625,35.691666999105664]]]},"properties":{"MESHCODE":"5339463421","揺全壊":15.07677}},{"type":"Feature","id":18174,"geometry":{"type":"Polygon","coordinates":[[[139.821875,35.691666999105664],[139.825,35.691666999105664],[139.825,35.69374999910563],[139.821875,35.69374999910563],[139.821875,35.691666999105664]]]},"properties":{"MESHCODE":"5339463522","揺全壊":15.19829}},{"type":"Feature","id":18184,"geometry":{"type":"Polygon","coordinates":[[[139.821875,35.69791699910557],[139.825,35.69791699910557],[139.825,35.69999999910556],[139.821875,35.69999999910556],[139.821875,35.69791699910557]]]},"properties":{"MESHCODE":"5339463544","揺全壊":18.83753}},{"type":"Feature","id":18195,"geometry":{"type":"Polygon","coordinates":[[[139.825,35.69791699910557],[139.828125,35.69791699910557],[139.828125,35.69999999910556],[139.825,35.69999999910556],[139.825,35.69791699910557]]]},"properties":{"MESHCODE":"5339463633","揺全壊":21.32419}},{"type":"Feature","id":18200,"geometry":{"type":"Polygon","coordinates":[[[139.834375,35.69791699910557],[139.8375,35.69791699910557],[139.8375,35.69999999910556],[139.834375,35.69999999910556],[139.834375,35.69791699910557]]]},"properties":{"MESHCODE":"5339463644","揺全壊":18.96172}},{"type":"Feature","id":18201,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.691666999105664],[139.840625,35.691666999105664],[139.840625,35.69374999910563],[139.8375,35.69374999910563],[139.8375,35.691666999105664]]]},"properties":{"MESHCODE":"5339463711","揺全壊":15.72968}},{"type":"Feature","id":18202,"geometry":{"type":"Polygon","coordinates":[[[139.840625,35.691666999105664],[139.84375,35.69166699910565],[139.84375,35.69374999910563],[139.840625,35.69374999910563],[139.840625,35.691666999105664]]]},"properties":{"MESHCODE":"5339463712","揺全壊":18.05228}},{"type":"Feature","id":18305,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.70416699910552],[139.790625,35.70416699910552],[139.790625,35.70624999910548],[139.7875,35.70624999910548],[139.7875,35.70416699910552]]]},"properties":{"MESHCODE":"5339464331","揺全壊":20.3686}},{"type":"Feature","id":18307,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.70624999910548],[139.790625,35.70624999910548],[139.790625,35.70833299910548],[139.7875,35.70833299910548],[139.7875,35.70624999910548]]]},"properties":{"MESHCODE":"5339464333","揺全壊":24.27985}},{"type":"Feature","id":18310,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.70416699910552],[139.8,35.70416699910552],[139.8,35.70624999910548],[139.796875,35.70624999910548],[139.796875,35.70416699910552]]]},"properties":{"MESHCODE":"5339464342","揺全壊":15.58311}},{"type":"Feature","id":18314,"geometry":{"type":"Polygon","coordinates":[[[139.803125,35.69999999910556],[139.80625,35.69999999910556],[139.80625,35.70208299910554],[139.803125,35.70208299910554],[139.803125,35.69999999910556]]]},"properties":{"MESHCODE":"5339464412","揺全壊":18.21237}},{"type":"Feature","id":18315,"geometry":{"type":"Polygon","coordinates":[[[139.8,35.702082999105556],[139.803125,35.70208299910554],[139.803125,35.70416699910552],[139.8,35.70416699910552],[139.8,35.702082999105556]]]},"properties":{"MESHCODE":"5339464413","揺全壊":21.9926}},{"type":"Feature","id":18317,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.69999999910556],[139.809375,35.69999999910556],[139.809375,35.70208299910554],[139.80625,35.70208299910554],[139.80625,35.69999999910556]]]},"properties":{"MESHCODE":"5339464421","揺全壊":22.45148}},{"type":"Feature","id":18318,"geometry":{"type":"Polygon","coordinates":[[[139.809375,35.69999999910556],[139.8125,35.69999999910556],[139.8125,35.702082999105556],[139.809375,35.70208299910554],[139.809375,35.69999999910556]]]},"properties":{"MESHCODE":"5339464422","揺全壊":20.0404}},{"type":"Feature","id":18323,"geometry":{"type":"Polygon","coordinates":[[[139.8,35.70624999910548],[139.803125,35.70624999910548],[139.803125,35.70833299910548],[139.8,35.70833299910548],[139.8,35.70624999910548]]]},"properties":{"MESHCODE":"5339464433","揺全壊":21.92229}},{"type":"Feature","id":18325,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.70416699910552],[139.809375,35.70416699910552],[139.809375,35.70624999910548],[139.80625,35.70624999910548],[139.80625,35.70416699910552]]]},"properties":{"MESHCODE":"5339464441","揺全壊":21.34806}},{"type":"Feature","id":18328,"geometry":{"type":"Polygon","coordinates":[[[139.809375,35.70624999910548],[139.8125,35.70624999910548],[139.8125,35.70833299910548],[139.809375,35.70833299910548],[139.809375,35.70624999910548]]]},"properties":{"MESHCODE":"5339464444","揺全壊":23.15841}},{"type":"Feature","id":18329,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.69999999910556],[139.815625,35.69999999910556],[139.815625,35.70208299910554],[139.8125,35.702082999105556],[139.8125,35.69999999910556]]]},"properties":{"MESHCODE":"5339464511","揺全壊":18.92995}},{"type":"Feature","id":18332,"geometry":{"type":"Polygon","coordinates":[[[139.815625,35.70208299910554],[139.81875,35.70208299910554],[139.81875,35.70416699910552],[139.815625,35.70416699910551],[139.815625,35.70208299910554]]]},"properties":{"MESHCODE":"5339464514","揺全壊":23.91934}},{"type":"Feature","id":18338,"geometry":{"type":"Polygon","coordinates":[[[139.815625,35.70416699910551],[139.81875,35.70416699910552],[139.81875,35.70624999910548],[139.815625,35.70624999910548],[139.815625,35.70416699910551]]]},"properties":{"MESHCODE":"5339464532","揺全壊":17.09515}},{"type":"Feature","id":18340,"geometry":{"type":"Polygon","coordinates":[[[139.815625,35.70624999910548],[139.81875,35.70624999910548],[139.81875,35.70833299910548],[139.815625,35.70833299910548],[139.815625,35.70624999910548]]]},"properties":{"MESHCODE":"5339464534","揺全壊":15.98628}},{"type":"Feature","id":18348,"geometry":{"type":"Polygon","coordinates":[[[139.828125,35.70208299910554],[139.83125,35.70208299910554],[139.83125,35.70416699910552],[139.828125,35.70416699910552],[139.828125,35.70208299910554]]]},"properties":{"MESHCODE":"5339464614","揺全壊":18.34284}},{"type":"Feature","id":18349,"geometry":{"type":"Polygon","coordinates":[[[139.83125,35.69999999910556],[139.834375,35.69999999910556],[139.834375,35.702082999105535],[139.83125,35.70208299910554],[139.83125,35.69999999910556]]]},"properties":{"MESHCODE":"5339464621","揺全壊":15.06698}},{"type":"Feature","id":18357,"geometry":{"type":"Polygon","coordinates":[[[139.83125,35.70416699910552],[139.834375,35.70416699910552],[139.834375,35.70624999910548],[139.83125,35.70624999910548],[139.83125,35.70416699910552]]]},"properties":{"MESHCODE":"5339464641","揺全壊":17.0266}},{"type":"Feature","id":18359,"geometry":{"type":"Polygon","coordinates":[[[139.83125,35.70624999910548],[139.834375,35.70624999910548],[139.834375,35.70833299910548],[139.83125,35.70833299910548],[139.83125,35.70624999910548]]]},"properties":{"MESHCODE":"5339464643","揺全壊":22.0709}},{"type":"Feature","id":18360,"geometry":{"type":"Polygon","coordinates":[[[139.834375,35.70624999910548],[139.8375,35.70624999910548],[139.8375,35.70833299910548],[139.834375,35.70833299910548],[139.834375,35.70624999910548]]]},"properties":{"MESHCODE":"5339464644","揺全壊":18.11931}},{"type":"Feature","id":18367,"geometry":{"type":"Polygon","coordinates":[[[139.84375,35.70208299910554],[139.846875,35.70208299910554],[139.846875,35.70416699910552],[139.84375,35.70416699910552],[139.84375,35.70208299910554]]]},"properties":{"MESHCODE":"5339464723","揺全壊":21.82505}},{"type":"Feature","id":18368,"geometry":{"type":"Polygon","coordinates":[[[139.846875,35.70208299910554],[139.85,35.702082999105535],[139.85,35.70416699910551],[139.846875,35.70416699910552],[139.846875,35.70208299910554]]]},"properties":{"MESHCODE":"5339464724","揺全壊":17.84929}},{"type":"Feature","id":18370,"geometry":{"type":"Polygon","coordinates":[[[139.840625,35.70416699910552],[139.84375,35.70416699910552],[139.84375,35.706249999105474],[139.840625,35.70624999910548],[139.840625,35.70416699910552]]]},"properties":{"MESHCODE":"5339464732","揺全壊":15.48149}},{"type":"Feature","id":18373,"geometry":{"type":"Polygon","coordinates":[[[139.84375,35.70416699910552],[139.846875,35.70416699910552],[139.846875,35.70624999910548],[139.84375,35.706249999105474],[139.84375,35.70416699910552]]]},"properties":{"MESHCODE":"5339464741","揺全壊":16.17595}},{"type":"Feature","id":18377,"geometry":{"type":"Polygon","coordinates":[[[139.85,35.69999999910555],[139.853125,35.69999999910556],[139.853125,35.70208299910554],[139.85,35.702082999105535],[139.85,35.69999999910555]]]},"properties":{"MESHCODE":"5339464811","揺全壊":20.5903}},{"type":"Feature","id":18393,"geometry":{"type":"Polygon","coordinates":[[[139.8625,35.69999999910556],[139.865625,35.69999999910556],[139.865625,35.70208299910554],[139.8625,35.70208299910554],[139.8625,35.69999999910556]]]},"properties":{"MESHCODE":"5339464911","揺全壊":20.99406}},{"type":"Feature","id":18454,"geometry":{"type":"Polygon","coordinates":[[[139.784375,35.712499999105425],[139.7875,35.712499999105425],[139.7875,35.714582999105396],[139.784375,35.714582999105396],[139.784375,35.712499999105425]]]},"properties":{"MESHCODE":"5339465242","揺全壊":15.54611}},{"type":"Feature","id":18467,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.714582999105396],[139.790625,35.714582999105396],[139.790625,35.71666699910537],[139.7875,35.71666699910537],[139.7875,35.714582999105396]]]},"properties":{"MESHCODE":"5339465333","揺全壊":21.23517}},{"type":"Feature","id":18479,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.71041699910544],[139.809375,35.71041699910544],[139.809375,35.712499999105425],[139.80625,35.712499999105425],[139.80625,35.71041699910544]]]},"properties":{"MESHCODE":"5339465423","揺全壊":15.33904}},{"type":"Feature","id":18485,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.712499999105425],[139.809375,35.712499999105425],[139.809375,35.714582999105396],[139.80625,35.714582999105396],[139.80625,35.712499999105425]]]},"properties":{"MESHCODE":"5339465441","揺全壊":18.87862}},{"type":"Feature","id":18486,"geometry":{"type":"Polygon","coordinates":[[[139.809375,35.712499999105425],[139.8125,35.712499999105425],[139.8125,35.714582999105396],[139.809375,35.714582999105396],[139.809375,35.712499999105425]]]},"properties":{"MESHCODE":"5339465442","揺全壊":18.09869}},{"type":"Feature","id":18488,"geometry":{"type":"Polygon","coordinates":[[[139.809375,35.714582999105396],[139.8125,35.714582999105396],[139.8125,35.71666699910537],[139.809375,35.71666699910537],[139.809375,35.714582999105396]]]},"properties":{"MESHCODE":"5339465444","揺全壊":19.40587}},{"type":"Feature","id":18489,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.70833299910548],[139.815625,35.70833299910548],[139.815625,35.71041699910544],[139.8125,35.71041699910544],[139.8125,35.70833299910548]]]},"properties":{"MESHCODE":"5339465511","揺全壊":20.51918}},{"type":"Feature","id":18491,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.71041699910544],[139.815625,35.71041699910544],[139.815625,35.712499999105425],[139.8125,35.712499999105425],[139.8125,35.71041699910544]]]},"properties":{"MESHCODE":"5339465513","揺全壊":16.84238}},{"type":"Feature","id":18507,"geometry":{"type":"Polygon","coordinates":[[[139.825,35.71041699910544],[139.828125,35.71041699910544],[139.828125,35.712499999105425],[139.825,35.712499999105425],[139.825,35.71041699910544]]]},"properties":{"MESHCODE":"5339465613","揺全壊":17.61243}},{"type":"Feature","id":18509,"geometry":{"type":"Polygon","coordinates":[[[139.83125,35.70833299910548],[139.834375,35.70833299910548],[139.834375,35.71041699910544],[139.83125,35.71041699910544],[139.83125,35.70833299910548]]]},"properties":{"MESHCODE":"5339465621","揺全壊":15.06433}},{"type":"Feature","id":18511,"geometry":{"type":"Polygon","coordinates":[[[139.83125,35.71041699910544],[139.834375,35.71041699910544],[139.834375,35.712499999105425],[139.83125,35.712499999105425],[139.83125,35.71041699910544]]]},"properties":{"MESHCODE":"5339465623","揺全壊":23.84141}},{"type":"Feature","id":18524,"geometry":{"type":"Polygon","coordinates":[[[139.840625,35.71041699910544],[139.84375,35.71041699910544],[139.84375,35.712499999105425],[139.840625,35.712499999105425],[139.840625,35.71041699910544]]]},"properties":{"MESHCODE":"5339465714","揺全壊":24.80651}},{"type":"Feature","id":18525,"geometry":{"type":"Polygon","coordinates":[[[139.84375,35.70833299910548],[139.846875,35.70833299910548],[139.846875,35.71041699910544],[139.84375,35.71041699910544],[139.84375,35.70833299910548]]]},"properties":{"MESHCODE":"5339465721","揺全壊":23.54352}},{"type":"Feature","id":18529,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.712499999105425],[139.840625,35.712499999105425],[139.840625,35.714582999105396],[139.8375,35.714582999105396],[139.8375,35.712499999105425]]]},"properties":{"MESHCODE":"5339465731","揺全壊":15.67489}},{"type":"Feature","id":18541,"geometry":{"type":"Polygon","coordinates":[[[139.85625,35.70833299910548],[139.859375,35.70833299910548],[139.859375,35.71041699910544],[139.85625,35.71041699910544],[139.85625,35.70833299910548]]]},"properties":{"MESHCODE":"5339465821","揺全壊":16.13165}},{"type":"Feature","id":18543,"geometry":{"type":"Polygon","coordinates":[[[139.85625,35.71041699910544],[139.859375,35.71041699910544],[139.859375,35.712499999105425],[139.85625,35.712499999105425],[139.85625,35.71041699910544]]]},"properties":{"MESHCODE":"5339465823","揺全壊":21.31801}},{"type":"Feature","id":18563,"geometry":{"type":"Polygon","coordinates":[[[139.8625,35.714582999105396],[139.865625,35.714582999105396],[139.865625,35.71666699910537],[139.8625,35.71666699910537],[139.8625,35.714582999105396]]]},"properties":{"MESHCODE":"5339465933","揺全壊":22.64401}},{"type":"Feature","id":18586,"geometry":{"type":"Polygon","coordinates":[[[139.765625,35.71666699910537],[139.76875,35.71666699910538],[139.76875,35.718749999105356],[139.765625,35.718749999105356],[139.765625,35.71666699910537]]]},"properties":{"MESHCODE":"5339466112","揺全壊":17.15635}},{"type":"Feature","id":18595,"geometry":{"type":"Polygon","coordinates":[[[139.7625,35.72291699910533],[139.765625,35.72291699910533],[139.765625,35.72499999910529],[139.7625,35.72499999910529],[139.7625,35.72291699910533]]]},"properties":{"MESHCODE":"5339466133","揺全壊":21.09351}},{"type":"Feature","id":18614,"geometry":{"type":"Polygon","coordinates":[[[139.784375,35.72083299910535],[139.7875,35.72083299910535],[139.7875,35.72291699910533],[139.784375,35.72291699910533],[139.784375,35.72083299910535]]]},"properties":{"MESHCODE":"5339466242","揺全壊":15.89376}},{"type":"Feature","id":18621,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.71666699910537],[139.796875,35.71666699910537],[139.796875,35.718749999105356],[139.79375,35.718749999105356],[139.79375,35.71666699910537]]]},"properties":{"MESHCODE":"5339466321","揺全壊":19.13502}},{"type":"Feature","id":18624,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.718749999105356],[139.8,35.718749999105356],[139.8,35.72083299910535],[139.796875,35.72083299910535],[139.796875,35.718749999105356]]]},"properties":{"MESHCODE":"5339466324","揺全壊":15.87136}},{"type":"Feature","id":18625,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.72083299910535],[139.790625,35.72083299910535],[139.790625,35.72291699910533],[139.7875,35.72291699910533],[139.7875,35.72083299910535]]]},"properties":{"MESHCODE":"5339466331","揺全壊":24.92586}},{"type":"Feature","id":18635,"geometry":{"type":"Polygon","coordinates":[[[139.8,35.718749999105356],[139.803125,35.718749999105356],[139.803125,35.72083299910535],[139.8,35.72083299910535],[139.8,35.718749999105356]]]},"properties":{"MESHCODE":"5339466413","揺全壊":16.22071}},{"type":"Feature","id":18642,"geometry":{"type":"Polygon","coordinates":[[[139.803125,35.72083299910535],[139.80625,35.72083299910535],[139.80625,35.72291699910533],[139.803125,35.72291699910533],[139.803125,35.72083299910535]]]},"properties":{"MESHCODE":"5339466432","揺全壊":24.68412}},{"type":"Feature","id":18647,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.72291699910533],[139.809375,35.72291699910533],[139.809375,35.72499999910529],[139.80625,35.72499999910529],[139.80625,35.72291699910533]]]},"properties":{"MESHCODE":"5339466443","揺全壊":15.25672}},{"type":"Feature","id":18653,"geometry":{"type":"Polygon","coordinates":[[[139.81875,35.71666699910537],[139.821875,35.71666699910537],[139.821875,35.718749999105356],[139.81875,35.718749999105356],[139.81875,35.71666699910537]]]},"properties":{"MESHCODE":"5339466521","揺全壊":21.9973}},{"type":"Feature","id":18656,"geometry":{"type":"Polygon","coordinates":[[[139.821875,35.718749999105356],[139.825,35.718749999105356],[139.825,35.72083299910535],[139.821875,35.72083299910535],[139.821875,35.718749999105356]]]},"properties":{"MESHCODE":"5339466524","揺全壊":20.02052}},{"type":"Feature","id":18663,"geometry":{"type":"Polygon","coordinates":[[[139.81875,35.72291699910532],[139.821875,35.72291699910533],[139.821875,35.72499999910529],[139.81875,35.72499999910529],[139.81875,35.72291699910532]]]},"properties":{"MESHCODE":"5339466543","揺全壊":16.12888}},{"type":"Feature","id":18673,"geometry":{"type":"Polygon","coordinates":[[[139.825,35.72083299910535],[139.828125,35.72083299910535],[139.828125,35.72291699910533],[139.825,35.72291699910533],[139.825,35.72083299910535]]]},"properties":{"MESHCODE":"5339466631","揺全壊":19.26046}},{"type":"Feature","id":18674,"geometry":{"type":"Polygon","coordinates":[[[139.828125,35.72083299910535],[139.83125,35.72083299910535],[139.83125,35.72291699910533],[139.828125,35.72291699910533],[139.828125,35.72083299910535]]]},"properties":{"MESHCODE":"5339466632","揺全壊":23.44137}},{"type":"Feature","id":18707,"geometry":{"type":"Polygon","coordinates":[[[139.85,35.72291699910533],[139.853125,35.72291699910533],[139.853125,35.72499999910529],[139.85,35.72499999910529],[139.85,35.72291699910533]]]},"properties":{"MESHCODE":"5339466833","揺全壊":18.15002}},{"type":"Feature","id":18742,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.72916699910524],[139.7625,35.72916699910524],[139.7625,35.731249999105245],[139.759375,35.731249999105245],[139.759375,35.72916699910524]]]},"properties":{"MESHCODE":"5339467042","揺全壊":16.12957}},{"type":"Feature","id":18744,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.731249999105245],[139.7625,35.731249999105245],[139.7625,35.733332999105215],[139.759375,35.733332999105215],[139.759375,35.731249999105245]]]},"properties":{"MESHCODE":"5339467044","揺全壊":21.77409}},{"type":"Feature","id":18745,"geometry":{"type":"Polygon","coordinates":[[[139.7625,35.72499999910529],[139.765625,35.72499999910529],[139.765625,35.72708299910527],[139.7625,35.72708299910527],[139.7625,35.72499999910529]]]},"properties":{"MESHCODE":"5339467111","揺全壊":16.29683}},{"type":"Feature","id":18765,"geometry":{"type":"Polygon","coordinates":[[[139.78125,35.72499999910529],[139.784375,35.7249999991053],[139.784375,35.72708299910527],[139.78125,35.72708299910527],[139.78125,35.72499999910529]]]},"properties":{"MESHCODE":"5339467221","揺全壊":17.27518}},{"type":"Feature","id":18768,"geometry":{"type":"Polygon","coordinates":[[[139.784375,35.72708299910527],[139.7875,35.72708299910527],[139.7875,35.72916699910524],[139.784375,35.72916699910524],[139.784375,35.72708299910527]]]},"properties":{"MESHCODE":"5339467224","揺全壊":22.61875}},{"type":"Feature","id":18774,"geometry":{"type":"Polygon","coordinates":[[[139.784375,35.72916699910524],[139.7875,35.72916699910524],[139.7875,35.731249999105245],[139.784375,35.731249999105245],[139.784375,35.72916699910524]]]},"properties":{"MESHCODE":"5339467242","揺全壊":15.9873}},{"type":"Feature","id":18776,"geometry":{"type":"Polygon","coordinates":[[[139.784375,35.731249999105245],[139.7875,35.731249999105245],[139.7875,35.733332999105215],[139.784375,35.73333299910522],[139.784375,35.731249999105245]]]},"properties":{"MESHCODE":"5339467244","揺全壊":20.79702}},{"type":"Feature","id":18780,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.72708299910527],[139.79375,35.72708299910527],[139.79375,35.72916699910524],[139.790625,35.72916699910524],[139.790625,35.72708299910527]]]},"properties":{"MESHCODE":"5339467314","揺全壊":15.79178}},{"type":"Feature","id":18787,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.731249999105245],[139.790625,35.731249999105245],[139.790625,35.733332999105215],[139.7875,35.733332999105215],[139.7875,35.731249999105245]]]},"properties":{"MESHCODE":"5339467333","揺全壊":16.41919}},{"type":"Feature","id":18788,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.731249999105245],[139.79375,35.731249999105245],[139.79375,35.73333299910522],[139.790625,35.733332999105215],[139.790625,35.731249999105245]]]},"properties":{"MESHCODE":"5339467334","揺全壊":22.66098}},{"type":"Feature","id":18796,"geometry":{"type":"Polygon","coordinates":[[[139.803125,35.72708299910527],[139.80625,35.72708299910527],[139.80625,35.72916699910524],[139.803125,35.72916699910524],[139.803125,35.72708299910527]]]},"properties":{"MESHCODE":"5339467414","揺全壊":19.48318}},{"type":"Feature","id":18797,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.72499999910529],[139.809375,35.72499999910529],[139.809375,35.72708299910527],[139.80625,35.72708299910527],[139.80625,35.72499999910529]]]},"properties":{"MESHCODE":"5339467421","揺全壊":16.47164}},{"type":"Feature","id":18807,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.731249999105245],[139.809375,35.731249999105245],[139.809375,35.733332999105215],[139.80625,35.733332999105215],[139.80625,35.731249999105245]]]},"properties":{"MESHCODE":"5339467443","揺全壊":19.68082}},{"type":"Feature","id":18809,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.72499999910529],[139.815625,35.72499999910529],[139.815625,35.72708299910527],[139.8125,35.72708299910527],[139.8125,35.72499999910529]]]},"properties":{"MESHCODE":"5339467511","揺全壊":18.36085}},{"type":"Feature","id":18812,"geometry":{"type":"Polygon","coordinates":[[[139.815625,35.72708299910527],[139.81875,35.72708299910527],[139.81875,35.72916699910524],[139.815625,35.72916699910524],[139.815625,35.72708299910527]]]},"properties":{"MESHCODE":"5339467514","揺全壊":23.91187}},{"type":"Feature","id":18820,"geometry":{"type":"Polygon","coordinates":[[[139.815625,35.731249999105245],[139.81875,35.731249999105245],[139.81875,35.73333299910522],[139.815625,35.733332999105215],[139.815625,35.731249999105245]]]},"properties":{"MESHCODE":"5339467534","揺全壊":23.82067}},{"type":"Feature","id":18823,"geometry":{"type":"Polygon","coordinates":[[[139.81875,35.731249999105245],[139.821875,35.731249999105245],[139.821875,35.733332999105215],[139.81875,35.73333299910522],[139.81875,35.731249999105245]]]},"properties":{"MESHCODE":"5339467543","揺全壊":15.26439}},{"type":"Feature","id":18825,"geometry":{"type":"Polygon","coordinates":[[[139.825,35.72499999910529],[139.828125,35.72499999910529],[139.828125,35.72708299910527],[139.825,35.72708299910527],[139.825,35.72499999910529]]]},"properties":{"MESHCODE":"5339467611","揺全壊":20.22177}},{"type":"Feature","id":18827,"geometry":{"type":"Polygon","coordinates":[[[139.825,35.72708299910527],[139.828125,35.72708299910527],[139.828125,35.72916699910524],[139.825,35.72916699910524],[139.825,35.72708299910527]]]},"properties":{"MESHCODE":"5339467613","揺全壊":16.49338}},{"type":"Feature","id":18851,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.731249999105245],[139.840625,35.731249999105245],[139.840625,35.733332999105215],[139.8375,35.73333299910522],[139.8375,35.731249999105245]]]},"properties":{"MESHCODE":"5339467733","揺全壊":15.49921}},{"type":"Feature","id":18864,"geometry":{"type":"Polygon","coordinates":[[[139.859375,35.72708299910527],[139.8625,35.72708299910527],[139.8625,35.72916699910524],[139.859375,35.72916699910524],[139.859375,35.72708299910527]]]},"properties":{"MESHCODE":"5339467824","揺全壊":18.3531}},{"type":"Feature","id":18867,"geometry":{"type":"Polygon","coordinates":[[[139.85,35.731249999105245],[139.853125,35.731249999105245],[139.853125,35.733332999105215],[139.85,35.733332999105215],[139.85,35.731249999105245]]]},"properties":{"MESHCODE":"5339467833","揺全壊":20.33558}},{"type":"Feature","id":18872,"geometry":{"type":"Polygon","coordinates":[[[139.859375,35.731249999105245],[139.8625,35.731249999105245],[139.8625,35.733332999105215],[139.859375,35.73333299910522],[139.859375,35.731249999105245]]]},"properties":{"MESHCODE":"5339467844","揺全壊":20.20737}},{"type":"Feature","id":18897,"geometry":{"type":"Polygon","coordinates":[[[139.75,35.73749999910516],[139.753125,35.73749999910516],[139.753125,35.739582999105124],[139.75,35.73958299910514],[139.75,35.73749999910516]]]},"properties":{"MESHCODE":"5339468031","揺全壊":17.6242}},{"type":"Feature","id":18918,"geometry":{"type":"Polygon","coordinates":[[[139.771875,35.73749999910516],[139.775,35.73749999910516],[139.775,35.73958299910514],[139.771875,35.739582999105124],[139.771875,35.73749999910516]]]},"properties":{"MESHCODE":"5339468142","揺全壊":19.85722}},{"type":"Feature","id":18921,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.733332999105215],[139.778125,35.733332999105215],[139.778125,35.73541699910518],[139.775,35.73541699910518],[139.775,35.733332999105215]]]},"properties":{"MESHCODE":"5339468211","揺全壊":16.081}},{"type":"Feature","id":18923,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.73541699910518],[139.778125,35.73541699910518],[139.778125,35.73749999910516],[139.775,35.73749999910516],[139.775,35.73541699910518]]]},"properties":{"MESHCODE":"5339468213","揺全壊":21.95089}},{"type":"Feature","id":18929,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.73749999910516],[139.778125,35.73749999910516],[139.778125,35.73958299910514],[139.775,35.73958299910514],[139.775,35.73749999910516]]]},"properties":{"MESHCODE":"5339468231","揺全壊":24.81622}},{"type":"Feature","id":18944,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.73541699910518],[139.8,35.73541699910518],[139.8,35.73749999910516],[139.796875,35.73749999910516],[139.796875,35.73541699910518]]]},"properties":{"MESHCODE":"5339468324","揺全壊":20.16898}},{"type":"Feature","id":18949,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.73749999910516],[139.796875,35.73749999910516],[139.796875,35.73958299910514],[139.79375,35.739582999105146],[139.79375,35.73749999910516]]]},"properties":{"MESHCODE":"5339468341","揺全壊":23.33161}},{"type":"Feature","id":18975,"geometry":{"type":"Polygon","coordinates":[[[139.81875,35.73541699910518],[139.821875,35.73541699910518],[139.821875,35.73749999910516],[139.81875,35.73749999910516],[139.81875,35.73541699910518]]]},"properties":{"MESHCODE":"5339468523","揺全壊":18.35517}},{"type":"Feature","id":18994,"geometry":{"type":"Polygon","coordinates":[[[139.828125,35.73749999910516],[139.83125,35.73749999910516],[139.83125,35.73958299910514],[139.828125,35.73958299910514],[139.828125,35.73749999910516]]]},"properties":{"MESHCODE":"5339468632","揺全壊":16.94314}},{"type":"Feature","id":18997,"geometry":{"type":"Polygon","coordinates":[[[139.83125,35.73749999910516],[139.834375,35.73749999910516],[139.834375,35.73958299910514],[139.83125,35.73958299910514],[139.83125,35.73749999910516]]]},"properties":{"MESHCODE":"5339468641","揺全壊":15.97827}},{"type":"Feature","id":19001,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.73333299910522],[139.840625,35.733332999105215],[139.840625,35.73541699910518],[139.8375,35.73541699910518],[139.8375,35.73333299910522]]]},"properties":{"MESHCODE":"5339468711","揺全壊":19.25288}},{"type":"Feature","id":19004,"geometry":{"type":"Polygon","coordinates":[[[139.840625,35.73541699910518],[139.84375,35.73541699910518],[139.84375,35.737499999105154],[139.840625,35.73749999910516],[139.840625,35.73541699910518]]]},"properties":{"MESHCODE":"5339468714","揺全壊":21.295}},{"type":"Feature","id":19005,"geometry":{"type":"Polygon","coordinates":[[[139.84375,35.733332999105215],[139.846875,35.733332999105215],[139.846875,35.73541699910518],[139.84375,35.73541699910518],[139.84375,35.733332999105215]]]},"properties":{"MESHCODE":"5339468721","揺全壊":17.66199}},{"type":"Feature","id":19007,"geometry":{"type":"Polygon","coordinates":[[[139.84375,35.73541699910518],[139.846875,35.73541699910518],[139.846875,35.73749999910516],[139.84375,35.737499999105154],[139.84375,35.73541699910518]]]},"properties":{"MESHCODE":"5339468723","揺全壊":18.80072}},{"type":"Feature","id":19008,"geometry":{"type":"Polygon","coordinates":[[[139.846875,35.73541699910518],[139.85,35.73541699910518],[139.85,35.73749999910516],[139.846875,35.73749999910516],[139.846875,35.73541699910518]]]},"properties":{"MESHCODE":"5339468724","揺全壊":17.28109}},{"type":"Feature","id":19011,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.73958299910514],[139.840625,35.73958299910514],[139.840625,35.741666999105114],[139.8375,35.741666999105114],[139.8375,35.73958299910514]]]},"properties":{"MESHCODE":"5339468733","揺全壊":15.34503}},{"type":"Feature","id":19017,"geometry":{"type":"Polygon","coordinates":[[[139.85,35.733332999105215],[139.853125,35.733332999105215],[139.853125,35.73541699910518],[139.85,35.73541699910518],[139.85,35.733332999105215]]]},"properties":{"MESHCODE":"5339468811","揺全壊":21.28643}},{"type":"Feature","id":19056,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.74374999910509],[139.7625,35.74374999910509],[139.7625,35.74583299910506],[139.759375,35.74583299910506],[139.759375,35.74374999910509]]]},"properties":{"MESHCODE":"5339469024","揺全壊":17.54085}},{"type":"Feature","id":19059,"geometry":{"type":"Polygon","coordinates":[[[139.75,35.747916999105065],[139.753125,35.747916999105065],[139.753125,35.749999999105036],[139.75,35.749999999105036],[139.75,35.747916999105065]]]},"properties":{"MESHCODE":"5339469033","揺全壊":19.95635}},{"type":"Feature","id":19060,"geometry":{"type":"Polygon","coordinates":[[[139.753125,35.747916999105065],[139.75625,35.747916999105065],[139.75625,35.749999999105036],[139.753125,35.749999999105036],[139.753125,35.747916999105065]]]},"properties":{"MESHCODE":"5339469034","揺全壊":19.04419}},{"type":"Feature","id":19061,"geometry":{"type":"Polygon","coordinates":[[[139.75625,35.74583299910506],[139.759375,35.74583299910506],[139.759375,35.747916999105065],[139.75625,35.747916999105065],[139.75625,35.74583299910506]]]},"properties":{"MESHCODE":"5339469041","揺全壊":21.49122}},{"type":"Feature","id":19067,"geometry":{"type":"Polygon","coordinates":[[[139.7625,35.74374999910509],[139.765625,35.74374999910509],[139.765625,35.74583299910506],[139.7625,35.74583299910506],[139.7625,35.74374999910509]]]},"properties":{"MESHCODE":"5339469113","揺全壊":22.35329}},{"type":"Feature","id":19069,"geometry":{"type":"Polygon","coordinates":[[[139.76875,35.741666999105114],[139.771875,35.741666999105114],[139.771875,35.74374999910509],[139.76875,35.74374999910509],[139.76875,35.741666999105114]]]},"properties":{"MESHCODE":"5339469121","揺全壊":20.43794}},{"type":"Feature","id":19071,"geometry":{"type":"Polygon","coordinates":[[[139.76875,35.74374999910509],[139.771875,35.74374999910509],[139.771875,35.74583299910507],[139.76875,35.74583299910506],[139.76875,35.74374999910509]]]},"properties":{"MESHCODE":"5339469123","揺全壊":23.61403}},{"type":"Feature","id":19099,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.74374999910509],[139.790625,35.74374999910509],[139.790625,35.74583299910506],[139.7875,35.74583299910506],[139.7875,35.74374999910509]]]},"properties":{"MESHCODE":"5339469313","揺全壊":16.39556}},{"type":"Feature","id":19102,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.741666999105114],[139.8,35.741666999105114],[139.8,35.74374999910509],[139.796875,35.74374999910509],[139.796875,35.741666999105114]]]},"properties":{"MESHCODE":"5339469322","揺全壊":24.15856}},{"type":"Feature","id":19103,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.74374999910509],[139.796875,35.74374999910509],[139.796875,35.74583299910506],[139.79375,35.74583299910507],[139.79375,35.74374999910509]]]},"properties":{"MESHCODE":"5339469323","揺全壊":23.99348}},{"type":"Feature","id":19104,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.74374999910509],[139.8,35.74374999910509],[139.8,35.74583299910506],[139.796875,35.74583299910506],[139.796875,35.74374999910509]]]},"properties":{"MESHCODE":"5339469324","揺全壊":19.56571}},{"type":"Feature","id":19105,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.74583299910506],[139.790625,35.74583299910506],[139.790625,35.747916999105065],[139.7875,35.747916999105065],[139.7875,35.74583299910506]]]},"properties":{"MESHCODE":"5339469331","揺全壊":18.07816}},{"type":"Feature","id":19109,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.74583299910507],[139.796875,35.74583299910506],[139.796875,35.747916999105065],[139.79375,35.747916999105065],[139.79375,35.74583299910507]]]},"properties":{"MESHCODE":"5339469341","揺全壊":24.13036}},{"type":"Feature","id":19111,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.747916999105065],[139.796875,35.747916999105065],[139.796875,35.749999999105036],[139.79375,35.749999999105036],[139.79375,35.747916999105065]]]},"properties":{"MESHCODE":"5339469343","揺全壊":22.73125}},{"type":"Feature","id":19113,"geometry":{"type":"Polygon","coordinates":[[[139.8,35.741666999105114],[139.803125,35.741666999105114],[139.803125,35.74374999910509],[139.8,35.74374999910509],[139.8,35.741666999105114]]]},"properties":{"MESHCODE":"5339469411","揺全壊":24.90919}},{"type":"Feature","id":19119,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.74374999910509],[139.809375,35.74374999910509],[139.809375,35.74583299910506],[139.80625,35.74583299910506],[139.80625,35.74374999910509]]]},"properties":{"MESHCODE":"5339469423","揺全壊":19.19628}},{"type":"Feature","id":19120,"geometry":{"type":"Polygon","coordinates":[[[139.809375,35.74374999910509],[139.8125,35.74374999910509],[139.8125,35.74583299910506],[139.809375,35.74583299910506],[139.809375,35.74374999910509]]]},"properties":{"MESHCODE":"5339469424","揺全壊":16.0539}},{"type":"Feature","id":19127,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.747916999105065],[139.809375,35.747916999105065],[139.809375,35.749999999105036],[139.80625,35.749999999105036],[139.80625,35.747916999105065]]]},"properties":{"MESHCODE":"5339469443","揺全壊":18.75043}},{"type":"Feature","id":19129,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.741666999105114],[139.815625,35.741666999105114],[139.815625,35.74374999910509],[139.8125,35.74374999910509],[139.8125,35.741666999105114]]]},"properties":{"MESHCODE":"5339469511","揺全壊":16.31262}},{"type":"Feature","id":19149,"geometry":{"type":"Polygon","coordinates":[[[139.83125,35.741666999105114],[139.834375,35.741666999105114],[139.834375,35.743749999105084],[139.83125,35.74374999910509],[139.83125,35.741666999105114]]]},"properties":{"MESHCODE":"5339469621","揺全壊":21.47701}},{"type":"Feature","id":19152,"geometry":{"type":"Polygon","coordinates":[[[139.834375,35.743749999105084],[139.8375,35.743749999105084],[139.8375,35.74583299910507],[139.834375,35.74583299910507],[139.834375,35.743749999105084]]]},"properties":{"MESHCODE":"5339469624","揺全壊":18.41209}},{"type":"Feature","id":19158,"geometry":{"type":"Polygon","coordinates":[[[139.834375,35.74583299910507],[139.8375,35.74583299910507],[139.8375,35.747916999105065],[139.834375,35.747916999105065],[139.834375,35.74583299910507]]]},"properties":{"MESHCODE":"5339469642","揺全壊":20.26673}},{"type":"Feature","id":19160,"geometry":{"type":"Polygon","coordinates":[[[139.834375,35.747916999105065],[139.8375,35.747916999105065],[139.8375,35.749999999105036],[139.834375,35.749999999105036],[139.834375,35.747916999105065]]]},"properties":{"MESHCODE":"5339469644","揺全壊":19.66465}},{"type":"Feature","id":19163,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.743749999105084],[139.840625,35.74374999910509],[139.840625,35.74583299910506],[139.8375,35.74583299910507],[139.8375,35.743749999105084]]]},"properties":{"MESHCODE":"5339469713","揺全壊":20.42673}},{"type":"Feature","id":19172,"geometry":{"type":"Polygon","coordinates":[[[139.840625,35.747916999105065],[139.84375,35.747916999105065],[139.84375,35.749999999105036],[139.840625,35.749999999105036],[139.840625,35.747916999105065]]]},"properties":{"MESHCODE":"5339469734","揺全壊":19.95956}},{"type":"Feature","id":23778,"geometry":{"type":"Polygon","coordinates":[[[139.303125,35.8020829991045],[139.30625,35.8020829991045],[139.30625,35.80416699910447],[139.303125,35.80416699910447],[139.303125,35.8020829991045]]]},"properties":{"MESHCODE":"5339526414","揺全壊":16.1753}},{"type":"Feature","id":25210,"geometry":{"type":"Polygon","coordinates":[[[139.746875,35.749999999105036],[139.75,35.749999999105036],[139.75,35.75208299910503],[139.746875,35.75208299910503],[139.746875,35.749999999105036]]]},"properties":{"MESHCODE":"5339550922","揺全壊":19.94746}},{"type":"Feature","id":25215,"geometry":{"type":"Polygon","coordinates":[[[139.7375,35.75624999910496],[139.740625,35.75624999910496],[139.740625,35.75833299910495],[139.7375,35.75833299910495],[139.7375,35.75624999910496]]]},"properties":{"MESHCODE":"5339550933","揺全壊":19.25496}},{"type":"Feature","id":25216,"geometry":{"type":"Polygon","coordinates":[[[139.740625,35.75624999910496],[139.74375,35.75624999910496],[139.74375,35.75833299910495],[139.740625,35.75833299910495],[139.740625,35.75624999910496]]]},"properties":{"MESHCODE":"5339550934","揺全壊":19.02271}},{"type":"Feature","id":25217,"geometry":{"type":"Polygon","coordinates":[[[139.74375,35.75416699910498],[139.746875,35.75416699910498],[139.746875,35.75624999910496],[139.74375,35.75624999910496],[139.74375,35.75416699910498]]]},"properties":{"MESHCODE":"5339550941","揺全壊":16.74631}},{"type":"Feature","id":25218,"geometry":{"type":"Polygon","coordinates":[[[139.746875,35.75416699910498],[139.75,35.75416699910498],[139.75,35.75624999910496],[139.746875,35.75624999910496],[139.746875,35.75416699910498]]]},"properties":{"MESHCODE":"5339550942","揺全壊":15.79481}},{"type":"Feature","id":25219,"geometry":{"type":"Polygon","coordinates":[[[139.74375,35.75624999910496],[139.746875,35.75624999910496],[139.746875,35.75833299910495],[139.74375,35.75833299910495],[139.74375,35.75624999910496]]]},"properties":{"MESHCODE":"5339550943","揺全壊":17.07045}},{"type":"Feature","id":25248,"geometry":{"type":"Polygon","coordinates":[[[139.640625,35.764582999104874],[139.64375,35.76458299910489],[139.64375,35.766666999104864],[139.640625,35.766666999104864],[139.640625,35.764582999104874]]]},"properties":{"MESHCODE":"5339551134","揺全壊":19.39078}},{"type":"Feature","id":25364,"geometry":{"type":"Polygon","coordinates":[[[139.734375,35.76458299910489],[139.7375,35.764582999104874],[139.7375,35.766666999104864],[139.734375,35.766666999104864],[139.734375,35.76458299910489]]]},"properties":{"MESHCODE":"5339551844","揺全壊":21.2453}},{"type":"Feature","id":25368,"geometry":{"type":"Polygon","coordinates":[[[139.740625,35.76041699910492],[139.74375,35.76041699910492],[139.74375,35.762499999104904],[139.740625,35.762499999104904],[139.740625,35.76041699910492]]]},"properties":{"MESHCODE":"5339551914","揺全壊":19.40449}},{"type":"Feature","id":25374,"geometry":{"type":"Polygon","coordinates":[[[139.740625,35.762499999104904],[139.74375,35.762499999104904],[139.74375,35.764582999104874],[139.740625,35.764582999104874],[139.740625,35.762499999104904]]]},"properties":{"MESHCODE":"5339551932","揺全壊":22.21062}},{"type":"Feature","id":25405,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.770832999104826],[139.640625,35.770832999104826],[139.640625,35.77291699910479],[139.6375,35.7729169991048],[139.6375,35.770832999104826]]]},"properties":{"MESHCODE":"5339552131","揺全壊":15.97429}},{"type":"Feature","id":25407,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.7729169991048],[139.640625,35.77291699910479],[139.640625,35.77499999910478],[139.6375,35.77499999910478],[139.6375,35.7729169991048]]]},"properties":{"MESHCODE":"5339552133","揺全壊":23.01254}},{"type":"Feature","id":25466,"geometry":{"type":"Polygon","coordinates":[[[139.696875,35.766666999104864],[139.7,35.766666999104864],[139.7,35.768749999104834],[139.696875,35.768749999104834],[139.696875,35.766666999104864]]]},"properties":{"MESHCODE":"5339552522","揺全壊":16.41569}},{"type":"Feature","id":25512,"geometry":{"type":"Polygon","coordinates":[[[139.728125,35.768749999104834],[139.73125,35.76874999910485],[139.73125,35.770832999104826],[139.728125,35.770832999104826],[139.728125,35.768749999104834]]]},"properties":{"MESHCODE":"5339552814","揺全壊":21.53552}},{"type":"Feature","id":25515,"geometry":{"type":"Polygon","coordinates":[[[139.73125,35.76874999910485],[139.734375,35.768749999104834],[139.734375,35.770832999104826],[139.73125,35.770832999104826],[139.73125,35.76874999910485]]]},"properties":{"MESHCODE":"5339552823","揺全壊":23.70301}},{"type":"Feature","id":25516,"geometry":{"type":"Polygon","coordinates":[[[139.734375,35.768749999104834],[139.7375,35.768749999104834],[139.7375,35.770832999104826],[139.734375,35.770832999104826],[139.734375,35.768749999104834]]]},"properties":{"MESHCODE":"5339552824","揺全壊":16.18332}},{"type":"Feature","id":25518,"geometry":{"type":"Polygon","coordinates":[[[139.728125,35.770832999104826],[139.73125,35.770832999104826],[139.73125,35.7729169991048],[139.728125,35.7729169991048],[139.728125,35.770832999104826]]]},"properties":{"MESHCODE":"5339552832","揺全壊":20.99894}},{"type":"Feature","id":25528,"geometry":{"type":"Polygon","coordinates":[[[139.740625,35.76874999910483],[139.74375,35.768749999104834],[139.74375,35.770832999104826],[139.740625,35.770832999104826],[139.740625,35.76874999910483]]]},"properties":{"MESHCODE":"5339552914","揺全壊":17.55534}},{"type":"Feature","id":25533,"geometry":{"type":"Polygon","coordinates":[[[139.7375,35.770832999104826],[139.740625,35.770832999104826],[139.740625,35.7729169991048],[139.7375,35.77291699910479],[139.7375,35.770832999104826]]]},"properties":{"MESHCODE":"5339552931","揺全壊":19.12531}},{"type":"Feature","id":25535,"geometry":{"type":"Polygon","coordinates":[[[139.7375,35.77291699910479],[139.740625,35.7729169991048],[139.740625,35.77499999910477],[139.7375,35.77499999910478],[139.7375,35.77291699910479]]]},"properties":{"MESHCODE":"5339552933","揺全壊":15.43303}},{"type":"Feature","id":25578,"geometry":{"type":"Polygon","coordinates":[[[139.659375,35.77499999910478],[139.6625,35.77499999910477],[139.6625,35.777082999104756],[139.659375,35.77708299910477],[139.659375,35.77499999910478]]]},"properties":{"MESHCODE":"5339553222","揺全壊":22.9774}},{"type":"Feature","id":25592,"geometry":{"type":"Polygon","coordinates":[[[139.665625,35.777082999104756],[139.66875,35.777082999104756],[139.66875,35.779166999104746],[139.665625,35.779166999104746],[139.665625,35.777082999104756]]]},"properties":{"MESHCODE":"5339553314","揺全壊":23.92292}},{"type":"Feature","id":25615,"geometry":{"type":"Polygon","coordinates":[[[139.675,35.78124999910471],[139.678125,35.78124999910471],[139.678125,35.783332999104694],[139.675,35.783332999104694],[139.675,35.78124999910471]]]},"properties":{"MESHCODE":"5339553433","揺全壊":24.90338}},{"type":"Feature","id":25671,"geometry":{"type":"Polygon","coordinates":[[[139.725,35.777082999104756],[139.728125,35.777082999104756],[139.728125,35.779166999104746],[139.725,35.779166999104746],[139.725,35.777082999104756]]]},"properties":{"MESHCODE":"5339553813","揺全壊":19.79746}},{"type":"Feature","id":25672,"geometry":{"type":"Polygon","coordinates":[[[139.728125,35.777082999104756],[139.73125,35.777082999104756],[139.73125,35.779166999104746],[139.728125,35.779166999104746],[139.728125,35.777082999104756]]]},"properties":{"MESHCODE":"5339553814","揺全壊":21.11374}},{"type":"Feature","id":25674,"geometry":{"type":"Polygon","coordinates":[[[139.734375,35.77499999910478],[139.7375,35.77499999910478],[139.7375,35.77708299910474],[139.734375,35.777082999104756],[139.734375,35.77499999910478]]]},"properties":{"MESHCODE":"5339553822","揺全壊":17.6884}},{"type":"Feature","id":25676,"geometry":{"type":"Polygon","coordinates":[[[139.734375,35.777082999104756],[139.7375,35.77708299910474],[139.7375,35.779166999104746],[139.734375,35.779166999104746],[139.734375,35.777082999104756]]]},"properties":{"MESHCODE":"5339553824","揺全壊":17.78386}},{"type":"Feature","id":25678,"geometry":{"type":"Polygon","coordinates":[[[139.728125,35.779166999104746],[139.73125,35.779166999104746],[139.73125,35.78124999910471],[139.728125,35.78124999910471],[139.728125,35.779166999104746]]]},"properties":{"MESHCODE":"5339553832","揺全壊":22.34172}},{"type":"Feature","id":25679,"geometry":{"type":"Polygon","coordinates":[[[139.725,35.78124999910471],[139.728125,35.78124999910471],[139.728125,35.783332999104694],[139.725,35.783332999104694],[139.725,35.78124999910471]]]},"properties":{"MESHCODE":"5339553833","揺全壊":22.66576}},{"type":"Feature","id":25681,"geometry":{"type":"Polygon","coordinates":[[[139.73125,35.779166999104746],[139.734375,35.779166999104746],[139.734375,35.78124999910471],[139.73125,35.78124999910471],[139.73125,35.779166999104746]]]},"properties":{"MESHCODE":"5339553841","揺全壊":23.669}},{"type":"Feature","id":25682,"geometry":{"type":"Polygon","coordinates":[[[139.734375,35.779166999104746],[139.7375,35.779166999104746],[139.7375,35.78124999910471],[139.734375,35.78124999910471],[139.734375,35.779166999104746]]]},"properties":{"MESHCODE":"5339553842","揺全壊":22.59831}},{"type":"Feature","id":25698,"geometry":{"type":"Polygon","coordinates":[[[139.746875,35.779166999104746],[139.75,35.779166999104746],[139.75,35.78124999910471],[139.746875,35.78124999910471],[139.746875,35.779166999104746]]]},"properties":{"MESHCODE":"5339553942","揺全壊":18.10151}},{"type":"Feature","id":25719,"geometry":{"type":"Polygon","coordinates":[[[139.646875,35.78541699910467],[139.65,35.78541699910469],[139.65,35.78749999910465],[139.646875,35.78749999910465],[139.646875,35.78541699910467]]]},"properties":{"MESHCODE":"5339554124","揺全壊":15.63318}},{"type":"Feature","id":25724,"geometry":{"type":"Polygon","coordinates":[[[139.64375,35.78749999910465],[139.646875,35.78749999910465],[139.646875,35.789582999104624],[139.64375,35.789582999104624],[139.64375,35.78749999910465]]]},"properties":{"MESHCODE":"5339554141","揺全壊":15.26487}},{"type":"Feature","id":25760,"geometry":{"type":"Polygon","coordinates":[[[139.675,35.783332999104694],[139.678125,35.783332999104694],[139.678125,35.78541699910467],[139.675,35.78541699910467],[139.675,35.783332999104694]]]},"properties":{"MESHCODE":"5339554411","揺全壊":15.5922}},{"type":"Feature","id":25813,"geometry":{"type":"Polygon","coordinates":[[[139.721875,35.7833329991047],[139.725,35.783332999104694],[139.725,35.78541699910469],[139.721875,35.78541699910469],[139.721875,35.7833329991047]]]},"properties":{"MESHCODE":"5339554722","揺全壊":20.49729}},{"type":"Feature","id":25864,"geometry":{"type":"Polygon","coordinates":[[[139.65625,35.79166699910459],[139.659375,35.79166699910459],[139.659375,35.793749999104605],[139.65625,35.79374999910459],[139.65625,35.79166699910459]]]},"properties":{"MESHCODE":"5339555221","揺全壊":18.2622}},{"type":"Feature","id":25910,"geometry":{"type":"Polygon","coordinates":[[[139.6875,35.79374999910459],[139.690625,35.79374999910459],[139.690625,35.795832999104555],[139.6875,35.795832999104555],[139.6875,35.79374999910459]]]},"properties":{"MESHCODE":"5339555513","揺全壊":18.10294}},{"type":"Feature","id":25961,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.75624999910496],[139.7625,35.75624999910496],[139.7625,35.75833299910495],[139.759375,35.75833299910495],[139.759375,35.75624999910496]]]},"properties":{"MESHCODE":"5339560044","揺全壊":21.1262}},{"type":"Feature","id":25972,"geometry":{"type":"Polygon","coordinates":[[[139.7625,35.75624999910496],[139.765625,35.75624999910496],[139.765625,35.75833299910495],[139.7625,35.75833299910495],[139.7625,35.75624999910496]]]},"properties":{"MESHCODE":"5339560133","揺全壊":15.25719}},{"type":"Feature","id":26001,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.75208299910503],[139.8,35.75208299910503],[139.8,35.75416699910498],[139.796875,35.75416699910498],[139.796875,35.75208299910503]]]},"properties":{"MESHCODE":"5339560324","揺全壊":21.60994}},{"type":"Feature","id":26005,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.75624999910496],[139.79375,35.75624999910497],[139.79375,35.75833299910496],[139.790625,35.75833299910495],[139.790625,35.75624999910496]]]},"properties":{"MESHCODE":"5339560334","揺全壊":15.78784}},{"type":"Feature","id":26013,"geometry":{"type":"Polygon","coordinates":[[[139.803125,35.75208299910503],[139.80625,35.75208299910503],[139.80625,35.75416699910498],[139.803125,35.754166999104996],[139.803125,35.75208299910503]]]},"properties":{"MESHCODE":"5339560414","揺全壊":17.25183}},{"type":"Feature","id":26016,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.75208299910503],[139.809375,35.75208299910503],[139.809375,35.75416699910498],[139.80625,35.75416699910498],[139.80625,35.75208299910503]]]},"properties":{"MESHCODE":"5339560423","揺全壊":18.44837}},{"type":"Feature","id":26017,"geometry":{"type":"Polygon","coordinates":[[[139.809375,35.75208299910503],[139.8125,35.75208299910503],[139.8125,35.75416699910498],[139.809375,35.75416699910498],[139.809375,35.75208299910503]]]},"properties":{"MESHCODE":"5339560424","揺全壊":15.06531}},{"type":"Feature","id":26018,"geometry":{"type":"Polygon","coordinates":[[[139.8,35.75416699910498],[139.803125,35.754166999104996],[139.803125,35.75624999910497],[139.8,35.75624999910496],[139.8,35.75416699910498]]]},"properties":{"MESHCODE":"5339560431","揺全壊":19.7686}},{"type":"Feature","id":26035,"geometry":{"type":"Polygon","coordinates":[[[139.815625,35.75416699910498],[139.81875,35.75416699910498],[139.81875,35.75624999910496],[139.815625,35.75624999910496],[139.815625,35.75416699910498]]]},"properties":{"MESHCODE":"5339560532","揺全壊":15.56885}},{"type":"Feature","id":26046,"geometry":{"type":"Polygon","coordinates":[[[139.83125,35.749999999105036],[139.834375,35.749999999105036],[139.834375,35.75208299910503],[139.83125,35.75208299910503],[139.83125,35.749999999105036]]]},"properties":{"MESHCODE":"5339560621","揺全壊":15.60685}},{"type":"Feature","id":26051,"geometry":{"type":"Polygon","coordinates":[[[139.828125,35.75416699910498],[139.83125,35.75416699910498],[139.83125,35.75624999910496],[139.828125,35.75624999910496],[139.828125,35.75416699910498]]]},"properties":{"MESHCODE":"5339560632","揺全壊":17.13778}},{"type":"Feature","id":26052,"geometry":{"type":"Polygon","coordinates":[[[139.825,35.75624999910496],[139.828125,35.75624999910496],[139.828125,35.75833299910495],[139.825,35.75833299910495],[139.825,35.75624999910496]]]},"properties":{"MESHCODE":"5339560633","揺全壊":21.80595}},{"type":"Feature","id":26053,"geometry":{"type":"Polygon","coordinates":[[[139.828125,35.75624999910496],[139.83125,35.75624999910496],[139.83125,35.75833299910495],[139.828125,35.75833299910495],[139.828125,35.75624999910496]]]},"properties":{"MESHCODE":"5339560634","揺全壊":15.95769}},{"type":"Feature","id":26054,"geometry":{"type":"Polygon","coordinates":[[[139.83125,35.75416699910498],[139.834375,35.75416699910498],[139.834375,35.75624999910496],[139.83125,35.75624999910496],[139.83125,35.75416699910498]]]},"properties":{"MESHCODE":"5339560641","揺全壊":15.95934}},{"type":"Feature","id":26107,"geometry":{"type":"Polygon","coordinates":[[[139.753125,35.75833299910495],[139.75625,35.75833299910495],[139.75625,35.76041699910492],[139.753125,35.76041699910492],[139.753125,35.75833299910495]]]},"properties":{"MESHCODE":"5339561012","揺全壊":20.68787}},{"type":"Feature","id":26110,"geometry":{"type":"Polygon","coordinates":[[[139.75625,35.75833299910495],[139.759375,35.75833299910495],[139.759375,35.76041699910492],[139.75625,35.76041699910492],[139.75625,35.75833299910495]]]},"properties":{"MESHCODE":"5339561021","揺全壊":19.44814}},{"type":"Feature","id":26129,"geometry":{"type":"Polygon","coordinates":[[[139.771875,35.76041699910492],[139.775,35.76041699910492],[139.775,35.762499999104904],[139.771875,35.762499999104904],[139.771875,35.76041699910492]]]},"properties":{"MESHCODE":"5339561124","揺全壊":18.89178}},{"type":"Feature","id":26131,"geometry":{"type":"Polygon","coordinates":[[[139.765625,35.762499999104904],[139.76875,35.762499999104904],[139.76875,35.76458299910489],[139.765625,35.76458299910489],[139.765625,35.762499999104904]]]},"properties":{"MESHCODE":"5339561132","揺全壊":21.86914}},{"type":"Feature","id":26133,"geometry":{"type":"Polygon","coordinates":[[[139.765625,35.76458299910489],[139.76875,35.76458299910489],[139.76875,35.766666999104864],[139.765625,35.766666999104864],[139.765625,35.76458299910489]]]},"properties":{"MESHCODE":"5339561134","揺全壊":17.75928}},{"type":"Feature","id":26149,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.76458299910489],[139.78125,35.764582999104874],[139.78125,35.76666699910486],[139.778125,35.766666999104864],[139.778125,35.76458299910489]]]},"properties":{"MESHCODE":"5339561234","揺全壊":21.3128}},{"type":"Feature","id":26173,"geometry":{"type":"Polygon","coordinates":[[[139.803125,35.76041699910492],[139.80625,35.76041699910492],[139.80625,35.762499999104904],[139.803125,35.762499999104904],[139.803125,35.76041699910492]]]},"properties":{"MESHCODE":"5339561414","揺全壊":19.85759}},{"type":"Feature","id":26176,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.76041699910492],[139.809375,35.76041699910492],[139.809375,35.762499999104904],[139.80625,35.762499999104904],[139.80625,35.76041699910492]]]},"properties":{"MESHCODE":"5339561423","揺全壊":21.62972}},{"type":"Feature","id":26177,"geometry":{"type":"Polygon","coordinates":[[[139.809375,35.76041699910492],[139.8125,35.76041699910492],[139.8125,35.762499999104904],[139.809375,35.762499999104904],[139.809375,35.76041699910492]]]},"properties":{"MESHCODE":"5339561424","揺全壊":16.35782}},{"type":"Feature","id":26182,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.762499999104904],[139.809375,35.762499999104904],[139.809375,35.76458299910489],[139.80625,35.76458299910489],[139.80625,35.762499999104904]]]},"properties":{"MESHCODE":"5339561441","揺全壊":24.32499}},{"type":"Feature","id":26188,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.76041699910492],[139.815625,35.76041699910492],[139.815625,35.762499999104904],[139.8125,35.762499999104904],[139.8125,35.76041699910492]]]},"properties":{"MESHCODE":"5339561513","揺全壊":15.76778}},{"type":"Feature","id":26190,"geometry":{"type":"Polygon","coordinates":[[[139.81875,35.75833299910496],[139.821875,35.75833299910495],[139.821875,35.76041699910492],[139.81875,35.76041699910492],[139.81875,35.75833299910496]]]},"properties":{"MESHCODE":"5339561521","揺全壊":23.42503}},{"type":"Feature","id":26191,"geometry":{"type":"Polygon","coordinates":[[[139.821875,35.75833299910495],[139.825,35.75833299910495],[139.825,35.76041699910492],[139.821875,35.76041699910492],[139.821875,35.75833299910495]]]},"properties":{"MESHCODE":"5339561522","揺全壊":23.86737}},{"type":"Feature","id":26194,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.762499999104904],[139.815625,35.762499999104904],[139.815625,35.764582999104874],[139.8125,35.76458299910489],[139.8125,35.762499999104904]]]},"properties":{"MESHCODE":"5339561531","揺全壊":22.60589}},{"type":"Feature","id":26195,"geometry":{"type":"Polygon","coordinates":[[[139.815625,35.762499999104904],[139.81875,35.762499999104904],[139.81875,35.76458299910489],[139.815625,35.764582999104874],[139.815625,35.762499999104904]]]},"properties":{"MESHCODE":"5339561532","揺全壊":17.91975}},{"type":"Feature","id":26196,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.76458299910489],[139.815625,35.764582999104874],[139.815625,35.766666999104864],[139.8125,35.766666999104864],[139.8125,35.76458299910489]]]},"properties":{"MESHCODE":"5339561533","揺全壊":20.18515}},{"type":"Feature","id":26197,"geometry":{"type":"Polygon","coordinates":[[[139.815625,35.764582999104874],[139.81875,35.76458299910489],[139.81875,35.766666999104864],[139.815625,35.766666999104864],[139.815625,35.764582999104874]]]},"properties":{"MESHCODE":"5339561534","揺全壊":22.23466}},{"type":"Feature","id":26203,"geometry":{"type":"Polygon","coordinates":[[[139.828125,35.75833299910495],[139.83125,35.75833299910495],[139.83125,35.76041699910492],[139.828125,35.76041699910492],[139.828125,35.75833299910495]]]},"properties":{"MESHCODE":"5339561612","揺全壊":17.50489}},{"type":"Feature","id":26207,"geometry":{"type":"Polygon","coordinates":[[[139.834375,35.75833299910495],[139.8375,35.75833299910495],[139.8375,35.76041699910492],[139.834375,35.76041699910492],[139.834375,35.75833299910495]]]},"properties":{"MESHCODE":"5339561622","揺全壊":16.08885}},{"type":"Feature","id":26209,"geometry":{"type":"Polygon","coordinates":[[[139.834375,35.76041699910492],[139.8375,35.76041699910492],[139.8375,35.762499999104904],[139.834375,35.762499999104904],[139.834375,35.76041699910492]]]},"properties":{"MESHCODE":"5339561624","揺全壊":18.31791}},{"type":"Feature","id":26213,"geometry":{"type":"Polygon","coordinates":[[[139.828125,35.76458299910489],[139.83125,35.76458299910489],[139.83125,35.766666999104864],[139.828125,35.766666999104864],[139.828125,35.76458299910489]]]},"properties":{"MESHCODE":"5339561634","揺全壊":17.19533}},{"type":"Feature","id":26220,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.76041699910492],[139.840625,35.76041699910492],[139.840625,35.762499999104904],[139.8375,35.762499999104904],[139.8375,35.76041699910492]]]},"properties":{"MESHCODE":"5339561713","揺全壊":20.46462}},{"type":"Feature","id":26224,"geometry":{"type":"Polygon","coordinates":[[[139.84375,35.76041699910492],[139.846875,35.76041699910492],[139.846875,35.762499999104904],[139.84375,35.762499999104904],[139.84375,35.76041699910492]]]},"properties":{"MESHCODE":"5339561723","揺全壊":15.01479}},{"type":"Feature","id":26227,"geometry":{"type":"Polygon","coordinates":[[[139.840625,35.762499999104904],[139.84375,35.762499999104904],[139.84375,35.76458299910489],[139.840625,35.76458299910489],[139.840625,35.762499999104904]]]},"properties":{"MESHCODE":"5339561732","揺全壊":24.60069}},{"type":"Feature","id":26229,"geometry":{"type":"Polygon","coordinates":[[[139.840625,35.76458299910489],[139.84375,35.76458299910489],[139.84375,35.766666999104864],[139.840625,35.766666999104864],[139.840625,35.76458299910489]]]},"properties":{"MESHCODE":"5339561734","揺全壊":19.49306}},{"type":"Feature","id":26230,"geometry":{"type":"Polygon","coordinates":[[[139.84375,35.762499999104904],[139.846875,35.762499999104904],[139.846875,35.76458299910489],[139.84375,35.76458299910489],[139.84375,35.762499999104904]]]},"properties":{"MESHCODE":"5339561741","揺全壊":19.42753}},{"type":"Feature","id":26233,"geometry":{"type":"Polygon","coordinates":[[[139.846875,35.76458299910489],[139.85,35.76458299910489],[139.85,35.766666999104864],[139.846875,35.766666999104864],[139.846875,35.76458299910489]]]},"properties":{"MESHCODE":"5339561744","揺全壊":22.84693}},{"type":"Feature","id":26240,"geometry":{"type":"Polygon","coordinates":[[[139.85625,35.76041699910492],[139.859375,35.76041699910492],[139.859375,35.762499999104904],[139.85625,35.762499999104904],[139.85625,35.76041699910492]]]},"properties":{"MESHCODE":"5339561823","揺全壊":21.34116}},{"type":"Feature","id":26242,"geometry":{"type":"Polygon","coordinates":[[[139.85,35.762499999104904],[139.853125,35.762499999104904],[139.853125,35.76458299910489],[139.85,35.76458299910489],[139.85,35.762499999104904]]]},"properties":{"MESHCODE":"5339561831","揺全壊":16.3763}},{"type":"Feature","id":26281,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.7729169991048],[139.7625,35.7729169991048],[139.7625,35.77499999910478],[139.759375,35.77499999910478],[139.759375,35.7729169991048]]]},"properties":{"MESHCODE":"5339562044","揺全壊":16.54212}},{"type":"Feature","id":26282,"geometry":{"type":"Polygon","coordinates":[[[139.7625,35.766666999104864],[139.765625,35.766666999104864],[139.765625,35.768749999104834],[139.7625,35.768749999104834],[139.7625,35.766666999104864]]]},"properties":{"MESHCODE":"5339562111","揺全壊":22.46408}},{"type":"Feature","id":26289,"geometry":{"type":"Polygon","coordinates":[[[139.771875,35.768749999104834],[139.775,35.768749999104834],[139.775,35.770832999104826],[139.771875,35.770832999104826],[139.771875,35.768749999104834]]]},"properties":{"MESHCODE":"5339562124","揺全壊":15.09968}},{"type":"Feature","id":26290,"geometry":{"type":"Polygon","coordinates":[[[139.7625,35.770832999104826],[139.765625,35.770832999104826],[139.765625,35.7729169991048],[139.7625,35.7729169991048],[139.7625,35.770832999104826]]]},"properties":{"MESHCODE":"5339562131","揺全壊":18.48403}},{"type":"Feature","id":26291,"geometry":{"type":"Polygon","coordinates":[[[139.765625,35.770832999104826],[139.76875,35.770832999104826],[139.76875,35.7729169991048],[139.765625,35.7729169991048],[139.765625,35.770832999104826]]]},"properties":{"MESHCODE":"5339562132","揺全壊":20.0414}},{"type":"Feature","id":26300,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.768749999104834],[139.778125,35.768749999104834],[139.778125,35.770832999104826],[139.775,35.770832999104826],[139.775,35.768749999104834]]]},"properties":{"MESHCODE":"5339562213","揺全壊":18.58025}},{"type":"Feature","id":26301,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.768749999104834],[139.78125,35.768749999104834],[139.78125,35.770832999104826],[139.778125,35.770832999104826],[139.778125,35.768749999104834]]]},"properties":{"MESHCODE":"5339562214","揺全壊":23.09945}},{"type":"Feature","id":26302,"geometry":{"type":"Polygon","coordinates":[[[139.78125,35.76666699910486],[139.784375,35.766666999104864],[139.784375,35.768749999104834],[139.78125,35.768749999104834],[139.78125,35.76666699910486]]]},"properties":{"MESHCODE":"5339562221","揺全壊":18.4113}},{"type":"Feature","id":26307,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.770832999104826],[139.78125,35.770832999104826],[139.78125,35.77291699910479],[139.778125,35.7729169991048],[139.778125,35.770832999104826]]]},"properties":{"MESHCODE":"5339562232","揺全壊":16.65691}},{"type":"Feature","id":26310,"geometry":{"type":"Polygon","coordinates":[[[139.78125,35.770832999104826],[139.784375,35.770832999104826],[139.784375,35.7729169991048],[139.78125,35.77291699910479],[139.78125,35.770832999104826]]]},"properties":{"MESHCODE":"5339562241","揺全壊":16.72928}},{"type":"Feature","id":26317,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.768749999104834],[139.79375,35.76874999910485],[139.79375,35.770832999104826],[139.790625,35.770832999104826],[139.790625,35.768749999104834]]]},"properties":{"MESHCODE":"5339562314","揺全壊":21.44694}},{"type":"Feature","id":26318,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.766666999104864],[139.796875,35.766666999104864],[139.796875,35.768749999104834],[139.79375,35.76874999910485],[139.79375,35.766666999104864]]]},"properties":{"MESHCODE":"5339562321","揺全壊":23.69031}},{"type":"Feature","id":26320,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.76874999910485],[139.796875,35.768749999104834],[139.796875,35.770832999104826],[139.79375,35.770832999104826],[139.79375,35.76874999910485]]]},"properties":{"MESHCODE":"5339562323","揺全壊":15.96355}},{"type":"Feature","id":26326,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.770832999104826],[139.796875,35.770832999104826],[139.796875,35.7729169991048],[139.79375,35.7729169991048],[139.79375,35.770832999104826]]]},"properties":{"MESHCODE":"5339562341","揺全壊":23.3915}},{"type":"Feature","id":26334,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.766666999104864],[139.809375,35.766666999104864],[139.809375,35.768749999104834],[139.80625,35.768749999104834],[139.80625,35.766666999104864]]]},"properties":{"MESHCODE":"5339562421","揺全壊":17.41579}},{"type":"Feature","id":26348,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.76874999910485],[139.815625,35.76874999910485],[139.815625,35.770832999104826],[139.8125,35.770832999104826],[139.8125,35.76874999910485]]]},"properties":{"MESHCODE":"5339562513","揺全壊":16.3285}},{"type":"Feature","id":26355,"geometry":{"type":"Polygon","coordinates":[[[139.815625,35.770832999104826],[139.81875,35.770832999104826],[139.81875,35.7729169991048],[139.815625,35.77291699910479],[139.815625,35.770832999104826]]]},"properties":{"MESHCODE":"5339562532","揺全壊":20.56725}},{"type":"Feature","id":26362,"geometry":{"type":"Polygon","coordinates":[[[139.825,35.766666999104864],[139.828125,35.766666999104864],[139.828125,35.768749999104834],[139.825,35.768749999104834],[139.825,35.766666999104864]]]},"properties":{"MESHCODE":"5339562611","揺全壊":18.1171}},{"type":"Feature","id":26370,"geometry":{"type":"Polygon","coordinates":[[[139.825,35.770832999104826],[139.828125,35.770832999104826],[139.828125,35.7729169991048],[139.825,35.7729169991048],[139.825,35.770832999104826]]]},"properties":{"MESHCODE":"5339562631","揺全壊":16.89394}},{"type":"Feature","id":26379,"geometry":{"type":"Polygon","coordinates":[[[139.840625,35.766666999104864],[139.84375,35.766666999104864],[139.84375,35.768749999104834],[139.840625,35.768749999104834],[139.840625,35.766666999104864]]]},"properties":{"MESHCODE":"5339562712","揺全壊":15.58718}},{"type":"Feature","id":26388,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.7729169991048],[139.840625,35.7729169991048],[139.840625,35.77499999910478],[139.8375,35.77499999910478],[139.8375,35.7729169991048]]]},"properties":{"MESHCODE":"5339562733","揺全壊":21.79878}},{"type":"Feature","id":26394,"geometry":{"type":"Polygon","coordinates":[[[139.85,35.766666999104864],[139.853125,35.766666999104864],[139.853125,35.768749999104834],[139.85,35.768749999104834],[139.85,35.766666999104864]]]},"properties":{"MESHCODE":"5339562811","揺全壊":15.42435}},{"type":"Feature","id":26397,"geometry":{"type":"Polygon","coordinates":[[[139.853125,35.768749999104834],[139.85625,35.768749999104834],[139.85625,35.770832999104826],[139.853125,35.770832999104826],[139.853125,35.768749999104834]]]},"properties":{"MESHCODE":"5339562814","揺全壊":19.69323}},{"type":"Feature","id":26431,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.77499999910478],[139.7625,35.77499999910478],[139.7625,35.777082999104756],[139.759375,35.777082999104756],[139.759375,35.77499999910478]]]},"properties":{"MESHCODE":"5339563022","揺全壊":23.52299}},{"type":"Feature","id":26434,"geometry":{"type":"Polygon","coordinates":[[[139.75,35.779166999104746],[139.753125,35.779166999104746],[139.753125,35.78124999910471],[139.75,35.78124999910471],[139.75,35.779166999104746]]]},"properties":{"MESHCODE":"5339563031","揺全壊":19.83028}},{"type":"Feature","id":26440,"geometry":{"type":"Polygon","coordinates":[[[139.75625,35.78124999910471],[139.759375,35.78124999910471],[139.759375,35.783332999104694],[139.75625,35.783332999104694],[139.75625,35.78124999910471]]]},"properties":{"MESHCODE":"5339563043","揺全壊":16.20908}},{"type":"Feature","id":26442,"geometry":{"type":"Polygon","coordinates":[[[139.7625,35.77499999910478],[139.765625,35.77499999910478],[139.765625,35.777082999104756],[139.7625,35.777082999104756],[139.7625,35.77499999910478]]]},"properties":{"MESHCODE":"5339563111","揺全壊":19.28192}},{"type":"Feature","id":26458,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.77499999910478],[139.778125,35.77499999910478],[139.778125,35.777082999104756],[139.775,35.777082999104756],[139.775,35.77499999910478]]]},"properties":{"MESHCODE":"5339563211","揺全壊":22.13176}},{"type":"Feature","id":26461,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.777082999104756],[139.78125,35.77708299910474],[139.78125,35.779166999104746],[139.778125,35.779166999104746],[139.778125,35.777082999104756]]]},"properties":{"MESHCODE":"5339563214","揺全壊":21.26183}},{"type":"Feature","id":26464,"geometry":{"type":"Polygon","coordinates":[[[139.78125,35.77708299910474],[139.784375,35.77708299910477],[139.784375,35.779166999104746],[139.78125,35.779166999104746],[139.78125,35.77708299910474]]]},"properties":{"MESHCODE":"5339563223","揺全壊":19.39468}},{"type":"Feature","id":26465,"geometry":{"type":"Polygon","coordinates":[[[139.784375,35.77708299910477],[139.7875,35.777082999104756],[139.7875,35.779166999104746],[139.784375,35.779166999104746],[139.784375,35.77708299910477]]]},"properties":{"MESHCODE":"5339563224","揺全壊":16.43391}},{"type":"Feature","id":26468,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.78124999910471],[139.778125,35.78124999910471],[139.778125,35.783332999104694],[139.775,35.783332999104694],[139.775,35.78124999910471]]]},"properties":{"MESHCODE":"5339563233","揺全壊":15.4858}},{"type":"Feature","id":26469,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.78124999910471],[139.78125,35.78124999910471],[139.78125,35.783332999104694],[139.778125,35.783332999104694],[139.778125,35.78124999910471]]]},"properties":{"MESHCODE":"5339563234","揺全壊":18.19934}},{"type":"Feature","id":26473,"geometry":{"type":"Polygon","coordinates":[[[139.784375,35.78124999910471],[139.7875,35.78124999910471],[139.7875,35.7833329991047],[139.784375,35.7833329991047],[139.784375,35.78124999910471]]]},"properties":{"MESHCODE":"5339563244","揺全壊":22.07271}},{"type":"Feature","id":26475,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.77499999910478],[139.79375,35.77499999910478],[139.79375,35.777082999104756],[139.790625,35.777082999104756],[139.790625,35.77499999910478]]]},"properties":{"MESHCODE":"5339563312","揺全壊":17.26004}},{"type":"Feature","id":26476,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.777082999104756],[139.790625,35.777082999104756],[139.790625,35.779166999104746],[139.7875,35.779166999104746],[139.7875,35.777082999104756]]]},"properties":{"MESHCODE":"5339563313","揺全壊":21.98109}},{"type":"Feature","id":26477,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.777082999104756],[139.79375,35.777082999104756],[139.79375,35.779166999104746],[139.790625,35.779166999104746],[139.790625,35.777082999104756]]]},"properties":{"MESHCODE":"5339563314","揺全壊":15.59124}},{"type":"Feature","id":26485,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.78124999910471],[139.79375,35.78124999910471],[139.79375,35.7833329991047],[139.790625,35.783332999104694],[139.790625,35.78124999910471]]]},"properties":{"MESHCODE":"5339563334","揺全壊":15.61946}},{"type":"Feature","id":26489,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.78124999910471],[139.8,35.78124999910471],[139.8,35.783332999104694],[139.796875,35.783332999104694],[139.796875,35.78124999910471]]]},"properties":{"MESHCODE":"5339563344","揺全壊":15.66627}},{"type":"Feature","id":26490,"geometry":{"type":"Polygon","coordinates":[[[139.8,35.77499999910478],[139.803125,35.77499999910478],[139.803125,35.777082999104756],[139.8,35.777082999104756],[139.8,35.77499999910478]]]},"properties":{"MESHCODE":"5339563411","揺全壊":24.79568}},{"type":"Feature","id":26496,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.777082999104756],[139.809375,35.777082999104756],[139.809375,35.779166999104746],[139.80625,35.779166999104746],[139.80625,35.777082999104756]]]},"properties":{"MESHCODE":"5339563423","揺全壊":18.58353}},{"type":"Feature","id":26502,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.779166999104746],[139.809375,35.779166999104746],[139.809375,35.78124999910471],[139.80625,35.78124999910471],[139.80625,35.779166999104746]]]},"properties":{"MESHCODE":"5339563441","揺全壊":24.4847}},{"type":"Feature","id":26504,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.78124999910471],[139.809375,35.78124999910471],[139.809375,35.783332999104694],[139.80625,35.783332999104694],[139.80625,35.78124999910471]]]},"properties":{"MESHCODE":"5339563443","揺全壊":15.83666}},{"type":"Feature","id":26506,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.77499999910478],[139.815625,35.77499999910478],[139.815625,35.77708299910477],[139.8125,35.77708299910477],[139.8125,35.77499999910478]]]},"properties":{"MESHCODE":"5339563511","揺全壊":15.90539}},{"type":"Feature","id":26538,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.77499999910478],[139.840625,35.77499999910478],[139.840625,35.777082999104756],[139.8375,35.77708299910477],[139.8375,35.77499999910478]]]},"properties":{"MESHCODE":"5339563711","揺全壊":19.06859}},{"type":"Feature","id":26541,"geometry":{"type":"Polygon","coordinates":[[[139.840625,35.777082999104756],[139.84375,35.777082999104756],[139.84375,35.779166999104746],[139.840625,35.779166999104746],[139.840625,35.777082999104756]]]},"properties":{"MESHCODE":"5339563714","揺全壊":21.28707}},{"type":"Feature","id":26546,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.779166999104746],[139.840625,35.779166999104746],[139.840625,35.78124999910471],[139.8375,35.78124999910471],[139.8375,35.779166999104746]]]},"properties":{"MESHCODE":"5339563731","揺全壊":17.49057}},{"type":"Feature","id":26548,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.78124999910471],[139.840625,35.78124999910471],[139.840625,35.783332999104694],[139.8375,35.783332999104694],[139.8375,35.78124999910471]]]},"properties":{"MESHCODE":"5339563733","揺全壊":18.92113}},{"type":"Feature","id":26557,"geometry":{"type":"Polygon","coordinates":[[[139.853125,35.777082999104756],[139.85625,35.777082999104756],[139.85625,35.779166999104746],[139.853125,35.779166999104746],[139.853125,35.777082999104756]]]},"properties":{"MESHCODE":"5339563814","揺全壊":15.40602}},{"type":"Feature","id":26593,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.78541699910467],[139.7625,35.78541699910467],[139.7625,35.78749999910465],[139.759375,35.78749999910465],[139.759375,35.78541699910467]]]},"properties":{"MESHCODE":"5339564024","揺全壊":15.32576}},{"type":"Feature","id":26603,"geometry":{"type":"Polygon","coordinates":[[[139.765625,35.78541699910467],[139.76875,35.78541699910467],[139.76875,35.78749999910463],[139.765625,35.78749999910463],[139.765625,35.78541699910467]]]},"properties":{"MESHCODE":"5339564114","揺全壊":17.20881}},{"type":"Feature","id":26605,"geometry":{"type":"Polygon","coordinates":[[[139.771875,35.783332999104694],[139.775,35.783332999104694],[139.775,35.78541699910467],[139.771875,35.78541699910467],[139.771875,35.783332999104694]]]},"properties":{"MESHCODE":"5339564122","揺全壊":19.34912}},{"type":"Feature","id":26606,"geometry":{"type":"Polygon","coordinates":[[[139.76875,35.78541699910467],[139.771875,35.78541699910467],[139.771875,35.78749999910465],[139.76875,35.78749999910463],[139.76875,35.78541699910467]]]},"properties":{"MESHCODE":"5339564123","揺全壊":16.41401}},{"type":"Feature","id":26611,"geometry":{"type":"Polygon","coordinates":[[[139.765625,35.789582999104624],[139.76875,35.789582999104624],[139.76875,35.79166699910459],[139.765625,35.79166699910459],[139.765625,35.789582999104624]]]},"properties":{"MESHCODE":"5339564134","揺全壊":17.66985}},{"type":"Feature","id":26612,"geometry":{"type":"Polygon","coordinates":[[[139.76875,35.78749999910463],[139.771875,35.78749999910465],[139.771875,35.789582999104624],[139.76875,35.789582999104624],[139.76875,35.78749999910463]]]},"properties":{"MESHCODE":"5339564141","揺全壊":15.93028}},{"type":"Feature","id":26616,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.783332999104694],[139.778125,35.783332999104694],[139.778125,35.78541699910467],[139.775,35.78541699910467],[139.775,35.783332999104694]]]},"properties":{"MESHCODE":"5339564211","揺全壊":23.52629}},{"type":"Feature","id":26617,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.783332999104694],[139.78125,35.783332999104694],[139.78125,35.78541699910467],[139.778125,35.78541699910467],[139.778125,35.783332999104694]]]},"properties":{"MESHCODE":"5339564212","揺全壊":17.34018}},{"type":"Feature","id":26618,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.78541699910467],[139.778125,35.78541699910467],[139.778125,35.78749999910465],[139.775,35.78749999910465],[139.775,35.78541699910467]]]},"properties":{"MESHCODE":"5339564213","揺全壊":19.94562}},{"type":"Feature","id":26620,"geometry":{"type":"Polygon","coordinates":[[[139.78125,35.783332999104694],[139.784375,35.7833329991047],[139.784375,35.78541699910469],[139.78125,35.78541699910467],[139.78125,35.783332999104694]]]},"properties":{"MESHCODE":"5339564221","揺全壊":18.14725}},{"type":"Feature","id":26622,"geometry":{"type":"Polygon","coordinates":[[[139.78125,35.78541699910467],[139.784375,35.78541699910469],[139.784375,35.78749999910465],[139.78125,35.78749999910465],[139.78125,35.78541699910467]]]},"properties":{"MESHCODE":"5339564223","揺全壊":21.32273}},{"type":"Feature","id":26626,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.789582999104624],[139.778125,35.789582999104624],[139.778125,35.79166699910459],[139.775,35.79166699910459],[139.775,35.789582999104624]]]},"properties":{"MESHCODE":"5339564233","揺全壊":19.17695}},{"type":"Feature","id":26627,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.789582999104624],[139.78125,35.789582999104624],[139.78125,35.79166699910459],[139.778125,35.79166699910459],[139.778125,35.789582999104624]]]},"properties":{"MESHCODE":"5339564234","揺全壊":15.54458}},{"type":"Feature","id":26629,"geometry":{"type":"Polygon","coordinates":[[[139.784375,35.78749999910465],[139.7875,35.78749999910465],[139.7875,35.789582999104624],[139.784375,35.789582999104624],[139.784375,35.78749999910465]]]},"properties":{"MESHCODE":"5339564242","揺全壊":19.88374}},{"type":"Feature","id":26632,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.7833329991047],[139.790625,35.783332999104694],[139.790625,35.78541699910467],[139.7875,35.78541699910467],[139.7875,35.7833329991047]]]},"properties":{"MESHCODE":"5339564311","揺全壊":19.27518}},{"type":"Feature","id":26634,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.78541699910467],[139.790625,35.78541699910467],[139.790625,35.78749999910463],[139.7875,35.78749999910465],[139.7875,35.78541699910467]]]},"properties":{"MESHCODE":"5339564313","揺全壊":18.4556}},{"type":"Feature","id":26635,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.78541699910467],[139.79375,35.78541699910467],[139.79375,35.78749999910465],[139.790625,35.78749999910463],[139.790625,35.78541699910467]]]},"properties":{"MESHCODE":"5339564314","揺全壊":17.85069}},{"type":"Feature","id":26636,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.7833329991047],[139.796875,35.783332999104694],[139.796875,35.78541699910467],[139.79375,35.78541699910467],[139.79375,35.7833329991047]]]},"properties":{"MESHCODE":"5339564321","揺全壊":20.27979}},{"type":"Feature","id":26639,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.78541699910467],[139.8,35.78541699910467],[139.8,35.78749999910465],[139.796875,35.78749999910465],[139.796875,35.78541699910467]]]},"properties":{"MESHCODE":"5339564324","揺全壊":18.06193}},{"type":"Feature","id":26641,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.78749999910463],[139.79375,35.78749999910465],[139.79375,35.789582999104624],[139.790625,35.789582999104624],[139.790625,35.78749999910463]]]},"properties":{"MESHCODE":"5339564332","揺全壊":21.3122}},{"type":"Feature","id":26652,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.783332999104694],[139.809375,35.783332999104694],[139.809375,35.78541699910467],[139.80625,35.78541699910467],[139.80625,35.783332999104694]]]},"properties":{"MESHCODE":"5339564421","揺全壊":18.81516}},{"type":"Feature","id":26654,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.78541699910467],[139.809375,35.78541699910467],[139.809375,35.78749999910465],[139.80625,35.78749999910465],[139.80625,35.78541699910467]]]},"properties":{"MESHCODE":"5339564423","揺全壊":19.58276}},{"type":"Feature","id":26655,"geometry":{"type":"Polygon","coordinates":[[[139.809375,35.78541699910467],[139.8125,35.78541699910469],[139.8125,35.78749999910465],[139.809375,35.78749999910465],[139.809375,35.78541699910467]]]},"properties":{"MESHCODE":"5339564424","揺全壊":21.40516}},{"type":"Feature","id":26657,"geometry":{"type":"Polygon","coordinates":[[[139.803125,35.78749999910465],[139.80625,35.78749999910465],[139.80625,35.789582999104624],[139.803125,35.789582999104624],[139.803125,35.78749999910465]]]},"properties":{"MESHCODE":"5339564432","揺全壊":19.10216}},{"type":"Feature","id":26666,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.78541699910469],[139.815625,35.78541699910467],[139.815625,35.78749999910465],[139.8125,35.78749999910465],[139.8125,35.78541699910469]]]},"properties":{"MESHCODE":"5339564513","揺全壊":24.13198}},{"type":"Feature","id":26678,"geometry":{"type":"Polygon","coordinates":[[[139.81875,35.789582999104624],[139.821875,35.789582999104624],[139.821875,35.79166699910459],[139.81875,35.79166699910459],[139.81875,35.789582999104624]]]},"properties":{"MESHCODE":"5339564543","揺全壊":22.49753}},{"type":"Feature","id":26683,"geometry":{"type":"Polygon","coordinates":[[[139.828125,35.78541699910467],[139.83125,35.78541699910467],[139.83125,35.78749999910465],[139.828125,35.78749999910465],[139.828125,35.78541699910467]]]},"properties":{"MESHCODE":"5339564614","揺全壊":18.24972}},{"type":"Feature","id":26692,"geometry":{"type":"Polygon","coordinates":[[[139.83125,35.78749999910465],[139.834375,35.78749999910465],[139.834375,35.789582999104624],[139.83125,35.789582999104624],[139.83125,35.78749999910465]]]},"properties":{"MESHCODE":"5339564641","揺全壊":18.111}},{"type":"Feature","id":26696,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.783332999104694],[139.840625,35.783332999104694],[139.840625,35.78541699910467],[139.8375,35.78541699910467],[139.8375,35.783332999104694]]]},"properties":{"MESHCODE":"5339564711","揺全壊":17.16048}},{"type":"Feature","id":26765,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.79166699910459],[139.778125,35.79166699910459],[139.778125,35.79374999910459],[139.775,35.79374999910459],[139.775,35.79166699910459]]]},"properties":{"MESHCODE":"5339565211","揺全壊":23.56338}},{"type":"Feature","id":26783,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.79374999910459],[139.790625,35.79374999910459],[139.790625,35.79583299910455],[139.7875,35.795832999104555],[139.7875,35.79374999910459]]]},"properties":{"MESHCODE":"5339565313","揺全壊":16.04759}},{"type":"Feature","id":26789,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.795832999104555],[139.790625,35.79583299910455],[139.790625,35.797916999104544],[139.7875,35.797916999104544],[139.7875,35.795832999104555]]]},"properties":{"MESHCODE":"5339565331","揺全壊":16.93209}},{"type":"Feature","id":26791,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.797916999104544],[139.790625,35.797916999104544],[139.790625,35.79999999910451],[139.7875,35.79999999910451],[139.7875,35.797916999104544]]]},"properties":{"MESHCODE":"5339565333","揺全壊":18.04805}},{"type":"Feature","id":26795,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.797916999104544],[139.796875,35.797916999104544],[139.796875,35.79999999910451],[139.79375,35.79999999910451],[139.79375,35.797916999104544]]]},"properties":{"MESHCODE":"5339565343","揺全壊":16.24765}},{"type":"Feature","id":26803,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.79374999910459],[139.809375,35.79374999910459],[139.809375,35.795832999104555],[139.80625,35.795832999104555],[139.80625,35.79374999910459]]]},"properties":{"MESHCODE":"5339565423","揺全壊":16.61626}}]}
\ No newline at end of file
diff --git a/app/src/layers/data/particles/tama-destroyed_particles_3.json b/app/src/layers/data/particles/tama-destroyed_particles_3.json
new file mode 100644
index 0000000..7af2cfd
--- /dev/null
+++ b/app/src/layers/data/particles/tama-destroyed_particles_3.json
@@ -0,0 +1 @@
+{"type":"FeatureCollection","features":[{"type":"Feature","id":745,"geometry":{"type":"Polygon","coordinates":[[[139.475,35.51458299910752],[139.478125,35.51458299910752],[139.478125,35.51666699910749],[139.475,35.51666699910748],[139.475,35.51458299910752]]]},"properties":{"MESHCODE":"5339231833","揺全壊":10.77635}},{"type":"Feature","id":764,"geometry":{"type":"Polygon","coordinates":[[[139.46875,35.51874999910748],[139.471875,35.51874999910748],[139.471875,35.52083299910745],[139.46875,35.52083299910745],[139.46875,35.51874999910748]]]},"properties":{"MESHCODE":"5339232723","揺全壊":13.05635}},{"type":"Feature","id":770,"geometry":{"type":"Polygon","coordinates":[[[139.46875,35.52083299910745],[139.471875,35.52083299910745],[139.471875,35.52291699910743],[139.46875,35.52291699910743],[139.46875,35.52083299910745]]]},"properties":{"MESHCODE":"5339232741","揺全壊":12.10575}},{"type":"Feature","id":870,"geometry":{"type":"Polygon","coordinates":[[[139.46875,35.53749999910726],[139.471875,35.53749999910726],[139.471875,35.53958299910726],[139.46875,35.53958299910726],[139.46875,35.53749999910726]]]},"properties":{"MESHCODE":"5339234741","揺全壊":12.14266}},{"type":"Feature","id":1386,"geometry":{"type":"Polygon","coordinates":[[[139.70625,35.54166699910723],[139.709375,35.54166699910723],[139.709375,35.543749999107206],[139.70625,35.543749999107206],[139.70625,35.54166699910723]]]},"properties":{"MESHCODE":"5339255621","揺全壊":10.85734}},{"type":"Feature","id":1391,"geometry":{"type":"Polygon","coordinates":[[[139.703125,35.545832999107176],[139.70625,35.545832999107176],[139.70625,35.547916999107166],[139.703125,35.547916999107166],[139.703125,35.545832999107176]]]},"properties":{"MESHCODE":"5339255632","揺全壊":12.44677}},{"type":"Feature","id":1397,"geometry":{"type":"Polygon","coordinates":[[[139.709375,35.547916999107166],[139.7125,35.547916999107166],[139.7125,35.54999999910713],[139.709375,35.54999999910713],[139.709375,35.547916999107166]]]},"properties":{"MESHCODE":"5339255644","揺全壊":11.29341}},{"type":"Feature","id":1450,"geometry":{"type":"Polygon","coordinates":[[[139.70625,35.54999999910713],[139.709375,35.54999999910713],[139.709375,35.55208299910712],[139.70625,35.55208299910712],[139.70625,35.54999999910713]]]},"properties":{"MESHCODE":"5339256621","揺全壊":13.46544}},{"type":"Feature","id":1451,"geometry":{"type":"Polygon","coordinates":[[[139.709375,35.54999999910713],[139.7125,35.54999999910713],[139.7125,35.55208299910712],[139.709375,35.55208299910712],[139.709375,35.54999999910713]]]},"properties":{"MESHCODE":"5339256622","揺全壊":14.49102}},{"type":"Feature","id":1453,"geometry":{"type":"Polygon","coordinates":[[[139.709375,35.55208299910712],[139.7125,35.55208299910712],[139.7125,35.554166999107096],[139.709375,35.554166999107096],[139.709375,35.55208299910712]]]},"properties":{"MESHCODE":"5339256624","揺全壊":13.20683}},{"type":"Feature","id":1471,"geometry":{"type":"Polygon","coordinates":[[[139.715625,35.55416699910708],[139.71875,35.554166999107096],[139.71875,35.556249999107074],[139.715625,35.55624999910706],[139.715625,35.55416699910708]]]},"properties":{"MESHCODE":"5339256732","揺全壊":12.22188}},{"type":"Feature","id":1540,"geometry":{"type":"Polygon","coordinates":[[[139.703125,35.558332999107044],[139.70625,35.558332999107044],[139.70625,35.56041699910703],[139.703125,35.56041699910703],[139.703125,35.558332999107044]]]},"properties":{"MESHCODE":"5339257612","揺全壊":10.09296}},{"type":"Feature","id":1618,"geometry":{"type":"Polygon","coordinates":[[[139.68125,35.57083299910691],[139.684375,35.57083299910691],[139.684375,35.572916999106894],[139.68125,35.572916999106894],[139.68125,35.57083299910691]]]},"properties":{"MESHCODE":"5339258441","揺全壊":12.96068}},{"type":"Feature","id":1641,"geometry":{"type":"Polygon","coordinates":[[[139.703125,35.568749999106934],[139.70625,35.568749999106934],[139.70625,35.57083299910691],[139.703125,35.57083299910691],[139.703125,35.568749999106934]]]},"properties":{"MESHCODE":"5339258614","揺全壊":10.25108}},{"type":"Feature","id":1644,"geometry":{"type":"Polygon","coordinates":[[[139.70625,35.568749999106934],[139.709375,35.568749999106934],[139.709375,35.57083299910691],[139.70625,35.57083299910691],[139.70625,35.568749999106934]]]},"properties":{"MESHCODE":"5339258623","揺全壊":13.48141}},{"type":"Feature","id":1647,"geometry":{"type":"Polygon","coordinates":[[[139.703125,35.57083299910691],[139.70625,35.57083299910691],[139.70625,35.572916999106894],[139.703125,35.572916999106894],[139.703125,35.57083299910691]]]},"properties":{"MESHCODE":"5339258632","揺全壊":10.8325}},{"type":"Feature","id":1648,"geometry":{"type":"Polygon","coordinates":[[[139.7,35.572916999106894],[139.703125,35.572916999106894],[139.703125,35.57499999910688],[139.7,35.57499999910689],[139.7,35.572916999106894]]]},"properties":{"MESHCODE":"5339258633","揺全壊":11.18024}},{"type":"Feature","id":1649,"geometry":{"type":"Polygon","coordinates":[[[139.703125,35.572916999106894],[139.70625,35.572916999106894],[139.70625,35.57499999910688],[139.703125,35.57499999910688],[139.703125,35.572916999106894]]]},"properties":{"MESHCODE":"5339258634","揺全壊":10.84664}},{"type":"Feature","id":1650,"geometry":{"type":"Polygon","coordinates":[[[139.70625,35.57083299910691],[139.709375,35.57083299910691],[139.709375,35.572916999106894],[139.70625,35.572916999106894],[139.70625,35.57083299910691]]]},"properties":{"MESHCODE":"5339258641","揺全壊":12.42539}},{"type":"Feature","id":1653,"geometry":{"type":"Polygon","coordinates":[[[139.709375,35.572916999106894],[139.7125,35.572916999106894],[139.7125,35.57499999910688],[139.709375,35.57499999910688],[139.709375,35.572916999106894]]]},"properties":{"MESHCODE":"5339258644","揺全壊":13.98128}},{"type":"Feature","id":1654,"geometry":{"type":"Polygon","coordinates":[[[139.7125,35.56666699910697],[139.715625,35.56666699910695],[139.715625,35.568749999106934],[139.7125,35.56874999910694],[139.7125,35.56666699910697]]]},"properties":{"MESHCODE":"5339258711","揺全壊":14.80955}},{"type":"Feature","id":1657,"geometry":{"type":"Polygon","coordinates":[[[139.715625,35.568749999106934],[139.71875,35.56874999910694],[139.71875,35.57083299910691],[139.715625,35.57083299910691],[139.715625,35.568749999106934]]]},"properties":{"MESHCODE":"5339258714","揺全壊":13.86377}},{"type":"Feature","id":1726,"geometry":{"type":"Polygon","coordinates":[[[139.6875,35.57499999910689],[139.690625,35.57499999910688],[139.690625,35.577082999106864],[139.6875,35.577082999106864],[139.6875,35.57499999910689]]]},"properties":{"MESHCODE":"5339259511","揺全壊":10.32042}},{"type":"Feature","id":1739,"geometry":{"type":"Polygon","coordinates":[[[139.696875,35.57916699910683],[139.7,35.57916699910683],[139.7,35.5812499991068],[139.696875,35.5812499991068],[139.696875,35.57916699910683]]]},"properties":{"MESHCODE":"5339259542","揺全壊":10.38973}},{"type":"Feature","id":1740,"geometry":{"type":"Polygon","coordinates":[[[139.69375,35.581249999106795],[139.696875,35.5812499991068],[139.696875,35.58333299910679],[139.69375,35.58333299910679],[139.69375,35.581249999106795]]]},"properties":{"MESHCODE":"5339259543","揺全壊":10.25627}},{"type":"Feature","id":1750,"geometry":{"type":"Polygon","coordinates":[[[139.7,35.57916699910683],[139.703125,35.57916699910683],[139.703125,35.581249999106795],[139.7,35.5812499991068],[139.7,35.57916699910683]]]},"properties":{"MESHCODE":"5339259631","揺全壊":11.76481}},{"type":"Feature","id":1754,"geometry":{"type":"Polygon","coordinates":[[[139.70625,35.579166999106825],[139.709375,35.57916699910683],[139.709375,35.581249999106795],[139.70625,35.581249999106795],[139.70625,35.579166999106825]]]},"properties":{"MESHCODE":"5339259641","揺全壊":10.5513}},{"type":"Feature","id":3156,"geometry":{"type":"Polygon","coordinates":[[[139.346875,35.627082999106314],[139.35,35.62708299910633],[139.35,35.62916699910631],[139.346875,35.62916699910631],[139.346875,35.627082999106314]]]},"properties":{"MESHCODE":"5339325724","揺全壊":11.09873}},{"type":"Feature","id":3162,"geometry":{"type":"Polygon","coordinates":[[[139.346875,35.62916699910631],[139.35,35.62916699910631],[139.35,35.63124999910628],[139.346875,35.63124999910628],[139.346875,35.62916699910631]]]},"properties":{"MESHCODE":"5339325742","揺全壊":13.17724}},{"type":"Feature","id":3165,"geometry":{"type":"Polygon","coordinates":[[[139.35,35.62499999910634],[139.353125,35.62499999910634],[139.353125,35.62708299910633],[139.35,35.62708299910633],[139.35,35.62499999910634]]]},"properties":{"MESHCODE":"5339325811","揺全壊":13.17789}},{"type":"Feature","id":3166,"geometry":{"type":"Polygon","coordinates":[[[139.353125,35.62499999910634],[139.35625,35.62499999910634],[139.35625,35.62708299910633],[139.353125,35.62708299910633],[139.353125,35.62499999910634]]]},"properties":{"MESHCODE":"5339325812","揺全壊":11.62206}},{"type":"Feature","id":3315,"geometry":{"type":"Polygon","coordinates":[[[139.34375,35.63541699910623],[139.346875,35.63541699910623],[139.346875,35.637499999106225],[139.34375,35.637499999106225],[139.34375,35.63541699910623]]]},"properties":{"MESHCODE":"5339326723","揺全壊":10.48861}},{"type":"Feature","id":3316,"geometry":{"type":"Polygon","coordinates":[[[139.346875,35.63541699910623],[139.35,35.63541699910624],[139.35,35.63749999910623],[139.346875,35.637499999106225],[139.346875,35.63541699910623]]]},"properties":{"MESHCODE":"5339326724","揺全壊":10.18729}},{"type":"Feature","id":3330,"geometry":{"type":"Polygon","coordinates":[[[139.359375,35.633332999106244],[139.3625,35.63333299910626],[139.3625,35.63541699910624],[139.359375,35.63541699910623],[139.359375,35.633332999106244]]]},"properties":{"MESHCODE":"5339326822","揺全壊":13.88336}},{"type":"Feature","id":3433,"geometry":{"type":"Polygon","coordinates":[[[139.30625,35.645832999106126],[139.309375,35.645832999106126],[139.309375,35.64791699910609],[139.30625,35.64791699910609],[139.30625,35.645832999106126]]]},"properties":{"MESHCODE":"5339327441","揺全壊":10.56432}},{"type":"Feature","id":3434,"geometry":{"type":"Polygon","coordinates":[[[139.309375,35.645832999106126],[139.3125,35.645832999106126],[139.3125,35.64791699910609],[139.309375,35.64791699910609],[139.309375,35.645832999106126]]]},"properties":{"MESHCODE":"5339327442","揺全壊":10.59246}},{"type":"Feature","id":5621,"geometry":{"type":"Polygon","coordinates":[[[139.59375,35.63541699910623],[139.596875,35.63541699910623],[139.596875,35.637499999106225],[139.59375,35.637499999106225],[139.59375,35.63541699910623]]]},"properties":{"MESHCODE":"5339346723","揺全壊":13.17907}},{"type":"Feature","id":5640,"geometry":{"type":"Polygon","coordinates":[[[139.603125,35.637499999106225],[139.60625,35.637499999106225],[139.60625,35.639582999106196],[139.603125,35.639582999106196],[139.603125,35.637499999106225]]]},"properties":{"MESHCODE":"5339346832","揺全壊":14.84402}},{"type":"Feature","id":5642,"geometry":{"type":"Polygon","coordinates":[[[139.603125,35.639582999106196],[139.60625,35.639582999106196],[139.60625,35.64166699910617],[139.603125,35.64166699910617],[139.603125,35.639582999106196]]]},"properties":{"MESHCODE":"5339346834","揺全壊":14.68263}},{"type":"Feature","id":5651,"geometry":{"type":"Polygon","coordinates":[[[139.61875,35.633332999106244],[139.621875,35.633332999106244],[139.621875,35.63541699910623],[139.61875,35.63541699910623],[139.61875,35.633332999106244]]]},"properties":{"MESHCODE":"5339346921","揺全壊":14.39539}},{"type":"Feature","id":5661,"geometry":{"type":"Polygon","coordinates":[[[139.61875,35.639582999106196],[139.621875,35.639582999106196],[139.621875,35.64166699910617],[139.61875,35.64166699910617],[139.61875,35.639582999106196]]]},"properties":{"MESHCODE":"5339346943","揺全壊":12.73995}},{"type":"Feature","id":5778,"geometry":{"type":"Polygon","coordinates":[[[139.590625,35.64374999910615],[139.59375,35.64374999910615],[139.59375,35.645832999106126],[139.590625,35.645832999106126],[139.590625,35.64374999910615]]]},"properties":{"MESHCODE":"5339347714","揺全壊":14.0242}},{"type":"Feature","id":5780,"geometry":{"type":"Polygon","coordinates":[[[139.596875,35.64166699910617],[139.6,35.64166699910617],[139.6,35.64374999910615],[139.596875,35.64374999910615],[139.596875,35.64166699910617]]]},"properties":{"MESHCODE":"5339347722","揺全壊":10.72846}},{"type":"Feature","id":5781,"geometry":{"type":"Polygon","coordinates":[[[139.59375,35.64374999910615],[139.596875,35.64374999910615],[139.596875,35.645832999106126],[139.59375,35.645832999106126],[139.59375,35.64374999910615]]]},"properties":{"MESHCODE":"5339347723","揺全壊":11.44289}},{"type":"Feature","id":5782,"geometry":{"type":"Polygon","coordinates":[[[139.596875,35.64374999910615],[139.6,35.64374999910615],[139.6,35.64583299910614],[139.596875,35.645832999106126],[139.596875,35.64374999910615]]]},"properties":{"MESHCODE":"5339347724","揺全壊":14.77719}},{"type":"Feature","id":5783,"geometry":{"type":"Polygon","coordinates":[[[139.5875,35.645832999106126],[139.590625,35.645832999106126],[139.590625,35.64791699910609],[139.5875,35.64791699910609],[139.5875,35.645832999106126]]]},"properties":{"MESHCODE":"5339347731","揺全壊":10.61008}},{"type":"Feature","id":5796,"geometry":{"type":"Polygon","coordinates":[[[139.609375,35.64166699910617],[139.6125,35.64166699910617],[139.6125,35.64374999910615],[139.609375,35.64374999910615],[139.609375,35.64166699910617]]]},"properties":{"MESHCODE":"5339347822","揺全壊":12.99673}},{"type":"Feature","id":5803,"geometry":{"type":"Polygon","coordinates":[[[139.60625,35.645832999106126],[139.609375,35.645832999106126],[139.609375,35.64791699910609],[139.60625,35.64791699910609],[139.60625,35.645832999106126]]]},"properties":{"MESHCODE":"5339347841","揺全壊":12.74849}},{"type":"Feature","id":5808,"geometry":{"type":"Polygon","coordinates":[[[139.615625,35.64166699910617],[139.61875,35.64166699910617],[139.61875,35.64374999910615],[139.615625,35.64374999910615],[139.615625,35.64166699910617]]]},"properties":{"MESHCODE":"5339347912","揺全壊":10.11882}},{"type":"Feature","id":6184,"geometry":{"type":"Polygon","coordinates":[[[139.69375,35.585416999106755],[139.696875,35.585416999106755],[139.696875,35.587499999106726],[139.69375,35.587499999106726],[139.69375,35.585416999106755]]]},"properties":{"MESHCODE":"5339350523","揺全壊":10.23507}},{"type":"Feature","id":6191,"geometry":{"type":"Polygon","coordinates":[[[139.696875,35.587499999106726],[139.7,35.58749999910675],[139.7,35.58958299910671],[139.696875,35.58958299910671],[139.696875,35.587499999106726]]]},"properties":{"MESHCODE":"5339350542","揺全壊":13.61272}},{"type":"Feature","id":6206,"geometry":{"type":"Polygon","coordinates":[[[139.70625,35.587499999106726],[139.709375,35.587499999106726],[139.709375,35.58958299910671],[139.70625,35.58958299910671],[139.70625,35.587499999106726]]]},"properties":{"MESHCODE":"5339350641","揺全壊":12.05722}},{"type":"Feature","id":6220,"geometry":{"type":"Polygon","coordinates":[[[139.7125,35.58958299910671],[139.715625,35.58958299910671],[139.715625,35.5916669991067],[139.7125,35.5916669991067],[139.7125,35.58958299910671]]]},"properties":{"MESHCODE":"5339350733","揺全壊":10.46374}},{"type":"Feature","id":6273,"geometry":{"type":"Polygon","coordinates":[[[139.65625,35.59374999910666],[139.659375,35.59374999910667],[139.659375,35.59583299910665],[139.65625,35.59583299910664],[139.65625,35.59374999910666]]]},"properties":{"MESHCODE":"5339351223","揺全壊":10.0513}},{"type":"Feature","id":6282,"geometry":{"type":"Polygon","coordinates":[[[139.659375,35.59791699910664],[139.6625,35.59791699910664],[139.6625,35.59999999910661],[139.659375,35.59999999910661],[139.659375,35.59791699910664]]]},"properties":{"MESHCODE":"5339351244","揺全壊":12.26645}},{"type":"Feature","id":6289,"geometry":{"type":"Polygon","coordinates":[[[139.66875,35.59374999910667],[139.671875,35.59374999910667],[139.671875,35.59583299910665],[139.66875,35.59583299910665],[139.66875,35.59374999910667]]]},"properties":{"MESHCODE":"5339351323","揺全壊":13.2902}},{"type":"Feature","id":6307,"geometry":{"type":"Polygon","coordinates":[[[139.675,35.59583299910665],[139.678125,35.59583299910664],[139.678125,35.59791699910664],[139.675,35.59791699910662],[139.675,35.59583299910665]]]},"properties":{"MESHCODE":"5339351431","揺全壊":14.2956}},{"type":"Feature","id":6315,"geometry":{"type":"Polygon","coordinates":[[[139.6875,35.5916669991067],[139.690625,35.5916669991067],[139.690625,35.59374999910667],[139.6875,35.593749999106684],[139.6875,35.5916669991067]]]},"properties":{"MESHCODE":"5339351511","揺全壊":14.46065}},{"type":"Feature","id":6337,"geometry":{"type":"Polygon","coordinates":[[[139.70625,35.59374999910666],[139.709375,35.59374999910667],[139.709375,35.59583299910665],[139.70625,35.59583299910665],[139.70625,35.59374999910666]]]},"properties":{"MESHCODE":"5339351623","揺全壊":14.04167}},{"type":"Feature","id":6351,"geometry":{"type":"Polygon","coordinates":[[[139.71875,35.5916669991067],[139.721875,35.5916669991067],[139.721875,35.59374999910667],[139.71875,35.59374999910667],[139.71875,35.5916669991067]]]},"properties":{"MESHCODE":"5339351721","揺全壊":13.55183}},{"type":"Feature","id":6357,"geometry":{"type":"Polygon","coordinates":[[[139.7125,35.59791699910664],[139.715625,35.59791699910662],[139.715625,35.5999999991066],[139.7125,35.59999999910661],[139.7125,35.59791699910664]]]},"properties":{"MESHCODE":"5339351733","揺全壊":12.17089}},{"type":"Feature","id":6412,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.606249999106545],[139.640625,35.60624999910655],[139.640625,35.60833299910652],[139.6375,35.60833299910652],[139.6375,35.606249999106545]]]},"properties":{"MESHCODE":"5339352133","揺全壊":12.84526}},{"type":"Feature","id":6413,"geometry":{"type":"Polygon","coordinates":[[[139.640625,35.60624999910655],[139.64375,35.606249999106545],[139.64375,35.60833299910652],[139.640625,35.60833299910652],[139.640625,35.60624999910655]]]},"properties":{"MESHCODE":"5339352134","揺全壊":11.90292}},{"type":"Feature","id":6416,"geometry":{"type":"Polygon","coordinates":[[[139.64375,35.606249999106545],[139.646875,35.606249999106545],[139.646875,35.608332999106516],[139.64375,35.60833299910652],[139.64375,35.606249999106545]]]},"properties":{"MESHCODE":"5339352143","揺全壊":11.87103}},{"type":"Feature","id":6425,"geometry":{"type":"Polygon","coordinates":[[[139.659375,35.60208299910657],[139.6625,35.60208299910657],[139.6625,35.60416699910657],[139.659375,35.60416699910657],[139.659375,35.60208299910657]]]},"properties":{"MESHCODE":"5339352224","揺全壊":14.7935}},{"type":"Feature","id":6429,"geometry":{"type":"Polygon","coordinates":[[[139.653125,35.606249999106545],[139.65625,35.60624999910655],[139.65625,35.608332999106516],[139.653125,35.60833299910652],[139.653125,35.606249999106545]]]},"properties":{"MESHCODE":"5339352234","揺全壊":12.95602}},{"type":"Feature","id":6437,"geometry":{"type":"Polygon","coordinates":[[[139.665625,35.60208299910657],[139.66875,35.60208299910657],[139.66875,35.60416699910657],[139.665625,35.60416699910657],[139.665625,35.60208299910657]]]},"properties":{"MESHCODE":"5339352314","揺全壊":14.79774}},{"type":"Feature","id":6445,"geometry":{"type":"Polygon","coordinates":[[[139.665625,35.606249999106545],[139.66875,35.606249999106545],[139.66875,35.60833299910652],[139.665625,35.60833299910652],[139.665625,35.606249999106545]]]},"properties":{"MESHCODE":"5339352334","揺全壊":10.8431}},{"type":"Feature","id":6452,"geometry":{"type":"Polygon","coordinates":[[[139.675,35.60208299910657],[139.678125,35.60208299910657],[139.678125,35.60416699910657],[139.675,35.60416699910657],[139.675,35.60208299910657]]]},"properties":{"MESHCODE":"5339352413","揺全壊":10.91917}},{"type":"Feature","id":6453,"geometry":{"type":"Polygon","coordinates":[[[139.678125,35.60208299910657],[139.68125,35.60208299910657],[139.68125,35.60416699910657],[139.678125,35.60416699910657],[139.678125,35.60208299910657]]]},"properties":{"MESHCODE":"5339352414","揺全壊":14.95568}},{"type":"Feature","id":6460,"geometry":{"type":"Polygon","coordinates":[[[139.675,35.606249999106545],[139.678125,35.606249999106545],[139.678125,35.60833299910652],[139.675,35.60833299910652],[139.675,35.606249999106545]]]},"properties":{"MESHCODE":"5339352433","揺全壊":13.10701}},{"type":"Feature","id":6474,"geometry":{"type":"Polygon","coordinates":[[[139.6875,35.60416699910657],[139.690625,35.60416699910657],[139.690625,35.606249999106545],[139.6875,35.606249999106545],[139.6875,35.60416699910657]]]},"properties":{"MESHCODE":"5339352531","揺全壊":14.12647}},{"type":"Feature","id":6482,"geometry":{"type":"Polygon","coordinates":[[[139.7,35.59999999910661],[139.703125,35.59999999910661],[139.703125,35.60208299910657],[139.7,35.60208299910657],[139.7,35.59999999910661]]]},"properties":{"MESHCODE":"5339352611","揺全壊":12.75269}},{"type":"Feature","id":6495,"geometry":{"type":"Polygon","coordinates":[[[139.709375,35.60416699910657],[139.7125,35.60416699910657],[139.7125,35.606249999106545],[139.709375,35.606249999106545],[139.709375,35.60416699910657]]]},"properties":{"MESHCODE":"5339352642","揺全壊":10.84634}},{"type":"Feature","id":6512,"geometry":{"type":"Polygon","coordinates":[[[139.71875,35.606249999106545],[139.721875,35.606249999106545],[139.721875,35.60833299910652],[139.71875,35.60833299910652],[139.71875,35.606249999106545]]]},"properties":{"MESHCODE":"5339352743","揺全壊":10.68215}},{"type":"Feature","id":6522,"geometry":{"type":"Polygon","coordinates":[[[139.725,35.60416699910657],[139.728125,35.60416699910657],[139.728125,35.60624999910655],[139.725,35.60624999910655],[139.725,35.60416699910657]]]},"properties":{"MESHCODE":"5339352831","揺全壊":11.53512}},{"type":"Feature","id":6523,"geometry":{"type":"Polygon","coordinates":[[[139.728125,35.60416699910657],[139.73125,35.60416699910657],[139.73125,35.606249999106545],[139.728125,35.60624999910655],[139.728125,35.60416699910657]]]},"properties":{"MESHCODE":"5339352832","揺全壊":12.70548}},{"type":"Feature","id":6527,"geometry":{"type":"Polygon","coordinates":[[[139.734375,35.60416699910658],[139.7375,35.60416699910657],[139.7375,35.606249999106545],[139.734375,35.60624999910655],[139.734375,35.60416699910658]]]},"properties":{"MESHCODE":"5339352842","揺全壊":13.25025}},{"type":"Feature","id":6540,"geometry":{"type":"Polygon","coordinates":[[[139.7375,35.606249999106545],[139.740625,35.606249999106545],[139.740625,35.60833299910652],[139.7375,35.608332999106516],[139.7375,35.606249999106545]]]},"properties":{"MESHCODE":"5339352933","揺全壊":14.03096}},{"type":"Feature","id":6553,"geometry":{"type":"Polygon","coordinates":[[[139.634375,35.610416999106484],[139.6375,35.610416999106484],[139.6375,35.612499999106454],[139.634375,35.612499999106454],[139.634375,35.610416999106484]]]},"properties":{"MESHCODE":"5339353024","揺全壊":11.22228}},{"type":"Feature","id":6558,"geometry":{"type":"Polygon","coordinates":[[[139.63125,35.612499999106454],[139.634375,35.612499999106454],[139.634375,35.61458299910646],[139.63125,35.61458299910646],[139.63125,35.612499999106454]]]},"properties":{"MESHCODE":"5339353041","揺全壊":14.37595}},{"type":"Feature","id":6565,"geometry":{"type":"Polygon","coordinates":[[[139.640625,35.6104169991065],[139.64375,35.610416999106484],[139.64375,35.612499999106454],[139.640625,35.61249999910647],[139.640625,35.6104169991065]]]},"properties":{"MESHCODE":"5339353114","揺全壊":11.35145}},{"type":"Feature","id":6568,"geometry":{"type":"Polygon","coordinates":[[[139.64375,35.610416999106484],[139.646875,35.610416999106484],[139.646875,35.61249999910647],[139.64375,35.612499999106454],[139.64375,35.610416999106484]]]},"properties":{"MESHCODE":"5339353123","揺全壊":10.64896}},{"type":"Feature","id":6569,"geometry":{"type":"Polygon","coordinates":[[[139.646875,35.610416999106484],[139.65,35.6104169991065],[139.65,35.61249999910647],[139.646875,35.61249999910647],[139.646875,35.610416999106484]]]},"properties":{"MESHCODE":"5339353124","揺全壊":13.55138}},{"type":"Feature","id":6574,"geometry":{"type":"Polygon","coordinates":[[[139.64375,35.612499999106454],[139.646875,35.61249999910647],[139.646875,35.61458299910646],[139.64375,35.61458299910646],[139.64375,35.612499999106454]]]},"properties":{"MESHCODE":"5339353141","揺全壊":10.09939}},{"type":"Feature","id":6576,"geometry":{"type":"Polygon","coordinates":[[[139.64375,35.61458299910646],[139.646875,35.61458299910646],[139.646875,35.616666999106435],[139.64375,35.616666999106435],[139.64375,35.61458299910646]]]},"properties":{"MESHCODE":"5339353143","揺全壊":10.99155}},{"type":"Feature","id":6578,"geometry":{"type":"Polygon","coordinates":[[[139.65,35.60833299910652],[139.653125,35.60833299910652],[139.653125,35.610416999106484],[139.65,35.6104169991065],[139.65,35.60833299910652]]]},"properties":{"MESHCODE":"5339353211","揺全壊":12.8124}},{"type":"Feature","id":6582,"geometry":{"type":"Polygon","coordinates":[[[139.65625,35.608332999106516],[139.659375,35.60833299910652],[139.659375,35.610416999106484],[139.65625,35.610416999106484],[139.65625,35.608332999106516]]]},"properties":{"MESHCODE":"5339353221","揺全壊":12.13374}},{"type":"Feature","id":6584,"geometry":{"type":"Polygon","coordinates":[[[139.65625,35.610416999106484],[139.659375,35.610416999106484],[139.659375,35.612499999106454],[139.65625,35.61249999910647],[139.65625,35.610416999106484]]]},"properties":{"MESHCODE":"5339353223","揺全壊":10.31105}},{"type":"Feature","id":6594,"geometry":{"type":"Polygon","coordinates":[[[139.6625,35.60833299910652],[139.665625,35.60833299910652],[139.665625,35.610416999106484],[139.6625,35.610416999106484],[139.6625,35.60833299910652]]]},"properties":{"MESHCODE":"5339353311","揺全壊":14.34663}},{"type":"Feature","id":6687,"geometry":{"type":"Polygon","coordinates":[[[139.734375,35.612499999106454],[139.7375,35.612499999106454],[139.7375,35.61458299910646],[139.734375,35.61458299910644],[139.734375,35.612499999106454]]]},"properties":{"MESHCODE":"5339353842","揺全壊":14.068}},{"type":"Feature","id":6708,"geometry":{"type":"Polygon","coordinates":[[[139.625,35.6187499991064],[139.628125,35.6187499991064],[139.628125,35.620832999106376],[139.625,35.620832999106376],[139.625,35.6187499991064]]]},"properties":{"MESHCODE":"5339354013","揺全壊":11.21588}},{"type":"Feature","id":6726,"geometry":{"type":"Polygon","coordinates":[[[139.64375,35.616666999106435],[139.646875,35.616666999106435],[139.646875,35.6187499991064],[139.64375,35.6187499991064],[139.64375,35.616666999106435]]]},"properties":{"MESHCODE":"5339354121","揺全壊":13.55796}},{"type":"Feature","id":6728,"geometry":{"type":"Polygon","coordinates":[[[139.64375,35.6187499991064],[139.646875,35.6187499991064],[139.646875,35.620832999106376],[139.64375,35.620832999106376],[139.64375,35.6187499991064]]]},"properties":{"MESHCODE":"5339354123","揺全壊":13.34488}},{"type":"Feature","id":6788,"geometry":{"type":"Polygon","coordinates":[[[139.6875,35.6187499991064],[139.690625,35.6187499991064],[139.690625,35.62083299910638],[139.6875,35.620832999106376],[139.6875,35.6187499991064]]]},"properties":{"MESHCODE":"5339354513","揺全壊":10.22111}},{"type":"Feature","id":6795,"geometry":{"type":"Polygon","coordinates":[[[139.690625,35.62083299910638],[139.69375,35.620832999106376],[139.69375,35.62291699910637],[139.690625,35.62291699910637],[139.690625,35.62083299910638]]]},"properties":{"MESHCODE":"5339354532","揺全壊":14.11505}},{"type":"Feature","id":6866,"geometry":{"type":"Polygon","coordinates":[[[139.625,35.62499999910634],[139.628125,35.62499999910634],[139.628125,35.62708299910633],[139.625,35.62708299910633],[139.625,35.62499999910634]]]},"properties":{"MESHCODE":"5339355011","揺全壊":14.15971}},{"type":"Feature","id":6936,"geometry":{"type":"Polygon","coordinates":[[[139.68125,35.62708299910633],[139.684375,35.62708299910633],[139.684375,35.6291669991063],[139.68125,35.62916699910631],[139.68125,35.62708299910633]]]},"properties":{"MESHCODE":"5339355423","揺全壊":10.33794}},{"type":"Feature","id":6938,"geometry":{"type":"Polygon","coordinates":[[[139.675,35.62916699910631],[139.678125,35.62916699910631],[139.678125,35.63124999910628],[139.675,35.63124999910628],[139.675,35.62916699910631]]]},"properties":{"MESHCODE":"5339355431","揺全壊":10.5102}},{"type":"Feature","id":6942,"geometry":{"type":"Polygon","coordinates":[[[139.68125,35.62916699910631],[139.684375,35.6291669991063],[139.684375,35.63124999910628],[139.68125,35.63124999910628],[139.68125,35.62916699910631]]]},"properties":{"MESHCODE":"5339355441","揺全壊":10.71603}},{"type":"Feature","id":7070,"geometry":{"type":"Polygon","coordinates":[[[139.65625,35.637499999106225],[139.659375,35.637499999106225],[139.659375,35.639582999106196],[139.65625,35.639582999106196],[139.65625,35.637499999106225]]]},"properties":{"MESHCODE":"5339356241","揺全壊":13.63861}},{"type":"Feature","id":7083,"geometry":{"type":"Polygon","coordinates":[[[139.665625,35.637499999106225],[139.66875,35.637499999106225],[139.66875,35.639582999106196],[139.665625,35.639582999106196],[139.665625,35.637499999106225]]]},"properties":{"MESHCODE":"5339356332","揺全壊":13.87816}},{"type":"Feature","id":7089,"geometry":{"type":"Polygon","coordinates":[[[139.671875,35.639582999106196],[139.675,35.639582999106196],[139.675,35.64166699910616],[139.671875,35.64166699910617],[139.671875,35.639582999106196]]]},"properties":{"MESHCODE":"5339356344","揺全壊":12.24419}},{"type":"Feature","id":7097,"geometry":{"type":"Polygon","coordinates":[[[139.684375,35.63541699910623],[139.6875,35.63541699910624],[139.6875,35.637499999106225],[139.684375,35.637499999106225],[139.684375,35.63541699910623]]]},"properties":{"MESHCODE":"5339356424","揺全壊":10.31834}},{"type":"Feature","id":7098,"geometry":{"type":"Polygon","coordinates":[[[139.675,35.637499999106225],[139.678125,35.637499999106225],[139.678125,35.639582999106196],[139.675,35.639582999106196],[139.675,35.637499999106225]]]},"properties":{"MESHCODE":"5339356431","揺全壊":13.75159}},{"type":"Feature","id":7101,"geometry":{"type":"Polygon","coordinates":[[[139.678125,35.639582999106196],[139.68125,35.639582999106196],[139.68125,35.64166699910617],[139.678125,35.64166699910616],[139.678125,35.639582999106196]]]},"properties":{"MESHCODE":"5339356434","揺全壊":10.72987}},{"type":"Feature","id":7102,"geometry":{"type":"Polygon","coordinates":[[[139.68125,35.637499999106225],[139.684375,35.637499999106225],[139.684375,35.639582999106196],[139.68125,35.639582999106196],[139.68125,35.637499999106225]]]},"properties":{"MESHCODE":"5339356441","揺全壊":11.28714}},{"type":"Feature","id":7110,"geometry":{"type":"Polygon","coordinates":[[[139.69375,35.633332999106244],[139.696875,35.633332999106244],[139.696875,35.63541699910624],[139.69375,35.63541699910623],[139.69375,35.633332999106244]]]},"properties":{"MESHCODE":"5339356521","揺全壊":11.15433}},{"type":"Feature","id":7211,"geometry":{"type":"Polygon","coordinates":[[[139.640625,35.64583299910614],[139.64375,35.645832999106126],[139.64375,35.64791699910609],[139.640625,35.64791699910611],[139.640625,35.64583299910614]]]},"properties":{"MESHCODE":"5339357132","揺全壊":13.56605}},{"type":"Feature","id":7242,"geometry":{"type":"Polygon","coordinates":[[[139.6625,35.645832999106126],[139.665625,35.645832999106126],[139.665625,35.64791699910609],[139.6625,35.64791699910609],[139.6625,35.645832999106126]]]},"properties":{"MESHCODE":"5339357331","揺全壊":12.15138}},{"type":"Feature","id":7347,"geometry":{"type":"Polygon","coordinates":[[[139.628125,35.64999999910607],[139.63125,35.64999999910607],[139.63125,35.65208299910605],[139.628125,35.65208299910605],[139.628125,35.64999999910607]]]},"properties":{"MESHCODE":"5339358012","揺全壊":11.22888}},{"type":"Feature","id":7354,"geometry":{"type":"Polygon","coordinates":[[[139.625,35.65416699910603],[139.628125,35.65416699910603],[139.628125,35.65624999910601],[139.625,35.65624999910601],[139.625,35.65416699910603]]]},"properties":{"MESHCODE":"5339358031","揺全壊":10.313}},{"type":"Feature","id":7387,"geometry":{"type":"Polygon","coordinates":[[[139.653125,35.65416699910603],[139.65625,35.65416699910603],[139.65625,35.656249999105995],[139.653125,35.65624999910601],[139.653125,35.65416699910603]]]},"properties":{"MESHCODE":"5339358232","揺全壊":13.55328}},{"type":"Feature","id":7513,"geometry":{"type":"Polygon","coordinates":[[[139.634375,35.660416999105976],[139.6375,35.660416999105976],[139.6375,35.662499999105954],[139.634375,35.662499999105954],[139.634375,35.660416999105976]]]},"properties":{"MESHCODE":"5339359024","揺全壊":12.42011}},{"type":"Feature","id":7521,"geometry":{"type":"Polygon","coordinates":[[[139.634375,35.664582999105924],[139.6375,35.664582999105924],[139.6375,35.66666699910591],[139.634375,35.66666699910591],[139.634375,35.664582999105924]]]},"properties":{"MESHCODE":"5339359044","揺全壊":13.03847}},{"type":"Feature","id":8605,"geometry":{"type":"Polygon","coordinates":[[[139.8,35.664582999105924],[139.803125,35.664582999105924],[139.803125,35.66666699910591],[139.8,35.66666699910591],[139.8,35.664582999105924]]]},"properties":{"MESHCODE":"5339369433","揺全壊":10.02639}},{"type":"Feature","id":11327,"geometry":{"type":"Polygon","coordinates":[[[139.34375,35.668749999105884],[139.346875,35.668749999105884],[139.346875,35.670832999105855],[139.34375,35.670832999105855],[139.34375,35.668749999105884]]]},"properties":{"MESHCODE":"5339420723","揺全壊":10.27912}},{"type":"Feature","id":11337,"geometry":{"type":"Polygon","coordinates":[[[139.35,35.66666699910591],[139.353125,35.66666699910591],[139.353125,35.668749999105884],[139.35,35.668749999105884],[139.35,35.66666699910591]]]},"properties":{"MESHCODE":"5339420811","揺全壊":12.3927}},{"type":"Feature","id":12973,"geometry":{"type":"Polygon","coordinates":[[[139.38125,35.674999999105815],[139.384375,35.674999999105815],[139.384375,35.67708299910581],[139.38125,35.67708299910581],[139.38125,35.674999999105815]]]},"properties":{"MESHCODE":"5339431021","揺全壊":12.11073}},{"type":"Feature","id":12985,"geometry":{"type":"Polygon","coordinates":[[[139.3875,35.674999999105815],[139.390625,35.674999999105815],[139.390625,35.67708299910581],[139.3875,35.6770829991058],[139.3875,35.674999999105815]]]},"properties":{"MESHCODE":"5339431111","揺全壊":14.41501}},{"type":"Feature","id":13392,"geometry":{"type":"Polygon","coordinates":[[[139.459375,35.69374999910563],[139.4625,35.69374999910564],[139.4625,35.69583299910559],[139.459375,35.69583299910559],[139.459375,35.69374999910563]]]},"properties":{"MESHCODE":"5339433624","揺全壊":11.81588}},{"type":"Feature","id":13752,"geometry":{"type":"Polygon","coordinates":[[[139.484375,35.714582999105396],[139.4875,35.714582999105396],[139.4875,35.71666699910537],[139.484375,35.71666699910537],[139.484375,35.714582999105396]]]},"properties":{"MESHCODE":"5339435844","揺全壊":10.13722}},{"type":"Feature","id":14545,"geometry":{"type":"Polygon","coordinates":[[[139.6,35.67083299910586],[139.603125,35.670832999105855],[139.603125,35.672916999105844],[139.6,35.672916999105844],[139.6,35.67083299910586]]]},"properties":{"MESHCODE":"5339440831","揺全壊":10.35866}},{"type":"Feature","id":14689,"geometry":{"type":"Polygon","coordinates":[[[139.5875,35.67916699910577],[139.590625,35.67916699910577],[139.590625,35.68124999910575],[139.5875,35.68124999910575],[139.5875,35.67916699910577]]]},"properties":{"MESHCODE":"5339441731","揺全壊":10.43746}},{"type":"Feature","id":14698,"geometry":{"type":"Polygon","coordinates":[[[139.603125,35.674999999105815],[139.60625,35.674999999105815],[139.60625,35.67708299910581],[139.603125,35.67708299910581],[139.603125,35.674999999105815]]]},"properties":{"MESHCODE":"5339441812","揺全壊":12.73841}},{"type":"Feature","id":14699,"geometry":{"type":"Polygon","coordinates":[[[139.6,35.6770829991058],[139.603125,35.67708299910581],[139.603125,35.67916699910577],[139.6,35.67916699910579],[139.6,35.6770829991058]]]},"properties":{"MESHCODE":"5339441813","揺全壊":11.37031}},{"type":"Feature","id":14826,"geometry":{"type":"Polygon","coordinates":[[[139.578125,35.68333299910573],[139.58125,35.68333299910573],[139.58125,35.685416999105726],[139.578125,35.685416999105726],[139.578125,35.68333299910573]]]},"properties":{"MESHCODE":"5339442612","揺全壊":12.58184}},{"type":"Feature","id":14888,"geometry":{"type":"Polygon","coordinates":[[[139.621875,35.68958299910567],[139.625,35.68958299910567],[139.625,35.691666999105664],[139.621875,35.69166699910565],[139.621875,35.68958299910567]]]},"properties":{"MESHCODE":"5339442944","揺全壊":10.50272}},{"type":"Feature","id":15341,"geometry":{"type":"Polygon","coordinates":[[[139.60625,35.70833299910548],[139.609375,35.70833299910548],[139.609375,35.71041699910544],[139.60625,35.71041699910543],[139.60625,35.70833299910548]]]},"properties":{"MESHCODE":"5339445821","揺全壊":11.87185}},{"type":"Feature","id":15478,"geometry":{"type":"Polygon","coordinates":[[[139.584375,35.72083299910535],[139.5875,35.72083299910535],[139.5875,35.72291699910533],[139.584375,35.72291699910533],[139.584375,35.72083299910535]]]},"properties":{"MESHCODE":"5339446642","揺全壊":11.73698}},{"type":"Feature","id":15965,"geometry":{"type":"Polygon","coordinates":[[[139.59375,35.741666999105114],[139.596875,35.741666999105114],[139.596875,35.74374999910509],[139.59375,35.74374999910509],[139.59375,35.741666999105114]]]},"properties":{"MESHCODE":"5339449721","揺全壊":11.18673}},{"type":"Feature","id":15968,"geometry":{"type":"Polygon","coordinates":[[[139.596875,35.74374999910509],[139.6,35.74374999910509],[139.6,35.74583299910507],[139.596875,35.74583299910506],[139.596875,35.74374999910509]]]},"properties":{"MESHCODE":"5339449724","揺全壊":12.8829}},{"type":"Feature","id":16018,"geometry":{"type":"Polygon","coordinates":[[[139.628125,35.670832999105855],[139.63125,35.670832999105855],[139.63125,35.672916999105844],[139.628125,35.672916999105844],[139.628125,35.670832999105855]]]},"properties":{"MESHCODE":"5339450032","揺全壊":10.1504}},{"type":"Feature","id":16036,"geometry":{"type":"Polygon","coordinates":[[[139.640625,35.672916999105844],[139.64375,35.672916999105844],[139.64375,35.674999999105815],[139.640625,35.674999999105815],[139.640625,35.672916999105844]]]},"properties":{"MESHCODE":"5339450134","揺全壊":10.39229}},{"type":"Feature","id":16174,"geometry":{"type":"Polygon","coordinates":[[[139.634375,35.674999999105815],[139.6375,35.674999999105815],[139.6375,35.67708299910581],[139.634375,35.67708299910581],[139.634375,35.674999999105815]]]},"properties":{"MESHCODE":"5339451022","揺全壊":12.76205}},{"type":"Feature","id":16193,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.67916699910577],[139.640625,35.67916699910579],[139.640625,35.68124999910575],[139.6375,35.68124999910575],[139.6375,35.67916699910577]]]},"properties":{"MESHCODE":"5339451131","揺全壊":11.26638}},{"type":"Feature","id":16199,"geometry":{"type":"Polygon","coordinates":[[[139.64375,35.68124999910575],[139.646875,35.68124999910575],[139.646875,35.68333299910572],[139.64375,35.68333299910573],[139.64375,35.68124999910575]]]},"properties":{"MESHCODE":"5339451143","揺全壊":10.5785}},{"type":"Feature","id":16332,"geometry":{"type":"Polygon","coordinates":[[[139.628125,35.685416999105726],[139.63125,35.685416999105726],[139.63125,35.68749999910568],[139.628125,35.68749999910568],[139.628125,35.685416999105726]]]},"properties":{"MESHCODE":"5339452014","揺全壊":13.74465}},{"type":"Feature","id":16349,"geometry":{"type":"Polygon","coordinates":[[[139.64375,35.68333299910573],[139.646875,35.68333299910572],[139.646875,35.685416999105705],[139.64375,35.685416999105705],[139.64375,35.68333299910573]]]},"properties":{"MESHCODE":"5339452121","揺全壊":11.58311}},{"type":"Feature","id":16359,"geometry":{"type":"Polygon","coordinates":[[[139.64375,35.68958299910567],[139.646875,35.68958299910567],[139.646875,35.69166699910565],[139.64375,35.691666999105664],[139.64375,35.68958299910567]]]},"properties":{"MESHCODE":"5339452143","揺全壊":12.08982}},{"type":"Feature","id":16399,"geometry":{"type":"Polygon","coordinates":[[[139.68125,35.685416999105726],[139.684375,35.685416999105726],[139.684375,35.68749999910568],[139.68125,35.68749999910568],[139.68125,35.685416999105726]]]},"properties":{"MESHCODE":"5339452423","揺全壊":10.03209}},{"type":"Feature","id":16492,"geometry":{"type":"Polygon","coordinates":[[[139.628125,35.69374999910563],[139.63125,35.69374999910563],[139.63125,35.69583299910559],[139.628125,35.69583299910559],[139.628125,35.69374999910563]]]},"properties":{"MESHCODE":"5339453014","揺全壊":14.08907}},{"type":"Feature","id":16697,"geometry":{"type":"Polygon","coordinates":[[[139.6625,35.69999999910556],[139.665625,35.69999999910556],[139.665625,35.702082999105535],[139.6625,35.702082999105535],[139.6625,35.69999999910556]]]},"properties":{"MESHCODE":"5339454311","揺全壊":12.62856}},{"type":"Feature","id":16836,"geometry":{"type":"Polygon","coordinates":[[[139.640625,35.714582999105396],[139.64375,35.714582999105396],[139.64375,35.71666699910537],[139.640625,35.71666699910538],[139.640625,35.714582999105396]]]},"properties":{"MESHCODE":"5339455134","揺全壊":14.6756}},{"type":"Feature","id":16839,"geometry":{"type":"Polygon","coordinates":[[[139.64375,35.714582999105396],[139.646875,35.714582999105396],[139.646875,35.71666699910538],[139.64375,35.71666699910537],[139.64375,35.714582999105396]]]},"properties":{"MESHCODE":"5339455143","揺全壊":14.02035}},{"type":"Feature","id":17139,"geometry":{"type":"Polygon","coordinates":[[[139.625,35.731249999105245],[139.628125,35.731249999105245],[139.628125,35.733332999105215],[139.625,35.733332999105215],[139.625,35.731249999105245]]]},"properties":{"MESHCODE":"5339457033","揺全壊":10.37241}},{"type":"Feature","id":17145,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.72499999910529],[139.640625,35.7249999991053],[139.640625,35.72708299910527],[139.6375,35.72708299910527],[139.6375,35.72499999910529]]]},"properties":{"MESHCODE":"5339457111","揺全壊":14.50229}},{"type":"Feature","id":17282,"geometry":{"type":"Polygon","coordinates":[[[139.740625,35.72916699910524],[139.74375,35.72916699910524],[139.74375,35.731249999105245],[139.740625,35.731249999105245],[139.740625,35.72916699910524]]]},"properties":{"MESHCODE":"5339457932","揺全壊":14.04775}},{"type":"Feature","id":17388,"geometry":{"type":"Polygon","coordinates":[[[139.703125,35.73541699910518],[139.70625,35.73541699910518],[139.70625,35.73749999910516],[139.703125,35.73749999910516],[139.703125,35.73541699910518]]]},"properties":{"MESHCODE":"5339458614","揺全壊":11.94225}},{"type":"Feature","id":17445,"geometry":{"type":"Polygon","coordinates":[[[139.74375,35.73749999910516],[139.746875,35.73749999910516],[139.746875,35.73958299910514],[139.74375,35.73958299910514],[139.74375,35.73749999910516]]]},"properties":{"MESHCODE":"5339458941","揺全壊":14.40342}},{"type":"Feature","id":17446,"geometry":{"type":"Polygon","coordinates":[[[139.746875,35.73749999910516],[139.75,35.73749999910516],[139.75,35.73958299910514],[139.746875,35.73958299910514],[139.746875,35.73749999910516]]]},"properties":{"MESHCODE":"5339458942","揺全壊":11.94815}},{"type":"Feature","id":17671,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.672916999105844],[139.796875,35.672916999105844],[139.796875,35.674999999105815],[139.79375,35.674999999105815],[139.79375,35.672916999105844]]]},"properties":{"MESHCODE":"5339460343","揺全壊":10.20977}},{"type":"Feature","id":17721,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.66666699910591],[139.840625,35.66666699910591],[139.840625,35.668749999105884],[139.8375,35.66874999910589],[139.8375,35.66666699910591]]]},"properties":{"MESHCODE":"5339460711","揺全壊":10.32043}},{"type":"Feature","id":17835,"geometry":{"type":"Polygon","coordinates":[[[139.8,35.67708299910581],[139.803125,35.67708299910581],[139.803125,35.67916699910579],[139.8,35.67916699910577],[139.8,35.67708299910581]]]},"properties":{"MESHCODE":"5339461413","揺全壊":12.07337}},{"type":"Feature","id":17873,"geometry":{"type":"Polygon","coordinates":[[[139.825,35.67916699910577],[139.828125,35.67916699910577],[139.828125,35.68124999910575],[139.825,35.68124999910575],[139.825,35.67916699910577]]]},"properties":{"MESHCODE":"5339461631","揺全壊":13.82888}},{"type":"Feature","id":17884,"geometry":{"type":"Polygon","coordinates":[[[139.840625,35.67708299910581],[139.84375,35.67708299910581],[139.84375,35.67916699910577],[139.840625,35.67916699910577],[139.840625,35.67708299910581]]]},"properties":{"MESHCODE":"5339461714","揺全壊":12.30545}},{"type":"Feature","id":17891,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.68124999910575],[139.840625,35.68124999910575],[139.840625,35.68333299910573],[139.8375,35.68333299910573],[139.8375,35.68124999910575]]]},"properties":{"MESHCODE":"5339461733","揺全壊":11.76222}},{"type":"Feature","id":17981,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.68333299910573],[139.796875,35.68333299910573],[139.796875,35.685416999105726],[139.79375,35.685416999105726],[139.79375,35.68333299910573]]]},"properties":{"MESHCODE":"5339462321","揺全壊":12.08075}},{"type":"Feature","id":17992,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.68958299910567],[139.8,35.68958299910567],[139.8,35.69166699910565],[139.796875,35.691666999105664],[139.796875,35.68958299910567]]]},"properties":{"MESHCODE":"5339462344","揺全壊":12.12963}},{"type":"Feature","id":17995,"geometry":{"type":"Polygon","coordinates":[[[139.8,35.685416999105726],[139.803125,35.685416999105726],[139.803125,35.68749999910568],[139.8,35.68749999910568],[139.8,35.685416999105726]]]},"properties":{"MESHCODE":"5339462413","揺全壊":13.36249}},{"type":"Feature","id":17996,"geometry":{"type":"Polygon","coordinates":[[[139.803125,35.685416999105726],[139.80625,35.685416999105726],[139.80625,35.68749999910568],[139.803125,35.68749999910568],[139.803125,35.685416999105726]]]},"properties":{"MESHCODE":"5339462414","揺全壊":14.97126}},{"type":"Feature","id":18003,"geometry":{"type":"Polygon","coordinates":[[[139.8,35.68958299910567],[139.803125,35.68958299910567],[139.803125,35.69166699910565],[139.8,35.69166699910565],[139.8,35.68958299910567]]]},"properties":{"MESHCODE":"5339462433","揺全壊":11.49623}},{"type":"Feature","id":18005,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.68749999910568],[139.809375,35.68749999910568],[139.809375,35.68958299910567],[139.80625,35.68958299910567],[139.80625,35.68749999910568]]]},"properties":{"MESHCODE":"5339462441","揺全壊":10.5375}},{"type":"Feature","id":18036,"geometry":{"type":"Polygon","coordinates":[[[139.828125,35.68958299910567],[139.83125,35.68958299910567],[139.83125,35.691666999105664],[139.828125,35.691666999105664],[139.828125,35.68958299910567]]]},"properties":{"MESHCODE":"5339462634","揺全壊":13.38478}},{"type":"Feature","id":18140,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.69374999910563],[139.79375,35.69374999910563],[139.79375,35.69583299910559],[139.790625,35.69583299910559],[139.790625,35.69374999910563]]]},"properties":{"MESHCODE":"5339463314","揺全壊":11.77256}},{"type":"Feature","id":18144,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.69374999910564],[139.8,35.69374999910563],[139.8,35.69583299910559],[139.796875,35.69583299910559],[139.796875,35.69374999910564]]]},"properties":{"MESHCODE":"5339463324","揺全壊":12.05272}},{"type":"Feature","id":18155,"geometry":{"type":"Polygon","coordinates":[[[139.8,35.69374999910563],[139.803125,35.69374999910564],[139.803125,35.69583299910559],[139.8,35.69583299910559],[139.8,35.69374999910563]]]},"properties":{"MESHCODE":"5339463413","揺全壊":13.5563}},{"type":"Feature","id":18163,"geometry":{"type":"Polygon","coordinates":[[[139.8,35.69791699910557],[139.803125,35.69791699910557],[139.803125,35.69999999910556],[139.8,35.69999999910556],[139.8,35.69791699910557]]]},"properties":{"MESHCODE":"5339463433","揺全壊":11.47885}},{"type":"Feature","id":18167,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.69791699910557],[139.809375,35.69791699910557],[139.809375,35.69999999910556],[139.80625,35.69999999910556],[139.80625,35.69791699910557]]]},"properties":{"MESHCODE":"5339463443","揺全壊":12.98655}},{"type":"Feature","id":18169,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.69166699910565],[139.815625,35.691666999105664],[139.815625,35.69374999910563],[139.8125,35.69374999910564],[139.8125,35.69166699910565]]]},"properties":{"MESHCODE":"5339463511","揺全壊":11.96569}},{"type":"Feature","id":18173,"geometry":{"type":"Polygon","coordinates":[[[139.81875,35.69166699910565],[139.821875,35.691666999105664],[139.821875,35.69374999910563],[139.81875,35.69374999910563],[139.81875,35.69166699910565]]]},"properties":{"MESHCODE":"5339463521","揺全壊":11.16168}},{"type":"Feature","id":18191,"geometry":{"type":"Polygon","coordinates":[[[139.83125,35.69374999910563],[139.834375,35.69374999910561],[139.834375,35.69583299910559],[139.83125,35.69583299910559],[139.83125,35.69374999910563]]]},"properties":{"MESHCODE":"5339463623","揺全壊":11.91604}},{"type":"Feature","id":18241,"geometry":{"type":"Polygon","coordinates":[[[139.8625,35.69583299910559],[139.865625,35.69583299910559],[139.865625,35.69791699910557],[139.8625,35.69791699910557],[139.8625,35.69583299910559]]]},"properties":{"MESHCODE":"5339463931","揺全壊":10.38653}},{"type":"Feature","id":18242,"geometry":{"type":"Polygon","coordinates":[[[139.865625,35.69583299910559],[139.86875,35.69583299910559],[139.86875,35.69791699910557],[139.865625,35.69791699910557],[139.865625,35.69583299910559]]]},"properties":{"MESHCODE":"5339463932","揺全壊":10.39859}},{"type":"Feature","id":18243,"geometry":{"type":"Polygon","coordinates":[[[139.8625,35.69791699910557],[139.865625,35.69791699910557],[139.865625,35.69999999910556],[139.8625,35.69999999910556],[139.8625,35.69791699910557]]]},"properties":{"MESHCODE":"5339463933","揺全壊":13.11637}},{"type":"Feature","id":18285,"geometry":{"type":"Polygon","coordinates":[[[139.78125,35.69999999910556],[139.784375,35.69999999910557],[139.784375,35.702082999105556],[139.78125,35.70208299910554],[139.78125,35.69999999910556]]]},"properties":{"MESHCODE":"5339464221","揺全壊":12.34596}},{"type":"Feature","id":18286,"geometry":{"type":"Polygon","coordinates":[[[139.784375,35.69999999910557],[139.7875,35.69999999910557],[139.7875,35.70208299910554],[139.784375,35.702082999105556],[139.784375,35.69999999910557]]]},"properties":{"MESHCODE":"5339464222","揺全壊":10.04535}},{"type":"Feature","id":18288,"geometry":{"type":"Polygon","coordinates":[[[139.784375,35.702082999105556],[139.7875,35.70208299910554],[139.7875,35.70416699910552],[139.784375,35.70416699910551],[139.784375,35.702082999105556]]]},"properties":{"MESHCODE":"5339464224","揺全壊":11.45112}},{"type":"Feature","id":18294,"geometry":{"type":"Polygon","coordinates":[[[139.784375,35.70416699910551],[139.7875,35.70416699910552],[139.7875,35.70624999910548],[139.784375,35.70624999910548],[139.784375,35.70416699910551]]]},"properties":{"MESHCODE":"5339464242","揺全壊":10.22345}},{"type":"Feature","id":18299,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.70208299910554],[139.790625,35.70208299910554],[139.790625,35.70416699910552],[139.7875,35.70416699910552],[139.7875,35.70208299910554]]]},"properties":{"MESHCODE":"5339464313","揺全壊":13.85659}},{"type":"Feature","id":18319,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.70208299910554],[139.809375,35.70208299910554],[139.809375,35.70416699910552],[139.80625,35.70416699910552],[139.80625,35.70208299910554]]]},"properties":{"MESHCODE":"5339464423","揺全壊":11.59984}},{"type":"Feature","id":18351,"geometry":{"type":"Polygon","coordinates":[[[139.83125,35.70208299910554],[139.834375,35.702082999105535],[139.834375,35.70416699910552],[139.83125,35.70416699910552],[139.83125,35.70208299910554]]]},"properties":{"MESHCODE":"5339464623","揺全壊":14.12964}},{"type":"Feature","id":18364,"geometry":{"type":"Polygon","coordinates":[[[139.840625,35.70208299910554],[139.84375,35.70208299910554],[139.84375,35.70416699910552],[139.840625,35.70416699910552],[139.840625,35.70208299910554]]]},"properties":{"MESHCODE":"5339464714","揺全壊":10.78588}},{"type":"Feature","id":18372,"geometry":{"type":"Polygon","coordinates":[[[139.840625,35.70624999910548],[139.84375,35.706249999105474],[139.84375,35.70833299910548],[139.840625,35.70833299910548],[139.840625,35.70624999910548]]]},"properties":{"MESHCODE":"5339464734","揺全壊":11.30979}},{"type":"Feature","id":18374,"geometry":{"type":"Polygon","coordinates":[[[139.846875,35.70416699910552],[139.85,35.70416699910551],[139.85,35.70624999910548],[139.846875,35.70624999910548],[139.846875,35.70416699910552]]]},"properties":{"MESHCODE":"5339464742","揺全壊":10.51851}},{"type":"Feature","id":18392,"geometry":{"type":"Polygon","coordinates":[[[139.859375,35.70624999910548],[139.8625,35.70624999910548],[139.8625,35.70833299910548],[139.859375,35.70833299910548],[139.859375,35.70624999910548]]]},"properties":{"MESHCODE":"5339464844","揺全壊":10.30251}},{"type":"Feature","id":18456,"geometry":{"type":"Polygon","coordinates":[[[139.784375,35.714582999105396],[139.7875,35.714582999105396],[139.7875,35.71666699910537],[139.784375,35.71666699910537],[139.784375,35.714582999105396]]]},"properties":{"MESHCODE":"5339465244","揺全壊":11.79001}},{"type":"Feature","id":18463,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.71041699910544],[139.796875,35.71041699910544],[139.796875,35.712499999105425],[139.79375,35.712499999105425],[139.79375,35.71041699910544]]]},"properties":{"MESHCODE":"5339465323","揺全壊":12.4059}},{"type":"Feature","id":18465,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.712499999105425],[139.790625,35.712499999105425],[139.790625,35.714582999105396],[139.7875,35.714582999105396],[139.7875,35.712499999105425]]]},"properties":{"MESHCODE":"5339465331","揺全壊":10.0111}},{"type":"Feature","id":18478,"geometry":{"type":"Polygon","coordinates":[[[139.809375,35.70833299910548],[139.8125,35.70833299910548],[139.8125,35.71041699910544],[139.809375,35.71041699910544],[139.809375,35.70833299910548]]]},"properties":{"MESHCODE":"5339465422","揺全壊":12.99945}},{"type":"Feature","id":18494,"geometry":{"type":"Polygon","coordinates":[[[139.821875,35.70833299910548],[139.825,35.70833299910548],[139.825,35.71041699910544],[139.821875,35.71041699910544],[139.821875,35.70833299910548]]]},"properties":{"MESHCODE":"5339465522","揺全壊":11.15393}},{"type":"Feature","id":18508,"geometry":{"type":"Polygon","coordinates":[[[139.828125,35.71041699910544],[139.83125,35.71041699910544],[139.83125,35.712499999105425],[139.828125,35.712499999105425],[139.828125,35.71041699910544]]]},"properties":{"MESHCODE":"5339465614","揺全壊":13.9267}},{"type":"Feature","id":18516,"geometry":{"type":"Polygon","coordinates":[[[139.828125,35.714582999105396],[139.83125,35.714582999105396],[139.83125,35.71666699910537],[139.828125,35.71666699910537],[139.828125,35.714582999105396]]]},"properties":{"MESHCODE":"5339465634","揺全壊":10.78317}},{"type":"Feature","id":18522,"geometry":{"type":"Polygon","coordinates":[[[139.840625,35.70833299910548],[139.84375,35.70833299910548],[139.84375,35.71041699910544],[139.840625,35.71041699910544],[139.840625,35.70833299910548]]]},"properties":{"MESHCODE":"5339465712","揺全壊":14.53509}},{"type":"Feature","id":18658,"geometry":{"type":"Polygon","coordinates":[[[139.815625,35.72083299910535],[139.81875,35.72083299910535],[139.81875,35.72291699910532],[139.815625,35.72291699910532],[139.815625,35.72083299910535]]]},"properties":{"MESHCODE":"5339466532","揺全壊":14.62479}},{"type":"Feature","id":18659,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.72291699910533],[139.815625,35.72291699910532],[139.815625,35.72499999910529],[139.8125,35.72499999910529],[139.8125,35.72291699910533]]]},"properties":{"MESHCODE":"5339466533","揺全壊":12.09892}},{"type":"Feature","id":18660,"geometry":{"type":"Polygon","coordinates":[[[139.815625,35.72291699910532],[139.81875,35.72291699910532],[139.81875,35.72499999910529],[139.815625,35.72499999910529],[139.815625,35.72291699910532]]]},"properties":{"MESHCODE":"5339466534","揺全壊":11.5643}},{"type":"Feature","id":18667,"geometry":{"type":"Polygon","coordinates":[[[139.825,35.718749999105356],[139.828125,35.718749999105356],[139.828125,35.72083299910535],[139.825,35.72083299910535],[139.825,35.718749999105356]]]},"properties":{"MESHCODE":"5339466613","揺全壊":10.70716}},{"type":"Feature","id":18672,"geometry":{"type":"Polygon","coordinates":[[[139.834375,35.718749999105356],[139.8375,35.718749999105356],[139.8375,35.72083299910535],[139.834375,35.72083299910535],[139.834375,35.718749999105356]]]},"properties":{"MESHCODE":"5339466624","揺全壊":14.61862}},{"type":"Feature","id":18699,"geometry":{"type":"Polygon","coordinates":[[[139.85,35.718749999105356],[139.853125,35.718749999105356],[139.853125,35.72083299910535],[139.85,35.72083299910533],[139.85,35.718749999105356]]]},"properties":{"MESHCODE":"5339466813","揺全壊":11.73459}},{"type":"Feature","id":18743,"geometry":{"type":"Polygon","coordinates":[[[139.75625,35.731249999105245],[139.759375,35.731249999105245],[139.759375,35.733332999105215],[139.75625,35.7333329991052],[139.75625,35.731249999105245]]]},"properties":{"MESHCODE":"5339467043","揺全壊":12.1254}},{"type":"Feature","id":18755,"geometry":{"type":"Polygon","coordinates":[[[139.7625,35.731249999105245],[139.765625,35.731249999105245],[139.765625,35.733332999105215],[139.7625,35.733332999105215],[139.7625,35.731249999105245]]]},"properties":{"MESHCODE":"5339467133","揺全壊":12.16584}},{"type":"Feature","id":18773,"geometry":{"type":"Polygon","coordinates":[[[139.78125,35.72916699910524],[139.784375,35.72916699910524],[139.784375,35.731249999105245],[139.78125,35.73124999910523],[139.78125,35.72916699910524]]]},"properties":{"MESHCODE":"5339467241","揺全壊":12.18061}},{"type":"Feature","id":18785,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.72916699910524],[139.790625,35.72916699910524],[139.790625,35.731249999105245],[139.7875,35.731249999105245],[139.7875,35.72916699910524]]]},"properties":{"MESHCODE":"5339467331","揺全壊":13.50635}},{"type":"Feature","id":18786,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.72916699910524],[139.79375,35.72916699910524],[139.79375,35.731249999105245],[139.790625,35.731249999105245],[139.790625,35.72916699910524]]]},"properties":{"MESHCODE":"5339467332","揺全壊":10.63738}},{"type":"Feature","id":18792,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.731249999105245],[139.8,35.731249999105245],[139.8,35.733332999105215],[139.796875,35.733332999105215],[139.796875,35.731249999105245]]]},"properties":{"MESHCODE":"5339467344","揺全壊":12.93166}},{"type":"Feature","id":18811,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.72708299910527],[139.815625,35.72708299910527],[139.815625,35.72916699910524],[139.8125,35.72916699910524],[139.8125,35.72708299910527]]]},"properties":{"MESHCODE":"5339467513","揺全壊":10.00879}},{"type":"Feature","id":18894,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.733332999105215],[139.7625,35.733332999105215],[139.7625,35.73541699910518],[139.759375,35.73541699910518],[139.759375,35.733332999105215]]]},"properties":{"MESHCODE":"5339468022","揺全壊":14.50924}},{"type":"Feature","id":18940,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.735416999105176],[139.79375,35.73541699910518],[139.79375,35.73749999910516],[139.790625,35.73749999910516],[139.790625,35.735416999105176]]]},"properties":{"MESHCODE":"5339468314","揺全壊":13.09247}},{"type":"Feature","id":18990,"geometry":{"type":"Polygon","coordinates":[[[139.834375,35.733332999105215],[139.8375,35.73333299910522],[139.8375,35.73541699910518],[139.834375,35.73541699910518],[139.834375,35.733332999105215]]]},"properties":{"MESHCODE":"5339468622","揺全壊":13.86996}},{"type":"Feature","id":18995,"geometry":{"type":"Polygon","coordinates":[[[139.825,35.73958299910514],[139.828125,35.73958299910514],[139.828125,35.741666999105114],[139.825,35.741666999105114],[139.825,35.73958299910514]]]},"properties":{"MESHCODE":"5339468633","揺全壊":13.78285}},{"type":"Feature","id":18998,"geometry":{"type":"Polygon","coordinates":[[[139.834375,35.73749999910516],[139.8375,35.73749999910516],[139.8375,35.73958299910514],[139.834375,35.73958299910514],[139.834375,35.73749999910516]]]},"properties":{"MESHCODE":"5339468642","揺全壊":10.86564}},{"type":"Feature","id":19003,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.73541699910518],[139.840625,35.73541699910518],[139.840625,35.73749999910516],[139.8375,35.73749999910516],[139.8375,35.73541699910518]]]},"properties":{"MESHCODE":"5339468713","揺全壊":12.13187}},{"type":"Feature","id":19013,"geometry":{"type":"Polygon","coordinates":[[[139.84375,35.737499999105154],[139.846875,35.73749999910516],[139.846875,35.73958299910514],[139.84375,35.739582999105124],[139.84375,35.737499999105154]]]},"properties":{"MESHCODE":"5339468741","揺全壊":12.39868}},{"type":"Feature","id":19014,"geometry":{"type":"Polygon","coordinates":[[[139.846875,35.73749999910516],[139.85,35.73749999910516],[139.85,35.73958299910514],[139.846875,35.73958299910514],[139.846875,35.73749999910516]]]},"properties":{"MESHCODE":"5339468742","揺全壊":12.78916}},{"type":"Feature","id":19019,"geometry":{"type":"Polygon","coordinates":[[[139.85,35.73541699910518],[139.853125,35.73541699910518],[139.853125,35.73749999910516],[139.85,35.73749999910516],[139.85,35.73541699910518]]]},"properties":{"MESHCODE":"5339468813","揺全壊":12.12552}},{"type":"Feature","id":19114,"geometry":{"type":"Polygon","coordinates":[[[139.803125,35.741666999105114],[139.80625,35.741666999105114],[139.80625,35.74374999910509],[139.803125,35.74374999910509],[139.803125,35.741666999105114]]]},"properties":{"MESHCODE":"5339469412","揺全壊":11.96212}},{"type":"Feature","id":19144,"geometry":{"type":"Polygon","coordinates":[[[139.821875,35.747916999105065],[139.825,35.747916999105065],[139.825,35.749999999105036],[139.821875,35.749999999105036],[139.821875,35.747916999105065]]]},"properties":{"MESHCODE":"5339469544","揺全壊":13.12812}},{"type":"Feature","id":19150,"geometry":{"type":"Polygon","coordinates":[[[139.834375,35.741666999105114],[139.8375,35.741666999105114],[139.8375,35.743749999105084],[139.834375,35.743749999105084],[139.834375,35.741666999105114]]]},"properties":{"MESHCODE":"5339469622","揺全壊":12.55299}},{"type":"Feature","id":19156,"geometry":{"type":"Polygon","coordinates":[[[139.828125,35.747916999105065],[139.83125,35.747916999105065],[139.83125,35.749999999105036],[139.828125,35.749999999105036],[139.828125,35.747916999105065]]]},"properties":{"MESHCODE":"5339469634","揺全壊":14.38529}},{"type":"Feature","id":19164,"geometry":{"type":"Polygon","coordinates":[[[139.840625,35.74374999910509],[139.84375,35.74374999910509],[139.84375,35.74583299910506],[139.840625,35.74583299910506],[139.840625,35.74374999910509]]]},"properties":{"MESHCODE":"5339469714","揺全壊":12.33585}},{"type":"Feature","id":19175,"geometry":{"type":"Polygon","coordinates":[[[139.84375,35.747916999105065],[139.846875,35.747916999105065],[139.846875,35.749999999105036],[139.84375,35.749999999105036],[139.84375,35.747916999105065]]]},"properties":{"MESHCODE":"5339469743","揺全壊":11.69752}},{"type":"Feature","id":23663,"geometry":{"type":"Polygon","coordinates":[[[139.303125,35.795832999104555],[139.30625,35.79583299910455],[139.30625,35.797916999104544],[139.303125,35.797916999104544],[139.303125,35.795832999104555]]]},"properties":{"MESHCODE":"5339525432","揺全壊":10.43596}},{"type":"Feature","id":23787,"geometry":{"type":"Polygon","coordinates":[[[139.30625,35.80416699910447],[139.309375,35.804166999104474],[139.309375,35.80624999910443],[139.30625,35.80624999910443],[139.30625,35.80416699910447]]]},"properties":{"MESHCODE":"5339526441","揺全壊":13.42165}},{"type":"Feature","id":25331,"geometry":{"type":"Polygon","coordinates":[[[139.70625,35.76458299910489],[139.709375,35.76458299910489],[139.709375,35.766666999104864],[139.70625,35.766666999104864],[139.70625,35.76458299910489]]]},"properties":{"MESHCODE":"5339551643","揺全壊":14.96882}},{"type":"Feature","id":25362,"geometry":{"type":"Polygon","coordinates":[[[139.734375,35.762499999104904],[139.7375,35.762499999104904],[139.7375,35.764582999104874],[139.734375,35.76458299910489],[139.734375,35.762499999104904]]]},"properties":{"MESHCODE":"5339551842","揺全壊":11.20399}},{"type":"Feature","id":25370,"geometry":{"type":"Polygon","coordinates":[[[139.746875,35.75833299910495],[139.75,35.75833299910496],[139.75,35.76041699910492],[139.746875,35.76041699910492],[139.746875,35.75833299910495]]]},"properties":{"MESHCODE":"5339551922","揺全壊":11.37314}},{"type":"Feature","id":25460,"geometry":{"type":"Polygon","coordinates":[[[139.684375,35.7729169991048],[139.6875,35.77291699910479],[139.6875,35.77499999910478],[139.684375,35.77499999910478],[139.684375,35.7729169991048]]]},"properties":{"MESHCODE":"5339552444","揺全壊":14.62802}},{"type":"Feature","id":25534,"geometry":{"type":"Polygon","coordinates":[[[139.740625,35.770832999104826],[139.74375,35.770832999104826],[139.74375,35.7729169991048],[139.740625,35.7729169991048],[139.740625,35.770832999104826]]]},"properties":{"MESHCODE":"5339552932","揺全壊":10.42642}},{"type":"Feature","id":25537,"geometry":{"type":"Polygon","coordinates":[[[139.74375,35.770832999104826],[139.746875,35.770832999104826],[139.746875,35.7729169991048],[139.74375,35.7729169991048],[139.74375,35.770832999104826]]]},"properties":{"MESHCODE":"5339552941","揺全壊":12.11651}},{"type":"Feature","id":25616,"geometry":{"type":"Polygon","coordinates":[[[139.678125,35.78124999910471],[139.68125,35.78124999910471],[139.68125,35.783332999104694],[139.678125,35.783332999104694],[139.678125,35.78124999910471]]]},"properties":{"MESHCODE":"5339553434","揺全壊":13.1424}},{"type":"Feature","id":25666,"geometry":{"type":"Polygon","coordinates":[[[139.721875,35.779166999104746],[139.725,35.779166999104746],[139.725,35.78124999910471],[139.721875,35.78124999910471],[139.721875,35.779166999104746]]]},"properties":{"MESHCODE":"5339553742","揺全壊":11.31505}},{"type":"Feature","id":25673,"geometry":{"type":"Polygon","coordinates":[[[139.73125,35.77499999910478],[139.734375,35.77499999910478],[139.734375,35.777082999104756],[139.73125,35.777082999104756],[139.73125,35.77499999910478]]]},"properties":{"MESHCODE":"5339553821","揺全壊":13.4902}},{"type":"Feature","id":25983,"geometry":{"type":"Polygon","coordinates":[[[139.784375,35.749999999105036],[139.7875,35.749999999105036],[139.7875,35.75208299910503],[139.784375,35.75208299910503],[139.784375,35.749999999105036]]]},"properties":{"MESHCODE":"5339560222","揺全壊":14.25563}},{"type":"Feature","id":26020,"geometry":{"type":"Polygon","coordinates":[[[139.8,35.75624999910496],[139.803125,35.75624999910497],[139.803125,35.75833299910495],[139.8,35.75833299910495],[139.8,35.75624999910496]]]},"properties":{"MESHCODE":"5339560433","揺全壊":10.6204}},{"type":"Feature","id":26056,"geometry":{"type":"Polygon","coordinates":[[[139.83125,35.75624999910496],[139.834375,35.75624999910496],[139.834375,35.75833299910495],[139.83125,35.75833299910495],[139.83125,35.75624999910496]]]},"properties":{"MESHCODE":"5339560643","揺全壊":12.76733}},{"type":"Feature","id":26058,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.749999999105036],[139.840625,35.749999999105036],[139.840625,35.75208299910503],[139.8375,35.75208299910503],[139.8375,35.749999999105036]]]},"properties":{"MESHCODE":"5339560711","揺全壊":10.89494}},{"type":"Feature","id":26059,"geometry":{"type":"Polygon","coordinates":[[[139.840625,35.749999999105036],[139.84375,35.749999999105036],[139.84375,35.75208299910503],[139.840625,35.75208299910503],[139.840625,35.749999999105036]]]},"properties":{"MESHCODE":"5339560712","揺全壊":10.85379}},{"type":"Feature","id":26067,"geometry":{"type":"Polygon","coordinates":[[[139.840625,35.75416699910498],[139.84375,35.75416699910498],[139.84375,35.75624999910496],[139.840625,35.75624999910496],[139.840625,35.75416699910498]]]},"properties":{"MESHCODE":"5339560732","揺全壊":12.082}},{"type":"Feature","id":26069,"geometry":{"type":"Polygon","coordinates":[[[139.840625,35.75624999910496],[139.84375,35.75624999910496],[139.84375,35.75833299910495],[139.840625,35.75833299910495],[139.840625,35.75624999910496]]]},"properties":{"MESHCODE":"5339560734","揺全壊":12.07872}},{"type":"Feature","id":26111,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.75833299910495],[139.7625,35.75833299910495],[139.7625,35.76041699910492],[139.759375,35.76041699910492],[139.759375,35.75833299910495]]]},"properties":{"MESHCODE":"5339561022","揺全壊":10.81377}},{"type":"Feature","id":26112,"geometry":{"type":"Polygon","coordinates":[[[139.75625,35.76041699910492],[139.759375,35.76041699910492],[139.759375,35.762499999104904],[139.75625,35.762499999104904],[139.75625,35.76041699910492]]]},"properties":{"MESHCODE":"5339561023","揺全壊":13.19495}},{"type":"Feature","id":26137,"geometry":{"type":"Polygon","coordinates":[[[139.771875,35.76458299910489],[139.775,35.76458299910489],[139.775,35.766666999104864],[139.771875,35.76666699910486],[139.771875,35.76458299910489]]]},"properties":{"MESHCODE":"5339561144","揺全壊":13.26775}},{"type":"Feature","id":26139,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.75833299910495],[139.78125,35.75833299910495],[139.78125,35.76041699910492],[139.778125,35.76041699910492],[139.778125,35.75833299910495]]]},"properties":{"MESHCODE":"5339561212","揺全壊":11.607}},{"type":"Feature","id":26156,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.76041699910492],[139.790625,35.76041699910492],[139.790625,35.762499999104904],[139.7875,35.762499999104904],[139.7875,35.76041699910492]]]},"properties":{"MESHCODE":"5339561313","揺全壊":14.22443}},{"type":"Feature","id":26179,"geometry":{"type":"Polygon","coordinates":[[[139.803125,35.762499999104904],[139.80625,35.762499999104904],[139.80625,35.76458299910489],[139.803125,35.76458299910489],[139.803125,35.762499999104904]]]},"properties":{"MESHCODE":"5339561432","揺全壊":12.76964}},{"type":"Feature","id":26183,"geometry":{"type":"Polygon","coordinates":[[[139.809375,35.762499999104904],[139.8125,35.762499999104904],[139.8125,35.76458299910489],[139.809375,35.76458299910489],[139.809375,35.762499999104904]]]},"properties":{"MESHCODE":"5339561442","揺全壊":11.50431}},{"type":"Feature","id":26201,"geometry":{"type":"Polygon","coordinates":[[[139.821875,35.76458299910489],[139.825,35.76458299910489],[139.825,35.766666999104864],[139.821875,35.766666999104864],[139.821875,35.76458299910489]]]},"properties":{"MESHCODE":"5339561544","揺全壊":13.40544}},{"type":"Feature","id":26228,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.76458299910489],[139.840625,35.76458299910489],[139.840625,35.766666999104864],[139.8375,35.766666999104864],[139.8375,35.76458299910489]]]},"properties":{"MESHCODE":"5339561733","揺全壊":12.17529}},{"type":"Feature","id":26249,"geometry":{"type":"Polygon","coordinates":[[[139.859375,35.76458299910489],[139.8625,35.76458299910489],[139.8625,35.766666999104864],[139.859375,35.766666999104864],[139.859375,35.76458299910489]]]},"properties":{"MESHCODE":"5339561844","揺全壊":13.32871}},{"type":"Feature","id":26273,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.768749999104834],[139.7625,35.768749999104834],[139.7625,35.770832999104826],[139.759375,35.770832999104826],[139.759375,35.768749999104834]]]},"properties":{"MESHCODE":"5339562024","揺全壊":10.62277}},{"type":"Feature","id":26279,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.770832999104826],[139.7625,35.770832999104826],[139.7625,35.7729169991048],[139.759375,35.7729169991048],[139.759375,35.770832999104826]]]},"properties":{"MESHCODE":"5339562042","揺全壊":14.21531}},{"type":"Feature","id":26280,"geometry":{"type":"Polygon","coordinates":[[[139.75625,35.7729169991048],[139.759375,35.7729169991048],[139.759375,35.77499999910478],[139.75625,35.77499999910478],[139.75625,35.7729169991048]]]},"properties":{"MESHCODE":"5339562043","揺全壊":11.91993}},{"type":"Feature","id":26285,"geometry":{"type":"Polygon","coordinates":[[[139.765625,35.768749999104834],[139.76875,35.76874999910483],[139.76875,35.770832999104826],[139.765625,35.770832999104826],[139.765625,35.768749999104834]]]},"properties":{"MESHCODE":"5339562114","揺全壊":11.40664}},{"type":"Feature","id":26312,"geometry":{"type":"Polygon","coordinates":[[[139.78125,35.77291699910479],[139.784375,35.7729169991048],[139.784375,35.77499999910478],[139.78125,35.77499999910478],[139.78125,35.77291699910479]]]},"properties":{"MESHCODE":"5339562243","揺全壊":14.6658}},{"type":"Feature","id":26328,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.7729169991048],[139.796875,35.7729169991048],[139.796875,35.77499999910478],[139.79375,35.77499999910478],[139.79375,35.7729169991048]]]},"properties":{"MESHCODE":"5339562343","揺全壊":14.7499}},{"type":"Feature","id":26332,"geometry":{"type":"Polygon","coordinates":[[[139.8,35.76874999910485],[139.803125,35.768749999104834],[139.803125,35.770832999104826],[139.8,35.770832999104826],[139.8,35.76874999910485]]]},"properties":{"MESHCODE":"5339562413","揺全壊":13.0047}},{"type":"Feature","id":26333,"geometry":{"type":"Polygon","coordinates":[[[139.803125,35.768749999104834],[139.80625,35.768749999104834],[139.80625,35.770832999104826],[139.803125,35.770832999104826],[139.803125,35.768749999104834]]]},"properties":{"MESHCODE":"5339562414","揺全壊":11.14266}},{"type":"Feature","id":26353,"geometry":{"type":"Polygon","coordinates":[[[139.821875,35.768749999104834],[139.825,35.768749999104834],[139.825,35.770832999104826],[139.821875,35.770832999104826],[139.821875,35.768749999104834]]]},"properties":{"MESHCODE":"5339562524","揺全壊":12.62855}},{"type":"Feature","id":26356,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.7729169991048],[139.815625,35.77291699910479],[139.815625,35.77499999910478],[139.8125,35.77499999910478],[139.8125,35.7729169991048]]]},"properties":{"MESHCODE":"5339562533","揺全壊":10.78861}},{"type":"Feature","id":26357,"geometry":{"type":"Polygon","coordinates":[[[139.815625,35.77291699910479],[139.81875,35.7729169991048],[139.81875,35.77499999910478],[139.815625,35.77499999910478],[139.815625,35.77291699910479]]]},"properties":{"MESHCODE":"5339562534","揺全壊":14.72657}},{"type":"Feature","id":26367,"geometry":{"type":"Polygon","coordinates":[[[139.834375,35.766666999104864],[139.8375,35.766666999104864],[139.8375,35.76874999910485],[139.834375,35.768749999104834],[139.834375,35.766666999104864]]]},"properties":{"MESHCODE":"5339562622","揺全壊":11.40296}},{"type":"Feature","id":26376,"geometry":{"type":"Polygon","coordinates":[[[139.83125,35.7729169991048],[139.834375,35.7729169991048],[139.834375,35.77499999910478],[139.83125,35.77499999910478],[139.83125,35.7729169991048]]]},"properties":{"MESHCODE":"5339562643","揺全壊":11.97169}},{"type":"Feature","id":26382,"geometry":{"type":"Polygon","coordinates":[[[139.84375,35.766666999104864],[139.846875,35.766666999104864],[139.846875,35.768749999104834],[139.84375,35.768749999104834],[139.84375,35.766666999104864]]]},"properties":{"MESHCODE":"5339562721","揺全壊":12.92189}},{"type":"Feature","id":26395,"geometry":{"type":"Polygon","coordinates":[[[139.853125,35.766666999104864],[139.85625,35.766666999104864],[139.85625,35.768749999104834],[139.853125,35.768749999104834],[139.853125,35.766666999104864]]]},"properties":{"MESHCODE":"5339562812","揺全壊":11.30189}},{"type":"Feature","id":26428,"geometry":{"type":"Polygon","coordinates":[[[139.75,35.77708299910477],[139.753125,35.77708299910477],[139.753125,35.779166999104746],[139.75,35.779166999104746],[139.75,35.77708299910477]]]},"properties":{"MESHCODE":"5339563013","揺全壊":10.62705}},{"type":"Feature","id":26430,"geometry":{"type":"Polygon","coordinates":[[[139.75625,35.77499999910478],[139.759375,35.77499999910478],[139.759375,35.777082999104756],[139.75625,35.777082999104756],[139.75625,35.77499999910478]]]},"properties":{"MESHCODE":"5339563021","揺全壊":10.76082}},{"type":"Feature","id":26486,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.779166999104746],[139.796875,35.779166999104746],[139.796875,35.78124999910471],[139.79375,35.78124999910471],[139.79375,35.779166999104746]]]},"properties":{"MESHCODE":"5339563341","揺全壊":10.56557}},{"type":"Feature","id":26487,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.779166999104746],[139.8,35.779166999104746],[139.8,35.78124999910471],[139.796875,35.78124999910471],[139.796875,35.779166999104746]]]},"properties":{"MESHCODE":"5339563342","揺全壊":10.19929}},{"type":"Feature","id":26498,"geometry":{"type":"Polygon","coordinates":[[[139.8,35.779166999104746],[139.803125,35.779166999104746],[139.803125,35.78124999910471],[139.8,35.78124999910471],[139.8,35.779166999104746]]]},"properties":{"MESHCODE":"5339563431","揺全壊":14.29625}},{"type":"Feature","id":26499,"geometry":{"type":"Polygon","coordinates":[[[139.803125,35.779166999104746],[139.80625,35.779166999104746],[139.80625,35.78124999910471],[139.803125,35.78124999910471],[139.803125,35.779166999104746]]]},"properties":{"MESHCODE":"5339563432","揺全壊":11.70053}},{"type":"Feature","id":26510,"geometry":{"type":"Polygon","coordinates":[[[139.81875,35.77499999910478],[139.821875,35.77499999910478],[139.821875,35.777082999104756],[139.81875,35.777082999104756],[139.81875,35.77499999910478]]]},"properties":{"MESHCODE":"5339563521","揺全壊":11.76034}},{"type":"Feature","id":26535,"geometry":{"type":"Polygon","coordinates":[[[139.834375,35.779166999104746],[139.8375,35.779166999104746],[139.8375,35.78124999910471],[139.834375,35.78124999910471],[139.834375,35.779166999104746]]]},"properties":{"MESHCODE":"5339563642","揺全壊":11.54494}},{"type":"Feature","id":26574,"geometry":{"type":"Polygon","coordinates":[[[139.86875,35.77499999910478],[139.871875,35.77499999910478],[139.871875,35.777082999104756],[139.86875,35.777082999104756],[139.86875,35.77499999910478]]]},"properties":{"MESHCODE":"5339563921","揺全壊":11.93743}},{"type":"Feature","id":26592,"geometry":{"type":"Polygon","coordinates":[[[139.75625,35.78541699910467],[139.759375,35.78541699910467],[139.759375,35.78749999910465],[139.75625,35.78749999910465],[139.75625,35.78541699910467]]]},"properties":{"MESHCODE":"5339564023","揺全壊":11.42763}},{"type":"Feature","id":26610,"geometry":{"type":"Polygon","coordinates":[[[139.7625,35.789582999104624],[139.765625,35.789582999104624],[139.765625,35.79166699910459],[139.7625,35.79166699910459],[139.7625,35.789582999104624]]]},"properties":{"MESHCODE":"5339564133","揺全壊":12.22727}},{"type":"Feature","id":26614,"geometry":{"type":"Polygon","coordinates":[[[139.76875,35.789582999104624],[139.771875,35.789582999104624],[139.771875,35.79166699910459],[139.76875,35.79166699910459],[139.76875,35.789582999104624]]]},"properties":{"MESHCODE":"5339564143","揺全壊":11.31232}},{"type":"Feature","id":26619,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.78541699910467],[139.78125,35.78541699910467],[139.78125,35.78749999910465],[139.778125,35.78749999910465],[139.778125,35.78541699910467]]]},"properties":{"MESHCODE":"5339564214","揺全壊":13.00671}},{"type":"Feature","id":26651,"geometry":{"type":"Polygon","coordinates":[[[139.803125,35.78541699910469],[139.80625,35.78541699910467],[139.80625,35.78749999910465],[139.803125,35.78749999910465],[139.803125,35.78541699910469]]]},"properties":{"MESHCODE":"5339564414","揺全壊":13.68936}},{"type":"Feature","id":26653,"geometry":{"type":"Polygon","coordinates":[[[139.809375,35.783332999104694],[139.8125,35.7833329991047],[139.8125,35.78541699910469],[139.809375,35.78541699910467],[139.809375,35.783332999104694]]]},"properties":{"MESHCODE":"5339564422","揺全壊":11.98404}},{"type":"Feature","id":26676,"geometry":{"type":"Polygon","coordinates":[[[139.81875,35.78749999910465],[139.821875,35.78749999910465],[139.821875,35.789582999104624],[139.81875,35.789582999104624],[139.81875,35.78749999910465]]]},"properties":{"MESHCODE":"5339564541","揺全壊":12.30846}},{"type":"Feature","id":26677,"geometry":{"type":"Polygon","coordinates":[[[139.821875,35.78749999910465],[139.825,35.78749999910465],[139.825,35.789582999104624],[139.821875,35.789582999104624],[139.821875,35.78749999910465]]]},"properties":{"MESHCODE":"5339564542","揺全壊":11.46472}},{"type":"Feature","id":26679,"geometry":{"type":"Polygon","coordinates":[[[139.821875,35.789582999104624],[139.825,35.789582999104624],[139.825,35.79166699910459],[139.821875,35.79166699910459],[139.821875,35.789582999104624]]]},"properties":{"MESHCODE":"5339564544","揺全壊":13.79843}},{"type":"Feature","id":26681,"geometry":{"type":"Polygon","coordinates":[[[139.828125,35.783332999104694],[139.83125,35.783332999104694],[139.83125,35.78541699910467],[139.828125,35.78541699910467],[139.828125,35.783332999104694]]]},"properties":{"MESHCODE":"5339564612","揺全壊":11.87873}},{"type":"Feature","id":26687,"geometry":{"type":"Polygon","coordinates":[[[139.834375,35.78541699910467],[139.8375,35.78541699910467],[139.8375,35.78749999910465],[139.834375,35.78749999910465],[139.834375,35.78541699910467]]]},"properties":{"MESHCODE":"5339564624","揺全壊":11.60302}},{"type":"Feature","id":26693,"geometry":{"type":"Polygon","coordinates":[[[139.834375,35.78749999910465],[139.8375,35.78749999910465],[139.8375,35.789582999104624],[139.834375,35.789582999104624],[139.834375,35.78749999910465]]]},"properties":{"MESHCODE":"5339564642","揺全壊":10.26692}},{"type":"Feature","id":26743,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.79166699910459],[139.7625,35.79166699910459],[139.7625,35.79374999910459],[139.759375,35.793749999104605],[139.759375,35.79166699910459]]]},"properties":{"MESHCODE":"5339565022","揺全壊":10.93946}},{"type":"Feature","id":26778,"geometry":{"type":"Polygon","coordinates":[[[139.784375,35.795832999104555],[139.7875,35.795832999104555],[139.7875,35.797916999104544],[139.784375,35.797916999104544],[139.784375,35.795832999104555]]]},"properties":{"MESHCODE":"5339565242","揺全壊":10.86993}},{"type":"Feature","id":26792,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.797916999104544],[139.79375,35.797916999104544],[139.79375,35.79999999910451],[139.790625,35.79999999910451],[139.790625,35.797916999104544]]]},"properties":{"MESHCODE":"5339565334","揺全壊":14.21186}},{"type":"Feature","id":26805,"geometry":{"type":"Polygon","coordinates":[[[139.8,35.795832999104555],[139.803125,35.795832999104555],[139.803125,35.797916999104544],[139.8,35.797916999104544],[139.8,35.795832999104555]]]},"properties":{"MESHCODE":"5339565431","揺全壊":11.6587}},{"type":"Feature","id":26915,"geometry":{"type":"Polygon","coordinates":[[[139.784375,35.804166999104474],[139.7875,35.80416699910447],[139.7875,35.80624999910445],[139.784375,35.80624999910445],[139.784375,35.804166999104474]]]},"properties":{"MESHCODE":"5339566242","揺全壊":13.56519}},{"type":"Feature","id":26921,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.8020829991045],[139.79375,35.802082999104506],[139.79375,35.80416699910447],[139.790625,35.80416699910447],[139.790625,35.8020829991045]]]},"properties":{"MESHCODE":"5339566314","揺全壊":11.18462}},{"type":"Feature","id":27054,"geometry":{"type":"Polygon","coordinates":[[[139.875,35.77499999910477],[139.878125,35.77499999910478],[139.878125,35.777082999104756],[139.875,35.777082999104756],[139.875,35.77499999910477]]]},"properties":{"MESHCODE":"5339573011","揺全壊":12.96315}},{"type":"Feature","id":27056,"geometry":{"type":"Polygon","coordinates":[[[139.875,35.777082999104756],[139.878125,35.777082999104756],[139.878125,35.779166999104746],[139.875,35.779166999104746],[139.875,35.777082999104756]]]},"properties":{"MESHCODE":"5339573013","揺全壊":10.33546}}]}
\ No newline at end of file
diff --git a/app/src/layers/data/particles/tama-destroyed_particles_4.json b/app/src/layers/data/particles/tama-destroyed_particles_4.json
new file mode 100644
index 0000000..3ab953f
--- /dev/null
+++ b/app/src/layers/data/particles/tama-destroyed_particles_4.json
@@ -0,0 +1 @@
+{"type":"FeatureCollection","features":[{"type":"Feature","id":795,"geometry":{"type":"Polygon","coordinates":[[[139.453125,35.52916699910735],[139.45625,35.52916699910736],[139.45625,35.531249999107345],[139.453125,35.531249999107345],[139.453125,35.52916699910735]]]},"properties":{"MESHCODE":"5339233632","揺全壊":0.03685}},{"type":"Feature","id":1008,"geometry":{"type":"Polygon","coordinates":[[[139.46875,35.55208299910712],[139.471875,35.55208299910712],[139.471875,35.554166999107096],[139.46875,35.554166999107096],[139.46875,35.55208299910712]]]},"properties":{"MESHCODE":"5339236723","揺全壊":0.04729}},{"type":"Feature","id":1011,"geometry":{"type":"Polygon","coordinates":[[[139.465625,35.554166999107096],[139.46875,35.554166999107096],[139.46875,35.556249999107074],[139.465625,35.556249999107074],[139.465625,35.554166999107096]]]},"properties":{"MESHCODE":"5339236732","揺全壊":0.03557}},{"type":"Feature","id":1102,"geometry":{"type":"Polygon","coordinates":[[[139.46875,35.56458299910698],[139.471875,35.56458299910698],[139.471875,35.56666699910696],[139.46875,35.56666699910696],[139.46875,35.56458299910698]]]},"properties":{"MESHCODE":"5339237743","揺全壊":0.03216}},{"type":"Feature","id":1112,"geometry":{"type":"Polygon","coordinates":[[[139.490625,35.56458299910698],[139.49375,35.56458299910698],[139.49375,35.56666699910696],[139.490625,35.56666699910696],[139.490625,35.56458299910698]]]},"properties":{"MESHCODE":"5339237934","揺全壊":0.04311}},{"type":"Feature","id":1198,"geometry":{"type":"Polygon","coordinates":[[[139.471875,35.572916999106894],[139.475,35.572916999106894],[139.475,35.57499999910688],[139.471875,35.57499999910688],[139.471875,35.572916999106894]]]},"properties":{"MESHCODE":"5339238744","揺全壊":0.04932}},{"type":"Feature","id":1204,"geometry":{"type":"Polygon","coordinates":[[[139.48125,35.572916999106894],[139.484375,35.57291699910689],[139.484375,35.57499999910687],[139.48125,35.57499999910688],[139.48125,35.572916999106894]]]},"properties":{"MESHCODE":"5339238843","揺全壊":0.03955}},{"type":"Feature","id":1206,"geometry":{"type":"Polygon","coordinates":[[[139.4875,35.56666699910697],[139.490625,35.56666699910696],[139.490625,35.568749999106934],[139.4875,35.568749999106934],[139.4875,35.56666699910697]]]},"properties":{"MESHCODE":"5339238911","揺全壊":0.04628}},{"type":"Feature","id":1212,"geometry":{"type":"Polygon","coordinates":[[[139.49375,35.568749999106934],[139.496875,35.568749999106934],[139.496875,35.57083299910691],[139.49375,35.57083299910691],[139.49375,35.568749999106934]]]},"properties":{"MESHCODE":"5339238923","揺全壊":0.0421}},{"type":"Feature","id":1215,"geometry":{"type":"Polygon","coordinates":[[[139.490625,35.57083299910691],[139.49375,35.57083299910691],[139.49375,35.572916999106894],[139.490625,35.572916999106894],[139.490625,35.57083299910691]]]},"properties":{"MESHCODE":"5339238932","揺全壊":0.03225}},{"type":"Feature","id":1372,"geometry":{"type":"Polygon","coordinates":[[[139.7125,35.53958299910726],[139.715625,35.53958299910726],[139.715625,35.54166699910723],[139.7125,35.54166699910723],[139.7125,35.53958299910726]]]},"properties":{"MESHCODE":"5339254733","揺全壊":0.03133}},{"type":"Feature","id":1519,"geometry":{"type":"Polygon","coordinates":[[[139.68125,35.56249999910702],[139.684375,35.562499999107004],[139.684375,35.56458299910698],[139.68125,35.56458299910698],[139.68125,35.56249999910702]]]},"properties":{"MESHCODE":"5339257441","揺全壊":0.04606}},{"type":"Feature","id":1791,"geometry":{"type":"Polygon","coordinates":[[[139.740625,35.57499999910688],[139.74375,35.57499999910688],[139.74375,35.577082999106864],[139.740625,35.577082999106864],[139.740625,35.57499999910688]]]},"properties":{"MESHCODE":"5339259912","揺全壊":0.04258}},{"type":"Feature","id":1797,"geometry":{"type":"Polygon","coordinates":[[[139.746875,35.577082999106864],[139.75,35.577082999106864],[139.75,35.57916699910683],[139.746875,35.57916699910683],[139.746875,35.577082999106864]]]},"properties":{"MESHCODE":"5339259924","揺全壊":0.03339}},{"type":"Feature","id":1804,"geometry":{"type":"Polygon","coordinates":[[[139.74375,35.581249999106795],[139.746875,35.581249999106795],[139.746875,35.58333299910679],[139.74375,35.58333299910679],[139.74375,35.581249999106795]]]},"properties":{"MESHCODE":"5339259943","揺全壊":0.03207}},{"type":"Feature","id":1984,"geometry":{"type":"Polygon","coordinates":[[[139.75,35.556249999107074],[139.753125,35.556249999107074],[139.753125,35.558332999107044],[139.75,35.558332999107044],[139.75,35.556249999107074]]]},"properties":{"MESHCODE":"5339266033","揺全壊":0.04244}},{"type":"Feature","id":2015,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.554166999107096],[139.78125,35.55416699910708],[139.78125,35.556249999107074],[139.778125,35.556249999107074],[139.778125,35.554166999107096]]]},"properties":{"MESHCODE":"5339266232","揺全壊":0.04485}},{"type":"Feature","id":2017,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.556249999107074],[139.78125,35.556249999107074],[139.78125,35.558332999107044],[139.778125,35.558332999107044],[139.778125,35.556249999107074]]]},"properties":{"MESHCODE":"5339266234","揺全壊":0.03738}},{"type":"Feature","id":2020,"geometry":{"type":"Polygon","coordinates":[[[139.78125,35.556249999107074],[139.784375,35.556249999107074],[139.784375,35.55833299910706],[139.78125,35.558332999107044],[139.78125,35.556249999107074]]]},"properties":{"MESHCODE":"5339266243","揺全壊":0.03738}},{"type":"Feature","id":2061,"geometry":{"type":"Polygon","coordinates":[[[139.7625,35.56458299910698],[139.765625,35.56458299910698],[139.765625,35.56666699910696],[139.7625,35.56666699910696],[139.7625,35.56458299910698]]]},"properties":{"MESHCODE":"5339267133","揺全壊":0.03249}},{"type":"Feature","id":2094,"geometry":{"type":"Polygon","coordinates":[[[139.753125,35.568749999106934],[139.75625,35.568749999106934],[139.75625,35.57083299910691],[139.753125,35.57083299910691],[139.753125,35.568749999106934]]]},"properties":{"MESHCODE":"5339268014","揺全壊":0.03689}},{"type":"Feature","id":2103,"geometry":{"type":"Polygon","coordinates":[[[139.75625,35.57083299910691],[139.759375,35.57083299910691],[139.759375,35.572916999106894],[139.75625,35.57291699910689],[139.75625,35.57083299910691]]]},"properties":{"MESHCODE":"5339268041","揺全壊":0.03374}},{"type":"Feature","id":2113,"geometry":{"type":"Polygon","coordinates":[[[139.76875,35.568749999106934],[139.771875,35.568749999106934],[139.771875,35.57083299910691],[139.76875,35.57083299910691],[139.76875,35.568749999106934]]]},"properties":{"MESHCODE":"5339268123","揺全壊":0.03537}},{"type":"Feature","id":2137,"geometry":{"type":"Polygon","coordinates":[[[139.75625,35.577082999106864],[139.759375,35.577082999106864],[139.759375,35.57916699910683],[139.75625,35.57916699910683],[139.75625,35.577082999106864]]]},"properties":{"MESHCODE":"5339269023","揺全壊":0.04306}},{"type":"Feature","id":2139,"geometry":{"type":"Polygon","coordinates":[[[139.75,35.57916699910683],[139.753125,35.57916699910683],[139.753125,35.581249999106795],[139.75,35.581249999106795],[139.75,35.57916699910683]]]},"properties":{"MESHCODE":"5339269031","揺全壊":0.04452}},{"type":"Feature","id":2153,"geometry":{"type":"Polygon","coordinates":[[[139.76875,35.577082999106864],[139.771875,35.577082999106864],[139.771875,35.579166999106825],[139.76875,35.57916699910683],[139.76875,35.577082999106864]]]},"properties":{"MESHCODE":"5339269123","揺全壊":0.04401}},{"type":"Feature","id":2160,"geometry":{"type":"Polygon","coordinates":[[[139.771875,35.579166999106825],[139.775,35.57916699910683],[139.775,35.581249999106795],[139.771875,35.581249999106795],[139.771875,35.579166999106825]]]},"properties":{"MESHCODE":"5339269142","揺全壊":0.03837}},{"type":"Feature","id":2172,"geometry":{"type":"Polygon","coordinates":[[[139.784375,35.579166999106825],[139.7875,35.57916699910683],[139.7875,35.581249999106795],[139.784375,35.5812499991068],[139.784375,35.579166999106825]]]},"properties":{"MESHCODE":"5339269242","揺全壊":0.04945}},{"type":"Feature","id":2196,"geometry":{"type":"Polygon","coordinates":[[[139.24375,35.60833299910652],[139.246875,35.60833299910652],[139.246875,35.610416999106484],[139.24375,35.6104169991065],[139.24375,35.60833299910652]]]},"properties":{"MESHCODE":"5339313921","揺全壊":0.04548}},{"type":"Feature","id":2268,"geometry":{"type":"Polygon","coordinates":[[[139.24375,35.62499999910634],[139.246875,35.62499999910634],[139.246875,35.62708299910633],[139.24375,35.62708299910633],[139.24375,35.62499999910634]]]},"properties":{"MESHCODE":"5339315921","揺全壊":0.04103}},{"type":"Feature","id":2310,"geometry":{"type":"Polygon","coordinates":[[[139.234375,35.639582999106196],[139.2375,35.639582999106196],[139.2375,35.64166699910617],[139.234375,35.64166699910616],[139.234375,35.639582999106196]]]},"properties":{"MESHCODE":"5339316844","揺全壊":0.03242}},{"type":"Feature","id":2539,"geometry":{"type":"Polygon","coordinates":[[[139.1875,35.66249999910595],[139.190625,35.662499999105954],[139.190625,35.664582999105924],[139.1875,35.66458299910591],[139.1875,35.66249999910595]]]},"properties":{"MESHCODE":"5339319531","揺全壊":0.04714}},{"type":"Feature","id":2542,"geometry":{"type":"Polygon","coordinates":[[[139.190625,35.664582999105924],[139.19375,35.664582999105924],[139.19375,35.66666699910591],[139.190625,35.66666699910591],[139.190625,35.664582999105924]]]},"properties":{"MESHCODE":"5339319534","揺全壊":0.03649}},{"type":"Feature","id":2611,"geometry":{"type":"Polygon","coordinates":[[[139.353125,35.59791699910662],[139.35625,35.59791699910664],[139.35625,35.59999999910661],[139.353125,35.59999999910661],[139.353125,35.59791699910662]]]},"properties":{"MESHCODE":"5339321834","揺全壊":0.04921}},{"type":"Feature","id":2702,"geometry":{"type":"Polygon","coordinates":[[[139.353125,35.606249999106545],[139.35625,35.60624999910655],[139.35625,35.608332999106516],[139.353125,35.60833299910652],[139.353125,35.606249999106545]]]},"properties":{"MESHCODE":"5339322834","揺全壊":0.03727}},{"type":"Feature","id":2720,"geometry":{"type":"Polygon","coordinates":[[[139.371875,35.60416699910658],[139.375,35.60416699910657],[139.375,35.606249999106545],[139.371875,35.60624999910655],[139.371875,35.60416699910658]]]},"properties":{"MESHCODE":"5339322942","揺全壊":0.04418}},{"type":"Feature","id":2721,"geometry":{"type":"Polygon","coordinates":[[[139.36875,35.60624999910655],[139.371875,35.60624999910655],[139.371875,35.60833299910652],[139.36875,35.60833299910652],[139.36875,35.60624999910655]]]},"properties":{"MESHCODE":"5339322943","揺全壊":0.03462}},{"type":"Feature","id":2763,"geometry":{"type":"Polygon","coordinates":[[[139.28125,35.612499999106454],[139.284375,35.612499999106454],[139.284375,35.61458299910646],[139.28125,35.61458299910646],[139.28125,35.612499999106454]]]},"properties":{"MESHCODE":"5339323241","揺全壊":0.03811}},{"type":"Feature","id":2766,"geometry":{"type":"Polygon","coordinates":[[[139.284375,35.61458299910646],[139.2875,35.61458299910644],[139.2875,35.616666999106435],[139.284375,35.616666999106435],[139.284375,35.61458299910646]]]},"properties":{"MESHCODE":"5339323244","揺全壊":0.04358}},{"type":"Feature","id":2769,"geometry":{"type":"Polygon","coordinates":[[[139.29375,35.60833299910652],[139.296875,35.608332999106516],[139.296875,35.610416999106484],[139.29375,35.610416999106484],[139.29375,35.60833299910652]]]},"properties":{"MESHCODE":"5339323321","揺全壊":0.03528}},{"type":"Feature","id":2774,"geometry":{"type":"Polygon","coordinates":[[[139.290625,35.612499999106454],[139.29375,35.612499999106454],[139.29375,35.61458299910646],[139.290625,35.61458299910646],[139.290625,35.612499999106454]]]},"properties":{"MESHCODE":"5339323332","揺全壊":0.04069}},{"type":"Feature","id":2787,"geometry":{"type":"Polygon","coordinates":[[[139.30625,35.610416999106484],[139.309375,35.610416999106484],[139.309375,35.612499999106454],[139.30625,35.612499999106454],[139.30625,35.610416999106484]]]},"properties":{"MESHCODE":"5339323423","揺全壊":0.03822}},{"type":"Feature","id":2799,"geometry":{"type":"Polygon","coordinates":[[[139.3125,35.610416999106484],[139.315625,35.610416999106484],[139.315625,35.612499999106454],[139.3125,35.612499999106454],[139.3125,35.610416999106484]]]},"properties":{"MESHCODE":"5339323513","揺全壊":0.03822}},{"type":"Feature","id":2852,"geometry":{"type":"Polygon","coordinates":[[[139.359375,35.610416999106484],[139.3625,35.6104169991065],[139.3625,35.612499999106454],[139.359375,35.612499999106454],[139.359375,35.610416999106484]]]},"properties":{"MESHCODE":"5339323824","揺全壊":0.04787}},{"type":"Feature","id":2890,"geometry":{"type":"Polygon","coordinates":[[[139.259375,35.620832999106376],[139.2625,35.620832999106376],[139.2625,35.62291699910637],[139.259375,35.62291699910637],[139.259375,35.620832999106376]]]},"properties":{"MESHCODE":"5339324042","揺全壊":0.04635}},{"type":"Feature","id":2922,"geometry":{"type":"Polygon","coordinates":[[[139.284375,35.620832999106376],[139.2875,35.620832999106376],[139.2875,35.62291699910636],[139.284375,35.62291699910637],[139.284375,35.620832999106376]]]},"properties":{"MESHCODE":"5339324242","揺全壊":0.04941}},{"type":"Feature","id":2926,"geometry":{"type":"Polygon","coordinates":[[[139.290625,35.616666999106435],[139.29375,35.616666999106435],[139.29375,35.6187499991064],[139.290625,35.6187499991064],[139.290625,35.616666999106435]]]},"properties":{"MESHCODE":"5339324312","揺全壊":0.04808}},{"type":"Feature","id":2929,"geometry":{"type":"Polygon","coordinates":[[[139.29375,35.616666999106435],[139.296875,35.616666999106435],[139.296875,35.6187499991064],[139.29375,35.6187499991064],[139.29375,35.616666999106435]]]},"properties":{"MESHCODE":"5339324321","揺全壊":0.04279}},{"type":"Feature","id":3070,"geometry":{"type":"Polygon","coordinates":[[[139.278125,35.62499999910634],[139.28125,35.62499999910634],[139.28125,35.62708299910633],[139.278125,35.62708299910633],[139.278125,35.62499999910634]]]},"properties":{"MESHCODE":"5339325212","揺全壊":0.04689}},{"type":"Feature","id":3081,"geometry":{"type":"Polygon","coordinates":[[[139.28125,35.62916699910631],[139.284375,35.62916699910631],[139.284375,35.63124999910628],[139.28125,35.63124999910628],[139.28125,35.62916699910631]]]},"properties":{"MESHCODE":"5339325241","揺全壊":0.03608}},{"type":"Feature","id":3082,"geometry":{"type":"Polygon","coordinates":[[[139.284375,35.62916699910631],[139.2875,35.62916699910631],[139.2875,35.63124999910628],[139.284375,35.63124999910628],[139.284375,35.62916699910631]]]},"properties":{"MESHCODE":"5339325242","揺全壊":0.04184}},{"type":"Feature","id":3096,"geometry":{"type":"Polygon","coordinates":[[[139.290625,35.63124999910628],[139.29375,35.63124999910628],[139.29375,35.633332999106244],[139.290625,35.633332999106244],[139.290625,35.63124999910628]]]},"properties":{"MESHCODE":"5339325334","揺全壊":0.04631}},{"type":"Feature","id":3151,"geometry":{"type":"Polygon","coordinates":[[[139.3375,35.62708299910633],[139.340625,35.62708299910633],[139.340625,35.62916699910631],[139.3375,35.62916699910631],[139.3375,35.62708299910633]]]},"properties":{"MESHCODE":"5339325713","揺全壊":0.04884}},{"type":"Feature","id":3211,"geometry":{"type":"Polygon","coordinates":[[[139.25625,35.639582999106196],[139.259375,35.639582999106196],[139.259375,35.64166699910617],[139.25625,35.64166699910617],[139.25625,35.639582999106196]]]},"properties":{"MESHCODE":"5339326043","揺全壊":0.04418}},{"type":"Feature","id":3290,"geometry":{"type":"Polygon","coordinates":[[[139.321875,35.637499999106225],[139.325,35.637499999106225],[139.325,35.63958299910618],[139.321875,35.639582999106196],[139.321875,35.637499999106225]]]},"properties":{"MESHCODE":"5339326542","揺全壊":0.04287}},{"type":"Feature","id":3301,"geometry":{"type":"Polygon","coordinates":[[[139.325,35.637499999106225],[139.328125,35.637499999106225],[139.328125,35.639582999106196],[139.325,35.63958299910618],[139.325,35.637499999106225]]]},"properties":{"MESHCODE":"5339326631","揺全壊":0.04066}},{"type":"Feature","id":3401,"geometry":{"type":"Polygon","coordinates":[[[139.28125,35.645832999106126],[139.284375,35.645832999106126],[139.284375,35.64791699910609],[139.28125,35.64791699910609],[139.28125,35.645832999106126]]]},"properties":{"MESHCODE":"5339327241","揺全壊":0.03946}},{"type":"Feature","id":3536,"geometry":{"type":"Polygon","coordinates":[[[139.265625,35.65208299910605],[139.26875,35.65208299910605],[139.26875,35.65416699910603],[139.265625,35.65416699910603],[139.265625,35.65208299910605]]]},"properties":{"MESHCODE":"5339328114","揺全壊":0.03386}},{"type":"Feature","id":3552,"geometry":{"type":"Polygon","coordinates":[[[139.278125,35.65208299910605],[139.28125,35.65208299910605],[139.28125,35.65416699910603],[139.278125,35.65416699910603],[139.278125,35.65208299910605]]]},"properties":{"MESHCODE":"5339328214","揺全壊":0.03205}},{"type":"Feature","id":3564,"geometry":{"type":"Polygon","coordinates":[[[139.284375,35.656249999105995],[139.2875,35.65624999910601],[139.2875,35.658332999106],[139.284375,35.658332999106],[139.284375,35.656249999105995]]]},"properties":{"MESHCODE":"5339328244","揺全壊":0.0316}},{"type":"Feature","id":3648,"geometry":{"type":"Polygon","coordinates":[[[139.353125,35.65208299910605],[139.35625,35.65208299910605],[139.35625,35.65416699910603],[139.353125,35.65416699910603],[139.353125,35.65208299910605]]]},"properties":{"MESHCODE":"5339328814","揺全壊":0.04624}},{"type":"Feature","id":3698,"geometry":{"type":"Polygon","coordinates":[[[139.271875,35.658332999106],[139.275,35.658332999106],[139.275,35.660416999105976],[139.271875,35.660416999105976],[139.271875,35.658332999106]]]},"properties":{"MESHCODE":"5339329122","揺全壊":0.03486}},{"type":"Feature","id":3705,"geometry":{"type":"Polygon","coordinates":[[[139.26875,35.662499999105954],[139.271875,35.662499999105954],[139.271875,35.664582999105924],[139.26875,35.664582999105924],[139.26875,35.662499999105954]]]},"properties":{"MESHCODE":"5339329141","揺全壊":0.04852}},{"type":"Feature","id":3727,"geometry":{"type":"Polygon","coordinates":[[[139.2875,35.66041699910596],[139.290625,35.660416999105976],[139.290625,35.662499999105954],[139.2875,35.66249999910595],[139.2875,35.66041699910596]]]},"properties":{"MESHCODE":"5339329313","揺全壊":0.04004}},{"type":"Feature","id":3733,"geometry":{"type":"Polygon","coordinates":[[[139.2875,35.66249999910595],[139.290625,35.662499999105954],[139.290625,35.664582999105924],[139.2875,35.664582999105924],[139.2875,35.66249999910595]]]},"properties":{"MESHCODE":"5339329331","揺全壊":0.03322}},{"type":"Feature","id":3998,"geometry":{"type":"Polygon","coordinates":[[[139.390625,35.59374999910667],[139.39375,35.59374999910667],[139.39375,35.59583299910665],[139.390625,35.59583299910665],[139.390625,35.59374999910667]]]},"properties":{"MESHCODE":"5339331114","揺全壊":0.03773}},{"type":"Feature","id":4003,"geometry":{"type":"Polygon","coordinates":[[[139.3875,35.59583299910665],[139.390625,35.59583299910665],[139.390625,35.59791699910664],[139.3875,35.59791699910664],[139.3875,35.59583299910665]]]},"properties":{"MESHCODE":"5339331131","揺全壊":0.03055}},{"type":"Feature","id":4043,"geometry":{"type":"Polygon","coordinates":[[[139.425,35.5916669991067],[139.428125,35.5916669991067],[139.428125,35.59374999910667],[139.425,35.59374999910667],[139.425,35.5916669991067]]]},"properties":{"MESHCODE":"5339331411","揺全壊":0.04901}},{"type":"Feature","id":4084,"geometry":{"type":"Polygon","coordinates":[[[139.453125,35.59583299910665],[139.45625,35.59583299910665],[139.45625,35.59791699910664],[139.453125,35.59791699910664],[139.453125,35.59583299910665]]]},"properties":{"MESHCODE":"5339331632","揺全壊":0.04909}},{"type":"Feature","id":4125,"geometry":{"type":"Polygon","coordinates":[[[139.38125,35.60208299910657],[139.384375,35.60208299910657],[139.384375,35.60416699910657],[139.38125,35.60416699910657],[139.38125,35.60208299910657]]]},"properties":{"MESHCODE":"5339332023","揺全壊":0.03961}},{"type":"Feature","id":4137,"geometry":{"type":"Polygon","coordinates":[[[139.3875,35.602082999106585],[139.390625,35.60208299910657],[139.390625,35.60416699910657],[139.3875,35.60416699910658],[139.3875,35.602082999106585]]]},"properties":{"MESHCODE":"5339332113","揺全壊":0.04772}},{"type":"Feature","id":4138,"geometry":{"type":"Polygon","coordinates":[[[139.390625,35.60208299910657],[139.39375,35.60208299910657],[139.39375,35.60416699910657],[139.390625,35.60416699910657],[139.390625,35.60208299910657]]]},"properties":{"MESHCODE":"5339332114","揺全壊":0.03435}},{"type":"Feature","id":4145,"geometry":{"type":"Polygon","coordinates":[[[139.3875,35.606249999106545],[139.390625,35.60624999910655],[139.390625,35.60833299910652],[139.3875,35.60833299910652],[139.3875,35.606249999106545]]]},"properties":{"MESHCODE":"5339332133","揺全壊":0.04159}},{"type":"Feature","id":4148,"geometry":{"type":"Polygon","coordinates":[[[139.396875,35.60416699910657],[139.4,35.60416699910657],[139.4,35.606249999106545],[139.396875,35.60624999910655],[139.396875,35.60416699910657]]]},"properties":{"MESHCODE":"5339332142","揺全壊":0.03152}},{"type":"Feature","id":4199,"geometry":{"type":"Polygon","coordinates":[[[139.4375,35.59999999910661],[139.440625,35.59999999910661],[139.440625,35.60208299910657],[139.4375,35.60208299910657],[139.4375,35.59999999910661]]]},"properties":{"MESHCODE":"5339332511","揺全壊":0.04716}},{"type":"Feature","id":4273,"geometry":{"type":"Polygon","coordinates":[[[139.39375,35.610416999106484],[139.396875,35.610416999106484],[139.396875,35.612499999106454],[139.39375,35.612499999106454],[139.39375,35.610416999106484]]]},"properties":{"MESHCODE":"5339333123","揺全壊":0.03839}},{"type":"Feature","id":4289,"geometry":{"type":"Polygon","coordinates":[[[139.40625,35.610416999106484],[139.409375,35.610416999106484],[139.409375,35.612499999106454],[139.40625,35.612499999106454],[139.40625,35.610416999106484]]]},"properties":{"MESHCODE":"5339333223","揺全壊":0.03635}},{"type":"Feature","id":4310,"geometry":{"type":"Polygon","coordinates":[[[139.415625,35.61458299910646],[139.41875,35.61458299910644],[139.41875,35.616666999106435],[139.415625,35.616666999106435],[139.415625,35.61458299910646]]]},"properties":{"MESHCODE":"5339333334","揺全壊":0.03233}},{"type":"Feature","id":4313,"geometry":{"type":"Polygon","coordinates":[[[139.41875,35.61458299910644],[139.421875,35.61458299910646],[139.421875,35.616666999106435],[139.41875,35.616666999106435],[139.41875,35.61458299910644]]]},"properties":{"MESHCODE":"5339333343","揺全壊":0.0433}},{"type":"Feature","id":4321,"geometry":{"type":"Polygon","coordinates":[[[139.43125,35.610416999106484],[139.434375,35.610416999106484],[139.434375,35.61249999910647],[139.43125,35.612499999106454],[139.43125,35.610416999106484]]]},"properties":{"MESHCODE":"5339333423","揺全壊":0.04777}},{"type":"Feature","id":4323,"geometry":{"type":"Polygon","coordinates":[[[139.425,35.612499999106454],[139.428125,35.612499999106454],[139.428125,35.61458299910646],[139.425,35.61458299910646],[139.425,35.612499999106454]]]},"properties":{"MESHCODE":"5339333431","揺全壊":0.03239}},{"type":"Feature","id":4331,"geometry":{"type":"Polygon","coordinates":[[[139.4375,35.60833299910652],[139.440625,35.60833299910652],[139.440625,35.610416999106484],[139.4375,35.6104169991065],[139.4375,35.60833299910652]]]},"properties":{"MESHCODE":"5339333511","揺全壊":0.03734}},{"type":"Feature","id":4332,"geometry":{"type":"Polygon","coordinates":[[[139.440625,35.60833299910652],[139.44375,35.60833299910652],[139.44375,35.610416999106484],[139.440625,35.610416999106484],[139.440625,35.60833299910652]]]},"properties":{"MESHCODE":"5339333512","揺全壊":0.04408}},{"type":"Feature","id":4336,"geometry":{"type":"Polygon","coordinates":[[[139.446875,35.60833299910652],[139.45,35.60833299910652],[139.45,35.610416999106484],[139.446875,35.610416999106484],[139.446875,35.60833299910652]]]},"properties":{"MESHCODE":"5339333522","揺全壊":0.03116}},{"type":"Feature","id":4363,"geometry":{"type":"Polygon","coordinates":[[[139.478125,35.61458299910646],[139.48125,35.61458299910646],[139.48125,35.616666999106435],[139.478125,35.61666699910644],[139.478125,35.61458299910646]]]},"properties":{"MESHCODE":"5339333834","揺全壊":0.04007}},{"type":"Feature","id":4382,"geometry":{"type":"Polygon","coordinates":[[[139.375,35.616666999106435],[139.378125,35.616666999106435],[139.378125,35.6187499991064],[139.375,35.6187499991064],[139.375,35.616666999106435]]]},"properties":{"MESHCODE":"5339334011","揺全壊":0.03694}},{"type":"Feature","id":4383,"geometry":{"type":"Polygon","coordinates":[[[139.378125,35.616666999106435],[139.38125,35.616666999106435],[139.38125,35.6187499991064],[139.378125,35.6187499991064],[139.378125,35.616666999106435]]]},"properties":{"MESHCODE":"5339334012","揺全壊":0.03387}},{"type":"Feature","id":4414,"geometry":{"type":"Polygon","coordinates":[[[139.4,35.616666999106435],[139.403125,35.616666999106435],[139.403125,35.6187499991064],[139.4,35.6187499991064],[139.4,35.616666999106435]]]},"properties":{"MESHCODE":"5339334211","揺全壊":0.04446}},{"type":"Feature","id":4416,"geometry":{"type":"Polygon","coordinates":[[[139.4,35.6187499991064],[139.403125,35.6187499991064],[139.403125,35.620832999106376],[139.4,35.620832999106376],[139.4,35.6187499991064]]]},"properties":{"MESHCODE":"5339334213","揺全壊":0.03291}},{"type":"Feature","id":4434,"geometry":{"type":"Polygon","coordinates":[[[139.41875,35.616666999106435],[139.421875,35.616666999106435],[139.421875,35.6187499991064],[139.41875,35.6187499991064],[139.41875,35.616666999106435]]]},"properties":{"MESHCODE":"5339334321","揺全壊":0.03744}},{"type":"Feature","id":4442,"geometry":{"type":"Polygon","coordinates":[[[139.41875,35.620832999106376],[139.421875,35.620832999106376],[139.421875,35.62291699910636],[139.41875,35.62291699910637],[139.41875,35.620832999106376]]]},"properties":{"MESHCODE":"5339334341","揺全壊":0.04721}},{"type":"Feature","id":4451,"geometry":{"type":"Polygon","coordinates":[[[139.434375,35.616666999106435],[139.4375,35.61666699910644],[139.4375,35.6187499991064],[139.434375,35.6187499991064],[139.434375,35.616666999106435]]]},"properties":{"MESHCODE":"5339334422","揺全壊":0.03893}},{"type":"Feature","id":4453,"geometry":{"type":"Polygon","coordinates":[[[139.434375,35.6187499991064],[139.4375,35.6187499991064],[139.4375,35.620832999106376],[139.434375,35.620832999106376],[139.434375,35.6187499991064]]]},"properties":{"MESHCODE":"5339334424","揺全壊":0.03402}},{"type":"Feature","id":4454,"geometry":{"type":"Polygon","coordinates":[[[139.425,35.62083299910638],[139.428125,35.620832999106376],[139.428125,35.62291699910637],[139.425,35.62291699910637],[139.425,35.62083299910638]]]},"properties":{"MESHCODE":"5339334431","揺全壊":0.03516}},{"type":"Feature","id":4458,"geometry":{"type":"Polygon","coordinates":[[[139.43125,35.620832999106376],[139.434375,35.620832999106376],[139.434375,35.62291699910637],[139.43125,35.62291699910637],[139.43125,35.620832999106376]]]},"properties":{"MESHCODE":"5339334441","揺全壊":0.04047}},{"type":"Feature","id":4488,"geometry":{"type":"Polygon","coordinates":[[[139.459375,35.620832999106376],[139.4625,35.620832999106376],[139.4625,35.62291699910637],[139.459375,35.62291699910637],[139.459375,35.620832999106376]]]},"properties":{"MESHCODE":"5339334642","揺全壊":0.03456}},{"type":"Feature","id":4493,"geometry":{"type":"Polygon","coordinates":[[[139.471875,35.6187499991064],[139.475,35.6187499991064],[139.475,35.620832999106376],[139.471875,35.620832999106376],[139.471875,35.6187499991064]]]},"properties":{"MESHCODE":"5339334724","揺全壊":0.03604}},{"type":"Feature","id":4498,"geometry":{"type":"Polygon","coordinates":[[[139.471875,35.620832999106376],[139.475,35.620832999106376],[139.475,35.62291699910637],[139.471875,35.62291699910637],[139.471875,35.620832999106376]]]},"properties":{"MESHCODE":"5339334742","揺全壊":0.0308}},{"type":"Feature","id":4500,"geometry":{"type":"Polygon","coordinates":[[[139.471875,35.62291699910637],[139.475,35.62291699910637],[139.475,35.62499999910634],[139.471875,35.62499999910634],[139.471875,35.62291699910637]]]},"properties":{"MESHCODE":"5339334744","揺全壊":0.0327}},{"type":"Feature","id":4501,"geometry":{"type":"Polygon","coordinates":[[[139.475,35.616666999106435],[139.478125,35.61666699910644],[139.478125,35.618749999106406],[139.475,35.6187499991064],[139.475,35.616666999106435]]]},"properties":{"MESHCODE":"5339334811","揺全壊":0.04602}},{"type":"Feature","id":4520,"geometry":{"type":"Polygon","coordinates":[[[139.490625,35.6187499991064],[139.49375,35.6187499991064],[139.49375,35.620832999106376],[139.490625,35.620832999106376],[139.490625,35.6187499991064]]]},"properties":{"MESHCODE":"5339334914","揺全壊":0.03626}},{"type":"Feature","id":4672,"geometry":{"type":"Polygon","coordinates":[[[139.478125,35.63124999910629],[139.48125,35.63124999910628],[139.48125,35.633332999106244],[139.478125,35.63333299910626],[139.478125,35.63124999910629]]]},"properties":{"MESHCODE":"5339335834","揺全壊":0.03376}},{"type":"Feature","id":4680,"geometry":{"type":"Polygon","coordinates":[[[139.490625,35.62708299910633],[139.49375,35.62708299910633],[139.49375,35.62916699910631],[139.490625,35.62916699910631],[139.490625,35.62708299910633]]]},"properties":{"MESHCODE":"5339335914","揺全壊":0.03585}},{"type":"Feature","id":4715,"geometry":{"type":"Polygon","coordinates":[[[139.39375,35.63541699910623],[139.396875,35.63541699910623],[139.396875,35.637499999106225],[139.39375,35.637499999106225],[139.39375,35.63541699910623]]]},"properties":{"MESHCODE":"5339336123","揺全壊":0.04312}},{"type":"Feature","id":4723,"geometry":{"type":"Polygon","coordinates":[[[139.39375,35.639582999106196],[139.396875,35.639582999106196],[139.396875,35.64166699910617],[139.39375,35.64166699910617],[139.39375,35.639582999106196]]]},"properties":{"MESHCODE":"5339336143","揺全壊":0.04247}},{"type":"Feature","id":4731,"geometry":{"type":"Polygon","coordinates":[[[139.40625,35.63541699910624],[139.409375,35.63541699910623],[139.409375,35.637499999106225],[139.40625,35.637499999106225],[139.40625,35.63541699910624]]]},"properties":{"MESHCODE":"5339336223","揺全壊":0.04042}},{"type":"Feature","id":4736,"geometry":{"type":"Polygon","coordinates":[[[139.403125,35.639582999106196],[139.40625,35.639582999106196],[139.40625,35.64166699910617],[139.403125,35.64166699910617],[139.403125,35.639582999106196]]]},"properties":{"MESHCODE":"5339336234","揺全壊":0.03336}},{"type":"Feature","id":4737,"geometry":{"type":"Polygon","coordinates":[[[139.40625,35.637499999106225],[139.409375,35.637499999106225],[139.409375,35.639582999106196],[139.40625,35.639582999106196],[139.40625,35.637499999106225]]]},"properties":{"MESHCODE":"5339336241","揺全壊":0.03336}},{"type":"Feature","id":4828,"geometry":{"type":"Polygon","coordinates":[[[139.484375,35.63541699910623],[139.4875,35.63541699910623],[139.4875,35.637499999106225],[139.484375,35.637499999106225],[139.484375,35.63541699910623]]]},"properties":{"MESHCODE":"5339336824","揺全壊":0.04974}},{"type":"Feature","id":4846,"geometry":{"type":"Polygon","coordinates":[[[139.490625,35.637499999106225],[139.49375,35.637499999106225],[139.49375,35.63958299910618],[139.490625,35.639582999106196],[139.490625,35.637499999106225]]]},"properties":{"MESHCODE":"5339336932","揺全壊":0.04538}},{"type":"Feature","id":4874,"geometry":{"type":"Polygon","coordinates":[[[139.396875,35.64166699910617],[139.4,35.64166699910617],[139.4,35.643749999106134],[139.396875,35.64374999910615],[139.396875,35.64166699910617]]]},"properties":{"MESHCODE":"5339337122","揺全壊":0.03099}},{"type":"Feature","id":4885,"geometry":{"type":"Polygon","coordinates":[[[139.4,35.64166699910617],[139.403125,35.64166699910617],[139.403125,35.64374999910615],[139.4,35.643749999106134],[139.4,35.64166699910617]]]},"properties":{"MESHCODE":"5339337211","揺全壊":0.03045}},{"type":"Feature","id":4889,"geometry":{"type":"Polygon","coordinates":[[[139.40625,35.64166699910617],[139.409375,35.64166699910617],[139.409375,35.64374999910615],[139.40625,35.64374999910615],[139.40625,35.64166699910617]]]},"properties":{"MESHCODE":"5339337221","揺全壊":0.0354}},{"type":"Feature","id":4992,"geometry":{"type":"Polygon","coordinates":[[[139.478125,35.64791699910611],[139.48125,35.64791699910609],[139.48125,35.64999999910607],[139.478125,35.64999999910607],[139.478125,35.64791699910611]]]},"properties":{"MESHCODE":"5339337834","揺全壊":0.03009}},{"type":"Feature","id":4993,"geometry":{"type":"Polygon","coordinates":[[[139.48125,35.645832999106126],[139.484375,35.645832999106126],[139.484375,35.64791699910609],[139.48125,35.64791699910609],[139.48125,35.645832999106126]]]},"properties":{"MESHCODE":"5339337841","揺全壊":0.03799}},{"type":"Feature","id":5142,"geometry":{"type":"Polygon","coordinates":[[[139.478125,35.64999999910607],[139.48125,35.64999999910607],[139.48125,35.65208299910605],[139.478125,35.652082999106064],[139.478125,35.64999999910607]]]},"properties":{"MESHCODE":"5339338812","揺全壊":0.03248}},{"type":"Feature","id":5247,"geometry":{"type":"Polygon","coordinates":[[[139.425,35.664582999105924],[139.428125,35.664582999105924],[139.428125,35.66666699910591],[139.425,35.66666699910591],[139.425,35.664582999105924]]]},"properties":{"MESHCODE":"5339339433","揺全壊":0.03165}},{"type":"Feature","id":5248,"geometry":{"type":"Polygon","coordinates":[[[139.428125,35.664582999105924],[139.43125,35.664582999105924],[139.43125,35.66666699910591],[139.428125,35.66666699910591],[139.428125,35.664582999105924]]]},"properties":{"MESHCODE":"5339339434","揺全壊":0.04407}},{"type":"Feature","id":5254,"geometry":{"type":"Polygon","coordinates":[[[139.440625,35.658332999106],[139.44375,35.658332999106],[139.44375,35.660416999105976],[139.440625,35.660416999105976],[139.440625,35.658332999106]]]},"properties":{"MESHCODE":"5339339512","揺全壊":0.03419}},{"type":"Feature","id":5307,"geometry":{"type":"Polygon","coordinates":[[[139.48125,35.660416999105976],[139.484375,35.66041699910596],[139.484375,35.662499999105954],[139.48125,35.662499999105954],[139.48125,35.660416999105976]]]},"properties":{"MESHCODE":"5339339823","揺全壊":0.03362}},{"type":"Feature","id":5308,"geometry":{"type":"Polygon","coordinates":[[[139.484375,35.66041699910596],[139.4875,35.660416999105976],[139.4875,35.66249999910595],[139.484375,35.662499999105954],[139.484375,35.66041699910596]]]},"properties":{"MESHCODE":"5339339824","揺全壊":0.04615}},{"type":"Feature","id":5315,"geometry":{"type":"Polygon","coordinates":[[[139.48125,35.664582999105924],[139.484375,35.66458299910591],[139.484375,35.66666699910591],[139.48125,35.66666699910591],[139.48125,35.664582999105924]]]},"properties":{"MESHCODE":"5339339843","揺全壊":0.03137}},{"type":"Feature","id":5369,"geometry":{"type":"Polygon","coordinates":[[[139.590625,35.6187499991064],[139.59375,35.6187499991064],[139.59375,35.62083299910638],[139.590625,35.620832999106376],[139.590625,35.6187499991064]]]},"properties":{"MESHCODE":"5339344714","揺全壊":0.03103}},{"type":"Feature","id":5420,"geometry":{"type":"Polygon","coordinates":[[[139.50625,35.62708299910633],[139.509375,35.627082999106314],[139.509375,35.6291669991063],[139.50625,35.62916699910631],[139.50625,35.62708299910633]]]},"properties":{"MESHCODE":"5339345023","揺全壊":0.04484}},{"type":"Feature","id":5423,"geometry":{"type":"Polygon","coordinates":[[[139.503125,35.62916699910631],[139.50625,35.62916699910631],[139.50625,35.63124999910628],[139.503125,35.63124999910628],[139.503125,35.62916699910631]]]},"properties":{"MESHCODE":"5339345032","揺全壊":0.03398}},{"type":"Feature","id":5440,"geometry":{"type":"Polygon","coordinates":[[[139.521875,35.63124999910628],[139.525,35.63124999910628],[139.525,35.633332999106244],[139.521875,35.63333299910626],[139.521875,35.63124999910628]]]},"properties":{"MESHCODE":"5339345144","揺全壊":0.04725}},{"type":"Feature","id":5555,"geometry":{"type":"Polygon","coordinates":[[[139.534375,35.639582999106196],[139.5375,35.63958299910618],[139.5375,35.64166699910617],[139.534375,35.64166699910616],[139.534375,35.639582999106196]]]},"properties":{"MESHCODE":"5339346244","揺全壊":0.04918}},{"type":"Feature","id":5830,"geometry":{"type":"Polygon","coordinates":[[[139.509375,35.65208299910605],[139.5125,35.65208299910605],[139.5125,35.65416699910603],[139.509375,35.65416699910603],[139.509375,35.65208299910605]]]},"properties":{"MESHCODE":"5339348024","揺全壊":0.04256}},{"type":"Feature","id":6247,"geometry":{"type":"Polygon","coordinates":[[[139.746875,35.58333299910679],[139.75,35.58333299910679],[139.75,35.585416999106755],[139.746875,35.585416999106755],[139.746875,35.58333299910679]]]},"properties":{"MESHCODE":"5339350922","揺全壊":0.03206}},{"type":"Feature","id":6402,"geometry":{"type":"Polygon","coordinates":[[[139.6375,35.59999999910661],[139.640625,35.59999999910661],[139.640625,35.602082999106585],[139.6375,35.60208299910657],[139.6375,35.59999999910661]]]},"properties":{"MESHCODE":"5339352111","揺全壊":0.03259}},{"type":"Feature","id":6865,"geometry":{"type":"Polygon","coordinates":[[[139.746875,35.62291699910637],[139.75,35.62291699910637],[139.75,35.62499999910634],[139.746875,35.62499999910634],[139.746875,35.62291699910637]]]},"properties":{"MESHCODE":"5339354944","揺全壊":0.03854}},{"type":"Feature","id":7020,"geometry":{"type":"Polygon","coordinates":[[[139.7375,35.63124999910628],[139.740625,35.63124999910628],[139.740625,35.63333299910626],[139.7375,35.633332999106244],[139.7375,35.63124999910628]]]},"properties":{"MESHCODE":"5339355933","揺全壊":0.04644}},{"type":"Feature","id":7170,"geometry":{"type":"Polygon","coordinates":[[[139.7375,35.633332999106244],[139.740625,35.63333299910626],[139.740625,35.63541699910623],[139.7375,35.63541699910623],[139.7375,35.633332999106244]]]},"properties":{"MESHCODE":"5339356911","揺全壊":0.03509}},{"type":"Feature","id":7172,"geometry":{"type":"Polygon","coordinates":[[[139.7375,35.63541699910623],[139.740625,35.63541699910623],[139.740625,35.637499999106225],[139.7375,35.637499999106225],[139.7375,35.63541699910623]]]},"properties":{"MESHCODE":"5339356913","揺全壊":0.04616}},{"type":"Feature","id":7182,"geometry":{"type":"Polygon","coordinates":[[[139.74375,35.637499999106225],[139.746875,35.637499999106225],[139.746875,35.639582999106196],[139.74375,35.639582999106196],[139.74375,35.637499999106225]]]},"properties":{"MESHCODE":"5339356941","揺全壊":0.0441}},{"type":"Feature","id":7183,"geometry":{"type":"Polygon","coordinates":[[[139.746875,35.637499999106225],[139.75,35.63749999910623],[139.75,35.639582999106196],[139.746875,35.639582999106196],[139.746875,35.637499999106225]]]},"properties":{"MESHCODE":"5339356942","揺全壊":0.04563}},{"type":"Feature","id":7184,"geometry":{"type":"Polygon","coordinates":[[[139.74375,35.639582999106196],[139.746875,35.639582999106196],[139.746875,35.64166699910617],[139.74375,35.64166699910617],[139.74375,35.639582999106196]]]},"properties":{"MESHCODE":"5339356943","揺全壊":0.04633}},{"type":"Feature","id":7470,"geometry":{"type":"Polygon","coordinates":[[[139.71875,35.65416699910603],[139.721875,35.65416699910603],[139.721875,35.65624999910601],[139.71875,35.65624999910601],[139.71875,35.65416699910603]]]},"properties":{"MESHCODE":"5339358741","揺全壊":0.04454}},{"type":"Feature","id":7505,"geometry":{"type":"Polygon","coordinates":[[[139.746875,35.65624999910601],[139.75,35.65624999910601],[139.75,35.658332999106],[139.746875,35.658332999106],[139.746875,35.65624999910601]]]},"properties":{"MESHCODE":"5339358944","揺全壊":0.0325}},{"type":"Feature","id":7670,"geometry":{"type":"Polygon","coordinates":[[[139.75625,35.58333299910679],[139.759375,35.58333299910679],[139.759375,35.585416999106755],[139.75625,35.585416999106755],[139.75625,35.58333299910679]]]},"properties":{"MESHCODE":"5339360021","揺全壊":0.04267}},{"type":"Feature","id":7684,"geometry":{"type":"Polygon","coordinates":[[[139.7625,35.585416999106755],[139.765625,35.585416999106755],[139.765625,35.587499999106726],[139.7625,35.587499999106726],[139.7625,35.585416999106755]]]},"properties":{"MESHCODE":"5339360113","揺全壊":0.03635}},{"type":"Feature","id":7693,"geometry":{"type":"Polygon","coordinates":[[[139.765625,35.58958299910671],[139.76875,35.58958299910671],[139.76875,35.5916669991067],[139.765625,35.5916669991067],[139.765625,35.58958299910671]]]},"properties":{"MESHCODE":"5339360134","揺全壊":0.03352}},{"type":"Feature","id":7695,"geometry":{"type":"Polygon","coordinates":[[[139.771875,35.587499999106726],[139.775,35.587499999106726],[139.775,35.58958299910671],[139.771875,35.58958299910671],[139.771875,35.587499999106726]]]},"properties":{"MESHCODE":"5339360142","揺全壊":0.03507}},{"type":"Feature","id":7697,"geometry":{"type":"Polygon","coordinates":[[[139.771875,35.58958299910671],[139.775,35.58958299910671],[139.775,35.5916669991067],[139.771875,35.5916669991067],[139.771875,35.58958299910671]]]},"properties":{"MESHCODE":"5339360144","揺全壊":0.04652}},{"type":"Feature","id":7736,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.5916669991067],[139.7625,35.5916669991067],[139.7625,35.59374999910667],[139.759375,35.59374999910667],[139.759375,35.5916669991067]]]},"properties":{"MESHCODE":"5339361022","揺全壊":0.03982}},{"type":"Feature","id":7751,"geometry":{"type":"Polygon","coordinates":[[[139.76875,35.5916669991067],[139.771875,35.5916669991067],[139.771875,35.59374999910667],[139.76875,35.59374999910667],[139.76875,35.5916669991067]]]},"properties":{"MESHCODE":"5339361121","揺全壊":0.04699}},{"type":"Feature","id":7755,"geometry":{"type":"Polygon","coordinates":[[[139.7625,35.59583299910665],[139.765625,35.59583299910665],[139.765625,35.59791699910664],[139.7625,35.59791699910664],[139.7625,35.59583299910665]]]},"properties":{"MESHCODE":"5339361131","揺全壊":0.03463}},{"type":"Feature","id":7815,"geometry":{"type":"Polygon","coordinates":[[[139.753125,35.5999999991066],[139.75625,35.59999999910661],[139.75625,35.60208299910657],[139.753125,35.60208299910657],[139.753125,35.5999999991066]]]},"properties":{"MESHCODE":"5339362012","揺全壊":0.04452}},{"type":"Feature","id":7820,"geometry":{"type":"Polygon","coordinates":[[[139.75625,35.60208299910657],[139.759375,35.60208299910657],[139.759375,35.60416699910657],[139.75625,35.60416699910657],[139.75625,35.60208299910657]]]},"properties":{"MESHCODE":"5339362023","揺全壊":0.03016}},{"type":"Feature","id":7823,"geometry":{"type":"Polygon","coordinates":[[[139.753125,35.60416699910657],[139.75625,35.60416699910657],[139.75625,35.606249999106545],[139.753125,35.606249999106545],[139.753125,35.60416699910657]]]},"properties":{"MESHCODE":"5339362032","揺全壊":0.04086}},{"type":"Feature","id":7824,"geometry":{"type":"Polygon","coordinates":[[[139.75,35.60624999910655],[139.753125,35.606249999106545],[139.753125,35.60833299910652],[139.75,35.60833299910652],[139.75,35.60624999910655]]]},"properties":{"MESHCODE":"5339362033","揺全壊":0.04133}},{"type":"Feature","id":7827,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.60416699910657],[139.7625,35.60416699910657],[139.7625,35.606249999106545],[139.759375,35.606249999106545],[139.759375,35.60416699910657]]]},"properties":{"MESHCODE":"5339362042","揺全壊":0.03961}},{"type":"Feature","id":7832,"geometry":{"type":"Polygon","coordinates":[[[139.7625,35.60208299910657],[139.765625,35.60208299910657],[139.765625,35.60416699910657],[139.7625,35.60416699910657],[139.7625,35.60208299910657]]]},"properties":{"MESHCODE":"5339362113","揺全壊":0.03961}},{"type":"Feature","id":7850,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.60624999910655],[139.790625,35.606249999106545],[139.790625,35.60833299910652],[139.7875,35.60833299910652],[139.7875,35.60624999910655]]]},"properties":{"MESHCODE":"5339362333","揺全壊":0.03583}},{"type":"Feature","id":7886,"geometry":{"type":"Polygon","coordinates":[[[139.75,35.60833299910652],[139.753125,35.60833299910652],[139.753125,35.610416999106484],[139.75,35.610416999106484],[139.75,35.60833299910652]]]},"properties":{"MESHCODE":"5339363011","揺全壊":0.03292}},{"type":"Feature","id":7912,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.612499999106454],[139.778125,35.612499999106454],[139.778125,35.61458299910646],[139.775,35.61458299910646],[139.775,35.612499999106454]]]},"properties":{"MESHCODE":"5339363231","揺全壊":0.03024}},{"type":"Feature","id":7914,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.61458299910646],[139.778125,35.61458299910646],[139.778125,35.616666999106435],[139.775,35.616666999106435],[139.775,35.61458299910646]]]},"properties":{"MESHCODE":"5339363233","揺全壊":0.03147}},{"type":"Feature","id":7924,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.61249999910647],[139.790625,35.612499999106454],[139.790625,35.61458299910646],[139.7875,35.61458299910646],[139.7875,35.61249999910647]]]},"properties":{"MESHCODE":"5339363331","揺全壊":0.03503}},{"type":"Feature","id":7952,"geometry":{"type":"Polygon","coordinates":[[[139.75625,35.616666999106435],[139.759375,35.616666999106435],[139.759375,35.6187499991064],[139.75625,35.6187499991064],[139.75625,35.616666999106435]]]},"properties":{"MESHCODE":"5339364021","揺全壊":0.03802}},{"type":"Feature","id":7957,"geometry":{"type":"Polygon","coordinates":[[[139.75,35.62291699910637],[139.753125,35.62291699910637],[139.753125,35.624999999106336],[139.75,35.62499999910634],[139.75,35.62291699910637]]]},"properties":{"MESHCODE":"5339364033","揺全壊":0.04105}},{"type":"Feature","id":7961,"geometry":{"type":"Polygon","coordinates":[[[139.75625,35.62291699910637],[139.759375,35.62291699910637],[139.759375,35.62499999910634],[139.75625,35.62499999910634],[139.75625,35.62291699910637]]]},"properties":{"MESHCODE":"5339364043","揺全壊":0.04947}},{"type":"Feature","id":7965,"geometry":{"type":"Polygon","coordinates":[[[139.76875,35.6187499991064],[139.771875,35.6187499991064],[139.771875,35.620832999106376],[139.76875,35.620832999106376],[139.76875,35.6187499991064]]]},"properties":{"MESHCODE":"5339364123","揺全壊":0.04448}},{"type":"Feature","id":7976,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.6187499991064],[139.78125,35.6187499991064],[139.78125,35.620832999106376],[139.778125,35.620832999106376],[139.778125,35.6187499991064]]]},"properties":{"MESHCODE":"5339364214","揺全壊":0.03724}},{"type":"Feature","id":7997,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.620832999106376],[139.79375,35.62083299910638],[139.79375,35.62291699910637],[139.790625,35.62291699910637],[139.790625,35.620832999106376]]]},"properties":{"MESHCODE":"5339364332","揺全壊":0.03575}},{"type":"Feature","id":7998,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.62291699910637],[139.790625,35.62291699910637],[139.790625,35.624999999106336],[139.7875,35.62499999910634],[139.7875,35.62291699910637]]]},"properties":{"MESHCODE":"5339364333","揺全壊":0.03633}},{"type":"Feature","id":8012,"geometry":{"type":"Polygon","coordinates":[[[139.825,35.620832999106376],[139.828125,35.620832999106376],[139.828125,35.62291699910637],[139.825,35.62291699910637],[139.825,35.620832999106376]]]},"properties":{"MESHCODE":"5339364631","揺全壊":0.0437}},{"type":"Feature","id":8040,"geometry":{"type":"Polygon","coordinates":[[[139.76875,35.62499999910634],[139.771875,35.624999999106336],[139.771875,35.62708299910633],[139.76875,35.62708299910633],[139.76875,35.62499999910634]]]},"properties":{"MESHCODE":"5339365121","揺全壊":0.0337}},{"type":"Feature","id":8060,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.62916699910631],[139.78125,35.6291669991063],[139.78125,35.63124999910628],[139.778125,35.63124999910628],[139.778125,35.62916699910631]]]},"properties":{"MESHCODE":"5339365232","揺全壊":0.03014}},{"type":"Feature","id":8064,"geometry":{"type":"Polygon","coordinates":[[[139.784375,35.62916699910631],[139.7875,35.62916699910631],[139.7875,35.63124999910628],[139.784375,35.63124999910629],[139.784375,35.62916699910631]]]},"properties":{"MESHCODE":"5339365242","揺全壊":0.03541}},{"type":"Feature","id":8078,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.63124999910628],[139.79375,35.63124999910628],[139.79375,35.63333299910626],[139.790625,35.633332999106244],[139.790625,35.63124999910628]]]},"properties":{"MESHCODE":"5339365334","揺全壊":0.04869}},{"type":"Feature","id":8103,"geometry":{"type":"Polygon","coordinates":[[[139.83125,35.62916699910631],[139.834375,35.62916699910631],[139.834375,35.63124999910628],[139.83125,35.63124999910628],[139.83125,35.62916699910631]]]},"properties":{"MESHCODE":"5339365641","揺全壊":0.03882}},{"type":"Feature","id":8104,"geometry":{"type":"Polygon","coordinates":[[[139.834375,35.62916699910631],[139.8375,35.62916699910631],[139.8375,35.63124999910628],[139.834375,35.63124999910628],[139.834375,35.62916699910631]]]},"properties":{"MESHCODE":"5339365642","揺全壊":0.03305}},{"type":"Feature","id":8115,"geometry":{"type":"Polygon","coordinates":[[[139.753125,35.63541699910623],[139.75625,35.63541699910623],[139.75625,35.637499999106225],[139.753125,35.637499999106225],[139.753125,35.63541699910623]]]},"properties":{"MESHCODE":"5339366014","揺全壊":0.0399}},{"type":"Feature","id":8146,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.633332999106244],[139.79375,35.63333299910626],[139.79375,35.63541699910624],[139.790625,35.63541699910623],[139.790625,35.633332999106244]]]},"properties":{"MESHCODE":"5339366312","揺全壊":0.04425}},{"type":"Feature","id":8153,"geometry":{"type":"Polygon","coordinates":[[[139.7875,35.63749999910623],[139.790625,35.637499999106225],[139.790625,35.639582999106196],[139.7875,35.63958299910618],[139.7875,35.63749999910623]]]},"properties":{"MESHCODE":"5339366331","揺全壊":0.03452}},{"type":"Feature","id":8163,"geometry":{"type":"Polygon","coordinates":[[[139.803125,35.63541699910623],[139.80625,35.63541699910623],[139.80625,35.637499999106225],[139.803125,35.63749999910623],[139.803125,35.63541699910623]]]},"properties":{"MESHCODE":"5339366414","揺全壊":0.03767}},{"type":"Feature","id":8169,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.637499999106225],[139.809375,35.637499999106225],[139.809375,35.639582999106196],[139.80625,35.639582999106196],[139.80625,35.637499999106225]]]},"properties":{"MESHCODE":"5339366441","揺全壊":0.03756}},{"type":"Feature","id":8170,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.639582999106196],[139.809375,35.639582999106196],[139.809375,35.64166699910617],[139.80625,35.64166699910617],[139.80625,35.639582999106196]]]},"properties":{"MESHCODE":"5339366443","揺全壊":0.03429}},{"type":"Feature","id":8197,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.633332999106244],[139.840625,35.633332999106244],[139.840625,35.63541699910623],[139.8375,35.63541699910624],[139.8375,35.633332999106244]]]},"properties":{"MESHCODE":"5339366711","揺全壊":0.04878}},{"type":"Feature","id":8242,"geometry":{"type":"Polygon","coordinates":[[[139.75625,35.645832999106126],[139.759375,35.645832999106126],[139.759375,35.64791699910609],[139.75625,35.64791699910609],[139.75625,35.645832999106126]]]},"properties":{"MESHCODE":"5339367041","揺全壊":0.03522}},{"type":"Feature","id":8244,"geometry":{"type":"Polygon","coordinates":[[[139.75625,35.64791699910609],[139.759375,35.64791699910609],[139.759375,35.64999999910607],[139.75625,35.64999999910607],[139.75625,35.64791699910609]]]},"properties":{"MESHCODE":"5339367043","揺全壊":0.04088}},{"type":"Feature","id":8284,"geometry":{"type":"Polygon","coordinates":[[[139.809375,35.64166699910617],[139.8125,35.64166699910617],[139.8125,35.64374999910615],[139.809375,35.64374999910615],[139.809375,35.64166699910617]]]},"properties":{"MESHCODE":"5339367422","揺全壊":0.04561}},{"type":"Feature","id":8286,"geometry":{"type":"Polygon","coordinates":[[[139.809375,35.64374999910615],[139.8125,35.64374999910615],[139.8125,35.645832999106126],[139.809375,35.645832999106126],[139.809375,35.64374999910615]]]},"properties":{"MESHCODE":"5339367424","揺全壊":0.04057}},{"type":"Feature","id":8305,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.64791699910609],[139.815625,35.64791699910611],[139.815625,35.64999999910607],[139.8125,35.64999999910607],[139.8125,35.64791699910609]]]},"properties":{"MESHCODE":"5339367533","揺全壊":0.03434}},{"type":"Feature","id":8319,"geometry":{"type":"Polygon","coordinates":[[[139.825,35.645832999106126],[139.828125,35.645832999106126],[139.828125,35.64791699910609],[139.825,35.64791699910609],[139.825,35.645832999106126]]]},"properties":{"MESHCODE":"5339367631","揺全壊":0.03734}},{"type":"Feature","id":8367,"geometry":{"type":"Polygon","coordinates":[[[139.8625,35.64791699910609],[139.865625,35.64791699910609],[139.865625,35.64999999910607],[139.8625,35.64999999910607],[139.8625,35.64791699910609]]]},"properties":{"MESHCODE":"5339367933","揺全壊":0.03153}},{"type":"Feature","id":8378,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.64999999910607],[139.7625,35.64999999910607],[139.7625,35.65208299910605],[139.759375,35.65208299910605],[139.759375,35.64999999910607]]]},"properties":{"MESHCODE":"5339368022","揺全壊":0.03914}},{"type":"Feature","id":8393,"geometry":{"type":"Polygon","coordinates":[[[139.76875,35.64999999910607],[139.771875,35.64999999910607],[139.771875,35.65208299910605],[139.76875,35.65208299910605],[139.76875,35.64999999910607]]]},"properties":{"MESHCODE":"5339368121","揺全壊":0.04397}},{"type":"Feature","id":8397,"geometry":{"type":"Polygon","coordinates":[[[139.7625,35.65416699910603],[139.765625,35.65416699910603],[139.765625,35.65624999910601],[139.7625,35.65624999910601],[139.7625,35.65416699910603]]]},"properties":{"MESHCODE":"5339368131","揺全壊":0.04583}},{"type":"Feature","id":8401,"geometry":{"type":"Polygon","coordinates":[[[139.76875,35.65416699910603],[139.771875,35.65416699910603],[139.771875,35.65624999910601],[139.76875,35.65624999910601],[139.76875,35.65416699910603]]]},"properties":{"MESHCODE":"5339368141","揺全壊":0.03739}},{"type":"Feature","id":8403,"geometry":{"type":"Polygon","coordinates":[[[139.76875,35.65624999910601],[139.771875,35.65624999910601],[139.771875,35.658332999106],[139.76875,35.658332999106],[139.76875,35.65624999910601]]]},"properties":{"MESHCODE":"5339368143","揺全壊":0.03855}},{"type":"Feature","id":8408,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.65208299910605],[139.78125,35.65208299910605],[139.78125,35.65416699910603],[139.778125,35.65416699910603],[139.778125,35.65208299910605]]]},"properties":{"MESHCODE":"5339368214","揺全壊":0.04089}},{"type":"Feature","id":8410,"geometry":{"type":"Polygon","coordinates":[[[139.78125,35.65208299910605],[139.784375,35.652082999106064],[139.784375,35.65416699910603],[139.78125,35.65416699910603],[139.78125,35.65208299910605]]]},"properties":{"MESHCODE":"5339368223","揺全壊":0.0395}},{"type":"Feature","id":8413,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.65416699910603],[139.78125,35.65416699910603],[139.78125,35.656249999105995],[139.778125,35.65624999910601],[139.778125,35.65416699910603]]]},"properties":{"MESHCODE":"5339368232","揺全壊":0.03245}},{"type":"Feature","id":8424,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.64999999910607],[139.8,35.64999999910607],[139.8,35.65208299910605],[139.796875,35.65208299910605],[139.796875,35.64999999910607]]]},"properties":{"MESHCODE":"5339368322","揺全壊":0.04873}},{"type":"Feature","id":8451,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.64999999910607],[139.815625,35.64999999910607],[139.815625,35.65208299910605],[139.8125,35.65208299910605],[139.8125,35.64999999910607]]]},"properties":{"MESHCODE":"5339368511","揺全壊":0.03166}},{"type":"Feature","id":8483,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.64999999910607],[139.840625,35.64999999910607],[139.840625,35.65208299910605],[139.8375,35.65208299910605],[139.8375,35.64999999910607]]]},"properties":{"MESHCODE":"5339368711","揺全壊":0.04}},{"type":"Feature","id":8513,"geometry":{"type":"Polygon","coordinates":[[[139.85625,35.65624999910601],[139.859375,35.65624999910601],[139.859375,35.658332999106],[139.85625,35.658332999106],[139.85625,35.65624999910601]]]},"properties":{"MESHCODE":"5339368843","揺全壊":0.04966}},{"type":"Feature","id":8544,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.662499999105954],[139.7625,35.662499999105954],[139.7625,35.664582999105924],[139.759375,35.664582999105924],[139.759375,35.662499999105954]]]},"properties":{"MESHCODE":"5339369042","揺全壊":0.03082}},{"type":"Feature","id":8565,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.660416999105976],[139.778125,35.660416999105976],[139.778125,35.662499999105954],[139.775,35.662499999105954],[139.775,35.660416999105976]]]},"properties":{"MESHCODE":"5339369213","揺全壊":0.04162}},{"type":"Feature","id":8571,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.662499999105954],[139.778125,35.662499999105954],[139.778125,35.664582999105924],[139.775,35.664582999105924],[139.775,35.662499999105954]]]},"properties":{"MESHCODE":"5339369231","揺全壊":0.03698}},{"type":"Feature","id":8582,"geometry":{"type":"Polygon","coordinates":[[[139.790625,35.660416999105976],[139.79375,35.660416999105976],[139.79375,35.66249999910595],[139.790625,35.66249999910595],[139.790625,35.660416999105976]]]},"properties":{"MESHCODE":"5339369314","揺全壊":0.03034}},{"type":"Feature","id":8583,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.658332999106],[139.796875,35.658332999106],[139.796875,35.660416999105976],[139.79375,35.660416999105976],[139.79375,35.658332999106]]]},"properties":{"MESHCODE":"5339369321","揺全壊":0.04884}},{"type":"Feature","id":8584,"geometry":{"type":"Polygon","coordinates":[[[139.796875,35.658332999106],[139.8,35.658332999106],[139.8,35.660416999105976],[139.796875,35.660416999105976],[139.796875,35.658332999106]]]},"properties":{"MESHCODE":"5339369322","揺全壊":0.03807}},{"type":"Feature","id":8585,"geometry":{"type":"Polygon","coordinates":[[[139.79375,35.660416999105976],[139.796875,35.660416999105976],[139.796875,35.662499999105954],[139.79375,35.66249999910595],[139.79375,35.660416999105976]]]},"properties":{"MESHCODE":"5339369323","揺全壊":0.04269}},{"type":"Feature","id":8637,"geometry":{"type":"Polygon","coordinates":[[[139.825,35.664582999105924],[139.828125,35.664582999105924],[139.828125,35.66666699910591],[139.825,35.66666699910591],[139.825,35.664582999105924]]]},"properties":{"MESHCODE":"5339369633","揺全壊":0.03433}},{"type":"Feature","id":8639,"geometry":{"type":"Polygon","coordinates":[[[139.83125,35.662499999105954],[139.834375,35.662499999105954],[139.834375,35.664582999105924],[139.83125,35.664582999105924],[139.83125,35.662499999105954]]]},"properties":{"MESHCODE":"5339369641","揺全壊":0.04162}},{"type":"Feature","id":8640,"geometry":{"type":"Polygon","coordinates":[[[139.834375,35.662499999105954],[139.8375,35.662499999105954],[139.8375,35.664582999105924],[139.834375,35.664582999105924],[139.834375,35.662499999105954]]]},"properties":{"MESHCODE":"5339369642","揺全壊":0.04291}},{"type":"Feature","id":8642,"geometry":{"type":"Polygon","coordinates":[[[139.834375,35.664582999105924],[139.8375,35.664582999105924],[139.8375,35.66666699910591],[139.834375,35.66666699910591],[139.834375,35.664582999105924]]]},"properties":{"MESHCODE":"5339369644","揺全壊":0.03658}},{"type":"Feature","id":8645,"geometry":{"type":"Polygon","coordinates":[[[139.8375,35.660416999105976],[139.840625,35.660416999105976],[139.840625,35.662499999105954],[139.8375,35.662499999105954],[139.8375,35.660416999105976]]]},"properties":{"MESHCODE":"5339369713","揺全壊":0.0449}},{"type":"Feature","id":8660,"geometry":{"type":"Polygon","coordinates":[[[139.853125,35.658332999106],[139.85625,35.658332999106],[139.85625,35.660416999105976],[139.853125,35.660416999105976],[139.853125,35.658332999106]]]},"properties":{"MESHCODE":"5339369812","揺全壊":0.04819}},{"type":"Feature","id":8692,"geometry":{"type":"Polygon","coordinates":[[[139.875,35.64166699910616],[139.878125,35.64166699910617],[139.878125,35.64374999910615],[139.875,35.643749999106134],[139.875,35.64166699910616]]]},"properties":{"MESHCODE":"5339377011","揺全壊":0.03108}},{"type":"Feature","id":8702,"geometry":{"type":"Polygon","coordinates":[[[139.88125,35.645832999106126],[139.884375,35.645832999106126],[139.884375,35.64791699910609],[139.88125,35.64791699910609],[139.88125,35.645832999106126]]]},"properties":{"MESHCODE":"5339377041","揺全壊":0.04739}},{"type":"Feature","id":9457,"geometry":{"type":"Polygon","coordinates":[[[139.11875,35.735416999105176],[139.121875,35.73541699910518],[139.121875,35.73749999910516],[139.11875,35.73749999910516],[139.11875,35.735416999105176]]]},"properties":{"MESHCODE":"5339408923","揺全壊":0.03192}},{"type":"Feature","id":9708,"geometry":{"type":"Polygon","coordinates":[[[139.203125,35.668749999105884],[139.20625,35.668749999105884],[139.20625,35.670832999105855],[139.203125,35.67083299910584],[139.203125,35.668749999105884]]]},"properties":{"MESHCODE":"5339410614","揺全壊":0.04027}},{"type":"Feature","id":9719,"geometry":{"type":"Polygon","coordinates":[[[139.20625,35.672916999105844],[139.209375,35.672916999105844],[139.209375,35.674999999105815],[139.20625,35.674999999105815],[139.20625,35.672916999105844]]]},"properties":{"MESHCODE":"5339410643","揺全壊":0.04937}},{"type":"Feature","id":9724,"geometry":{"type":"Polygon","coordinates":[[[139.215625,35.668749999105884],[139.21875,35.668749999105884],[139.21875,35.670832999105855],[139.215625,35.670832999105855],[139.215625,35.668749999105884]]]},"properties":{"MESHCODE":"5339410714","揺全壊":0.03843}},{"type":"Feature","id":9754,"geometry":{"type":"Polygon","coordinates":[[[139.240625,35.66666699910591],[139.24375,35.66666699910591],[139.24375,35.66874999910589],[139.240625,35.668749999105884],[139.240625,35.66666699910591]]]},"properties":{"MESHCODE":"5339410912","揺全壊":0.0419}},{"type":"Feature","id":9851,"geometry":{"type":"Polygon","coordinates":[[[139.1875,35.6770829991058],[139.190625,35.67708299910581],[139.190625,35.67916699910577],[139.1875,35.67916699910577],[139.1875,35.6770829991058]]]},"properties":{"MESHCODE":"5339411513","揺全壊":0.03728}},{"type":"Feature","id":9866,"geometry":{"type":"Polygon","coordinates":[[[139.203125,35.674999999105815],[139.20625,35.674999999105815],[139.20625,35.67708299910581],[139.203125,35.67708299910581],[139.203125,35.674999999105815]]]},"properties":{"MESHCODE":"5339411612","揺全壊":0.04369}},{"type":"Feature","id":10236,"geometry":{"type":"Polygon","coordinates":[[[139.240625,35.69374999910563],[139.24375,35.69374999910564],[139.24375,35.695832999105605],[139.240625,35.69583299910559],[139.240625,35.69374999910563]]]},"properties":{"MESHCODE":"5339413914","揺全壊":0.03826}},{"type":"Feature","id":10242,"geometry":{"type":"Polygon","coordinates":[[[139.240625,35.69583299910559],[139.24375,35.695832999105605],[139.24375,35.69791699910558],[139.240625,35.69791699910557],[139.240625,35.69583299910559]]]},"properties":{"MESHCODE":"5339413932","揺全壊":0.04259}},{"type":"Feature","id":10381,"geometry":{"type":"Polygon","coordinates":[[[139.23125,35.69999999910555],[139.234375,35.69999999910556],[139.234375,35.70208299910554],[139.23125,35.702082999105535],[139.23125,35.69999999910555]]]},"properties":{"MESHCODE":"5339414821","揺全壊":0.0422}},{"type":"Feature","id":10404,"geometry":{"type":"Polygon","coordinates":[[[139.240625,35.70624999910548],[139.24375,35.70624999910548],[139.24375,35.70833299910548],[139.240625,35.70833299910548],[139.240625,35.70624999910548]]]},"properties":{"MESHCODE":"5339414934","揺全壊":0.04189}},{"type":"Feature","id":10546,"geometry":{"type":"Polygon","coordinates":[[[139.228125,35.712499999105425],[139.23125,35.712499999105425],[139.23125,35.714582999105396],[139.228125,35.714582999105396],[139.228125,35.712499999105425]]]},"properties":{"MESHCODE":"5339415832","揺全壊":0.04136}},{"type":"Feature","id":10554,"geometry":{"type":"Polygon","coordinates":[[[139.240625,35.70833299910548],[139.24375,35.70833299910548],[139.24375,35.71041699910544],[139.240625,35.71041699910544],[139.240625,35.70833299910548]]]},"properties":{"MESHCODE":"5339415912","揺全壊":0.03618}},{"type":"Feature","id":10643,"geometry":{"type":"Polygon","coordinates":[[[139.175,35.72291699910533],[139.178125,35.72291699910533],[139.178125,35.72499999910529],[139.175,35.72499999910529],[139.175,35.72291699910533]]]},"properties":{"MESHCODE":"5339416433","揺全壊":0.03928}},{"type":"Feature","id":10702,"geometry":{"type":"Polygon","coordinates":[[[139.234375,35.71666699910538],[139.2375,35.71666699910538],[139.2375,35.718749999105356],[139.234375,35.718749999105356],[139.234375,35.71666699910538]]]},"properties":{"MESHCODE":"5339416822","揺全壊":0.04065}},{"type":"Feature","id":10703,"geometry":{"type":"Polygon","coordinates":[[[139.23125,35.718749999105356],[139.234375,35.718749999105356],[139.234375,35.72083299910535],[139.23125,35.72083299910533],[139.23125,35.718749999105356]]]},"properties":{"MESHCODE":"5339416823","揺全壊":0.04495}},{"type":"Feature","id":10705,"geometry":{"type":"Polygon","coordinates":[[[139.225,35.72083299910535],[139.228125,35.72083299910535],[139.228125,35.72291699910533],[139.225,35.72291699910533],[139.225,35.72083299910535]]]},"properties":{"MESHCODE":"5339416831","揺全壊":0.03232}},{"type":"Feature","id":10728,"geometry":{"type":"Polygon","coordinates":[[[139.246875,35.72291699910533],[139.25,35.72291699910532],[139.25,35.7249999991053],[139.246875,35.72499999910529],[139.246875,35.72291699910533]]]},"properties":{"MESHCODE":"5339416944","揺全壊":0.03652}},{"type":"Feature","id":10806,"geometry":{"type":"Polygon","coordinates":[[[139.184375,35.72916699910524],[139.1875,35.72916699910524],[139.1875,35.73124999910523],[139.184375,35.731249999105245],[139.184375,35.72916699910524]]]},"properties":{"MESHCODE":"5339417442","揺全壊":0.04703}},{"type":"Feature","id":10812,"geometry":{"type":"Polygon","coordinates":[[[139.190625,35.72708299910527],[139.19375,35.72708299910527],[139.19375,35.72916699910524],[139.190625,35.72916699910524],[139.190625,35.72708299910527]]]},"properties":{"MESHCODE":"5339417514","揺全壊":0.03618}},{"type":"Feature","id":10834,"geometry":{"type":"Polygon","coordinates":[[[139.203125,35.72916699910524],[139.20625,35.72916699910524],[139.20625,35.731249999105245],[139.203125,35.731249999105245],[139.203125,35.72916699910524]]]},"properties":{"MESHCODE":"5339417632","揺全壊":0.03736}},{"type":"Feature","id":10851,"geometry":{"type":"Polygon","coordinates":[[[139.2125,35.731249999105245],[139.215625,35.731249999105245],[139.215625,35.733332999105215],[139.2125,35.733332999105215],[139.2125,35.731249999105245]]]},"properties":{"MESHCODE":"5339417733","揺全壊":0.04202}},{"type":"Feature","id":10877,"geometry":{"type":"Polygon","coordinates":[[[139.24375,35.72499999910529],[139.246875,35.72499999910529],[139.246875,35.72708299910527],[139.24375,35.72708299910527],[139.24375,35.72499999910529]]]},"properties":{"MESHCODE":"5339417921","揺全壊":0.03692}},{"type":"Feature","id":10883,"geometry":{"type":"Polygon","coordinates":[[[139.2375,35.731249999105245],[139.240625,35.731249999105245],[139.240625,35.733332999105215],[139.2375,35.733332999105215],[139.2375,35.731249999105245]]]},"properties":{"MESHCODE":"5339417933","揺全壊":0.03192}},{"type":"Feature","id":10889,"geometry":{"type":"Polygon","coordinates":[[[139.125,35.733332999105215],[139.128125,35.733332999105215],[139.128125,35.73541699910518],[139.125,35.73541699910518],[139.125,35.733332999105215]]]},"properties":{"MESHCODE":"5339418011","揺全壊":0.03091}},{"type":"Feature","id":10903,"geometry":{"type":"Polygon","coordinates":[[[139.13125,35.73958299910514],[139.134375,35.73958299910514],[139.134375,35.741666999105114],[139.13125,35.741666999105114],[139.13125,35.73958299910514]]]},"properties":{"MESHCODE":"5339418043","揺全壊":0.03634}},{"type":"Feature","id":10958,"geometry":{"type":"Polygon","coordinates":[[[139.184375,35.733332999105215],[139.1875,35.7333329991052],[139.1875,35.735416999105176],[139.184375,35.73541699910518],[139.184375,35.733332999105215]]]},"properties":{"MESHCODE":"5339418422","揺全壊":0.04878}},{"type":"Feature","id":10979,"geometry":{"type":"Polygon","coordinates":[[[139.1875,35.739582999105124],[139.190625,35.73958299910514],[139.190625,35.741666999105114],[139.1875,35.741666999105114],[139.1875,35.739582999105124]]]},"properties":{"MESHCODE":"5339418533","揺全壊":0.0454}},{"type":"Feature","id":11012,"geometry":{"type":"Polygon","coordinates":[[[139.215625,35.73958299910514],[139.21875,35.73958299910514],[139.21875,35.741666999105114],[139.215625,35.741666999105114],[139.215625,35.73958299910514]]]},"properties":{"MESHCODE":"5339418734","揺全壊":0.03183}},{"type":"Feature","id":11034,"geometry":{"type":"Polygon","coordinates":[[[139.240625,35.733332999105215],[139.24375,35.733332999105215],[139.24375,35.73541699910518],[139.240625,35.73541699910518],[139.240625,35.733332999105215]]]},"properties":{"MESHCODE":"5339418912","揺全壊":0.04113}},{"type":"Feature","id":11052,"geometry":{"type":"Polygon","coordinates":[[[139.128125,35.74374999910509],[139.13125,35.74374999910509],[139.13125,35.74583299910507],[139.128125,35.74583299910507],[139.128125,35.74374999910509]]]},"properties":{"MESHCODE":"5339419014","揺全壊":0.04844}},{"type":"Feature","id":11152,"geometry":{"type":"Polygon","coordinates":[[[139.209375,35.74374999910509],[139.2125,35.74374999910509],[139.2125,35.74583299910506],[139.209375,35.74583299910507],[139.209375,35.74374999910509]]]},"properties":{"MESHCODE":"5339419624","揺全壊":0.03512}},{"type":"Feature","id":11227,"geometry":{"type":"Polygon","coordinates":[[[139.2625,35.668749999105884],[139.265625,35.66874999910589],[139.265625,35.670832999105855],[139.2625,35.670832999105855],[139.2625,35.668749999105884]]]},"properties":{"MESHCODE":"5339420113","揺全壊":0.03202}},{"type":"Feature","id":11482,"geometry":{"type":"Polygon","coordinates":[[[139.340625,35.674999999105815],[139.34375,35.674999999105815],[139.34375,35.67708299910581],[139.340625,35.67708299910581],[139.340625,35.674999999105815]]]},"properties":{"MESHCODE":"5339421712","揺全壊":0.04084}},{"type":"Feature","id":11532,"geometry":{"type":"Polygon","coordinates":[[[139.253125,35.685416999105705],[139.25625,35.685416999105726],[139.25625,35.68749999910568],[139.253125,35.68749999910568],[139.253125,35.685416999105705]]]},"properties":{"MESHCODE":"5339422014","揺全壊":0.04939}},{"type":"Feature","id":11534,"geometry":{"type":"Polygon","coordinates":[[[139.259375,35.68333299910573],[139.2625,35.68333299910573],[139.2625,35.685416999105726],[139.259375,35.685416999105726],[139.259375,35.68333299910573]]]},"properties":{"MESHCODE":"5339422022","揺全壊":0.04679}},{"type":"Feature","id":11562,"geometry":{"type":"Polygon","coordinates":[[[139.278125,35.68333299910573],[139.28125,35.68333299910573],[139.28125,35.685416999105726],[139.278125,35.685416999105726],[139.278125,35.68333299910573]]]},"properties":{"MESHCODE":"5339422212","揺全壊":0.03555}},{"type":"Feature","id":11628,"geometry":{"type":"Polygon","coordinates":[[[139.328125,35.685416999105705],[139.33125,35.685416999105726],[139.33125,35.68749999910568],[139.328125,35.68749999910568],[139.328125,35.685416999105705]]]},"properties":{"MESHCODE":"5339422614","揺全壊":0.03476}},{"type":"Feature","id":11636,"geometry":{"type":"Polygon","coordinates":[[[139.328125,35.689582999105674],[139.33125,35.68958299910567],[139.33125,35.691666999105664],[139.328125,35.691666999105664],[139.328125,35.689582999105674]]]},"properties":{"MESHCODE":"5339422634","揺全壊":0.03383}},{"type":"Feature","id":11637,"geometry":{"type":"Polygon","coordinates":[[[139.33125,35.68749999910568],[139.334375,35.68749999910568],[139.334375,35.68958299910567],[139.33125,35.68958299910567],[139.33125,35.68749999910568]]]},"properties":{"MESHCODE":"5339422641","揺全壊":0.03228}},{"type":"Feature","id":11731,"geometry":{"type":"Polygon","coordinates":[[[139.275,35.69791699910557],[139.278125,35.69791699910557],[139.278125,35.69999999910556],[139.275,35.69999999910556],[139.275,35.69791699910557]]]},"properties":{"MESHCODE":"5339423233","揺全壊":0.039}},{"type":"Feature","id":11732,"geometry":{"type":"Polygon","coordinates":[[[139.278125,35.69791699910557],[139.28125,35.69791699910557],[139.28125,35.69999999910556],[139.278125,35.69999999910556],[139.278125,35.69791699910557]]]},"properties":{"MESHCODE":"5339423234","揺全壊":0.04678}},{"type":"Feature","id":11740,"geometry":{"type":"Polygon","coordinates":[[[139.290625,35.69374999910563],[139.29375,35.69374999910563],[139.29375,35.69583299910559],[139.290625,35.69583299910559],[139.290625,35.69374999910563]]]},"properties":{"MESHCODE":"5339423314","揺全壊":0.03758}},{"type":"Feature","id":11743,"geometry":{"type":"Polygon","coordinates":[[[139.29375,35.69374999910563],[139.296875,35.69374999910561],[139.296875,35.69583299910558],[139.29375,35.69583299910559],[139.29375,35.69374999910563]]]},"properties":{"MESHCODE":"5339423323","揺全壊":0.04601}},{"type":"Feature","id":11761,"geometry":{"type":"Polygon","coordinates":[[[139.3,35.69583299910559],[139.303125,35.69583299910559],[139.303125,35.69791699910557],[139.3,35.69791699910557],[139.3,35.69583299910559]]]},"properties":{"MESHCODE":"5339423431","揺全壊":0.0361}},{"type":"Feature","id":11764,"geometry":{"type":"Polygon","coordinates":[[[139.303125,35.69791699910557],[139.30625,35.69791699910557],[139.30625,35.69999999910556],[139.303125,35.69999999910556],[139.303125,35.69791699910557]]]},"properties":{"MESHCODE":"5339423434","揺全壊":0.03327}},{"type":"Feature","id":11778,"geometry":{"type":"Polygon","coordinates":[[[139.315625,35.69583299910559],[139.31875,35.695832999105605],[139.31875,35.69791699910558],[139.315625,35.69791699910557],[139.315625,35.69583299910559]]]},"properties":{"MESHCODE":"5339423532","揺全壊":0.03929}},{"type":"Feature","id":11780,"geometry":{"type":"Polygon","coordinates":[[[139.315625,35.69791699910557],[139.31875,35.69791699910558],[139.31875,35.69999999910557],[139.315625,35.69999999910557],[139.315625,35.69791699910557]]]},"properties":{"MESHCODE":"5339423534","揺全壊":0.03508}},{"type":"Feature","id":11791,"geometry":{"type":"Polygon","coordinates":[[[139.33125,35.69374999910561],[139.334375,35.69374999910561],[139.334375,35.69583299910558],[139.33125,35.69583299910559],[139.33125,35.69374999910561]]]},"properties":{"MESHCODE":"5339423623","揺全壊":0.03621}},{"type":"Feature","id":11842,"geometry":{"type":"Polygon","coordinates":[[[139.365625,35.69583299910559],[139.36875,35.695832999105605],[139.36875,35.69791699910558],[139.365625,35.69791699910557],[139.365625,35.69583299910559]]]},"properties":{"MESHCODE":"5339423932","揺全壊":0.04406}},{"type":"Feature","id":11853,"geometry":{"type":"Polygon","coordinates":[[[139.25625,35.69999999910557],[139.259375,35.69999999910556],[139.259375,35.70208299910554],[139.25625,35.70208299910554],[139.25625,35.69999999910557]]]},"properties":{"MESHCODE":"5339424021","揺全壊":0.04438}},{"type":"Feature","id":11857,"geometry":{"type":"Polygon","coordinates":[[[139.25,35.70416699910551],[139.253125,35.70416699910552],[139.253125,35.70624999910548],[139.25,35.70624999910548],[139.25,35.70416699910551]]]},"properties":{"MESHCODE":"5339424031","揺全壊":0.04724}},{"type":"Feature","id":11874,"geometry":{"type":"Polygon","coordinates":[[[139.265625,35.70416699910552],[139.26875,35.70416699910552],[139.26875,35.70624999910548],[139.265625,35.70624999910548],[139.265625,35.70416699910552]]]},"properties":{"MESHCODE":"5339424132","揺全壊":0.03766}},{"type":"Feature","id":11901,"geometry":{"type":"Polygon","coordinates":[[[139.29375,35.69999999910556],[139.296875,35.69999999910555],[139.296875,35.70208299910554],[139.29375,35.70208299910554],[139.29375,35.69999999910556]]]},"properties":{"MESHCODE":"5339424321","揺全壊":0.03348}},{"type":"Feature","id":11906,"geometry":{"type":"Polygon","coordinates":[[[139.290625,35.70416699910552],[139.29375,35.70416699910552],[139.29375,35.70624999910548],[139.290625,35.70624999910548],[139.290625,35.70416699910552]]]},"properties":{"MESHCODE":"5339424332","揺全壊":0.03438}},{"type":"Feature","id":11907,"geometry":{"type":"Polygon","coordinates":[[[139.2875,35.706249999105474],[139.290625,35.70624999910548],[139.290625,35.70833299910548],[139.2875,35.70833299910548],[139.2875,35.706249999105474]]]},"properties":{"MESHCODE":"5339424333","揺全壊":0.04483}},{"type":"Feature","id":11916,"geometry":{"type":"Polygon","coordinates":[[[139.303125,35.70208299910554],[139.30625,35.70208299910554],[139.30625,35.70416699910551],[139.303125,35.70416699910552],[139.303125,35.70208299910554]]]},"properties":{"MESHCODE":"5339424414","揺全壊":0.04654}},{"type":"Feature","id":11926,"geometry":{"type":"Polygon","coordinates":[[[139.309375,35.70416699910551],[139.3125,35.70416699910552],[139.3125,35.70624999910548],[139.309375,35.70624999910548],[139.309375,35.70416699910551]]]},"properties":{"MESHCODE":"5339424442","揺全壊":0.04087}},{"type":"Feature","id":11927,"geometry":{"type":"Polygon","coordinates":[[[139.30625,35.70624999910548],[139.309375,35.70624999910548],[139.309375,35.70833299910548],[139.30625,35.70833299910548],[139.30625,35.70624999910548]]]},"properties":{"MESHCODE":"5339424443","揺全壊":0.03051}},{"type":"Feature","id":11940,"geometry":{"type":"Polygon","coordinates":[[[139.315625,35.70624999910548],[139.31875,35.70624999910548],[139.31875,35.70833299910548],[139.315625,35.70833299910548],[139.315625,35.70624999910548]]]},"properties":{"MESHCODE":"5339424534","揺全壊":0.04087}},{"type":"Feature","id":11944,"geometry":{"type":"Polygon","coordinates":[[[139.321875,35.70624999910548],[139.325,35.70624999910548],[139.325,35.70833299910548],[139.321875,35.70833299910548],[139.321875,35.70624999910548]]]},"properties":{"MESHCODE":"5339424544","揺全壊":0.03524}},{"type":"Feature","id":11948,"geometry":{"type":"Polygon","coordinates":[[[139.328125,35.70208299910554],[139.33125,35.702082999105535],[139.33125,35.70416699910551],[139.328125,35.70416699910551],[139.328125,35.70208299910554]]]},"properties":{"MESHCODE":"5339424614","揺全壊":0.04371}},{"type":"Feature","id":11954,"geometry":{"type":"Polygon","coordinates":[[[139.328125,35.70416699910551],[139.33125,35.70416699910551],[139.33125,35.70624999910548],[139.328125,35.70624999910548],[139.328125,35.70416699910551]]]},"properties":{"MESHCODE":"5339424632","揺全壊":0.04091}},{"type":"Feature","id":11965,"geometry":{"type":"Polygon","coordinates":[[[139.34375,35.69999999910556],[139.346875,35.69999999910556],[139.346875,35.70208299910554],[139.34375,35.70208299910554],[139.34375,35.69999999910556]]]},"properties":{"MESHCODE":"5339424721","揺全壊":0.04121}},{"type":"Feature","id":12049,"geometry":{"type":"Polygon","coordinates":[[[139.275,35.712499999105425],[139.278125,35.712499999105425],[139.278125,35.714582999105396],[139.275,35.714582999105396],[139.275,35.712499999105425]]]},"properties":{"MESHCODE":"5339425231","揺全壊":0.03798}},{"type":"Feature","id":12050,"geometry":{"type":"Polygon","coordinates":[[[139.278125,35.712499999105425],[139.28125,35.712499999105425],[139.28125,35.714582999105396],[139.278125,35.714582999105396],[139.278125,35.712499999105425]]]},"properties":{"MESHCODE":"5339425232","揺全壊":0.04362}},{"type":"Feature","id":12095,"geometry":{"type":"Polygon","coordinates":[[[139.31875,35.71041699910544],[139.321875,35.71041699910544],[139.321875,35.712499999105425],[139.31875,35.712499999105425],[139.31875,35.71041699910544]]]},"properties":{"MESHCODE":"5339425523","揺全壊":0.03626}},{"type":"Feature","id":12096,"geometry":{"type":"Polygon","coordinates":[[[139.321875,35.71041699910544],[139.325,35.71041699910544],[139.325,35.712499999105425],[139.321875,35.712499999105425],[139.321875,35.71041699910544]]]},"properties":{"MESHCODE":"5339425524","揺全壊":0.04761}},{"type":"Feature","id":12167,"geometry":{"type":"Polygon","coordinates":[[[139.36875,35.714582999105396],[139.371875,35.714582999105396],[139.371875,35.71666699910538],[139.36875,35.71666699910537],[139.36875,35.714582999105396]]]},"properties":{"MESHCODE":"5339425943","揺全壊":0.03027}},{"type":"Feature","id":12177,"geometry":{"type":"Polygon","coordinates":[[[139.25,35.72083299910535],[139.253125,35.72083299910535],[139.253125,35.72291699910532],[139.25,35.72291699910532],[139.25,35.72083299910535]]]},"properties":{"MESHCODE":"5339426031","揺全壊":0.03652}},{"type":"Feature","id":12190,"geometry":{"type":"Polygon","coordinates":[[[139.271875,35.71666699910537],[139.275,35.71666699910537],[139.275,35.718749999105356],[139.271875,35.718749999105356],[139.271875,35.71666699910537]]]},"properties":{"MESHCODE":"5339426122","揺全壊":0.03014}},{"type":"Feature","id":12218,"geometry":{"type":"Polygon","coordinates":[[[139.290625,35.71666699910537],[139.29375,35.71666699910537],[139.29375,35.718749999105356],[139.290625,35.718749999105356],[139.290625,35.71666699910537]]]},"properties":{"MESHCODE":"5339426312","揺全壊":0.04572}},{"type":"Feature","id":12221,"geometry":{"type":"Polygon","coordinates":[[[139.29375,35.71666699910537],[139.296875,35.71666699910537],[139.296875,35.718749999105356],[139.29375,35.718749999105356],[139.29375,35.71666699910537]]]},"properties":{"MESHCODE":"5339426321","揺全壊":0.03562}},{"type":"Feature","id":12237,"geometry":{"type":"Polygon","coordinates":[[[139.30625,35.71666699910537],[139.309375,35.71666699910537],[139.309375,35.718749999105356],[139.30625,35.718749999105356],[139.30625,35.71666699910537]]]},"properties":{"MESHCODE":"5339426421","揺全壊":0.04995}},{"type":"Feature","id":12250,"geometry":{"type":"Polygon","coordinates":[[[139.315625,35.71666699910537],[139.31875,35.71666699910538],[139.31875,35.718749999105356],[139.315625,35.718749999105356],[139.315625,35.71666699910537]]]},"properties":{"MESHCODE":"5339426512","揺全壊":0.03339}},{"type":"Feature","id":12314,"geometry":{"type":"Polygon","coordinates":[[[139.365625,35.71666699910537],[139.36875,35.71666699910537],[139.36875,35.718749999105356],[139.365625,35.718749999105356],[139.365625,35.71666699910537]]]},"properties":{"MESHCODE":"5339426912","揺全壊":0.03124}},{"type":"Feature","id":12351,"geometry":{"type":"Polygon","coordinates":[[[139.26875,35.72708299910527],[139.271875,35.72708299910527],[139.271875,35.72916699910524],[139.26875,35.72916699910524],[139.26875,35.72708299910527]]]},"properties":{"MESHCODE":"5339427123","揺全壊":0.03944}},{"type":"Feature","id":12392,"geometry":{"type":"Polygon","coordinates":[[[139.296875,35.73124999910523],[139.3,35.731249999105245],[139.3,35.733332999105215],[139.296875,35.733332999105215],[139.296875,35.73124999910523]]]},"properties":{"MESHCODE":"5339427344","揺全壊":0.03264}},{"type":"Feature","id":12402,"geometry":{"type":"Polygon","coordinates":[[[139.303125,35.72916699910524],[139.30625,35.72916699910524],[139.30625,35.731249999105245],[139.303125,35.731249999105245],[139.303125,35.72916699910524]]]},"properties":{"MESHCODE":"5339427432","揺全壊":0.04834}},{"type":"Feature","id":12510,"geometry":{"type":"Polygon","coordinates":[[[139.271875,35.733332999105215],[139.275,35.733332999105215],[139.275,35.73541699910518],[139.271875,35.73541699910518],[139.271875,35.733332999105215]]]},"properties":{"MESHCODE":"5339428122","揺全壊":0.04656}},{"type":"Feature","id":12555,"geometry":{"type":"Polygon","coordinates":[[[139.3,35.735416999105176],[139.303125,35.73541699910518],[139.303125,35.73749999910516],[139.3,35.73749999910516],[139.3,35.735416999105176]]]},"properties":{"MESHCODE":"5339428413","揺全壊":0.03622}},{"type":"Feature","id":12573,"geometry":{"type":"Polygon","coordinates":[[[139.31875,35.733332999105215],[139.321875,35.733332999105215],[139.321875,35.73541699910518],[139.31875,35.73541699910518],[139.31875,35.733332999105215]]]},"properties":{"MESHCODE":"5339428521","揺全壊":0.04484}},{"type":"Feature","id":12623,"geometry":{"type":"Polygon","coordinates":[[[139.35625,35.73541699910518],[139.359375,35.73541699910518],[139.359375,35.73749999910516],[139.35625,35.73749999910516],[139.35625,35.73541699910518]]]},"properties":{"MESHCODE":"5339428823","揺全壊":0.03375}},{"type":"Feature","id":12636,"geometry":{"type":"Polygon","coordinates":[[[139.365625,35.73541699910518],[139.36875,35.73541699910518],[139.36875,35.73749999910516],[139.365625,35.73749999910516],[139.365625,35.73541699910518]]]},"properties":{"MESHCODE":"5339428914","揺全壊":0.03636}},{"type":"Feature","id":12676,"geometry":{"type":"Polygon","coordinates":[[[139.265625,35.747916999105065],[139.26875,35.747916999105065],[139.26875,35.749999999105036],[139.265625,35.749999999105036],[139.265625,35.747916999105065]]]},"properties":{"MESHCODE":"5339429134","揺全壊":0.04953}},{"type":"Feature","id":12718,"geometry":{"type":"Polygon","coordinates":[[[139.309375,35.741666999105114],[139.3125,35.741666999105114],[139.3125,35.74374999910509],[139.309375,35.74374999910509],[139.309375,35.741666999105114]]]},"properties":{"MESHCODE":"5339429422","揺全壊":0.04461}},{"type":"Feature","id":12873,"geometry":{"type":"Polygon","coordinates":[[[139.425,35.66666699910591],[139.428125,35.66666699910591],[139.428125,35.668749999105884],[139.425,35.668749999105884],[139.425,35.66666699910591]]]},"properties":{"MESHCODE":"5339430411","揺全壊":0.04071}},{"type":"Feature","id":12874,"geometry":{"type":"Polygon","coordinates":[[[139.428125,35.66666699910591],[139.43125,35.66666699910591],[139.43125,35.668749999105884],[139.428125,35.668749999105884],[139.428125,35.66666699910591]]]},"properties":{"MESHCODE":"5339430412","揺全壊":0.04503}},{"type":"Feature","id":12901,"geometry":{"type":"Polygon","coordinates":[[[139.44375,35.670832999105855],[139.446875,35.670832999105855],[139.446875,35.672916999105844],[139.44375,35.672916999105844],[139.44375,35.670832999105855]]]},"properties":{"MESHCODE":"5339430541","揺全壊":0.03818}},{"type":"Feature","id":13022,"geometry":{"type":"Polygon","coordinates":[[[139.421875,35.67499999910579],[139.425,35.674999999105815],[139.425,35.67708299910581],[139.421875,35.6770829991058],[139.421875,35.67499999910579]]]},"properties":{"MESHCODE":"5339431322","揺全壊":0.04077}},{"type":"Feature","id":13093,"geometry":{"type":"Polygon","coordinates":[[[139.46875,35.67916699910577],[139.471875,35.67916699910577],[139.471875,35.68124999910575],[139.46875,35.68124999910575],[139.46875,35.67916699910577]]]},"properties":{"MESHCODE":"5339431741","揺全壊":0.04587}},{"type":"Feature","id":13163,"geometry":{"type":"Polygon","coordinates":[[[139.4,35.685416999105726],[139.403125,35.685416999105726],[139.403125,35.68749999910568],[139.4,35.68749999910568],[139.4,35.685416999105726]]]},"properties":{"MESHCODE":"5339432213","揺全壊":0.04568}},{"type":"Feature","id":13415,"geometry":{"type":"Polygon","coordinates":[[[139.46875,35.69791699910557],[139.471875,35.69791699910557],[139.471875,35.69999999910556],[139.46875,35.69999999910556],[139.46875,35.69791699910557]]]},"properties":{"MESHCODE":"5339433743","揺全壊":0.03225}},{"type":"Feature","id":13473,"geometry":{"type":"Polygon","coordinates":[[[139.3875,35.70416699910551],[139.390625,35.70416699910552],[139.390625,35.70624999910548],[139.3875,35.70624999910548],[139.3875,35.70416699910551]]]},"properties":{"MESHCODE":"5339434131","揺全壊":0.03631}},{"type":"Feature","id":13474,"geometry":{"type":"Polygon","coordinates":[[[139.390625,35.70416699910552],[139.39375,35.70416699910552],[139.39375,35.70624999910548],[139.390625,35.70624999910548],[139.390625,35.70416699910552]]]},"properties":{"MESHCODE":"5339434132","揺全壊":0.04204}},{"type":"Feature","id":13632,"geometry":{"type":"Polygon","coordinates":[[[139.396875,35.71041699910544],[139.4,35.71041699910544],[139.4,35.712499999105425],[139.396875,35.712499999105425],[139.396875,35.71041699910544]]]},"properties":{"MESHCODE":"5339435124","揺全壊":0.0341}},{"type":"Feature","id":13637,"geometry":{"type":"Polygon","coordinates":[[[139.39375,35.712499999105425],[139.396875,35.712499999105425],[139.396875,35.714582999105396],[139.39375,35.714582999105396],[139.39375,35.712499999105425]]]},"properties":{"MESHCODE":"5339435141","揺全壊":0.04036}},{"type":"Feature","id":13655,"geometry":{"type":"Polygon","coordinates":[[[139.40625,35.714582999105396],[139.409375,35.714582999105396],[139.409375,35.71666699910537],[139.40625,35.71666699910538],[139.40625,35.714582999105396]]]},"properties":{"MESHCODE":"5339435243","揺全壊":0.04385}},{"type":"Feature","id":13656,"geometry":{"type":"Polygon","coordinates":[[[139.409375,35.714582999105396],[139.4125,35.714582999105396],[139.4125,35.71666699910537],[139.409375,35.71666699910537],[139.409375,35.714582999105396]]]},"properties":{"MESHCODE":"5339435244","揺全壊":0.04311}},{"type":"Feature","id":13667,"geometry":{"type":"Polygon","coordinates":[[[139.4125,35.714582999105396],[139.415625,35.714582999105396],[139.415625,35.71666699910537],[139.4125,35.71666699910537],[139.4125,35.714582999105396]]]},"properties":{"MESHCODE":"5339435333","揺全壊":0.041}},{"type":"Feature","id":13669,"geometry":{"type":"Polygon","coordinates":[[[139.41875,35.712499999105425],[139.421875,35.712499999105425],[139.421875,35.714582999105396],[139.41875,35.714582999105396],[139.41875,35.712499999105425]]]},"properties":{"MESHCODE":"5339435341","揺全壊":0.04671}},{"type":"Feature","id":13903,"geometry":{"type":"Polygon","coordinates":[[[139.48125,35.718749999105356],[139.484375,35.718749999105356],[139.484375,35.72083299910535],[139.48125,35.72083299910535],[139.48125,35.718749999105356]]]},"properties":{"MESHCODE":"5339436823","揺全壊":0.03835}},{"type":"Feature","id":14007,"geometry":{"type":"Polygon","coordinates":[[[139.43125,35.731249999105245],[139.434375,35.731249999105245],[139.434375,35.733332999105215],[139.43125,35.733332999105215],[139.43125,35.731249999105245]]]},"properties":{"MESHCODE":"5339437443","揺全壊":0.03725}},{"type":"Feature","id":14133,"geometry":{"type":"Polygon","coordinates":[[[139.40625,35.73749999910516],[139.409375,35.737499999105154],[139.409375,35.739582999105124],[139.40625,35.739582999105146],[139.40625,35.73749999910516]]]},"properties":{"MESHCODE":"5339438241","揺全壊":0.03072}},{"type":"Feature","id":14138,"geometry":{"type":"Polygon","coordinates":[[[139.415625,35.733332999105215],[139.41875,35.7333329991052],[139.41875,35.73541699910518],[139.415625,35.73541699910518],[139.415625,35.733332999105215]]]},"properties":{"MESHCODE":"5339438312","揺全壊":0.03}},{"type":"Feature","id":14141,"geometry":{"type":"Polygon","coordinates":[[[139.41875,35.7333329991052],[139.421875,35.733332999105215],[139.421875,35.73541699910518],[139.41875,35.73541699910518],[139.41875,35.7333329991052]]]},"properties":{"MESHCODE":"5339438321","揺全壊":0.03351}},{"type":"Feature","id":14149,"geometry":{"type":"Polygon","coordinates":[[[139.41875,35.73749999910516],[139.421875,35.73749999910516],[139.421875,35.73958299910514],[139.41875,35.739582999105124],[139.41875,35.73749999910516]]]},"properties":{"MESHCODE":"5339438341","揺全壊":0.04353}},{"type":"Feature","id":14393,"geometry":{"type":"Polygon","coordinates":[[[139.4875,35.741666999105114],[139.490625,35.741666999105114],[139.490625,35.74374999910509],[139.4875,35.74374999910509],[139.4875,35.741666999105114]]]},"properties":{"MESHCODE":"5339439911","揺全壊":0.03004}},{"type":"Feature","id":14440,"geometry":{"type":"Polygon","coordinates":[[[139.521875,35.672916999105844],[139.525,35.672916999105844],[139.525,35.674999999105815],[139.521875,35.67499999910579],[139.521875,35.672916999105844]]]},"properties":{"MESHCODE":"5339440144","揺全壊":0.04437}},{"type":"Feature","id":14441,"geometry":{"type":"Polygon","coordinates":[[[139.525,35.66666699910591],[139.528125,35.66666699910591],[139.528125,35.668749999105884],[139.525,35.668749999105884],[139.525,35.66666699910591]]]},"properties":{"MESHCODE":"5339440211","揺全壊":0.03188}},{"type":"Feature","id":14443,"geometry":{"type":"Polygon","coordinates":[[[139.525,35.668749999105884],[139.528125,35.668749999105884],[139.528125,35.670832999105855],[139.525,35.67083299910586],[139.525,35.668749999105884]]]},"properties":{"MESHCODE":"5339440213","揺全壊":0.03197}},{"type":"Feature","id":14445,"geometry":{"type":"Polygon","coordinates":[[[139.53125,35.66666699910591],[139.534375,35.666666999105885],[139.534375,35.668749999105884],[139.53125,35.66874999910589],[139.53125,35.66666699910591]]]},"properties":{"MESHCODE":"5339440221","揺全壊":0.04009}},{"type":"Feature","id":14753,"geometry":{"type":"Polygon","coordinates":[[[139.5125,35.68749999910568],[139.515625,35.68749999910568],[139.515625,35.689582999105674],[139.5125,35.68958299910567],[139.5125,35.68749999910568]]]},"properties":{"MESHCODE":"5339442131","揺全壊":0.04736}},{"type":"Feature","id":15236,"geometry":{"type":"Polygon","coordinates":[[[139.515625,35.714582999105396],[139.51875,35.714582999105396],[139.51875,35.71666699910537],[139.515625,35.71666699910538],[139.515625,35.714582999105396]]]},"properties":{"MESHCODE":"5339445134","揺全壊":0.0336}},{"type":"Feature","id":15376,"geometry":{"type":"Polygon","coordinates":[[[139.509375,35.718749999105356],[139.5125,35.718749999105356],[139.5125,35.72083299910535],[139.509375,35.72083299910535],[139.509375,35.718749999105356]]]},"properties":{"MESHCODE":"5339446024","揺全壊":0.04126}},{"type":"Feature","id":15385,"geometry":{"type":"Polygon","coordinates":[[[139.5125,35.71666699910537],[139.515625,35.71666699910538],[139.515625,35.718749999105356],[139.5125,35.718749999105356],[139.5125,35.71666699910537]]]},"properties":{"MESHCODE":"5339446111","揺全壊":0.03937}},{"type":"Feature","id":15609,"geometry":{"type":"Polygon","coordinates":[[[139.5625,35.72499999910529],[139.565625,35.72499999910529],[139.565625,35.72708299910527],[139.5625,35.72708299910527],[139.5625,35.72499999910529]]]},"properties":{"MESHCODE":"5339447511","揺全壊":0.0417}},{"type":"Feature","id":16092,"geometry":{"type":"Polygon","coordinates":[[[139.690625,35.668749999105884],[139.69375,35.668749999105884],[139.69375,35.670832999105855],[139.690625,35.670832999105855],[139.690625,35.668749999105884]]]},"properties":{"MESHCODE":"5339450514","揺全壊":0.03911}},{"type":"Feature","id":16113,"geometry":{"type":"Polygon","coordinates":[[[139.7,35.67083299910586],[139.703125,35.670832999105855],[139.703125,35.672916999105844],[139.7,35.672916999105844],[139.7,35.67083299910586]]]},"properties":{"MESHCODE":"5339450631","揺全壊":0.03484}},{"type":"Feature","id":16157,"geometry":{"type":"Polygon","coordinates":[[[139.74375,35.66666699910591],[139.746875,35.66666699910591],[139.746875,35.668749999105884],[139.74375,35.668749999105884],[139.74375,35.66666699910591]]]},"properties":{"MESHCODE":"5339450921","揺全壊":0.03792}},{"type":"Feature","id":16165,"geometry":{"type":"Polygon","coordinates":[[[139.74375,35.670832999105855],[139.746875,35.670832999105855],[139.746875,35.672916999105844],[139.74375,35.672916999105844],[139.74375,35.670832999105855]]]},"properties":{"MESHCODE":"5339450941","揺全壊":0.03383}},{"type":"Feature","id":16167,"geometry":{"type":"Polygon","coordinates":[[[139.74375,35.672916999105844],[139.746875,35.672916999105844],[139.746875,35.674999999105815],[139.74375,35.674999999105815],[139.74375,35.672916999105844]]]},"properties":{"MESHCODE":"5339450943","揺全壊":0.03483}},{"type":"Feature","id":16284,"geometry":{"type":"Polygon","coordinates":[[[139.715625,35.6770829991058],[139.71875,35.6770829991058],[139.71875,35.67916699910577],[139.715625,35.67916699910577],[139.715625,35.6770829991058]]]},"properties":{"MESHCODE":"5339451714","揺全壊":0.0419}},{"type":"Feature","id":16299,"geometry":{"type":"Polygon","coordinates":[[[139.725,35.67708299910581],[139.728125,35.67708299910581],[139.728125,35.67916699910577],[139.725,35.67916699910577],[139.725,35.67708299910581]]]},"properties":{"MESHCODE":"5339451813","揺全壊":0.03362}},{"type":"Feature","id":16314,"geometry":{"type":"Polygon","coordinates":[[[139.740625,35.67499999910579],[139.74375,35.674999999105815],[139.74375,35.6770829991058],[139.740625,35.6770829991058],[139.740625,35.67499999910579]]]},"properties":{"MESHCODE":"5339451912","揺全壊":0.04235}},{"type":"Feature","id":16418,"geometry":{"type":"Polygon","coordinates":[[[139.690625,35.68749999910568],[139.69375,35.68749999910568],[139.69375,35.68958299910567],[139.690625,35.68958299910567],[139.690625,35.68749999910568]]]},"properties":{"MESHCODE":"5339452532","揺全壊":0.03904}},{"type":"Feature","id":16431,"geometry":{"type":"Polygon","coordinates":[[[139.70625,35.685416999105705],[139.709375,35.685416999105726],[139.709375,35.68749999910568],[139.70625,35.68749999910568],[139.70625,35.685416999105705]]]},"properties":{"MESHCODE":"5339452623","揺全壊":0.04227}},{"type":"Feature","id":16477,"geometry":{"type":"Polygon","coordinates":[[[139.74375,35.68333299910573],[139.746875,35.68333299910573],[139.746875,35.685416999105726],[139.74375,35.685416999105726],[139.74375,35.68333299910573]]]},"properties":{"MESHCODE":"5339452921","揺全壊":0.03359}},{"type":"Feature","id":16638,"geometry":{"type":"Polygon","coordinates":[[[139.746875,35.691666999105664],[139.75,35.691666999105664],[139.75,35.69374999910564],[139.746875,35.69374999910563],[139.746875,35.691666999105664]]]},"properties":{"MESHCODE":"5339453922","揺全壊":0.04218}},{"type":"Feature","id":16752,"geometry":{"type":"Polygon","coordinates":[[[139.709375,35.70208299910554],[139.7125,35.702082999105556],[139.7125,35.70416699910551],[139.709375,35.70416699910552],[139.709375,35.70208299910554]]]},"properties":{"MESHCODE":"5339454624","揺全壊":0.04096}},{"type":"Feature","id":17070,"geometry":{"type":"Polygon","coordinates":[[[139.709375,35.71666699910537],[139.7125,35.71666699910537],[139.7125,35.718749999105356],[139.709375,35.718749999105356],[139.709375,35.71666699910537]]]},"properties":{"MESHCODE":"5339456622","揺全壊":0.04809}},{"type":"Feature","id":17617,"geometry":{"type":"Polygon","coordinates":[[[139.75,35.67083299910586],[139.753125,35.670832999105855],[139.753125,35.672916999105844],[139.75,35.672916999105844],[139.75,35.67083299910586]]]},"properties":{"MESHCODE":"5339460031","揺全壊":0.04721}},{"type":"Feature","id":17619,"geometry":{"type":"Polygon","coordinates":[[[139.75,35.672916999105844],[139.753125,35.672916999105844],[139.753125,35.67499999910579],[139.75,35.674999999105815],[139.75,35.672916999105844]]]},"properties":{"MESHCODE":"5339460033","揺全壊":0.03362}},{"type":"Feature","id":17620,"geometry":{"type":"Polygon","coordinates":[[[139.753125,35.672916999105844],[139.75625,35.672916999105844],[139.75625,35.674999999105815],[139.753125,35.67499999910579],[139.753125,35.672916999105844]]]},"properties":{"MESHCODE":"5339460034","揺全壊":0.04283}},{"type":"Feature","id":17642,"geometry":{"type":"Polygon","coordinates":[[[139.778125,35.66666699910591],[139.78125,35.666666999105885],[139.78125,35.668749999105884],[139.778125,35.668749999105884],[139.778125,35.66666699910591]]]},"properties":{"MESHCODE":"5339460212","揺全壊":0.03192}},{"type":"Feature","id":17648,"geometry":{"type":"Polygon","coordinates":[[[139.784375,35.66874999910589],[139.7875,35.668749999105884],[139.7875,35.670832999105855],[139.784375,35.670832999105855],[139.784375,35.66874999910589]]]},"properties":{"MESHCODE":"5339460224","揺全壊":0.04376}},{"type":"Feature","id":17776,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.67708299910581],[139.7625,35.67708299910581],[139.7625,35.67916699910577],[139.759375,35.67916699910577],[139.759375,35.67708299910581]]]},"properties":{"MESHCODE":"5339461024","揺全壊":0.03071}},{"type":"Feature","id":17782,"geometry":{"type":"Polygon","coordinates":[[[139.759375,35.67916699910577],[139.7625,35.67916699910577],[139.7625,35.68124999910575],[139.759375,35.68124999910575],[139.759375,35.67916699910577]]]},"properties":{"MESHCODE":"5339461042","揺全壊":0.04727}},{"type":"Feature","id":17794,"geometry":{"type":"Polygon","coordinates":[[[139.765625,35.67916699910577],[139.76875,35.67916699910577],[139.76875,35.68124999910575],[139.765625,35.68124999910575],[139.765625,35.67916699910577]]]},"properties":{"MESHCODE":"5339461132","揺全壊":0.04744}},{"type":"Feature","id":17796,"geometry":{"type":"Polygon","coordinates":[[[139.765625,35.68124999910575],[139.76875,35.68124999910575],[139.76875,35.68333299910573],[139.765625,35.68333299910573],[139.765625,35.68124999910575]]]},"properties":{"MESHCODE":"5339461134","揺全壊":0.04744}},{"type":"Feature","id":17949,"geometry":{"type":"Polygon","coordinates":[[[139.76875,35.68333299910573],[139.771875,35.68333299910573],[139.771875,35.685416999105726],[139.76875,35.685416999105705],[139.76875,35.68333299910573]]]},"properties":{"MESHCODE":"5339462121","揺全壊":0.04909}},{"type":"Feature","id":18067,"geometry":{"type":"Polygon","coordinates":[[[139.85,35.68958299910567],[139.853125,35.68958299910567],[139.853125,35.691666999105664],[139.85,35.691666999105664],[139.85,35.68958299910567]]]},"properties":{"MESHCODE":"5339462833","揺全壊":0.04172}},{"type":"Feature","id":18592,"geometry":{"type":"Polygon","coordinates":[[[139.771875,35.718749999105356],[139.775,35.718749999105356],[139.775,35.72083299910535],[139.771875,35.72083299910535],[139.771875,35.718749999105356]]]},"properties":{"MESHCODE":"5339466124","揺全壊":0.04167}},{"type":"Feature","id":18603,"geometry":{"type":"Polygon","coordinates":[[[139.775,35.718749999105356],[139.778125,35.718749999105356],[139.778125,35.72083299910535],[139.775,35.72083299910535],[139.775,35.718749999105356]]]},"properties":{"MESHCODE":"5339466213","揺全壊":0.043}},{"type":"Feature","id":18954,"geometry":{"type":"Polygon","coordinates":[[[139.803125,35.733332999105215],[139.80625,35.733332999105215],[139.80625,35.73541699910518],[139.803125,35.73541699910518],[139.803125,35.733332999105215]]]},"properties":{"MESHCODE":"5339468412","揺全壊":0.03842}},{"type":"Feature","id":18965,"geometry":{"type":"Polygon","coordinates":[[[139.80625,35.73749999910516],[139.809375,35.73749999910516],[139.809375,35.73958299910514],[139.80625,35.73958299910514],[139.80625,35.73749999910516]]]},"properties":{"MESHCODE":"5339468441","揺全壊":0.04869}},{"type":"Feature","id":18966,"geometry":{"type":"Polygon","coordinates":[[[139.809375,35.73749999910516],[139.8125,35.73749999910516],[139.8125,35.73958299910514],[139.809375,35.73958299910514],[139.809375,35.73749999910516]]]},"properties":{"MESHCODE":"5339468442","揺全壊":0.04479}},{"type":"Feature","id":18969,"geometry":{"type":"Polygon","coordinates":[[[139.8125,35.733332999105215],[139.815625,35.733332999105215],[139.815625,35.73541699910518],[139.8125,35.73541699910518],[139.8125,35.733332999105215]]]},"properties":{"MESHCODE":"5339468511","揺全壊":0.03068}},{"type":"Feature","id":19292,"geometry":{"type":"Polygon","coordinates":[[[139.909375,35.68749999910568],[139.9125,35.68749999910568],[139.9125,35.68958299910567],[139.909375,35.68958299910567],[139.909375,35.68749999910568]]]},"properties":{"MESHCODE":"5339472242","揺全壊":0.03205}},{"type":"Feature","id":19294,"geometry":{"type":"Polygon","coordinates":[[[139.909375,35.68958299910567],[139.9125,35.68958299910567],[139.9125,35.691666999105664],[139.909375,35.691666999105664],[139.909375,35.68958299910567]]]},"properties":{"MESHCODE":"5339472244","揺全壊":0.046}},{"type":"Feature","id":19348,"geometry":{"type":"Polygon","coordinates":[[[139.915625,35.69374999910564],[139.91875,35.69374999910563],[139.91875,35.69583299910559],[139.915625,35.695832999105605],[139.915625,35.69374999910564]]]},"properties":{"MESHCODE":"5339473314","揺全壊":0.03845}},{"type":"Feature","id":19374,"geometry":{"type":"Polygon","coordinates":[[[139.896875,35.69999999910557],[139.9,35.69999999910556],[139.9,35.70208299910554],[139.896875,35.70208299910554],[139.896875,35.69999999910557]]]},"properties":{"MESHCODE":"5339474122","揺全壊":0.04945}},{"type":"Feature","id":19397,"geometry":{"type":"Polygon","coordinates":[[[139.90625,35.70416699910552],[139.909375,35.70416699910552],[139.909375,35.70624999910548],[139.90625,35.70624999910548],[139.90625,35.70416699910552]]]},"properties":{"MESHCODE":"5339474241","揺全壊":0.03183}},{"type":"Feature","id":19400,"geometry":{"type":"Polygon","coordinates":[[[139.909375,35.70624999910548],[139.9125,35.70624999910548],[139.9125,35.70833299910548],[139.909375,35.70833299910548],[139.909375,35.70624999910548]]]},"properties":{"MESHCODE":"5339474244","揺全壊":0.04404}},{"type":"Feature","id":19405,"geometry":{"type":"Polygon","coordinates":[[[139.9125,35.70416699910552],[139.915625,35.70416699910552],[139.915625,35.70624999910548],[139.9125,35.70624999910548],[139.9125,35.70416699910552]]]},"properties":{"MESHCODE":"5339474331","揺全壊":0.0363}},{"type":"Feature","id":19589,"geometry":{"type":"Polygon","coordinates":[[[139.890625,35.74583299910507],[139.89375,35.74583299910506],[139.89375,35.747916999105065],[139.890625,35.747916999105065],[139.890625,35.74583299910507]]]},"properties":{"MESHCODE":"5339479132","揺全壊":0.03377}},{"type":"Feature","id":21330,"geometry":{"type":"Polygon","coordinates":[[[139.234375,35.75208299910501],[139.2375,35.75208299910503],[139.2375,35.75416699910498],[139.234375,35.75416699910498],[139.234375,35.75208299910501]]]},"properties":{"MESHCODE":"5339510824","揺全壊":0.04646}},{"type":"Feature","id":21338,"geometry":{"type":"Polygon","coordinates":[[[139.234375,35.75624999910496],[139.2375,35.75624999910496],[139.2375,35.75833299910496],[139.234375,35.75833299910495],[139.234375,35.75624999910496]]]},"properties":{"MESHCODE":"5339510844","揺全壊":0.04653}},{"type":"Feature","id":21343,"geometry":{"type":"Polygon","coordinates":[[[139.24375,35.749999999105036],[139.246875,35.749999999105036],[139.246875,35.75208299910503],[139.24375,35.75208299910503],[139.24375,35.749999999105036]]]},"properties":{"MESHCODE":"5339510921","揺全壊":0.03492}},{"type":"Feature","id":21350,"geometry":{"type":"Polygon","coordinates":[[[139.240625,35.75624999910496],[139.24375,35.75624999910496],[139.24375,35.75833299910495],[139.240625,35.75833299910495],[139.240625,35.75624999910496]]]},"properties":{"MESHCODE":"5339510934","揺全壊":0.03012}},{"type":"Feature","id":21465,"geometry":{"type":"Polygon","coordinates":[[[139.20625,35.764582999104874],[139.209375,35.76458299910489],[139.209375,35.766666999104864],[139.20625,35.766666999104864],[139.20625,35.764582999104874]]]},"properties":{"MESHCODE":"5339511643","揺全壊":0.03711}},{"type":"Feature","id":21467,"geometry":{"type":"Polygon","coordinates":[[[139.2125,35.75833299910495],[139.215625,35.75833299910495],[139.215625,35.76041699910492],[139.2125,35.76041699910492],[139.2125,35.75833299910495]]]},"properties":{"MESHCODE":"5339511711","揺全壊":0.04252}},{"type":"Feature","id":21486,"geometry":{"type":"Polygon","coordinates":[[[139.228125,35.76041699910492],[139.23125,35.76041699910492],[139.23125,35.762499999104904],[139.228125,35.762499999104904],[139.228125,35.76041699910492]]]},"properties":{"MESHCODE":"5339511814","揺全壊":0.0377}},{"type":"Feature","id":21487,"geometry":{"type":"Polygon","coordinates":[[[139.23125,35.75833299910495],[139.234375,35.75833299910495],[139.234375,35.76041699910492],[139.23125,35.76041699910492],[139.23125,35.75833299910495]]]},"properties":{"MESHCODE":"5339511821","揺全壊":0.04248}},{"type":"Feature","id":21812,"geometry":{"type":"Polygon","coordinates":[[[139.228125,35.779166999104746],[139.23125,35.779166999104746],[139.23125,35.78124999910471],[139.228125,35.78124999910471],[139.228125,35.779166999104746]]]},"properties":{"MESHCODE":"5339513832","揺全壊":0.03703}},{"type":"Feature","id":21814,"geometry":{"type":"Polygon","coordinates":[[[139.228125,35.78124999910471],[139.23125,35.78124999910471],[139.23125,35.783332999104694],[139.228125,35.783332999104694],[139.228125,35.78124999910471]]]},"properties":{"MESHCODE":"5339513834","揺全壊":0.03562}},{"type":"Feature","id":21817,"geometry":{"type":"Polygon","coordinates":[[[139.23125,35.78124999910471],[139.234375,35.78124999910471],[139.234375,35.783332999104694],[139.23125,35.783332999104694],[139.23125,35.78124999910471]]]},"properties":{"MESHCODE":"5339513843","揺全壊":0.04845}},{"type":"Feature","id":21827,"geometry":{"type":"Polygon","coordinates":[[[139.2375,35.779166999104746],[139.240625,35.779166999104746],[139.240625,35.78124999910471],[139.2375,35.78124999910471],[139.2375,35.779166999104746]]]},"properties":{"MESHCODE":"5339513931","揺全壊":0.04432}},{"type":"Feature","id":21830,"geometry":{"type":"Polygon","coordinates":[[[139.240625,35.78124999910471],[139.24375,35.78124999910471],[139.24375,35.783332999104694],[139.240625,35.783332999104694],[139.240625,35.78124999910471]]]},"properties":{"MESHCODE":"5339513934","揺全壊":0.03247}},{"type":"Feature","id":21967,"geometry":{"type":"Polygon","coordinates":[[[139.23125,35.783332999104694],[139.234375,35.783332999104694],[139.234375,35.78541699910467],[139.23125,35.78541699910467],[139.23125,35.783332999104694]]]},"properties":{"MESHCODE":"5339514821","揺全壊":0.03147}},{"type":"Feature","id":21981,"geometry":{"type":"Polygon","coordinates":[[[139.2375,35.78541699910467],[139.240625,35.78541699910467],[139.240625,35.78749999910465],[139.2375,35.78749999910465],[139.2375,35.78541699910467]]]},"properties":{"MESHCODE":"5339514913","揺全壊":0.04521}},{"type":"Feature","id":21987,"geometry":{"type":"Polygon","coordinates":[[[139.2375,35.78749999910465],[139.240625,35.78749999910465],[139.240625,35.789582999104624],[139.2375,35.789582999104624],[139.2375,35.78749999910465]]]},"properties":{"MESHCODE":"5339514931","揺全壊":0.04322}},{"type":"Feature","id":22120,"geometry":{"type":"Polygon","coordinates":[[[139.221875,35.795832999104555],[139.225,35.795832999104555],[139.225,35.797916999104544],[139.221875,35.797916999104544],[139.221875,35.795832999104555]]]},"properties":{"MESHCODE":"5339515742","揺全壊":0.03744}},{"type":"Feature","id":22219,"geometry":{"type":"Polygon","coordinates":[[[139.175,35.79999999910451],[139.178125,35.79999999910451],[139.178125,35.8020829991045],[139.175,35.8020829991045],[139.175,35.79999999910451]]]},"properties":{"MESHCODE":"5339516411","揺全壊":0.03087}},{"type":"Feature","id":22229,"geometry":{"type":"Polygon","coordinates":[[[139.175,35.80624999910443],[139.178125,35.80624999910443],[139.178125,35.80833299910443],[139.175,35.80833299910443],[139.175,35.80624999910443]]]},"properties":{"MESHCODE":"5339516433","揺全壊":0.03807}},{"type":"Feature","id":22270,"geometry":{"type":"Polygon","coordinates":[[[139.215625,35.8020829991045],[139.21875,35.8020829991045],[139.21875,35.80416699910447],[139.215625,35.80416699910447],[139.215625,35.8020829991045]]]},"properties":{"MESHCODE":"5339516714","揺全壊":0.04403}},{"type":"Feature","id":22364,"geometry":{"type":"Polygon","coordinates":[[[139.165625,35.80833299910443],[139.16875,35.80833299910443],[139.16875,35.8104169991044],[139.165625,35.8104169991044],[139.165625,35.80833299910443]]]},"properties":{"MESHCODE":"5339517312","揺全壊":0.03505}},{"type":"Feature","id":22798,"geometry":{"type":"Polygon","coordinates":[[[139.253125,35.75208299910503],[139.25625,35.75208299910503],[139.25625,35.75416699910498],[139.253125,35.75416699910498],[139.253125,35.75208299910503]]]},"properties":{"MESHCODE":"5339520014","揺全壊":0.03034}},{"type":"Feature","id":22804,"geometry":{"type":"Polygon","coordinates":[[[139.253125,35.75416699910498],[139.25625,35.75416699910498],[139.25625,35.75624999910496],[139.253125,35.75624999910497],[139.253125,35.75416699910498]]]},"properties":{"MESHCODE":"5339520032","揺全壊":0.03997}},{"type":"Feature","id":22820,"geometry":{"type":"Polygon","coordinates":[[[139.265625,35.75416699910498],[139.26875,35.75416699910498],[139.26875,35.75624999910496],[139.265625,35.75624999910496],[139.265625,35.75416699910498]]]},"properties":{"MESHCODE":"5339520132","揺全壊":0.03747}},{"type":"Feature","id":22822,"geometry":{"type":"Polygon","coordinates":[[[139.265625,35.75624999910496],[139.26875,35.75624999910496],[139.26875,35.75833299910495],[139.265625,35.75833299910495],[139.265625,35.75624999910496]]]},"properties":{"MESHCODE":"5339520134","揺全壊":0.03357}},{"type":"Feature","id":22823,"geometry":{"type":"Polygon","coordinates":[[[139.26875,35.75416699910498],[139.271875,35.75416699910498],[139.271875,35.75624999910496],[139.26875,35.75624999910496],[139.26875,35.75416699910498]]]},"properties":{"MESHCODE":"5339520141","揺全壊":0.03725}},{"type":"Feature","id":22824,"geometry":{"type":"Polygon","coordinates":[[[139.271875,35.75416699910498],[139.275,35.75416699910498],[139.275,35.75624999910496],[139.271875,35.75624999910496],[139.271875,35.75416699910498]]]},"properties":{"MESHCODE":"5339520142","揺全壊":0.04425}},{"type":"Feature","id":22867,"geometry":{"type":"Polygon","coordinates":[[[139.3,35.75416699910498],[139.303125,35.75416699910498],[139.303125,35.75624999910496],[139.3,35.75624999910496],[139.3,35.75416699910498]]]},"properties":{"MESHCODE":"5339520431","揺全壊":0.03037}},{"type":"Feature","id":22908,"geometry":{"type":"Polygon","coordinates":[[[139.340625,35.749999999105036],[139.34375,35.749999999105036],[139.34375,35.75208299910503],[139.340625,35.75208299910503],[139.340625,35.749999999105036]]]},"properties":{"MESHCODE":"5339520712","揺全壊":0.03832}},{"type":"Feature","id":22986,"geometry":{"type":"Polygon","coordinates":[[[139.271875,35.76458299910489],[139.275,35.76458299910489],[139.275,35.766666999104864],[139.271875,35.766666999104864],[139.271875,35.76458299910489]]]},"properties":{"MESHCODE":"5339521144","揺全壊":0.0389}},{"type":"Feature","id":23008,"geometry":{"type":"Polygon","coordinates":[[[139.296875,35.75833299910495],[139.3,35.75833299910495],[139.3,35.76041699910492],[139.296875,35.76041699910492],[139.296875,35.75833299910495]]]},"properties":{"MESHCODE":"5339521322","揺全壊":0.04633}},{"type":"Feature","id":23009,"geometry":{"type":"Polygon","coordinates":[[[139.29375,35.76041699910492],[139.296875,35.76041699910492],[139.296875,35.762499999104904],[139.29375,35.762499999104904],[139.29375,35.76041699910492]]]},"properties":{"MESHCODE":"5339521323","揺全壊":0.04672}},{"type":"Feature","id":23012,"geometry":{"type":"Polygon","coordinates":[[[139.290625,35.762499999104904],[139.29375,35.762499999104904],[139.29375,35.76458299910489],[139.290625,35.76458299910489],[139.290625,35.762499999104904]]]},"properties":{"MESHCODE":"5339521332","揺全壊":0.04507}},{"type":"Feature","id":23063,"geometry":{"type":"Polygon","coordinates":[[[139.33125,35.762499999104904],[139.334375,35.762499999104904],[139.334375,35.76458299910489],[139.33125,35.76458299910489],[139.33125,35.762499999104904]]]},"properties":{"MESHCODE":"5339521641","揺全壊":0.04832}},{"type":"Feature","id":23070,"geometry":{"type":"Polygon","coordinates":[[[139.340625,35.76041699910492],[139.34375,35.76041699910492],[139.34375,35.762499999104904],[139.340625,35.762499999104904],[139.340625,35.76041699910492]]]},"properties":{"MESHCODE":"5339521714","揺全壊":0.04664}},{"type":"Feature","id":23122,"geometry":{"type":"Polygon","coordinates":[[[139.259375,35.768749999104834],[139.2625,35.768749999104834],[139.2625,35.770832999104826],[139.259375,35.770832999104826],[139.259375,35.768749999104834]]]},"properties":{"MESHCODE":"5339522024","揺全壊":0.036}},{"type":"Feature","id":23140,"geometry":{"type":"Polygon","coordinates":[[[139.265625,35.770832999104826],[139.26875,35.770832999104826],[139.26875,35.7729169991048],[139.265625,35.7729169991048],[139.265625,35.770832999104826]]]},"properties":{"MESHCODE":"5339522132","揺全壊":0.03542}},{"type":"Feature","id":23155,"geometry":{"type":"Polygon","coordinates":[[[139.275,35.770832999104826],[139.278125,35.770832999104826],[139.278125,35.7729169991048],[139.275,35.7729169991048],[139.275,35.770832999104826]]]},"properties":{"MESHCODE":"5339522231","揺全壊":0.03469}},{"type":"Feature","id":23169,"geometry":{"type":"Polygon","coordinates":[[[139.29375,35.768749999104834],[139.296875,35.76874999910483],[139.296875,35.770832999104826],[139.29375,35.770832999104826],[139.29375,35.768749999104834]]]},"properties":{"MESHCODE":"5339522323","揺全壊":0.04206}},{"type":"Feature","id":23207,"geometry":{"type":"Polygon","coordinates":[[[139.31875,35.770832999104826],[139.321875,35.770832999104826],[139.321875,35.7729169991048],[139.31875,35.7729169991048],[139.31875,35.770832999104826]]]},"properties":{"MESHCODE":"5339522541","揺全壊":0.04087}},{"type":"Feature","id":23209,"geometry":{"type":"Polygon","coordinates":[[[139.31875,35.7729169991048],[139.321875,35.7729169991048],[139.321875,35.77499999910478],[139.31875,35.77499999910478],[139.31875,35.7729169991048]]]},"properties":{"MESHCODE":"5339522543","揺全壊":0.04427}},{"type":"Feature","id":23254,"geometry":{"type":"Polygon","coordinates":[[[139.353125,35.7729169991048],[139.35625,35.7729169991048],[139.35625,35.77499999910478],[139.353125,35.77499999910478],[139.353125,35.7729169991048]]]},"properties":{"MESHCODE":"5339522834","揺全壊":0.04223}},{"type":"Feature","id":23256,"geometry":{"type":"Polygon","coordinates":[[[139.359375,35.770832999104826],[139.3625,35.770832999104826],[139.3625,35.77291699910479],[139.359375,35.7729169991048],[139.359375,35.770832999104826]]]},"properties":{"MESHCODE":"5339522842","揺全壊":0.03736}},{"type":"Feature","id":23305,"geometry":{"type":"Polygon","coordinates":[[[139.26875,35.78124999910471],[139.271875,35.78124999910471],[139.271875,35.783332999104694],[139.26875,35.783332999104694],[139.26875,35.78124999910471]]]},"properties":{"MESHCODE":"5339523143","揺全壊":0.0397}},{"type":"Feature","id":23350,"geometry":{"type":"Polygon","coordinates":[[[139.303125,35.78124999910471],[139.30625,35.78124999910471],[139.30625,35.783332999104694],[139.303125,35.783332999104694],[139.303125,35.78124999910471]]]},"properties":{"MESHCODE":"5339523434","揺全壊":0.04928}},{"type":"Feature","id":23353,"geometry":{"type":"Polygon","coordinates":[[[139.30625,35.78124999910471],[139.309375,35.78124999910471],[139.309375,35.7833329991047],[139.30625,35.783332999104694],[139.30625,35.78124999910471]]]},"properties":{"MESHCODE":"5339523443","揺全壊":0.03685}},{"type":"Feature","id":23356,"geometry":{"type":"Polygon","coordinates":[[[139.315625,35.77499999910478],[139.31875,35.77499999910478],[139.31875,35.77708299910477],[139.315625,35.777082999104756],[139.315625,35.77499999910478]]]},"properties":{"MESHCODE":"5339523512","揺全壊":0.04578}},{"type":"Feature","id":23361,"geometry":{"type":"Polygon","coordinates":[[[139.31875,35.77708299910477],[139.321875,35.777082999104756],[139.321875,35.779166999104746],[139.31875,35.779166999104746],[139.31875,35.77708299910477]]]},"properties":{"MESHCODE":"5339523523","揺全壊":0.04502}},{"type":"Feature","id":23367,"geometry":{"type":"Polygon","coordinates":[[[139.31875,35.779166999104746],[139.321875,35.779166999104746],[139.321875,35.78124999910471],[139.31875,35.78124999910471],[139.31875,35.779166999104746]]]},"properties":{"MESHCODE":"5339523541","揺全壊":0.04523}},{"type":"Feature","id":23386,"geometry":{"type":"Polygon","coordinates":[[[139.334375,35.78124999910471],[139.3375,35.78124999910471],[139.3375,35.783332999104694],[139.334375,35.783332999104694],[139.334375,35.78124999910471]]]},"properties":{"MESHCODE":"5339523644","揺全壊":0.03442}},{"type":"Feature","id":23415,"geometry":{"type":"Polygon","coordinates":[[[139.35625,35.779166999104746],[139.359375,35.779166999104746],[139.359375,35.78124999910471],[139.35625,35.78124999910471],[139.35625,35.779166999104746]]]},"properties":{"MESHCODE":"5339523841","揺全壊":0.04376}},{"type":"Feature","id":23460,"geometry":{"type":"Polygon","coordinates":[[[139.2625,35.789582999104624],[139.265625,35.789582999104624],[139.265625,35.79166699910459],[139.2625,35.79166699910459],[139.2625,35.789582999104624]]]},"properties":{"MESHCODE":"5339524133","揺全壊":0.04809}},{"type":"Feature","id":23525,"geometry":{"type":"Polygon","coordinates":[[[139.315625,35.789582999104624],[139.31875,35.789582999104624],[139.31875,35.79166699910459],[139.315625,35.79166699910459],[139.315625,35.789582999104624]]]},"properties":{"MESHCODE":"5339524534","揺全壊":0.03286}},{"type":"Feature","id":23538,"geometry":{"type":"Polygon","coordinates":[[[139.325,35.78749999910463],[139.328125,35.78749999910465],[139.328125,35.789582999104624],[139.325,35.789582999104624],[139.325,35.78749999910463]]]},"properties":{"MESHCODE":"5339524631","揺全壊":0.04631}},{"type":"Feature","id":23551,"geometry":{"type":"Polygon","coordinates":[[[139.346875,35.783332999104694],[139.35,35.783332999104694],[139.35,35.78541699910467],[139.346875,35.78541699910467],[139.346875,35.783332999104694]]]},"properties":{"MESHCODE":"5339524722","揺全壊":0.04784}},{"type":"Feature","id":23616,"geometry":{"type":"Polygon","coordinates":[[[139.2625,35.797916999104544],[139.265625,35.797916999104544],[139.265625,35.79999999910451],[139.2625,35.79999999910451],[139.2625,35.797916999104544]]]},"properties":{"MESHCODE":"5339525133","揺全壊":0.0435}},{"type":"Feature","id":23659,"geometry":{"type":"Polygon","coordinates":[[[139.309375,35.791666999104606],[139.3125,35.79166699910459],[139.3125,35.79374999910459],[139.309375,35.79374999910459],[139.309375,35.791666999104606]]]},"properties":{"MESHCODE":"5339525422","揺全壊":0.0333}},{"type":"Feature","id":23675,"geometry":{"type":"Polygon","coordinates":[[[139.321875,35.79166699910459],[139.325,35.79166699910459],[139.325,35.79374999910459],[139.321875,35.79374999910459],[139.321875,35.79166699910459]]]},"properties":{"MESHCODE":"5339525522","揺全壊":0.03831}},{"type":"Feature","id":23676,"geometry":{"type":"Polygon","coordinates":[[[139.31875,35.793749999104605],[139.321875,35.79374999910459],[139.321875,35.795832999104555],[139.31875,35.795832999104555],[139.31875,35.793749999104605]]]},"properties":{"MESHCODE":"5339525523","揺全壊":0.03152}},{"type":"Feature","id":23718,"geometry":{"type":"Polygon","coordinates":[[[139.259375,35.8020829991045],[139.2625,35.8020829991045],[139.2625,35.80416699910447],[139.259375,35.80416699910447],[139.259375,35.8020829991045]]]},"properties":{"MESHCODE":"5339526024","揺全壊":0.04531}},{"type":"Feature","id":23738,"geometry":{"type":"Polygon","coordinates":[[[139.265625,35.80624999910443],[139.26875,35.80624999910443],[139.26875,35.80833299910443],[139.265625,35.80833299910443],[139.265625,35.80624999910443]]]},"properties":{"MESHCODE":"5339526134","揺全壊":0.03144}},{"type":"Feature","id":23746,"geometry":{"type":"Polygon","coordinates":[[[139.278125,35.8020829991045],[139.28125,35.8020829991045],[139.28125,35.80416699910447],[139.278125,35.80416699910447],[139.278125,35.8020829991045]]]},"properties":{"MESHCODE":"5339526214","揺全壊":0.04762}},{"type":"Feature","id":23902,"geometry":{"type":"Polygon","coordinates":[[[139.253125,35.82291699910428],[139.25625,35.822916999104294],[139.25625,35.824999999104264],[139.253125,35.824999999104264],[139.253125,35.82291699910428]]]},"properties":{"MESHCODE":"5339528034","揺全壊":0.03785}},{"type":"Feature","id":23925,"geometry":{"type":"Polygon","coordinates":[[[139.275,35.81874999910432],[139.278125,35.81874999910432],[139.278125,35.820832999104304],[139.275,35.820832999104304],[139.275,35.81874999910432]]]},"properties":{"MESHCODE":"5339528213","揺全壊":0.04185}},{"type":"Feature","id":23940,"geometry":{"type":"Polygon","coordinates":[[[139.290625,35.81666699910435],[139.29375,35.81666699910435],[139.29375,35.81874999910432],[139.290625,35.81874999910432],[139.290625,35.81666699910435]]]},"properties":{"MESHCODE":"5339528312","揺全壊":0.03065}},{"type":"Feature","id":23941,"geometry":{"type":"Polygon","coordinates":[[[139.2875,35.81874999910432],[139.290625,35.81874999910432],[139.290625,35.820832999104304],[139.2875,35.8208329991043],[139.2875,35.81874999910432]]]},"properties":{"MESHCODE":"5339528313","揺全壊":0.03112}},{"type":"Feature","id":23948,"geometry":{"type":"Polygon","coordinates":[[[139.290625,35.820832999104304],[139.29375,35.820832999104304],[139.29375,35.82291699910428],[139.290625,35.82291699910428],[139.290625,35.820832999104304]]]},"properties":{"MESHCODE":"5339528332","揺全壊":0.0379}},{"type":"Feature","id":24005,"geometry":{"type":"Polygon","coordinates":[[[139.2625,35.83124999910419],[139.265625,35.83124999910419],[139.265625,35.83333299910416],[139.2625,35.83333299910416],[139.2625,35.83124999910419]]]},"properties":{"MESHCODE":"5339529133","揺全壊":0.04756}},{"type":"Feature","id":24029,"geometry":{"type":"Polygon","coordinates":[[[139.2875,35.82708299910423],[139.290625,35.82708299910423],[139.290625,35.82916699910422],[139.2875,35.82916699910422],[139.2875,35.82708299910423]]]},"properties":{"MESHCODE":"5339529313","揺全壊":0.03677}},{"type":"Feature","id":24111,"geometry":{"type":"Polygon","coordinates":[[[139.41875,35.75624999910496],[139.421875,35.75624999910496],[139.421875,35.75833299910495],[139.41875,35.75833299910495],[139.41875,35.75624999910496]]]},"properties":{"MESHCODE":"5339530343","揺全壊":0.04449}},{"type":"Feature","id":24140,"geometry":{"type":"Polygon","coordinates":[[[139.440625,35.75624999910497],[139.44375,35.75624999910496],[139.44375,35.75833299910495],[139.440625,35.75833299910495],[139.440625,35.75624999910497]]]},"properties":{"MESHCODE":"5339530534","揺全壊":0.04564}},{"type":"Feature","id":24246,"geometry":{"type":"Polygon","coordinates":[[[139.40625,35.76041699910492],[139.409375,35.76041699910492],[139.409375,35.762499999104904],[139.40625,35.762499999104904],[139.40625,35.76041699910492]]]},"properties":{"MESHCODE":"5339531223","揺全壊":0.04602}},{"type":"Feature","id":24258,"geometry":{"type":"Polygon","coordinates":[[[139.4125,35.76041699910492],[139.415625,35.76041699910492],[139.415625,35.762499999104904],[139.4125,35.762499999104904],[139.4125,35.76041699910492]]]},"properties":{"MESHCODE":"5339531313","揺全壊":0.03352}},{"type":"Feature","id":24291,"geometry":{"type":"Polygon","coordinates":[[[139.440625,35.76041699910492],[139.44375,35.76041699910492],[139.44375,35.762499999104904],[139.440625,35.762499999104904],[139.440625,35.76041699910492]]]},"properties":{"MESHCODE":"5339531514","揺全壊":0.04353}},{"type":"Feature","id":24366,"geometry":{"type":"Polygon","coordinates":[[[139.49375,35.76458299910489],[139.496875,35.76458299910489],[139.496875,35.76666699910486],[139.49375,35.766666999104864],[139.49375,35.76458299910489]]]},"properties":{"MESHCODE":"5339531943","揺全壊":0.03102}},{"type":"Feature","id":24406,"geometry":{"type":"Polygon","coordinates":[[[139.459375,35.768749999104834],[139.4625,35.768749999104834],[139.4625,35.770832999104826],[139.459375,35.770832999104826],[139.459375,35.768749999104834]]]},"properties":{"MESHCODE":"5339532624","揺全壊":0.04838}},{"type":"Feature","id":24447,"geometry":{"type":"Polygon","coordinates":[[[139.496875,35.76666699910486],[139.5,35.766666999104864],[139.5,35.768749999104834],[139.496875,35.768749999104834],[139.496875,35.76666699910486]]]},"properties":{"MESHCODE":"5339532922","揺全壊":0.03866}},{"type":"Feature","id":24895,"geometry":{"type":"Polygon","coordinates":[[[139.603125,35.770832999104826],[139.60625,35.770832999104826],[139.60625,35.7729169991048],[139.603125,35.7729169991048],[139.603125,35.770832999104826]]]},"properties":{"MESHCODE":"5339542832","揺全壊":0.04984}},{"type":"Feature","id":24961,"geometry":{"type":"Polygon","coordinates":[[[139.540625,35.779166999104746],[139.54375,35.779166999104746],[139.54375,35.78124999910471],[139.540625,35.78124999910471],[139.540625,35.779166999104746]]]},"properties":{"MESHCODE":"5339543332","揺全壊":0.04801}},{"type":"Feature","id":24978,"geometry":{"type":"Polygon","coordinates":[[[139.621875,35.779166999104746],[139.625,35.779166999104746],[139.625,35.78124999910471],[139.621875,35.78124999910471],[139.621875,35.779166999104746]]]},"properties":{"MESHCODE":"5339543942","揺全壊":0.03643}},{"type":"Feature","id":24991,"geometry":{"type":"Polygon","coordinates":[[[139.515625,35.78749999910465],[139.51875,35.78749999910465],[139.51875,35.789582999104624],[139.515625,35.789582999104624],[139.515625,35.78749999910465]]]},"properties":{"MESHCODE":"5339544132","揺全壊":0.04546}},{"type":"Feature","id":25052,"geometry":{"type":"Polygon","coordinates":[[[139.546875,35.79999999910451],[139.55,35.79999999910451],[139.55,35.8020829991045],[139.546875,35.802082999104506],[139.546875,35.79999999910451]]]},"properties":{"MESHCODE":"5339546322","揺全壊":0.04592}},{"type":"Feature","id":25069,"geometry":{"type":"Polygon","coordinates":[[[139.625,35.75416699910498],[139.628125,35.75416699910498],[139.628125,35.75624999910496],[139.625,35.75624999910496],[139.625,35.75416699910498]]]},"properties":{"MESHCODE":"5339550031","揺全壊":0.04315}},{"type":"Feature","id":25070,"geometry":{"type":"Polygon","coordinates":[[[139.628125,35.75416699910498],[139.63125,35.75416699910498],[139.63125,35.75624999910496],[139.628125,35.75624999910496],[139.628125,35.75416699910498]]]},"properties":{"MESHCODE":"5339550032","揺全壊":0.03832}},{"type":"Feature","id":25973,"geometry":{"type":"Polygon","coordinates":[[[139.765625,35.75624999910496],[139.76875,35.75624999910496],[139.76875,35.75833299910495],[139.765625,35.75833299910495],[139.765625,35.75624999910496]]]},"properties":{"MESHCODE":"5339560134","揺全壊":0.04045}},{"type":"Feature","id":25977,"geometry":{"type":"Polygon","coordinates":[[[139.771875,35.75624999910496],[139.775,35.75624999910496],[139.775,35.75833299910495],[139.771875,35.75833299910495],[139.771875,35.75624999910496]]]},"properties":{"MESHCODE":"5339560144","揺全壊":0.03576}},{"type":"Feature","id":26023,"geometry":{"type":"Polygon","coordinates":[[[139.809375,35.75416699910498],[139.8125,35.75416699910498],[139.8125,35.75624999910496],[139.809375,35.75624999910496],[139.809375,35.75416699910498]]]},"properties":{"MESHCODE":"5339560442","揺全壊":0.03543}},{"type":"Feature","id":26393,"geometry":{"type":"Polygon","coordinates":[[[139.846875,35.7729169991048],[139.85,35.7729169991048],[139.85,35.77499999910478],[139.846875,35.77499999910478],[139.846875,35.7729169991048]]]},"properties":{"MESHCODE":"5339562744","揺全壊":0.03004}},{"type":"Feature","id":26407,"geometry":{"type":"Polygon","coordinates":[[[139.859375,35.770832999104826],[139.8625,35.770832999104826],[139.8625,35.7729169991048],[139.859375,35.7729169991048],[139.859375,35.770832999104826]]]},"properties":{"MESHCODE":"5339562842","揺全壊":0.0406}},{"type":"Feature","id":26755,"geometry":{"type":"Polygon","coordinates":[[[139.76875,35.79374999910459],[139.771875,35.79374999910458],[139.771875,35.795832999104555],[139.76875,35.795832999104555],[139.76875,35.79374999910459]]]},"properties":{"MESHCODE":"5339565123","揺全壊":0.04887}},{"type":"Feature","id":26863,"geometry":{"type":"Polygon","coordinates":[[[139.8625,35.79374999910459],[139.865625,35.79374999910459],[139.865625,35.795832999104555],[139.8625,35.795832999104555],[139.8625,35.79374999910459]]]},"properties":{"MESHCODE":"5339565913","揺全壊":0.03507}},{"type":"Feature","id":26865,"geometry":{"type":"Polygon","coordinates":[[[139.86875,35.79166699910459],[139.871875,35.79166699910459],[139.871875,35.79374999910459],[139.86875,35.79374999910459],[139.86875,35.79166699910459]]]},"properties":{"MESHCODE":"5339565921","揺全壊":0.03129}},{"type":"Feature","id":26961,"geometry":{"type":"Polygon","coordinates":[[[139.834375,35.79999999910451],[139.8375,35.79999999910451],[139.8375,35.8020829991045],[139.834375,35.8020829991045],[139.834375,35.79999999910451]]]},"properties":{"MESHCODE":"5339566622","揺全壊":0.03409}},{"type":"Feature","id":26994,"geometry":{"type":"Polygon","coordinates":[[[139.8,35.80833299910443],[139.803125,35.808332999104444],[139.803125,35.81041699910441],[139.8,35.8104169991044],[139.8,35.80833299910443]]]},"properties":{"MESHCODE":"5339567411","揺全壊":0.03538}},{"type":"Feature","id":27002,"geometry":{"type":"Polygon","coordinates":[[[139.821875,35.80833299910443],[139.825,35.80833299910443],[139.825,35.8104169991044],[139.821875,35.8104169991044],[139.821875,35.80833299910443]]]},"properties":{"MESHCODE":"5339567522","揺全壊":0.03406}},{"type":"Feature","id":27005,"geometry":{"type":"Polygon","coordinates":[[[139.81875,35.81249999910439],[139.821875,35.81249999910439],[139.821875,35.81458299910436],[139.81875,35.81458299910436],[139.81875,35.81249999910439]]]},"properties":{"MESHCODE":"5339567541","揺全壊":0.04751}},{"type":"Feature","id":28350,"geometry":{"type":"Polygon","coordinates":[[[139.275,35.83333299910416],[139.278125,35.83333299910416],[139.278125,35.83541699910414],[139.275,35.83541699910414],[139.275,35.83333299910416]]]},"properties":{"MESHCODE":"5339620211","揺全壊":0.03301}}]}
\ No newline at end of file
diff --git a/app/src/layers/data/particles/toshin-destroyed_particles_1.json b/app/src/layers/data/particles/toshin-destroyed_particles_1.json
new file mode 100644
index 0000000..b480c3b
--- /dev/null
+++ b/app/src/layers/data/particles/toshin-destroyed_particles_1.json
@@ -0,0 +1 @@
+{"type":"FeatureCollection","name":"建物被害分布_都心南部","features":[{"type":"Feature","id":1392,"properties":{"MESHCODE":"5339255632","揺全壊":72.98731},"geometry":{"type":"Polygon","coordinates":[[[139.7031277000001,35.54583319900007],[139.706252704,35.54583319200009],[139.70625272000007,35.54791719000008],[139.70312771500005,35.54791719700006],[139.7031277000001,35.54583319900007]]]}},{"type":"Feature","id":1646,"properties":{"MESHCODE":"5339258624","揺全壊":69.32426},"geometry":{"type":"Polygon","coordinates":[[[139.70937785600006,35.568750169000054],[139.71250286200006,35.56875016200007],[139.71250287200007,35.57083316000006],[139.70937786700006,35.570833168000036],[139.70937785600006,35.568750169000054]]]}},{"type":"Feature","id":1652,"properties":{"MESHCODE":"5339258642","揺全壊":60.79537},"geometry":{"type":"Polygon","coordinates":[[[139.70937786700006,35.570833168000036],[139.71250287200007,35.57083316000006],[139.71250288300007,35.57291715800005],[139.70937787900004,35.572917165000035],[139.70937786700006,35.570833168000036]]]}},{"type":"Feature","id":1653,"properties":{"MESHCODE":"5339258643","揺全壊":75.78964},"geometry":{"type":"Polygon","coordinates":[[[139.70625287300004,35.572917173000064],[139.70937787900004,35.572917165000035],[139.70937788900005,35.575000163000084],[139.70625288500003,35.575000171000056],[139.70625287300004,35.572917173000064]]]}},{"type":"Feature","id":1663,"properties":{"MESHCODE":"5339258731","揺全壊":87.25395},"geometry":{"type":"Polygon","coordinates":[[[139.71250287200007,35.57083316000006],[139.71562787800008,35.570833152000034],[139.71562788800009,35.57291715000008],[139.71250288300007,35.57291715800005],[139.71250287200007,35.57083316000006]]]}},{"type":"Feature","id":1743,"properties":{"MESHCODE":"5339259611","揺全壊":61.33857},"geometry":{"type":"Polygon","coordinates":[[[139.700002875,35.57500018600007],[139.70312788,35.575000179000085],[139.70312789000002,35.57708317600009],[139.700002884,35.57708318400006],[139.700002875,35.57500018600007]]]}},{"type":"Feature","id":6363,"properties":{"MESHCODE":"5339351744","揺全壊":78.55869},"geometry":{"type":"Polygon","coordinates":[[[139.7218780290001,35.59791711300005],[139.7250030360001,35.59791710500008],[139.7250030470001,35.60000010300007],[139.7218780390001,35.60000011100004],[139.7218780290001,35.59791711300005]]]}},{"type":"Feature","id":6505,"properties":{"MESHCODE":"5339352723","揺全壊":83.27643},"geometry":{"type":"Polygon","coordinates":[[[139.718753042,35.602083115000084],[139.7218780500001,35.602083108000045],[139.72187806,35.604167106000034],[139.718753052,35.604167113000074],[139.718753042,35.602083115000084]]]}},{"type":"Feature","id":6509,"properties":{"MESHCODE":"5339352733","揺全壊":60.19474},"geometry":{"type":"Polygon","coordinates":[[[139.71250304600005,35.60625012500009],[139.71562805400004,35.60625011800005],[139.71562806400004,35.60833311500005],[139.71250305600006,35.60833312200009],[139.71250304600005,35.60625012500009]]]}},{"type":"Feature","id":6659,"properties":{"MESHCODE":"5339353711","揺全壊":60.74585},"geometry":{"type":"Polygon","coordinates":[[[139.71250305600006,35.60833312200009],[139.71562806400004,35.60833311500005],[139.71562807300006,35.61041711300004],[139.71250306500008,35.61041712100007],[139.71250305600006,35.60833312200009]]]}},{"type":"Feature","id":6788,"properties":{"MESHCODE":"5339354512","揺全壊":81.35769},"geometry":{"type":"Polygon","coordinates":[[[139.690628026,35.616667163000045],[139.6937530360001,35.61666715500007],[139.693753044,35.618750153000065],[139.69062803500003,35.61875016000005],[139.690628026,35.616667163000045]]]}},{"type":"Feature","id":6791,"properties":{"MESHCODE":"5339354521","揺全壊":69.56832},"geometry":{"type":"Polygon","coordinates":[[[139.6937530360001,35.61666715500007],[139.69687804600005,35.61666714900008],[139.69687805500007,35.61875014700007],[139.693753044,35.618750153000065],[139.6937530360001,35.61666715500007]]]}},{"type":"Feature","id":8567,"properties":{"MESHCODE":"5339369214","揺全壊":69.41703},"geometry":{"type":"Polygon","coordinates":[[[139.77812858000004,35.66041693300008],[139.7812535930001,35.660416927000085],[139.78125360700005,35.662499926000066],[139.778128595,35.66249993100007],[139.77812858000004,35.66041693300008]]]}},{"type":"Feature","id":8573,"properties":{"MESHCODE":"5339369232","揺全壊":64.25626},"geometry":{"type":"Polygon","coordinates":[[[139.778128595,35.66249993100007],[139.78125360700005,35.662499926000066],[139.781253622,35.66458292500005],[139.77812861000007,35.66458293000005],[139.778128595,35.66249993100007]]]}},{"type":"Feature","id":17445,"properties":{"MESHCODE":"5339458934","揺全壊":60.74348},"geometry":{"type":"Polygon","coordinates":[[[139.74062905900007,35.73958290100006],[139.74375406600006,35.73958290000007],[139.743754083,35.74166689700007],[139.740629076,35.74166689800006],[139.74062905900007,35.73958290100006]]]}},{"type":"Feature","id":17594,"properties":{"MESHCODE":"5339459911","揺全壊":82.35827},"geometry":{"type":"Polygon","coordinates":[[[139.737504069,35.74166690000004],[139.740629076,35.74166689800006],[139.74062909300005,35.743749896000054],[139.73750408600006,35.74374989700004],[139.737504069,35.74166690000004]]]}},{"type":"Feature","id":17717,"properties":{"MESHCODE":"5339460634","揺全壊":60.36737},"geometry":{"type":"Polygon","coordinates":[[[139.828128869,35.67291684800006],[139.83125388200006,35.67291684300005],[139.831253897,35.67499984300008],[139.82812888500007,35.674999848000084],[139.828128869,35.67291684800006]]]}},{"type":"Feature","id":17842,"properties":{"MESHCODE":"5339461431","揺全壊":73.31576},"geometry":{"type":"Polygon","coordinates":[[[139.8000038020001,35.679166889000044],[139.80312881400005,35.67916688400004],[139.803128829,35.68124988300008],[139.80000381600007,35.68124988800008],[139.8000038020001,35.679166889000044]]]}},{"type":"Feature","id":17858,"properties":{"MESHCODE":"5339461531","揺全壊":97.40962},"geometry":{"type":"Polygon","coordinates":[[[139.81250385200008,35.679166871000064],[139.81562886300003,35.67916686600006],[139.8156288780001,35.68124986500004],[139.81250386600004,35.681249870000045],[139.81250385200008,35.679166871000064]]]}},{"type":"Feature","id":17859,"properties":{"MESHCODE":"5339461532","揺全壊":75.30307},"geometry":{"type":"Polygon","coordinates":[[[139.81562886300003,35.67916686600006],[139.81875387600007,35.679166861000056],[139.81875389000004,35.68124986000004],[139.8156288780001,35.68124986500004],[139.81562886300003,35.67916686600006]]]}},{"type":"Feature","id":17860,"properties":{"MESHCODE":"5339461533","揺全壊":94.20799},"geometry":{"type":"Polygon","coordinates":[[[139.81250386600004,35.681249870000045],[139.8156288780001,35.68124986500004],[139.81562889200006,35.68333286500007],[139.81250388,35.68333287000007],[139.81250386600004,35.681249870000045]]]}},{"type":"Feature","id":17861,"properties":{"MESHCODE":"5339461534","揺全壊":93.97558},"geometry":{"type":"Polygon","coordinates":[[[139.8156288780001,35.68124986500004],[139.81875389000004,35.68124986000004],[139.818753905,35.683332859000075],[139.81562889200006,35.68333286500007],[139.8156288780001,35.68124986500004]]]}},{"type":"Feature","id":17875,"properties":{"MESHCODE":"5339461632","揺全壊":155.17001},"geometry":{"type":"Polygon","coordinates":[[[139.828128912,35.67916684700009],[139.83125392500006,35.67916684100004],[139.83125393900002,35.68124984100007],[139.82812892700008,35.68124984600007],[139.828128912,35.67916684700009]]]}},{"type":"Feature","id":17877,"properties":{"MESHCODE":"5339461634","揺全壊":162.91039},"geometry":{"type":"Polygon","coordinates":[[[139.82812892700008,35.68124984600007],[139.83125393900002,35.68124984100007],[139.8312539530001,35.68333284000005],[139.82812894000006,35.68333284500005],[139.82812892700008,35.68124984600007]]]}},{"type":"Feature","id":17881,"properties":{"MESHCODE":"5339461644","揺全壊":140.77122},"geometry":{"type":"Polygon","coordinates":[[[139.83437895200007,35.68124983600006],[139.837503964,35.68124983100006],[139.8375039780001,35.68333283000004],[139.83437896500004,35.683332835000044],[139.83437895200007,35.68124983600006]]]}},{"type":"Feature","id":18037,"properties":{"MESHCODE":"5339462634","揺全壊":82.41067},"geometry":{"type":"Polygon","coordinates":[[[139.82812898300006,35.689582844000086],[139.8312539960001,35.68958283900008],[139.83125400900008,35.69166683900005],[139.828128998,35.691666843000064],[139.82812898300006,35.689582844000086]]]}},{"type":"Feature","id":18038,"properties":{"MESHCODE":"5339462641","揺全壊":94.1408},"geometry":{"type":"Polygon","coordinates":[[[139.83125398100003,35.687499840000044],[139.8343789930001,35.68749983500004],[139.83437900700005,35.68958283500007],[139.8312539960001,35.68958283900008],[139.83125398100003,35.687499840000044]]]}},{"type":"Feature","id":18051,"properties":{"MESHCODE":"5339462732","揺全壊":94.80818},"geometry":{"type":"Polygon","coordinates":[[[139.84062901800007,35.68749982600008],[139.843754031,35.687499821000074],[139.84375404500008,35.689582821000045],[139.84062903200004,35.68958282500006],[139.84062901800007,35.68749982600008]]]}},{"type":"Feature","id":18197,"properties":{"MESHCODE":"5339463634","揺全壊":73.35222},"geometry":{"type":"Polygon","coordinates":[[[139.82812903700005,35.69791684200004],[139.8312540500001,35.69791683800008],[139.83125406200008,35.69999983800005],[139.82812905100002,35.69999984200007],[139.82812903700005,35.69791684200004]]]}},{"type":"Feature","id":18322,"properties":{"MESHCODE":"5339464431","揺全壊":64.02206},"geometry":{"type":"Polygon","coordinates":[[[139.8000039750001,35.70416687800008],[139.80312898600005,35.704166874000066],[139.803129,35.70624987300005],[139.80000398900006,35.70624987600007],[139.8000039750001,35.70416687800008]]]}},{"type":"Feature","id":18337,"properties":{"MESHCODE":"5339464524","揺全壊":91.2017},"geometry":{"type":"Polygon","coordinates":[[[139.82187904,35.70208285100006],[139.82500405200005,35.70208284600005],[139.82500406500003,35.70416684600008],[139.82187905400008,35.704166850000036],[139.82187904,35.70208285100006]]]}},{"type":"Feature","id":18342,"properties":{"MESHCODE":"5339464541","揺全壊":81.88555},"geometry":{"type":"Polygon","coordinates":[[[139.81875404200002,35.70416685400005],[139.82187905400008,35.704166850000036],[139.82187906700005,35.70624984900007],[139.8187540560001,35.70624985400008],[139.81875404200002,35.70416685400005]]]}},{"type":"Feature","id":18343,"properties":{"MESHCODE":"5339464542","揺全壊":62.94138},"geometry":{"type":"Polygon","coordinates":[[[139.82187905400008,35.704166850000036],[139.82500406500003,35.70416684600008],[139.825004079,35.70624984500006],[139.82187906700005,35.70624984900007],[139.82187905400008,35.704166850000036]]]}},{"type":"Feature","id":18367,"properties":{"MESHCODE":"5339464722","揺全壊":72.63881},"geometry":{"type":"Polygon","coordinates":[[[139.84687912100003,35.69999981500007],[139.85000413400007,35.699999811000055],[139.85000414400008,35.70208281100008],[139.84687913300002,35.70208281500004],[139.84687912100003,35.69999981500007]]]}},{"type":"Feature","id":18376,"properties":{"MESHCODE":"5339464743","揺全壊":77.85404},"geometry":{"type":"Polygon","coordinates":[[[139.84375414600004,35.70624981900005],[139.846879156,35.706249815000035],[139.846879167,35.70833281500006],[139.84375415700003,35.70833281900008],[139.84375414600004,35.70624981900005]]]}},{"type":"Feature","id":18493,"properties":{"MESHCODE":"5339465514","揺全壊":75.47447},"geometry":{"type":"Polygon","coordinates":[[[139.8156290720001,35.71041685600005],[139.81875408200005,35.71041685200004],[139.81875409500003,35.712499852000064],[139.81562908400008,35.71249985500009],[139.8156290720001,35.71041685600005]]]}},{"type":"Feature","id":18496,"properties":{"MESHCODE":"5339465523","揺全壊":62.01357},"geometry":{"type":"Polygon","coordinates":[[[139.81875408200005,35.71041685200004],[139.821879093,35.71041684800008],[139.8218791060001,35.71249984700006],[139.81875409500003,35.712499852000064],[139.81875408200005,35.71041685200004]]]}},{"type":"Feature","id":18498,"properties":{"MESHCODE":"5339465531","揺全壊":68.16807},"geometry":{"type":"Polygon","coordinates":[[[139.812504074,35.71249986000004],[139.81562908400008,35.71249985500009],[139.81562909800004,35.71458285500006],[139.8125040870001,35.714582859000075],[139.812504074,35.71249986000004]]]}},{"type":"Feature","id":18499,"properties":{"MESHCODE":"5339465532","揺全壊":97.7488},"geometry":{"type":"Polygon","coordinates":[[[139.81562908400008,35.71249985500009],[139.81875409500003,35.712499852000064],[139.818754108,35.714582851000046],[139.81562909800004,35.71458285500006],[139.81562908400008,35.71249985500009]]]}},{"type":"Feature","id":18500,"properties":{"MESHCODE":"5339465533","揺全壊":87.19804},"geometry":{"type":"Polygon","coordinates":[[[139.8125040870001,35.714582859000075],[139.81562909800004,35.71458285500006],[139.81562911000003,35.71666685400004],[139.81250410000007,35.71666685900004],[139.8125040870001,35.714582859000075]]]}},{"type":"Feature","id":18501,"properties":{"MESHCODE":"5339465534","揺全壊":64.53299},"geometry":{"type":"Polygon","coordinates":[[[139.81562909800004,35.71458285500006],[139.818754108,35.714582851000046],[139.8187541210001,35.71666685000008],[139.81562911000003,35.71666685400004],[139.81562909800004,35.71458285500006]]]}},{"type":"Feature","id":18502,"properties":{"MESHCODE":"5339465541","揺全壊":95.84481},"geometry":{"type":"Polygon","coordinates":[[[139.81875409500003,35.712499852000064],[139.8218791060001,35.71249984700006],[139.82187911800008,35.71458284700009],[139.818754108,35.714582851000046],[139.81875409500003,35.712499852000064]]]}},{"type":"Feature","id":18503,"properties":{"MESHCODE":"5339465542","揺全壊":140.15909},"geometry":{"type":"Polygon","coordinates":[[[139.8218791060001,35.71249984700006],[139.82500411600006,35.712499843000046],[139.82500412900004,35.714582842000084],[139.82187911800008,35.71458284700009],[139.8218791060001,35.71249984700006]]]}},{"type":"Feature","id":18505,"properties":{"MESHCODE":"5339465544","揺全壊":139.17184},"geometry":{"type":"Polygon","coordinates":[[[139.82187911800008,35.71458284700009],[139.82500412900004,35.714582842000084],[139.825004142,35.71666684200005],[139.82187913100006,35.71666684600007],[139.82187911800008,35.71458284700009]]]}},{"type":"Feature","id":18516,"properties":{"MESHCODE":"5339465633","揺全壊":63.42616},"geometry":{"type":"Polygon","coordinates":[[[139.82500412900004,35.714582842000084],[139.8281291400001,35.71458283800007],[139.8281291520001,35.71666683700005],[139.825004142,35.71666684200005],[139.82500412900004,35.714582842000084]]]}},{"type":"Feature","id":18543,"properties":{"MESHCODE":"5339465822","揺全壊":77.8112},"geometry":{"type":"Polygon","coordinates":[[[139.85937920900005,35.70833279700008],[139.86250422,35.70833279200008],[139.86250422900002,35.71041679100006],[139.85937922000005,35.71041679600006],[139.85937920900005,35.70833279700008]]]}},{"type":"Feature","id":18545,"properties":{"MESHCODE":"5339465824","揺全壊":85.32235},"geometry":{"type":"Polygon","coordinates":[[[139.85937922000005,35.71041679600006],[139.86250422900002,35.71041679100006],[139.86250424000002,35.712499792000074],[139.85937923000006,35.71249979600009],[139.85937922000005,35.71041679600006]]]}},{"type":"Feature","id":18550,"properties":{"MESHCODE":"5339465841","揺全壊":62.89127},"geometry":{"type":"Polygon","coordinates":[[[139.85625422100009,35.712499801000035],[139.85937923000006,35.71249979600009],[139.85937924100006,35.71458279600006],[139.85625423200008,35.71458280100006],[139.85625422100009,35.712499801000035]]]}},{"type":"Feature","id":18554,"properties":{"MESHCODE":"5339465911","揺全壊":75.22833},"geometry":{"type":"Polygon","coordinates":[[[139.86250422,35.70833279200008],[139.8656292280001,35.708332787000074],[139.865629238,35.71041678800009],[139.86250422900002,35.71041679100006],[139.86250422,35.70833279200008]]]}},{"type":"Feature","id":18624,"properties":{"MESHCODE":"5339466323","揺全壊":66.80452},"geometry":{"type":"Polygon","coordinates":[[[139.79375405200005,35.71874987800004],[139.79687906200002,35.71874987500007],[139.7968790760001,35.72083287400005],[139.79375406600002,35.72083287700008],[139.79375405200005,35.71874987800004]]]}},{"type":"Feature","id":18629,"properties":{"MESHCODE":"5339466334","揺全壊":69.05628},"geometry":{"type":"Polygon","coordinates":[[[139.790629071,35.72291687900008],[139.7937540800001,35.722916876000056],[139.79375409500005,35.72499987500004],[139.7906290850001,35.72499987800006],[139.790629071,35.72291687900008]]]}},{"type":"Feature","id":18630,"properties":{"MESHCODE":"5339466341","揺全壊":112.84843},"geometry":{"type":"Polygon","coordinates":[[[139.79375406600002,35.72083287700008],[139.7968790760001,35.72083287400005],[139.79687909000006,35.72291687300009],[139.7937540800001,35.722916876000056],[139.79375406600002,35.72083287700008]]]}},{"type":"Feature","id":18632,"properties":{"MESHCODE":"5339466343","揺全壊":68.16074},"geometry":{"type":"Polygon","coordinates":[[[139.7937540800001,35.722916876000056],[139.79687909000006,35.72291687300009],[139.79687910400003,35.72499987200007],[139.79375409500005,35.72499987500004],[139.7937540800001,35.722916876000056]]]}},{"type":"Feature","id":18650,"properties":{"MESHCODE":"5339466511","揺全壊":84.00713},"geometry":{"type":"Polygon","coordinates":[[[139.81250410000007,35.71666685900004],[139.81562911000003,35.71666685400004],[139.815629124,35.71874985300008],[139.81250411300005,35.71874985800008],[139.81250410000007,35.71666685900004]]]}},{"type":"Feature","id":18652,"properties":{"MESHCODE":"5339466513","揺全壊":105.20986},"geometry":{"type":"Polygon","coordinates":[[[139.81250411300005,35.71874985800008],[139.815629124,35.71874985300008],[139.8156291360001,35.72083285300005],[139.812504127,35.72083285700006],[139.81250411300005,35.71874985800008]]]}},{"type":"Feature","id":18653,"properties":{"MESHCODE":"5339466514","揺全壊":68.97752},"geometry":{"type":"Polygon","coordinates":[[[139.815629124,35.71874985300008],[139.81875413400007,35.71874985000005],[139.81875414600006,35.72083284900009],[139.8156291360001,35.72083285300005],[139.815629124,35.71874985300008]]]}},{"type":"Feature","id":18658,"properties":{"MESHCODE":"5339466531","揺全壊":74.31949},"geometry":{"type":"Polygon","coordinates":[[[139.812504127,35.72083285700006],[139.8156291360001,35.72083285300005],[139.81562915000006,35.72291685200008],[139.8125041400001,35.72291685600004],[139.812504127,35.72083285700006]]]}},{"type":"Feature","id":18663,"properties":{"MESHCODE":"5339466542","揺全壊":67.74956},"geometry":{"type":"Polygon","coordinates":[[[139.821879157,35.720832845000075],[139.8250041670001,35.72083284000007],[139.82500417900008,35.72291684000004],[139.821879169,35.72291684400005],[139.821879157,35.720832845000075]]]}},{"type":"Feature","id":18666,"properties":{"MESHCODE":"5339466611","揺全壊":63.44821},"geometry":{"type":"Polygon","coordinates":[[[139.825004142,35.71666684200005],[139.8281291520001,35.71666683700005],[139.82812916500006,35.718749837000075],[139.825004154,35.71874984100009],[139.825004142,35.71666684200005]]]}},{"type":"Feature","id":18782,"properties":{"MESHCODE":"5339467321","揺全壊":90.61548},"geometry":{"type":"Polygon","coordinates":[[[139.79375409500005,35.72499987500004],[139.79687910400003,35.72499987200007],[139.796879118,35.72708287200004],[139.79375410800003,35.727082874000075],[139.79375409500005,35.72499987500004]]]}},{"type":"Feature","id":18783,"properties":{"MESHCODE":"5339467322","揺全壊":116.4598},"geometry":{"type":"Polygon","coordinates":[[[139.79687910400003,35.72499987200007],[139.8000041140001,35.724999869000044],[139.80000412700008,35.72708286900007],[139.796879118,35.72708287200004],[139.79687910400003,35.72499987200007]]]}},{"type":"Feature","id":18785,"properties":{"MESHCODE":"5339467324","揺全壊":69.84765},"geometry":{"type":"Polygon","coordinates":[[[139.796879118,35.72708287200004],[139.80000412700008,35.72708286900007],[139.80000414000006,35.72916686800005],[139.79687913100008,35.729166871000075],[139.796879118,35.72708287200004]]]}},{"type":"Feature","id":18790,"properties":{"MESHCODE":"5339467341","揺全壊":61.33821},"geometry":{"type":"Polygon","coordinates":[[[139.793754122,35.72916687400004],[139.79687913100008,35.729166871000075],[139.79687914400006,35.731249870000056],[139.79375413500009,35.73124987300008],[139.793754122,35.72916687400004]]]}},{"type":"Feature","id":18792,"properties":{"MESHCODE":"5339467343","揺全壊":84.8014},"geometry":{"type":"Polygon","coordinates":[[[139.79375413500009,35.73124987300008],[139.79687914400006,35.731249870000056],[139.79687915700003,35.73333287000008],[139.79375414900005,35.73333287200006],[139.79375413500009,35.73124987300008]]]}},{"type":"Feature","id":18795,"properties":{"MESHCODE":"5339467412","揺全壊":78.03397},"geometry":{"type":"Polygon","coordinates":[[[139.80312912300008,35.724999866000076],[139.80625413300004,35.72499986300005],[139.80625414600001,35.72708286200009],[139.80312913700004,35.72708286500006],[139.80312912300008,35.724999866000076]]]}},{"type":"Feature","id":18814,"properties":{"MESHCODE":"5339467521","揺全壊":68.12006},"geometry":{"type":"Polygon","coordinates":[[[139.818754172,35.72499984700005],[139.8218791820001,35.724999843000035],[139.82187919500007,35.72708284300006],[139.8187541850001,35.72708284700008],[139.818754172,35.72499984700005]]]}},{"type":"Feature","id":18816,"properties":{"MESHCODE":"5339467523","揺全壊":76.8192},"geometry":{"type":"Polygon","coordinates":[[[139.8187541850001,35.72708284700008],[139.82187919500007,35.72708284300006],[139.82187920700005,35.72916684200004],[139.81875419800008,35.729166847000045],[139.8187541850001,35.72708284700008]]]}},{"type":"Feature","id":18819,"properties":{"MESHCODE":"5339467532","揺全壊":64.07232},"geometry":{"type":"Polygon","coordinates":[[[139.815629188,35.72916685000007],[139.81875419800008,35.729166847000045],[139.81875421100005,35.73124984600008],[139.81562920200008,35.73124985000004],[139.815629188,35.72916685000007]]]}},{"type":"Feature","id":18822,"properties":{"MESHCODE":"5339467541","揺全壊":69.56545},"geometry":{"type":"Polygon","coordinates":[[[139.81875419800008,35.729166847000045],[139.82187920700005,35.72916684200004],[139.82187922000003,35.73124984300006],[139.81875421100005,35.73124984600008],[139.81875419800008,35.729166847000045]]]}},{"type":"Feature","id":18923,"properties":{"MESHCODE":"5339468212","揺全壊":142.56827},"geometry":{"type":"Polygon","coordinates":[[[139.77812910600005,35.73333288400005],[139.78125411400003,35.73333288200007],[139.781254128,35.73541688100005],[139.77812912000002,35.735416883000084],[139.77812910600005,35.73333288400005]]]}},{"type":"Feature","id":18925,"properties":{"MESHCODE":"5339468214","揺全壊":78.81047},"geometry":{"type":"Polygon","coordinates":[[[139.77812912000002,35.735416883000084],[139.781254128,35.73541688100005],[139.78125414400006,35.73749988000009],[139.77812913500009,35.737499882000066],[139.77812912000002,35.735416883000084]]]}},{"type":"Feature","id":18926,"properties":{"MESHCODE":"5339468221","揺全壊":65.51258},"geometry":{"type":"Polygon","coordinates":[[[139.78125411400003,35.73333288200007],[139.78437912200002,35.733332880000034],[139.7843791370001,35.73541687800008],[139.781254128,35.73541688100005],[139.78125411400003,35.73333288200007]]]}},{"type":"Feature","id":18928,"properties":{"MESHCODE":"5339468223","揺全壊":78.13825},"geometry":{"type":"Polygon","coordinates":[[[139.781254128,35.73541688100005],[139.7843791370001,35.73541687800008],[139.78437915200004,35.73749987700006],[139.78125414400006,35.73749988000009],[139.781254128,35.73541688100005]]]}},{"type":"Feature","id":18929,"properties":{"MESHCODE":"5339468224","揺全壊":63.27737},"geometry":{"type":"Polygon","coordinates":[[[139.7843791370001,35.73541687800008],[139.78750414500007,35.735416876000045],[139.78750416000003,35.73749987500008],[139.78437915200004,35.73749987700006],[139.7843791370001,35.73541687800008]]]}},{"type":"Feature","id":18931,"properties":{"MESHCODE":"5339468232","揺全壊":105.76848},"geometry":{"type":"Polygon","coordinates":[[[139.77812913500009,35.737499882000066],[139.78125414400006,35.73749988000009],[139.78125415800002,35.73958287900007],[139.77812914900005,35.73958288100005],[139.77812913500009,35.737499882000066]]]}},{"type":"Feature","id":18932,"properties":{"MESHCODE":"5339468233","揺全壊":97.92806},"geometry":{"type":"Polygon","coordinates":[[[139.77500414100007,35.73958288400007],[139.77812914900005,35.73958288100005],[139.778129164,35.74166688100007],[139.77500415500003,35.74166688300005],[139.77500414100007,35.73958288400007]]]}},{"type":"Feature","id":18933,"properties":{"MESHCODE":"5339468234","揺全壊":118.39917},"geometry":{"type":"Polygon","coordinates":[[[139.77812914900005,35.73958288100005],[139.78125415800002,35.73958287900007],[139.7812541720001,35.741666878000046],[139.778129164,35.74166688100007],[139.77812914900005,35.73958288100005]]]}},{"type":"Feature","id":18934,"properties":{"MESHCODE":"5339468241","揺全壊":124.04962},"geometry":{"type":"Polygon","coordinates":[[[139.78125414400006,35.73749988000009],[139.78437915200004,35.73749987700006],[139.784379166,35.73958287600004],[139.78125415800002,35.73958287900007],[139.78125414400006,35.73749988000009]]]}},{"type":"Feature","id":18936,"properties":{"MESHCODE":"5339468243","揺全壊":64.19557},"geometry":{"type":"Polygon","coordinates":[[[139.78125415800002,35.73958287900007],[139.784379166,35.73958287600004],[139.7843791800001,35.74166687500008],[139.7812541720001,35.741666878000046],[139.78125415800002,35.73958287900007]]]}},{"type":"Feature","id":18938,"properties":{"MESHCODE":"5339468311","揺全壊":71.37798},"geometry":{"type":"Polygon","coordinates":[[[139.7875041310001,35.733332878000056],[139.79062914000008,35.73333287500009],[139.79062915400004,35.735416874000066],[139.78750414500007,35.735416876000045],[139.7875041310001,35.733332878000056]]]}},{"type":"Feature","id":18939,"properties":{"MESHCODE":"5339468312","揺全壊":60.85917},"geometry":{"type":"Polygon","coordinates":[[[139.79062914000008,35.73333287500009],[139.79375414900005,35.73333287200006],[139.79375416200003,35.73541687100004],[139.79062915400004,35.735416874000066],[139.79062914000008,35.73333287500009]]]}},{"type":"Feature","id":18940,"properties":{"MESHCODE":"5339468313","揺全壊":118.06477},"geometry":{"type":"Polygon","coordinates":[[[139.78750414500007,35.735416876000045],[139.79062915400004,35.735416874000066],[139.790629168,35.73749987200006],[139.78750416000003,35.73749987500008],[139.78750414500007,35.735416876000045]]]}},{"type":"Feature","id":19064,"properties":{"MESHCODE":"5339469043","揺全壊":62.12551},"geometry":{"type":"Polygon","coordinates":[[[139.75625415900004,35.74791688600004],[139.75937916700002,35.74791688600004],[139.7593791820001,35.74999988400009],[139.7562541750001,35.74999988500008],[139.75625415900004,35.74791688600004]]]}},{"type":"Feature","id":19065,"properties":{"MESHCODE":"5339469044","揺全壊":104.93591},"geometry":{"type":"Polygon","coordinates":[[[139.75937916700002,35.74791688600004],[139.76250417400001,35.74791688500005],[139.76250418900008,35.749999883000044],[139.7593791820001,35.74999988400009],[139.75937916700002,35.74791688600004]]]}},{"type":"Feature","id":19076,"properties":{"MESHCODE":"5339469133","揺全壊":67.17879},"geometry":{"type":"Polygon","coordinates":[[[139.76250417400001,35.74791688500005],[139.76562918000002,35.74791688400006],[139.7656291950001,35.749999882000054],[139.76250418900008,35.749999883000044],[139.76250417400001,35.74791688500005]]]}},{"type":"Feature","id":19077,"properties":{"MESHCODE":"5339469134","揺全壊":63.53002},"geometry":{"type":"Polygon","coordinates":[[[139.76562918000002,35.74791688400006],[139.76875418600002,35.747916882000084],[139.7687542010001,35.749999880000075],[139.7656291950001,35.749999882000054],[139.76562918000002,35.74791688400006]]]}},{"type":"Feature","id":19079,"properties":{"MESHCODE":"5339469142","揺全壊":87.77872},"geometry":{"type":"Polygon","coordinates":[[[139.77187917800006,35.74583288200006],[139.77500418500006,35.74583288100007],[139.77500419900002,35.74791687900006],[139.77187919300002,35.74791688100004],[139.77187917800006,35.74583288200006]]]}},{"type":"Feature","id":19080,"properties":{"MESHCODE":"5339469143","揺全壊":66.52368},"geometry":{"type":"Polygon","coordinates":[[[139.76875418600002,35.747916882000084],[139.77187919300002,35.74791688100004],[139.7718792080001,35.749999879000086],[139.7687542010001,35.749999880000075],[139.76875418600002,35.747916882000084]]]}},{"type":"Feature","id":19081,"properties":{"MESHCODE":"5339469144","揺全壊":77.27661},"geometry":{"type":"Polygon","coordinates":[[[139.77187919300002,35.74791688100004],[139.77500419900002,35.74791687900006],[139.7750042140001,35.74999987800004],[139.7718792080001,35.749999879000086],[139.77187919300002,35.74791688100004]]]}},{"type":"Feature","id":19082,"properties":{"MESHCODE":"5339469211","揺全壊":145.65195},"geometry":{"type":"Polygon","coordinates":[[[139.77500415500003,35.74166688300005],[139.778129164,35.74166688100007],[139.77812917800009,35.74374988000005],[139.7750041700001,35.74374988200009],[139.77500415500003,35.74166688300005]]]}},{"type":"Feature","id":19083,"properties":{"MESHCODE":"5339469212","揺全壊":88.50084},"geometry":{"type":"Polygon","coordinates":[[[139.778129164,35.74166688100007],[139.7812541720001,35.741666878000046],[139.78125418600007,35.743749877000084],[139.77812917800009,35.74374988000005],[139.778129164,35.74166688100007]]]}},{"type":"Feature","id":19084,"properties":{"MESHCODE":"5339469213","揺全壊":89.19823},"geometry":{"type":"Polygon","coordinates":[[[139.7750041700001,35.74374988200009],[139.77812917800009,35.74374988000005],[139.77812919200005,35.745832878000044],[139.77500418500006,35.74583288100007],[139.7750041700001,35.74374988200009]]]}},{"type":"Feature","id":19085,"properties":{"MESHCODE":"5339469214","揺全壊":109.20519},"geometry":{"type":"Polygon","coordinates":[[[139.77812917800009,35.74374988000005],[139.78125418600007,35.743749877000084],[139.78125420000003,35.745832875000076],[139.77812919200005,35.745832878000044],[139.77812917800009,35.74374988000005]]]}},{"type":"Feature","id":19088,"properties":{"MESHCODE":"5339469223","揺全壊":67.58643},"geometry":{"type":"Polygon","coordinates":[[[139.78125418600007,35.743749877000084],[139.78437919400005,35.74374987400006],[139.78437920700003,35.74583287300004],[139.78125420000003,35.745832875000076],[139.78125418600007,35.743749877000084]]]}},{"type":"Feature","id":19089,"properties":{"MESHCODE":"5339469224","揺全壊":65.37667},"geometry":{"type":"Polygon","coordinates":[[[139.78437919400005,35.74374987400006],[139.78750420200004,35.74374987200008],[139.787504215,35.74583287100006],[139.78437920700003,35.74583287300004],[139.78437919400005,35.74374987400006]]]}},{"type":"Feature","id":19090,"properties":{"MESHCODE":"5339469231","揺全壊":152.65948},"geometry":{"type":"Polygon","coordinates":[[[139.77500418500006,35.74583288100007],[139.77812919200005,35.745832878000044],[139.77812920600002,35.74791687700008],[139.77500419900002,35.74791687900006],[139.77500418500006,35.74583288100007]]]}},{"type":"Feature","id":19091,"properties":{"MESHCODE":"5339469232","揺全壊":132.49322},"geometry":{"type":"Polygon","coordinates":[[[139.77812919200005,35.745832878000044],[139.78125420000003,35.745832875000076],[139.781254214,35.747916875000044],[139.77812920600002,35.74791687700008],[139.77812919200005,35.745832878000044]]]}},{"type":"Feature","id":19092,"properties":{"MESHCODE":"5339469233","揺全壊":83.72827},"geometry":{"type":"Polygon","coordinates":[[[139.77500419900002,35.74791687900006],[139.77812920600002,35.74791687700008],[139.77812922100009,35.74999987500007],[139.7750042140001,35.74999987800004],[139.77500419900002,35.74791687900006]]]}},{"type":"Feature","id":19093,"properties":{"MESHCODE":"5339469234","揺全壊":100.22},"geometry":{"type":"Polygon","coordinates":[[[139.77812920600002,35.74791687700008],[139.781254214,35.747916875000044],[139.78125422800008,35.74999987400008],[139.77812922100009,35.74999987500007],[139.77812920600002,35.74791687700008]]]}},{"type":"Feature","id":19094,"properties":{"MESHCODE":"5339469241","揺全壊":90.78693},"geometry":{"type":"Polygon","coordinates":[[[139.78125420000003,35.745832875000076],[139.78437920700003,35.74583287300004],[139.7843792220001,35.747916873000065],[139.781254214,35.747916875000044],[139.78125420000003,35.745832875000076]]]}},{"type":"Feature","id":19095,"properties":{"MESHCODE":"5339469242","揺全壊":61.74438},"geometry":{"type":"Polygon","coordinates":[[[139.78437920700003,35.74583287300004],[139.787504215,35.74583287100006],[139.7875042290001,35.74791687000004],[139.7843792220001,35.747916873000065],[139.78437920700003,35.74583287300004]]]}},{"type":"Feature","id":19107,"properties":{"MESHCODE":"5339469332","揺全壊":70.56548},"geometry":{"type":"Polygon","coordinates":[[[139.790629223,35.745832868000036],[139.7937542300001,35.74583286500007],[139.79375424400007,35.747916865000036],[139.7906292360001,35.74791686700007],[139.790629223,35.745832868000036]]]}},{"type":"Feature","id":19127,"properties":{"MESHCODE":"5339469442","揺全壊":90.02022},"geometry":{"type":"Polygon","coordinates":[[[139.809379272,35.745832851000046],[139.8125042800001,35.74583284900007],[139.81250429300007,35.747916848000045],[139.8093792850001,35.74791685100007],[139.809379272,35.745832851000046]]]}},{"type":"Feature","id":19273,"properties":{"MESHCODE":"5339472131","揺全壊":63.92331},"geometry":{"type":"Polygon","coordinates":[[[139.8875041980001,35.687499751000075],[139.890629204,35.68749974600007],[139.89062921100003,35.68958274700009],[139.88750420600002,35.689582752000035],[139.8875041980001,35.687499751000075]]]}},{"type":"Feature","id":19314,"properties":{"MESHCODE":"5339473111","揺全壊":65.73942},"geometry":{"type":"Polygon","coordinates":[[[139.88750421400005,35.69166675300005],[139.89062921700008,35.691666749000035],[139.890629224,35.69374975000005],[139.88750422200008,35.693749754000066],[139.88750421400005,35.69166675300005]]]}},{"type":"Feature","id":25212,"properties":{"MESHCODE":"5339550923","揺全壊":63.51124},"geometry":{"type":"Polygon","coordinates":[[[139.74375416500004,35.75208288600004],[139.74687917100005,35.75208288500005],[139.7468791870001,35.754166884000085],[139.7437541810001,35.754166884000085],[139.74375416500004,35.75208288600004]]]}},{"type":"Feature","id":25213,"properties":{"MESHCODE":"5339550924","揺全壊":103.16982},"geometry":{"type":"Polygon","coordinates":[[[139.74687917100005,35.75208288500005],[139.75000417800004,35.75208288500005],[139.750004193,35.75416688300004],[139.7468791870001,35.754166884000085],[139.74687917100005,35.75208288500005]]]}},{"type":"Feature","id":25372,"properties":{"MESHCODE":"5339551923","揺全壊":91.73819},"geometry":{"type":"Polygon","coordinates":[[[139.74375423000004,35.76041687900005],[139.74687923500005,35.76041687900005],[139.74687925,35.76249987700004],[139.7437542450001,35.76249987700004],[139.74375423000004,35.76041687900005]]]}},{"type":"Feature","id":25373,"properties":{"MESHCODE":"5339551924","揺全壊":63.68401},"geometry":{"type":"Polygon","coordinates":[[[139.74687923500005,35.76041687900005],[139.75000424000007,35.76041687900005],[139.750004256,35.762499878000085],[139.74687925,35.76249987700004],[139.74687923500005,35.76041687900005]]]}},{"type":"Feature","id":25376,"properties":{"MESHCODE":"5339551933","揺全壊":65.72279},"geometry":{"type":"Polygon","coordinates":[[[139.73750425100002,35.76458287500009],[139.74062925600003,35.76458287500009],[139.7406292710001,35.76666687300008],[139.73750426700008,35.76666687200009],[139.73750425100002,35.76458287500009]]]}},{"type":"Feature","id":25377,"properties":{"MESHCODE":"5339551934","揺全壊":63.65969},"geometry":{"type":"Polygon","coordinates":[[[139.74062925600003,35.76458287500009],[139.74375426000006,35.76458287500009],[139.743754276,35.76666687300008],[139.7406292710001,35.76666687300008],[139.74062925600003,35.76458287500009]]]}},{"type":"Feature","id":25378,"properties":{"MESHCODE":"5339551941","揺全壊":77.95699},"geometry":{"type":"Polygon","coordinates":[[[139.7437542450001,35.76249987700004],[139.74687925,35.76249987700004],[139.74687926600006,35.76458287600008],[139.74375426000006,35.76458287500009],[139.7437542450001,35.76249987700004]]]}},{"type":"Feature","id":25379,"properties":{"MESHCODE":"5339551942","揺全壊":68.23061},"geometry":{"type":"Polygon","coordinates":[[[139.74687925,35.76249987700004],[139.750004256,35.762499878000085],[139.75000427100008,35.76458287600008],[139.74687926600006,35.76458287600008],[139.74687925,35.76249987700004]]]}},{"type":"Feature","id":25952,"properties":{"MESHCODE":"5339560022","揺全壊":75.7091},"geometry":{"type":"Polygon","coordinates":[[[139.7593791820001,35.74999988400009],[139.76250418900008,35.749999883000044],[139.76250420300005,35.75208288200008],[139.75937919700004,35.75208288300007],[139.7593791820001,35.74999988400009]]]}},{"type":"Feature","id":25954,"properties":{"MESHCODE":"5339560024","揺全壊":65.8476},"geometry":{"type":"Polygon","coordinates":[[[139.75937919700004,35.75208288300007],[139.76250420300005,35.75208288200008],[139.762504218,35.75416688000007],[139.759379211,35.75416688100006],[139.75937919700004,35.75208288300007]]]}},{"type":"Feature","id":25961,"properties":{"MESHCODE":"5339560043","揺全壊":80.12124},"geometry":{"type":"Polygon","coordinates":[[[139.75625422000007,35.75624988100009],[139.75937922700007,35.75624988000004],[139.75937924200002,35.75833287900008],[139.75625423600002,35.75833287900008],[139.75625422000007,35.75624988100009]]]}},{"type":"Feature","id":25964,"properties":{"MESHCODE":"5339560112","揺全壊":75.61212},"geometry":{"type":"Polygon","coordinates":[[[139.7656291950001,35.749999882000054],[139.7687542010001,35.749999880000075],[139.76875421600005,35.752082879000056],[139.76562920900005,35.752082881000035],[139.7656291950001,35.749999882000054]]]}},{"type":"Feature","id":25980,"properties":{"MESHCODE":"5339560212","揺全壊":80.41317},"geometry":{"type":"Polygon","coordinates":[[[139.77812922100009,35.74999987500007],[139.78125422800008,35.74999987400008],[139.78125424200005,35.75208287300006],[139.77812923500005,35.75208287400005],[139.77812922100009,35.74999987500007]]]}},{"type":"Feature","id":25999,"properties":{"MESHCODE":"5339560321","揺全壊":72.07731},"geometry":{"type":"Polygon","coordinates":[[[139.79375425700005,35.749999864000074],[139.79687926400004,35.74999986100005],[139.796879278,35.75208286000009],[139.793754271,35.752082863000055],[139.79375425700005,35.749999864000074]]]}},{"type":"Feature","id":26001,"properties":{"MESHCODE":"5339560323","揺全壊":97.36934},"geometry":{"type":"Polygon","coordinates":[[[139.793754271,35.752082863000055],[139.796879278,35.75208286000009],[139.7968792910001,35.754166859000065],[139.7937542840001,35.754166862000034],[139.793754271,35.752082863000055]]]}},{"type":"Feature","id":26007,"properties":{"MESHCODE":"5339560341","揺全壊":75.3054},"geometry":{"type":"Polygon","coordinates":[[[139.7937542840001,35.754166862000034],[139.7968792910001,35.754166859000065],[139.79687930500006,35.756249859000036],[139.79375429800007,35.75624986100007],[139.7937542840001,35.754166862000034]]]}},{"type":"Feature","id":26008,"properties":{"MESHCODE":"5339560342","揺全壊":76.32833},"geometry":{"type":"Polygon","coordinates":[[[139.7968792910001,35.754166859000065],[139.8000042980001,35.75416685700009],[139.80000431200006,35.75624985600007],[139.79687930500006,35.756249859000036],[139.7968792910001,35.754166859000065]]]}},{"type":"Feature","id":26016,"properties":{"MESHCODE":"5339560422","揺全壊":67.66428},"geometry":{"type":"Polygon","coordinates":[[[139.80937929700008,35.74999985000005],[139.81250430500006,35.74999984700008],[139.81250431800004,35.752082846000064],[139.80937931000005,35.75208284900009],[139.80937929700008,35.74999985000005]]]}},{"type":"Feature","id":26165,"properties":{"MESHCODE":"5339561333","揺全壊":91.54977},"geometry":{"type":"Polygon","coordinates":[[[139.78750433900007,35.764582861000065],[139.79062934400008,35.764582860000075],[139.79062935800005,35.766666859000054],[139.78750435300003,35.76666686100009],[139.78750433900007,35.764582861000065]]]}},{"type":"Feature","id":26168,"properties":{"MESHCODE":"5339561342","揺全壊":71.98441},"geometry":{"type":"Polygon","coordinates":[[[139.796879343,35.762499856000034],[139.80000435,35.762499854000055],[139.8000043620001,35.764582853000036],[139.79687935700008,35.76458285600006],[139.796879343,35.762499856000034]]]}},{"type":"Feature","id":26169,"properties":{"MESHCODE":"5339561343","揺全壊":60.2615},"geometry":{"type":"Polygon","coordinates":[[[139.79375435100008,35.76458285800004],[139.79687935700008,35.76458285600006],[139.79687936900007,35.76666685500004],[139.79375436400005,35.766666857000075],[139.79375435100008,35.76458285800004]]]}},{"type":"Feature","id":26170,"properties":{"MESHCODE":"5339561344","揺全壊":78.41006},"geometry":{"type":"Polygon","coordinates":[[[139.79687935700008,35.76458285600006],[139.8000043620001,35.764582853000036],[139.80000437500007,35.76666685300006],[139.79687936900007,35.76666685500004],[139.79687935700008,35.76458285600006]]]}},{"type":"Feature","id":26181,"properties":{"MESHCODE":"5339561433","揺全壊":74.31531},"geometry":{"type":"Polygon","coordinates":[[[139.8000043620001,35.764582853000036],[139.8031293690001,35.76458285100006],[139.80312938200007,35.766666850000036],[139.80000437500007,35.76666685300006],[139.8000043620001,35.764582853000036]]]}},{"type":"Feature","id":26182,"properties":{"MESHCODE":"5339561434","揺全壊":61.148},"geometry":{"type":"Polygon","coordinates":[[[139.8031293690001,35.76458285100006],[139.80625437600008,35.76458284800009],[139.80625438900006,35.76666684700007],[139.80312938200007,35.766666850000036],[139.8031293690001,35.76458285100006]]]}},{"type":"Feature","id":26310,"properties":{"MESHCODE":"5339562234","揺全壊":64.0597},"geometry":{"type":"Polygon","coordinates":[[[139.77812937800002,35.772916861000056],[139.78125438300003,35.77291685900008],[139.781254397,35.77499985900005],[139.7781293920001,35.77499986000004],[139.77812937800002,35.772916861000056]]]}},{"type":"Feature","id":26312,"properties":{"MESHCODE":"5339562242","揺全壊":74.3284},"geometry":{"type":"Polygon","coordinates":[[[139.78437937500007,35.77083286000004],[139.78750438100008,35.77083285800006],[139.78750439500004,35.77291685700004],[139.78437938900004,35.77291685900008],[139.78437937500007,35.77083286000004]]]}},{"type":"Feature","id":26479,"properties":{"MESHCODE":"5339563321","揺全壊":77.07442},"geometry":{"type":"Polygon","coordinates":[[[139.79375441800005,35.774999851000075],[139.79687942200007,35.77499984900004],[139.79687943700003,35.77708284800008],[139.79375443200001,35.777082850000056],[139.79375441800005,35.774999851000075]]]}},{"type":"Feature","id":26483,"properties":{"MESHCODE":"5339563331","揺全壊":65.95909},"geometry":{"type":"Polygon","coordinates":[[[139.78750443600006,35.77916685100007],[139.79062944100008,35.77916685000008],[139.79062945500004,35.78124984800007],[139.78750445000003,35.78124984900006],[139.78750443600006,35.77916685100007]]]}}]}
\ No newline at end of file
diff --git a/app/src/layers/data/particles/toshin-destroyed_particles_2.json b/app/src/layers/data/particles/toshin-destroyed_particles_2.json
new file mode 100644
index 0000000..c8b57d0
--- /dev/null
+++ b/app/src/layers/data/particles/toshin-destroyed_particles_2.json
@@ -0,0 +1 @@
+{"type":"FeatureCollection","name":"建物被害分布_都心南部","features":[{"type":"Feature","id":744,"properties":{"MESHCODE":"5339231831","揺全壊":17.92057},"geometry":{"type":"Polygon","coordinates":[[[139.475002055,35.51250024700005],[139.47812705400008,35.51250025300004],[139.47812707000003,35.514583248000065],[139.47500206900008,35.51458324300006],[139.475002055,35.51250024700005]]]}},{"type":"Feature","id":772,"properties":{"MESHCODE":"5339232742","揺全壊":17.24523},"geometry":{"type":"Polygon","coordinates":[[[139.47187711100003,35.52083322400006],[139.4750021110001,35.52083323100004],[139.47500212500006,35.52291722600006],[139.4718771250001,35.52291722000007],[139.47187711100003,35.52083322400006]]]}},{"type":"Feature","id":773,"properties":{"MESHCODE":"5339232743","揺全壊":18.8341},"geometry":{"type":"Polygon","coordinates":[[[139.46875212500004,35.522917213000085],[139.4718771250001,35.52291722000007],[139.47187713900007,35.525000215000034],[139.468752139,35.52500020800005],[139.46875212500004,35.522917213000085]]]}},{"type":"Feature","id":795,"properties":{"MESHCODE":"5339233624","揺全壊":16.37497},"geometry":{"type":"Polygon","coordinates":[[[139.4593771430001,35.52708319200008],[139.4625021490001,35.52708319300007],[139.4625021600001,35.529167193000035],[139.4593771540001,35.529167191000056],[139.4593771430001,35.52708319200008]]]}},{"type":"Feature","id":807,"properties":{"MESHCODE":"5339233721","揺全壊":23.99962},"geometry":{"type":"Polygon","coordinates":[[[139.468752139,35.52500020800005],[139.47187713900007,35.525000215000034],[139.47187715100006,35.52708321300008],[139.46875215,35.52708320700009],[139.468752139,35.52500020800005]]]}},{"type":"Feature","id":1368,"properties":{"MESHCODE":"5339254643","揺全壊":17.16575},"geometry":{"type":"Polygon","coordinates":[[[139.70625266000002,35.53958319600008],[139.70937766400004,35.53958318900004],[139.709377679,35.54166718700009],[139.7062526750001,35.54166719500006],[139.70625266000002,35.53958319600008]]]}},{"type":"Feature","id":1369,"properties":{"MESHCODE":"5339254644","揺全壊":18.25293},"geometry":{"type":"Polygon","coordinates":[[[139.70937766400004,35.53958318900004],[139.71250266800007,35.53958318200006],[139.71250268400001,35.54166718100004],[139.709377679,35.54166718700009],[139.70937766400004,35.53958318900004]]]}},{"type":"Feature","id":1388,"properties":{"MESHCODE":"5339255622","揺全壊":18.30522},"geometry":{"type":"Polygon","coordinates":[[[139.709377679,35.54166718700009],[139.71250268400001,35.54166718100004],[139.71250269900008,35.543750179000085],[139.70937769500006,35.54375018600007],[139.709377679,35.54166718700009]]]}},{"type":"Feature","id":1395,"properties":{"MESHCODE":"5339255641","揺全壊":23.88517},"geometry":{"type":"Polygon","coordinates":[[[139.706252704,35.54583319200009],[139.70937771,35.54583318500005],[139.7093777240001,35.54791718300004],[139.70625272000007,35.54791719000008],[139.706252704,35.54583319200009]]]}},{"type":"Feature","id":1396,"properties":{"MESHCODE":"5339255642","揺全壊":22.2441},"geometry":{"type":"Polygon","coordinates":[[[139.70937771,35.54583318500005],[139.71250271400004,35.545833178000066],[139.712502729,35.547917176000055],[139.7093777240001,35.54791718300004],[139.70937771,35.54583318500005]]]}},{"type":"Feature","id":1408,"properties":{"MESHCODE":"5339255732","揺全壊":19.62492},"geometry":{"type":"Polygon","coordinates":[[[139.71562771900005,35.54583317000004],[139.71875272300008,35.545833163000054],[139.71875273700005,35.54791716200009],[139.715627734,35.54791716900007],[139.71562771900005,35.54583317000004]]]}},{"type":"Feature","id":1412,"properties":{"MESHCODE":"5339255742","揺全壊":23.37081},"geometry":{"type":"Polygon","coordinates":[[[139.7218777270001,35.54583315600007],[139.725002732,35.54583314900009],[139.7250027460001,35.54791714700008],[139.72187774200006,35.54791715400006],[139.7218777270001,35.54583315600007]]]}},{"type":"Feature","id":1424,"properties":{"MESHCODE":"5339255832","揺全壊":17.06176},"geometry":{"type":"Polygon","coordinates":[[[139.72812773700002,35.54583314100006],[139.73125274200004,35.54583313300009],[139.731252757,35.547917132000066],[139.7281277520001,35.54791713900005],[139.72812773700002,35.54583314100006]]]}},{"type":"Feature","id":1425,"properties":{"MESHCODE":"5339255833","揺全壊":21.11678},"geometry":{"type":"Polygon","coordinates":[[[139.7250027460001,35.54791714700008],[139.7281277520001,35.54791713900005],[139.72812776700005,35.55000013700004],[139.72500276200003,35.55000014500007],[139.7250027460001,35.54791714700008]]]}},{"type":"Feature","id":1426,"properties":{"MESHCODE":"5339255834","揺全壊":21.12182},"geometry":{"type":"Polygon","coordinates":[[[139.7281277520001,35.54791713900005],[139.731252757,35.547917132000066],[139.73125277200006,35.55000012900007],[139.72812776700005,35.55000013700004],[139.7281277520001,35.54791713900005]]]}},{"type":"Feature","id":1427,"properties":{"MESHCODE":"5339255841","揺全壊":15.84587},"geometry":{"type":"Polygon","coordinates":[[[139.73125274200004,35.54583313300009],[139.73437774700005,35.54583312600005],[139.734377762,35.54791712400004],[139.731252757,35.547917132000066],[139.73125274200004,35.54583313300009]]]}},{"type":"Feature","id":1433,"properties":{"MESHCODE":"5339255923","揺全壊":16.87712},"geometry":{"type":"Polygon","coordinates":[[[139.74375274500005,35.54375010500007],[139.74687774900008,35.54375009700004],[139.746877766,35.545833095000035],[139.743752761,35.545833102000074],[139.74375274500005,35.54375010500007]]]}},{"type":"Feature","id":1436,"properties":{"MESHCODE":"5339255932","揺全壊":16.33742},"geometry":{"type":"Polygon","coordinates":[[[139.74062775700008,35.545833111000036],[139.743752761,35.545833102000074],[139.74375277800004,35.54791710100005],[139.74062777300003,35.547917108000036],[139.74062775700008,35.545833111000036]]]}},{"type":"Feature","id":1438,"properties":{"MESHCODE":"5339255934","揺全壊":16.26186},"geometry":{"type":"Polygon","coordinates":[[[139.74062777300003,35.547917108000036],[139.74375277800004,35.54791710100005],[139.7437527940001,35.550000099000044],[139.7406277890001,35.550000106000084],[139.74062777300003,35.547917108000036]]]}},{"type":"Feature","id":1456,"properties":{"MESHCODE":"5339256632","揺全壊":21.90756},"geometry":{"type":"Polygon","coordinates":[[[139.70312775800005,35.55416719400006],[139.70625276200008,35.554167187000076],[139.70625277500005,35.55625018600006],[139.70312777100003,35.55625019300004],[139.70312775800005,35.55416719400006]]]}},{"type":"Feature","id":1457,"properties":{"MESHCODE":"5339256633","揺全壊":19.2586},"geometry":{"type":"Polygon","coordinates":[[[139.700002767,35.55625020100007],[139.70312777100003,35.55625019300004],[139.7031277850001,35.55833319300007],[139.70000278100008,35.55833320000005],[139.700002767,35.55625020100007]]]}},{"type":"Feature","id":1466,"properties":{"MESHCODE":"5339256714","揺全壊":22.62909},"geometry":{"type":"Polygon","coordinates":[[[139.71562776200005,35.552083166000045],[139.71875276600008,35.55208315800007],[139.71875278000005,35.55416715700005],[139.71562777500003,35.55416716500008],[139.71562776200005,35.552083166000045]]]}},{"type":"Feature","id":1468,"properties":{"MESHCODE":"5339256722","揺全壊":17.39252},"geometry":{"type":"Polygon","coordinates":[[[139.72187775700002,35.55000015200005],[139.72500276200003,35.55000014500007],[139.725002775,35.55208314300006],[139.7218777710001,35.552083150000044],[139.72187775700002,35.55000015200005]]]}},{"type":"Feature","id":1469,"properties":{"MESHCODE":"5339256723","揺全壊":20.75022},"geometry":{"type":"Polygon","coordinates":[[[139.71875276600008,35.55208315800007],[139.7218777710001,35.552083150000044],[139.72187778400007,35.55416714900008],[139.71875278000005,35.55416715700005],[139.71875276600008,35.55208315800007]]]}},{"type":"Feature","id":1475,"properties":{"MESHCODE":"5339256741","揺全壊":18.61097},"geometry":{"type":"Polygon","coordinates":[[[139.71875278000005,35.55416715700005],[139.72187778400007,35.55416714900008],[139.72187779800004,35.55625014800006],[139.71875279300002,35.55625015600009],[139.71875278000005,35.55416715700005]]]}},{"type":"Feature","id":1477,"properties":{"MESHCODE":"5339256743","揺全壊":19.68194},"geometry":{"type":"Polygon","coordinates":[[[139.71875279300002,35.55625015600009],[139.72187779800004,35.55625014800006],[139.721877812,35.55833314700004],[139.7187528070001,35.55833315400008],[139.71875279300002,35.55625015600009]]]}},{"type":"Feature","id":1478,"properties":{"MESHCODE":"5339256744","揺全壊":16.58635},"geometry":{"type":"Polygon","coordinates":[[[139.72187779800004,35.55625014800006],[139.72500280300005,35.55625014000009],[139.72500281600003,35.55833313900007],[139.721877812,35.55833314700004],[139.72187779800004,35.55625014800006]]]}},{"type":"Feature","id":1479,"properties":{"MESHCODE":"5339256811","揺全壊":17.05049},"geometry":{"type":"Polygon","coordinates":[[[139.72500276200003,35.55000014500007],[139.72812776700005,35.55000013700004],[139.72812778000002,35.55208313600008],[139.725002775,35.55208314300006],[139.72500276200003,35.55000014500007]]]}},{"type":"Feature","id":1481,"properties":{"MESHCODE":"5339256813","揺全壊":24.0609},"geometry":{"type":"Polygon","coordinates":[[[139.725002775,35.55208314300006],[139.72812778000002,35.55208313600008],[139.7281277950001,35.55416713400007],[139.7250027880001,35.55416714200004],[139.725002775,35.55208314300006]]]}},{"type":"Feature","id":1487,"properties":{"MESHCODE":"5339256831","揺全壊":19.95703},"geometry":{"type":"Polygon","coordinates":[[[139.7250027880001,35.55416714200004],[139.7281277950001,35.55416713400007],[139.72812780800007,35.55625013300005],[139.72500280300005,35.55625014000009],[139.7250027880001,35.55416714200004]]]}},{"type":"Feature","id":1490,"properties":{"MESHCODE":"5339256834","揺全壊":16.05672},"geometry":{"type":"Polygon","coordinates":[[[139.72812780800007,35.55625013300005],[139.73125281300008,35.556250125000076],[139.73125282800004,35.55833312400006],[139.72812782300002,35.55833313100004],[139.72812780800007,35.55625013300005]]]}},{"type":"Feature","id":1491,"properties":{"MESHCODE":"5339256841","揺全壊":17.99622},"geometry":{"type":"Polygon","coordinates":[[[139.7312528,35.554167127000085],[139.734377805,35.554167119000056],[139.73437782000008,35.55625011800004],[139.73125281300008,35.556250125000076],[139.7312528,35.554167127000085]]]}},{"type":"Feature","id":1528,"properties":{"MESHCODE":"5339257521","揺全壊":20.42958},"geometry":{"type":"Polygon","coordinates":[[[139.69375277400002,35.55833321400007],[139.69687777700005,35.55833320700009],[139.69687778900004,35.56041720500008],[139.693752787,35.56041721300005],[139.69375277400002,35.55833321400007]]]}},{"type":"Feature","id":1529,"properties":{"MESHCODE":"5339257522","揺全壊":20.06148},"geometry":{"type":"Polygon","coordinates":[[[139.69687777700005,35.55833320700009],[139.70000278100008,35.55833320000005],[139.70000279300007,35.560417199000085],[139.69687778900004,35.56041720500008],[139.69687777700005,35.55833320700009]]]}},{"type":"Feature","id":1530,"properties":{"MESHCODE":"5339257523","揺全壊":20.4662},"geometry":{"type":"Polygon","coordinates":[[[139.693752787,35.56041721300005],[139.69687778900004,35.56041720500008],[139.69687780200002,35.56250020400006],[139.6937527980001,35.56250021100004],[139.693752787,35.56041721300005]]]}},{"type":"Feature","id":1531,"properties":{"MESHCODE":"5339257524","揺全壊":17.53216},"geometry":{"type":"Polygon","coordinates":[[[139.69687778900004,35.56041720500008],[139.70000279300007,35.560417199000085],[139.70000280500005,35.56250019700008],[139.69687780200002,35.56250020400006],[139.69687778900004,35.56041720500008]]]}},{"type":"Feature","id":1535,"properties":{"MESHCODE":"5339257534","揺全壊":16.66764},"geometry":{"type":"Polygon","coordinates":[[[139.69062780700006,35.56458321700006],[139.69375281100008,35.564583209000034],[139.69375282300007,35.56666720900006],[139.69062782000003,35.56666721500005],[139.69062780700006,35.56458321700006]]]}},{"type":"Feature","id":1543,"properties":{"MESHCODE":"5339257614","揺全壊":22.94943},"geometry":{"type":"Polygon","coordinates":[[[139.7031277970001,35.560417191000056],[139.706252802,35.560417183000084],[139.70625281500008,35.562500182000065],[139.70312781000007,35.56250018900005],[139.7031277970001,35.560417191000056]]]}},{"type":"Feature","id":1544,"properties":{"MESHCODE":"5339257621","揺全壊":19.43209},"geometry":{"type":"Polygon","coordinates":[[[139.70625278900002,35.55833318500004],[139.70937779300004,35.558333177000065],[139.70937780600002,35.560417176000044],[139.706252802,35.560417183000084],[139.70625278900002,35.55833318500004]]]}},{"type":"Feature","id":1546,"properties":{"MESHCODE":"5339257623","揺全壊":21.52435},"geometry":{"type":"Polygon","coordinates":[[[139.706252802,35.560417183000084],[139.70937780600002,35.560417176000044],[139.709377819,35.562500174000036],[139.70625281500008,35.562500182000065],[139.706252802,35.560417183000084]]]}},{"type":"Feature","id":1548,"properties":{"MESHCODE":"5339257631","揺全壊":22.29744},"geometry":{"type":"Polygon","coordinates":[[[139.70000280500005,35.56250019700008],[139.70312781000007,35.56250018900005],[139.70312782300005,35.564583188000086],[139.70000281800003,35.56458319600006],[139.70000280500005,35.56250019700008]]]}},{"type":"Feature","id":1549,"properties":{"MESHCODE":"5339257632","揺全壊":21.12845},"geometry":{"type":"Polygon","coordinates":[[[139.70312781000007,35.56250018900005],[139.70625281500008,35.562500182000065],[139.70625282800006,35.56458318000006],[139.70312782300005,35.564583188000086],[139.70312781000007,35.56250018900005]]]}},{"type":"Feature","id":1552,"properties":{"MESHCODE":"5339257641","揺全壊":18.07017},"geometry":{"type":"Polygon","coordinates":[[[139.70625281500008,35.562500182000065],[139.709377819,35.562500174000036],[139.7093778320001,35.564583173000074],[139.70625282800006,35.56458318000006],[139.70625281500008,35.562500182000065]]]}},{"type":"Feature","id":1555,"properties":{"MESHCODE":"5339257644","揺全壊":24.04367},"geometry":{"type":"Polygon","coordinates":[[[139.7093778320001,35.564583173000074],[139.712502836,35.564583166000034],[139.71250285000008,35.56666716400008],[139.70937784500006,35.56666717100006],[139.7093778320001,35.564583173000074]]]}},{"type":"Feature","id":1572,"properties":{"MESHCODE":"5339257811","揺全壊":18.95766},"geometry":{"type":"Polygon","coordinates":[[[139.72500281600003,35.55833313900007],[139.72812782300002,35.55833313100004],[139.728127835,35.560417130000076],[139.72500283,35.56041713700006],[139.72500281600003,35.55833313900007]]]}},{"type":"Feature","id":1573,"properties":{"MESHCODE":"5339257812","揺全壊":16.68334},"geometry":{"type":"Polygon","coordinates":[[[139.72812782300002,35.55833313100004],[139.73125282800004,35.55833312400006],[139.731252841,35.56041712200005],[139.728127835,35.560417130000076],[139.72812782300002,35.55833313100004]]]}},{"type":"Feature","id":1576,"properties":{"MESHCODE":"5339257821","揺全壊":17.23635},"geometry":{"type":"Polygon","coordinates":[[[139.73125282800004,35.55833312400006],[139.73437783300005,35.558333116000085],[139.73437784700002,35.560417115000064],[139.731252841,35.56041712200005],[139.73125282800004,35.55833312400006]]]}},{"type":"Feature","id":1581,"properties":{"MESHCODE":"5339257832","揺全壊":19.41873},"geometry":{"type":"Polygon","coordinates":[[[139.7281278490001,35.56250012900006],[139.7312528540001,35.562500121000085],[139.73125286700008,35.564583120000066],[139.72812786200006,35.56458312700005],[139.7281278490001,35.56250012900006]]]}},{"type":"Feature","id":1587,"properties":{"MESHCODE":"5339257844","揺全壊":23.20757},"geometry":{"type":"Polygon","coordinates":[[[139.73437787300008,35.56458311200004],[139.7375028790001,35.564583104000064],[139.73750289100008,35.56666710300004],[139.73437788600006,35.56666711100007],[139.73437787300008,35.56458311200004]]]}},{"type":"Feature","id":1591,"properties":{"MESHCODE":"5339257914","揺全壊":15.72796},"geometry":{"type":"Polygon","coordinates":[[[139.74062785700005,35.56041709900006],[139.74375286200006,35.56041709200008],[139.74375287500004,35.56250009000007],[139.74062787000003,35.562500098000044],[139.74062785700005,35.56041709900006]]]}},{"type":"Feature","id":1621,"properties":{"MESHCODE":"5339258443","揺全壊":21.92138},"geometry":{"type":"Polygon","coordinates":[[[139.6812528370001,35.57291723000009],[139.684377842,35.57291722400004],[139.684377852,35.575000223000075],[139.681252846,35.57500022800008],[139.6812528370001,35.57291723000009]]]}},{"type":"Feature","id":1628,"properties":{"MESHCODE":"5339258522","揺全壊":23.32396},"geometry":{"type":"Polygon","coordinates":[[[139.6968778270001,35.56666720100009],[139.70000283000002,35.566667195000036],[139.700002842,35.568750193000085],[139.6968778380001,35.56875019900008],[139.6968778270001,35.56666720100009]]]}},{"type":"Feature","id":1629,"properties":{"MESHCODE":"5339258523","揺全壊":19.26977},"geometry":{"type":"Polygon","coordinates":[[[139.69375283400007,35.56875020600006],[139.6968778380001,35.56875019900008],[139.6968778490001,35.57083319800006],[139.69375284500006,35.57083320500004],[139.69375283400007,35.56875020600006]]]}},{"type":"Feature","id":1630,"properties":{"MESHCODE":"5339258524","揺全壊":23.86728},"geometry":{"type":"Polygon","coordinates":[[[139.6968778380001,35.56875019900008],[139.700002842,35.568750193000085],[139.700002853,35.57083319000009],[139.6968778490001,35.57083319800006],[139.6968778380001,35.56875019900008]]]}},{"type":"Feature","id":1640,"properties":{"MESHCODE":"5339258612","揺全壊":17.67367},"geometry":{"type":"Polygon","coordinates":[[[139.70312783600002,35.566667187000064],[139.70625284000005,35.566667179000035],[139.70625285200003,35.568750177000084],[139.70312784700002,35.568750185000056],[139.70312783600002,35.566667187000064]]]}},{"type":"Feature","id":1642,"properties":{"MESHCODE":"5339258614","揺全壊":18.26475},"geometry":{"type":"Polygon","coordinates":[[[139.70312784700002,35.568750185000056],[139.70625285200003,35.568750177000084],[139.70625286300003,35.570833175000075],[139.70312785700003,35.57083318200006],[139.70312784700002,35.568750185000056]]]}},{"type":"Feature","id":1643,"properties":{"MESHCODE":"5339258621","揺全壊":17.99502},"geometry":{"type":"Polygon","coordinates":[[[139.70625284000005,35.566667179000035],[139.70937784500006,35.56666717100006],[139.70937785600006,35.568750169000054],[139.70625285200003,35.568750177000084],[139.70625284000005,35.566667179000035]]]}},{"type":"Feature","id":1645,"properties":{"MESHCODE":"5339258623","揺全壊":22.0734},"geometry":{"type":"Polygon","coordinates":[[[139.70625285200003,35.568750177000084],[139.70937785600006,35.568750169000054],[139.70937786700006,35.570833168000036],[139.70625286300003,35.570833175000075],[139.70625285200003,35.568750177000084]]]}},{"type":"Feature","id":1648,"properties":{"MESHCODE":"5339258632","揺全壊":23.43663},"geometry":{"type":"Polygon","coordinates":[[[139.70312785700003,35.57083318200006],[139.70625286300003,35.570833175000075],[139.70625287300004,35.572917173000064],[139.703127869,35.57291718000005],[139.70312785700003,35.57083318200006]]]}},{"type":"Feature","id":1687,"properties":{"MESHCODE":"5339258911","揺全壊":20.0069},"geometry":{"type":"Polygon","coordinates":[[[139.73750289100008,35.56666710300004],[139.74062789700008,35.56666709500007],[139.74062790800008,35.56875009300006],[139.73750290300006,35.568750100000045],[139.73750289100008,35.56666710300004]]]}},{"type":"Feature","id":1688,"properties":{"MESHCODE":"5339258912","揺全壊":16.34985},"geometry":{"type":"Polygon","coordinates":[[[139.74062789700008,35.56666709500007],[139.743752901,35.56666708700004],[139.74375291400008,35.56875008500009],[139.74062790800008,35.56875009300006],[139.74062789700008,35.56666709500007]]]}},{"type":"Feature","id":1693,"properties":{"MESHCODE":"5339258923","揺全壊":18.56118},"geometry":{"type":"Polygon","coordinates":[[[139.74375291400008,35.56875008500009],[139.746877918,35.56875007800005],[139.74687793100009,35.57083307600004],[139.74375292500008,35.57083308400007],[139.74375291400008,35.56875008500009]]]}},{"type":"Feature","id":1697,"properties":{"MESHCODE":"5339258933","揺全壊":15.50673},"geometry":{"type":"Polygon","coordinates":[[[139.73750292700004,35.57291709600008],[139.74062793300004,35.57291708900004],[139.74062794400004,35.575000087000035],[139.73750293900002,35.575000095000064],[139.73750292700004,35.57291709600008]]]}},{"type":"Feature","id":1708,"properties":{"MESHCODE":"5339259342","揺全壊":19.23244},"geometry":{"type":"Polygon","coordinates":[[[139.671877837,35.57916723800008],[139.6750028470001,35.57916723400007],[139.675002854,35.58125023200006],[139.67187784400005,35.58125023600007],[139.671877837,35.57916723800008]]]}},{"type":"Feature","id":1710,"properties":{"MESHCODE":"5339259344","揺全壊":17.27985},"geometry":{"type":"Polygon","coordinates":[[[139.67187784400005,35.58125023600007],[139.675002854,35.58125023200006],[139.67500286100005,35.58333323000005],[139.6718778510001,35.583333234000065],[139.67187784400005,35.58125023600007]]]}},{"type":"Feature","id":1714,"properties":{"MESHCODE":"5339259414","揺全壊":24.16478},"geometry":{"type":"Polygon","coordinates":[[[139.67812784700004,35.577083231000074],[139.68125285300005,35.57708322500008],[139.68125286100008,35.57916722300007],[139.67812785400008,35.57916722900006],[139.67812784700004,35.577083231000074]]]}},{"type":"Feature","id":1719,"properties":{"MESHCODE":"5339259431","揺全壊":24.11625},"geometry":{"type":"Polygon","coordinates":[[[139.6750028470001,35.57916723400007],[139.67812785400008,35.57916722900006],[139.678127862,35.581250227000055],[139.675002854,35.58125023200006],[139.6750028470001,35.57916723400007]]]}},{"type":"Feature","id":1734,"properties":{"MESHCODE":"5339259524","揺全壊":20.65907},"geometry":{"type":"Polygon","coordinates":[[[139.6968778800001,35.57708319200009],[139.700002884,35.57708318400006],[139.70000289400002,35.57916718200005],[139.69687789,35.57916718900009],[139.6968778800001,35.57708319200009]]]}},{"type":"Feature","id":1739,"properties":{"MESHCODE":"5339259541","揺全壊":21.44282},"geometry":{"type":"Polygon","coordinates":[[[139.6937528840001,35.57916719600007],[139.69687789,35.57916718900009],[139.69687789900001,35.58125018700008],[139.693752893,35.58125019400006],[139.6937528840001,35.57916719600007]]]}},{"type":"Feature","id":1740,"properties":{"MESHCODE":"5339259542","揺全壊":20.15545},"geometry":{"type":"Polygon","coordinates":[[[139.69687789,35.57916718900009],[139.70000289400002,35.57916718200005],[139.70000290400003,35.58125018000004],[139.69687789900001,35.58125018700008],[139.69687789,35.57916718900009]]]}},{"type":"Feature","id":1741,"properties":{"MESHCODE":"5339259543","揺全壊":22.56061},"geometry":{"type":"Polygon","coordinates":[[[139.693752893,35.58125019400006],[139.69687789900001,35.58125018700008],[139.69687790900002,35.58333318400008],[139.69375290200003,35.583333192000055],[139.693752893,35.58125019400006]]]}},{"type":"Feature","id":1742,"properties":{"MESHCODE":"5339259544","揺全壊":23.77028},"geometry":{"type":"Polygon","coordinates":[[[139.69687789900001,35.58125018700008],[139.70000290400003,35.58125018000004],[139.70000291400004,35.58333317800009],[139.69687790900002,35.58333318400008],[139.69687789900001,35.58125018700008]]]}},{"type":"Feature","id":1751,"properties":{"MESHCODE":"5339259631","揺全壊":22.70257},"geometry":{"type":"Polygon","coordinates":[[[139.70000289400002,35.57916718200005],[139.70312790000003,35.579167175000066],[139.70312791000003,35.58125017300006],[139.70000290400003,35.58125018000004],[139.70000289400002,35.57916718200005]]]}},{"type":"Feature","id":1753,"properties":{"MESHCODE":"5339259633","揺全壊":21.72911},"geometry":{"type":"Polygon","coordinates":[[[139.70000290400003,35.58125018000004],[139.70312791000003,35.58125017300006],[139.70312792000004,35.58333317000006],[139.70000291400004,35.58333317800009],[139.70000290400003,35.58125018000004]]]}},{"type":"Feature","id":1755,"properties":{"MESHCODE":"5339259641","揺全壊":23.25601},"geometry":{"type":"Polygon","coordinates":[[[139.70625290600003,35.57916716700004],[139.70937791100005,35.579167160000054],[139.70937792200004,35.581250159000035],[139.70625291600004,35.581250165000085],[139.70625290600003,35.57916716700004]]]}},{"type":"Feature","id":1756,"properties":{"MESHCODE":"5339259642","揺全壊":19.99757},"geometry":{"type":"Polygon","coordinates":[[[139.70937791100005,35.579167160000054],[139.71250291600006,35.57916715300007],[139.71250292800005,35.58125015100006],[139.70937792200004,35.581250159000035],[139.70937791100005,35.579167160000054]]]}},{"type":"Feature","id":1758,"properties":{"MESHCODE":"5339259644","揺全壊":24.91034},"geometry":{"type":"Polygon","coordinates":[[[139.70937792200004,35.581250159000035],[139.71250292800005,35.58125015100006],[139.71250293900005,35.583333150000044],[139.70937793300004,35.583333157000084],[139.70937792200004,35.581250159000035]]]}},{"type":"Feature","id":5414,"properties":{"MESHCODE":"5339344944","揺全壊":19.79114},"geometry":{"type":"Polygon","coordinates":[[[139.6218778230001,35.62291724100004],[139.6250028280001,35.622917242000085],[139.62500283300005,35.625000241000066],[139.62187782900003,35.62500024000008],[139.6218778230001,35.62291724100004]]]}},{"type":"Feature","id":5511,"properties":{"MESHCODE":"5339345922","揺全壊":24.62627},"geometry":{"type":"Polygon","coordinates":[[[139.62187782900003,35.62500024000008],[139.62500283300005,35.625000241000066],[139.6250028390001,35.62708324100004],[139.62187783500008,35.62708324000005],[139.62187782900003,35.62500024000008]]]}},{"type":"Feature","id":5644,"properties":{"MESHCODE":"5339346841","揺全壊":22.08718},"geometry":{"type":"Polygon","coordinates":[[[139.6062528550001,35.637500222000085],[139.60937785400006,35.63750022700009],[139.60937786,35.63958322600007],[139.60625286200002,35.639583221000066],[139.6062528550001,35.637500222000085]]]}},{"type":"Feature","id":5645,"properties":{"MESHCODE":"5339346842","揺全壊":15.08461},"geometry":{"type":"Polygon","coordinates":[[[139.60937785400006,35.63750022700009],[139.61250285200003,35.637500232000036],[139.61250285900007,35.639583231000074],[139.60937786,35.63958322600007],[139.60937785400006,35.63750022700009]]]}},{"type":"Feature","id":5655,"properties":{"MESHCODE":"5339346924","揺全壊":15.24988},"geometry":{"type":"Polygon","coordinates":[[[139.62187785800006,35.63541723700007],[139.62500286,35.63541723900005],[139.62500286600005,35.637500239000076],[139.62187786200002,35.63750023700004],[139.62187785800006,35.63541723700007]]]}},{"type":"Feature","id":5657,"properties":{"MESHCODE":"5339346932","揺全壊":18.26158},"geometry":{"type":"Polygon","coordinates":[[[139.61562785600006,35.63750023400007],[139.6187528590001,35.63750023500006],[139.61875286400004,35.63958323500009],[139.615627861,35.63958323400004],[139.61562785600006,35.63750023400007]]]}},{"type":"Feature","id":5659,"properties":{"MESHCODE":"5339346934","揺全壊":16.0277},"geometry":{"type":"Polygon","coordinates":[[[139.615627861,35.63958323400004],[139.61875286400004,35.63958323500009],[139.6187528690001,35.64166723500006],[139.61562786700006,35.64166723200009],[139.615627861,35.63958323400004]]]}},{"type":"Feature","id":5663,"properties":{"MESHCODE":"5339346944","揺全壊":21.36791},"geometry":{"type":"Polygon","coordinates":[[[139.62187786700008,35.63958323700007],[139.62500287,35.639583239000046],[139.62500287500006,35.64166723900007],[139.62187787200003,35.641667237000036],[139.62187786700008,35.63958323700007]]]}},{"type":"Feature","id":5799,"properties":{"MESHCODE":"5339347824","揺全壊":19.67851},"geometry":{"type":"Polygon","coordinates":[[[139.60937787300008,35.64375022400009],[139.61250287000007,35.64375023000008],[139.612502877,35.64583322900006],[139.60937787900002,35.64583322300007],[139.60937787300008,35.64375022400009]]]}},{"type":"Feature","id":5801,"properties":{"MESHCODE":"5339347832","揺全壊":16.09725},"geometry":{"type":"Polygon","coordinates":[[[139.60312788600004,35.645833210000035],[139.60625288300002,35.645833217000074],[139.60625289000006,35.647917215000064],[139.60312789400007,35.64791720900007],[139.60312788600004,35.645833210000035]]]}},{"type":"Feature","id":5802,"properties":{"MESHCODE":"5339347833","揺全壊":16.71889},"geometry":{"type":"Polygon","coordinates":[[[139.60000289800007,35.64791720200009],[139.60312789400007,35.64791720900007],[139.603127901,35.65000020700006],[139.6000029060001,35.65000020000008],[139.60000289800007,35.64791720200009]]]}},{"type":"Feature","id":5812,"properties":{"MESHCODE":"5339347921","揺全壊":18.54701},"geometry":{"type":"Polygon","coordinates":[[[139.6187528690001,35.64166723500006],[139.62187787200003,35.641667237000036],[139.6218778770001,35.64375023700006],[139.61875287500004,35.643750235000084],[139.6187528690001,35.64166723500006]]]}},{"type":"Feature","id":5813,"properties":{"MESHCODE":"5339347922","揺全壊":15.25013},"geometry":{"type":"Polygon","coordinates":[[[139.62187787200003,35.641667237000036],[139.62500287500006,35.64166723900007],[139.62500287900002,35.64375024000009],[139.6218778770001,35.64375023700006],[139.62187787200003,35.641667237000036]]]}},{"type":"Feature","id":5954,"properties":{"MESHCODE":"5339348813","揺全壊":16.00474},"geometry":{"type":"Polygon","coordinates":[[[139.600002915,35.65208319700008],[139.60312791,35.652083204000064],[139.60312791800004,35.65416720200005],[139.60000292400002,35.65416719500007],[139.600002915,35.65208319700008]]]}},{"type":"Feature","id":6107,"properties":{"MESHCODE":"5339349734","揺全壊":15.42531},"geometry":{"type":"Polygon","coordinates":[[[139.59062799700007,35.664583152000034],[139.593752988,35.66458316100005],[139.5937530000001,35.66666715700006],[139.59062800800007,35.666667148000045],[139.59062799700007,35.664583152000034]]]}},{"type":"Feature","id":6184,"properties":{"MESHCODE":"5339350522","揺全壊":15.26992},"geometry":{"type":"Polygon","coordinates":[[[139.69687790900002,35.58333318400008],[139.70000291400004,35.58333317800009],[139.70000292400005,35.58541717600008],[139.69687791800004,35.58541718300006],[139.69687790900002,35.58333318400008]]]}},{"type":"Feature","id":6185,"properties":{"MESHCODE":"5339350523","揺全壊":19.87241},"geometry":{"type":"Polygon","coordinates":[[[139.69375291100005,35.585417190000044],[139.69687791800004,35.58541718300006],[139.69687792700006,35.58750018100005],[139.69375292000007,35.587500187000046],[139.69375291100005,35.585417190000044]]]}},{"type":"Feature","id":6193,"properties":{"MESHCODE":"5339350543","揺全壊":18.77775},"geometry":{"type":"Polygon","coordinates":[[[139.6937529280001,35.58958318500004],[139.69687793600008,35.589583178000055],[139.6968779450001,35.591667176000044],[139.693752937,35.59166718400007],[139.6937529280001,35.58958318500004]]]}},{"type":"Feature","id":6198,"properties":{"MESHCODE":"5339350614","揺全壊":19.22503},"geometry":{"type":"Polygon","coordinates":[[[139.70312793000005,35.58541716800005],[139.70625293600006,35.585417162000056],[139.70625294600006,35.58750015900006],[139.70312794000006,35.58750016700009],[139.70312793000005,35.58541716800005]]]}},{"type":"Feature","id":6204,"properties":{"MESHCODE":"5339350632","揺全壊":16.80946},"geometry":{"type":"Polygon","coordinates":[[[139.70312794000006,35.58750016700009],[139.70625294600006,35.58750015900006],[139.70625295500008,35.58958315800004],[139.70312794900008,35.58958316400009],[139.70312794000006,35.58750016700009]]]}},{"type":"Feature","id":6205,"properties":{"MESHCODE":"5339350633","揺全壊":20.50878},"geometry":{"type":"Polygon","coordinates":[[[139.70000294300007,35.58958317200006],[139.70312794900008,35.58958316400009],[139.70312795900008,35.59166716200008],[139.70000295300008,35.59166717000005],[139.70000294300007,35.58958317200006]]]}},{"type":"Feature","id":6207,"properties":{"MESHCODE":"5339350641","揺全壊":23.05821},"geometry":{"type":"Polygon","coordinates":[[[139.70625294600006,35.58750015900006],[139.70937795200007,35.587500153000065],[139.70937796200008,35.58958315000007],[139.70625295500008,35.58958315800004],[139.70625294600006,35.58750015900006]]]}},{"type":"Feature","id":6237,"properties":{"MESHCODE":"5339350833","揺全壊":21.53544},"geometry":{"type":"Polygon","coordinates":[[[139.72500299500007,35.58958311300006],[139.72812800200006,35.58958310600008],[139.72812801200007,35.59166710300008],[139.72500300600007,35.59166711100005],[139.72500299500007,35.58958311300006]]]}},{"type":"Feature","id":6275,"properties":{"MESHCODE":"5339351224","揺全壊":15.03995},"geometry":{"type":"Polygon","coordinates":[[[139.659377844,35.59375023800004],[139.66250285400008,35.59375023500007],[139.662502861,35.595833233000064],[139.65937785000006,35.59583323600009],[139.659377844,35.59375023800004]]]}},{"type":"Feature","id":6308,"properties":{"MESHCODE":"5339351431","揺全壊":19.70025},"geometry":{"type":"Polygon","coordinates":[[[139.67500290300006,35.595833215000084],[139.67812791200004,35.59583321000008],[139.67812791900008,35.59791720800007],[139.6750029100001,35.59791721300007],[139.67500290300006,35.595833215000084]]]}},{"type":"Feature","id":6316,"properties":{"MESHCODE":"5339351511","揺全壊":22.25391},"geometry":{"type":"Polygon","coordinates":[[[139.68750292200002,35.59166719700005],[139.69062792900002,35.59166719000007],[139.69062793800003,35.59375018800006],[139.68750293000005,35.59375019500004],[139.68750292200002,35.59166719700005]]]}},{"type":"Feature","id":6320,"properties":{"MESHCODE":"5339351521","揺全壊":19.05328},"geometry":{"type":"Polygon","coordinates":[[[139.693752937,35.59166718400007],[139.6968779450001,35.591667176000044],[139.696877954,35.593750174000036],[139.69375294600002,35.593750181000075],[139.693752937,35.59166718400007]]]}},{"type":"Feature","id":6323,"properties":{"MESHCODE":"5339351524","揺全壊":23.11295},"geometry":{"type":"Polygon","coordinates":[[[139.696877954,35.593750174000036],[139.700002961,35.59375016800004],[139.70000297,35.595833165000045],[139.69687796200003,35.595833172000084],[139.696877954,35.593750174000036]]]}},{"type":"Feature","id":6332,"properties":{"MESHCODE":"5339351611","揺全壊":23.84207},"geometry":{"type":"Polygon","coordinates":[[[139.70000295300008,35.59166717000005],[139.70312795900008,35.59166716200008],[139.7031279680001,35.59375016000007],[139.700002961,35.59375016800004],[139.70000295300008,35.59166717000005]]]}},{"type":"Feature","id":6335,"properties":{"MESHCODE":"5339351614","揺全壊":24.42635},"geometry":{"type":"Polygon","coordinates":[[[139.7031279680001,35.59375016000007],[139.706252974,35.59375015400008],[139.706252983,35.59583315100008],[139.703127977,35.59583315800006],[139.7031279680001,35.59375016000007]]]}},{"type":"Feature","id":6336,"properties":{"MESHCODE":"5339351621","揺全壊":22.00415},"geometry":{"type":"Polygon","coordinates":[[[139.7062529650001,35.591667156000085],[139.7093779710001,35.591667148000056],[139.7093779810001,35.59375014600005],[139.706252974,35.59375015400008],[139.7062529650001,35.591667156000085]]]}},{"type":"Feature","id":6338,"properties":{"MESHCODE":"5339351623","揺全壊":21.67709},"geometry":{"type":"Polygon","coordinates":[[[139.706252974,35.59375015400008],[139.7093779810001,35.59375014600005],[139.70937799,35.59583314400004],[139.706252983,35.59583315100008],[139.706252974,35.59375015400008]]]}},{"type":"Feature","id":6341,"properties":{"MESHCODE":"5339351632","揺全壊":22.65576},"geometry":{"type":"Polygon","coordinates":[[[139.703127977,35.59583315800006],[139.706252983,35.59583315100008],[139.70625299200003,35.59791714900007],[139.70312798500004,35.59791715600005],[139.703127977,35.59583315800006]]]}},{"type":"Feature","id":6349,"properties":{"MESHCODE":"5339351712","揺全壊":24.89553},"geometry":{"type":"Polygon","coordinates":[[[139.71562798500008,35.59166713400003],[139.71875299200008,35.59166712700005],[139.71875300200008,35.59375012400005],[139.7156279940001,35.59375013200008],[139.71562798500008,35.59166713400003]]]}},{"type":"Feature","id":6362,"properties":{"MESHCODE":"5339351743","揺全壊":20.00852},"geometry":{"type":"Polygon","coordinates":[[[139.7187530220001,35.597917120000034],[139.7218780290001,35.59791711300005],[139.7218780390001,35.60000011100004],[139.718753032,35.60000011800008],[139.7187530220001,35.597917120000034]]]}},{"type":"Feature","id":6373,"properties":{"MESHCODE":"5339351832","揺全壊":19.20476},"geometry":{"type":"Polygon","coordinates":[[[139.72812803400006,35.59583310000005],[139.73125304100006,35.59583309200008],[139.73125305200006,35.59791709000007],[139.72812804400007,35.59791709700005],[139.72812803400006,35.59583310000005]]]}},{"type":"Feature","id":6433,"properties":{"MESHCODE":"5339352243","揺全壊":16.99506},"geometry":{"type":"Polygon","coordinates":[[[139.65625287300008,35.60625023100005],[139.65937788400004,35.60625022800008],[139.6593778900001,35.60833322600007],[139.65625287900002,35.60833322900004],[139.65625287300008,35.60625023100005]]]}},{"type":"Feature","id":6437,"properties":{"MESHCODE":"5339352313","揺全壊":15.24906},"geometry":{"type":"Polygon","coordinates":[[[139.662502882,35.60208322900007],[139.6656278910001,35.60208322300008],[139.66562789900001,35.60416722200006],[139.66250288800006,35.60416722600007],[139.662502882,35.60208322900007]]]}},{"type":"Feature","id":6443,"properties":{"MESHCODE":"5339352331","揺全壊":16.7762},"geometry":{"type":"Polygon","coordinates":[[[139.66250288800006,35.60416722600007],[139.66562789900001,35.60416722200006],[139.66562790500006,35.60625021900006],[139.662502893,35.60625022500005],[139.66250288800006,35.60416722600007]]]}},{"type":"Feature","id":6452,"properties":{"MESHCODE":"5339352412","揺全壊":22.79171},"geometry":{"type":"Polygon","coordinates":[[[139.678127925,35.60000020600006],[139.6812529350001,35.60000020000007],[139.68125294200001,35.60208319800006],[139.67812793200005,35.60208320300006],[139.678127925,35.60000020600006]]]}},{"type":"Feature","id":6453,"properties":{"MESHCODE":"5339352413","揺全壊":18.09514},"geometry":{"type":"Polygon","coordinates":[[[139.67500292400007,35.60208320900006],[139.67812793200005,35.60208320300006],[139.67812794000008,35.60416720100005],[139.675002931,35.604167207000046],[139.67500292400007,35.60208320900006]]]}},{"type":"Feature","id":6454,"properties":{"MESHCODE":"5339352414","揺全壊":23.00389},"geometry":{"type":"Polygon","coordinates":[[[139.67812793200005,35.60208320300006],[139.68125294200001,35.60208319800006],[139.68125294900005,35.60416719500006],[139.67812794000008,35.60416720100005],[139.67812793200005,35.60208320300006]]]}},{"type":"Feature","id":6460,"properties":{"MESHCODE":"5339352432","揺全壊":15.61845},"geometry":{"type":"Polygon","coordinates":[[[139.67812794000008,35.60416720100005],[139.68125294900005,35.60416719500006],[139.68125295700008,35.60625019200006],[139.678127947,35.606250199000044],[139.67812794000008,35.60416720100005]]]}},{"type":"Feature","id":6461,"properties":{"MESHCODE":"5339352433","揺全壊":21.63475},"geometry":{"type":"Polygon","coordinates":[[[139.67500293800003,35.60625020500004],[139.678127947,35.606250199000044],[139.67812795400005,35.608333196000046],[139.67500294400008,35.608333203000086],[139.67500293800003,35.60625020500004]]]}},{"type":"Feature","id":6475,"properties":{"MESHCODE":"5339352531","揺全壊":21.64628},"geometry":{"type":"Polygon","coordinates":[[[139.6875029680001,35.60416718300007],[139.69062797700008,35.60416717700008],[139.6906279850001,35.60625017400008],[139.68750297500003,35.606250181000064],[139.6875029680001,35.60416718300007]]]}},{"type":"Feature","id":6486,"properties":{"MESHCODE":"5339352614","揺全壊":19.98191},"geometry":{"type":"Polygon","coordinates":[[[139.70312800300007,35.602083152000034],[139.70625301100006,35.60208314500005],[139.70625302000008,35.60416714200005],[139.7031280120001,35.60416715000008],[139.70312800300007,35.602083152000034]]]}},{"type":"Feature","id":6489,"properties":{"MESHCODE":"5339352623","揺全壊":15.28049},"geometry":{"type":"Polygon","coordinates":[[[139.70625301100006,35.60208314500005],[139.70937801900004,35.60208313800007],[139.70937802800006,35.60416713500007],[139.70625302000008,35.60416714200005],[139.70625301100006,35.60208314500005]]]}},{"type":"Feature","id":6496,"properties":{"MESHCODE":"5339352642","揺全壊":21.63411},"geometry":{"type":"Polygon","coordinates":[[[139.70937802800006,35.60416713500007],[139.71250303600004,35.604167128000086],[139.71250304600005,35.60625012500009],[139.70937803800007,35.60625013300006],[139.70937802800006,35.60416713500007]]]}},{"type":"Feature","id":6500,"properties":{"MESHCODE":"5339352712","揺全壊":17.06361},"geometry":{"type":"Polygon","coordinates":[[[139.715628024,35.600000126000054],[139.718753032,35.60000011800008],[139.718753042,35.602083115000084],[139.71562803400002,35.60208312300006],[139.715628024,35.600000126000054]]]}},{"type":"Feature","id":6502,"properties":{"MESHCODE":"5339352714","揺全壊":23.75355},"geometry":{"type":"Polygon","coordinates":[[[139.71562803400002,35.60208312300006],[139.718753042,35.602083115000084],[139.718753052,35.604167113000074],[139.71562804400003,35.60416712000006],[139.71562803400002,35.60208312300006]]]}},{"type":"Feature","id":6512,"properties":{"MESHCODE":"5339352742","揺全壊":15.02309},"geometry":{"type":"Polygon","coordinates":[[[139.72187806,35.604167106000034],[139.7250030680001,35.60416709800006],[139.7250030790001,35.60625009700004],[139.7218780710001,35.606250103000036],[139.72187806,35.604167106000034]]]}},{"type":"Feature","id":6513,"properties":{"MESHCODE":"5339352743","揺全壊":15.39673},"geometry":{"type":"Polygon","coordinates":[[[139.71875306200002,35.606250111000065],[139.7218780710001,35.606250103000036],[139.72187808,35.608333102000074],[139.71875307200003,35.60833310800007],[139.71875306200002,35.606250111000065]]]}},{"type":"Feature","id":6514,"properties":{"MESHCODE":"5339352744","揺全壊":20.02362},"geometry":{"type":"Polygon","coordinates":[[[139.7218780710001,35.606250103000036],[139.7250030790001,35.60625009700004],[139.725003088,35.608333094000045],[139.72187808,35.608333102000074],[139.7218780710001,35.606250103000036]]]}},{"type":"Feature","id":6523,"properties":{"MESHCODE":"5339352831","揺全壊":23.43802},"geometry":{"type":"Polygon","coordinates":[[[139.7250030680001,35.60416709800006],[139.72812807600008,35.60416709100008],[139.72812808700007,35.60625008900007],[139.7250030790001,35.60625009700004],[139.7250030680001,35.60416709800006]]]}},{"type":"Feature","id":6528,"properties":{"MESHCODE":"5339352842","揺全壊":19.77037},"geometry":{"type":"Polygon","coordinates":[[[139.73437809200004,35.60416707600007],[139.73750310000003,35.60416706800004],[139.737503112,35.60625006600009],[139.73437810300004,35.60625007300007],[139.73437809200004,35.60416707600007]]]}},{"type":"Feature","id":6539,"properties":{"MESHCODE":"5339352931","揺全壊":19.71318},"geometry":{"type":"Polygon","coordinates":[[[139.73750310000003,35.60416706800004],[139.740628108,35.604167061000055],[139.74062812,35.60625005900005],[139.737503112,35.60625006600009],[139.73750310000003,35.60416706800004]]]}},{"type":"Feature","id":6541,"properties":{"MESHCODE":"5339352933","揺全壊":21.04514},"geometry":{"type":"Polygon","coordinates":[[[139.737503112,35.60625006600009],[139.74062812,35.60625005900005],[139.74062813,35.60833305700004],[139.73750312200002,35.60833306400008],[139.737503112,35.60625006600009]]]}},{"type":"Feature","id":6562,"properties":{"MESHCODE":"5339353044","揺全壊":21.39609},"geometry":{"type":"Polygon","coordinates":[[[139.63437782800008,35.614583243000084],[139.63750283600007,35.61458324200004],[139.637502842,35.61666724100007],[139.63437783400002,35.61666724200006],[139.63437782800008,35.614583243000084]]]}},{"type":"Feature","id":6563,"properties":{"MESHCODE":"5339353111","揺全壊":19.86944},"geometry":{"type":"Polygon","coordinates":[[[139.63750281900002,35.60833324500004],[139.6406278290001,35.60833324200007],[139.64062783500003,35.61041724200004],[139.63750282500007,35.610417244000075],[139.63750281900002,35.60833324500004]]]}},{"type":"Feature","id":6565,"properties":{"MESHCODE":"5339353113","揺全壊":21.94659},"geometry":{"type":"Polygon","coordinates":[[[139.63750282500007,35.610417244000075],[139.64062783500003,35.61041724200004],[139.64062784100008,35.61250024100008],[139.63750283000002,35.612500243000056],[139.63750282500007,35.610417244000075]]]}},{"type":"Feature","id":6571,"properties":{"MESHCODE":"5339353131","揺全壊":17.25061},"geometry":{"type":"Polygon","coordinates":[[[139.63750283000002,35.612500243000056],[139.64062784100008,35.61250024100008],[139.64062784600003,35.61458324000006],[139.63750283600007,35.61458324200004],[139.63750283000002,35.612500243000056]]]}},{"type":"Feature","id":6585,"properties":{"MESHCODE":"5339353223","揺全壊":15.89235},"geometry":{"type":"Polygon","coordinates":[[[139.65625288500007,35.610417228000074],[139.65937789600002,35.61041722400006],[139.65937790300006,35.61250022300004],[139.6562528930001,35.612500226000066],[139.65625288500007,35.610417228000074]]]}},{"type":"Feature","id":6595,"properties":{"MESHCODE":"5339353311","揺全壊":21.9982},"geometry":{"type":"Polygon","coordinates":[[[139.66250290000005,35.608333222000056],[139.665627911,35.60833321800004],[139.66562791800004,35.61041721500004],[139.6625029070001,35.610417221000034],[139.66250290000005,35.608333222000056]]]}},{"type":"Feature","id":6599,"properties":{"MESHCODE":"5339353321","揺全壊":18.74134},"geometry":{"type":"Polygon","coordinates":[[[139.66875292200007,35.60833321300004],[139.671877934,35.608333207000044],[139.67187794100005,35.61041720600008],[139.668752929,35.61041721100008],[139.66875292200007,35.60833321300004]]]}},{"type":"Feature","id":6600,"properties":{"MESHCODE":"5339353322","揺全壊":18.66628},"geometry":{"type":"Polygon","coordinates":[[[139.671877934,35.608333207000044],[139.67500294400008,35.608333203000086],[139.675002951,35.610417201000075],[139.67187794100005,35.61041720600008],[139.671877934,35.608333207000044]]]}},{"type":"Feature","id":6633,"properties":{"MESHCODE":"5339353523","揺全壊":23.34543},"geometry":{"type":"Polygon","coordinates":[[[139.693753011,35.61041716300008],[139.6968780210001,35.61041715600004],[139.696878029,35.61250015400009],[139.69375301900004,35.61250016100007],[139.693753011,35.61041716300008]]]}},{"type":"Feature","id":6640,"properties":{"MESHCODE":"5339353542","揺全壊":17.92049},"geometry":{"type":"Polygon","coordinates":[[[139.696878029,35.61250015400009],[139.70000303900008,35.61250014700005],[139.700003047,35.61458314400005],[139.69687803700003,35.61458315100003],[139.696878029,35.61250015400009]]]}},{"type":"Feature","id":6643,"properties":{"MESHCODE":"5339353611","揺全壊":21.5211},"geometry":{"type":"Polygon","coordinates":[[[139.70000302300002,35.608333153000046],[139.703128031,35.608333145000074],[139.70312804000002,35.610417142000074],[139.70000303100005,35.610417150000046],[139.70000302300002,35.608333153000046]]]}},{"type":"Feature","id":6664,"properties":{"MESHCODE":"5339353722","揺全壊":15.06416},"geometry":{"type":"Polygon","coordinates":[[[139.72187808,35.608333102000074],[139.725003088,35.608333094000045],[139.7250030990001,35.610417092000034],[139.72187809000002,35.610417099000074],[139.72187808,35.608333102000074]]]}},{"type":"Feature","id":6666,"properties":{"MESHCODE":"5339353724","揺全壊":15.95565},"geometry":{"type":"Polygon","coordinates":[[[139.72187809000002,35.610417099000074],[139.7250030990001,35.610417092000034],[139.7250031100001,35.61250008900004],[139.72187810100002,35.612500096000076],[139.72187809000002,35.610417099000074]]]}},{"type":"Feature","id":6672,"properties":{"MESHCODE":"5339353742","揺全壊":16.59072},"geometry":{"type":"Polygon","coordinates":[[[139.72187810100002,35.612500096000076],[139.7250031100001,35.61250008900004],[139.72500312,35.61458308600004],[139.72187811100002,35.61458309400007],[139.72187810100002,35.612500096000076]]]}},{"type":"Feature","id":6688,"properties":{"MESHCODE":"5339353842","揺全壊":21.08575},"geometry":{"type":"Polygon","coordinates":[[[139.73437813600003,35.61250006700004],[139.737503145,35.61250006000006],[139.737503156,35.61458305700006],[139.73437814700003,35.61458306500003],[139.73437813600003,35.61250006700004]]]}},{"type":"Feature","id":6713,"properties":{"MESHCODE":"5339354023","揺全壊":21.33501},"geometry":{"type":"Polygon","coordinates":[[[139.6312528320001,35.61875024200009],[139.63437784000007,35.61875024200009],[139.634377846,35.62083324100007],[139.63125283800002,35.62083324100007],[139.6312528320001,35.61875024200009]]]}},{"type":"Feature","id":6714,"properties":{"MESHCODE":"5339354024","揺全壊":21.51084},"geometry":{"type":"Polygon","coordinates":[[[139.63437784000007,35.61875024200009],[139.63750284800005,35.61875024100004],[139.6375028540001,35.62083324100007],[139.634377846,35.62083324100007],[139.63437784000007,35.61875024200009]]]}},{"type":"Feature","id":6716,"properties":{"MESHCODE":"5339354032","揺全壊":20.25686},"geometry":{"type":"Polygon","coordinates":[[[139.62812783000004,35.62083324200006],[139.63125283800002,35.62083324100007],[139.63125284400007,35.62291724100004],[139.6281278360001,35.62291724100004],[139.62812783000004,35.62083324200006]]]}},{"type":"Feature","id":6717,"properties":{"MESHCODE":"5339354033","揺全壊":19.13755},"geometry":{"type":"Polygon","coordinates":[[[139.6250028280001,35.622917242000085],[139.6281278360001,35.62291724100004],[139.62812784200003,35.625000241000066],[139.62500283300005,35.625000241000066],[139.6250028280001,35.622917242000085]]]}},{"type":"Feature","id":6718,"properties":{"MESHCODE":"5339354034","揺全壊":17.15209},"geometry":{"type":"Polygon","coordinates":[[[139.6281278360001,35.62291724100004],[139.63125284400007,35.62291724100004],[139.63125285,35.62500024000008],[139.62812784200003,35.625000241000066],[139.6281278360001,35.62291724100004]]]}},{"type":"Feature","id":6719,"properties":{"MESHCODE":"5339354041","揺全壊":22.9226},"geometry":{"type":"Polygon","coordinates":[[[139.63125283800002,35.62083324100007],[139.634377846,35.62083324100007],[139.63437785200006,35.62291724000005],[139.63125284400007,35.62291724100004],[139.63125283800002,35.62083324100007]]]}},{"type":"Feature","id":6721,"properties":{"MESHCODE":"5339354043","揺全壊":23.29528},"geometry":{"type":"Polygon","coordinates":[[[139.63125284400007,35.62291724100004],[139.63437785200006,35.62291724000005],[139.634377858,35.62500023900009],[139.63125285,35.62500024000008],[139.63125284400007,35.62291724100004]]]}},{"type":"Feature","id":6723,"properties":{"MESHCODE":"5339354111","揺全壊":15.59117},"geometry":{"type":"Polygon","coordinates":[[[139.637502842,35.61666724100007],[139.64062785200008,35.61666723900004],[139.64062785800002,35.618750238000075],[139.63750284800005,35.61875024100004],[139.637502842,35.61666724100007]]]}},{"type":"Feature","id":6725,"properties":{"MESHCODE":"5339354113","揺全壊":22.39223},"geometry":{"type":"Polygon","coordinates":[[[139.63750284800005,35.61875024100004],[139.64062785800002,35.618750238000075],[139.64062786400007,35.620833238000046],[139.6375028540001,35.62083324100007],[139.63750284800005,35.61875024100004]]]}},{"type":"Feature","id":6726,"properties":{"MESHCODE":"5339354114","揺全壊":19.16604},"geometry":{"type":"Polygon","coordinates":[[[139.64062785800002,35.618750238000075],[139.64375286900008,35.61875023600004],[139.64375287500002,35.62083323500008],[139.64062786400007,35.620833238000046],[139.64062785800002,35.618750238000075]]]}},{"type":"Feature","id":6789,"properties":{"MESHCODE":"5339354513","揺全壊":15.45036},"geometry":{"type":"Polygon","coordinates":[[[139.68750302500007,35.61875016700009],[139.69062803500003,35.61875016000005],[139.69062804400005,35.62083315800004],[139.6875030340001,35.62083316500008],[139.68750302500007,35.61875016700009]]]}},{"type":"Feature","id":6795,"properties":{"MESHCODE":"5339354531","揺全壊":17.9995},"geometry":{"type":"Polygon","coordinates":[[[139.6875030340001,35.62083316500008],[139.69062804400005,35.62083315800004],[139.69062805200008,35.622917156000085],[139.687503042,35.62291716300007],[139.6875030340001,35.62083316500008]]]}},{"type":"Feature","id":6796,"properties":{"MESHCODE":"5339354532","揺全壊":23.15873},"geometry":{"type":"Polygon","coordinates":[[[139.69062804400005,35.62083315800004],[139.69375305300002,35.620833152000046],[139.69375306200004,35.622917149000045],[139.69062805200008,35.622917156000085],[139.69062804400005,35.62083315800004]]]}},{"type":"Feature","id":6798,"properties":{"MESHCODE":"5339354534","揺全壊":23.94562},"geometry":{"type":"Polygon","coordinates":[[[139.69062805200008,35.622917156000085],[139.69375306200004,35.622917149000045],[139.69375307000007,35.62500014700004],[139.6906280610001,35.62500015400008],[139.69062805200008,35.622917156000085]]]}},{"type":"Feature","id":6807,"properties":{"MESHCODE":"5339354621","揺全壊":15.91256},"geometry":{"type":"Polygon","coordinates":[[[139.70625307500006,35.616667128000074],[139.70937808400004,35.616667121000035],[139.70937809400004,35.61875011800004],[139.70625308400008,35.618750125000076],[139.70625307500006,35.616667128000074]]]}},{"type":"Feature","id":6868,"properties":{"MESHCODE":"5339355012","揺全壊":15.99834},"geometry":{"type":"Polygon","coordinates":[[[139.62812784200003,35.625000241000066],[139.63125285,35.62500024000008],[139.63125285500007,35.62708324000005],[139.6281278470001,35.62708324100004],[139.62812784200003,35.625000241000066]]]}},{"type":"Feature","id":6870,"properties":{"MESHCODE":"5339355014","揺全壊":17.90397},"geometry":{"type":"Polygon","coordinates":[[[139.6281278470001,35.62708324100004],[139.63125285500007,35.62708324000005],[139.63125286000002,35.62916723900008],[139.62812785300002,35.62916724000007],[139.6281278470001,35.62708324100004]]]}},{"type":"Feature","id":6873,"properties":{"MESHCODE":"5339355023","揺全壊":15.35199},"geometry":{"type":"Polygon","coordinates":[[[139.63125285500007,35.62708324000005],[139.63437786300005,35.62708323900006],[139.634377868,35.629167238000036],[139.63125286000002,35.62916723900008],[139.63125285500007,35.62708324000005]]]}},{"type":"Feature","id":6874,"properties":{"MESHCODE":"5339355024","揺全壊":20.98113},"geometry":{"type":"Polygon","coordinates":[[[139.63437786300005,35.62708323900006],[139.63750287200003,35.62708323800007],[139.6375028760001,35.629167238000036],[139.634377868,35.629167238000036],[139.63437786300005,35.62708323900006]]]}},{"type":"Feature","id":6877,"properties":{"MESHCODE":"5339355033","揺全壊":17.5722},"geometry":{"type":"Polygon","coordinates":[[[139.6250028500001,35.63125024000004],[139.6281278570001,35.63125023900005],[139.62812786300003,35.633333238000034],[139.62500285600004,35.63333323900008],[139.6250028500001,35.63125024000004]]]}},{"type":"Feature","id":6937,"properties":{"MESHCODE":"5339355423","揺全壊":16.82349},"geometry":{"type":"Polygon","coordinates":[[[139.68125303500005,35.62708317100004],[139.684378046,35.627083165000045],[139.68437805400004,35.629167162000044],[139.6812530420001,35.629167169000084],[139.68125303500005,35.62708317100004]]]}},{"type":"Feature","id":6938,"properties":{"MESHCODE":"5339355424","揺全壊":18.05941},"geometry":{"type":"Polygon","coordinates":[[[139.684378046,35.627083165000045],[139.68750305800006,35.62708315800006],[139.68750306700008,35.62916715600005],[139.68437805400004,35.629167162000044],[139.684378046,35.627083165000045]]]}},{"type":"Feature","id":6943,"properties":{"MESHCODE":"5339355441","揺全壊":17.50877},"geometry":{"type":"Polygon","coordinates":[[[139.6812530420001,35.629167169000084],[139.68437805400004,35.629167162000044],[139.68437806300005,35.631250160000036],[139.68125305,35.631250166000086],[139.6812530420001,35.629167169000084]]]}},{"type":"Feature","id":6944,"properties":{"MESHCODE":"5339355442","揺全壊":21.68489},"geometry":{"type":"Polygon","coordinates":[[[139.68437805400004,35.629167162000044],[139.68750306700008,35.62916715600005],[139.687503075,35.63125015300005],[139.68437806300005,35.631250160000036],[139.68437805400004,35.629167162000044]]]}},{"type":"Feature","id":6953,"properties":{"MESHCODE":"5339355523","揺全壊":22.71376},"geometry":{"type":"Polygon","coordinates":[[[139.69375308000008,35.62708314400004],[139.69687809100003,35.627083138000046],[139.69687810000005,35.629167135000046],[139.6937530890001,35.629167142000085],[139.69375308000008,35.62708314400004]]]}},{"type":"Feature","id":6957,"properties":{"MESHCODE":"5339355533","揺全壊":23.95205},"geometry":{"type":"Polygon","coordinates":[[[139.687503075,35.63125015300005],[139.69062808700005,35.63125014600007],[139.69062809500008,35.63333314300007],[139.68750308300002,35.633333150000055],[139.687503075,35.63125015300005]]]}},{"type":"Feature","id":6962,"properties":{"MESHCODE":"5339355544","揺全壊":21.90791},"geometry":{"type":"Polygon","coordinates":[[[139.69687810900007,35.63125013200005],[139.700003121,35.631250125000065],[139.70000313000003,35.63333312200007],[139.69687811900008,35.63333312900005],[139.69687810900007,35.63125013200005]]]}},{"type":"Feature","id":7027,"properties":{"MESHCODE":"5339356011","揺全壊":16.39126},"geometry":{"type":"Polygon","coordinates":[[[139.62500285600004,35.63333323900008],[139.62812786300003,35.633333238000034],[139.6281278680001,35.63541723800006],[139.62500286,35.63541723900005],[139.62500285600004,35.63333323900008]]]}},{"type":"Feature","id":7037,"properties":{"MESHCODE":"5339356033","揺全壊":21.56962},"geometry":{"type":"Polygon","coordinates":[[[139.62500287,35.639583239000046],[139.6281278780001,35.63958323800006],[139.62812788300005,35.64166723800008],[139.62500287500006,35.64166723900007],[139.62500287,35.639583239000046]]]}},{"type":"Feature","id":7038,"properties":{"MESHCODE":"5339356034","揺全壊":15.54772},"geometry":{"type":"Polygon","coordinates":[[[139.6281278780001,35.63958323800006],[139.63125288600008,35.63958323600008],[139.63125289100003,35.641667236000046],[139.62812788300005,35.64166723800008],[139.6281278780001,35.63958323800006]]]}},{"type":"Feature","id":7058,"properties":{"MESHCODE":"5339356144","揺全壊":15.77104},"geometry":{"type":"Polygon","coordinates":[[[139.64687794000008,35.639583222000056],[139.65000295100003,35.63958321800004],[139.65000295800007,35.64166721600009],[139.64687794600002,35.641667221000034],[139.64687794000008,35.639583222000056]]]}},{"type":"Feature","id":7060,"properties":{"MESHCODE":"5339356212","揺全壊":16.88879},"geometry":{"type":"Polygon","coordinates":[[[139.65312794400006,35.633333217000086],[139.6562529570001,35.63333321300007],[139.65625296400003,35.63541721100006],[139.6531279510001,35.635417215000075],[139.65312794400006,35.633333217000086]]]}},{"type":"Feature","id":7065,"properties":{"MESHCODE":"5339356223","揺全壊":18.46472},"geometry":{"type":"Polygon","coordinates":[[[139.65625296400003,35.63541721100006],[139.65937797800007,35.63541720600006],[139.6593779850001,35.63750020400005],[139.65625297200006,35.63750020900005],[139.65625296400003,35.63541721100006]]]}},{"type":"Feature","id":7074,"properties":{"MESHCODE":"5339356244","揺全壊":15.2346},"geometry":{"type":"Polygon","coordinates":[[[139.65937799200003,35.63958320200004],[139.66250300700005,35.639583196000046],[139.6625030140001,35.641667194000036],[139.659378,35.641667200000086],[139.65937799200003,35.63958320200004]]]}},{"type":"Feature","id":7084,"properties":{"MESHCODE":"5339356332","揺全壊":22.83746},"geometry":{"type":"Polygon","coordinates":[[[139.66562801200007,35.63750019200006],[139.668753025,35.63750018600007],[139.66875303300003,35.63958318300007],[139.6656280200001,35.63958319000005],[139.66562801200007,35.63750019200006]]]}},{"type":"Feature","id":7086,"properties":{"MESHCODE":"5339356334","揺全壊":15.90892},"geometry":{"type":"Polygon","coordinates":[[[139.6656280200001,35.63958319000005],[139.66875303300003,35.63958318300007],[139.66875304100006,35.64166718100006],[139.66562802800001,35.64166718700005],[139.6656280200001,35.63958319000005]]]}},{"type":"Feature","id":7098,"properties":{"MESHCODE":"5339356424","揺全壊":16.99822},"geometry":{"type":"Polygon","coordinates":[[[139.6843780810001,35.63541715400004],[139.68750309300003,35.635417148000045],[139.68750310300004,35.63750014500005],[139.68437809,35.63750015100004],[139.6843780810001,35.63541715400004]]]}},{"type":"Feature","id":7099,"properties":{"MESHCODE":"5339356431","揺全壊":21.00602},"geometry":{"type":"Polygon","coordinates":[[[139.6750030510001,35.637500172000045],[139.678128065,35.63750016500006],[139.67812807400003,35.639583163000054],[139.67500306,35.63958316900005],[139.6750030510001,35.637500172000045]]]}},{"type":"Feature","id":7111,"properties":{"MESHCODE":"5339356521","揺全壊":18.28347},"geometry":{"type":"Polygon","coordinates":[[[139.69375310700002,35.63333313600009],[139.69687811900008,35.63333312900005],[139.69687812900008,35.63541712600005],[139.69375311700003,35.63541713400008],[139.69375310700002,35.63333313600009]]]}},{"type":"Feature","id":7112,"properties":{"MESHCODE":"5339356522","揺全壊":22.32524},"geometry":{"type":"Polygon","coordinates":[[[139.69687811900008,35.63333312900005],[139.70000313000003,35.63333312200007],[139.70000314100002,35.63541711900007],[139.69687812900008,35.63541712600005],[139.69687811900008,35.63333312900005]]]}},{"type":"Feature","id":7155,"properties":{"MESHCODE":"5339356811","揺全壊":20.63402},"geometry":{"type":"Polygon","coordinates":[[[139.72500321400003,35.633333064000055],[139.728128223,35.63333305700007],[139.728128234,35.63541705400007],[139.72500322400003,35.635417061000055],[139.72500321400003,35.633333064000055]]]}},{"type":"Feature","id":7156,"properties":{"MESHCODE":"5339356812","揺全壊":20.16164},"geometry":{"type":"Polygon","coordinates":[[[139.728128223,35.63333305700007],[139.73125323300007,35.63333305000009],[139.73125324400007,35.63541704800008],[139.728128234,35.63541705400007],[139.728128223,35.63333305700007]]]}},{"type":"Feature","id":7187,"properties":{"MESHCODE":"5339357011","揺全壊":15.35398},"geometry":{"type":"Polygon","coordinates":[[[139.62500287500006,35.64166723900007],[139.62812788300005,35.64166723800008],[139.628127888,35.64375023800005],[139.62500287900002,35.64375024000009],[139.62500287500006,35.64166723900007]]]}},{"type":"Feature","id":7203,"properties":{"MESHCODE":"5339357111","揺全壊":15.75957},"geometry":{"type":"Polygon","coordinates":[[[139.6375029080001,35.64166723300008],[139.64062792100003,35.64166723000005],[139.64062792700008,35.643750229000034],[139.63750291400004,35.64375023300005],[139.6375029080001,35.64166723300008]]]}},{"type":"Feature","id":7210,"properties":{"MESHCODE":"5339357124","揺全壊":18.85426},"geometry":{"type":"Polygon","coordinates":[[[139.64687795200007,35.64375022000007],[139.6500029660001,35.64375021600006],[139.65000297200004,35.64583321400005],[139.646877959,35.64583321900005],[139.64687795200007,35.64375022000007]]]}},{"type":"Feature","id":7211,"properties":{"MESHCODE":"5339357131","揺全壊":15.10616},"geometry":{"type":"Polygon","coordinates":[[[139.6375029190001,35.645833233000076],[139.64062793300002,35.64583322800007],[139.64062793900007,35.64791722800004],[139.63750292500004,35.64791723400009],[139.6375029190001,35.645833233000076]]]}},{"type":"Feature","id":7213,"properties":{"MESHCODE":"5339357133","揺全壊":18.02963},"geometry":{"type":"Polygon","coordinates":[[[139.63750292500004,35.64791723400009],[139.64062793900007,35.64791722800004],[139.64062794400002,35.65000022800007],[139.63750293100009,35.65000023300007],[139.63750292500004,35.64791723400009]]]}},{"type":"Feature","id":7215,"properties":{"MESHCODE":"5339357141","揺全壊":23.93157},"geometry":{"type":"Polygon","coordinates":[[[139.64375294600006,35.64583322400006],[139.646877959,35.64583321900005],[139.64687796600003,35.64791721800009],[139.643752952,35.647917223000036],[139.64375294600006,35.64583322400006]]]}},{"type":"Feature","id":7229,"properties":{"MESHCODE":"5339357233","揺全壊":15.0117},"geometry":{"type":"Polygon","coordinates":[[[139.65000297900008,35.64791721200004],[139.6531279940001,35.647917207000035],[139.65312800200002,35.65000020500008],[139.650002986,35.650000211000076],[139.65000297900008,35.64791721200004]]]}},{"type":"Feature","id":7246,"properties":{"MESHCODE":"5339357334","揺全壊":18.86083},"geometry":{"type":"Polygon","coordinates":[[[139.66562805500007,35.64791718100008],[139.6687530700001,35.64791717300005],[139.668753079,35.650000171000045],[139.66562806500008,35.650000179000074],[139.66562805500007,35.64791718100008]]]}},{"type":"Feature","id":7247,"properties":{"MESHCODE":"5339357341","揺全壊":15.26983},"geometry":{"type":"Polygon","coordinates":[[[139.66875306000009,35.64583317600005],[139.671878075,35.64583316800008],[139.671878084,35.64791716600007],[139.6687530700001,35.64791717300005],[139.66875306000009,35.64583317600005]]]}},{"type":"Feature","id":7362,"properties":{"MESHCODE":"5339358044","揺全壊":16.71756},"geometry":{"type":"Polygon","coordinates":[[[139.63437793700007,35.65625023400008],[139.63750295,35.65625023200005],[139.63750295600005,35.658333231000086],[139.634377943,35.658333234000054],[139.63437793700007,35.65625023400008]]]}},{"type":"Feature","id":7372,"properties":{"MESHCODE":"5339358132","揺全壊":16.92972},"geometry":{"type":"Polygon","coordinates":[[[139.64062795900008,35.65416722500004],[139.643752974,35.65416722000003],[139.64375298100003,35.65625021800008],[139.64062796500002,35.656250225000065],[139.64062795900008,35.65416722500004]]]}},{"type":"Feature","id":7374,"properties":{"MESHCODE":"5339358134","揺全壊":17.20704},"geometry":{"type":"Polygon","coordinates":[[[139.64062796500002,35.656250225000065],[139.64375298100003,35.65625021800008],[139.64375298900006,35.65833321700006],[139.64062797200006,35.65833322300006],[139.64062796500002,35.656250225000065]]]}},{"type":"Feature","id":7387,"properties":{"MESHCODE":"5339358231","揺全壊":17.8229},"geometry":{"type":"Polygon","coordinates":[[[139.65000300400004,35.65416720700006],[139.65312802000005,35.654167200000074],[139.65312803000006,35.65625019700008],[139.65000301300006,35.65625020500005],[139.65000300400004,35.65416720700006]]]}},{"type":"Feature","id":7391,"properties":{"MESHCODE":"5339358241","揺全壊":17.59553},"geometry":{"type":"Polygon","coordinates":[[[139.65625303700006,35.654167193000035],[139.65937805300007,35.65416718600005],[139.6593780620001,35.656250183000054],[139.65625304600007,35.65625019000004],[139.65625303700006,35.654167193000035]]]}},{"type":"Feature","id":7508,"properties":{"MESHCODE":"5339359012","揺全壊":16.02119},"geometry":{"type":"Polygon","coordinates":[[[139.62812791800002,35.65833324100004],[139.63125293100006,35.65833323700008],[139.631252936,35.66041723700005],[139.6281279220001,35.66041724100006],[139.62812791800002,35.65833324100004]]]}},{"type":"Feature","id":7511,"properties":{"MESHCODE":"5339359021","揺全壊":20.08796},"geometry":{"type":"Polygon","coordinates":[[[139.63125293100006,35.65833323700008],[139.634377943,35.658333234000054],[139.63437795100003,35.66041723300009],[139.631252936,35.66041723700005],[139.63125293100006,35.65833323700008]]]}},{"type":"Feature","id":7512,"properties":{"MESHCODE":"5339359022","揺全壊":24.02998},"geometry":{"type":"Polygon","coordinates":[[[139.634377943,35.658333234000054],[139.63750295600005,35.658333231000086],[139.63750296500007,35.66041722700004],[139.63437795100003,35.66041723300009],[139.634377943,35.658333234000054]]]}},{"type":"Feature","id":7515,"properties":{"MESHCODE":"5339359031","揺全壊":19.15427},"geometry":{"type":"Polygon","coordinates":[[[139.62500291100002,35.66250024700008],[139.62812792700004,35.66250024100009],[139.628127931,35.66458324200005],[139.6250029140001,35.66458324800004],[139.62500291100002,35.66250024700008]]]}},{"type":"Feature","id":7516,"properties":{"MESHCODE":"5339359032","揺全壊":17.38007},"geometry":{"type":"Polygon","coordinates":[[[139.62812792700004,35.66250024100009],[139.63125294300005,35.662500236000085],[139.631252948,35.664583235000066],[139.628127931,35.66458324200005],[139.62812792700004,35.66250024100009]]]}},{"type":"Feature","id":7520,"properties":{"MESHCODE":"5339359042","揺全壊":18.66228},"geometry":{"type":"Polygon","coordinates":[[[139.63437795800007,35.662500230000035],[139.63750297400009,35.66250022500009],[139.6375029830001,35.66458322200009],[139.634377965,35.66458322900007],[139.63437795800007,35.662500230000035]]]}},{"type":"Feature","id":7524,"properties":{"MESHCODE":"5339359112","揺全壊":17.9015},"geometry":{"type":"Polygon","coordinates":[[[139.64062797200006,35.65833322300006],[139.64375298900006,35.65833321700006],[139.64375299900007,35.66041721400006],[139.64062798200007,35.660417221000046],[139.64062797200006,35.65833322300006]]]}},{"type":"Feature","id":7533,"properties":{"MESHCODE":"5339359133","揺全壊":17.68905},"geometry":{"type":"Polygon","coordinates":[[[139.6375029830001,35.66458322200009],[139.6406280010001,35.66458321500005],[139.6406280110001,35.66666721200005],[139.637502992,35.66666722000008],[139.6375029830001,35.66458322200009]]]}},{"type":"Feature","id":7582,"properties":{"MESHCODE":"5339359434","揺全壊":18.46156},"geometry":{"type":"Polygon","coordinates":[[[139.678128206,35.66458312600008],[139.68125322100002,35.66458311800005],[139.681253233,35.66666711500005],[139.6781282180001,35.66666712300008],[139.678128206,35.66458312600008]]]}},{"type":"Feature","id":7607,"properties":{"MESHCODE":"5339359621","揺全壊":15.75785},"geometry":{"type":"Polygon","coordinates":[[[139.7062532870001,35.65833307200006],[139.70937829900004,35.65833306500008],[139.709378313,35.66041706200008],[139.70625330100006,35.66041706900006],[139.7062532870001,35.65833307200006]]]}},{"type":"Feature","id":8385,"properties":{"MESHCODE":"5339368034","揺全壊":16.12354},"geometry":{"type":"Polygon","coordinates":[[[139.7531284480001,35.65624997800006],[139.75625346100003,35.65624997200007],[139.756253475,35.65833297100005],[139.75312846100007,35.658332976000054],[139.7531284480001,35.65624997800006]]]}},{"type":"Feature","id":8523,"properties":{"MESHCODE":"5339368924","揺全壊":18.69946},"geometry":{"type":"Polygon","coordinates":[[[139.87187887100004,35.652082773000075],[139.8750038820001,35.652082766000035],[139.875003901,35.65416676700005],[139.87187889100005,35.65416677300004],[139.87187887100004,35.652082773000075]]]}},{"type":"Feature","id":8525,"properties":{"MESHCODE":"5339368932","揺全壊":15.39416},"geometry":{"type":"Polygon","coordinates":[[[139.86562886900003,35.654166785000086],[139.8687538800001,35.654166779000036],[139.868753899,35.65624977900006],[139.86562888800006,35.656249786000046],[139.86562886900003,35.654166785000086]]]}},{"type":"Feature","id":8526,"properties":{"MESHCODE":"5339368933","揺全壊":15.39868},"geometry":{"type":"Polygon","coordinates":[[[139.862503876,35.65624979100005],[139.86562888800006,35.656249786000046],[139.8656289060001,35.658332786000074],[139.86250389400004,35.65833279100008],[139.862503876,35.65624979100005]]]}},{"type":"Feature","id":8527,"properties":{"MESHCODE":"5339368934","揺全壊":16.37261},"geometry":{"type":"Polygon","coordinates":[[[139.86562888800006,35.656249786000046],[139.868753899,35.65624977900006],[139.86875391800004,35.658332779000034],[139.8656289060001,35.658332786000074],[139.86562888800006,35.656249786000046]]]}},{"type":"Feature","id":8528,"properties":{"MESHCODE":"5339368941","揺全壊":17.36292},"geometry":{"type":"Polygon","coordinates":[[[139.8687538800001,35.654166779000036],[139.87187889100005,35.65416677300004],[139.87187891000008,35.65624977300007],[139.868753899,35.65624977900006],[139.8687538800001,35.654166779000036]]]}},{"type":"Feature","id":8529,"properties":{"MESHCODE":"5339368942","揺全壊":18.50334},"geometry":{"type":"Polygon","coordinates":[[[139.87187889100005,35.65416677300004],[139.875003901,35.65416676700005],[139.87500392200002,35.65624976700008],[139.87187891000008,35.65624977300007],[139.87187889100005,35.65416677300004]]]}},{"type":"Feature","id":8530,"properties":{"MESHCODE":"5339368943","揺全壊":22.43731},"geometry":{"type":"Polygon","coordinates":[[[139.868753899,35.65624977900006],[139.87187891000008,35.65624977300007],[139.8718789300001,35.65833277300004],[139.86875391800004,35.658332779000034],[139.868753899,35.65624977900006]]]}},{"type":"Feature","id":8535,"properties":{"MESHCODE":"5339369014","揺全壊":19.16378},"geometry":{"type":"Polygon","coordinates":[[[139.75312847600003,35.66041697300005],[139.75625348900007,35.66041696900004],[139.75625350500002,35.66249996700009],[139.75312849,35.662499971000045],[139.75312847600003,35.66041697300005]]]}},{"type":"Feature","id":8541,"properties":{"MESHCODE":"5339369032","揺全壊":19.34649},"geometry":{"type":"Polygon","coordinates":[[[139.75312849,35.662499971000045],[139.75625350500002,35.66249996700009],[139.7562535190001,35.66458296400009],[139.75312850500006,35.66458297000008],[139.75312849,35.662499971000045]]]}},{"type":"Feature","id":8543,"properties":{"MESHCODE":"5339369034","揺全壊":16.12195},"geometry":{"type":"Polygon","coordinates":[[[139.75312850500006,35.66458297000008],[139.7562535190001,35.66458296400009],[139.75625353300006,35.66666696200008],[139.75312852000002,35.66666696700008],[139.75312850500006,35.66458297000008]]]}},{"type":"Feature","id":8565,"properties":{"MESHCODE":"5339369212","揺全壊":15.97952},"geometry":{"type":"Polygon","coordinates":[[[139.7781285650001,35.65833293400004],[139.78125357800002,35.65833292900004],[139.7812535930001,35.660416927000085],[139.77812858000004,35.66041693300008],[139.7781285650001,35.65833293400004]]]}},{"type":"Feature","id":8568,"properties":{"MESHCODE":"5339369221","揺全壊":15.9915},"geometry":{"type":"Polygon","coordinates":[[[139.78125357800002,35.65833292900004],[139.78437859000007,35.658332924000035],[139.78437860500003,35.66041692300007],[139.7812535930001,35.660416927000085],[139.78125357800002,35.65833292900004]]]}},{"type":"Feature","id":8574,"properties":{"MESHCODE":"5339369233","揺全壊":16.29176},"geometry":{"type":"Polygon","coordinates":[[[139.77500359700002,35.664582934000066],[139.77812861000007,35.66458293000005],[139.77812862400003,35.66666692900009],[139.7750036110001,35.666666933000045],[139.77500359700002,35.664582934000066]]]}},{"type":"Feature","id":8579,"properties":{"MESHCODE":"5339369244","揺全壊":16.91969},"geometry":{"type":"Polygon","coordinates":[[[139.78437863600004,35.66458292000004],[139.7875036480001,35.664582916000086],[139.78750366400004,35.666666914000075],[139.78437865,35.66666691900008],[139.78437863600004,35.66458292000004]]]}},{"type":"Feature","id":8610,"properties":{"MESHCODE":"5339369443","揺全壊":17.39753},"geometry":{"type":"Polygon","coordinates":[[[139.80625372200006,35.66458288600006],[139.809378734,35.66458288000007],[139.80937874900008,35.66666688000004],[139.806253738,35.66666688500004],[139.80625372200006,35.66458288600006]]]}},{"type":"Feature","id":8685,"properties":{"MESHCODE":"5339369932","揺全壊":20.15034},"geometry":{"type":"Polygon","coordinates":[[[139.86562894200006,35.66249978400009],[139.868753954,35.662499779000086],[139.86875397200004,35.66458277800007],[139.8656289590001,35.66458278400006],[139.86562894200006,35.66249978400009]]]}},{"type":"Feature","id":8687,"properties":{"MESHCODE":"5339369934","揺全壊":18.98962},"geometry":{"type":"Polygon","coordinates":[[[139.8656289590001,35.66458278400006],[139.86875397200004,35.66458277800007],[139.86875399000007,35.666666778000035],[139.86562897700003,35.66666678300004],[139.8656289590001,35.66458278400006]]]}},{"type":"Feature","id":8690,"properties":{"MESHCODE":"5339369943","揺全壊":16.67245},"geometry":{"type":"Polygon","coordinates":[[[139.86875397200004,35.66458277800007],[139.87187898500008,35.664582772000074],[139.871879004,35.66666677200004],[139.86875399000007,35.666666778000035],[139.86875397200004,35.66458277800007]]]}},{"type":"Feature","id":8706,"properties":{"MESHCODE":"5339378011","揺全壊":16.41846},"geometry":{"type":"Polygon","coordinates":[[[139.8750038610001,35.649999767000054],[139.87812886900008,35.64999976100006],[139.87812889000008,35.65208276100009],[139.8750038820001,35.652082766000035],[139.8750038610001,35.649999767000054]]]}},{"type":"Feature","id":8708,"properties":{"MESHCODE":"5339378013","揺全壊":15.73143},"geometry":{"type":"Polygon","coordinates":[[[139.8750038820001,35.652082766000035],[139.87812889000008,35.65208276100009],[139.8781289100001,35.654166761000056],[139.875003901,35.65416676700005],[139.8750038820001,35.652082766000035]]]}},{"type":"Feature","id":8709,"properties":{"MESHCODE":"5339378014","揺全壊":18.24283},"geometry":{"type":"Polygon","coordinates":[[[139.87812889000008,35.65208276100009],[139.88125389800007,35.65208275500004],[139.88125391900007,35.65416675500006],[139.8781289100001,35.654166761000056],[139.87812889000008,35.65208276100009]]]}},{"type":"Feature","id":8714,"properties":{"MESHCODE":"5339378031","揺全壊":15.16517},"geometry":{"type":"Polygon","coordinates":[[[139.875003901,35.65416676700005],[139.8781289100001,35.654166761000056],[139.8781289310001,35.65624976100008],[139.87500392200002,35.65624976700008],[139.875003901,35.65416676700005]]]}},{"type":"Feature","id":8715,"properties":{"MESHCODE":"5339378032","揺全壊":18.8543},"geometry":{"type":"Polygon","coordinates":[[[139.8781289100001,35.654166761000056],[139.88125391900007,35.65416675500006],[139.88125394000008,35.65624975600008],[139.8781289310001,35.65624976100008],[139.8781289100001,35.654166761000056]]]}},{"type":"Feature","id":14522,"properties":{"MESHCODE":"5339440711","揺全壊":19.0644},"geometry":{"type":"Polygon","coordinates":[[[139.58750301600003,35.66666713900008],[139.59062800800007,35.666667148000045],[139.59062802100004,35.66875014400006],[139.587503029,35.66875013500004],[139.58750301600003,35.66666713900008]]]}},{"type":"Feature","id":14548,"properties":{"MESHCODE":"5339440833","揺全壊":21.29732},"geometry":{"type":"Polygon","coordinates":[[[139.600003023,35.67291716200009],[139.60312801500004,35.67291717100005],[139.60312803,35.675000167000064],[139.6000030360001,35.675000159000035],[139.600003023,35.67291716200009]]]}},{"type":"Feature","id":14549,"properties":{"MESHCODE":"5339440834","揺全壊":18.50404},"geometry":{"type":"Polygon","coordinates":[[[139.60312801500004,35.67291717100005],[139.60625300800007,35.67291718000007],[139.60625302200003,35.67500017500004],[139.60312803,35.675000167000064],[139.60312801500004,35.67291717100005]]]}},{"type":"Feature","id":14698,"properties":{"MESHCODE":"5339441811","揺全壊":18.18421},"geometry":{"type":"Polygon","coordinates":[[[139.6000030360001,35.675000159000035],[139.60312803,35.675000167000064],[139.60312804400007,35.67708316100004],[139.60000305000005,35.67708315300007],[139.6000030360001,35.675000159000035]]]}},{"type":"Feature","id":14699,"properties":{"MESHCODE":"5339441812","揺全壊":19.69209},"geometry":{"type":"Polygon","coordinates":[[[139.60312803,35.675000167000064],[139.60625302200003,35.67500017500004],[139.6062530380001,35.67708316900007],[139.60312804400007,35.67708316100004],[139.60312803,35.675000167000064]]]}},{"type":"Feature","id":14700,"properties":{"MESHCODE":"5339441813","揺全壊":17.55234},"geometry":{"type":"Polygon","coordinates":[[[139.60000305000005,35.67708315300007],[139.60312804400007,35.67708316100004],[139.60312805800004,35.67916715500007],[139.60000306400002,35.679167147000044],[139.60000305000005,35.67708315300007]]]}},{"type":"Feature","id":14702,"properties":{"MESHCODE":"5339441821","揺全壊":16.8745},"geometry":{"type":"Polygon","coordinates":[[[139.60625302200003,35.67500017500004],[139.60937801500006,35.675000183000066],[139.609378031,35.67708317700004],[139.6062530380001,35.67708316900007],[139.60625302200003,35.67500017500004]]]}},{"type":"Feature","id":16013,"properties":{"MESHCODE":"5339450014","揺全壊":24.28155},"geometry":{"type":"Polygon","coordinates":[[[139.6281279540001,35.66875023300008],[139.63125297200008,35.66875022700009],[139.63125298900002,35.67083322000008],[139.628127974,35.67083322500008],[139.6281279540001,35.66875023300008]]]}},{"type":"Feature","id":16016,"properties":{"MESHCODE":"5339450023","揺全壊":20.6256},"geometry":{"type":"Polygon","coordinates":[[[139.63125297200008,35.66875022700009],[139.6343779890001,35.66875022000005],[139.63437800500003,35.67083321400008],[139.63125298900002,35.67083322000008],[139.63125297200008,35.66875022700009]]]}},{"type":"Feature","id":16026,"properties":{"MESHCODE":"5339450111","揺全壊":18.62751},"geometry":{"type":"Polygon","coordinates":[[[139.637502992,35.66666722000008],[139.6406280110001,35.66666721200005],[139.64062802500007,35.668750206000084],[139.6375030060001,35.668750214000056],[139.637502992,35.66666722000008]]]}},{"type":"Feature","id":16036,"properties":{"MESHCODE":"5339450133","揺全壊":22.52987},"geometry":{"type":"Polygon","coordinates":[[[139.637503035,35.672917203000054],[139.640628053,35.67291719600007],[139.64062806700008,35.67500019000005],[139.63750305000008,35.67500019700009],[139.637503035,35.672917203000054]]]}},{"type":"Feature","id":16037,"properties":{"MESHCODE":"5339450134","揺全壊":17.07188},"geometry":{"type":"Polygon","coordinates":[[[139.640628053,35.67291719600007],[139.6437530710001,35.67291718800004],[139.64375308500007,35.675000183000066],[139.64062806700008,35.67500019000005],[139.640628053,35.67291719600007]]]}},{"type":"Feature","id":16057,"properties":{"MESHCODE":"5339450244","揺全壊":17.54331},"geometry":{"type":"Polygon","coordinates":[[[139.65937816000007,35.67291715300007],[139.66250317800007,35.67291714600009],[139.66250319200003,35.675000142000044],[139.65937817400004,35.67500014800004],[139.65937816000007,35.67291715300007]]]}},{"type":"Feature","id":16078,"properties":{"MESHCODE":"5339450421","揺全壊":18.87683},"geometry":{"type":"Polygon","coordinates":[[[139.681253233,35.66666711500005],[139.68437824900002,35.66666710700008],[139.6843782630001,35.668750103000036],[139.6812532470001,35.668750111000065],[139.681253233,35.66666711500005]]]}},{"type":"Feature","id":16085,"properties":{"MESHCODE":"5339450434","揺全壊":24.50577},"geometry":{"type":"Polygon","coordinates":[[[139.678128259,35.67291710900008],[139.68125327500002,35.67291710200004],[139.6812532890001,35.675000097000066],[139.67812827400007,35.67500010400005],[139.678128259,35.67291710900008]]]}},{"type":"Feature","id":16175,"properties":{"MESHCODE":"5339451022","揺全壊":17.38474},"geometry":{"type":"Polygon","coordinates":[[[139.63437803800002,35.675000201000046],[139.63750305000008,35.67500019700009],[139.637503068,35.677083190000076],[139.63437805600006,35.677083193000044],[139.63437803800002,35.675000201000046]]]}},{"type":"Feature","id":16176,"properties":{"MESHCODE":"5339451023","揺全壊":16.88337},"geometry":{"type":"Polygon","coordinates":[[[139.631253044,35.67708319600007],[139.63437805600006,35.677083193000044],[139.6343780750001,35.67916718500004],[139.63125306300003,35.679167188000065],[139.631253044,35.67708319600007]]]}},{"type":"Feature","id":16177,"properties":{"MESHCODE":"5339451024","揺全壊":21.21806},"geometry":{"type":"Polygon","coordinates":[[[139.63437805600006,35.677083193000044],[139.637503068,35.677083190000076],[139.63750308600004,35.67916718200007],[139.6343780750001,35.67916718500004],[139.63437805600006,35.677083193000044]]]}},{"type":"Feature","id":16188,"properties":{"MESHCODE":"5339451113","揺全壊":16.60044},"geometry":{"type":"Polygon","coordinates":[[[139.637503068,35.677083190000076],[139.640628085,35.677083183000036],[139.64062810200005,35.67916717600008],[139.63750308600004,35.67916718200007],[139.637503068,35.677083190000076]]]}},{"type":"Feature","id":16195,"properties":{"MESHCODE":"5339451132","揺全壊":15.48509},"geometry":{"type":"Polygon","coordinates":[[[139.64062810200005,35.67916717600008],[139.64375311800006,35.679167170000085],[139.643753135,35.68125016200008],[139.6406281200001,35.681250169000066],[139.64062810200005,35.67916717600008]]]}},{"type":"Feature","id":16234,"properties":{"MESHCODE":"5339451411","揺全壊":15.5836},"geometry":{"type":"Polygon","coordinates":[[[139.67500325900005,35.67500011100009],[139.67812827400007,35.67500010400005],[139.67812828900003,35.67708309900007],[139.675003274,35.677083107000044],[139.67500325900005,35.67500011100009]]]}},{"type":"Feature","id":16235,"properties":{"MESHCODE":"5339451412","揺全壊":23.46924},"geometry":{"type":"Polygon","coordinates":[[[139.67812827400007,35.67500010400005],[139.6812532890001,35.675000097000066],[139.68125330400005,35.67708309300008],[139.67812828900003,35.67708309900007],[139.67812827400007,35.67500010400005]]]}},{"type":"Feature","id":16241,"properties":{"MESHCODE":"5339451424","揺全壊":20.36595},"geometry":{"type":"Polygon","coordinates":[[[139.68437831900007,35.67708308600004],[139.6875033350001,35.677083079000056],[139.68750335000004,35.679167075000066],[139.68437833500002,35.67916708200005],[139.68437831900007,35.67708308600004]]]}},{"type":"Feature","id":16242,"properties":{"MESHCODE":"5339451431","揺全壊":24.34349},"geometry":{"type":"Polygon","coordinates":[[[139.67500328900007,35.679167101000075],[139.6781283040001,35.67916709500008],[139.67812832000004,35.68125009000005],[139.67500330400003,35.68125009700009],[139.67500328900007,35.679167101000075]]]}},{"type":"Feature","id":16243,"properties":{"MESHCODE":"5339451432","揺全壊":17.42335},"geometry":{"type":"Polygon","coordinates":[[[139.6781283040001,35.67916709500008],[139.68125332,35.67916708800004],[139.68125333500006,35.681250083000066],[139.67812832000004,35.68125009000005],[139.6781283040001,35.67916709500008]]]}},{"type":"Feature","id":16335,"properties":{"MESHCODE":"5339452022","揺全壊":18.45283},"geometry":{"type":"Polygon","coordinates":[[[139.63437811100005,35.68333317000008],[139.637503122,35.68333316700006],[139.63750314000004,35.68541715900005],[139.63437813000007,35.68541716100009],[139.63437811100005,35.68333317000008]]]}},{"type":"Feature","id":16343,"properties":{"MESHCODE":"5339452042","揺全壊":22.15985},"geometry":{"type":"Polygon","coordinates":[[[139.634378148,35.68750015300009],[139.63750315800007,35.68750015100005],[139.637503176,35.68958314300005],[139.63437816600003,35.689583146000075],[139.634378148,35.68750015300009]]]}},{"type":"Feature","id":16345,"properties":{"MESHCODE":"5339452044","揺全壊":24.35111},"geometry":{"type":"Polygon","coordinates":[[[139.63437816600003,35.689583146000075],[139.637503176,35.68958314300005],[139.63750319500002,35.691667136000035],[139.63437818500006,35.69166713800007],[139.63437816600003,35.689583146000075]]]}},{"type":"Feature","id":16397,"properties":{"MESHCODE":"5339452414","揺全壊":17.46326},"geometry":{"type":"Polygon","coordinates":[[[139.67812835100005,35.685417080000036],[139.68125336600008,35.68541707500009],[139.681253383,35.687500069000066],[139.6781283680001,35.68750007600005],[139.67812835100005,35.685417080000036]]]}},{"type":"Feature","id":16402,"properties":{"MESHCODE":"5339452431","揺全壊":16.36489},"geometry":{"type":"Polygon","coordinates":[[[139.67500335300008,35.68750008200004],[139.6781283680001,35.68750007600005],[139.67812838400005,35.68958307000008],[139.67500336900002,35.689583077000066],[139.67500335300008,35.68750008200004]]]}},{"type":"Feature","id":16495,"properties":{"MESHCODE":"5339453022","揺全壊":24.22772},"geometry":{"type":"Polygon","coordinates":[[[139.63437818500006,35.69166713800007],[139.63750319500002,35.691667136000035],[139.63750321300006,35.69375012800003],[139.6343782030001,35.69375013000007],[139.63437818500006,35.69166713800007]]]}},{"type":"Feature","id":16501,"properties":{"MESHCODE":"5339453034","揺全壊":18.1366},"geometry":{"type":"Polygon","coordinates":[[[139.628128221,35.69791711700009],[139.63125323100007,35.69791711600004],[139.6312532500001,35.70000010800004],[139.62812824000002,35.700000110000076],[139.628128221,35.69791711700009]]]}},{"type":"Feature","id":16510,"properties":{"MESHCODE":"5339453121","揺全壊":18.84073},"geometry":{"type":"Polygon","coordinates":[[[139.6437532230001,35.69166712800006],[139.646878238,35.69166712400005],[139.64687825700003,35.693750117000036],[139.643753242,35.69375012000006],[139.6437532230001,35.69166712800006]]]}},{"type":"Feature","id":16512,"properties":{"MESHCODE":"5339453123","揺全壊":24.33128},"geometry":{"type":"Polygon","coordinates":[[[139.643753242,35.69375012000006],[139.64687825700003,35.693750117000036],[139.64687827500006,35.695833109000034],[139.64375326000004,35.69583311300005],[139.643753242,35.69375012000006]]]}},{"type":"Feature","id":16515,"properties":{"MESHCODE":"5339453132","揺全壊":22.27743},"geometry":{"type":"Polygon","coordinates":[[[139.640628246,35.69583311700006],[139.64375326000004,35.69583311300005],[139.64375327900007,35.697917106000034],[139.64062826500003,35.69791710900006],[139.640628246,35.69583311700006]]]}},{"type":"Feature","id":16516,"properties":{"MESHCODE":"5339453133","揺全壊":15.46417},"geometry":{"type":"Polygon","coordinates":[[[139.637503251,35.697917113000074],[139.64062826500003,35.69791710900006],[139.64062828400006,35.70000010200005],[139.63750326900004,35.70000010500007],[139.637503251,35.697917113000074]]]}},{"type":"Feature","id":16517,"properties":{"MESHCODE":"5339453134","揺全壊":16.46169},"geometry":{"type":"Polygon","coordinates":[[[139.64062826500003,35.69791710900006],[139.64375327900007,35.697917106000034],[139.6437532970001,35.70000009900008],[139.64062828400006,35.70000010200005],[139.64062826500003,35.69791710900006]]]}},{"type":"Feature","id":16518,"properties":{"MESHCODE":"5339453141","揺全壊":24.8923},"geometry":{"type":"Polygon","coordinates":[[[139.64375326000004,35.69583311300005],[139.64687827500006,35.695833109000034],[139.6468782930001,35.697917102000076],[139.64375327900007,35.697917106000034],[139.64375326000004,35.69583311300005]]]}},{"type":"Feature","id":16520,"properties":{"MESHCODE":"5339453143","揺全壊":15.04536},"geometry":{"type":"Polygon","coordinates":[[[139.64375327900007,35.697917106000034],[139.6468782930001,35.697917102000076],[139.64687831100002,35.700000095000064],[139.6437532970001,35.70000009900008],[139.64375327900007,35.697917106000034]]]}},{"type":"Feature","id":16563,"properties":{"MESHCODE":"5339453432","揺全壊":15.36461},"geometry":{"type":"Polygon","coordinates":[[[139.67812843600007,35.69583305400005],[139.68125345300007,35.695833048000054],[139.68125347,35.697917042000086],[139.6781284540001,35.69791704700009],[139.67812843600007,35.69583305400005]]]}},{"type":"Feature","id":16564,"properties":{"MESHCODE":"5339453433","揺全壊":20.03528},"geometry":{"type":"Polygon","coordinates":[[[139.6750034380001,35.69791705300008],[139.6781284540001,35.69791704700009],[139.67812847100004,35.700000042000056],[139.67500345500002,35.70000004700006],[139.6750034380001,35.69791705300008]]]}},{"type":"Feature","id":16670,"properties":{"MESHCODE":"5339454121","揺全壊":19.96689},"geometry":{"type":"Polygon","coordinates":[[[139.6437532970001,35.70000009900008],[139.64687831100002,35.700000095000064],[139.64687832900006,35.70208308800005],[139.64375331500003,35.70208309100008],[139.6437532970001,35.70000009900008]]]}},{"type":"Feature","id":17389,"properties":{"MESHCODE":"5339458614","揺全壊":21.28101},"geometry":{"type":"Polygon","coordinates":[[[139.7031289250001,35.73541691600008],[139.70625393400007,35.73541691600008],[139.70625395500008,35.73749991100004],[139.703128946,35.73749991100004],[139.7031289250001,35.73541691600008]]]}},{"type":"Feature","id":17447,"properties":{"MESHCODE":"5339458942","揺全壊":19.30656},"geometry":{"type":"Polygon","coordinates":[[[139.746879057,35.737499900000046],[139.7500040650001,35.73749989800007],[139.75000408100004,35.73958289700005],[139.74687907400005,35.73958289800004],[139.746879057,35.737499900000046]]]}},{"type":"Feature","id":17553,"properties":{"MESHCODE":"5339459624","揺全壊":18.91405},"geometry":{"type":"Polygon","coordinates":[[[139.709379023,35.743749896000054],[139.7125040300001,35.743749896000054],[139.71250405,35.745832893000056],[139.709379044,35.74583289200007],[139.709379023,35.743749896000054]]]}},{"type":"Feature","id":17595,"properties":{"MESHCODE":"5339459912","揺全壊":17.86611},"geometry":{"type":"Polygon","coordinates":[[[139.740629076,35.74166689800006],[139.743754083,35.74166689700007],[139.74375410000005,35.743749895000064],[139.74062909300005,35.743749896000054],[139.740629076,35.74166689800006]]]}},{"type":"Feature","id":17596,"properties":{"MESHCODE":"5339459913","揺全壊":15.61196},"geometry":{"type":"Polygon","coordinates":[[[139.73750408600006,35.74374989700004],[139.74062909300005,35.743749896000054],[139.740629109,35.745832894000046],[139.737504102,35.745832894000046],[139.73750408600006,35.74374989700004]]]}},{"type":"Feature","id":17661,"properties":{"MESHCODE":"5339460314","揺全壊":21.27206},"geometry":{"type":"Polygon","coordinates":[[[139.79062869100005,35.66874990800005],[139.7937537040001,35.66874990300005],[139.79375371800006,35.670832902000086],[139.790628706,35.67083290700009],[139.79062869100005,35.66874990800005]]]}},{"type":"Feature","id":17671,"properties":{"MESHCODE":"5339460342","揺全壊":20.23743},"geometry":{"type":"Polygon","coordinates":[[[139.796878731,35.67083289800007],[139.80000374300005,35.67083289300007],[139.800003758,35.672916892000046],[139.79687874500007,35.67291689700005],[139.796878731,35.67083289800007]]]}},{"type":"Feature","id":17673,"properties":{"MESHCODE":"5339460344","揺全壊":19.3956},"geometry":{"type":"Polygon","coordinates":[[[139.79687874500007,35.67291689700005],[139.800003758,35.672916892000046],[139.80000377200008,35.67499989200007],[139.79687876000003,35.67499989600009],[139.79687874500007,35.67291689700005]]]}},{"type":"Feature","id":17674,"properties":{"MESHCODE":"5339460411","揺全壊":23.56046},"geometry":{"type":"Polygon","coordinates":[[[139.800003714,35.66666689400006],[139.80312872600007,35.666666890000045],[139.80312874100002,35.66874988900008],[139.80000372900008,35.668749894000086],[139.800003714,35.66666689400006]]]}},{"type":"Feature","id":17677,"properties":{"MESHCODE":"5339460414","揺全壊":22.91174},"geometry":{"type":"Polygon","coordinates":[[[139.80312874100002,35.66874988900008],[139.8062537520001,35.66874988400008],[139.80625376700004,35.67083288300006],[139.8031287550001,35.670832888000064],[139.80312874100002,35.66874988900008]]]}},{"type":"Feature","id":17680,"properties":{"MESHCODE":"5339460423","揺全壊":22.06959},"geometry":{"type":"Polygon","coordinates":[[[139.8062537520001,35.66874988400008],[139.80937876500002,35.668749879000075],[139.8093787800001,35.670832879000045],[139.80625376700004,35.67083288300006],[139.8062537520001,35.66874988400008]]]}},{"type":"Feature","id":17682,"properties":{"MESHCODE":"5339460431","揺全壊":16.84122},"geometry":{"type":"Polygon","coordinates":[[[139.80000374300005,35.67083289300007],[139.8031287550001,35.670832888000064],[139.80312877000006,35.67291688800009],[139.800003758,35.672916892000046],[139.80000374300005,35.67083289300007]]]}},{"type":"Feature","id":17684,"properties":{"MESHCODE":"5339460433","揺全壊":16.9325},"geometry":{"type":"Polygon","coordinates":[[[139.800003758,35.672916892000046],[139.80312877000006,35.67291688800009],[139.803128785,35.67499988600008],[139.80000377200008,35.67499989200007],[139.800003758,35.672916892000046]]]}},{"type":"Feature","id":17692,"properties":{"MESHCODE":"5339460513","揺全壊":19.18864},"geometry":{"type":"Polygon","coordinates":[[[139.81250377600009,35.66874987400007],[139.81562878900002,35.66874986900007],[139.81562880400008,35.67083286900004],[139.81250379100004,35.67083287400004],[139.81250377600009,35.66874987400007]]]}},{"type":"Feature","id":17723,"properties":{"MESHCODE":"5339460712","揺全壊":21.84835},"geometry":{"type":"Polygon","coordinates":[[[139.840628873,35.666666828000075],[139.84375388600006,35.66666682200008],[139.843753901,35.66874982300004],[139.84062888900007,35.668749828000045],[139.840628873,35.666666828000075]]]}},{"type":"Feature","id":17747,"properties":{"MESHCODE":"5339460832","揺全壊":23.84669},"geometry":{"type":"Polygon","coordinates":[[[139.8531289550001,35.67083280600008],[139.85625396800003,35.670832801000074],[139.8562539840001,35.67291680100004],[139.85312897000006,35.672916806000046],[139.8531289550001,35.67083280600008]]]}},{"type":"Feature","id":17749,"properties":{"MESHCODE":"5339460834","揺全壊":17.07218},"geometry":{"type":"Polygon","coordinates":[[[139.85312897000006,35.672916806000046],[139.8562539840001,35.67291680100004],[139.85625399900005,35.67499980100007],[139.853128985,35.67499980600007],[139.85312897000006,35.672916806000046]]]}},{"type":"Feature","id":17758,"properties":{"MESHCODE":"5339460921","揺全壊":21.87402},"geometry":{"type":"Polygon","coordinates":[[[139.86875399000007,35.666666778000035],[139.871879004,35.66666677200004],[139.87187901900006,35.66874977300006],[139.86875400600002,35.66874977900005],[139.86875399000007,35.666666778000035]]]}},{"type":"Feature","id":17759,"properties":{"MESHCODE":"5339460922","揺全壊":16.80838},"geometry":{"type":"Polygon","coordinates":[[[139.871879004,35.66666677200004],[139.87500401600005,35.66666676700004],[139.875004032,35.668749767000065],[139.87187901900006,35.66874977300006],[139.871879004,35.66666677200004]]]}},{"type":"Feature","id":17760,"properties":{"MESHCODE":"5339460923","揺全壊":22.80837},"geometry":{"type":"Polygon","coordinates":[[[139.86875400600002,35.66874977900005],[139.87187901900006,35.66874977300006],[139.871879035,35.670832774000075],[139.86875402200008,35.67083277900008],[139.86875400600002,35.66874977900005]]]}},{"type":"Feature","id":17761,"properties":{"MESHCODE":"5339460924","揺全壊":22.65923},"geometry":{"type":"Polygon","coordinates":[[[139.87187901900006,35.66874977300006],[139.875004032,35.668749767000065],[139.87500404900004,35.67083276800008],[139.871879035,35.670832774000075],[139.87187901900006,35.66874977300006]]]}},{"type":"Feature","id":17766,"properties":{"MESHCODE":"5339460941","揺全壊":17.94995},"geometry":{"type":"Polygon","coordinates":[[[139.86875402200008,35.67083277900008],[139.871879035,35.670832774000075],[139.87187905000008,35.67291677400004],[139.86875403700003,35.67291678000004],[139.86875402200008,35.67083277900008]]]}},{"type":"Feature","id":17767,"properties":{"MESHCODE":"5339460942","揺全壊":17.7512},"geometry":{"type":"Polygon","coordinates":[[[139.871879035,35.670832774000075],[139.87500404900004,35.67083276800008],[139.8750040650001,35.67291676900004],[139.87187905000008,35.67291677400004],[139.871879035,35.670832774000075]]]}},{"type":"Feature","id":17768,"properties":{"MESHCODE":"5339460943","揺全壊":15.20358},"geometry":{"type":"Polygon","coordinates":[[[139.86875403700003,35.67291678000004],[139.87187905000008,35.67291677400004],[139.871879067,35.67499977500006],[139.8687540520001,35.674999781000054],[139.86875403700003,35.67291678000004]]]}},{"type":"Feature","id":17818,"properties":{"MESHCODE":"5339461311","揺全壊":18.13456},"geometry":{"type":"Polygon","coordinates":[[[139.787503722,35.674999908000075],[139.79062873500004,35.67499990400006],[139.79062875,35.67708290300004],[139.78750373700007,35.677082907000056],[139.787503722,35.674999908000075]]]}},{"type":"Feature","id":17822,"properties":{"MESHCODE":"5339461321","揺全壊":23.69862},"geometry":{"type":"Polygon","coordinates":[[[139.7937537470001,35.674999900000046],[139.79687876000003,35.67499989600009],[139.7968787750001,35.67708289500007],[139.79375376200005,35.677082899000084],[139.7937537470001,35.674999900000046]]]}},{"type":"Feature","id":17835,"properties":{"MESHCODE":"5339461412","揺全壊":15.29926},"geometry":{"type":"Polygon","coordinates":[[[139.803128785,35.67499988600008],[139.80625379700007,35.674999882000066],[139.80625381100003,35.67708288100005],[139.8031287990001,35.67708288500006],[139.803128785,35.67499988600008]]]}},{"type":"Feature","id":17846,"properties":{"MESHCODE":"5339461441","揺全壊":22.23975},"geometry":{"type":"Polygon","coordinates":[[[139.8062538270001,35.67916688000008],[139.80937883900003,35.67916687500008],[139.8093788540001,35.68124987500005],[139.80625384100006,35.68124987900006],[139.8062538270001,35.67916688000008]]]}},{"type":"Feature","id":17852,"properties":{"MESHCODE":"5339461513","揺全壊":18.82346},"geometry":{"type":"Polygon","coordinates":[[[139.81250383600002,35.677082872000085],[139.81562884900006,35.677082866000035],[139.81562886300003,35.67916686600006],[139.81250385200008,35.679166871000064],[139.81250383600002,35.677082872000085]]]}},{"type":"Feature","id":17853,"properties":{"MESHCODE":"5339461514","揺全壊":17.29115},"geometry":{"type":"Polygon","coordinates":[[[139.81562884900006,35.677082866000035],[139.818753861,35.67708286200008],[139.81875387600007,35.679166861000056],[139.81562886300003,35.67916686600006],[139.81562884900006,35.677082866000035]]]}},{"type":"Feature","id":17856,"properties":{"MESHCODE":"5339461523","揺全壊":16.00376},"geometry":{"type":"Polygon","coordinates":[[[139.818753861,35.67708286200008],[139.82187887400005,35.67708285700007],[139.82187888800001,35.67916685600005],[139.81875387600007,35.679166861000056],[139.818753861,35.67708286200008]]]}},{"type":"Feature","id":17864,"properties":{"MESHCODE":"5339461543","揺全壊":24.0314},"geometry":{"type":"Polygon","coordinates":[[[139.81875389000004,35.68124986000004],[139.8218789020001,35.68124985600008],[139.82187891600006,35.68333285500006],[139.818753905,35.683332859000075],[139.81875389000004,35.68124986000004]]]}},{"type":"Feature","id":17876,"properties":{"MESHCODE":"5339461633","揺全壊":17.21963},"geometry":{"type":"Polygon","coordinates":[[[139.82500391400004,35.681249851000075],[139.82812892700008,35.68124984600007],[139.82812894000006,35.68333284500005],[139.825003928,35.683332850000056],[139.82500391400004,35.681249851000075]]]}},{"type":"Feature","id":17880,"properties":{"MESHCODE":"5339461643","揺全壊":23.67437},"geometry":{"type":"Polygon","coordinates":[[[139.83125393900002,35.68124984100007],[139.83437895200007,35.68124983600006],[139.83437896500004,35.683332835000044],[139.8312539530001,35.68333284000005],[139.83125393900002,35.68124984100007]]]}},{"type":"Feature","id":17883,"properties":{"MESHCODE":"5339461712","揺全壊":19.27476},"geometry":{"type":"Polygon","coordinates":[[[139.84062893500004,35.67499982800007],[139.8437539470001,35.674999822000075],[139.84375396100006,35.677082822000045],[139.840628949,35.67708282700005],[139.84062893500004,35.67499982800007]]]}},{"type":"Feature","id":17885,"properties":{"MESHCODE":"5339461714","揺全壊":20.78473},"geometry":{"type":"Polygon","coordinates":[[[139.840628949,35.67708282700005],[139.84375396100006,35.677082822000045],[139.84375397600002,35.67916682200007],[139.84062896300009,35.679166827000074],[139.840628949,35.67708282700005]]]}},{"type":"Feature","id":17891,"properties":{"MESHCODE":"5339461732","揺全壊":23.48077},"geometry":{"type":"Polygon","coordinates":[[[139.84062896300009,35.679166827000074],[139.84375397600002,35.67916682200007],[139.8437539900001,35.68124982100005],[139.84062897700005,35.681249827000045],[139.84062896300009,35.679166827000074]]]}},{"type":"Feature","id":17901,"properties":{"MESHCODE":"5339461814","揺全壊":23.19309},"geometry":{"type":"Polygon","coordinates":[[[139.853129,35.677082806000044],[139.856254013,35.677082802000086],[139.8562540270001,35.679166801000065],[139.85312901400005,35.67916680600007],[139.853129,35.677082806000044]]]}},{"type":"Feature","id":17903,"properties":{"MESHCODE":"5339461822","揺全壊":16.20129},"geometry":{"type":"Polygon","coordinates":[[[139.8593790120001,35.674999797000055],[139.86250402500002,35.67499979200005],[139.8625040390001,35.67708279100009],[139.85937902600006,35.677082796000036],[139.8593790120001,35.674999797000055]]]}},{"type":"Feature","id":17904,"properties":{"MESHCODE":"5339461823","揺全壊":18.99935},"geometry":{"type":"Polygon","coordinates":[[[139.856254013,35.677082802000086],[139.85937902600006,35.677082796000036],[139.85937904000002,35.67916679600006],[139.8562540270001,35.679166801000065],[139.856254013,35.677082802000086]]]}},{"type":"Feature","id":17910,"properties":{"MESHCODE":"5339461841","揺全壊":23.1352},"geometry":{"type":"Polygon","coordinates":[[[139.8562540270001,35.679166801000065],[139.85937904000002,35.67916679600006],[139.8593790540001,35.68124979700008],[139.85625404100006,35.68124980200008],[139.8562540270001,35.679166801000065]]]}},{"type":"Feature","id":17915,"properties":{"MESHCODE":"5339461912","揺全壊":15.35088},"geometry":{"type":"Polygon","coordinates":[[[139.86562903900005,35.67499978600006],[139.8687540520001,35.674999781000054],[139.86875406700005,35.677082780000035],[139.86562905200003,35.677082786000085],[139.86562903900005,35.67499978600006]]]}},{"type":"Feature","id":17917,"properties":{"MESHCODE":"5339461914","揺全壊":15.71226},"geometry":{"type":"Polygon","coordinates":[[[139.86562905200003,35.677082786000085],[139.86875406700005,35.677082780000035],[139.86875408000003,35.67916678100005],[139.865629066,35.67916678600005],[139.86562905200003,35.677082786000085]]]}},{"type":"Feature","id":17921,"properties":{"MESHCODE":"5339461924","揺全壊":19.75562},"geometry":{"type":"Polygon","coordinates":[[[139.8718790800001,35.67708277500009],[139.87500409400002,35.67708276900004],[139.875004107,35.67916676900006],[139.87187909400006,35.679166775000056],[139.8718790800001,35.67708277500009]]]}},{"type":"Feature","id":17922,"properties":{"MESHCODE":"5339461931","揺全壊":19.76294},"geometry":{"type":"Polygon","coordinates":[[[139.86250405300007,35.679166792000046],[139.865629066,35.67916678600005],[139.86562908000008,35.68124978600008],[139.86250406700003,35.681249792000074],[139.86250405300007,35.679166792000046]]]}},{"type":"Feature","id":17965,"properties":{"MESHCODE":"5339462214","揺全壊":20.61492},"geometry":{"type":"Polygon","coordinates":[[[139.77812876100006,35.685416916000065],[139.781253773,35.68541691300004],[139.78125378800007,35.68749991100009],[139.77812877600002,35.687499916000036],[139.77812876100006,35.685416916000065]]]}},{"type":"Feature","id":17967,"properties":{"MESHCODE":"5339462222","揺全壊":18.12687},"geometry":{"type":"Polygon","coordinates":[[[139.7843787710001,35.68333291000005],[139.78750378300003,35.68333290500004],[139.787503797,35.68541690400008],[139.78437878600005,35.685416908000036],[139.7843787710001,35.68333291000005]]]}},{"type":"Feature","id":17969,"properties":{"MESHCODE":"5339462224","揺全壊":18.67499},"geometry":{"type":"Polygon","coordinates":[[[139.78437878600005,35.685416908000036],[139.787503797,35.68541690400008],[139.78750381300006,35.68749990300006],[139.7843788,35.687499907000074],[139.78437878600005,35.685416908000036]]]}},{"type":"Feature","id":17977,"properties":{"MESHCODE":"5339462244","揺全壊":22.23146},"geometry":{"type":"Polygon","coordinates":[[[139.78437881600007,35.689582906000055],[139.78750382700002,35.68958290100005],[139.7875038420001,35.69166690000009],[139.78437883000004,35.691666904000044],[139.78437881600007,35.689582906000055]]]}},{"type":"Feature","id":17989,"properties":{"MESHCODE":"5339462334","揺全壊":17.60079},"geometry":{"type":"Polygon","coordinates":[[[139.79062883900008,35.68958289700004],[139.79375385000003,35.68958289200009],[139.7937538660001,35.69166689200006],[139.79062885300004,35.69166689600007],[139.79062883900008,35.68958289700004]]]}},{"type":"Feature","id":17992,"properties":{"MESHCODE":"5339462343","揺全壊":18.2041},"geometry":{"type":"Polygon","coordinates":[[[139.79375385000003,35.68958289200009],[139.79687886300007,35.689582888000075],[139.79687887700004,35.69166688800004],[139.7937538660001,35.69166689200006],[139.79375385000003,35.68958289200009]]]}},{"type":"Feature","id":17997,"properties":{"MESHCODE":"5339462414","揺全壊":18.62787},"geometry":{"type":"Polygon","coordinates":[[[139.80312885700005,35.68541688100004],[139.8062538700001,35.68541687700008],[139.80625388400006,35.68749987600006],[139.803128872,35.687499881000065],[139.80312885700005,35.68541688100004]]]}},{"type":"Feature","id":17998,"properties":{"MESHCODE":"5339462421","揺全壊":16.13987},"geometry":{"type":"Polygon","coordinates":[[[139.80625385500002,35.683332878000044],[139.80937886800007,35.68333287300004],[139.80937888200003,35.685416873000065],[139.8062538700001,35.68541687700008],[139.80625385500002,35.683332878000044]]]}},{"type":"Feature","id":18001,"properties":{"MESHCODE":"5339462424","揺全壊":20.86297},"geometry":{"type":"Polygon","coordinates":[[[139.80937888200003,35.685416873000065],[139.81250389500008,35.68541686900005],[139.81250390800005,35.68749986800009],[139.809378896,35.687499872000046],[139.80937888200003,35.685416873000065]]]}},{"type":"Feature","id":18003,"properties":{"MESHCODE":"5339462432","揺全壊":19.807},"geometry":{"type":"Polygon","coordinates":[[[139.803128872,35.687499881000065],[139.80625388400006,35.68749987600006],[139.806253899,35.68958287600009],[139.80312888600008,35.689582880000046],[139.803128872,35.687499881000065]]]}},{"type":"Feature","id":18010,"properties":{"MESHCODE":"5339462511","揺全壊":16.98134},"geometry":{"type":"Polygon","coordinates":[[[139.81250388,35.68333287000007],[139.81562889200006,35.68333286500007],[139.81562890600003,35.68541686400005],[139.81250389500008,35.68541686900005],[139.81250388,35.68333287000007]]]}},{"type":"Feature","id":18011,"properties":{"MESHCODE":"5339462512","揺全壊":16.84213},"geometry":{"type":"Polygon","coordinates":[[[139.81562889200006,35.68333286500007],[139.818753905,35.683332859000075],[139.81875391800008,35.68541685900004],[139.81562890600003,35.68541686400005],[139.81562889200006,35.68333286500007]]]}},{"type":"Feature","id":18028,"properties":{"MESHCODE":"5339462613","揺全壊":24.32073},"geometry":{"type":"Polygon","coordinates":[[[139.82500394200008,35.685416849000035],[139.828128955,35.68541684500008],[139.8281289690001,35.68749984400006],[139.82500395700004,35.68749984800007],[139.82500394200008,35.685416849000035]]]}},{"type":"Feature","id":18034,"properties":{"MESHCODE":"5339462631","揺全壊":22.95996},"geometry":{"type":"Polygon","coordinates":[[[139.82500395700004,35.68749984800007],[139.8281289690001,35.68749984400006],[139.82812898300006,35.689582844000086],[139.8250039720001,35.68958284800004],[139.82500395700004,35.68749984800007]]]}},{"type":"Feature","id":18043,"properties":{"MESHCODE":"5339462712","揺全壊":18.71381},"geometry":{"type":"Polygon","coordinates":[[[139.84062899100002,35.68333282600008],[139.84375400400006,35.68333282100008],[139.84375401800003,35.68541682100005],[139.8406290050001,35.68541682600005],[139.84062899100002,35.68333282600008]]]}},{"type":"Feature","id":18044,"properties":{"MESHCODE":"5339462713","揺全壊":18.72932},"geometry":{"type":"Polygon","coordinates":[[[139.83750399200005,35.685416830000065],[139.8406290050001,35.68541682600005],[139.84062901800007,35.68749982600008],[139.83750400600002,35.68749983100008],[139.83750399200005,35.685416830000065]]]}},{"type":"Feature","id":18045,"properties":{"MESHCODE":"5339462714","揺全壊":19.33415},"geometry":{"type":"Polygon","coordinates":[[[139.8406290050001,35.68541682600005],[139.84375401800003,35.68541682100005],[139.843754031,35.687499821000074],[139.84062901800007,35.68749982600008],[139.8406290050001,35.68541682600005]]]}},{"type":"Feature","id":18053,"properties":{"MESHCODE":"5339462734","揺全壊":19.42551},"geometry":{"type":"Polygon","coordinates":[[[139.84062903200004,35.68958282500006],[139.84375404500008,35.689582821000045],[139.84375405800006,35.69166682100007],[139.840629046,35.691666825000084],[139.84062903200004,35.68958282500006]]]}},{"type":"Feature","id":18062,"properties":{"MESHCODE":"5339462821","揺全壊":21.13326},"geometry":{"type":"Polygon","coordinates":[[[139.85625405500002,35.68333280100006],[139.85937906800007,35.68333279700005],[139.85937908000005,35.68541679700007],[139.856254068,35.68541680200008],[139.85625405500002,35.68333280100006]]]}},{"type":"Feature","id":18087,"properties":{"MESHCODE":"5339462942","揺全壊":18.53904},"geometry":{"type":"Polygon","coordinates":[[[139.871879143,35.68749977600004],[139.87500415600005,35.687499771000034],[139.87500416600005,35.68958277100006],[139.8718791550001,35.689582776000066],[139.871879143,35.68749977600004]]]}},{"type":"Feature","id":18141,"properties":{"MESHCODE":"5339463314","揺全壊":17.49487},"geometry":{"type":"Polygon","coordinates":[[[139.790628868,35.69374989500005],[139.79375388000005,35.69374989100004],[139.79375389400002,35.69583289000008],[139.79062888300007,35.695832893000045],[139.790628868,35.69374989500005]]]}},{"type":"Feature","id":18144,"properties":{"MESHCODE":"5339463323","揺全壊":16.71194},"geometry":{"type":"Polygon","coordinates":[[[139.79375388000005,35.69374989100004],[139.796878892,35.69374988700008],[139.79687890600007,35.69583288600006],[139.79375389400002,35.69583289000008],[139.79375388000005,35.69374989100004]]]}},{"type":"Feature","id":18145,"properties":{"MESHCODE":"5339463324","揺全壊":24.84257},"geometry":{"type":"Polygon","coordinates":[[[139.796878892,35.69374988700008],[139.80000390300006,35.693749883000066],[139.80000391800002,35.69583288200005],[139.79687890600007,35.69583288600006],[139.796878892,35.69374988700008]]]}},{"type":"Feature","id":18151,"properties":{"MESHCODE":"5339463342","揺全壊":16.47244},"geometry":{"type":"Polygon","coordinates":[[[139.79687890600007,35.69583288600006],[139.80000391800002,35.69583288200005],[139.80000393300008,35.69791688100008],[139.79687892100003,35.69791688500004],[139.79687890600007,35.69583288600006]]]}},{"type":"Feature","id":18155,"properties":{"MESHCODE":"5339463412","揺全壊":15.05097},"geometry":{"type":"Polygon","coordinates":[[[139.80312890000005,35.69166687900008],[139.8062539130001,35.69166687500007],[139.80625392600007,35.69374987500004],[139.803128915,35.69374987800006],[139.80312890000005,35.69166687900008]]]}},{"type":"Feature","id":18157,"properties":{"MESHCODE":"5339463414","揺全壊":24.89714},"geometry":{"type":"Polygon","coordinates":[[[139.803128915,35.69374987800006],[139.80625392600007,35.69374987500004],[139.80625394100002,35.695832874000075],[139.80312892900008,35.69583287800009],[139.803128915,35.69374987800006]]]}},{"type":"Feature","id":18158,"properties":{"MESHCODE":"5339463421","揺全壊":20.91651},"geometry":{"type":"Polygon","coordinates":[[[139.8062539130001,35.69166687500007],[139.80937892500003,35.69166687100005],[139.809378938,35.69374987000009],[139.80625392600007,35.69374987500004],[139.8062539130001,35.69166687500007]]]}},{"type":"Feature","id":18159,"properties":{"MESHCODE":"5339463422","揺全壊":16.84527},"geometry":{"type":"Polygon","coordinates":[[[139.80937892500003,35.69166687100005],[139.8125039360001,35.69166686600005],[139.81250395000006,35.693749866000076],[139.809378938,35.69374987000009],[139.80937892500003,35.69166687100005]]]}},{"type":"Feature","id":18160,"properties":{"MESHCODE":"5339463423","揺全壊":16.73258},"geometry":{"type":"Polygon","coordinates":[[[139.80625392600007,35.69374987500004],[139.809378938,35.69374987000009],[139.8093789520001,35.69583286900007],[139.80625394100002,35.695832874000075],[139.80625392600007,35.69374987500004]]]}},{"type":"Feature","id":18162,"properties":{"MESHCODE":"5339463431","揺全壊":20.11599},"geometry":{"type":"Polygon","coordinates":[[[139.80000391800002,35.69583288200005],[139.80312892900008,35.69583287800009],[139.80312894400004,35.69791687700007],[139.80000393300008,35.69791688100008],[139.80000391800002,35.69583288200005]]]}},{"type":"Feature","id":18165,"properties":{"MESHCODE":"5339463434","揺全壊":22.21619},"geometry":{"type":"Polygon","coordinates":[[[139.80312894400004,35.69791687700007],[139.8062539550001,35.697916873000054],[139.80625397000006,35.699999872000035],[139.803128958,35.69999987600005],[139.80312894400004,35.69791687700007]]]}},{"type":"Feature","id":18168,"properties":{"MESHCODE":"5339463443","揺全壊":19.36611},"geometry":{"type":"Polygon","coordinates":[[[139.8062539550001,35.697916873000054],[139.80937896700004,35.69791686900004],[139.80937898000002,35.69999986800008],[139.80625397000006,35.699999872000035],[139.8062539550001,35.697916873000054]]]}},{"type":"Feature","id":18170,"properties":{"MESHCODE":"5339463511","揺全壊":16.74175},"geometry":{"type":"Polygon","coordinates":[[[139.8125039360001,35.69166686600005],[139.81562894900003,35.691666862000034],[139.815628962,35.69374986100007],[139.81250395000006,35.693749866000076],[139.8125039360001,35.69166686600005]]]}},{"type":"Feature","id":18174,"properties":{"MESHCODE":"5339463521","揺全壊":23.67199},"geometry":{"type":"Polygon","coordinates":[[[139.81875396100008,35.69166685700009],[139.82187897400001,35.69166685200008],[139.8218789870001,35.69374985200005],[139.81875397500005,35.69374985600007],[139.81875396100008,35.69166685700009]]]}},{"type":"Feature","id":18187,"properties":{"MESHCODE":"5339463612","揺全壊":15.53574},"geometry":{"type":"Polygon","coordinates":[[[139.828128998,35.691666843000064],[139.83125400900008,35.69166683900005],[139.83125402300004,35.69374983900008],[139.8281290110001,35.693749843000035],[139.828128998,35.691666843000064]]]}},{"type":"Feature","id":18191,"properties":{"MESHCODE":"5339463622","揺全壊":20.23994},"geometry":{"type":"Polygon","coordinates":[[[139.834379022,35.691666835000035],[139.83750403300007,35.69166683100008],[139.83750404700004,35.69374983000006],[139.834379034,35.69374983400007],[139.834379022,35.691666835000035]]]}},{"type":"Feature","id":18192,"properties":{"MESHCODE":"5339463623","揺全壊":18.21178},"geometry":{"type":"Polygon","coordinates":[[[139.83125402300004,35.69374983900008],[139.834379034,35.69374983400007],[139.83437904800007,35.695832833000054],[139.83125403600002,35.69583283800006],[139.83125402300004,35.69374983900008]]]}},{"type":"Feature","id":18193,"properties":{"MESHCODE":"5339463624","揺全壊":16.5911},"geometry":{"type":"Polygon","coordinates":[[[139.834379034,35.69374983400007],[139.83750404700004,35.69374983000006],[139.83750405900003,35.69583282900004],[139.83437904800007,35.695832833000054],[139.834379034,35.69374983400007]]]}},{"type":"Feature","id":18198,"properties":{"MESHCODE":"5339463641","揺全壊":17.85601},"geometry":{"type":"Polygon","coordinates":[[[139.83125403600002,35.69583283800006],[139.83437904800007,35.695832833000054],[139.83437906100005,35.69791683300008],[139.8312540500001,35.69791683800008],[139.83125403600002,35.69583283800006]]]}},{"type":"Feature","id":18201,"properties":{"MESHCODE":"5339463644","揺全壊":24.77048},"geometry":{"type":"Polygon","coordinates":[[[139.83437906100005,35.69791683300008],[139.8375040730001,35.697916829000064],[139.83750408600008,35.699999827000056],[139.83437907400003,35.69999983300005],[139.83437906100005,35.69791683300008]]]}},{"type":"Feature","id":18204,"properties":{"MESHCODE":"5339463713","揺全壊":23.44044},"geometry":{"type":"Polygon","coordinates":[[[139.83750404700004,35.69374983000006],[139.8406290580001,35.693749825000054],[139.84062907200007,35.69583282500008],[139.83750405900003,35.69583282900004],[139.83750404700004,35.69374983000006]]]}},{"type":"Feature","id":18205,"properties":{"MESHCODE":"5339463714","揺全壊":15.6341},"geometry":{"type":"Polygon","coordinates":[[[139.8406290580001,35.693749825000054],[139.84375407100003,35.69374982100004],[139.843754084,35.69583282000008],[139.84062907200007,35.69583282500008],[139.8406290580001,35.693749825000054]]]}},{"type":"Feature","id":18211,"properties":{"MESHCODE":"5339463732","揺全壊":19.67742},"geometry":{"type":"Polygon","coordinates":[[[139.84062907200007,35.69583282500008],[139.843754084,35.69583282000008],[139.8437540970001,35.697916820000046],[139.84062908500005,35.69791682400006],[139.84062907200007,35.69583282500008]]]}},{"type":"Feature","id":18213,"properties":{"MESHCODE":"5339463734","揺全壊":22.94553},"geometry":{"type":"Polygon","coordinates":[[[139.84062908500005,35.69791682400006],[139.8437540970001,35.697916820000046],[139.84375411000008,35.699999819000084],[139.84062909800002,35.69999982400009],[139.84062908500005,35.69791682400006]]]}},{"type":"Feature","id":18217,"properties":{"MESHCODE":"5339463744","揺全壊":20.33452},"geometry":{"type":"Polygon","coordinates":[[[139.84687910900004,35.69791681500004],[139.8500041210001,35.697916811000084],[139.85000413400007,35.699999811000055],[139.84687912100003,35.69999981500007],[139.84687910900004,35.69791681500004]]]}},{"type":"Feature","id":18233,"properties":{"MESHCODE":"5339463844","揺全壊":24.90753},"geometry":{"type":"Polygon","coordinates":[[[139.85937915500006,35.69791679600007],[139.862504166,35.69791679100007],[139.862504177,35.699999792000085],[139.85937916700004,35.69999979700009],[139.85937915500006,35.69791679600007]]]}},{"type":"Feature","id":18234,"properties":{"MESHCODE":"5339463911","揺全壊":17.80832},"geometry":{"type":"Polygon","coordinates":[[[139.86250413100004,35.691666792000035],[139.8656291420001,35.69166678700009],[139.8656291540001,35.69374978700006],[139.86250414200003,35.69374979100007],[139.86250413100004,35.691666792000035]]]}},{"type":"Feature","id":18237,"properties":{"MESHCODE":"5339463914","揺全壊":18.30233},"geometry":{"type":"Polygon","coordinates":[[[139.8656291540001,35.69374978700006],[139.86875416500004,35.693749783000044],[139.86875417500005,35.69583278200008],[139.8656291650001,35.695832787000086],[139.8656291540001,35.69374978700006]]]}},{"type":"Feature","id":18238,"properties":{"MESHCODE":"5339463921","揺全壊":19.22466},"geometry":{"type":"Polygon","coordinates":[[[139.86875415400004,35.691666782000084],[139.8718791660001,35.69166677700008],[139.871879176,35.69374977800004],[139.86875416500004,35.693749783000044],[139.86875415400004,35.691666782000084]]]}},{"type":"Feature","id":18244,"properties":{"MESHCODE":"5339463933","揺全壊":17.67703},"geometry":{"type":"Polygon","coordinates":[[[139.862504166,35.69791679100007],[139.86562917600008,35.697916787000054],[139.86562918700008,35.69999978700008],[139.862504177,35.699999792000085],[139.862504166,35.69791679100007]]]}},{"type":"Feature","id":18245,"properties":{"MESHCODE":"5339463934","揺全壊":21.85163},"geometry":{"type":"Polygon","coordinates":[[[139.86562917600008,35.697916787000054],[139.86875418600005,35.69791678300004],[139.86875419700004,35.69999978300007],[139.86562918700008,35.69999978700008],[139.86562917600008,35.697916787000054]]]}},{"type":"Feature","id":18289,"properties":{"MESHCODE":"5339464224","揺全壊":20.18373},"geometry":{"type":"Polygon","coordinates":[[[139.78437890400005,35.70208289700008],[139.787503914,35.70208289400006],[139.78750393000007,35.704166893000036],[139.784378919,35.70416689700005],[139.78437890400005,35.70208289700008]]]}},{"type":"Feature","id":18311,"properties":{"MESHCODE":"5339464342","揺全壊":15.58315},"geometry":{"type":"Polygon","coordinates":[[[139.79687896300004,35.70416688200004],[139.8000039750001,35.70416687800008],[139.80000398900006,35.70624987600007],[139.796878978,35.706249881000076],[139.79687896300004,35.70416688200004]]]}},{"type":"Feature","id":18315,"properties":{"MESHCODE":"5339464412","揺全壊":18.21244},"geometry":{"type":"Polygon","coordinates":[[[139.803128958,35.69999987600005],[139.80625397000006,35.699999872000035],[139.80625398300003,35.70208287100007],[139.80312897200008,35.70208287500009],[139.803128958,35.69999987600005]]]}},{"type":"Feature","id":18316,"properties":{"MESHCODE":"5339464413","揺全壊":21.99264},"geometry":{"type":"Polygon","coordinates":[[[139.80000396100002,35.702082879000045],[139.80312897200008,35.70208287500009],[139.80312898600005,35.704166874000066],[139.8000039750001,35.70416687800008],[139.80000396100002,35.702082879000045]]]}},{"type":"Feature","id":18318,"properties":{"MESHCODE":"5339464421","揺全壊":22.45148},"geometry":{"type":"Polygon","coordinates":[[[139.80625397000006,35.699999872000035],[139.80937898000002,35.69999986800008],[139.8093789950001,35.70208286800005],[139.80625398300003,35.70208287100007],[139.80625397000006,35.699999872000035]]]}},{"type":"Feature","id":18320,"properties":{"MESHCODE":"5339464423","揺全壊":17.25714},"geometry":{"type":"Polygon","coordinates":[[[139.80625398300003,35.70208287100007],[139.8093789950001,35.70208286800005],[139.80937900800006,35.70416686600004],[139.806253997,35.70416687000005],[139.80625398300003,35.70208287100007]]]}},{"type":"Feature","id":18324,"properties":{"MESHCODE":"5339464433","揺全壊":21.92235},"geometry":{"type":"Polygon","coordinates":[[[139.80000398900006,35.70624987600007],[139.803129,35.70624987300005],[139.8031290140001,35.70833287100004],[139.80000400300003,35.70833287500005],[139.80000398900006,35.70624987600007]]]}},{"type":"Feature","id":18326,"properties":{"MESHCODE":"5339464441","揺全壊":21.34806},"geometry":{"type":"Polygon","coordinates":[[[139.806253997,35.70416687000005],[139.80937900800006,35.70416686600004],[139.80937902200003,35.706249865000075],[139.80625401100008,35.70624986900009],[139.806253997,35.70416687000005]]]}},{"type":"Feature","id":18335,"properties":{"MESHCODE":"5339464522","揺全壊":24.78159},"geometry":{"type":"Polygon","coordinates":[[[139.82187902700002,35.699999852000076],[139.82500403900008,35.69999984700007],[139.82500405200005,35.70208284600005],[139.82187904,35.70208285100006],[139.82187902700002,35.699999852000076]]]}},{"type":"Feature","id":18339,"properties":{"MESHCODE":"5339464532","揺全壊":22.20056},"geometry":{"type":"Polygon","coordinates":[[[139.81562903100007,35.704166858000065],[139.81875404200002,35.70416685400005],[139.8187540560001,35.70624985400008],[139.81562904500004,35.706249857000046],[139.81562903100007,35.704166858000065]]]}},{"type":"Feature","id":18341,"properties":{"MESHCODE":"5339464534","揺全壊":23.83662},"geometry":{"type":"Polygon","coordinates":[[[139.81562904500004,35.706249857000046],[139.8187540560001,35.70624985400008],[139.81875407000007,35.70833285300006],[139.815629058,35.70833285700007],[139.81562904500004,35.706249857000046]]]}},{"type":"Feature","id":18350,"properties":{"MESHCODE":"5339464621","揺全壊":21.28378},"geometry":{"type":"Polygon","coordinates":[[[139.83125406200008,35.69999983800005],[139.83437907400003,35.69999983300005],[139.834379087,35.70208283300008],[139.83125407600005,35.702082837000034],[139.83125406200008,35.69999983800005]]]}},{"type":"Feature","id":18370,"properties":{"MESHCODE":"5339464731","揺全壊":19.87211},"geometry":{"type":"Polygon","coordinates":[[[139.83750411200003,35.70416682800004],[139.840629122,35.70416682300004],[139.8406291340001,35.706249824000054],[139.83750412300003,35.70624982700008],[139.83750411200003,35.70416682800004]]]}},{"type":"Feature","id":18373,"properties":{"MESHCODE":"5339464734","揺全壊":24.15351},"geometry":{"type":"Polygon","coordinates":[[[139.8406291340001,35.706249824000054],[139.84375414600004,35.70624981900005],[139.84375415700003,35.70833281900008],[139.84062914700007,35.70833282400008],[139.8406291340001,35.706249824000054]]]}},{"type":"Feature","id":18374,"properties":{"MESHCODE":"5339464741","揺全壊":22.99337},"geometry":{"type":"Polygon","coordinates":[[[139.84375413300006,35.70416682000007],[139.846879145,35.704166815000065],[139.846879156,35.706249815000035],[139.84375414600004,35.70624981900005],[139.84375413300006,35.70416682000007]]]}},{"type":"Feature","id":18375,"properties":{"MESHCODE":"5339464742","揺全壊":22.75647},"geometry":{"type":"Polygon","coordinates":[[[139.846879145,35.704166815000065],[139.85000415500008,35.70416681100005],[139.85000416700007,35.70624981100008],[139.846879156,35.706249815000035],[139.846879145,35.704166815000065]]]}},{"type":"Feature","id":18380,"properties":{"MESHCODE":"5339464813","揺全壊":16.19532},"geometry":{"type":"Polygon","coordinates":[[[139.85000414400008,35.70208281100008],[139.85312915500003,35.70208280600008],[139.85312916600003,35.704166807000036],[139.85000415500008,35.70416681100005],[139.85000414400008,35.70208281100008]]]}},{"type":"Feature","id":18386,"properties":{"MESHCODE":"5339464831","揺全壊":23.07878},"geometry":{"type":"Polygon","coordinates":[[[139.85000415500008,35.70416681100005],[139.85312916600003,35.704166807000036],[139.85312917800002,35.70624980600007],[139.85000416700007,35.70624981100008],[139.85000415500008,35.70416681100005]]]}},{"type":"Feature","id":18391,"properties":{"MESHCODE":"5339464842","揺全壊":15.07778},"geometry":{"type":"Polygon","coordinates":[[[139.85937918800005,35.70416679600004],[139.862504199,35.70416679200008],[139.862504209,35.70624979200005],[139.85937919800006,35.706249797000055],[139.85937918800005,35.70416679600004]]]}},{"type":"Feature","id":18403,"properties":{"MESHCODE":"5339464932","揺全壊":16.11343},"geometry":{"type":"Polygon","coordinates":[[[139.8656292080001,35.704166788000066],[139.86875421700006,35.70416678300006],[139.86875422700007,35.70624978400008],[139.8656292180001,35.70624978700005],[139.8656292080001,35.704166788000066]]]}},{"type":"Feature","id":18404,"properties":{"MESHCODE":"5339464933","揺全壊":15.34347},"geometry":{"type":"Polygon","coordinates":[[[139.862504209,35.70624979200005],[139.8656292180001,35.70624978700005],[139.8656292280001,35.708332787000074],[139.86250422,35.70833279200008],[139.862504209,35.70624979200005]]]}},{"type":"Feature","id":18407,"properties":{"MESHCODE":"5339464942","揺全壊":19.1192},"geometry":{"type":"Polygon","coordinates":[[[139.87187922600003,35.70416677900005],[139.875004235,35.70416677500009],[139.87500424400002,35.70624977500006],[139.87187923500005,35.706249779000075],[139.87187922600003,35.70416677900005]]]}},{"type":"Feature","id":18409,"properties":{"MESHCODE":"5339464944","揺全壊":15.06615},"geometry":{"type":"Polygon","coordinates":[[[139.87187923500005,35.706249779000075],[139.87500424400002,35.70624977500006],[139.87500425300004,35.70833277500009],[139.87187924500006,35.708332779000045],[139.87187923500005,35.706249779000075]]]}},{"type":"Feature","id":18447,"properties":{"MESHCODE":"5339465222","揺全壊":20.59337},"geometry":{"type":"Polygon","coordinates":[[[139.78437894800004,35.70833289500007],[139.787503958,35.708332892000044],[139.78750397300007,35.71041689100008],[139.784378963,35.71041689300006],[139.78437894800004,35.70833289500007]]]}},{"type":"Feature","id":18455,"properties":{"MESHCODE":"5339465242","揺全壊":15.54625},"geometry":{"type":"Polygon","coordinates":[[[139.78437897700007,35.71249989200004],[139.78750398800003,35.71249988900007],[139.7875040020001,35.71458288700006],[139.78437899300002,35.71458289100008],[139.78437897700007,35.71249989200004]]]}},{"type":"Feature","id":18468,"properties":{"MESHCODE":"5339465333","揺全壊":21.23528},"geometry":{"type":"Polygon","coordinates":[[[139.7875040020001,35.71458288700006],[139.79062901300006,35.71458288400004],[139.79062902700002,35.71666688300007],[139.78750401700006,35.71666688600004],[139.7875040020001,35.71458288700006]]]}},{"type":"Feature","id":18480,"properties":{"MESHCODE":"5339465423","揺全壊":22.85966},"geometry":{"type":"Polygon","coordinates":[[[139.806254039,35.71041686700005],[139.80937904900009,35.71041686400008],[139.80937906300005,35.71249986300006],[139.8062540520001,35.712499867000076],[139.806254039,35.71041686700005]]]}},{"type":"Feature","id":18486,"properties":{"MESHCODE":"5339465441","揺全壊":18.87877},"geometry":{"type":"Polygon","coordinates":[[[139.8062540520001,35.712499867000076],[139.80937906300005,35.71249986300006],[139.80937907600003,35.71458286300009],[139.80625406600006,35.71458286600006],[139.8062540520001,35.712499867000076]]]}},{"type":"Feature","id":18487,"properties":{"MESHCODE":"5339465442","揺全壊":18.09878},"geometry":{"type":"Polygon","coordinates":[[[139.80937906300005,35.71249986300006],[139.812504074,35.71249986000004],[139.8125040870001,35.714582859000075],[139.80937907600003,35.71458286300009],[139.80937906300005,35.71249986300006]]]}},{"type":"Feature","id":18492,"properties":{"MESHCODE":"5339465513","揺全壊":21.74656},"geometry":{"type":"Polygon","coordinates":[[[139.81250406000004,35.710416861000056],[139.8156290720001,35.71041685600005],[139.81562908400008,35.71249985500009],[139.812504074,35.71249986000004],[139.81250406000004,35.710416861000056]]]}},{"type":"Feature","id":18515,"properties":{"MESHCODE":"5339465632","揺全壊":23.97711},"geometry":{"type":"Polygon","coordinates":[[[139.828129127,35.71249983900009],[139.83125413800008,35.712499835000074],[139.83125415000006,35.714582834000055],[139.8281291400001,35.71458283800007],[139.828129127,35.71249983900009]]]}},{"type":"Feature","id":18517,"properties":{"MESHCODE":"5339465634","揺全壊":16.27071},"geometry":{"type":"Polygon","coordinates":[[[139.8281291400001,35.71458283800007],[139.83125415000006,35.714582834000055],[139.83125416300004,35.71666683300003],[139.8281291520001,35.71666683700005],[139.8281291400001,35.71458283800007]]]}},{"type":"Feature","id":18528,"properties":{"MESHCODE":"5339465723","揺全壊":23.38703},"geometry":{"type":"Polygon","coordinates":[[[139.84375416900002,35.710416819000045],[139.8468791800001,35.71041681500009],[139.84687919100008,35.71249981400007],[139.843754181,35.71249981800008],[139.84375416900002,35.710416819000045]]]}},{"type":"Feature","id":18532,"properties":{"MESHCODE":"5339465733","揺全壊":19.67401},"geometry":{"type":"Polygon","coordinates":[[[139.83750417200008,35.714582825000036],[139.84062918200004,35.71458282200007],[139.84062919400003,35.71666682100005],[139.83750418300008,35.71666682500006],[139.83750417200008,35.714582825000036]]]}},{"type":"Feature","id":18552,"properties":{"MESHCODE":"5339465843","揺全壊":24.36429},"geometry":{"type":"Polygon","coordinates":[[[139.85625423200008,35.71458280100006],[139.85937924100006,35.71458279600006],[139.85937925200005,35.716666796000084],[139.85625424300008,35.71666680000004],[139.85625423200008,35.71458280100006]]]}},{"type":"Feature","id":18556,"properties":{"MESHCODE":"5339465913","揺全壊":24.71331},"geometry":{"type":"Polygon","coordinates":[[[139.86250422900002,35.71041679100006],[139.865629238,35.71041678800009],[139.865629248,35.71249978800006],[139.86250424000002,35.712499792000074],[139.86250422900002,35.71041679100006]]]}},{"type":"Feature","id":18557,"properties":{"MESHCODE":"5339465914","揺全壊":21.67604},"geometry":{"type":"Polygon","coordinates":[[[139.865629238,35.71041678800009],[139.8687542460001,35.710416784000074],[139.8687542560001,35.712499784000045],[139.865629248,35.71249978800006],[139.865629238,35.71041678800009]]]}},{"type":"Feature","id":18565,"properties":{"MESHCODE":"5339465934","揺全壊":15.3042},"geometry":{"type":"Polygon","coordinates":[[[139.865629258,35.71458278800009],[139.868754266,35.71458278500006],[139.868754276,35.716666785000086],[139.865629269,35.716666789000044],[139.865629258,35.71458278800009]]]}},{"type":"Feature","id":18567,"properties":{"MESHCODE":"5339465942","揺全壊":16.27171},"geometry":{"type":"Polygon","coordinates":[[[139.87187926400009,35.71249978000009],[139.87500427200007,35.71249977700006],[139.87500428200008,35.71458277700009],[139.8718792740001,35.71458278100005],[139.87187926400009,35.71249978000009]]]}},{"type":"Feature","id":18587,"properties":{"MESHCODE":"5339466112","揺全壊":17.15638},"geometry":{"type":"Polygon","coordinates":[[[139.76562894900007,35.716666908000036],[139.76875395900004,35.71666690500007],[139.7687539740001,35.71874990400005],[139.76562896400003,35.718749907000074],[139.76562894900007,35.716666908000036]]]}},{"type":"Feature","id":18596,"properties":{"MESHCODE":"5339466133","揺全壊":21.09351},"geometry":{"type":"Polygon","coordinates":[[[139.76250398700006,35.722916905000034],[139.76562899600003,35.722916902000065],[139.7656290120001,35.72499990000006],[139.762504003,35.72499990300008],[139.76250398700006,35.722916905000034]]]}},{"type":"Feature","id":18622,"properties":{"MESHCODE":"5339466321","揺全壊":19.13519},"geometry":{"type":"Polygon","coordinates":[[[139.7937540370001,35.71666687900006],[139.79687904800005,35.71666687600003],[139.79687906200002,35.71874987500007],[139.79375405200005,35.71874987800004],[139.7937540370001,35.71666687900006]]]}},{"type":"Feature","id":18625,"properties":{"MESHCODE":"5339466324","揺全壊":15.8715},"geometry":{"type":"Polygon","coordinates":[[[139.79687906200002,35.71874987500007],[139.8000040720001,35.718749872000046],[139.80000408600006,35.720832871000084],[139.7968790760001,35.72083287400005],[139.79687906200002,35.71874987500007]]]}},{"type":"Feature","id":18626,"properties":{"MESHCODE":"5339466331","揺全壊":24.92593},"geometry":{"type":"Polygon","coordinates":[[[139.7875040450001,35.72083288300007],[139.79062905600006,35.720832880000046],[139.790629071,35.72291687900008],[139.78750406100005,35.72291688200005],[139.7875040450001,35.72083288300007]]]}},{"type":"Feature","id":18636,"properties":{"MESHCODE":"5339466413","揺全壊":24.13447},"geometry":{"type":"Polygon","coordinates":[[[139.8000040720001,35.718749872000046],[139.80312908300004,35.71874986800009],[139.80312909600002,35.72083286700007],[139.80000408600006,35.720832871000084],[139.8000040720001,35.718749872000046]]]}},{"type":"Feature","id":18637,"properties":{"MESHCODE":"5339466414","揺全壊":19.38761},"geometry":{"type":"Polygon","coordinates":[[[139.80312908300004,35.71874986800009],[139.806254093,35.71874986500006],[139.8062541060001,35.720832864000045],[139.80312909600002,35.72083286700007],[139.80312908300004,35.71874986800009]]]}},{"type":"Feature","id":18639,"properties":{"MESHCODE":"5339466422","揺全壊":19.55193},"geometry":{"type":"Polygon","coordinates":[[[139.80937909,35.71666686100008],[139.81250410000007,35.71666685900004],[139.81250411300005,35.71874985800008],[139.80937910300008,35.71874986100005],[139.80937909,35.71666686100008]]]}},{"type":"Feature","id":18643,"properties":{"MESHCODE":"5339466432","揺全壊":24.68423},"geometry":{"type":"Polygon","coordinates":[[[139.80312909600002,35.72083286700007],[139.8062541060001,35.720832864000045],[139.80625412000006,35.72291686300008],[139.8031291100001,35.72291686700004],[139.80312909600002,35.72083286700007]]]}},{"type":"Feature","id":18648,"properties":{"MESHCODE":"5339466443","揺全壊":21.1576},"geometry":{"type":"Polygon","coordinates":[[[139.80625412000006,35.72291686300008],[139.80937912900004,35.722916860000055],[139.809379143,35.724999859000036],[139.80625413300004,35.72499986300005],[139.80625412000006,35.72291686300008]]]}},{"type":"Feature","id":18659,"properties":{"MESHCODE":"5339466532","揺全壊":20.44971},"geometry":{"type":"Polygon","coordinates":[[[139.8156291360001,35.72083285300005],[139.81875414600006,35.72083284900009],[139.81875416000003,35.72291684800007],[139.81562915000006,35.72291685200008],[139.8156291360001,35.72083285300005]]]}},{"type":"Feature","id":18660,"properties":{"MESHCODE":"5339466533","揺全壊":18.20846},"geometry":{"type":"Polygon","coordinates":[[[139.8125041400001,35.72291685600004],[139.81562915000006,35.72291685200008],[139.81562916200005,35.724999851000064],[139.81250415300008,35.72499985500008],[139.8125041400001,35.72291685600004]]]}},{"type":"Feature","id":18661,"properties":{"MESHCODE":"5339466534","揺全壊":18.95685},"geometry":{"type":"Polygon","coordinates":[[[139.81562915000006,35.72291685200008],[139.81875416000003,35.72291684800007],[139.818754172,35.72499984700005],[139.81562916200005,35.724999851000064],[139.81562915000006,35.72291685200008]]]}},{"type":"Feature","id":18680,"properties":{"MESHCODE":"5339466643","揺全壊":17.80101},"geometry":{"type":"Polygon","coordinates":[[[139.8312542000001,35.72291683200007],[139.83437921000007,35.72291682900004],[139.83437922300004,35.72499982900007],[139.8312542120001,35.72499983200004],[139.8312542000001,35.72291683200007]]]}},{"type":"Feature","id":18689,"properties":{"MESHCODE":"5339466724","揺全壊":20.82664},"geometry":{"type":"Polygon","coordinates":[[[139.84687922600006,35.718749812000055],[139.85000423600002,35.71874980800004],[139.85000424700002,35.72083280800007],[139.84687923700005,35.72083281200008],[139.84687922600006,35.718749812000055]]]}},{"type":"Feature","id":18696,"properties":{"MESHCODE":"5339466743","揺全壊":23.52262},"geometry":{"type":"Polygon","coordinates":[[[139.84375424000007,35.722916816000065],[139.84687924900004,35.72291681300004],[139.84687926000004,35.72499981200008],[139.84375425200005,35.72499981700008],[139.84375424000007,35.722916816000065]]]}},{"type":"Feature","id":18697,"properties":{"MESHCODE":"5339466744","揺全壊":18.37293},"geometry":{"type":"Polygon","coordinates":[[[139.84687924900004,35.72291681300004],[139.850004259,35.722916808000036],[139.850004269,35.724999808000064],[139.84687926000004,35.72499981200008],[139.84687924900004,35.72291681300004]]]}},{"type":"Feature","id":18700,"properties":{"MESHCODE":"5339466813","揺全壊":17.95264},"geometry":{"type":"Polygon","coordinates":[[[139.85000423600002,35.71874980800004],[139.8531292450001,35.71874980400008],[139.8531292560001,35.720832804000054],[139.85000424700002,35.72083280800007],[139.85000423600002,35.71874980800004]]]}},{"type":"Feature","id":18701,"properties":{"MESHCODE":"5339466814","揺全壊":21.98165},"geometry":{"type":"Polygon","coordinates":[[[139.8531292450001,35.71874980400008],[139.85625425400008,35.71874980000007],[139.85625426500008,35.72083280000004],[139.8531292560001,35.720832804000054],[139.8531292450001,35.71874980400008]]]}},{"type":"Feature","id":18703,"properties":{"MESHCODE":"5339466822","揺全壊":22.31349},"geometry":{"type":"Polygon","coordinates":[[[139.85937925200005,35.716666796000084],[139.86250426100003,35.71666679100008],[139.86250427200002,35.71874979200004],[139.85937926300005,35.718749796000054],[139.85937925200005,35.716666796000084]]]}},{"type":"Feature","id":18705,"properties":{"MESHCODE":"5339466824","揺全壊":19.08542},"geometry":{"type":"Polygon","coordinates":[[[139.85937926300005,35.718749796000054],[139.86250427200002,35.71874979200004],[139.86250428200003,35.72083279100008],[139.85937927400005,35.72083279600008],[139.85937926300005,35.718749796000054]]]}},{"type":"Feature","id":18709,"properties":{"MESHCODE":"5339466834","揺全壊":15.99032},"geometry":{"type":"Polygon","coordinates":[[[139.8531292670001,35.72291680400008],[139.85625427500008,35.722916800000064],[139.85625428600008,35.724999800000035],[139.853129277,35.72499980400005],[139.8531292670001,35.72291680400008]]]}},{"type":"Feature","id":18710,"properties":{"MESHCODE":"5339466841","揺全壊":20.17193},"geometry":{"type":"Polygon","coordinates":[[[139.85625426500008,35.72083280000004],[139.85937927400005,35.72083279600008],[139.85937928300007,35.72291679600005],[139.85625427500008,35.722916800000064],[139.85625426500008,35.72083280000004]]]}},{"type":"Feature","id":18715,"properties":{"MESHCODE":"5339466912","揺全壊":19.42799},"geometry":{"type":"Polygon","coordinates":[[[139.865629269,35.716666789000044],[139.868754276,35.716666785000086],[139.868754287,35.71874978500006],[139.86562927900002,35.71874978800008],[139.865629269,35.716666789000044]]]}},{"type":"Feature","id":18716,"properties":{"MESHCODE":"5339466913","揺全壊":15.8588},"geometry":{"type":"Polygon","coordinates":[[[139.86250427200002,35.71874979200004],[139.86562927900002,35.71874978800008],[139.86562929000002,35.72083278800005],[139.86250428200003,35.72083279100008],[139.86250427200002,35.71874979200004]]]}},{"type":"Feature","id":18719,"properties":{"MESHCODE":"5339466922","揺全壊":20.0833},"geometry":{"type":"Polygon","coordinates":[[[139.8718792840001,35.71666678100007],[139.87500429200009,35.71666677800005],[139.8750043010001,35.718749777000085],[139.871879294,35.71874978100004],[139.8718792840001,35.71666678100007]]]}},{"type":"Feature","id":18723,"properties":{"MESHCODE":"5339466932","揺全壊":19.8951},"geometry":{"type":"Polygon","coordinates":[[[139.86562929000002,35.72083278800005],[139.868754297,35.720832785000084],[139.86875430700002,35.72291678500005],[139.86562929900003,35.72291678800008],[139.86562929000002,35.72083278800005]]]}},{"type":"Feature","id":18743,"properties":{"MESHCODE":"5339467042","揺全壊":16.12957},"geometry":{"type":"Polygon","coordinates":[[[139.75937902500004,35.72916690100004],[139.76250403300003,35.72916690000005],[139.76250404900009,35.731249898000044],[139.7593790410001,35.73124990000008],[139.75937902500004,35.72916690100004]]]}},{"type":"Feature","id":18746,"properties":{"MESHCODE":"5339467111","揺全壊":16.2967},"geometry":{"type":"Polygon","coordinates":[[[139.762504003,35.72499990300008],[139.7656290120001,35.72499990000006],[139.76562902700005,35.72708289900004],[139.76250401800007,35.727082901000074],[139.762504003,35.72499990300008]]]}},{"type":"Feature","id":18766,"properties":{"MESHCODE":"5339467221","揺全壊":17.27524},"geometry":{"type":"Polygon","coordinates":[[[139.78125405700007,35.724999886000035],[139.78437906600004,35.724999883000066],[139.78437908,35.72708288200005],[139.78125407100003,35.72708288500007],[139.78125405700007,35.724999886000035]]]}},{"type":"Feature","id":18769,"properties":{"MESHCODE":"5339467224","揺全壊":22.61885},"geometry":{"type":"Polygon","coordinates":[[[139.78437908,35.72708288200005],[139.7875040890001,35.72708288000007],[139.78750410300006,35.72916687900005],[139.7843790940001,35.72916688200007],[139.78437908,35.72708288200005]]]}},{"type":"Feature","id":18774,"properties":{"MESHCODE":"5339467241","揺全壊":19.74233},"geometry":{"type":"Polygon","coordinates":[[[139.781254085,35.72916688400005],[139.7843790940001,35.72916688200007],[139.78437910800005,35.73124988100005],[139.78125409900008,35.73124988300009],[139.781254085,35.72916688400005]]]}},{"type":"Feature","id":18777,"properties":{"MESHCODE":"5339467244","揺全壊":20.79702},"geometry":{"type":"Polygon","coordinates":[[[139.78437910800005,35.73124988100005],[139.78750411600004,35.731249879000075],[139.7875041310001,35.733332878000056],[139.78437912200002,35.733332880000034],[139.78437910800005,35.73124988100005]]]}},{"type":"Feature","id":18787,"properties":{"MESHCODE":"5339467332","揺全壊":17.24452},"geometry":{"type":"Polygon","coordinates":[[[139.79062911200003,35.72916687700007],[139.793754122,35.72916687400004],[139.79375413500009,35.73124987300008],[139.790629126,35.73124987600005],[139.79062911200003,35.72916687700007]]]}},{"type":"Feature","id":18788,"properties":{"MESHCODE":"5339467333","揺全壊":16.41923},"geometry":{"type":"Polygon","coordinates":[[[139.78750411600004,35.731249879000075],[139.790629126,35.73124987600005],[139.79062914000008,35.73333287500009],[139.7875041310001,35.733332878000056],[139.78750411600004,35.731249879000075]]]}},{"type":"Feature","id":18793,"properties":{"MESHCODE":"5339467344","揺全壊":19.39721},"geometry":{"type":"Polygon","coordinates":[[[139.79687914400006,35.731249870000056],[139.80000415400002,35.73124986800008],[139.800004166,35.73333286700006],[139.79687915700003,35.73333287000008],[139.79687914400006,35.731249870000056]]]}},{"type":"Feature","id":18798,"properties":{"MESHCODE":"5339467421","揺全壊":24.60376},"geometry":{"type":"Polygon","coordinates":[[[139.80625413300004,35.72499986300005],[139.809379143,35.724999859000036],[139.8093791560001,35.727082858000074],[139.80625414600001,35.72708286200009],[139.80625413300004,35.72499986300005]]]}},{"type":"Feature","id":18803,"properties":{"MESHCODE":"5339467432","揺全壊":18.7635},"geometry":{"type":"Polygon","coordinates":[[[139.80312915000002,35.729166864000035],[139.8062541600001,35.72916686100007],[139.80625417300007,35.73124986000005],[139.8031291640001,35.73124986400006],[139.80312915000002,35.729166864000035]]]}},{"type":"Feature","id":18812,"properties":{"MESHCODE":"5339467513","揺全壊":15.13503},"geometry":{"type":"Polygon","coordinates":[[[139.81250416600005,35.72708285500005],[139.81562917600002,35.727082851000034],[139.815629188,35.72916685000007],[139.81250418000002,35.729166854000084],[139.81250416600005,35.72708285500005]]]}},{"type":"Feature","id":18823,"properties":{"MESHCODE":"5339467542","揺全壊":16.72917},"geometry":{"type":"Polygon","coordinates":[[[139.82187920700005,35.72916684200004],[139.82500421700001,35.72916683900007],[139.8250042300001,35.73124983900004],[139.82187922000003,35.73124984300006],[139.82187920700005,35.72916684200004]]]}},{"type":"Feature","id":18824,"properties":{"MESHCODE":"5339467543","揺全壊":23.01839},"geometry":{"type":"Polygon","coordinates":[[[139.81875421100005,35.73124984600008],[139.82187922000003,35.73124984300006],[139.82187923200001,35.73333284200004],[139.81875422300004,35.73333284600005],[139.81875421100005,35.73124984600008]]]}},{"type":"Feature","id":18825,"properties":{"MESHCODE":"5339467544","揺全壊":18.36419},"geometry":{"type":"Polygon","coordinates":[[[139.82187922000003,35.73124984300006],[139.8250042300001,35.73124983900004],[139.8250042410001,35.73333283900007],[139.82187923200001,35.73333284200004],[139.82187922000003,35.73124984300006]]]}},{"type":"Feature","id":18827,"properties":{"MESHCODE":"5339467612","揺全壊":20.39946},"geometry":{"type":"Polygon","coordinates":[[[139.828129203,35.72499983500006],[139.8312542120001,35.72499983200004],[139.83125422500007,35.727082831000075],[139.828129214,35.72708283500009],[139.828129203,35.72499983500006]]]}},{"type":"Feature","id":18841,"properties":{"MESHCODE":"5339467644","揺全壊":21.0339},"geometry":{"type":"Polygon","coordinates":[[[139.834379259,35.731249827000056],[139.83750426900008,35.73124982300004],[139.83750428000008,35.73333282200008],[139.8343792710001,35.73333282700008],[139.834379259,35.731249827000056]]]}},{"type":"Feature","id":18846,"properties":{"MESHCODE":"5339467721","揺全壊":22.10877},"geometry":{"type":"Polygon","coordinates":[[[139.84375425200005,35.72499981700008],[139.84687926000004,35.72499981200008],[139.84687927200002,35.72708281200005],[139.84375426300005,35.72708281600006],[139.84375425200005,35.72499981700008]]]}},{"type":"Feature","id":18852,"properties":{"MESHCODE":"5339467733","揺全壊":23.53089},"geometry":{"type":"Polygon","coordinates":[[[139.83750426900008,35.73124982300004],[139.84062927800005,35.731249819000084],[139.84062928900005,35.733332818000065],[139.83750428000008,35.73333282200008],[139.83750426900008,35.73124982300004]]]}},{"type":"Feature","id":18853,"properties":{"MESHCODE":"5339467734","揺全壊":15.98451},"geometry":{"type":"Polygon","coordinates":[[[139.84062927800005,35.731249819000084],[139.84375428700002,35.73124981400008],[139.84375429800002,35.73333281400005],[139.84062928900005,35.733332818000065],[139.84062927800005,35.731249819000084]]]}},{"type":"Feature","id":18857,"properties":{"MESHCODE":"5339467744","揺全壊":16.04841},"geometry":{"type":"Polygon","coordinates":[[[139.846879295,35.731249811000055],[139.85000430500008,35.73124980600005],[139.85000431700007,35.73333280600008],[139.8468793080001,35.733332810000036],[139.846879295,35.731249811000055]]]}},{"type":"Feature","id":18859,"properties":{"MESHCODE":"5339467812","揺全壊":15.68407},"geometry":{"type":"Polygon","coordinates":[[[139.853129277,35.72499980400005],[139.85625428600008,35.724999800000035],[139.85625429800007,35.72708279900007],[139.8531292890001,35.72708280400008],[139.853129277,35.72499980400005]]]}},{"type":"Feature","id":18898,"properties":{"MESHCODE":"5339468031","揺全壊":17.62442},"geometry":{"type":"Polygon","coordinates":[[[139.7500040650001,35.73749989800007],[139.75312907300008,35.73749989700008],[139.75312908900003,35.73958289500007],[139.75000408100004,35.73958289700005],[139.7500040650001,35.73749989800007]]]}},{"type":"Feature","id":18919,"properties":{"MESHCODE":"5339468142","揺全壊":19.85727},"geometry":{"type":"Polygon","coordinates":[[[139.771879119,35.73749988700007],[139.7750041270001,35.737499884000044],[139.77500414100007,35.73958288400007],[139.77187913400007,35.73958288600005],[139.771879119,35.73749988700007]]]}},{"type":"Feature","id":18922,"properties":{"MESHCODE":"5339468211","揺全壊":24.11809},"geometry":{"type":"Polygon","coordinates":[[[139.77500409700008,35.733332886000085],[139.77812910600005,35.73333288400005],[139.77812912000002,35.735416883000084],[139.77500411200003,35.73541688600005],[139.77500409700008,35.733332886000085]]]}},{"type":"Feature","id":18924,"properties":{"MESHCODE":"5339468213","揺全壊":15.16793},"geometry":{"type":"Polygon","coordinates":[[[139.77500411200003,35.73541688600005],[139.77812912000002,35.735416883000084],[139.77812913500009,35.737499882000066],[139.7750041270001,35.737499884000044],[139.77500411200003,35.73541688600005]]]}},{"type":"Feature","id":18930,"properties":{"MESHCODE":"5339468231","揺全壊":24.81636},"geometry":{"type":"Polygon","coordinates":[[[139.7750041270001,35.737499884000044],[139.77812913500009,35.737499882000066],[139.77812914900005,35.73958288100005],[139.77500414100007,35.73958288400007],[139.7750041270001,35.737499884000044]]]}},{"type":"Feature","id":18935,"properties":{"MESHCODE":"5339468242","揺全壊":16.02533},"geometry":{"type":"Polygon","coordinates":[[[139.78437915200004,35.73749987700006],[139.78750416000003,35.73749987500008],[139.7875041740001,35.739582873000074],[139.784379166,35.73958287600004],[139.78437915200004,35.73749987700006]]]}},{"type":"Feature","id":18941,"properties":{"MESHCODE":"5339468314","揺全壊":18.2805},"geometry":{"type":"Polygon","coordinates":[[[139.79062915400004,35.735416874000066],[139.79375416200003,35.73541687100004],[139.793754176,35.73749986900009],[139.790629168,35.73749987200006],[139.79062915400004,35.735416874000066]]]}},{"type":"Feature","id":18976,"properties":{"MESHCODE":"5339468523","揺全壊":18.35522},"geometry":{"type":"Polygon","coordinates":[[[139.81875423600002,35.73541684500009],[139.8218792450001,35.73541684200006],[139.8218792570001,35.737499841000044],[139.818754249,35.73749984400007],[139.81875423600002,35.73541684500009]]]}},{"type":"Feature","id":18991,"properties":{"MESHCODE":"5339468622","揺全壊":21.08069},"geometry":{"type":"Polygon","coordinates":[[[139.8343792710001,35.73333282700008],[139.83750428000008,35.73333282200008],[139.83750429200006,35.73541682100006],[139.8343792830001,35.73541682600006],[139.8343792710001,35.73333282700008]]]}},{"type":"Feature","id":18995,"properties":{"MESHCODE":"5339468632","揺全壊":16.94322},"geometry":{"type":"Polygon","coordinates":[[[139.82812927600003,35.73749983300007],[139.831254285,35.73749982900006],[139.8312542980001,35.739582829000085],[139.828129289,35.73958283200005],[139.82812927600003,35.73749983300007]]]}},{"type":"Feature","id":18998,"properties":{"MESHCODE":"5339468641","揺全壊":24.27213},"geometry":{"type":"Polygon","coordinates":[[[139.831254285,35.73749982900006],[139.83437929500008,35.73749982500004],[139.83437930700006,35.73958282400008],[139.8312542980001,35.739582829000085],[139.831254285,35.73749982900006]]]}},{"type":"Feature","id":19004,"properties":{"MESHCODE":"5339468713","揺全壊":17.19564},"geometry":{"type":"Polygon","coordinates":[[[139.83750429200006,35.73541682100006],[139.84062930100004,35.73541681700004],[139.840629314,35.73749981700007],[139.83750430400005,35.737499821000085],[139.83750429200006,35.73541682100006]]]}},{"type":"Feature","id":19006,"properties":{"MESHCODE":"5339468721","揺全壊":17.66195},"geometry":{"type":"Polygon","coordinates":[[[139.84375429800002,35.73333281400005],[139.8468793080001,35.733332810000036],[139.84687932000008,35.73541680900007],[139.843754311,35.735416813000086],[139.84375429800002,35.73333281400005]]]}},{"type":"Feature","id":19007,"properties":{"MESHCODE":"5339468722","揺全壊":18.17097},"geometry":{"type":"Polygon","coordinates":[[[139.8468793080001,35.733332810000036],[139.85000431700007,35.73333280600008],[139.85000432900006,35.73541680500006],[139.84687932000008,35.73541680900007],[139.8468793080001,35.733332810000036]]]}},{"type":"Feature","id":19012,"properties":{"MESHCODE":"5339468733","揺全壊":21.9056},"geometry":{"type":"Polygon","coordinates":[[[139.83750431600004,35.73958282000007],[139.840629325,35.73958281600005],[139.840629337,35.74166681500009],[139.83750432800002,35.741666820000034],[139.83750431600004,35.73958282000007]]]}},{"type":"Feature","id":19014,"properties":{"MESHCODE":"5339468741","揺全壊":18.79143},"geometry":{"type":"Polygon","coordinates":[[[139.843754322,35.73749981200007],[139.84687933100008,35.73749980900004],[139.84687934300007,35.73958280800008],[139.8437543340001,35.73958281200004],[139.843754322,35.73749981200007]]]}},{"type":"Feature","id":19015,"properties":{"MESHCODE":"5339468742","揺全壊":19.3089},"geometry":{"type":"Polygon","coordinates":[[[139.84687933100008,35.73749980900004],[139.85000434000005,35.73749980400004],[139.85000435200004,35.739582803000076],[139.84687934300007,35.73958280800008],[139.84687933100008,35.73749980900004]]]}},{"type":"Feature","id":19016,"properties":{"MESHCODE":"5339468743","揺全壊":17.91891},"geometry":{"type":"Polygon","coordinates":[[[139.8437543340001,35.73958281200004],[139.84687934300007,35.73958280800008],[139.84687935500006,35.74166680700006],[139.84375434600008,35.74166681100007],[139.8437543340001,35.73958281200004]]]}},{"type":"Feature","id":19020,"properties":{"MESHCODE":"5339468813","揺全壊":17.18097},"geometry":{"type":"Polygon","coordinates":[[[139.85000432900006,35.73541680500006],[139.85312933600005,35.73541680100004],[139.85312934800004,35.73749980000008],[139.85000434000005,35.73749980400004],[139.85000432900006,35.73541680500006]]]}},{"type":"Feature","id":19026,"properties":{"MESHCODE":"5339468831","揺全壊":15.15013},"geometry":{"type":"Polygon","coordinates":[[[139.85000434000005,35.73749980400004],[139.85312934800004,35.73749980000008],[139.85312936000003,35.73958280000005],[139.85000435200004,35.739582803000076],[139.85000434000005,35.73749980400004]]]}},{"type":"Feature","id":19061,"properties":{"MESHCODE":"5339469034","揺全壊":19.04432},"geometry":{"type":"Polygon","coordinates":[[[139.75312915200004,35.74791688700009],[139.75625415900004,35.74791688600004],[139.7562541750001,35.74999988500008],[139.7531291680001,35.74999988600007],[139.75312915200004,35.74791688700009]]]}},{"type":"Feature","id":19062,"properties":{"MESHCODE":"5339469041","揺全壊":21.49136},"geometry":{"type":"Polygon","coordinates":[[[139.75625414400008,35.74583288800005],[139.75937915100008,35.74583288700006],[139.75937916700002,35.74791688600004],[139.75625415900004,35.74791688600004],[139.75625414400008,35.74583288800005]]]}},{"type":"Feature","id":19070,"properties":{"MESHCODE":"5339469121","揺全壊":20.43802},"geometry":{"type":"Polygon","coordinates":[[[139.76875414200003,35.741666886000075],[139.77187914800004,35.741666885000086],[139.7718791640001,35.74374988300008],[139.768754156,35.74374988500006],[139.76875414200003,35.741666886000075]]]}},{"type":"Feature","id":19072,"properties":{"MESHCODE":"5339469123","揺全壊":23.61409},"geometry":{"type":"Polygon","coordinates":[[[139.768754156,35.74374988500006],[139.7718791640001,35.74374988300008],[139.77187917800006,35.74583288200006],[139.76875417200006,35.74583288400004],[139.768754156,35.74374988500006]]]}},{"type":"Feature","id":19100,"properties":{"MESHCODE":"5339469313","揺全壊":23.02248},"geometry":{"type":"Polygon","coordinates":[[[139.78750420200004,35.74374987200008],[139.79062921000002,35.743749869000055],[139.790629223,35.745832868000036],[139.787504215,35.74583287100006],[139.78750420200004,35.74374987200008]]]}},{"type":"Feature","id":19103,"properties":{"MESHCODE":"5339469322","揺全壊":24.15865},"geometry":{"type":"Polygon","coordinates":[[[139.79687921100003,35.74166686400008],[139.80000421900002,35.741666861000056],[139.8000042330001,35.74374986100008],[139.796879225,35.74374986400005],[139.79687921100003,35.74166686400008]]]}},{"type":"Feature","id":19104,"properties":{"MESHCODE":"5339469323","揺全壊":23.99357},"geometry":{"type":"Polygon","coordinates":[[[139.793754218,35.74374986600009],[139.796879225,35.74374986400005],[139.7968792380001,35.74583286200004],[139.7937542300001,35.74583286500007],[139.793754218,35.74374986600009]]]}},{"type":"Feature","id":19106,"properties":{"MESHCODE":"5339469331","揺全壊":18.07825},"geometry":{"type":"Polygon","coordinates":[[[139.787504215,35.74583287100006],[139.790629223,35.745832868000036],[139.7906292360001,35.74791686700007],[139.7875042290001,35.74791687000004],[139.787504215,35.74583287100006]]]}},{"type":"Feature","id":19115,"properties":{"MESHCODE":"5339469412","揺全壊":18.02493},"geometry":{"type":"Polygon","coordinates":[[[139.8031292280001,35.74166685800009],[139.80625423700008,35.74166685500006],[139.80625425100004,35.74374985500009],[139.80312924200007,35.74374985800006],[139.8031292280001,35.74166685800009]]]}},{"type":"Feature","id":19121,"properties":{"MESHCODE":"5339469424","揺全壊":24.28612},"geometry":{"type":"Polygon","coordinates":[[[139.80937926000001,35.743749852000064],[139.812504268,35.74374984900004],[139.8125042800001,35.74583284900007],[139.809379272,35.745832851000046],[139.80937926000001,35.743749852000064]]]}},{"type":"Feature","id":19126,"properties":{"MESHCODE":"5339469441","揺全壊":15.84072},"geometry":{"type":"Polygon","coordinates":[[[139.80625426300003,35.74583285400007],[139.809379272,35.745832851000046],[139.8093792850001,35.74791685100007],[139.806254276,35.74791685400004],[139.80625426300003,35.74583285400007]]]}},{"type":"Feature","id":19128,"properties":{"MESHCODE":"5339469443","揺全壊":18.75007},"geometry":{"type":"Polygon","coordinates":[[[139.806254276,35.74791685400004],[139.8093792850001,35.74791685100007],[139.80937929700008,35.74999985000005],[139.8062542890001,35.74999985300008],[139.806254276,35.74791685400004]]]}},{"type":"Feature","id":19130,"properties":{"MESHCODE":"5339469511","揺全壊":24.62484},"geometry":{"type":"Polygon","coordinates":[[[139.812504256,35.74166685000006],[139.8156292650001,35.74166684700009],[139.8156292760001,35.74374984600007],[139.812504268,35.74374984900004],[139.812504256,35.74166685000006]]]}},{"type":"Feature","id":19132,"properties":{"MESHCODE":"5339469513","揺全壊":21.52409},"geometry":{"type":"Polygon","coordinates":[[[139.812504268,35.74374984900004],[139.8156292760001,35.74374984600007],[139.81562928900007,35.74583284500005],[139.8125042800001,35.74583284900007],[139.812504268,35.74374984900004]]]}},{"type":"Feature","id":19133,"properties":{"MESHCODE":"5339469514","揺全壊":21.2783},"geometry":{"type":"Polygon","coordinates":[[[139.8156292760001,35.74374984600007],[139.81875428500007,35.74374984200006],[139.81875429800004,35.745832842000084],[139.81562928900007,35.74583284500005],[139.8156292760001,35.74374984600007]]]}},{"type":"Feature","id":19145,"properties":{"MESHCODE":"5339469544","揺全壊":19.93171},"geometry":{"type":"Polygon","coordinates":[[[139.821879319,35.74791683800004],[139.8250043270001,35.74791683400008],[139.8250043390001,35.74999983300006],[139.82187933,35.749999837000075],[139.821879319,35.74791683800004]]]}},{"type":"Feature","id":19148,"properties":{"MESHCODE":"5339469613","揺全壊":15.52304},"geometry":{"type":"Polygon","coordinates":[[[139.82500430300001,35.743749835000074],[139.8281293120001,35.74374983100006],[139.82812932500008,35.74583283000004],[139.825004315,35.745832835000044],[139.82500430300001,35.743749835000074]]]}},{"type":"Feature","id":19150,"properties":{"MESHCODE":"5339469621","揺全壊":21.47717},"geometry":{"type":"Polygon","coordinates":[[[139.8312543090001,35.741666828000064],[139.83437931900005,35.74166682300006],[139.83437933100004,35.74374982300009],[139.83125432200006,35.743749827000045],[139.8312543090001,35.741666828000064]]]}},{"type":"Feature","id":19151,"properties":{"MESHCODE":"5339469622","揺全壊":17.90765},"geometry":{"type":"Polygon","coordinates":[[[139.83437931900005,35.74166682300006],[139.83750432800002,35.741666820000034],[139.83750434,35.74374981900007],[139.83437933100004,35.74374982300009],[139.83437931900005,35.74166682300006]]]}},{"type":"Feature","id":19159,"properties":{"MESHCODE":"5339469642","揺全壊":20.26688},"geometry":{"type":"Polygon","coordinates":[[[139.83437934200003,35.74583282200007],[139.837504351,35.74583281800005],[139.837504363,35.74791681700009],[139.83437935400002,35.747916822000036],[139.83437934200003,35.74583282200007]]]}},{"type":"Feature","id":19161,"properties":{"MESHCODE":"5339469644","揺全壊":19.66473},"geometry":{"type":"Polygon","coordinates":[[[139.83437935400002,35.747916822000036],[139.837504363,35.74791681700009],[139.8375043750001,35.74999981600007],[139.834379366,35.749999821000074],[139.83437935400002,35.747916822000036]]]}},{"type":"Feature","id":19162,"properties":{"MESHCODE":"5339469711","揺全壊":20.45689},"geometry":{"type":"Polygon","coordinates":[[[139.83750432800002,35.741666820000034],[139.840629337,35.74166681500009],[139.8406293490001,35.74374981500006],[139.83750434,35.74374981900007],[139.83750432800002,35.741666820000034]]]}},{"type":"Feature","id":19164,"properties":{"MESHCODE":"5339469713","揺全壊":20.42673},"geometry":{"type":"Polygon","coordinates":[[[139.83750434,35.74374981900007],[139.8406293490001,35.74374981500006],[139.8406293600001,35.74583281400004],[139.837504351,35.74583281800005],[139.83750434,35.74374981900007]]]}},{"type":"Feature","id":19180,"properties":{"MESHCODE":"5339469813","揺全壊":16.63684},"geometry":{"type":"Polygon","coordinates":[[[139.85000437500003,35.74374980200008],[139.853129383,35.74374979800007],[139.853129395,35.74583279700005],[139.850004388,35.74583280100006],[139.85000437500003,35.74374980200008]]]}},{"type":"Feature","id":19211,"properties":{"MESHCODE":"5339470012","揺全壊":18.77636},"geometry":{"type":"Polygon","coordinates":[[[139.8781290290001,35.666666761000045],[139.88125404100003,35.66666675600004],[139.88125405800008,35.66874975600007],[139.87812904600003,35.66874976200006],[139.8781290290001,35.666666761000045]]]}},{"type":"Feature","id":19228,"properties":{"MESHCODE":"5339471013","揺全壊":20.90843},"geometry":{"type":"Polygon","coordinates":[[[139.87500409400002,35.67708276900004],[139.87812910700006,35.67708276400003],[139.87812912000004,35.67916676400006],[139.875004107,35.67916676900006],[139.87500409400002,35.67708276900004]]]}},{"type":"Feature","id":19234,"properties":{"MESHCODE":"5339471031","揺全壊":16.64999},"geometry":{"type":"Polygon","coordinates":[[[139.875004107,35.67916676900006],[139.87812912000004,35.67916676400006],[139.87812913300002,35.681249765000075],[139.87500412000009,35.68124977000008],[139.875004107,35.67916676900006]]]}},{"type":"Feature","id":19240,"properties":{"MESHCODE":"5339471043","揺全壊":19.72646},"geometry":{"type":"Polygon","coordinates":[[[139.88125414500007,35.68124975900008],[139.8843791590001,35.68124975400008],[139.8843791710001,35.68333275500004],[139.88125415800005,35.68333275900005],[139.88125414500007,35.68124975900008]]]}},{"type":"Feature","id":19253,"properties":{"MESHCODE":"5339472021","揺全壊":18.64297},"geometry":{"type":"Polygon","coordinates":[[[139.88125415800005,35.68333275900005],[139.8843791710001,35.68333275500004],[139.88437918,35.68541675600005],[139.88125416800005,35.68541676000007],[139.88125415800005,35.68333275900005]]]}},{"type":"Feature","id":19257,"properties":{"MESHCODE":"5339472031","揺全壊":20.88655},"geometry":{"type":"Polygon","coordinates":[[[139.87500415600005,35.687499771000034],[139.878129166,35.68749976600009],[139.878129177,35.68958276700005],[139.87500416600005,35.68958277100006],[139.87500415600005,35.687499771000034]]]}},{"type":"Feature","id":19258,"properties":{"MESHCODE":"5339472032","揺全壊":15.86483},"geometry":{"type":"Polygon","coordinates":[[[139.878129166,35.68749976600009],[139.88125417700007,35.68749976100008],[139.88125418700008,35.68958276200004],[139.878129177,35.68958276700005],[139.878129166,35.68749976600009]]]}},{"type":"Feature","id":19268,"properties":{"MESHCODE":"5339472114","揺全壊":22.21157},"geometry":{"type":"Polygon","coordinates":[[[139.89062919600008,35.685416746000044],[139.89375420200008,35.68541674000005],[139.89375420800002,35.68749974200006],[139.890629204,35.68749974600007],[139.89062919600008,35.685416746000044]]]}},{"type":"Feature","id":19270,"properties":{"MESHCODE":"5339472122","揺全壊":23.74813},"geometry":{"type":"Polygon","coordinates":[[[139.89687920200004,35.68333273300004],[139.90000420800004,35.68333272800004],[139.9000042130001,35.68541673000004],[139.8968792080001,35.68541673500005],[139.89687920200004,35.68333273300004]]]}},{"type":"Feature","id":19274,"properties":{"MESHCODE":"5339472132","揺全壊":19.95018},"geometry":{"type":"Polygon","coordinates":[[[139.890629204,35.68749974600007],[139.89375420800002,35.68749974200006],[139.89375421400007,35.689582743000074],[139.89062921100003,35.68958274700009],[139.890629204,35.68749974600007]]]}},{"type":"Feature","id":19276,"properties":{"MESHCODE":"5339472134","揺全壊":15.37884},"geometry":{"type":"Polygon","coordinates":[[[139.89062921100003,35.68958274700009],[139.89375421400007,35.689582743000074],[139.893754221,35.69166674500008],[139.89062921700008,35.691666749000035],[139.89062921100003,35.68958274700009]]]}},{"type":"Feature","id":19284,"properties":{"MESHCODE":"5339472214","揺全壊":17.24976},"geometry":{"type":"Polygon","coordinates":[[[139.90312920400004,35.685416726000085],[139.9062541950001,35.68541672200007],[139.90625420100002,35.68749972400008],[139.9031292100001,35.687499728000034],[139.90312920400004,35.685416726000085]]]}},{"type":"Feature","id":19292,"properties":{"MESHCODE":"5339472241","揺全壊":24.58771},"geometry":{"type":"Polygon","coordinates":[[[139.90625420100002,35.68749972400008],[139.90937919300006,35.68749972100005],[139.9093792000001,35.68958272200007],[139.90625420800006,35.68958272600008],[139.90625420100002,35.68749972400008]]]}},{"type":"Feature","id":19300,"properties":{"MESHCODE":"5339473013","揺全壊":22.75292},"geometry":{"type":"Polygon","coordinates":[[[139.87500418800005,35.693749773000036],[139.87812919600003,35.69374976800009],[139.87812920500005,35.69583276900005],[139.87500419700007,35.69583277400005],[139.87500418800005,35.693749773000036]]]}},{"type":"Feature","id":19308,"properties":{"MESHCODE":"5339473033","揺全壊":15.87309},"geometry":{"type":"Polygon","coordinates":[[[139.87500420700007,35.69791677500007],[139.87812921500006,35.69791677000006],[139.87812922400008,35.69999977100008],[139.87500421700008,35.69999977500004],[139.87500420700007,35.69791677500007]]]}},{"type":"Feature","id":19309,"properties":{"MESHCODE":"5339473034","揺全壊":16.54504},"geometry":{"type":"Polygon","coordinates":[[[139.87812921500006,35.69791677000006],[139.88125422200005,35.69791676600005],[139.88125423100007,35.699999767000065],[139.87812922400008,35.69999977100008],[139.87812921500006,35.69791677000006]]]}},{"type":"Feature","id":19410,"properties":{"MESHCODE":"5339475011","揺全壊":19.95977},"geometry":{"type":"Polygon","coordinates":[[[139.87500425300004,35.70833277500009],[139.87812925900005,35.70833277100007],[139.87812926800007,35.71041677200009],[139.87500426200006,35.710416776000045],[139.87500425300004,35.70833277500009]]]}},{"type":"Feature","id":19418,"properties":{"MESHCODE":"5339475031","揺全壊":15.12759},"geometry":{"type":"Polygon","coordinates":[[[139.87500427200007,35.71249977700006],[139.87812927700008,35.71249977300005],[139.8781292870001,35.714582773000075],[139.87500428200008,35.71458277700009],[139.87500427200007,35.71249977700006]]]}},{"type":"Feature","id":19420,"properties":{"MESHCODE":"5339475033","揺全壊":23.58709},"geometry":{"type":"Polygon","coordinates":[[[139.87500428200008,35.71458277700009],[139.8781292870001,35.714582773000075],[139.878129296,35.71666677400009],[139.87500429200009,35.71666677800005],[139.87500428200008,35.71458277700009]]]}},{"type":"Feature","id":19461,"properties":{"MESHCODE":"5339476012","揺全壊":15.58572},"geometry":{"type":"Polygon","coordinates":[[[139.878129296,35.71666677400009],[139.88125430000002,35.716666770000074],[139.88125431000003,35.718749770000045],[139.87812930500002,35.71874977400006],[139.878129296,35.71666677400009]]]}},{"type":"Feature","id":25218,"properties":{"MESHCODE":"5339550941","揺全壊":21.95877},"geometry":{"type":"Polygon","coordinates":[[[139.7437541810001,35.754166884000085],[139.7468791870001,35.754166884000085],[139.74687920400004,35.75624988200008],[139.74375419700004,35.75624988200008],[139.7437541810001,35.754166884000085]]]}},{"type":"Feature","id":25219,"properties":{"MESHCODE":"5339550942","揺全壊":22.12399},"geometry":{"type":"Polygon","coordinates":[[[139.7468791870001,35.754166884000085],[139.750004193,35.75416688300004],[139.75000420900005,35.75624988200008],[139.74687920400004,35.75624988200008],[139.7468791870001,35.754166884000085]]]}},{"type":"Feature","id":25220,"properties":{"MESHCODE":"5339550943","揺全壊":17.07045},"geometry":{"type":"Polygon","coordinates":[[[139.74375419700004,35.75624988200008],[139.74687920400004,35.75624988200008],[139.7468792200001,35.75833288000007],[139.7437542140001,35.75833288000007],[139.74375419700004,35.75624988200008]]]}},{"type":"Feature","id":25243,"properties":{"MESHCODE":"5339551122","揺全壊":15.32994},"geometry":{"type":"Polygon","coordinates":[[[139.64687877000006,35.758332918000065],[139.65000377800004,35.758332917000075],[139.65000382300002,35.76041690300008],[139.6468788100001,35.760416906000046],[139.64687877000006,35.758332918000065]]]}},{"type":"Feature","id":25343,"properties":{"MESHCODE":"5339551732","揺全壊":24.98266},"geometry":{"type":"Polygon","coordinates":[[[139.71562920400004,35.76249986900007],[139.71875420800006,35.762499870000056],[139.718754225,35.76458286800005],[139.71562922100009,35.76458286600007],[139.71562920400004,35.76249986900007]]]}},{"type":"Feature","id":25355,"properties":{"MESHCODE":"5339551822","揺全壊":19.34036},"geometry":{"type":"Polygon","coordinates":[[[139.73437919800006,35.75833288000007],[139.73750420300007,35.75833288000007],[139.73750421900002,35.76041687900005],[139.734379214,35.76041687800006],[139.73437919800006,35.75833288000007]]]}},{"type":"Feature","id":25365,"properties":{"MESHCODE":"5339551844","揺全壊":21.2453},"geometry":{"type":"Polygon","coordinates":[[[139.734379246,35.76458287400004],[139.73750425100002,35.76458287500009],[139.73750426700008,35.76666687200009],[139.73437926200006,35.76666687100004],[139.734379246,35.76458287400004]]]}},{"type":"Feature","id":25369,"properties":{"MESHCODE":"5339551914","揺全壊":19.40449},"geometry":{"type":"Polygon","coordinates":[[[139.74062922400003,35.76041687900005],[139.74375423000004,35.76041687900005],[139.7437542450001,35.76249987700004],[139.7406292400001,35.76249987700004],[139.74062922400003,35.76041687900005]]]}},{"type":"Feature","id":25371,"properties":{"MESHCODE":"5339551922","揺全壊":16.03759},"geometry":{"type":"Polygon","coordinates":[[[139.7468792200001,35.75833288000007],[139.750004225,35.75833288000007],[139.75000424000007,35.76041687900005],[139.74687923500005,35.76041687900005],[139.7468792200001,35.75833288000007]]]}},{"type":"Feature","id":25375,"properties":{"MESHCODE":"5339551932","揺全壊":22.21062},"geometry":{"type":"Polygon","coordinates":[[[139.7406292400001,35.76249987700004],[139.7437542450001,35.76249987700004],[139.74375426000006,35.76458287500009],[139.74062925600003,35.76458287500009],[139.7406292400001,35.76249987700004]]]}},{"type":"Feature","id":25517,"properties":{"MESHCODE":"5339552824","揺全壊":24.49628},"geometry":{"type":"Polygon","coordinates":[[[139.734379278,35.76874987000008],[139.73750428200003,35.76874987100007],[139.7375042970001,35.77083286900006],[139.73437929300007,35.77083286900006],[139.734379278,35.76874987000008]]]}},{"type":"Feature","id":25529,"properties":{"MESHCODE":"5339552914","揺全壊":24.90226},"geometry":{"type":"Polygon","coordinates":[[[139.74062928600006,35.76874987200006],[139.74375429200006,35.76874987200006],[139.74375430700002,35.77083287100004],[139.740629302,35.77083287000005],[139.74062928600006,35.76874987200006]]]}},{"type":"Feature","id":25534,"properties":{"MESHCODE":"5339552931","揺全壊":19.12536},"geometry":{"type":"Polygon","coordinates":[[[139.7375042970001,35.77083286900006],[139.740629302,35.77083287000005],[139.74062931700007,35.772916869000085],[139.73750431300004,35.77291686800004],[139.7375042970001,35.77083286900006]]]}},{"type":"Feature","id":25536,"properties":{"MESHCODE":"5339552933","揺全壊":21.80473},"geometry":{"type":"Polygon","coordinates":[[[139.73750431300004,35.77291686800004],[139.74062931700007,35.772916869000085],[139.74062933200003,35.774999867000076],[139.737504328,35.774999867000076],[139.73750431300004,35.77291686800004]]]}},{"type":"Feature","id":25538,"properties":{"MESHCODE":"5339552941","揺全壊":18.41002},"geometry":{"type":"Polygon","coordinates":[[[139.74375430700002,35.77083287100004],[139.74687931100004,35.77083287100004],[139.7468793270001,35.772916870000074],[139.7437543220001,35.772916870000074],[139.74375430700002,35.77083287100004]]]}},{"type":"Feature","id":25599,"properties":{"MESHCODE":"5339553332","揺全壊":20.18785},"geometry":{"type":"Polygon","coordinates":[[[139.6656292570001,35.77916679300006],[139.66875426900003,35.77916679400005],[139.66875427700006,35.781249795000065],[139.66562926300003,35.781249794000075],[139.6656292570001,35.77916679300006]]]}},{"type":"Feature","id":25616,"properties":{"MESHCODE":"5339553433","揺全壊":16.15972},"geometry":{"type":"Polygon","coordinates":[[[139.67500430400003,35.781249797000044],[139.67812930800005,35.78124980200005],[139.67812931900005,35.783332801000086],[139.67500431400003,35.78333279700007],[139.67500430400003,35.781249797000044]]]}},{"type":"Feature","id":25659,"properties":{"MESHCODE":"5339553722","揺全壊":16.09831},"geometry":{"type":"Polygon","coordinates":[[[139.7218793080001,35.77499986100008],[139.72500431100002,35.77499986400005],[139.7250043260001,35.77708286200004],[139.72187932300005,35.777082860000064],[139.7218793080001,35.77499986100008]]]}},{"type":"Feature","id":25664,"properties":{"MESHCODE":"5339553733","揺全壊":15.39014},"geometry":{"type":"Polygon","coordinates":[[[139.712504341,35.78124984800007],[139.71562934500002,35.78124985100004],[139.7156293600001,35.78333285000008],[139.71250435500008,35.783332847000054],[139.712504341,35.78124984800007]]]}},{"type":"Feature","id":25667,"properties":{"MESHCODE":"5339553742","揺全壊":16.99484},"geometry":{"type":"Polygon","coordinates":[[[139.721879338,35.77916685900004],[139.72500434200003,35.77916686100008],[139.7250043570001,35.78124985900007],[139.72187935300008,35.781249857000034],[139.721879338,35.77916685900004]]]}},{"type":"Feature","id":25673,"properties":{"MESHCODE":"5339553814","揺全壊":21.11382},"geometry":{"type":"Polygon","coordinates":[[[139.7281293310001,35.77708286400008],[139.73125433400003,35.77708286400008],[139.73125435000009,35.77916686300006],[139.72812934500007,35.77916686200007],[139.7281293310001,35.77708286400008]]]}},{"type":"Feature","id":25674,"properties":{"MESHCODE":"5339553821","揺全壊":19.14906},"geometry":{"type":"Polygon","coordinates":[[[139.73125431900007,35.77499986500004],[139.7343793230001,35.77499986600009],[139.73437933900004,35.77708286500007],[139.73125433400003,35.77708286400008],[139.73125431900007,35.77499986500004]]]}},{"type":"Feature","id":25675,"properties":{"MESHCODE":"5339553822","揺全壊":17.6884},"geometry":{"type":"Polygon","coordinates":[[[139.7343793230001,35.77499986600009],[139.737504328,35.774999867000076],[139.73750434200008,35.77708286600006],[139.73437933900004,35.77708286500007],[139.7343793230001,35.77499986600009]]]}},{"type":"Feature","id":25680,"properties":{"MESHCODE":"5339553833","揺全壊":16.54562},"geometry":{"type":"Polygon","coordinates":[[[139.7250043570001,35.78124985900007],[139.72812936000003,35.78124986100005],[139.72812937600008,35.78333286000009],[139.72500437200006,35.78333285800005],[139.7250043570001,35.78124985900007]]]}},{"type":"Feature","id":25699,"properties":{"MESHCODE":"5339553942","揺全壊":18.10157},"geometry":{"type":"Polygon","coordinates":[[[139.74687937200008,35.77916686700007],[139.750004376,35.77916686700007],[139.75000439100006,35.78124986500006],[139.74687938600005,35.78124986500006],[139.74687937200008,35.77916686700007]]]}},{"type":"Feature","id":25720,"properties":{"MESHCODE":"5339554124","揺全壊":15.63324},"geometry":{"type":"Polygon","coordinates":[[[139.6468791310001,35.78541682100007],[139.650004158,35.785416815000076],[139.6500041710001,35.78749981400006],[139.64687914500007,35.78749981900006],[139.6468791310001,35.78541682100007]]]}},{"type":"Feature","id":25725,"properties":{"MESHCODE":"5339554141","揺全壊":15.26492},"geometry":{"type":"Polygon","coordinates":[[[139.64375411900005,35.787499824000065],[139.64687914500007,35.78749981900006],[139.64687915900004,35.78958281700005],[139.643754134,35.78958282200006],[139.64375411900005,35.787499824000065]]]}},{"type":"Feature","id":25816,"properties":{"MESHCODE":"5339554724","揺全壊":16.0696},"geometry":{"type":"Polygon","coordinates":[[[139.721879381,35.78541685500005],[139.72500438600002,35.785416858000076],[139.725004398,35.78749985700006],[139.7218793950001,35.78749985400009],[139.721879381,35.78541685500005]]]}},{"type":"Feature","id":25865,"properties":{"MESHCODE":"5339555221","揺全壊":18.26226},"geometry":{"type":"Polygon","coordinates":[[[139.65625424200005,35.791666804000045],[139.659379264,35.791666801000076],[139.659379273,35.79374980100005],[139.65625425200005,35.79374980400007],[139.65625424200005,35.791666804000045]]]}},{"type":"Feature","id":25973,"properties":{"MESHCODE":"5339560133","揺全壊":15.25727},"geometry":{"type":"Polygon","coordinates":[[[139.76250423300007,35.75624987900005],[139.76562923900008,35.75624987800006],[139.76562925300004,35.75833287700004],[139.76250424700004,35.75833287800009],[139.76250423300007,35.75624987900005]]]}},{"type":"Feature","id":25984,"properties":{"MESHCODE":"5339560222","揺全壊":20.35986},"geometry":{"type":"Polygon","coordinates":[[[139.78437923500007,35.749999872000046],[139.78750424100008,35.74999987000007],[139.78750425600003,35.75208286800006],[139.78437924900004,35.75208287000004],[139.78437923500007,35.749999872000046]]]}},{"type":"Feature","id":26000,"properties":{"MESHCODE":"5339560322","揺全壊":19.18724},"geometry":{"type":"Polygon","coordinates":[[[139.79687926400004,35.74999986100005],[139.80000427200002,35.74999985900007],[139.800004285,35.75208285800005],[139.796879278,35.75208286000009],[139.79687926400004,35.74999986100005]]]}},{"type":"Feature","id":26006,"properties":{"MESHCODE":"5339560334","揺全壊":15.78784},"geometry":{"type":"Polygon","coordinates":[[[139.79062929100007,35.75624986300005],[139.79375429800007,35.75624986100007],[139.79375431100004,35.75833286000005],[139.79062930400005,35.75833286200009],[139.79062929100007,35.75624986300005]]]}},{"type":"Feature","id":26013,"properties":{"MESHCODE":"5339560413","揺全壊":16.94026},"geometry":{"type":"Polygon","coordinates":[[[139.800004285,35.75208285800005],[139.8031292940001,35.75208285500008],[139.80312930600007,35.75416685400006],[139.8000042980001,35.75416685700009],[139.800004285,35.75208285800005]]]}},{"type":"Feature","id":26018,"properties":{"MESHCODE":"5339560424","揺全壊":21.30857},"geometry":{"type":"Polygon","coordinates":[[[139.80937931000005,35.75208284900009],[139.81250431800004,35.752082846000064],[139.81250433000002,35.75416684600009],[139.80937932200004,35.75416684900006],[139.80937931000005,35.75208284900009]]]}},{"type":"Feature","id":26021,"properties":{"MESHCODE":"5339560433","揺全壊":16.09366},"geometry":{"type":"Polygon","coordinates":[[[139.80000431200006,35.75624985600007],[139.80312932000004,35.75624985400009],[139.80312933200003,35.75833285300007],[139.80000432500003,35.75833285600004],[139.80000431200006,35.75624985600007]]]}},{"type":"Feature","id":26036,"properties":{"MESHCODE":"5339560532","揺全壊":22.09798},"geometry":{"type":"Polygon","coordinates":[[[139.815629338,35.754166842000075],[139.8187543470001,35.75416683800006],[139.81875436000007,35.75624983700004],[139.8156293510001,35.756249841000056],[139.815629338,35.754166842000075]]]}},{"type":"Feature","id":26044,"properties":{"MESHCODE":"5339560612","揺全壊":18.73865},"geometry":{"type":"Polygon","coordinates":[[[139.82812934800006,35.749999829000046],[139.83125435700003,35.74999982500009],[139.83125437,35.75208282400007],[139.82812936100004,35.752082828000084],[139.82812934800006,35.749999829000046]]]}},{"type":"Feature","id":26047,"properties":{"MESHCODE":"5339560621","揺全壊":15.60674},"geometry":{"type":"Polygon","coordinates":[[[139.83125435700003,35.74999982500009],[139.834379366,35.749999821000074],[139.834379378,35.752082819000066],[139.83125437,35.75208282400007],[139.83125435700003,35.74999982500009]]]}},{"type":"Feature","id":26052,"properties":{"MESHCODE":"5339560632","揺全壊":17.13785},"geometry":{"type":"Polygon","coordinates":[[[139.82812937300002,35.75416682600007],[139.831254382,35.75416682200006],[139.8312543950001,35.75624982100004],[139.828129386,35.756249825000054],[139.82812937300002,35.75416682600007]]]}},{"type":"Feature","id":26053,"properties":{"MESHCODE":"5339560633","揺全壊":21.806},"geometry":{"type":"Polygon","coordinates":[[[139.82500437600004,35.75624983000006],[139.828129386,35.756249825000054],[139.8281293980001,35.758332823000046],[139.82500438900001,35.75833282800005],[139.82500437600004,35.75624983000006]]]}},{"type":"Feature","id":26054,"properties":{"MESHCODE":"5339560634","揺全壊":15.95773},"geometry":{"type":"Polygon","coordinates":[[[139.828129386,35.756249825000054],[139.8312543950001,35.75624982100004],[139.83125440700007,35.75833282000008],[139.8281293980001,35.758332823000046],[139.828129386,35.756249825000054]]]}},{"type":"Feature","id":26055,"properties":{"MESHCODE":"5339560641","揺全壊":15.95943},"geometry":{"type":"Polygon","coordinates":[[[139.831254382,35.75416682200006],[139.83437939100008,35.754166818000044],[139.83437940400006,35.756249816000036],[139.8312543950001,35.75624982100004],[139.831254382,35.75416682200006]]]}},{"type":"Feature","id":26059,"properties":{"MESHCODE":"5339560711","揺全壊":15.59234},"geometry":{"type":"Polygon","coordinates":[[[139.8375043750001,35.74999981600007],[139.84062938400007,35.749999813000045],[139.84062939600005,35.75208281100004],[139.83750438700008,35.75208281500005],[139.8375043750001,35.74999981600007]]]}},{"type":"Feature","id":26111,"properties":{"MESHCODE":"5339561021","揺全壊":19.4483},"geometry":{"type":"Polygon","coordinates":[[[139.75625423600002,35.75833287900008],[139.75937924200002,35.75833287900008],[139.7593792570001,35.76041687700007],[139.7562542510001,35.76041687800006],[139.75625423600002,35.75833287900008]]]}},{"type":"Feature","id":26129,"properties":{"MESHCODE":"5339561123","揺全壊":17.36276},"geometry":{"type":"Polygon","coordinates":[[[139.7687542750001,35.76041687400004],[139.77187928,35.760416872000064],[139.77187929600007,35.762499871000045],[139.76875428900007,35.762499872000035],[139.7687542750001,35.76041687400004]]]}},{"type":"Feature","id":26130,"properties":{"MESHCODE":"5339561124","揺全壊":18.89178},"geometry":{"type":"Polygon","coordinates":[[[139.77187928,35.760416872000064],[139.775004286,35.760416871000075],[139.77500430200007,35.76249986900007],[139.77187929600007,35.762499871000045],[139.77187928,35.760416872000064]]]}},{"type":"Feature","id":26132,"properties":{"MESHCODE":"5339561132","揺全壊":21.8693},"geometry":{"type":"Polygon","coordinates":[[[139.76562928400006,35.76249987400007],[139.76875428900007,35.762499872000035],[139.76875430500002,35.76458287100007],[139.76562929800002,35.76458287200006],[139.76562928400006,35.76249987400007]]]}},{"type":"Feature","id":26134,"properties":{"MESHCODE":"5339561134","揺全壊":17.75938},"geometry":{"type":"Polygon","coordinates":[[[139.76562929800002,35.76458287200006],[139.76875430500002,35.76458287100007],[139.76875432000008,35.76666687000005],[139.76562931400008,35.76666687000005],[139.76562929800002,35.76458287200006]]]}},{"type":"Feature","id":26138,"properties":{"MESHCODE":"5339561144","揺全壊":19.09639},"geometry":{"type":"Polygon","coordinates":[[[139.77187931000003,35.76458286900004],[139.77500431600004,35.76458286800005],[139.7750043310001,35.76666686700008],[139.7718793250001,35.76666686800007],[139.77187931000003,35.76458286900004]]]}},{"type":"Feature","id":26174,"properties":{"MESHCODE":"5339561414","揺全壊":19.85763},"geometry":{"type":"Polygon","coordinates":[[[139.803129345,35.76041685200005],[139.806254352,35.76041684900008],[139.8062543650001,35.76249984900005],[139.8031293580001,35.762499851000086],[139.803129345,35.76041685200005]]]}},{"type":"Feature","id":26178,"properties":{"MESHCODE":"5339561424","揺全壊":23.36786},"geometry":{"type":"Polygon","coordinates":[[[139.8093793600001,35.760416847000045],[139.8125043670001,35.760416844000076],[139.81250437900007,35.76249984300006],[139.80937937200008,35.76249984600008],[139.8093793600001,35.760416847000045]]]}},{"type":"Feature","id":26183,"properties":{"MESHCODE":"5339561441","揺全壊":24.3251},"geometry":{"type":"Polygon","coordinates":[[[139.8062543650001,35.76249984900005],[139.80937937200008,35.76249984600008],[139.80937938400007,35.764582845000064],[139.80625437600008,35.76458284800009],[139.8062543650001,35.76249984900005]]]}},{"type":"Feature","id":26184,"properties":{"MESHCODE":"5339561442","揺全壊":16.41013},"geometry":{"type":"Polygon","coordinates":[[[139.80937937200008,35.76249984600008],[139.81250437900007,35.76249984300006],[139.81250439100006,35.764582843000085],[139.80937938400007,35.764582845000064],[139.80937937200008,35.76249984600008]]]}},{"type":"Feature","id":26190,"properties":{"MESHCODE":"5339561514","揺全壊":17.8943},"geometry":{"type":"Polygon","coordinates":[[[139.81562937600006,35.76041683900007],[139.81875438400004,35.76041683500006],[139.81875439700002,35.76249983400004],[139.81562938800005,35.76249983900004],[139.81562937600006,35.76041683900007]]]}},{"type":"Feature","id":26192,"properties":{"MESHCODE":"5339561522","揺全壊":23.86744},"geometry":{"type":"Polygon","coordinates":[[[139.82187938100003,35.758332832000065],[139.82500438900001,35.75833282800005],[139.825004401,35.760416827000086],[139.82187939300002,35.76041683100004],[139.82187938100003,35.758332832000065]]]}},{"type":"Feature","id":26193,"properties":{"MESHCODE":"5339561523","揺全壊":16.61649},"geometry":{"type":"Polygon","coordinates":[[[139.81875438400004,35.76041683500006],[139.82187939300002,35.76041683100004],[139.821879405,35.76249983100007],[139.81875439700002,35.76249983400004],[139.81875438400004,35.76041683500006]]]}},{"type":"Feature","id":26194,"properties":{"MESHCODE":"5339561524","揺全壊":15.29878},"geometry":{"type":"Polygon","coordinates":[[[139.82187939300002,35.76041683100004],[139.825004401,35.760416827000086],[139.8250044140001,35.76249982600007],[139.821879405,35.76249983100007],[139.82187939300002,35.76041683100004]]]}},{"type":"Feature","id":26196,"properties":{"MESHCODE":"5339561532","揺全壊":17.91979},"geometry":{"type":"Polygon","coordinates":[[[139.81562938800005,35.76249983900004],[139.81875439700002,35.76249983400004],[139.81875440800002,35.764582834000066],[139.81562940000003,35.76458283800008],[139.81562938800005,35.76249983900004]]]}},{"type":"Feature","id":26197,"properties":{"MESHCODE":"5339561533","揺全壊":20.18515},"geometry":{"type":"Polygon","coordinates":[[[139.81250439100006,35.764582843000085],[139.81562940000003,35.76458283800008],[139.81562941200002,35.76666683800005],[139.81250440200006,35.766666841000074],[139.81250439100006,35.764582843000085]]]}},{"type":"Feature","id":26198,"properties":{"MESHCODE":"5339561534","揺全壊":22.23466},"geometry":{"type":"Polygon","coordinates":[[[139.81562940000003,35.76458283800008],[139.81875440800002,35.764582834000066],[139.818754421,35.766666833000045],[139.81562941200002,35.76666683800005],[139.81562940000003,35.76458283800008]]]}},{"type":"Feature","id":26199,"properties":{"MESHCODE":"5339561541","揺全壊":15.46524},"geometry":{"type":"Polygon","coordinates":[[[139.81875439700002,35.76249983400004],[139.821879405,35.76249983100007],[139.8218794170001,35.76458283000005],[139.81875440800002,35.764582834000066],[139.81875439700002,35.76249983400004]]]}},{"type":"Feature","id":26204,"properties":{"MESHCODE":"5339561612","揺全壊":17.50493},"geometry":{"type":"Polygon","coordinates":[[[139.8281293980001,35.758332823000046],[139.83125440700007,35.75833282000008],[139.83125442000005,35.76041681800007],[139.8281294100001,35.76041682300007],[139.8281293980001,35.758332823000046]]]}},{"type":"Feature","id":26208,"properties":{"MESHCODE":"5339561622","揺全壊":16.08891},"geometry":{"type":"Polygon","coordinates":[[[139.83437941600005,35.758332815000074],[139.83750442500002,35.75833281100006],[139.837504438,35.76041681000004],[139.83437942900002,35.76041681400005],[139.83437941600005,35.758332815000074]]]}},{"type":"Feature","id":26210,"properties":{"MESHCODE":"5339561624","揺全壊":18.31799},"geometry":{"type":"Polygon","coordinates":[[[139.83437942900002,35.76041681400005],[139.837504438,35.76041681000004],[139.8375044500001,35.762499808000086],[139.834379441,35.762499812000044],[139.83437942900002,35.76041681400005]]]}},{"type":"Feature","id":26214,"properties":{"MESHCODE":"5339561634","揺全壊":17.19542},"geometry":{"type":"Polygon","coordinates":[[[139.82812943500005,35.76458282100009],[139.83125444400002,35.764582816000086],[139.831254457,35.766666815000065],[139.82812944800003,35.76666682000007],[139.82812943500005,35.76458282100009]]]}},{"type":"Feature","id":26221,"properties":{"MESHCODE":"5339561713","揺全壊":20.46471},"geometry":{"type":"Polygon","coordinates":[[[139.837504438,35.76041681000004],[139.8406294460001,35.760416805000034],[139.84062945900007,35.76249980400007],[139.8375044500001,35.762499808000086],[139.837504438,35.76041681000004]]]}},{"type":"Feature","id":26224,"properties":{"MESHCODE":"5339561722","揺全壊":19.43656},"geometry":{"type":"Polygon","coordinates":[[[139.84687945000007,35.75833279900007],[139.85000445800006,35.75833279400007],[139.85000447100003,35.76041679300005],[139.84687946300005,35.76041679700006],[139.84687945000007,35.75833279900007]]]}},{"type":"Feature","id":26225,"properties":{"MESHCODE":"5339561723","揺全壊":15.01483},"geometry":{"type":"Polygon","coordinates":[[[139.84375445500007,35.760416802000066],[139.84687946300005,35.76041679700006],[139.84687947600003,35.76249979600004],[139.84375446700005,35.76249980000006],[139.84375445500007,35.760416802000066]]]}},{"type":"Feature","id":26228,"properties":{"MESHCODE":"5339561732","揺全壊":24.60069},"geometry":{"type":"Polygon","coordinates":[[[139.84062945900007,35.76249980400007],[139.84375446700005,35.76249980000006],[139.84375448100002,35.76458279900004],[139.84062947200005,35.76458280300005],[139.84062945900007,35.76249980400007]]]}},{"type":"Feature","id":26234,"properties":{"MESHCODE":"5339561744","揺全壊":22.847},"geometry":{"type":"Polygon","coordinates":[[[139.8468794900001,35.764582794000034],[139.8500044980001,35.76458279000008],[139.85000451100007,35.766666789000055],[139.8468795020001,35.76666679300007],[139.8468794900001,35.764582794000034]]]}},{"type":"Feature","id":26241,"properties":{"MESHCODE":"5339561823","揺全壊":21.34122},"geometry":{"type":"Polygon","coordinates":[[[139.856254487,35.760416784000085],[139.8593794950001,35.76041678000007],[139.85937950800007,35.76249977800006],[139.8562545000001,35.76249978300007],[139.856254487,35.760416784000085]]]}},{"type":"Feature","id":26243,"properties":{"MESHCODE":"5339561831","揺全壊":16.3764},"geometry":{"type":"Polygon","coordinates":[[[139.850004485,35.76249979100004],[139.853129492,35.76249978700008],[139.85312950600007,35.76458278600006],[139.8500044980001,35.76458279000008],[139.850004485,35.76249979100004]]]}},{"type":"Feature","id":26280,"properties":{"MESHCODE":"5339562042","揺全壊":21.82542},"geometry":{"type":"Polygon","coordinates":[[[139.75937933300008,35.77083287000005],[139.762504337,35.77083286900006],[139.76250435200006,35.77291686800004],[139.75937934700005,35.772916869000085],[139.75937933300008,35.77083287000005]]]}},{"type":"Feature","id":26281,"properties":{"MESHCODE":"5339562043","揺全壊":17.16455},"geometry":{"type":"Polygon","coordinates":[[[139.75625434200003,35.772916870000074],[139.75937934700005,35.772916869000085],[139.75937936100001,35.774999867000076],[139.7562543570001,35.774999868000066],[139.75625434200003,35.772916870000074]]]}},{"type":"Feature","id":26282,"properties":{"MESHCODE":"5339562044","揺全壊":16.54215},"geometry":{"type":"Polygon","coordinates":[[[139.75937934700005,35.772916869000085],[139.76250435200006,35.77291686800004],[139.76250436700002,35.774999867000076],[139.75937936100001,35.774999867000076],[139.75937934700005,35.772916869000085]]]}},{"type":"Feature","id":26286,"properties":{"MESHCODE":"5339562114","揺全壊":16.34015},"geometry":{"type":"Polygon","coordinates":[[[139.76562932800005,35.76874986900009],[139.76875433300006,35.76874986800004],[139.76875434800002,35.77083286700008],[139.765629342,35.77083286800007],[139.76562932800005,35.76874986900009]]]}},{"type":"Feature","id":26290,"properties":{"MESHCODE":"5339562124","揺全壊":23.14284},"geometry":{"type":"Polygon","coordinates":[[[139.77187933900007,35.768749866000064],[139.77500434500007,35.768749865000075],[139.77500435800005,35.770832864000056],[139.77187935300003,35.770832865000045],[139.77187933900007,35.768749866000064]]]}},{"type":"Feature","id":26291,"properties":{"MESHCODE":"5339562131","揺全壊":18.48403},"geometry":{"type":"Polygon","coordinates":[[[139.762504337,35.77083286900006],[139.765629342,35.77083286800007],[139.76562935700008,35.77291686700005],[139.76250435200006,35.77291686800004],[139.762504337,35.77083286900006]]]}},{"type":"Feature","id":26301,"properties":{"MESHCODE":"5339562213","揺全壊":18.5803},"geometry":{"type":"Polygon","coordinates":[[[139.77500434500007,35.768749865000075],[139.77812935000009,35.768749864000085],[139.77812936400005,35.77083286300007],[139.77500435800005,35.770832864000056],[139.77500434500007,35.768749865000075]]]}},{"type":"Feature","id":26302,"properties":{"MESHCODE":"5339562214","揺全壊":23.09951},"geometry":{"type":"Polygon","coordinates":[[[139.77812935000009,35.768749864000085],[139.7812543560001,35.76874986300004],[139.78125437000006,35.77083286100009],[139.77812936400005,35.77083286300007],[139.77812935000009,35.768749864000085]]]}},{"type":"Feature","id":26308,"properties":{"MESHCODE":"5339562232","揺全壊":16.65694},"geometry":{"type":"Polygon","coordinates":[[[139.77812936400005,35.77083286300007],[139.78125437000006,35.77083286100009],[139.78125438300003,35.77291685900008],[139.77812937800002,35.772916861000056],[139.77812936400005,35.77083286300007]]]}},{"type":"Feature","id":26311,"properties":{"MESHCODE":"5339562241","揺全壊":22.50082},"geometry":{"type":"Polygon","coordinates":[[[139.78125437000006,35.77083286100009],[139.78437937500007,35.77083286000004],[139.78437938900004,35.77291685900008],[139.78125438300003,35.77291685900008],[139.78125437000006,35.77083286100009]]]}},{"type":"Feature","id":26319,"properties":{"MESHCODE":"5339562321","揺全壊":23.69037},"geometry":{"type":"Polygon","coordinates":[[[139.79375436400005,35.766666857000075],[139.79687936900007,35.76666685500004],[139.79687938300003,35.76874985300009],[139.79375437800002,35.768749856000056],[139.79375436400005,35.766666857000075]]]}},{"type":"Feature","id":26321,"properties":{"MESHCODE":"5339562323","揺全壊":15.9636},"geometry":{"type":"Polygon","coordinates":[[[139.79375437800002,35.768749856000056],[139.79687938300003,35.76874985300009],[139.796879396,35.77083285200007],[139.793754391,35.77083285500004],[139.79375437800002,35.768749856000056]]]}},{"type":"Feature","id":26327,"properties":{"MESHCODE":"5339562341","揺全壊":23.39155},"geometry":{"type":"Polygon","coordinates":[[[139.793754391,35.77083285500004],[139.796879396,35.77083285200007],[139.7968794100001,35.77291685100005],[139.79375440500007,35.77291685300008],[139.793754391,35.77083285500004]]]}},{"type":"Feature","id":26334,"properties":{"MESHCODE":"5339562414","揺全壊":15.91332},"geometry":{"type":"Polygon","coordinates":[[[139.80312939500004,35.76874984900007],[139.80625440200004,35.76874984600005],[139.80625441400002,35.77083284400004],[139.80312940800002,35.770832847000065],[139.80312939500004,35.76874984900007]]]}},{"type":"Feature","id":26335,"properties":{"MESHCODE":"5339562421","揺全壊":17.41587},"geometry":{"type":"Polygon","coordinates":[[[139.80625438900006,35.76666684700007],[139.80937939600005,35.76666684400004],[139.80937940900003,35.76874984300008],[139.80625440200004,35.76874984600005],[139.80625438900006,35.76666684700007]]]}},{"type":"Feature","id":26338,"properties":{"MESHCODE":"5339562424","揺全壊":20.18256},"geometry":{"type":"Polygon","coordinates":[[[139.80937940900003,35.76874984300008],[139.81250441500003,35.768749840000055],[139.81250442700002,35.770832839000036],[139.80937942100002,35.77083284100007],[139.80937940900003,35.76874984300008]]]}},{"type":"Feature","id":26349,"properties":{"MESHCODE":"5339562513","揺全壊":16.32854},"geometry":{"type":"Polygon","coordinates":[[[139.81250441500003,35.768749840000055],[139.815629425,35.76874983600004],[139.815629436,35.77083283500008],[139.81250442700002,35.770832839000036],[139.81250441500003,35.768749840000055]]]}},{"type":"Feature","id":26355,"properties":{"MESHCODE":"5339562531","揺全壊":19.49647},"geometry":{"type":"Polygon","coordinates":[[[139.81250442700002,35.770832839000036],[139.815629436,35.77083283500008],[139.81562944900008,35.77291683300007],[139.81250444,35.77291683800007],[139.81250442700002,35.770832839000036]]]}},{"type":"Feature","id":26356,"properties":{"MESHCODE":"5339562532","揺全壊":20.56725},"geometry":{"type":"Polygon","coordinates":[[[139.815629436,35.77083283500008],[139.81875444600007,35.770832830000074],[139.81875445900005,35.77291683000004],[139.81562944900008,35.77291683300007],[139.815629436,35.77083283500008]]]}},{"type":"Feature","id":26357,"properties":{"MESHCODE":"5339562533","揺全壊":17.88545},"geometry":{"type":"Polygon","coordinates":[[[139.81250444,35.77291683800007],[139.81562944900008,35.77291683300007],[139.81562946200006,35.77499983200005],[139.8125044530001,35.77499983600006],[139.81250444,35.77291683800007]]]}},{"type":"Feature","id":26358,"properties":{"MESHCODE":"5339562534","揺全壊":22.69593},"geometry":{"type":"Polygon","coordinates":[[[139.81562944900008,35.77291683300007],[139.81875445900005,35.77291683000004],[139.81875447000004,35.774999828000034],[139.81562946200006,35.77499983200005],[139.81562944900008,35.77291683300007]]]}},{"type":"Feature","id":26363,"properties":{"MESHCODE":"5339562611","揺全壊":18.1171},"geometry":{"type":"Polygon","coordinates":[[[139.82500443900005,35.76666682500007],[139.82812944800003,35.76666682000007],[139.82812946,35.76874981900005],[139.82500445100004,35.768749823000064],[139.82500443900005,35.76666682500007]]]}},{"type":"Feature","id":26371,"properties":{"MESHCODE":"5339562631","揺全壊":16.89403},"geometry":{"type":"Polygon","coordinates":[[[139.82500446400002,35.770832822000045],[139.8281294730001,35.77083281700004],[139.82812948600008,35.77291681600008],[139.825004477,35.77291682100008],[139.82500446400002,35.770832822000045]]]}},{"type":"Feature","id":26380,"properties":{"MESHCODE":"5339562712","揺全壊":15.58711},"geometry":{"type":"Polygon","coordinates":[[[139.84062948400003,35.76666680100004],[139.843754493,35.766666797000084],[139.84375450700009,35.768749796000066],[139.840629497,35.76874980000008],[139.84062948400003,35.76666680100004]]]}},{"type":"Feature","id":26388,"properties":{"MESHCODE":"5339562732","揺全壊":15.62078},"geometry":{"type":"Polygon","coordinates":[[[139.8406295100001,35.77083279800007],[139.84375451900007,35.77083279400006],[139.84375453300004,35.772916792000046],[139.84062952400006,35.77291679700005],[139.8406295100001,35.77083279800007]]]}},{"type":"Feature","id":26389,"properties":{"MESHCODE":"5339562733","揺全壊":21.79878},"geometry":{"type":"Polygon","coordinates":[[[139.8375045150001,35.772916801000065],[139.84062952400006,35.77291679700005],[139.84062953600005,35.77499979500004],[139.83750452700008,35.774999800000046],[139.8375045150001,35.772916801000065]]]}},{"type":"Feature","id":26395,"properties":{"MESHCODE":"5339562811","揺全壊":15.42444},"geometry":{"type":"Polygon","coordinates":[[[139.85000451100007,35.766666789000055],[139.85312951900005,35.76666678400005],[139.85312953200003,35.76874978200004],[139.85000452400004,35.76874978700005],[139.85000451100007,35.766666789000055]]]}},{"type":"Feature","id":26404,"properties":{"MESHCODE":"5339562832","揺全壊":22.10914},"geometry":{"type":"Polygon","coordinates":[[[139.853129545,35.770832780000035],[139.8562545530001,35.77083277500009],[139.85625456600008,35.77291677300008],[139.85312955900008,35.77291677800008],[139.853129545,35.770832780000035]]]}},{"type":"Feature","id":26429,"properties":{"MESHCODE":"5339563013","揺全壊":15.43145},"geometry":{"type":"Polygon","coordinates":[[[139.75000436200003,35.777082868000036],[139.75312936700004,35.77708286700005],[139.753129381,35.77916686600008],[139.750004376,35.77916686700007],[139.75000436200003,35.777082868000036]]]}},{"type":"Feature","id":26431,"properties":{"MESHCODE":"5339563021","揺全壊":15.70527},"geometry":{"type":"Polygon","coordinates":[[[139.7562543570001,35.774999868000066],[139.75937936100001,35.774999867000076],[139.75937937700007,35.77708286600006],[139.75625437100007,35.77708286700005],[139.7562543570001,35.774999868000066]]]}},{"type":"Feature","id":26434,"properties":{"MESHCODE":"5339563024","揺全壊":17.23461},"geometry":{"type":"Polygon","coordinates":[[[139.75937937700007,35.77708286600006],[139.7625043810001,35.77708286500007],[139.76250439600005,35.77916686400005],[139.75937939100004,35.77916686400005],[139.75937937700007,35.77708286600006]]]}},{"type":"Feature","id":26435,"properties":{"MESHCODE":"5339563031","揺全壊":19.83036},"geometry":{"type":"Polygon","coordinates":[[[139.750004376,35.77916686700007],[139.753129381,35.77916686600008],[139.75312939600008,35.78124986500006],[139.75000439100006,35.78124986500006],[139.750004376,35.77916686700007]]]}},{"type":"Feature","id":26439,"properties":{"MESHCODE":"5339563041","揺全壊":18.33296},"geometry":{"type":"Polygon","coordinates":[[[139.75625438600002,35.779166865000036],[139.75937939100004,35.77916686400005],[139.759379405,35.781249863000085],[139.7562544010001,35.781249864000074],[139.75625438600002,35.779166865000036]]]}},{"type":"Feature","id":26441,"properties":{"MESHCODE":"5339563043","揺全壊":16.20923},"geometry":{"type":"Polygon","coordinates":[[[139.7562544010001,35.781249864000074],[139.759379405,35.781249863000085],[139.75937942000007,35.783332862000066],[139.75625441500006,35.783332863000055],[139.7562544010001,35.781249864000074]]]}},{"type":"Feature","id":26443,"properties":{"MESHCODE":"5339563111","揺全壊":19.28194},"geometry":{"type":"Polygon","coordinates":[[[139.76250436700002,35.774999867000076],[139.76562937100005,35.77499986500004],[139.765629386,35.77708286400008],[139.7625043810001,35.77708286500007],[139.76250436700002,35.774999867000076]]]}},{"type":"Feature","id":26461,"properties":{"MESHCODE":"5339563213","揺全壊":20.11451},"geometry":{"type":"Polygon","coordinates":[[[139.77500440100005,35.777082860000064],[139.77812940600006,35.777082858000085],[139.77812942000003,35.779166856000074],[139.775004415,35.77916685900004],[139.77500440100005,35.777082860000064]]]}},{"type":"Feature","id":26462,"properties":{"MESHCODE":"5339563214","揺全壊":21.26187},"geometry":{"type":"Polygon","coordinates":[[[139.77812940600006,35.777082858000085],[139.78125441100008,35.77708285600005],[139.78125442600003,35.779166855000085],[139.77812942000003,35.779166856000074],[139.77812940600006,35.777082858000085]]]}},{"type":"Feature","id":26466,"properties":{"MESHCODE":"5339563224","揺全壊":21.14847},"geometry":{"type":"Polygon","coordinates":[[[139.78437941700008,35.77708285500006],[139.7875044220001,35.77708285300008],[139.78750443600006,35.77916685100007],[139.78437943100005,35.77916685300005],[139.78437941700008,35.77708285500006]]]}},{"type":"Feature","id":26467,"properties":{"MESHCODE":"5339563231","揺全壊":19.10298},"geometry":{"type":"Polygon","coordinates":[[[139.775004415,35.77916685900004],[139.77812942000003,35.779166856000074],[139.7781294350001,35.781249855000056],[139.77500443000008,35.781249857000034],[139.775004415,35.77916685900004]]]}},{"type":"Feature","id":26469,"properties":{"MESHCODE":"5339563233","揺全壊":15.48585},"geometry":{"type":"Polygon","coordinates":[[[139.77500443000008,35.781249857000034],[139.7781294350001,35.781249855000056],[139.77812944900006,35.78333285400004],[139.77500444500004,35.78333285500008],[139.77500443000008,35.781249857000034]]]}},{"type":"Feature","id":26474,"properties":{"MESHCODE":"5339563244","揺全壊":22.07271},"geometry":{"type":"Polygon","coordinates":[[[139.784379445,35.78124985100004],[139.78750445000003,35.78124984900006],[139.787504464,35.783332847000054],[139.7843794590001,35.78333284900009],[139.784379445,35.78124985100004]]]}},{"type":"Feature","id":26476,"properties":{"MESHCODE":"5339563312","揺全壊":21.9268},"geometry":{"type":"Polygon","coordinates":[[[139.79062941300003,35.774999853000054],[139.79375441800005,35.774999851000075],[139.79375443200001,35.777082850000056],[139.790629427,35.777082851000046],[139.79062941300003,35.774999853000054]]]}},{"type":"Feature","id":26478,"properties":{"MESHCODE":"5339563314","揺全壊":19.94663},"geometry":{"type":"Polygon","coordinates":[[[139.790629427,35.777082851000046],[139.79375443200001,35.777082850000056],[139.7937544460001,35.779166848000045],[139.79062944100008,35.77916685000008],[139.790629427,35.777082851000046]]]}},{"type":"Feature","id":26482,"properties":{"MESHCODE":"5339563324","揺全壊":16.86374},"geometry":{"type":"Polygon","coordinates":[[[139.79687943700003,35.77708284800008],[139.80000444100006,35.77708284600004],[139.800004456,35.77916684500008],[139.79687945,35.77916684600007],[139.79687943700003,35.77708284800008]]]}},{"type":"Feature","id":26486,"properties":{"MESHCODE":"5339563334","揺全壊":21.30064},"geometry":{"type":"Polygon","coordinates":[[[139.79062945500004,35.78124984800007],[139.79375445900007,35.78124984600004],[139.79375447400002,35.783332844000086],[139.79062946800002,35.783332846000064],[139.79062945500004,35.78124984800007]]]}},{"type":"Feature","id":26487,"properties":{"MESHCODE":"5339563341","揺全壊":15.10126},"geometry":{"type":"Polygon","coordinates":[[[139.7937544460001,35.779166848000045],[139.79687945,35.77916684600007],[139.79687946500007,35.78124984500005],[139.79375445900007,35.78124984600004],[139.7937544460001,35.779166848000045]]]}},{"type":"Feature","id":26490,"properties":{"MESHCODE":"5339563344","揺全壊":22.80482},"geometry":{"type":"Polygon","coordinates":[[[139.79687946500007,35.78124984500005],[139.8000044690001,35.78124984300007],[139.80000448300007,35.78333284100006],[139.79687947800005,35.78333284300004],[139.79687946500007,35.78124984500005]]]}},{"type":"Feature","id":26493,"properties":{"MESHCODE":"5339563413","揺全壊":15.82159},"geometry":{"type":"Polygon","coordinates":[[[139.80000444100006,35.77708284600004],[139.80312944700006,35.77708284300007],[139.80312946100003,35.77916684200005],[139.800004456,35.77916684500008],[139.80000444100006,35.77708284600004]]]}},{"type":"Feature","id":26499,"properties":{"MESHCODE":"5339563431","揺全壊":22.24028},"geometry":{"type":"Polygon","coordinates":[[[139.800004456,35.77916684500008],[139.80312946100003,35.77916684200005],[139.803129474,35.781249840000044],[139.8000044690001,35.78124984300007],[139.800004456,35.77916684500008]]]}},{"type":"Feature","id":26500,"properties":{"MESHCODE":"5339563432","揺全壊":17.13781},"geometry":{"type":"Polygon","coordinates":[[[139.80312946100003,35.77916684200005],[139.80625446600004,35.77916684000007],[139.80625447900002,35.781249838000065],[139.803129474,35.781249840000044],[139.80312946100003,35.77916684200005]]]}},{"type":"Feature","id":26502,"properties":{"MESHCODE":"5339563434","揺全壊":19.52602},"geometry":{"type":"Polygon","coordinates":[[[139.803129474,35.781249840000044],[139.80625447900002,35.781249838000065],[139.806254491,35.783332838000035],[139.80312948800008,35.78333283900008],[139.803129474,35.781249840000044]]]}},{"type":"Feature","id":26503,"properties":{"MESHCODE":"5339563441","揺全壊":24.48486},"geometry":{"type":"Polygon","coordinates":[[[139.80625446600004,35.77916684000007],[139.80937947200005,35.77916683700005],[139.80937948300004,35.781249836000086],[139.80625447900002,35.781249838000065],[139.80625446600004,35.77916684000007]]]}},{"type":"Feature","id":26505,"properties":{"MESHCODE":"5339563443","揺全壊":23.29839},"geometry":{"type":"Polygon","coordinates":[[[139.80625447900002,35.781249838000065],[139.80937948300004,35.781249836000086],[139.80937949600002,35.783332836000056],[139.806254491,35.783332838000035],[139.80625447900002,35.781249838000065]]]}},{"type":"Feature","id":26507,"properties":{"MESHCODE":"5339563511","揺全壊":24.72924},"geometry":{"type":"Polygon","coordinates":[[[139.8125044530001,35.77499983600006],[139.81562946200006,35.77499983200005],[139.81562947400005,35.77708283100009],[139.81250446400009,35.777082835000044],[139.8125044530001,35.77499983600006]]]}},{"type":"Feature","id":26511,"properties":{"MESHCODE":"5339563521","揺全壊":17.03655},"geometry":{"type":"Polygon","coordinates":[[[139.81875447000004,35.774999828000034],[139.82187948,35.774999824000076],[139.8218794930001,35.77708282200007],[139.81875448300002,35.77708282700007],[139.81875447000004,35.774999828000034]]]}},{"type":"Feature","id":26542,"properties":{"MESHCODE":"5339563714","揺全壊":21.28707},"geometry":{"type":"Polygon","coordinates":[[[139.84062955000002,35.777082793000034],[139.8437545600001,35.77708278800009],[139.84375457300007,35.779166786000076],[139.840629563,35.77916679100008],[139.84062955000002,35.777082793000034]]]}},{"type":"Feature","id":26545,"properties":{"MESHCODE":"5339563723","揺全壊":20.46204},"geometry":{"type":"Polygon","coordinates":[[[139.8437545600001,35.77708278800009],[139.84687956900007,35.77708278400007],[139.84687958200004,35.77916678100007],[139.84375457300007,35.779166786000076],[139.8437545600001,35.77708278800009]]]}},{"type":"Feature","id":26547,"properties":{"MESHCODE":"5339563731","揺全壊":17.49057},"geometry":{"type":"Polygon","coordinates":[[[139.83750455400002,35.779166796000084],[139.840629563,35.77916679100008],[139.84062957700007,35.78124978900007],[139.837504567,35.781249794000075],[139.83750455400002,35.779166796000084]]]}},{"type":"Feature","id":26549,"properties":{"MESHCODE":"5339563733","揺全壊":18.92113},"geometry":{"type":"Polygon","coordinates":[[[139.837504567,35.781249794000075],[139.84062957700007,35.78124978900007],[139.84062959000005,35.78333278700006],[139.8375045800001,35.78333279200007],[139.837504567,35.781249794000075]]]}},{"type":"Feature","id":26594,"properties":{"MESHCODE":"5339564024","揺全壊":22.67412},"geometry":{"type":"Polygon","coordinates":[[[139.75937943400004,35.785416860000055],[139.76250443900005,35.785416860000055],[139.76250445300002,35.787499859000036],[139.759379448,35.787499859000036],[139.75937943400004,35.785416860000055]]]}},{"type":"Feature","id":26604,"properties":{"MESHCODE":"5339564114","揺全壊":17.20881},"geometry":{"type":"Polygon","coordinates":[[[139.76562944400007,35.785416858000076],[139.7687544480001,35.78541685700009],[139.76875446300005,35.78749985600007],[139.76562945700005,35.78749985700006],[139.76562944400007,35.785416858000076]]]}},{"type":"Feature","id":26606,"properties":{"MESHCODE":"5339564122","揺全壊":19.34921},"geometry":{"type":"Polygon","coordinates":[[[139.77187943900003,35.78333285700006],[139.77500444500004,35.78333285500008],[139.775004458,35.78541685400006],[139.7718794540001,35.78541685500005],[139.77187943900003,35.78333285700006]]]}},{"type":"Feature","id":26607,"properties":{"MESHCODE":"5339564123","揺全壊":16.41409},"geometry":{"type":"Polygon","coordinates":[[[139.7687544480001,35.78541685700009],[139.7718794540001,35.78541685500005],[139.77187946700008,35.78749985400009],[139.76875446300005,35.78749985600007],[139.7687544480001,35.78541685700009]]]}},{"type":"Feature","id":26608,"properties":{"MESHCODE":"5339564124","揺全壊":19.3472},"geometry":{"type":"Polygon","coordinates":[[[139.7718794540001,35.78541685500005],[139.775004458,35.78541685400006],[139.7750044720001,35.78749985300004],[139.77187946700008,35.78749985400009],[139.7718794540001,35.78541685500005]]]}},{"type":"Feature","id":26612,"properties":{"MESHCODE":"5339564134","揺全壊":17.66992},"geometry":{"type":"Polygon","coordinates":[[[139.765629472,35.78958285500005],[139.76875447600003,35.78958285400006],[139.7687544910001,35.79166685300004],[139.7656294850001,35.791666854000084],[139.765629472,35.78958285500005]]]}},{"type":"Feature","id":26613,"properties":{"MESHCODE":"5339564141","揺全壊":22.35367},"geometry":{"type":"Polygon","coordinates":[[[139.76875446300005,35.78749985600007],[139.77187946700008,35.78749985400009],[139.77187948200003,35.78958285200008],[139.76875447600003,35.78958285400006],[139.76875446300005,35.78749985600007]]]}},{"type":"Feature","id":26617,"properties":{"MESHCODE":"5339564211","揺全壊":23.52637},"geometry":{"type":"Polygon","coordinates":[[[139.77500444500004,35.78333285500008],[139.77812944900006,35.78333285400004],[139.77812946300003,35.78541685200008],[139.775004458,35.78541685400006],[139.77500444500004,35.78333285500008]]]}},{"type":"Feature","id":26619,"properties":{"MESHCODE":"5339564213","揺全壊":19.94575},"geometry":{"type":"Polygon","coordinates":[[[139.775004458,35.78541685400006],[139.77812946300003,35.78541685200008],[139.7781294780001,35.787499851000064],[139.7750044720001,35.78749985300004],[139.775004458,35.78541685400006]]]}},{"type":"Feature","id":26623,"properties":{"MESHCODE":"5339564223","揺全壊":21.32281},"geometry":{"type":"Polygon","coordinates":[[[139.78125446900003,35.78541685000005],[139.78437947300006,35.78541684800007],[139.78437948700002,35.78749984600006],[139.781254483,35.78749984800004],[139.78125446900003,35.78541685000005]]]}},{"type":"Feature","id":26625,"properties":{"MESHCODE":"5339564231","揺全壊":16.15762},"geometry":{"type":"Polygon","coordinates":[[[139.7750044720001,35.78749985300004],[139.7781294780001,35.787499851000064],[139.77812949100007,35.789582850000045],[139.77500448600006,35.78958285200008],[139.7750044720001,35.78749985300004]]]}},{"type":"Feature","id":26628,"properties":{"MESHCODE":"5339564234","揺全壊":15.54463},"geometry":{"type":"Polygon","coordinates":[[[139.77812949100007,35.789582850000045],[139.78125449700008,35.78958284700008],[139.78125451100004,35.791666846000055],[139.77812950600003,35.791666848000034],[139.77812949100007,35.789582850000045]]]}},{"type":"Feature","id":26629,"properties":{"MESHCODE":"5339564241","揺全壊":15.72668},"geometry":{"type":"Polygon","coordinates":[[[139.781254483,35.78749984800004],[139.78437948700002,35.78749984600006],[139.7843795020001,35.78958284500004],[139.78125449700008,35.78958284700008],[139.781254483,35.78749984800004]]]}},{"type":"Feature","id":26632,"properties":{"MESHCODE":"5339564244","揺全壊":21.57652},"geometry":{"type":"Polygon","coordinates":[[[139.7843795020001,35.78958284500004],[139.7875045080001,35.78958284300006],[139.78750452200006,35.79166684200004],[139.78437951600006,35.791666844000076],[139.7843795020001,35.78958284500004]]]}},{"type":"Feature","id":26634,"properties":{"MESHCODE":"5339564312","揺全壊":22.79588},"geometry":{"type":"Polygon","coordinates":[[[139.79062946800002,35.783332846000064],[139.79375447400002,35.783332844000086],[139.7937544880001,35.785416842000075],[139.79062948400008,35.78541684400005],[139.79062946800002,35.783332846000064]]]}},{"type":"Feature","id":26635,"properties":{"MESHCODE":"5339564313","揺全壊":18.45567},"geometry":{"type":"Polygon","coordinates":[[[139.78750447800007,35.78541684600009],[139.79062948400008,35.78541684400005],[139.79062949800004,35.787499843000035],[139.78750449300003,35.78749984500007],[139.78750447800007,35.78541684600009]]]}},{"type":"Feature","id":26636,"properties":{"MESHCODE":"5339564314","揺全壊":24.62507},"geometry":{"type":"Polygon","coordinates":[[[139.79062948400008,35.78541684400005],[139.7937544880001,35.785416842000075],[139.79375450300006,35.787499840000066],[139.79062949800004,35.787499843000035],[139.79062948400008,35.78541684400005]]]}},{"type":"Feature","id":26637,"properties":{"MESHCODE":"5339564321","揺全壊":20.27979},"geometry":{"type":"Polygon","coordinates":[[[139.79375447400002,35.783332844000086],[139.79687947800005,35.78333284300004],[139.796879493,35.785416841000085],[139.7937544880001,35.785416842000075],[139.79375447400002,35.783332844000086]]]}},{"type":"Feature","id":26639,"properties":{"MESHCODE":"5339564323","揺全壊":18.68077},"geometry":{"type":"Polygon","coordinates":[[[139.7937544880001,35.785416842000075],[139.796879493,35.785416841000085],[139.79687950800007,35.78749983800009],[139.79375450300006,35.787499840000066],[139.7937544880001,35.785416842000075]]]}},{"type":"Feature","id":26644,"properties":{"MESHCODE":"5339564334","揺全壊":20.81805},"geometry":{"type":"Polygon","coordinates":[[[139.790629512,35.78958284100008],[139.79375451800001,35.78958283800006],[139.7937545320001,35.79166683600005],[139.79062952700008,35.79166683900007],[139.790629512,35.78958284100008]]]}},{"type":"Feature","id":26648,"properties":{"MESHCODE":"5339564344","揺全壊":16.73701},"geometry":{"type":"Polygon","coordinates":[[[139.79687952200004,35.78958283600008],[139.80000452800004,35.789582833000054],[139.800004542,35.79166683100004],[139.796879537,35.79166683400007],[139.79687952200004,35.78958283600008]]]}},{"type":"Feature","id":26652,"properties":{"MESHCODE":"5339564414","揺全壊":20.21438},"geometry":{"type":"Polygon","coordinates":[[[139.80312950200005,35.78541683600008],[139.80625450700006,35.785416834000046],[139.80625452200002,35.78749983100005],[139.8031295180001,35.78749983400007],[139.80312950200005,35.78541683600008]]]}},{"type":"Feature","id":26654,"properties":{"MESHCODE":"5339564422","揺全壊":17.84085},"geometry":{"type":"Polygon","coordinates":[[[139.80937949600002,35.783332836000056],[139.81250450000005,35.78333283300009],[139.8125045160001,35.78541683000009],[139.8093795110001,35.78541683200007],[139.80937949600002,35.783332836000056]]]}},{"type":"Feature","id":26661,"properties":{"MESHCODE":"5339564441","揺全壊":15.09152},"geometry":{"type":"Polygon","coordinates":[[[139.80625452200002,35.78749983100005],[139.80937952700003,35.78749982900007],[139.8093795430001,35.78958282500008],[139.8062545370001,35.78958282800005],[139.80625452200002,35.78749983100005]]]}},{"type":"Feature","id":26665,"properties":{"MESHCODE":"5339564511","揺全壊":18.14678},"geometry":{"type":"Polygon","coordinates":[[[139.81250450000005,35.78333283300009],[139.81562951,35.783332828000084],[139.81562952600007,35.785416825000084],[139.8125045160001,35.78541683000009],[139.81250450000005,35.78333283300009]]]}},{"type":"Feature","id":26679,"properties":{"MESHCODE":"5339564543","揺全壊":22.49762},"geometry":{"type":"Polygon","coordinates":[[[139.81875456700004,35.78958281300004],[139.82187957600001,35.789582808000034],[139.82187959100008,35.791666805000034],[139.818754582,35.79166681000004],[139.81875456700004,35.78958281300004]]]}},{"type":"Feature","id":26680,"properties":{"MESHCODE":"5339564544","揺全壊":21.63336},"geometry":{"type":"Polygon","coordinates":[[[139.82187957600001,35.789582808000034],[139.8250045850001,35.78958280300009],[139.82500460000006,35.79166680000009],[139.82187959100008,35.791666805000034],[139.82187957600001,35.789582808000034]]]}},{"type":"Feature","id":26691,"properties":{"MESHCODE":"5339564633","揺全壊":20.31058},"geometry":{"type":"Polygon","coordinates":[[[139.8250045850001,35.78958280300009],[139.82812959500006,35.78958279800008],[139.82812960900003,35.79166679500008],[139.82500460000006,35.79166680000009],[139.8250045850001,35.78958280300009]]]}},{"type":"Feature","id":26697,"properties":{"MESHCODE":"5339564711","揺全壊":17.16048},"geometry":{"type":"Polygon","coordinates":[[[139.8375045800001,35.78333279200007],[139.84062959000005,35.78333278700006],[139.840629605,35.78541678400006],[139.83750459500004,35.78541678900007],[139.8375045800001,35.78333279200007]]]}},{"type":"Feature","id":26750,"properties":{"MESHCODE":"5339565111","揺全壊":18.04904},"geometry":{"type":"Polygon","coordinates":[[[139.76250448100006,35.79166685600006],[139.7656294850001,35.791666854000084],[139.76562950000005,35.793749852000076],[139.76250449500003,35.793749854000055],[139.76250448100006,35.79166685600006]]]}},{"type":"Feature","id":26766,"properties":{"MESHCODE":"5339565211","揺全壊":23.56341},"geometry":{"type":"Polygon","coordinates":[[[139.77500450000002,35.79166685000007],[139.77812950600003,35.791666848000034],[139.77812952,35.79374984600008],[139.7750045150001,35.79374984800006],[139.77500450000002,35.79166685000007]]]}},{"type":"Feature","id":26768,"properties":{"MESHCODE":"5339565213","揺全壊":15.79551},"geometry":{"type":"Polygon","coordinates":[[[139.7750045150001,35.79374984800006],[139.77812952,35.79374984600008],[139.77812953400007,35.795832843000085],[139.77500452900006,35.79583284600005],[139.7750045150001,35.79374984800006]]]}},{"type":"Feature","id":26779,"properties":{"MESHCODE":"5339565242","揺全壊":16.7842},"geometry":{"type":"Polygon","coordinates":[[[139.78437954600008,35.79583283800008],[139.7875045510001,35.795832836000045],[139.78750456600005,35.797916833000045],[139.78437956000005,35.79791683600007],[139.78437954600008,35.79583283800008]]]}},{"type":"Feature","id":26781,"properties":{"MESHCODE":"5339565244","揺全壊":15.15346},"geometry":{"type":"Polygon","coordinates":[[[139.78437956000005,35.79791683600007],[139.78750456600005,35.797916833000045],[139.787504581,35.79999983000005],[139.784379575,35.79999983300007],[139.78437956000005,35.79791683600007]]]}},{"type":"Feature","id":26784,"properties":{"MESHCODE":"5339565313","揺全壊":23.23151},"geometry":{"type":"Polygon","coordinates":[[[139.78750453700002,35.79374983900004],[139.79062954200003,35.793749836000075],[139.790629556,35.79583283300008],[139.7875045510001,35.795832836000045],[139.78750453700002,35.79374983900004]]]}},{"type":"Feature","id":26793,"properties":{"MESHCODE":"5339565334","揺全壊":21.06483},"geometry":{"type":"Polygon","coordinates":[[[139.79062957200006,35.797916831000066],[139.79375457700007,35.79791682800004],[139.79375459100004,35.79999982500004],[139.79062958600002,35.79999982700008],[139.79062957200006,35.797916831000066]]]}},{"type":"Feature","id":26802,"properties":{"MESHCODE":"5339565421","揺全壊":19.48917},"geometry":{"type":"Polygon","coordinates":[[[139.80625455300003,35.79166682500005],[139.80937955900004,35.79166682200008],[139.8093795750001,35.793749819000084],[139.8062545690001,35.79374982200005],[139.80625455300003,35.79166682500005]]]}},{"type":"Feature","id":26804,"properties":{"MESHCODE":"5339565423","揺全壊":24.75997},"geometry":{"type":"Polygon","coordinates":[[[139.8062545690001,35.79374982200005],[139.8093795750001,35.793749819000084],[139.80937959100004,35.795832816000086],[139.80625458500003,35.795832819000054],[139.8062545690001,35.79374982200005]]]}},{"type":"Feature","id":26805,"properties":{"MESHCODE":"5339565424","揺全壊":16.93723},"geometry":{"type":"Polygon","coordinates":[[[139.8093795750001,35.793749819000084],[139.81250458,35.79374981600006],[139.81250459700004,35.79583281300006],[139.80937959100004,35.795832816000086],[139.8093795750001,35.793749819000084]]]}},{"type":"Feature","id":26806,"properties":{"MESHCODE":"5339565431","揺全壊":17.95412},"geometry":{"type":"Polygon","coordinates":[[[139.80000457200003,35.79583282500005],[139.80312957900003,35.79583282200008],[139.8031295940001,35.79791681900008],[139.8000045880001,35.79791682200005],[139.80000457200003,35.79583282500005]]]}},{"type":"Feature","id":26915,"properties":{"MESHCODE":"5339566241","揺全壊":21.97828},"geometry":{"type":"Polygon","coordinates":[[[139.78125459900002,35.80416683100009],[139.78437960400004,35.804166828000064],[139.7843796190001,35.806249825000066],[139.7812546130001,35.80624982900008],[139.78125459900002,35.80416683100009]]]}},{"type":"Feature","id":26916,"properties":{"MESHCODE":"5339566242","揺全壊":21.24802},"geometry":{"type":"Polygon","coordinates":[[[139.78437960400004,35.804166828000064],[139.78750461000004,35.80416682500004],[139.787504624,35.80624982200004],[139.7843796190001,35.806249825000066],[139.78437960400004,35.804166828000064]]]}},{"type":"Feature","id":26919,"properties":{"MESHCODE":"5339566311","揺全壊":16.926},"geometry":{"type":"Polygon","coordinates":[[[139.787504581,35.79999983000005],[139.79062958600002,35.79999982700008],[139.7906296010001,35.80208282500007],[139.7875045950001,35.80208282800004],[139.787504581,35.79999983000005]]]}},{"type":"Feature","id":26921,"properties":{"MESHCODE":"5339566313","揺全壊":18.67294},"geometry":{"type":"Polygon","coordinates":[[[139.7875045950001,35.80208282800004],[139.7906296010001,35.80208282500007],[139.79062961600005,35.80416682200007],[139.78750461000004,35.80416682500004],[139.7875045950001,35.80208282800004]]]}},{"type":"Feature","id":26922,"properties":{"MESHCODE":"5339566314","揺全壊":17.7023},"geometry":{"type":"Polygon","coordinates":[[[139.7906296010001,35.80208282500007],[139.7937546070001,35.802082822000045],[139.79375462100006,35.804166819000045],[139.79062961600005,35.80416682200007],[139.7906296010001,35.80208282500007]]]}},{"type":"Feature","id":26927,"properties":{"MESHCODE":"5339566331","揺全壊":16.10686},"geometry":{"type":"Polygon","coordinates":[[[139.78750461000004,35.80416682500004],[139.79062961600005,35.80416682200007],[139.79062963,35.80624981900007],[139.787504624,35.80624982200004],[139.78750461000004,35.80416682500004]]]}},{"type":"Feature","id":26934,"properties":{"MESHCODE":"5339566412","揺全壊":18.70105},"geometry":{"type":"Polygon","coordinates":[[[139.80312961000004,35.79999981600008],[139.80625461600005,35.799999813000056],[139.8062546320001,35.80208280900007],[139.803129625,35.802082813000084],[139.80312961000004,35.79999981600008]]]}},{"type":"Feature","id":26936,"properties":{"MESHCODE":"5339566414","揺全壊":19.10429},"geometry":{"type":"Polygon","coordinates":[[[139.803129625,35.802082813000084],[139.8062546320001,35.80208280900007],[139.80625464800005,35.80416680600007],[139.80312964100006,35.80416680900004],[139.803129625,35.802082813000084]]]}},{"type":"Feature","id":26978,"properties":{"MESHCODE":"5339567114","揺全壊":15.43134},"geometry":{"type":"Polygon","coordinates":[[[139.7656296140001,35.81041684000007],[139.7687546190001,35.81041683700005],[139.76875463300007,35.81249983500004],[139.76562962600008,35.812499839000054],[139.7656296140001,35.81041684000007]]]}},{"type":"Feature","id":26982,"properties":{"MESHCODE":"5339567124","揺全壊":15.36388},"geometry":{"type":"Polygon","coordinates":[[[139.771879625,35.81041683400008],[139.775004631,35.810416831000055],[139.7750046440001,35.812499829000046],[139.77187963900008,35.81249983200007],[139.771879625,35.81041683400008]]]}},{"type":"Feature","id":26984,"properties":{"MESHCODE":"5339567132","揺全壊":15.07198},"geometry":{"type":"Polygon","coordinates":[[[139.76562962600008,35.812499839000054],[139.76875463300007,35.81249983500004],[139.76875464600005,35.81458283400008],[139.76562964000004,35.814582837000046],[139.76562962600008,35.812499839000054]]]}}]}
\ No newline at end of file
diff --git a/app/src/layers/data/particles/toshin-destroyed_particles_3.json b/app/src/layers/data/particles/toshin-destroyed_particles_3.json
new file mode 100644
index 0000000..73bd68b
--- /dev/null
+++ b/app/src/layers/data/particles/toshin-destroyed_particles_3.json
@@ -0,0 +1 @@
+{"type":"FeatureCollection","name":"建物被害分布_都心南部","features":[{"type":"Feature","id":765,"properties":{"MESHCODE":"5339232723","揺全壊":13.05635},"geometry":{"type":"Polygon","coordinates":[[[139.468752096,35.51875022200005],[139.47187709700006,35.518750229000034],[139.47187711100003,35.52083322400006],[139.46875211000008,35.520833218000064],[139.468752096,35.51875022200005]]]}},{"type":"Feature","id":771,"properties":{"MESHCODE":"5339232741","揺全壊":12.10575},"geometry":{"type":"Polygon","coordinates":[[[139.46875211000008,35.520833218000064],[139.47187711100003,35.52083322400006],[139.4718771250001,35.52291722000007],[139.46875212500004,35.522917213000085],[139.46875211000008,35.520833218000064]]]}},{"type":"Feature","id":808,"properties":{"MESHCODE":"5339233722","揺全壊":11.03933},"geometry":{"type":"Polygon","coordinates":[[[139.47187713900007,35.525000215000034],[139.47500213900003,35.525000222000074],[139.475002151,35.527083220000065],[139.47187715100006,35.52708321300008],[139.47187713900007,35.525000215000034]]]}},{"type":"Feature","id":1390,"properties":{"MESHCODE":"5339255624","揺全壊":11.79174},"geometry":{"type":"Polygon","coordinates":[[[139.70937769500006,35.54375018600007],[139.71250269900008,35.543750179000085],[139.71250271400004,35.545833178000066],[139.70937771,35.54583318500005],[139.70937769500006,35.54375018600007]]]}},{"type":"Feature","id":1480,"properties":{"MESHCODE":"5339256812","揺全壊":11.34388},"geometry":{"type":"Polygon","coordinates":[[[139.72812776700005,35.55000013700004],[139.73125277200006,35.55000012900007],[139.73125278700002,35.55208312800005],[139.72812778000002,35.55208313600008],[139.72812776700005,35.55000013700004]]]}},{"type":"Feature","id":1483,"properties":{"MESHCODE":"5339256821","揺全壊":10.36671},"geometry":{"type":"Polygon","coordinates":[[[139.73125277200006,35.55000012900007],[139.73437777700008,35.55000012100004],[139.73437779200003,35.55208312000008],[139.73125278700002,35.55208312800005],[139.73125277200006,35.55000012900007]]]}},{"type":"Feature","id":1485,"properties":{"MESHCODE":"5339256823","揺全壊":10.52415},"geometry":{"type":"Polygon","coordinates":[[[139.73125278700002,35.55208312800005],[139.73437779200003,35.55208312000008],[139.734377805,35.554167119000056],[139.7312528,35.554167127000085],[139.73125278700002,35.55208312800005]]]}},{"type":"Feature","id":1489,"properties":{"MESHCODE":"5339256833","揺全壊":14.52282},"geometry":{"type":"Polygon","coordinates":[[[139.72500280300005,35.55625014000009],[139.72812780800007,35.55625013300005],[139.72812782300002,35.55833313100004],[139.72500281600003,35.55833313900007],[139.72500280300005,35.55625014000009]]]}},{"type":"Feature","id":1494,"properties":{"MESHCODE":"5339256844","揺全壊":10.43916},"geometry":{"type":"Polygon","coordinates":[[[139.73437782000008,35.55625011800004],[139.7375028250001,35.556250110000065],[139.73750283800007,35.558333109000046],[139.73437783300005,35.558333116000085],[139.73437782000008,35.55625011800004]]]}},{"type":"Feature","id":1537,"properties":{"MESHCODE":"5339257542","揺全壊":10.86151},"geometry":{"type":"Polygon","coordinates":[[[139.69687780200002,35.56250020400006],[139.70000280500005,35.56250019700008],[139.70000281800003,35.56458319600006],[139.696877814,35.56458320300004],[139.69687780200002,35.56250020400006]]]}},{"type":"Feature","id":1553,"properties":{"MESHCODE":"5339257642","揺全壊":11.30631},"geometry":{"type":"Polygon","coordinates":[[[139.709377819,35.562500174000036],[139.712502824,35.56250016700005],[139.712502836,35.564583166000034],[139.7093778320001,35.564583173000074],[139.709377819,35.562500174000036]]]}},{"type":"Feature","id":1577,"properties":{"MESHCODE":"5339257822","揺全壊":10.14442},"geometry":{"type":"Polygon","coordinates":[[[139.73437783300005,35.558333116000085],[139.73750283800007,35.558333109000046],[139.73750285200003,35.560417107000035],[139.73437784700002,35.560417115000064],[139.73437783300005,35.558333116000085]]]}},{"type":"Feature","id":1600,"properties":{"MESHCODE":"5339257941","揺全壊":11.66018},"geometry":{"type":"Polygon","coordinates":[[[139.74375287500004,35.56250009000007],[139.74687788000006,35.56250008300009],[139.74687789300003,35.56458308200007],[139.743752889,35.56458308900005],[139.74375287500004,35.56250009000007]]]}},{"type":"Feature","id":1624,"properties":{"MESHCODE":"5339258512","揺全壊":13.03709},"geometry":{"type":"Polygon","coordinates":[[[139.69062782000003,35.56666721500005],[139.69375282300007,35.56666720900006],[139.69375283400007,35.56875020600006],[139.69062783100003,35.56875021400009],[139.69062782000003,35.56666721500005]]]}},{"type":"Feature","id":1661,"properties":{"MESHCODE":"5339258723","揺全壊":13.30684},"geometry":{"type":"Polygon","coordinates":[[[139.7187528710001,35.56875014700006],[139.721877877,35.56875013900009],[139.721877888,35.57083313700008],[139.7187528830001,35.57083314400006],[139.7187528710001,35.56875014700006]]]}},{"type":"Feature","id":1678,"properties":{"MESHCODE":"5339258824","揺全壊":13.98098},"geometry":{"type":"Polygon","coordinates":[[[139.73437789800005,35.568750109000064],[139.73750290300006,35.568750100000045],[139.73750291600004,35.57083309800004],[139.73437790900005,35.570833106000066],[139.73437789800005,35.568750109000064]]]}},{"type":"Feature","id":1732,"properties":{"MESHCODE":"5339259522","揺全壊":11.59986},"geometry":{"type":"Polygon","coordinates":[[[139.69687787100008,35.57500019400004],[139.700002875,35.57500018600007],[139.700002884,35.57708318400006],[139.6968778800001,35.57708319200009],[139.69687787100008,35.57500019400004]]]}},{"type":"Feature","id":1746,"properties":{"MESHCODE":"5339259614","揺全壊":11.98612},"geometry":{"type":"Polygon","coordinates":[[[139.70312789000002,35.57708317600009],[139.70625289500003,35.57708316900005],[139.70625290600003,35.57916716700004],[139.70312790000003,35.579167175000066],[139.70312789000002,35.57708317600009]]]}},{"type":"Feature","id":1785,"properties":{"MESHCODE":"5339259833","揺全壊":10.80963},"geometry":{"type":"Polygon","coordinates":[[[139.72500295200007,35.58125012100004],[139.72812795800007,35.58125011300007],[139.72812797000006,35.58333311200005],[139.72500296400005,35.58333311900009],[139.72500295200007,35.58125012100004]]]}},{"type":"Feature","id":5510,"properties":{"MESHCODE":"5339345921","揺全壊":10.72486},"geometry":{"type":"Polygon","coordinates":[[[139.618752825,35.62500023900009],[139.62187782900003,35.62500024000008],[139.62187783500008,35.62708324000005],[139.61875283100005,35.62708323800007],[139.618752825,35.62500023900009]]]}},{"type":"Feature","id":5623,"properties":{"MESHCODE":"5339346724","揺全壊":13.05852},"geometry":{"type":"Polygon","coordinates":[[[139.59687785200003,35.63541720900008],[139.60000284900002,35.635417215000075],[139.60000285700005,35.63750021300007],[139.59687786000006,35.63750020700007],[139.59687785200003,35.63541720900008]]]}},{"type":"Feature","id":5629,"properties":{"MESHCODE":"5339346742","揺全壊":11.20697},"geometry":{"type":"Polygon","coordinates":[[[139.59687786000006,35.63750020700007],[139.60000285700005,35.63750021300007],[139.6000028640001,35.63958321000007],[139.5968778680001,35.639583204000076],[139.59687786000006,35.63750020700007]]]}},{"type":"Feature","id":5638,"properties":{"MESHCODE":"5339346823","揺全壊":10.12732},"geometry":{"type":"Polygon","coordinates":[[[139.60625284800005,35.63541722300005],[139.609377848,35.63541722800005],[139.60937785400006,35.63750022700009],[139.6062528550001,35.637500222000085],[139.60625284800005,35.63541722300005]]]}},{"type":"Feature","id":5646,"properties":{"MESHCODE":"5339346843","揺全壊":14.2774},"geometry":{"type":"Polygon","coordinates":[[[139.60625286200002,35.639583221000066],[139.60937786,35.63958322600007],[139.60937786600005,35.64166722500005],[139.60625286800007,35.641667219000055],[139.60625286200002,35.639583221000066]]]}},{"type":"Feature","id":5658,"properties":{"MESHCODE":"5339346933","揺全壊":12.98},"geometry":{"type":"Polygon","coordinates":[[[139.61250285900007,35.639583231000074],[139.615627861,35.63958323400004],[139.61562786700006,35.64166723200009],[139.61250286400002,35.64166723000005],[139.61250285900007,35.639583231000074]]]}},{"type":"Feature","id":5661,"properties":{"MESHCODE":"5339346942","揺全壊":12.95508},"geometry":{"type":"Polygon","coordinates":[[[139.62187786200002,35.63750023700004],[139.62500286600005,35.637500239000076],[139.62500287,35.639583239000046],[139.62187786700008,35.63958323700007],[139.62187786200002,35.63750023700004]]]}},{"type":"Feature","id":5780,"properties":{"MESHCODE":"5339347721","揺全壊":12.99278},"geometry":{"type":"Polygon","coordinates":[[[139.593752881,35.64166719600007],[139.596877876,35.641667202000065],[139.59687788500003,35.64375019900007],[139.59375289000002,35.64375019300007],[139.593752881,35.64166719600007]]]}},{"type":"Feature","id":5784,"properties":{"MESHCODE":"5339347731","揺全壊":10.61008},"geometry":{"type":"Polygon","coordinates":[[[139.58750290900002,35.64583317700004],[139.59062790300004,35.645833183000036],[139.59062791300005,35.647917180000036],[139.58750291800004,35.64791717300005],[139.58750290900002,35.64583317700004]]]}},{"type":"Feature","id":5785,"properties":{"MESHCODE":"5339347732","揺全壊":11.12953},"geometry":{"type":"Polygon","coordinates":[[[139.59062790300004,35.645833183000036],[139.59375289900004,35.645833190000076],[139.59375290800006,35.647917188000065],[139.59062791300005,35.647917180000036],[139.59062790300004,35.645833183000036]]]}},{"type":"Feature","id":5797,"properties":{"MESHCODE":"5339347822","揺全壊":12.99669},"geometry":{"type":"Polygon","coordinates":[[[139.60937786600005,35.64166722500005],[139.61250286400002,35.64166723000005],[139.61250287000007,35.64375023000008],[139.60937787300008,35.64375022400009],[139.60937786600005,35.64166722500005]]]}},{"type":"Feature","id":5800,"properties":{"MESHCODE":"5339347831","揺全壊":13.3307},"geometry":{"type":"Polygon","coordinates":[[[139.60000288900005,35.64583320400004],[139.60312788600004,35.645833210000035],[139.60312789400007,35.64791720900007],[139.60000289800007,35.64791720200009],[139.60000288900005,35.64583320400004]]]}},{"type":"Feature","id":5808,"properties":{"MESHCODE":"5339347911","揺全壊":13.25749},"geometry":{"type":"Polygon","coordinates":[[[139.61250286400002,35.64166723000005],[139.61562786700006,35.64166723200009],[139.615627872,35.64375023200006],[139.61250287000007,35.64375023000008],[139.61250286400002,35.64166723000005]]]}},{"type":"Feature","id":5809,"properties":{"MESHCODE":"5339347912","揺全壊":10.11882},"geometry":{"type":"Polygon","coordinates":[[[139.61562786700006,35.64166723200009],[139.6187528690001,35.64166723500006],[139.61875287500004,35.643750235000084],[139.615627872,35.64375023200006],[139.61562786700006,35.64166723200009]]]}},{"type":"Feature","id":6285,"properties":{"MESHCODE":"5339351312","揺全壊":11.43418},"geometry":{"type":"Polygon","coordinates":[[[139.665627857,35.59166723200008],[139.66875286800007,35.59166722800006],[139.668752875,35.593750226000054],[139.66562786500003,35.59375023000007],[139.665627857,35.59166723200008]]]}},{"type":"Feature","id":6293,"properties":{"MESHCODE":"5339351332","揺全壊":10.58209},"geometry":{"type":"Polygon","coordinates":[[[139.66562787200007,35.59583322900005],[139.66875288100005,35.595833225000035],[139.66875288900007,35.59791722300008],[139.665627879,35.59791722700004],[139.66562787200007,35.59583322900005]]]}},{"type":"Feature","id":6296,"properties":{"MESHCODE":"5339351341","揺全壊":11.31109},"geometry":{"type":"Polygon","coordinates":[[[139.66875288100005,35.595833225000035],[139.671877892,35.59583322000009],[139.67187789900004,35.59791721800008],[139.66875288900007,35.59791722300008],[139.66875288100005,35.595833225000035]]]}},{"type":"Feature","id":6309,"properties":{"MESHCODE":"5339351432","揺全壊":14.11303},"geometry":{"type":"Polygon","coordinates":[[[139.67812791200004,35.59583321000008],[139.68125292000002,35.59583320400009],[139.68125292700006,35.597917202000076],[139.67812791900008,35.59791720800007],[139.67812791200004,35.59583321000008]]]}},{"type":"Feature","id":6346,"properties":{"MESHCODE":"5339351643","揺全壊":11.60029},"geometry":{"type":"Polygon","coordinates":[[[139.70625299200003,35.59791714900007],[139.709378,35.597917143000075],[139.70937800900003,35.60000014000008],[139.70625300200004,35.60000014700006],[139.70625299200003,35.59791714900007]]]}},{"type":"Feature","id":6418,"properties":{"MESHCODE":"5339352144","揺全壊":10.14636},"geometry":{"type":"Polygon","coordinates":[[[139.6468778420001,35.606250240000065],[139.65000285100007,35.60625023800009],[139.6500028590001,35.60833323600008],[139.64687784900002,35.60833323800006],[139.6468778420001,35.606250240000065]]]}},{"type":"Feature","id":6422,"properties":{"MESHCODE":"5339352214","揺全壊":13.0032},"geometry":{"type":"Polygon","coordinates":[[[139.65312784900004,35.602083237000045],[139.656252859,35.60208323400008],[139.65625286600005,35.604167233000055],[139.6531278550001,35.60416723600008],[139.65312784900004,35.602083237000045]]]}},{"type":"Feature","id":6430,"properties":{"MESHCODE":"5339352234","揺全壊":12.9561},"geometry":{"type":"Polygon","coordinates":[[[139.65312786200002,35.60625023400007],[139.65625287300008,35.60625023100005],[139.65625287900002,35.60833322900004],[139.65312786800007,35.60833323300005],[139.65312786200002,35.60625023400007]]]}},{"type":"Feature","id":6438,"properties":{"MESHCODE":"5339352314","揺全壊":14.79774},"geometry":{"type":"Polygon","coordinates":[[[139.6656278910001,35.60208322300008],[139.66875290200005,35.602083219000065],[139.6687529090001,35.604167217000054],[139.66562789900001,35.60416722200006],[139.6656278910001,35.60208322300008]]]}},{"type":"Feature","id":6442,"properties":{"MESHCODE":"5339352324","揺全壊":14.10514},"geometry":{"type":"Polygon","coordinates":[[[139.671877913,35.60208321400006],[139.67500292400007,35.60208320900006],[139.675002931,35.604167207000046],[139.67187792000004,35.60416721200005],[139.671877913,35.60208321400006]]]}},{"type":"Feature","id":6495,"properties":{"MESHCODE":"5339352641","揺全壊":12.37276},"geometry":{"type":"Polygon","coordinates":[[[139.70625302000008,35.60416714200005],[139.70937802800006,35.60416713500007],[139.70937803800007,35.60625013300006],[139.70625303000008,35.60625014000004],[139.70625302000008,35.60416714200005]]]}},{"type":"Feature","id":6560,"properties":{"MESHCODE":"5339353042","揺全壊":14.3572},"geometry":{"type":"Polygon","coordinates":[[[139.63437782200003,35.612500244000046],[139.63750283000002,35.612500243000056],[139.63750283600007,35.61458324200004],[139.63437782800008,35.614583243000084],[139.63437782200003,35.612500244000046]]]}},{"type":"Feature","id":6561,"properties":{"MESHCODE":"5339353043","揺全壊":10.30518},"geometry":{"type":"Polygon","coordinates":[[[139.6312528200001,35.61458324400007],[139.63437782800008,35.614583243000084],[139.63437783400002,35.61666724200006],[139.63125282700003,35.61666724300005],[139.6312528200001,35.61458324400007]]]}},{"type":"Feature","id":6566,"properties":{"MESHCODE":"5339353114","揺全壊":11.35145},"geometry":{"type":"Polygon","coordinates":[[[139.64062783500003,35.61041724200004],[139.643752844,35.61041724000006],[139.64375285100004,35.61250023800005],[139.64062784100008,35.61250024100008],[139.64062783500003,35.61041724200004]]]}},{"type":"Feature","id":6569,"properties":{"MESHCODE":"5339353123","揺全壊":10.64896},"geometry":{"type":"Polygon","coordinates":[[[139.643752844,35.61041724000006],[139.64687785500007,35.610417237000036],[139.64687786000002,35.61250023600007],[139.64375285100004,35.61250023800005],[139.643752844,35.61041724000006]]]}},{"type":"Feature","id":6570,"properties":{"MESHCODE":"5339353124","揺全壊":13.55138},"geometry":{"type":"Polygon","coordinates":[[[139.64687785500007,35.610417237000036],[139.65000286500003,35.61041723400007],[139.65000287100008,35.61250023400004],[139.64687786000002,35.61250023600007],[139.64687785500007,35.610417237000036]]]}},{"type":"Feature","id":6575,"properties":{"MESHCODE":"5339353141","揺全壊":10.09939},"geometry":{"type":"Polygon","coordinates":[[[139.64375285100004,35.61250023800005],[139.64687786000002,35.61250023600007],[139.64687786700006,35.614583235000055],[139.6437528570001,35.61458323700003],[139.64375285100004,35.61250023800005]]]}},{"type":"Feature","id":6577,"properties":{"MESHCODE":"5339353143","揺全壊":10.99155},"geometry":{"type":"Polygon","coordinates":[[[139.6437528570001,35.61458323700003],[139.64687786700006,35.614583235000055],[139.646877873,35.616667233000044],[139.64375286200004,35.61666723600007],[139.6437528570001,35.61458323700003]]]}},{"type":"Feature","id":6579,"properties":{"MESHCODE":"5339353211","揺全壊":12.8124},"geometry":{"type":"Polygon","coordinates":[[[139.6500028590001,35.60833323600008],[139.65312786800007,35.60833323300005],[139.6531278760001,35.61041723200009],[139.65000286500003,35.61041723400007],[139.6500028590001,35.60833323600008]]]}},{"type":"Feature","id":6583,"properties":{"MESHCODE":"5339353221","揺全壊":12.13378},"geometry":{"type":"Polygon","coordinates":[[[139.65625287900002,35.60833322900004],[139.6593778900001,35.60833322600007],[139.65937789600002,35.61041722400006],[139.65625288500007,35.610417228000074],[139.65625287900002,35.60833322900004]]]}},{"type":"Feature","id":6641,"properties":{"MESHCODE":"5339353543","揺全壊":11.85124},"geometry":{"type":"Polygon","coordinates":[[[139.69375302800006,35.61458315800007],[139.69687803700003,35.61458315100003],[139.69687804600005,35.61666714900008],[139.6937530360001,35.61666715500007],[139.69375302800006,35.61458315800007]]]}},{"type":"Feature","id":6647,"properties":{"MESHCODE":"5339353621","揺全壊":11.32217},"geometry":{"type":"Polygon","coordinates":[[[139.7062530390001,35.608333137000045],[139.70937804800008,35.60833313000006],[139.7093780570001,35.61041712800005],[139.706253048,35.610417135000034],[139.7062530390001,35.608333137000045]]]}},{"type":"Feature","id":6660,"properties":{"MESHCODE":"5339353712","揺全壊":12.09429},"geometry":{"type":"Polygon","coordinates":[[[139.71562806400004,35.60833311500005],[139.71875307200003,35.60833310800007],[139.71875308200003,35.61041710600006],[139.71562807300006,35.61041711300004],[139.71562806400004,35.60833311500005]]]}},{"type":"Feature","id":6667,"properties":{"MESHCODE":"5339353731","揺全壊":11.45262},"geometry":{"type":"Polygon","coordinates":[[[139.7125030750001,35.61250011800007],[139.71562808300007,35.61250011100009],[139.71562809300008,35.61458310900008],[139.7125030840001,35.61458311600006],[139.7125030750001,35.61250011800007]]]}},{"type":"Feature","id":6685,"properties":{"MESHCODE":"5339353833","揺全壊":12.09898},"geometry":{"type":"Polygon","coordinates":[[[139.72500312,35.61458308600004],[139.72812812900008,35.614583079000056],[139.72812814000008,35.616667076000056],[139.725003131,35.61666708300004],[139.72500312,35.61458308600004]]]}},{"type":"Feature","id":6695,"properties":{"MESHCODE":"5339353921","揺全壊":14.4056},"geometry":{"type":"Polygon","coordinates":[[[139.7437531390001,35.608333050000056],[139.74687814700007,35.60833304300007],[139.74687815900006,35.61041704100006],[139.7437531500001,35.610417048000045],[139.7437531390001,35.608333050000056]]]}},{"type":"Feature","id":6741,"properties":{"MESHCODE":"5339354213","揺全壊":10.97783},"geometry":{"type":"Polygon","coordinates":[[[139.650002889,35.618750230000046],[139.65312790100006,35.61875022600009],[139.653127907,35.62083322500007],[139.65000289500006,35.620833229000084],[139.650002889,35.618750230000046]]]}},{"type":"Feature","id":6776,"properties":{"MESHCODE":"5339354422","揺全壊":12.80525},"geometry":{"type":"Polygon","coordinates":[[[139.6843780060001,35.61666717600008],[139.68750301700004,35.61666716900004],[139.68750302500007,35.61875016700009],[139.684378014,35.61875017400007],[139.6843780060001,35.61666717600008]]]}},{"type":"Feature","id":6790,"properties":{"MESHCODE":"5339354514","揺全壊":11.4991},"geometry":{"type":"Polygon","coordinates":[[[139.69062803500003,35.61875016000005],[139.693753044,35.618750153000065],[139.69375305300002,35.620833152000046],[139.69062804400005,35.62083315800004],[139.69062803500003,35.61875016000005]]]}},{"type":"Feature","id":6797,"properties":{"MESHCODE":"5339354533","揺全壊":11.32033},"geometry":{"type":"Polygon","coordinates":[[[139.687503042,35.62291716300007],[139.69062805200008,35.622917156000085],[139.6906280610001,35.62500015400008],[139.68750305000003,35.62500016100006],[139.687503042,35.62291716300007]]]}},{"type":"Feature","id":6799,"properties":{"MESHCODE":"5339354541","揺全壊":11.91942},"geometry":{"type":"Polygon","coordinates":[[[139.69375305300002,35.620833152000046],[139.6968780630001,35.62083314400007],[139.696878072,35.62291714200006],[139.69375306200004,35.622917149000045],[139.69375305300002,35.620833152000046]]]}},{"type":"Feature","id":6800,"properties":{"MESHCODE":"5339354542","揺全壊":10.32444},"geometry":{"type":"Polygon","coordinates":[[[139.6968780630001,35.62083314400007],[139.70000307400005,35.62083313800008],[139.70000308300007,35.62291713500008],[139.696878072,35.62291714200006],[139.6968780630001,35.62083314400007]]]}},{"type":"Feature","id":6810,"properties":{"MESHCODE":"5339354624","揺全壊":11.54574},"geometry":{"type":"Polygon","coordinates":[[[139.70937809400004,35.61875011800004],[139.712503104,35.618750111000054],[139.71250311400001,35.620833108000056],[139.70937810400005,35.620833116000085],[139.70937809400004,35.61875011800004]]]}},{"type":"Feature","id":6814,"properties":{"MESHCODE":"5339354634","揺全壊":11.09319},"geometry":{"type":"Polygon","coordinates":[[[139.70312809300003,35.62291712800004],[139.706253103,35.62291712000007],[139.706253112,35.62500011800006],[139.70312810300004,35.62500012500004],[139.70312809300003,35.62291712800004]]]}},{"type":"Feature","id":6817,"properties":{"MESHCODE":"5339354643","揺全壊":10.29163},"geometry":{"type":"Polygon","coordinates":[[[139.706253103,35.62291712000007],[139.70937811300007,35.622917113000085],[139.70937812300008,35.62500011100008],[139.706253112,35.62500011800006],[139.706253103,35.62291712000007]]]}},{"type":"Feature","id":6823,"properties":{"MESHCODE":"5339354721","揺全壊":10.0397},"geometry":{"type":"Polygon","coordinates":[[[139.71875311300005,35.61666709800005],[139.72187812200002,35.61666709100007],[139.72187813200003,35.61875008900006],[139.71875312300006,35.61875009600004],[139.71875311300005,35.61666709800005]]]}},{"type":"Feature","id":6881,"properties":{"MESHCODE":"5339355043","揺全壊":12.28166},"geometry":{"type":"Polygon","coordinates":[[[139.63125286500008,35.631250238000064],[139.63437787300006,35.631250238000064],[139.634377879,35.633333237000045],[139.63125287100002,35.633333238000034],[139.63125286500008,35.631250238000064]]]}},{"type":"Feature","id":6947,"properties":{"MESHCODE":"5339355511","揺全壊":13.88332},"geometry":{"type":"Polygon","coordinates":[[[139.68750305000003,35.62500016100006],[139.6906280610001,35.62500015400008],[139.690628069,35.62708315200007],[139.68750305800006,35.62708315800006],[139.68750305000003,35.62500016100006]]]}},{"type":"Feature","id":6955,"properties":{"MESHCODE":"5339355531","揺全壊":14.56978},"geometry":{"type":"Polygon","coordinates":[[[139.68750306700008,35.62916715600005],[139.69062807800003,35.62916714900007],[139.69062808700005,35.63125014600007],[139.687503075,35.63125015300005],[139.68750306700008,35.62916715600005]]]}},{"type":"Feature","id":6956,"properties":{"MESHCODE":"5339355532","揺全壊":13.64452},"geometry":{"type":"Polygon","coordinates":[[[139.69062807800003,35.62916714900007],[139.6937530890001,35.629167142000085],[139.693753098,35.63125013900009],[139.69062808700005,35.63125014600007],[139.69062807800003,35.62916714900007]]]}},{"type":"Feature","id":7080,"properties":{"MESHCODE":"5339356322","揺全壊":14.60345},"geometry":{"type":"Polygon","coordinates":[[[139.671878021,35.63333318400004],[139.67500303300005,35.63333317800004],[139.67500304200007,35.63541717500004],[139.67187803000002,35.63541718100004],[139.671878021,35.63333318400004]]]}},{"type":"Feature","id":7100,"properties":{"MESHCODE":"5339356432","揺全壊":13.43656},"geometry":{"type":"Polygon","coordinates":[[[139.678128065,35.63750016500006],[139.68125307700006,35.63750015900007],[139.68125308700007,35.63958315500008],[139.67812807400003,35.639583163000054],[139.678128065,35.63750016500006]]]}},{"type":"Feature","id":7101,"properties":{"MESHCODE":"5339356433","揺全壊":10.63023},"geometry":{"type":"Polygon","coordinates":[[[139.67500306,35.63958316900005],[139.67812807400003,35.639583163000054],[139.67812808200006,35.641667159000065],[139.675003069,35.64166716700004],[139.67500306,35.63958316900005]]]}},{"type":"Feature","id":7207,"properties":{"MESHCODE":"5339357121","揺全壊":13.97163},"geometry":{"type":"Polygon","coordinates":[[[139.6437529330001,35.64166722500005],[139.64687794600002,35.641667221000034],[139.64687795200007,35.64375022000007],[139.64375294,35.64375022400009],[139.6437529330001,35.64166722500005]]]}},{"type":"Feature","id":7237,"properties":{"MESHCODE":"5339357313","揺全壊":10.51878},"geometry":{"type":"Polygon","coordinates":[[[139.662503023,35.643750192000084],[139.66562803700003,35.643750185000044],[139.66562804600005,35.645833183000036],[139.66250303200002,35.645833190000076],[139.662503023,35.643750192000084]]]}},{"type":"Feature","id":7248,"properties":{"MESHCODE":"5339357342","揺全壊":11.24731},"geometry":{"type":"Polygon","coordinates":[[[139.671878075,35.64583316800008],[139.67500308900003,35.64583316100004],[139.67500309900004,35.64791715800004],[139.671878084,35.64791716600007],[139.671878075,35.64583316800008]]]}},{"type":"Feature","id":7361,"properties":{"MESHCODE":"5339358043","揺全壊":14.11766},"geometry":{"type":"Polygon","coordinates":[[[139.631252926,35.65625023700005],[139.63437793700007,35.65625023400008],[139.634377943,35.658333234000054],[139.63125293100006,35.65833323700008],[139.631252926,35.65625023700005]]]}},{"type":"Feature","id":7521,"properties":{"MESHCODE":"5339359043","揺全壊":13.78498},"geometry":{"type":"Polygon","coordinates":[[[139.631252948,35.664583235000066],[139.634377965,35.66458322900007],[139.63437797300003,35.66666722700006],[139.63125295400005,35.666667234000045],[139.631252948,35.664583235000066]]]}},{"type":"Feature","id":7585,"properties":{"MESHCODE":"5339359443","揺全壊":10.44338},"geometry":{"type":"Polygon","coordinates":[[[139.68125322100002,35.66458311800005],[139.68437823600004,35.66458311100007],[139.68437824900002,35.66666710700008],[139.681253233,35.66666711500005],[139.68125322100002,35.66458311800005]]]}},{"type":"Feature","id":8524,"properties":{"MESHCODE":"5339368931","揺全壊":10.97216},"geometry":{"type":"Polygon","coordinates":[[[139.86250385800008,35.65416679200007],[139.86562886900003,35.654166785000086],[139.86562888800006,35.656249786000046],[139.862503876,35.65624979100005],[139.86250385800008,35.65416679200007]]]}},{"type":"Feature","id":8667,"properties":{"MESHCODE":"5339369824","揺全壊":11.37487},"geometry":{"type":"Polygon","coordinates":[[[139.85937890000002,35.66041679700004],[139.8625039110001,35.660416791000046],[139.862503929,35.66249979000008],[139.85937891700007,35.66249979600008],[139.85937890000002,35.66041679700004]]]}},{"type":"Feature","id":8676,"properties":{"MESHCODE":"5339369911","揺全壊":10.09595},"geometry":{"type":"Polygon","coordinates":[[[139.86250389400004,35.65833279100008],[139.8656289060001,35.658332786000074],[139.86562892400002,35.66041678500005],[139.8625039110001,35.660416791000046],[139.86250389400004,35.65833279100008]]]}},{"type":"Feature","id":8680,"properties":{"MESHCODE":"5339369921","揺全壊":11.87788},"geometry":{"type":"Polygon","coordinates":[[[139.86875391800004,35.658332779000034],[139.8718789300001,35.65833277300004],[139.87187894800002,35.660416773000065],[139.86875393600008,35.66041677900006],[139.86875391800004,35.658332779000034]]]}},{"type":"Feature","id":8682,"properties":{"MESHCODE":"5339369923","揺全壊":12.2013},"geometry":{"type":"Polygon","coordinates":[[[139.86875393600008,35.66041677900006],[139.87187894800002,35.660416773000065],[139.87187896700004,35.662499773000036],[139.868753954,35.662499779000086],[139.86875393600008,35.66041677900006]]]}},{"type":"Feature","id":8684,"properties":{"MESHCODE":"5339369931","揺全壊":10.61698},"geometry":{"type":"Polygon","coordinates":[[[139.862503929,35.66249979000008],[139.86562894200006,35.66249978400009],[139.8656289590001,35.66458278400006],[139.86250394700005,35.664582789000065],[139.862503929,35.66249979000008]]]}},{"type":"Feature","id":8691,"properties":{"MESHCODE":"5339369944","揺全壊":14.38484},"geometry":{"type":"Polygon","coordinates":[[[139.87187898500008,35.664582772000074],[139.875003998,35.66458276700007],[139.87500401600005,35.66666676700004],[139.871879004,35.66666677200004],[139.87187898500008,35.664582772000074]]]}},{"type":"Feature","id":8731,"properties":{"MESHCODE":"5339379032","揺全壊":14.13046},"geometry":{"type":"Polygon","coordinates":[[[139.87812899000005,35.66249976100005],[139.8812540020001,35.662499755000056],[139.881254022,35.66458275600007],[139.87812901000007,35.66458276100008],[139.87812899000005,35.66249976100005]]]}},{"type":"Feature","id":8732,"properties":{"MESHCODE":"5339379033","揺全壊":12.75402},"geometry":{"type":"Polygon","coordinates":[[[139.875003998,35.66458276700007],[139.87812901000007,35.66458276100008],[139.8781290290001,35.666666761000045],[139.87500401600005,35.66666676700004],[139.875003998,35.66458276700007]]]}},{"type":"Feature","id":8735,"properties":{"MESHCODE":"5339379042","揺全壊":11.22134},"geometry":{"type":"Polygon","coordinates":[[[139.88437901200007,35.66249975000005],[139.887504024,35.66249974400006],[139.88750404500001,35.664582745000075],[139.88437903300007,35.66458275000008],[139.88437901200007,35.66249975000005]]]}},{"type":"Feature","id":15334,"properties":{"MESHCODE":"5339445741","揺全壊":10.88587},"geometry":{"type":"Polygon","coordinates":[[[139.59375330800003,35.71250004500007],[139.5968783080001,35.712500049000084],[139.59687832300006,35.71458304400005],[139.5937533230001,35.714583040000036],[139.59375330800003,35.71250004500007]]]}},{"type":"Feature","id":16022,"properties":{"MESHCODE":"5339450041","揺全壊":10.68728},"geometry":{"type":"Polygon","coordinates":[[[139.63125298900002,35.67083322000008],[139.63437800500003,35.67083321400008],[139.63437802200008,35.67291720700007],[139.63125300700005,35.67291721200007],[139.63125298900002,35.67083322000008]]]}},{"type":"Feature","id":16038,"properties":{"MESHCODE":"5339450141","揺全壊":11.32483},"geometry":{"type":"Polygon","coordinates":[[[139.64375305700003,35.67083319400007],[139.64687807500002,35.670833187000085],[139.6468780890001,35.67291718100006],[139.6437530710001,35.67291718800004],[139.64375305700003,35.67083319400007]]]}},{"type":"Feature","id":16088,"properties":{"MESHCODE":"5339450443","揺全壊":10.13644},"geometry":{"type":"Polygon","coordinates":[[[139.68125327500002,35.67291710200004],[139.68437829000004,35.67291709400007],[139.684378304,35.67500009000008],[139.6812532890001,35.675000097000066],[139.68125327500002,35.67291710200004]]]}},{"type":"Feature","id":16173,"properties":{"MESHCODE":"5339451014","揺全壊":13.75084},"geometry":{"type":"Polygon","coordinates":[[[139.62812803300005,35.67708319900004],[139.631253044,35.67708319600007],[139.63125306300003,35.679167188000065],[139.6281280510001,35.67916719100009],[139.62812803300005,35.67708319900004]]]}},{"type":"Feature","id":16182,"properties":{"MESHCODE":"5339451041","揺全壊":14.04076},"geometry":{"type":"Polygon","coordinates":[[[139.63125306300003,35.679167188000065],[139.6343780750001,35.67916718500004],[139.634378093,35.681250178000084],[139.63125308200006,35.68125018000006],[139.63125306300003,35.679167188000065]]]}},{"type":"Feature","id":16184,"properties":{"MESHCODE":"5339451043","揺全壊":10.63185},"geometry":{"type":"Polygon","coordinates":[[[139.63125308200006,35.68125018000006],[139.634378093,35.681250178000084],[139.63437811100005,35.68333317000008],[139.63125310200007,35.68333317200006],[139.63125308200006,35.68125018000006]]]}},{"type":"Feature","id":16224,"properties":{"MESHCODE":"5339451323","揺全壊":11.37054},"geometry":{"type":"Polygon","coordinates":[[[139.66875324,35.67708312100007],[139.671878257,35.677083114000084],[139.67187827200007,35.67916710900005],[139.66875325500007,35.67916711600009],[139.66875324,35.67708312100007]]]}},{"type":"Feature","id":16453,"properties":{"MESHCODE":"5339452734","揺全壊":10.01071},"geometry":{"type":"Polygon","coordinates":[[[139.7156285530001,35.689583001000074],[139.71875356600003,35.68958299600007],[139.7187535820001,35.69166699300007],[139.71562857000004,35.69166699800007],[139.7156285530001,35.689583001000074]]]}},{"type":"Feature","id":17395,"properties":{"MESHCODE":"5339458632","揺全壊":12.62899},"geometry":{"type":"Polygon","coordinates":[[[139.703128946,35.73749991100004],[139.70625395500008,35.73749991100004],[139.70625397600008,35.73958290500008],[139.7031289680001,35.73958290500008],[139.703128946,35.73749991100004]]]}},{"type":"Feature","id":17400,"properties":{"MESHCODE":"5339458643","揺全壊":11.44447},"geometry":{"type":"Polygon","coordinates":[[[139.70625397600008,35.73958290500008],[139.70937898400007,35.73958290500008],[139.7093790030001,35.74166690000004],[139.7062539960001,35.74166690000004],[139.70625397600008,35.73958290500008]]]}},{"type":"Feature","id":17448,"properties":{"MESHCODE":"5339458943","揺全壊":11.03114},"geometry":{"type":"Polygon","coordinates":[[[139.74375406600006,35.73958290000007],[139.74687907400005,35.73958289800004],[139.74687909,35.74166689500004],[139.743754083,35.74166689700007],[139.74375406600006,35.73958290000007]]]}},{"type":"Feature","id":17586,"properties":{"MESHCODE":"5339459831","揺全壊":10.23284},"geometry":{"type":"Polygon","coordinates":[[[139.7250040780001,35.745832894000046],[139.7281290840001,35.745832894000046],[139.72812910200003,35.747916892000035],[139.72500409600002,35.747916892000035],[139.7250040780001,35.745832894000046]]]}},{"type":"Feature","id":17715,"properties":{"MESHCODE":"5339460632","揺全壊":10.10698},"geometry":{"type":"Polygon","coordinates":[[[139.82812885400006,35.67083284900008],[139.831253866,35.670832844000074],[139.83125388200006,35.67291684300005],[139.828128869,35.67291684800006],[139.82812885400006,35.67083284900008]]]}},{"type":"Feature","id":17757,"properties":{"MESHCODE":"5339460914","揺全壊":12.20587},"geometry":{"type":"Polygon","coordinates":[[[139.8656289920001,35.668749784000056],[139.86875400600002,35.66874977900005],[139.86875402200008,35.67083277900008],[139.86562900800004,35.67083278500007],[139.8656289920001,35.668749784000056]]]}},{"type":"Feature","id":17763,"properties":{"MESHCODE":"5339460932","揺全壊":14.62779},"geometry":{"type":"Polygon","coordinates":[[[139.86562900800004,35.67083278500007],[139.86875402200008,35.67083277900008],[139.86875403700003,35.67291678000004],[139.8656290240001,35.67291678600009],[139.86562900800004,35.67083278500007]]]}},{"type":"Feature","id":17765,"properties":{"MESHCODE":"5339460934","揺全壊":10.85609},"geometry":{"type":"Polygon","coordinates":[[[139.8656290240001,35.67291678600009],[139.86875403700003,35.67291678000004],[139.8687540520001,35.674999781000054],[139.86562903900005,35.67499978600006],[139.8656290240001,35.67291678600009]]]}},{"type":"Feature","id":17834,"properties":{"MESHCODE":"5339461411","揺全壊":14.73351},"geometry":{"type":"Polygon","coordinates":[[[139.80000377200008,35.67499989200007],[139.803128785,35.67499988600008],[139.8031287990001,35.67708288500006],[139.80000378600005,35.677082891000055],[139.80000377200008,35.67499989200007]]]}},{"type":"Feature","id":17848,"properties":{"MESHCODE":"5339461443","揺全壊":14.59828},"geometry":{"type":"Polygon","coordinates":[[[139.80625384100006,35.68124987900006],[139.8093788540001,35.68124987500005],[139.80937886800007,35.68333287300004],[139.80625385500002,35.683332878000044],[139.80625384100006,35.68124987900006]]]}},{"type":"Feature","id":17918,"properties":{"MESHCODE":"5339461921","揺全壊":10.65264},"geometry":{"type":"Polygon","coordinates":[[[139.8687540520001,35.674999781000054],[139.871879067,35.67499977500006],[139.8718790800001,35.67708277500009],[139.86875406700005,35.677082780000035],[139.8687540520001,35.674999781000054]]]}},{"type":"Feature","id":17994,"properties":{"MESHCODE":"5339462411","揺全壊":14.78055},"geometry":{"type":"Polygon","coordinates":[[[139.80000383000004,35.68333288600007],[139.80312884300008,35.68333288200006],[139.80312885700005,35.68541688100004],[139.8000038450001,35.68541688600004],[139.80000383000004,35.68333288600007]]]}},{"type":"Feature","id":18006,"properties":{"MESHCODE":"5339462441","揺全壊":12.9525},"geometry":{"type":"Polygon","coordinates":[[[139.80625388400006,35.68749987600006],[139.809378896,35.687499872000046],[139.80937891000008,35.689582871000084],[139.806253899,35.68958287600009],[139.80625388400006,35.68749987600006]]]}},{"type":"Feature","id":18085,"properties":{"MESHCODE":"5339462934","揺全壊":10.48252},"geometry":{"type":"Polygon","coordinates":[[[139.8656291310001,35.68958278700006],[139.86875414200006,35.68958278200006],[139.86875415400004,35.691666782000084],[139.8656291420001,35.69166678700009],[139.8656291310001,35.68958278700006]]]}},{"type":"Feature","id":18102,"properties":{"MESHCODE":"5339463041","揺全壊":12.95309},"geometry":{"type":"Polygon","coordinates":[[[139.7562537560001,35.695832936000045],[139.75937876800003,35.69583293200009],[139.7593787840001,35.697916930000076],[139.75625377200004,35.697916934000034],[139.7562537560001,35.695832936000045]]]}},{"type":"Feature","id":18177,"properties":{"MESHCODE":"5339463524","揺全壊":12.55953},"geometry":{"type":"Polygon","coordinates":[[[139.8218789870001,35.69374985200005],[139.825004,35.69374984800004],[139.82500401200002,35.69583284700008],[139.82187900100007,35.69583285200008],[139.8218789870001,35.69374985200005]]]}},{"type":"Feature","id":18210,"properties":{"MESHCODE":"5339463731","揺全壊":10.8915},"geometry":{"type":"Polygon","coordinates":[[[139.83750405900003,35.69583282900004],[139.84062907200007,35.69583282500008],[139.84062908500005,35.69791682400006],[139.8375040730001,35.697916829000064],[139.83750405900003,35.69583282900004]]]}},{"type":"Feature","id":18231,"properties":{"MESHCODE":"5339463842","揺全壊":14.55844},"geometry":{"type":"Polygon","coordinates":[[[139.85937914200008,35.69583279600005],[139.86250415400002,35.69583279200009],[139.862504166,35.69791679100007],[139.85937915500006,35.69791679600007],[139.85937914200008,35.69583279600005]]]}},{"type":"Feature","id":18248,"properties":{"MESHCODE":"5339463943","揺全壊":11.76854},"geometry":{"type":"Polygon","coordinates":[[[139.86875418600005,35.69791678300004],[139.871879197,35.69791677900008],[139.871879207,35.69999977900005],[139.86875419700004,35.69999978300007],[139.86875418600005,35.69791678300004]]]}},{"type":"Feature","id":18286,"properties":{"MESHCODE":"5339464221","揺全壊":11.06564},"geometry":{"type":"Polygon","coordinates":[[[139.78125387800003,35.69999990300005],[139.7843788890001,35.699999898000044],[139.78437890400005,35.70208289700008],[139.7812538930001,35.702082902000086],[139.78125387800003,35.69999990300005]]]}},{"type":"Feature","id":18288,"properties":{"MESHCODE":"5339464223","揺全壊":11.70462},"geometry":{"type":"Polygon","coordinates":[[[139.7812538930001,35.702082902000086],[139.78437890400005,35.70208289700008],[139.784378919,35.70416689700005],[139.78125390700006,35.704166901000065],[139.7812538930001,35.702082902000086]]]}},{"type":"Feature","id":18300,"properties":{"MESHCODE":"5339464313","揺全壊":13.85662},"geometry":{"type":"Polygon","coordinates":[[[139.787503914,35.70208289400006],[139.79062892600007,35.70208289000004],[139.79062894000003,35.70416688900008],[139.78750393000007,35.704166893000036],[139.787503914,35.70208289400006]]]}},{"type":"Feature","id":18314,"properties":{"MESHCODE":"5339464411","揺全壊":14.4166},"geometry":{"type":"Polygon","coordinates":[[[139.80000394700005,35.69999988100005],[139.803128958,35.69999987600005],[139.80312897200008,35.70208287500009],[139.80000396100002,35.702082879000045],[139.80000394700005,35.69999988100005]]]}},{"type":"Feature","id":18334,"properties":{"MESHCODE":"5339464521","揺全壊":12.27324},"geometry":{"type":"Polygon","coordinates":[[[139.81875401500008,35.699999855000044],[139.82187902700002,35.699999852000076],[139.82187904,35.70208285100006],[139.81875402800006,35.70208285500007],[139.81875401500008,35.699999855000044]]]}},{"type":"Feature","id":18344,"properties":{"MESHCODE":"5339464543","揺全壊":13.64371},"geometry":{"type":"Polygon","coordinates":[[[139.8187540560001,35.70624985400008],[139.82187906700005,35.70624984900007],[139.82187908100002,35.708332849000044],[139.81875407000007,35.70833285300006],[139.8187540560001,35.70624985400008]]]}},{"type":"Feature","id":18363,"properties":{"MESHCODE":"5339464712","揺全壊":10.51044},"geometry":{"type":"Polygon","coordinates":[[[139.84062909800002,35.69999982400009],[139.84375411000008,35.699999819000084],[139.84375412100007,35.702082819000054],[139.84062911,35.70208282400006],[139.84062909800002,35.69999982400009]]]}},{"type":"Feature","id":18364,"properties":{"MESHCODE":"5339464713","揺全壊":12.50382},"geometry":{"type":"Polygon","coordinates":[[[139.83750409900006,35.70208282800007],[139.84062911,35.70208282400006],[139.840629122,35.70416682300004],[139.83750411200003,35.70416682800004],[139.83750409900006,35.70208282800007]]]}},{"type":"Feature","id":18377,"properties":{"MESHCODE":"5339464744","揺全壊":13.7242},"geometry":{"type":"Polygon","coordinates":[[[139.846879156,35.706249815000035],[139.85000416700007,35.70624981100008],[139.85000417800006,35.70833281100005],[139.846879167,35.70833281500006],[139.846879156,35.706249815000035]]]}},{"type":"Feature","id":18400,"properties":{"MESHCODE":"5339464923","揺全壊":11.64233},"geometry":{"type":"Polygon","coordinates":[[[139.86875420700005,35.70208278400008],[139.87187921700001,35.70208277900008],[139.87187922600003,35.70416677900005],[139.86875421700006,35.70416678300006],[139.86875420700005,35.70208278400008]]]}},{"type":"Feature","id":18401,"properties":{"MESHCODE":"5339464924","揺全壊":14.13484},"geometry":{"type":"Polygon","coordinates":[[[139.87187921700001,35.70208277900008],[139.8750042260001,35.702082775000065],[139.875004235,35.70416677500009],[139.87187922600003,35.70416677900005],[139.87187921700001,35.70208277900008]]]}},{"type":"Feature","id":18402,"properties":{"MESHCODE":"5339464931","揺全壊":11.76581},"geometry":{"type":"Polygon","coordinates":[[[139.862504199,35.70416679200008],[139.8656292080001,35.704166788000066],[139.8656292180001,35.70624978700005],[139.862504209,35.70624979200005],[139.862504199,35.70416679200008]]]}},{"type":"Feature","id":18437,"properties":{"MESHCODE":"5339465134","揺全壊":11.01175},"geometry":{"type":"Polygon","coordinates":[[[139.76562893300002,35.71458291000005],[139.7687539430001,35.71458290700008],[139.76875395900004,35.71666690500007],[139.76562894900007,35.716666908000036],[139.76562893300002,35.71458291000005]]]}},{"type":"Feature","id":18449,"properties":{"MESHCODE":"5339465224","揺全壊":10.32276},"geometry":{"type":"Polygon","coordinates":[[[139.784378963,35.71041689300006],[139.78750397300007,35.71041689100008],[139.78750398800003,35.71249988900007],[139.78437897700007,35.71249989200004],[139.784378963,35.71041689300006]]]}},{"type":"Feature","id":18524,"properties":{"MESHCODE":"5339465713","揺全壊":10.44968},"geometry":{"type":"Polygon","coordinates":[[[139.837504147,35.710416827000074],[139.84062915800007,35.71041682300006],[139.84062917000006,35.71249982200004],[139.8375041600001,35.712499826000055],[139.837504147,35.710416827000074]]]}},{"type":"Feature","id":18534,"properties":{"MESHCODE":"5339465741","揺全壊":10.82959},"geometry":{"type":"Polygon","coordinates":[[[139.843754181,35.71249981800008],[139.84687919100008,35.71249981400007],[139.84687920300007,35.71458281300005],[139.843754192,35.714582817000064],[139.843754181,35.71249981800008]]]}},{"type":"Feature","id":18555,"properties":{"MESHCODE":"5339465912","揺全壊":12.616},"geometry":{"type":"Polygon","coordinates":[[[139.8656292280001,35.708332787000074],[139.86875423700008,35.70833278400005],[139.8687542460001,35.710416784000074],[139.865629238,35.71041678800009],[139.8656292280001,35.708332787000074]]]}},{"type":"Feature","id":18615,"properties":{"MESHCODE":"5339466242","揺全壊":14.20116},"geometry":{"type":"Polygon","coordinates":[[[139.784379037,35.72083288600004],[139.7875040450001,35.72083288300007],[139.78750406100005,35.72291688200005],[139.7843790510001,35.722916885000075],[139.784379037,35.72083288600004]]]}},{"type":"Feature","id":18669,"properties":{"MESHCODE":"5339466614","揺全壊":12.24352},"geometry":{"type":"Polygon","coordinates":[[[139.82812916500006,35.718749837000075],[139.83125417500003,35.71874983300006],[139.831254187,35.72083283300009],[139.82812917700005,35.720832837000046],[139.82812916500006,35.718749837000075]]]}},{"type":"Feature","id":18706,"properties":{"MESHCODE":"5339466831","揺全壊":10.9978},"geometry":{"type":"Polygon","coordinates":[[[139.85000424700002,35.72083280800007],[139.8531292560001,35.720832804000054],[139.8531292670001,35.72291680400008],[139.850004259,35.722916808000036],[139.85000424700002,35.72083280800007]]]}},{"type":"Feature","id":18707,"properties":{"MESHCODE":"5339466832","揺全壊":13.41471},"geometry":{"type":"Polygon","coordinates":[[[139.8531292560001,35.720832804000054],[139.85625426500008,35.72083280000004],[139.85625427500008,35.722916800000064],[139.8531292670001,35.72291680400008],[139.8531292560001,35.720832804000054]]]}},{"type":"Feature","id":18717,"properties":{"MESHCODE":"5339466914","揺全壊":11.35288},"geometry":{"type":"Polygon","coordinates":[[[139.86562927900002,35.71874978800008],[139.868754287,35.71874978500006],[139.868754297,35.720832785000084],[139.86562929000002,35.72083278800005],[139.86562927900002,35.71874978800008]]]}},{"type":"Feature","id":18855,"properties":{"MESHCODE":"5339467742","揺全壊":13.53832},"geometry":{"type":"Polygon","coordinates":[[[139.846879284,35.729166811000084],[139.8500042930001,35.72916680700007],[139.85000430500008,35.73124980600005],[139.846879295,35.731249811000055],[139.846879284,35.729166811000084]]]}},{"type":"Feature","id":18862,"properties":{"MESHCODE":"5339467821","揺全壊":12.85669},"geometry":{"type":"Polygon","coordinates":[[[139.85625428600008,35.724999800000035],[139.85937929400006,35.72499979600008],[139.85937930600005,35.72708279500006],[139.85625429800007,35.72708279900007],[139.85625428600008,35.724999800000035]]]}},{"type":"Feature","id":18895,"properties":{"MESHCODE":"5339468022","揺全壊":14.50927},"geometry":{"type":"Polygon","coordinates":[[[139.75937905600006,35.73333289900006],[139.76250406400004,35.73333289700008],[139.7625040800001,35.73541689500007],[139.759379072,35.73541689700005],[139.75937905600006,35.73333289900006]]]}},{"type":"Feature","id":18971,"properties":{"MESHCODE":"5339468512","揺全壊":10.17752},"geometry":{"type":"Polygon","coordinates":[[[139.81562921500006,35.73333284900008],[139.81875422300004,35.73333284600005],[139.81875423600002,35.73541684500009],[139.81562922700004,35.73541684800006],[139.81562921500006,35.73333284900008]]]}},{"type":"Feature","id":18975,"properties":{"MESHCODE":"5339468522","揺全壊":12.24301},"geometry":{"type":"Polygon","coordinates":[[[139.82187923200001,35.73333284200004],[139.8250042410001,35.73333283900007],[139.82500425400008,35.73541683800005],[139.8218792450001,35.73541684200006],[139.82187923200001,35.73333284200004]]]}},{"type":"Feature","id":18990,"properties":{"MESHCODE":"5339468621","揺全壊":12.72398},"geometry":{"type":"Polygon","coordinates":[[[139.83125426100003,35.73333283000005],[139.8343792710001,35.73333282700008],[139.8343792830001,35.73541682600006],[139.831254273,35.73541683000008],[139.83125426100003,35.73333283000005]]]}},{"type":"Feature","id":18993,"properties":{"MESHCODE":"5339468624","揺全壊":12.85496},"geometry":{"type":"Polygon","coordinates":[[[139.8343792830001,35.73541682600006],[139.83750429200006,35.73541682100006],[139.83750430400005,35.737499821000085],[139.83437929500008,35.73749982500004],[139.8343792830001,35.73541682600006]]]}},{"type":"Feature","id":18996,"properties":{"MESHCODE":"5339468633","揺全壊":13.7829},"geometry":{"type":"Polygon","coordinates":[[[139.82500427900004,35.73958283700006],[139.828129289,35.73958283200005],[139.8281293,35.74166683200008],[139.82500429200002,35.741666836000036],[139.82500427900004,35.73958283700006]]]}},{"type":"Feature","id":18999,"properties":{"MESHCODE":"5339468642","揺全壊":10.86553},"geometry":{"type":"Polygon","coordinates":[[[139.83437929500008,35.73749982500004],[139.83750430400005,35.737499821000085],[139.83750431600004,35.73958282000007],[139.83437930700006,35.73958282400008],[139.83437929500008,35.73749982500004]]]}},{"type":"Feature","id":19137,"properties":{"MESHCODE":"5339469524","揺全壊":10.90674},"geometry":{"type":"Polygon","coordinates":[[[139.82187929400004,35.74374983900009],[139.82500430300001,35.743749835000074],[139.825004315,35.745832835000044],[139.82187930700002,35.74583283800007],[139.82187929400004,35.74374983900009]]]}},{"type":"Feature","id":19165,"properties":{"MESHCODE":"5339469714","揺全壊":12.33583},"geometry":{"type":"Polygon","coordinates":[[[139.8406293490001,35.74374981500006],[139.84375435800007,35.743749810000054],[139.84375436900007,35.74583281000008],[139.8406293600001,35.74583281400004],[139.8406293490001,35.74374981500006]]]}},{"type":"Feature","id":19214,"properties":{"MESHCODE":"5339470021","揺全壊":14.48226},"geometry":{"type":"Polygon","coordinates":[[[139.88125404100003,35.66666675600004],[139.88437905400008,35.66666675000005],[139.884379071,35.668749751000064],[139.88125405800008,35.66874975600007],[139.88125404100003,35.66666675600004]]]}},{"type":"Feature","id":19216,"properties":{"MESHCODE":"5339470023","揺全壊":14.06801},"geometry":{"type":"Polygon","coordinates":[[[139.88125405800008,35.66874975600007],[139.884379071,35.668749751000064],[139.88437908800006,35.670832751000034],[139.88125407500002,35.670832757000085],[139.88125405800008,35.66874975600007]]]}},{"type":"Feature","id":19227,"properties":{"MESHCODE":"5339471012","揺全壊":12.8309},"geometry":{"type":"Polygon","coordinates":[[[139.8781290940001,35.67499976400006],[139.881254109,35.67499975800007],[139.8812541210001,35.67708275800004],[139.87812910700006,35.67708276400003],[139.8781290940001,35.67499976400006]]]}},{"type":"Feature","id":19250,"properties":{"MESHCODE":"5339472012","揺全壊":10.87058},"geometry":{"type":"Polygon","coordinates":[[[139.8781291460001,35.683332765000046],[139.88125415800005,35.68333275900005],[139.88125416800005,35.68541676000007],[139.878129156,35.68541676500007],[139.8781291460001,35.683332765000046]]]}},{"type":"Feature","id":19305,"properties":{"MESHCODE":"5339473024","揺全壊":10.11815},"geometry":{"type":"Polygon","coordinates":[[[139.8843792130001,35.69374975900007],[139.88750422200008,35.693749754000066],[139.887504229,35.69583275500008],[139.88437922100002,35.69583276000009],[139.8843792130001,35.69374975900007]]]}},{"type":"Feature","id":19310,"properties":{"MESHCODE":"5339473041","揺全壊":13.04159},"geometry":{"type":"Polygon","coordinates":[[[139.88125421300003,35.695832765000034],[139.88437922100002,35.69583276000009],[139.88437922900005,35.697916761000045],[139.88125422200005,35.69791676600005],[139.88125421300003,35.695832765000034]]]}},{"type":"Feature","id":19358,"properties":{"MESHCODE":"5339474021","揺全壊":10.35535},"geometry":{"type":"Polygon","coordinates":[[[139.88125423100007,35.699999767000065],[139.88437923800007,35.69999976300005],[139.8843792450001,35.70208276300008],[139.8812542390001,35.702082767000036],[139.88125423100007,35.699999767000065]]]}},{"type":"Feature","id":19364,"properties":{"MESHCODE":"5339474033","揺全壊":11.20588},"geometry":{"type":"Polygon","coordinates":[[[139.87500424400002,35.70624977500006],[139.87812925000003,35.706249771000046],[139.87812925900005,35.70833277100007],[139.87500425300004,35.70833277500009],[139.87500424400002,35.70624977500006]]]}},{"type":"Feature","id":25209,"properties":{"MESHCODE":"5339550914","揺全壊":11.39202},"geometry":{"type":"Polygon","coordinates":[[[139.74062915900004,35.75208288600004],[139.74375416500004,35.75208288600004],[139.7437541810001,35.754166884000085],[139.7406291750001,35.754166885000075],[139.74062915900004,35.75208288600004]]]}},{"type":"Feature","id":25340,"properties":{"MESHCODE":"5339551723","揺全壊":10.08193},"geometry":{"type":"Polygon","coordinates":[[[139.71875419100002,35.760416872000064],[139.72187919500004,35.76041687400004],[139.7218792120001,35.762499872000035],[139.71875420800006,35.762499870000056],[139.71875419100002,35.760416872000064]]]}},{"type":"Feature","id":25467,"properties":{"MESHCODE":"5339552522","揺全壊":10.7793},"geometry":{"type":"Polygon","coordinates":[[[139.69687922000003,35.76666684300005],[139.70000422200008,35.76666684700007],[139.700004239,35.76874984500006],[139.69687923700008,35.768749841000044],[139.69687922000003,35.76666684300005]]]}},{"type":"Feature","id":25665,"properties":{"MESHCODE":"5339553734","揺全壊":10.69918},"geometry":{"type":"Polygon","coordinates":[[[139.71562934500002,35.78124985100004],[139.71875434900005,35.781249854000066],[139.718754364,35.78333285300005],[139.7156293600001,35.78333285000008],[139.71562934500002,35.78124985100004]]]}},{"type":"Feature","id":25726,"properties":{"MESHCODE":"5339554142","揺全壊":11.22986},"geometry":{"type":"Polygon","coordinates":[[[139.64687914500007,35.78749981900006],[139.6500041710001,35.78749981400006],[139.65000418400007,35.78958281200005],[139.64687915900004,35.78958281700005],[139.64687914500007,35.78749981900006]]]}},{"type":"Feature","id":25885,"properties":{"MESHCODE":"5339555331","揺全壊":11.83796},"geometry":{"type":"Polygon","coordinates":[[[139.6625043030001,35.79583279900004],[139.66562931700003,35.795832800000085],[139.66562932500005,35.79791680100004],[139.66250431100002,35.79791679900006],[139.6625043030001,35.79583279900004]]]}},{"type":"Feature","id":26049,"properties":{"MESHCODE":"5339560623","揺全壊":14.10979},"geometry":{"type":"Polygon","coordinates":[[[139.83125437,35.75208282400007],[139.834379378,35.752082819000066],[139.83437939100008,35.754166818000044],[139.831254382,35.75416682200006],[139.83125437,35.75208282400007]]]}},{"type":"Feature","id":26102,"properties":{"MESHCODE":"5339560934","揺全壊":11.95269},"geometry":{"type":"Polygon","coordinates":[[[139.86562948300002,35.75624977500007],[139.86875448900003,35.75624977100006],[139.868754502,35.75833276900005],[139.865629495,35.75833277400005],[139.86562948300002,35.75624977500007]]]}},{"type":"Feature","id":26105,"properties":{"MESHCODE":"5339560943","揺全壊":10.77181},"geometry":{"type":"Polygon","coordinates":[[[139.86875448900003,35.75624977100006],[139.87187949500003,35.75624976700004],[139.871879508,35.758332765000034],[139.868754502,35.75833276900005],[139.86875448900003,35.75624977100006]]]}},{"type":"Feature","id":26112,"properties":{"MESHCODE":"5339561022","揺全壊":10.81382},"geometry":{"type":"Polygon","coordinates":[[[139.75937924200002,35.75833287900008],[139.76250424700004,35.75833287800009],[139.7625042630001,35.76041687700007],[139.7593792570001,35.76041687700007],[139.75937924200002,35.75833287900008]]]}},{"type":"Feature","id":26113,"properties":{"MESHCODE":"5339561023","揺全壊":13.19508},"geometry":{"type":"Polygon","coordinates":[[[139.7562542510001,35.76041687800006],[139.7593792570001,35.76041687700007],[139.75937927300004,35.76249987600005],[139.75625426600004,35.76249987700004],[139.7562542510001,35.76041687800006]]]}},{"type":"Feature","id":26119,"properties":{"MESHCODE":"5339561041","揺全壊":13.49736},"geometry":{"type":"Polygon","coordinates":[[[139.75625426600004,35.76249987700004],[139.75937927300004,35.76249987600005],[139.7593792880001,35.76458287500009],[139.7562542820001,35.76458287500009],[139.75625426600004,35.76249987700004]]]}},{"type":"Feature","id":26157,"properties":{"MESHCODE":"5339561313","揺全壊":14.22453},"geometry":{"type":"Polygon","coordinates":[[[139.78750431100002,35.760416864000035],[139.79062931800001,35.76041686100007],[139.7906293310001,35.76249986100004],[139.7875043250001,35.76249986300007],[139.78750431100002,35.760416864000035]]]}},{"type":"Feature","id":26209,"properties":{"MESHCODE":"5339561623","揺全壊":11.62264},"geometry":{"type":"Polygon","coordinates":[[[139.83125442000005,35.76041681800007],[139.83437942900002,35.76041681400005],[139.834379441,35.762499812000044],[139.83125443200004,35.76249981800004],[139.83125442000005,35.76041681800007]]]}},{"type":"Feature","id":26213,"properties":{"MESHCODE":"5339561633","揺全壊":13.12792},"geometry":{"type":"Polygon","coordinates":[[[139.82500442600008,35.76458282600004],[139.82812943500005,35.76458282100009],[139.82812944800003,35.76666682000007],[139.82500443900005,35.76666682500007],[139.82500442600008,35.76458282600004]]]}},{"type":"Feature","id":26274,"properties":{"MESHCODE":"5339562024","揺全壊":10.62283},"geometry":{"type":"Polygon","coordinates":[[[139.75937931700003,35.76874987200006],[139.76250432300003,35.76874987100007],[139.762504337,35.77083286900006],[139.75937933300008,35.77083287000005],[139.75937931700003,35.76874987200006]]]}},{"type":"Feature","id":26361,"properties":{"MESHCODE":"5339562543","揺全壊":13.49155},"geometry":{"type":"Polygon","coordinates":[[[139.81875445900005,35.77291683000004],[139.82187946800002,35.77291682500004],[139.82187948,35.774999824000076],[139.81875447000004,35.774999828000034],[139.81875445900005,35.77291683000004]]]}},{"type":"Feature","id":26373,"properties":{"MESHCODE":"5339562633","揺全壊":14.9402},"geometry":{"type":"Polygon","coordinates":[[[139.825004477,35.77291682100008],[139.82812948600008,35.77291681600008],[139.82812949900006,35.77499981500006],[139.8250044890001,35.77499981900007],[139.825004477,35.77291682100008]]]}},{"type":"Feature","id":26383,"properties":{"MESHCODE":"5339562721","揺全壊":12.92186},"geometry":{"type":"Polygon","coordinates":[[[139.843754493,35.766666797000084],[139.8468795020001,35.76666679300007],[139.84687951600006,35.76874979100006],[139.84375450700009,35.768749796000066],[139.843754493,35.766666797000084]]]}},{"type":"Feature","id":26385,"properties":{"MESHCODE":"5339562723","揺全壊":13.40577},"geometry":{"type":"Polygon","coordinates":[[[139.84375450700009,35.768749796000066],[139.84687951600006,35.76874979100006],[139.84687952800004,35.77083278900005],[139.84375451900007,35.77083279400006],[139.84375450700009,35.768749796000066]]]}},{"type":"Feature","id":26448,"properties":{"MESHCODE":"5339563122","揺全壊":10.08244},"geometry":{"type":"Polygon","coordinates":[[[139.77187938100008,35.77499986200007],[139.7750043860001,35.77499986100008],[139.77500440100005,35.777082860000064],[139.77187939600003,35.77708286100005],[139.77187938100008,35.77499986200007]]]}},{"type":"Feature","id":26475,"properties":{"MESHCODE":"5339563311","揺全壊":11.34678},"geometry":{"type":"Polygon","coordinates":[[[139.78750440800002,35.77499985600008],[139.79062941300003,35.774999853000054],[139.790629427,35.777082851000046],[139.7875044220001,35.77708285300008],[139.78750440800002,35.77499985600008]]]}},{"type":"Feature","id":26528,"properties":{"MESHCODE":"5339563622","揺全壊":12.23197},"geometry":{"type":"Polygon","coordinates":[[[139.8343795180001,35.77499980500005],[139.83750452700008,35.774999800000046],[139.83750454100004,35.77708279800004],[139.83437953100008,35.77708280200005],[139.8343795180001,35.77499980500005]]]}},{"type":"Feature","id":26538,"properties":{"MESHCODE":"5339563644","揺全壊":14.48708},"geometry":{"type":"Polygon","coordinates":[[[139.83437955700003,35.78124979900008],[139.837504567,35.781249794000075],[139.8375045800001,35.78333279200007],[139.834379571,35.78333279600008],[139.83437955700003,35.78124979900008]]]}},{"type":"Feature","id":26587,"properties":{"MESHCODE":"5339564011","揺全壊":13.20621},"geometry":{"type":"Polygon","coordinates":[[[139.75000440600002,35.783332864000045],[139.75312941000004,35.783332863000055],[139.753129424,35.78541686300008],[139.750004419,35.78541686300008],[139.75000440600002,35.783332864000045]]]}},{"type":"Feature","id":26673,"properties":{"MESHCODE":"5339564531","揺全壊":14.74636},"geometry":{"type":"Polygon","coordinates":[[[139.81250453200005,35.78749982700009],[139.81562954100002,35.78749982100004],[139.81562955800007,35.78958281800004],[139.812504548,35.789582823000046],[139.81250453200005,35.78749982700009]]]}},{"type":"Feature","id":26684,"properties":{"MESHCODE":"5339564614","揺全壊":10.73033},"geometry":{"type":"Polygon","coordinates":[[[139.82812956600003,35.78541680400008],[139.8312545760001,35.785416799000075],[139.83125459100006,35.78749979600008],[139.8281295810001,35.78749980100008],[139.82812956600003,35.78541680400008]]]}},{"type":"Feature","id":26688,"properties":{"MESHCODE":"5339564624","揺全壊":11.60302},"geometry":{"type":"Polygon","coordinates":[[[139.83437958500008,35.78541679300008],[139.83750459500004,35.78541678900007],[139.83750461,35.78749978600007],[139.83437960000003,35.78749979100007],[139.83437958500008,35.78541679300008]]]}},{"type":"Feature","id":26694,"properties":{"MESHCODE":"5339564642","揺全壊":10.26697},"geometry":{"type":"Polygon","coordinates":[[[139.83437960000003,35.78749979100007],[139.83750461,35.78749978600007],[139.83750462400008,35.78958278300007],[139.8343796150001,35.789582788000075],[139.83437960000003,35.78749979100007]]]}},{"type":"Feature","id":26744,"properties":{"MESHCODE":"5339565022","揺全壊":10.93951},"geometry":{"type":"Polygon","coordinates":[[[139.75937947600005,35.79166685700005],[139.76250448100006,35.79166685600006],[139.76250449500003,35.793749854000055],[139.75937949000001,35.793749856000034],[139.75937947600005,35.79166685700005]]]}},{"type":"Feature","id":26790,"properties":{"MESHCODE":"5339565331","揺全壊":11.5641},"geometry":{"type":"Polygon","coordinates":[[[139.7875045510001,35.795832836000045],[139.790629556,35.79583283300008],[139.79062957200006,35.797916831000066],[139.78750456600005,35.797916833000045],[139.7875045510001,35.795832836000045]]]}},{"type":"Feature","id":26808,"properties":{"MESHCODE":"5339565433","揺全壊":12.7165},"geometry":{"type":"Polygon","coordinates":[[[139.8000045880001,35.79791682200005],[139.8031295940001,35.79791681900008],[139.80312961000004,35.79999981600008],[139.80000460300005,35.79999981900005],[139.8000045880001,35.79791682200005]]]}},{"type":"Feature","id":26814,"properties":{"MESHCODE":"5339565511","揺全壊":11.57948},"geometry":{"type":"Polygon","coordinates":[[[139.81250456400005,35.791666819000056],[139.81562957300002,35.79166681500004],[139.81562958900008,35.793749811000055],[139.81250458,35.79374981600006],[139.81250456400005,35.791666819000056]]]}},{"type":"Feature","id":26838,"properties":{"MESHCODE":"5339565642","揺全壊":11.1919},"geometry":{"type":"Polygon","coordinates":[[[139.83437966000008,35.79583277900008],[139.83750466900005,35.795832773000086],[139.837504685,35.797916770000086],[139.83437967600003,35.79791677500009],[139.83437966000008,35.79583277900008]]]}},{"type":"Feature","id":26909,"properties":{"MESHCODE":"5339566223","揺全壊":14.51733},"geometry":{"type":"Polygon","coordinates":[[[139.78125458400007,35.80208283400009],[139.78437959000007,35.802082831000064],[139.78437960400004,35.804166828000064],[139.78125459900002,35.80416683100009],[139.78125458400007,35.80208283400009]]]}},{"type":"Feature","id":26942,"properties":{"MESHCODE":"5339566432","揺全壊":12.53287},"geometry":{"type":"Polygon","coordinates":[[[139.80312964100006,35.80416680900004],[139.80625464800005,35.80416680600007],[139.806254664,35.80624980200008],[139.803129656,35.80624980600004],[139.80312964100006,35.80416680900004]]]}},{"type":"Feature","id":26980,"properties":{"MESHCODE":"5339567122","揺全壊":12.02501},"geometry":{"type":"Polygon","coordinates":[[[139.77187961100003,35.808332836000034],[139.77500461700004,35.808332833000065],[139.775004631,35.810416831000055],[139.771879625,35.81041683400008],[139.77187961100003,35.808332836000034]]]}},{"type":"Feature","id":26988,"properties":{"MESHCODE":"5339567142","揺全壊":13.58058},"geometry":{"type":"Polygon","coordinates":[[[139.77187963900008,35.81249983200007],[139.7750046440001,35.812499829000046],[139.77500465800006,35.81458282700004],[139.77187965200005,35.81458283100005],[139.77187963900008,35.81249983200007]]]}},{"type":"Feature","id":26991,"properties":{"MESHCODE":"5339567211","揺全壊":14.9945},"geometry":{"type":"Polygon","coordinates":[[[139.77500461700004,35.808332833000065],[139.77812962200005,35.80833283000004],[139.778129637,35.81041682700004],[139.775004631,35.810416831000055],[139.77500461700004,35.808332833000065]]]}},{"type":"Feature","id":27055,"properties":{"MESHCODE":"5339573011","揺全壊":12.9633},"geometry":{"type":"Polygon","coordinates":[[[139.875004623,35.77499974400007],[139.878129628,35.774999741000045],[139.8781296420001,35.777082739000036],[139.87500463700007,35.77708274300005],[139.875004623,35.77499974400007]]]}},{"type":"Feature","id":27057,"properties":{"MESHCODE":"5339573013","揺全壊":10.33553},"geometry":{"type":"Polygon","coordinates":[[[139.87500463700007,35.77708274300005],[139.8781296420001,35.777082739000036],[139.87812965800003,35.779166736000036],[139.87500465100004,35.77916674000005],[139.87500463700007,35.77708274300005]]]}}]}
\ No newline at end of file
diff --git a/app/src/layers/data/particles/toshin-destroyed_particles_4.json b/app/src/layers/data/particles/toshin-destroyed_particles_4.json
new file mode 100644
index 0000000..2f5fc43
--- /dev/null
+++ b/app/src/layers/data/particles/toshin-destroyed_particles_4.json
@@ -0,0 +1 @@
+{"type":"FeatureCollection","name":"建物被害分布_都心南部","features":[{"type":"Feature","id":725,"properties":{"MESHCODE":"5339231711","揺全壊":0.03044},"geometry":{"type":"Polygon","coordinates":[[[139.4625020200001,35.508333236000055],[139.46562702100005,35.50833324100006],[139.465627036,35.51041723600008],[139.46250203500006,35.510417231000076],[139.4625020200001,35.508333236000055]]]}},{"type":"Feature","id":749,"properties":{"MESHCODE":"5339232614","揺全壊":0.0371},"geometry":{"type":"Polygon","coordinates":[[[139.45312708100005,35.51875020300008],[139.45625208600006,35.51875020500006],[139.45625209900004,35.52083320100007],[139.45312709400002,35.52083319900004],[139.45312708100005,35.51875020300008]]]}},{"type":"Feature","id":837,"properties":{"MESHCODE":"5339234522","揺全壊":0.03935},"geometry":{"type":"Polygon","coordinates":[[[139.44687715300006,35.53333317800008],[139.45000215800007,35.533333181000046],[139.45000216800008,35.53541718000008],[139.44687716400006,35.535417178000046],[139.44687715300006,35.53333317800008]]]}},{"type":"Feature","id":932,"properties":{"MESHCODE":"5339235722","揺全壊":0.03914},"geometry":{"type":"Polygon","coordinates":[[[139.47187723000002,35.54166720400008],[139.47500223300005,35.541667208000035],[139.47500224400005,35.54375020800006],[139.47187724100002,35.54375020400005],[139.47187723000002,35.54166720400008]]]}},{"type":"Feature","id":998,"properties":{"MESHCODE":"5339236634","揺全壊":0.03626},"geometry":{"type":"Polygon","coordinates":[[[139.45312727600003,35.55625018000006],[139.45625228000006,35.55625018400008],[139.45625229000007,35.55833318500004],[139.45312728500005,35.55833318100008],[139.45312727600003,35.55625018000006]]]}},{"type":"Feature","id":1009,"properties":{"MESHCODE":"5339236723","揺全壊":0.03643},"geometry":{"type":"Polygon","coordinates":[[[139.468752279,35.55208319900004],[139.47187728400002,35.55208320400004],[139.47187729400002,35.55416720300008],[139.468752289,35.55416719900006],[139.468752279,35.55208319900004]]]}},{"type":"Feature","id":1073,"properties":{"MESHCODE":"5339237543","揺全壊":0.04338},"geometry":{"type":"Polygon","coordinates":[[[139.44375229900004,35.56458316800007],[139.44687730400005,35.564583173000074],[139.44687731400006,35.56666717300004],[139.44375230900005,35.56666716800004],[139.44375229900004,35.56458316800007]]]}},{"type":"Feature","id":1075,"properties":{"MESHCODE":"5339237611","揺全壊":0.04045},"geometry":{"type":"Polygon","coordinates":[[[139.45000228100002,35.558333178000055],[139.45312728500005,35.55833318100008],[139.45312729500006,35.56041718100005],[139.45000229100003,35.56041717700003],[139.45000228100002,35.558333178000055]]]}},{"type":"Feature","id":1145,"properties":{"MESHCODE":"5339238424","揺全壊":0.03083},"geometry":{"type":"Polygon","coordinates":[[[139.43437730100004,35.56875015300005],[139.43750230600006,35.56875015900005],[139.43750231500007,35.57083316000006],[139.43437731000006,35.57083315400007],[139.43437730100004,35.56875015300005]]]}},{"type":"Feature","id":1151,"properties":{"MESHCODE":"5339238442","揺全壊":0.04006},"geometry":{"type":"Polygon","coordinates":[[[139.43437731000006,35.57083315400007],[139.43750231500007,35.57083316000006],[139.4375023240001,35.57291716100008],[139.43437731900008,35.57291715400004],[139.43437731000006,35.57083315400007]]]}},{"type":"Feature","id":1153,"properties":{"MESHCODE":"5339238444","揺全壊":0.03208},"geometry":{"type":"Polygon","coordinates":[[[139.43437731900008,35.57291715400004],[139.4375023240001,35.57291716100008],[139.437502333,35.57500016100005],[139.4343773280001,35.575000155000055],[139.43437731900008,35.57291715400004]]]}},{"type":"Feature","id":1154,"properties":{"MESHCODE":"5339238511","揺全壊":0.04798},"geometry":{"type":"Polygon","coordinates":[[[139.43750229700004,35.56666715800009],[139.44062730200005,35.566667163000034],[139.44062731200006,35.56875016400005],[139.43750230600006,35.56875015900005],[139.43750229700004,35.56666715800009]]]}},{"type":"Feature","id":1157,"properties":{"MESHCODE":"5339238514","揺全壊":0.04374},"geometry":{"type":"Polygon","coordinates":[[[139.44062731200006,35.56875016400005],[139.44375231800007,35.568750169000054],[139.44375232700008,35.57083317000007],[139.44062732100008,35.57083316500007],[139.44062731200006,35.56875016400005]]]}},{"type":"Feature","id":1162,"properties":{"MESHCODE":"5339238531","揺全壊":0.03413},"geometry":{"type":"Polygon","coordinates":[[[139.43750231500007,35.57083316000006],[139.44062732100008,35.57083316500007],[139.4406273300001,35.57291716600008],[139.4375023240001,35.57291716100008],[139.43750231500007,35.57083316000006]]]}},{"type":"Feature","id":1163,"properties":{"MESHCODE":"5339238532","揺全壊":0.03427},"geometry":{"type":"Polygon","coordinates":[[[139.44062732100008,35.57083316500007],[139.44375232700008,35.57083317000007],[139.4437523360001,35.572917171000086],[139.4406273300001,35.57291716600008],[139.44062732100008,35.57083316500007]]]}},{"type":"Feature","id":1169,"properties":{"MESHCODE":"5339238544","揺全壊":0.03005},"geometry":{"type":"Polygon","coordinates":[[[139.4468773430001,35.57291717700008],[139.4500023490001,35.57291718200008],[139.450002359,35.57500018300004],[139.446877352,35.57500017800004],[139.4468773430001,35.57291717700008]]]}},{"type":"Feature","id":1189,"properties":{"MESHCODE":"5339238714","揺全壊":0.03704},"geometry":{"type":"Polygon","coordinates":[[[139.46562735700002,35.56875019800009],[139.46875236300002,35.56875020200005],[139.46875237400002,35.570833202000074],[139.465627368,35.57083319900005],[139.46562735700002,35.56875019800009]]]}},{"type":"Feature","id":1203,"properties":{"MESHCODE":"5339238841","揺全壊":0.03808},"geometry":{"type":"Polygon","coordinates":[[[139.48125239500007,35.57083321200008],[139.4843773990001,35.57083321400006],[139.48437741100008,35.572917215000075],[139.48125240600007,35.57291721300004],[139.48125239500007,35.57083321200008]]]}},{"type":"Feature","id":1207,"properties":{"MESHCODE":"5339238911","揺全壊":0.03819},"geometry":{"type":"Polygon","coordinates":[[[139.48750238000002,35.56666721700009],[139.49062738600003,35.56666721900007],[139.49062739700003,35.56875021900004],[139.487502392,35.56875021700006],[139.48750238000002,35.56666721700009]]]}},{"type":"Feature","id":1214,"properties":{"MESHCODE":"5339238924","揺全壊":0.03556},"geometry":{"type":"Polygon","coordinates":[[[139.49687740700006,35.56875022300005],[139.50000241100008,35.56875022400004],[139.50000242400006,35.57083322300008],[139.49687741900004,35.57083322200009],[139.49687740700006,35.56875022300005]]]}},{"type":"Feature","id":1239,"properties":{"MESHCODE":"5339239244","揺全壊":0.04897},"geometry":{"type":"Polygon","coordinates":[[[139.4093773090001,35.58125009500009],[139.412502314,35.58125010300006],[139.41250232200002,35.583333103000086],[139.409377318,35.58333309500006],[139.4093773090001,35.58125009500009]]]}},{"type":"Feature","id":1265,"properties":{"MESHCODE":"5339239432","揺全壊":0.04617},"geometry":{"type":"Polygon","coordinates":[[[139.428127334,35.57916714300006],[139.43125234000001,35.579167150000046],[139.43125234900003,35.58125015100006],[139.42812734200004,35.581250143000034],[139.428127334,35.57916714300006]]]}},{"type":"Feature","id":1283,"properties":{"MESHCODE":"5339239534","揺全壊":0.03031},"geometry":{"type":"Polygon","coordinates":[[[139.44062736900003,35.58125017100008],[139.44375237500003,35.58125017600008],[139.44375238500004,35.58333317800009],[139.44062737900003,35.58333317200004],[139.44062736900003,35.58125017100008]]]}},{"type":"Feature","id":1326,"properties":{"MESHCODE":"5339239843","揺全壊":0.04466},"geometry":{"type":"Polygon","coordinates":[[[139.48125245000006,35.58125021300009],[139.48437745600006,35.58125021500007],[139.48437746700006,35.58333321500004],[139.48125246100005,35.58333321400005],[139.48125245000006,35.58125021300009]]]}},{"type":"Feature","id":1608,"properties":{"MESHCODE":"5339258412","揺全壊":0.04822},"geometry":{"type":"Polygon","coordinates":[[[139.678127808,35.56666724300004],[139.68125281100004,35.56666723600006],[139.68125282000005,35.56875023400005],[139.67812781700002,35.56875024100009],[139.678127808,35.56666724300004]]]}},{"type":"Feature","id":1802,"properties":{"MESHCODE":"5339259934","揺全壊":0.0334},"geometry":{"type":"Polygon","coordinates":[[[139.7406279820001,35.58125008300004],[139.743752987,35.58125007500007],[139.743753,35.58333307300006],[139.74062799500007,35.583333081000035],[139.7406279820001,35.58125008300004]]]}},{"type":"Feature","id":1912,"properties":{"MESHCODE":"5339265042","揺全壊":0.03861},"geometry":{"type":"Polygon","coordinates":[[[139.7593777740001,35.54583306400008],[139.76250277500003,35.54583305600005],[139.76250279200008,35.54791705400004],[139.75937779100002,35.54791706200007],[139.7593777740001,35.54583306400008]]]}},{"type":"Feature","id":1955,"properties":{"MESHCODE":"5339265331","揺全壊":0.04018},"geometry":{"type":"Polygon","coordinates":[[[139.78750278200005,35.54583299400008],[139.7906277830001,35.54583298600005],[139.79062780000004,35.547916985000086],[139.7875027990001,35.54791699300006],[139.78750278200005,35.54583299400008]]]}},{"type":"Feature","id":1983,"properties":{"MESHCODE":"5339266031","揺全壊":0.04222},"geometry":{"type":"Polygon","coordinates":[[[139.75000283200006,35.55416708100006],[139.753127834,35.55416707300009],[139.7531278470001,35.55625007200007],[139.75000284500004,35.55625007900005],[139.75000283200006,35.55416708100006]]]}},{"type":"Feature","id":2023,"properties":{"MESHCODE":"5339266311","揺全壊":0.03642},"geometry":{"type":"Polygon","coordinates":[[[139.78750281700002,35.54999999200004],[139.79062781800008,35.54999998400007],[139.790627835,35.55208298300005],[139.78750283400007,35.55208299000009],[139.78750281700002,35.54999999200004]]]}},{"type":"Feature","id":2072,"properties":{"MESHCODE":"5339267221","揺全壊":0.03643},"geometry":{"type":"Polygon","coordinates":[[[139.78125288,35.55833300100005],[139.78437788100007,35.55833299400007],[139.784377897,35.56041699300005],[139.78125289500008,35.560417],[139.78125288,35.55833300100005]]]}},{"type":"Feature","id":2074,"properties":{"MESHCODE":"5339267223","揺全壊":0.04018},"geometry":{"type":"Polygon","coordinates":[[[139.78125289500008,35.560417],[139.784377897,35.56041699300005],[139.78437791300007,35.56249999100004],[139.78125291000003,35.56249999900007],[139.78125289500008,35.560417]]]}},{"type":"Feature","id":2136,"properties":{"MESHCODE":"5339269014","揺全壊":0.04368},"geometry":{"type":"Polygon","coordinates":[[[139.75312797800007,35.57708305500006],[139.75625298400007,35.57708304700009],[139.75625299600006,35.579167046000066],[139.75312799200003,35.57916705300005],[139.75312797800007,35.57708305500006]]]}},{"type":"Feature","id":2141,"properties":{"MESHCODE":"5339269032","揺全壊":0.03873},"geometry":{"type":"Polygon","coordinates":[[[139.75312799200003,35.57916705300005],[139.75625299600006,35.579167046000066],[139.75625301000002,35.58125004500005],[139.75312800400002,35.58125005200009],[139.75312799200003,35.57916705300005]]]}},{"type":"Feature","id":2142,"properties":{"MESHCODE":"5339269033","揺全壊":0.04529},"geometry":{"type":"Polygon","coordinates":[[[139.750002999,35.58125006000006],[139.75312800400002,35.58125005200009],[139.753128017,35.58333305100007],[139.7500030120001,35.58333305800005],[139.750002999,35.58125006000006]]]}},{"type":"Feature","id":2145,"properties":{"MESHCODE":"5339269042","揺全壊":0.03497},"geometry":{"type":"Polygon","coordinates":[[[139.75937800100007,35.57916703800004],[139.76250300700008,35.579167031000054],[139.76250302000005,35.581250029000046],[139.75937801500004,35.581250037000075],[139.75937800100007,35.57916703800004]]]}},{"type":"Feature","id":2146,"properties":{"MESHCODE":"5339269043","揺全壊":0.03497},"geometry":{"type":"Polygon","coordinates":[[[139.75625301000002,35.58125004500005],[139.75937801500004,35.581250037000075],[139.75937802700003,35.58333303500007],[139.756253022,35.58333304300004],[139.75625301000002,35.58125004500005]]]}},{"type":"Feature","id":2147,"properties":{"MESHCODE":"5339269044","揺全壊":0.0363},"geometry":{"type":"Polygon","coordinates":[[[139.75937801500004,35.581250037000075],[139.76250302000005,35.581250029000046],[139.76250303400002,35.583333028000084],[139.75937802700003,35.58333303500007],[139.75937801500004,35.581250037000075]]]}},{"type":"Feature","id":2150,"properties":{"MESHCODE":"5339269113","揺全壊":0.04896},"geometry":{"type":"Polygon","coordinates":[[[139.7625029940001,35.577083032000075],[139.765627998,35.577083024000046],[139.7656280110001,35.57916702300008],[139.76250300700008,35.579167031000054],[139.7625029940001,35.577083032000075]]]}},{"type":"Feature","id":2655,"properties":{"MESHCODE":"5339322442","揺全壊":0.03227},"geometry":{"type":"Polygon","coordinates":[[[139.30937747500002,35.604167035000046],[139.31250246800005,35.60416703000004],[139.3125024750001,35.60625002900008],[139.30937748200006,35.60625003300004],[139.30937747500002,35.604167035000046]]]}},{"type":"Feature","id":2661,"properties":{"MESHCODE":"5339322533","揺全壊":0.03163},"geometry":{"type":"Polygon","coordinates":[[[139.3125024750001,35.60625002900008],[139.315627467,35.606250025000065],[139.31562747400005,35.60833302300006],[139.31250248100002,35.60833302800006],[139.3125024750001,35.60625002900008]]]}},{"type":"Feature","id":2662,"properties":{"MESHCODE":"5339322534","揺全壊":0.04546},"geometry":{"type":"Polygon","coordinates":[[[139.315627467,35.606250025000065],[139.31875246000004,35.60625002100005],[139.3187524660001,35.60833302000009],[139.31562747400005,35.60833302300006],[139.315627467,35.606250025000065]]]}},{"type":"Feature","id":2710,"properties":{"MESHCODE":"5339322913","揺全壊":0.03848},"geometry":{"type":"Polygon","coordinates":[[[139.36250234700003,35.60208297500009],[139.36562734400002,35.602082977000066],[139.36562734900008,35.604166974000066],[139.36250235300008,35.60416697200009],[139.36250234700003,35.60208297500009]]]}},{"type":"Feature","id":2824,"properties":{"MESHCODE":"5339323633","揺全壊":0.0453},"geometry":{"type":"Polygon","coordinates":[[[139.32500247200005,35.61458300700008],[139.3281274640001,35.614583003000064],[139.32812747100002,35.61666700200004],[139.3250024780001,35.61666700600006],[139.32500247200005,35.61458300700008]]]}},{"type":"Feature","id":2829,"properties":{"MESHCODE":"5339323644","揺全壊":0.03883},"geometry":{"type":"Polygon","coordinates":[[[139.33437745100002,35.61458299600008],[139.33750244300006,35.61458299200007],[139.3375024500001,35.616666992000034],[139.33437745700007,35.61666699500006],[139.33437745100002,35.61458299600008]]]}},{"type":"Feature","id":2836,"properties":{"MESHCODE":"5339323723","揺全壊":0.04314},"geometry":{"type":"Polygon","coordinates":[[[139.34375241400005,35.610416985000086],[139.3468774060001,35.61041698100007],[139.34687741300002,35.61249998000005],[139.3437524210001,35.612499985000056],[139.34375241400005,35.610416985000086]]]}},{"type":"Feature","id":2837,"properties":{"MESHCODE":"5339323724","揺全壊":0.0315},"geometry":{"type":"Polygon","coordinates":[[[139.3468774060001,35.61041698100007],[139.350002399,35.61041697700006],[139.35000240500005,35.612499977000084],[139.34687741300002,35.61249998000005],[139.3468774060001,35.61041698100007]]]}},{"type":"Feature","id":2856,"properties":{"MESHCODE":"5339323833","揺全壊":0.03182},"geometry":{"type":"Polygon","coordinates":[[[139.3500024120001,35.614582976000065],[139.353127405,35.61458297200005],[139.35312741200005,35.616666971000086],[139.35000242,35.616666975000044],[139.3500024120001,35.614582976000065]]]}},{"type":"Feature","id":2866,"properties":{"MESHCODE":"5339323921","揺全壊":0.03968},"geometry":{"type":"Polygon","coordinates":[[[139.36875235500008,35.608332966000035],[139.37187735200007,35.608332966000035],[139.37187735500004,35.610416962000045],[139.36875236100002,35.610416963000034],[139.36875235500008,35.608332966000035]]]}},{"type":"Feature","id":2945,"properties":{"MESHCODE":"5339324414","揺全壊":0.04809},"geometry":{"type":"Polygon","coordinates":[[[139.30312753300007,35.61875003300008],[139.3062525260001,35.61875003000006],[139.30625253300002,35.62083302800005],[139.303127539,35.62083303300005],[139.30312753300007,35.61875003300008]]]}},{"type":"Feature","id":2960,"properties":{"MESHCODE":"5339324513","揺全壊":0.03382},"geometry":{"type":"Polygon","coordinates":[[[139.31250251200004,35.618750022000086],[139.31562750600006,35.61875001700008],[139.3156275120001,35.62083301700005],[139.31250251900008,35.62083302100007],[139.31250251200004,35.618750022000086]]]}},{"type":"Feature","id":2963,"properties":{"MESHCODE":"5339324522","揺全壊":0.04457},"geometry":{"type":"Polygon","coordinates":[[[139.32187748500007,35.61666701000007],[139.3250024780001,35.61666700600006],[139.32500248500003,35.618750006000084],[139.321877491,35.61875000900005],[139.32187748500007,35.61666701000007]]]}},{"type":"Feature","id":2974,"properties":{"MESHCODE":"5339324611","揺全壊":0.0339},"geometry":{"type":"Polygon","coordinates":[[[139.3250024780001,35.61666700600006],[139.32812747100002,35.61666700200004],[139.32812747800006,35.61875000200007],[139.32500248500003,35.618750006000084],[139.3250024780001,35.61666700600006]]]}},{"type":"Feature","id":2977,"properties":{"MESHCODE":"5339324614","揺全壊":0.04265},"geometry":{"type":"Polygon","coordinates":[[[139.32812747800006,35.61875000200007],[139.33125247100008,35.618749998000055],[139.331252479,35.62083299800008],[139.3281274850001,35.62083300200004],[139.32812747800006,35.61875000200007]]]}},{"type":"Feature","id":3007,"properties":{"MESHCODE":"5339324812","揺全壊":0.04492},"geometry":{"type":"Polygon","coordinates":[[[139.35312741200005,35.616666971000086],[139.3562524040001,35.61666696700007],[139.356252413,35.61874996800009],[139.35312742000008,35.61874997100006],[139.35312741200005,35.616666971000086]]]}},{"type":"Feature","id":3032,"properties":{"MESHCODE":"5339324933","揺全壊":0.04727},"geometry":{"type":"Polygon","coordinates":[[[139.36250241800008,35.62291696200003],[139.36562741400007,35.62291696200003],[139.36562742500007,35.624999965000086],[139.3625024270001,35.62499996400004],[139.36250241800008,35.62291696200003]]]}},{"type":"Feature","id":3075,"properties":{"MESHCODE":"5339325222","揺全壊":0.03133},"geometry":{"type":"Polygon","coordinates":[[[139.28437758200005,35.62500004900005],[139.28750257800004,35.62500004700007],[139.2875025830001,35.62708304500006],[139.2843775880001,35.62708304700004],[139.28437758200005,35.62500004900005]]]}},{"type":"Feature","id":3114,"properties":{"MESHCODE":"5339325441","揺全壊":0.04431},"geometry":{"type":"Polygon","coordinates":[[[139.3062525590001,35.62916702500007],[139.3093775530001,35.62916702100006],[139.30937756000003,35.631250021000085],[139.30625256500002,35.63125002500004],[139.3062525590001,35.62916702500007]]]}},{"type":"Feature","id":3141,"properties":{"MESHCODE":"5339325624","揺全壊":0.03685},"geometry":{"type":"Polygon","coordinates":[[[139.334377495,35.627082994000034],[139.33750248800004,35.62708298900009],[139.33750249500008,35.629166990000044],[139.33437750200005,35.62916699400006],[139.334377495,35.627082994000034]]]}},{"type":"Feature","id":3149,"properties":{"MESHCODE":"5339325644","揺全壊":0.04606},"geometry":{"type":"Polygon","coordinates":[[[139.33437751000008,35.631249995000076],[139.3375025040001,35.63124999100006],[139.33750251100003,35.63333299100009],[139.334377517,35.633332995000046],[139.33437751000008,35.631249995000076]]]}},{"type":"Feature","id":3182,"properties":{"MESHCODE":"5339325911","揺全壊":0.03717},"geometry":{"type":"Polygon","coordinates":[[[139.3625024270001,35.62499996400004],[139.36562742500007,35.624999965000086],[139.36562743500008,35.62708296800008],[139.3625024380001,35.627082967000035],[139.3625024270001,35.62499996400004]]]}},{"type":"Feature","id":3186,"properties":{"MESHCODE":"5339325921","揺全壊":0.03064},"geometry":{"type":"Polygon","coordinates":[[[139.36875242100007,35.624999965000086],[139.37187741700006,35.624999966000075],[139.37187742900005,35.62708297000006],[139.36875243200006,35.62708296900007],[139.36875242100007,35.624999965000086]]]}},{"type":"Feature","id":3242,"properties":{"MESHCODE":"5339326241","揺全壊":0.03061},"geometry":{"type":"Polygon","coordinates":[[[139.28125261900004,35.63750004000008],[139.28437761500004,35.63750003800004],[139.28437762200008,35.63958303700008],[139.2812526240001,35.63958303900006],[139.28125261900004,35.63750004000008]]]}},{"type":"Feature","id":3304,"properties":{"MESHCODE":"5339326633","揺全壊":0.04812},"geometry":{"type":"Polygon","coordinates":[[[139.32500255900004,35.639583006000066],[139.32812755400005,35.63958300300004],[139.32812756200008,35.64166700200008],[139.32500256700007,35.641667005000045],[139.32500255900004,35.639583006000066]]]}},{"type":"Feature","id":3324,"properties":{"MESHCODE":"5339326743","揺全壊":0.04664},"geometry":{"type":"Polygon","coordinates":[[[139.34375252900008,35.639582990000065],[139.3468775230001,35.639582988000086],[139.346877533,35.64166699000009],[139.3437525380001,35.64166699200007],[139.34375252900008,35.639582990000065]]]}},{"type":"Feature","id":3340,"properties":{"MESHCODE":"5339326843","揺全壊":0.04736},"geometry":{"type":"Polygon","coordinates":[[[139.3562525100001,35.63958298600005],[139.3593775070001,35.63958298600005],[139.3593775170001,35.64166698900004],[139.3562525210001,35.64166698900004],[139.3562525100001,35.63958298600005]]]}},{"type":"Feature","id":3477,"properties":{"MESHCODE":"5339327724","揺全壊":0.03579},"geometry":{"type":"Polygon","coordinates":[[[139.34687754200002,35.64374999200004],[139.35000253700002,35.64374999100005],[139.35000254700003,35.645832993000056],[139.34687755200002,35.645832994000045],[139.34687754200002,35.64374999200004]]]}},{"type":"Feature","id":3603,"properties":{"MESHCODE":"5339328522","揺全壊":0.03956},"geometry":{"type":"Polygon","coordinates":[[[139.32187760500005,35.65000000800006],[139.32500260000006,35.650000006000084],[139.3250026080001,35.652083007000044],[139.32187761300008,35.652083008000034],[139.32187760500005,35.65000000800006]]]}},{"type":"Feature","id":3660,"properties":{"MESHCODE":"5339328843","揺全壊":0.04665},"geometry":{"type":"Polygon","coordinates":[[[139.35625259200003,35.65625000400007],[139.359377591,35.65625000500006],[139.359377602,35.65833300700007],[139.35625260300003,35.65833300500009],[139.35625259200003,35.65625000400007]]]}},{"type":"Feature","id":3666,"properties":{"MESHCODE":"5339328921","揺全壊":0.03345},"geometry":{"type":"Polygon","coordinates":[[[139.368752556,35.650000006000084],[139.37187755600007,35.65000000900005],[139.37187756600008,35.65208301100006],[139.368752567,35.652083008000034],[139.368752556,35.650000006000084]]]}},{"type":"Feature","id":3785,"properties":{"MESHCODE":"5339329634","揺全壊":0.04464},"geometry":{"type":"Polygon","coordinates":[[[139.328127655,35.66458301000006],[139.331252651,35.66458300900007],[139.33125266000002,35.66666701000008],[139.32812766300003,35.66666701000008],[139.328127655,35.66458301000006]]]}},{"type":"Feature","id":3840,"properties":{"MESHCODE":"5339330041","揺全壊":0.04426},"geometry":{"type":"Polygon","coordinates":[[[139.38125230100002,35.58750002100004],[139.38437730200008,35.58750002700009],[139.38437730700002,35.58958302500008],[139.38125230700007,35.58958301800004],[139.38125230100002,35.58750002100004]]]}},{"type":"Feature","id":3861,"properties":{"MESHCODE":"5339330213","揺全壊":0.0428},"geometry":{"type":"Polygon","coordinates":[[[139.4000023100001,35.58541706800008],[139.403127315,35.585417077000045],[139.40312732200005,35.58750007500004],[139.40000231700003,35.587500067000065],[139.4000023100001,35.58541706800008]]]}},{"type":"Feature","id":3865,"properties":{"MESHCODE":"5339330223","揺全壊":0.0333},"geometry":{"type":"Polygon","coordinates":[[[139.40625231900003,35.585417085000074],[139.40937732500004,35.585417094000036],[139.40937733200008,35.58750009400006],[139.40625232700006,35.587500085000045],[139.40625231900003,35.585417085000074]]]}},{"type":"Feature","id":3868,"properties":{"MESHCODE":"5339330232","揺全壊":0.04405},"geometry":{"type":"Polygon","coordinates":[[[139.40312732200005,35.58750007500004],[139.40625232700006,35.587500085000045],[139.4062523350001,35.58958308400008],[139.40312732900009,35.589583074000075],[139.40312732200005,35.58750007500004]]]}},{"type":"Feature","id":3873,"properties":{"MESHCODE":"5339330243","揺全壊":0.03643},"geometry":{"type":"Polygon","coordinates":[[[139.4062523350001,35.58958308400008],[139.4093773400001,35.589583093000044],[139.40937734700003,35.59166709300007],[139.40625234200002,35.59166708300006],[139.4062523350001,35.58958308400008]]]}},{"type":"Feature","id":3880,"properties":{"MESHCODE":"5339330322","揺全壊":0.03243},"geometry":{"type":"Polygon","coordinates":[[[139.42187733900005,35.58333312800005],[139.42500234400006,35.58333313600008],[139.42500235300008,35.585417137000036],[139.42187734800007,35.585417128000074],[139.42187733900005,35.58333312800005]]]}},{"type":"Feature","id":3883,"properties":{"MESHCODE":"5339330331","揺全壊":0.03765},"geometry":{"type":"Polygon","coordinates":[[[139.4125023370001,35.587500102000035],[139.4156273430001,35.587500111000054],[139.415627352,35.58958311200007],[139.412502345,35.58958310300005],[139.4125023370001,35.587500102000035]]]}},{"type":"Feature","id":3889,"properties":{"MESHCODE":"5339330343","揺全壊":0.04359},"geometry":{"type":"Polygon","coordinates":[[[139.418752359,35.58958312000004],[139.421877365,35.58958312900006],[139.42187737400002,35.591667129000086],[139.41875236700002,35.59166712100006],[139.418752359,35.58958312000004]]]}},{"type":"Feature","id":3901,"properties":{"MESHCODE":"5339330433","揺全壊":0.03873},"geometry":{"type":"Polygon","coordinates":[[[139.425002371,35.58958313800008],[139.428127378,35.58958314700004],[139.42812738700002,35.59166714700007],[139.425002381,35.59166713900004],[139.425002371,35.58958313800008]]]}},{"type":"Feature","id":3911,"properties":{"MESHCODE":"5339330521","揺全壊":0.03287},"geometry":{"type":"Polygon","coordinates":[[[139.44375238500004,35.58333317800009],[139.44687739100004,35.58333318400008],[139.44687740000006,35.58541718500004],[139.44375239400006,35.585417179000046],[139.44375238500004,35.58333317800009]]]}},{"type":"Feature","id":3916,"properties":{"MESHCODE":"5339330532","揺全壊":0.0482},"geometry":{"type":"Polygon","coordinates":[[[139.44062739700007,35.58750017600005],[139.44375240400007,35.58750018100005],[139.44375241300008,35.58958318300006],[139.4406274060001,35.589583177000065],[139.44062739700007,35.58750017600005]]]}},{"type":"Feature","id":3918,"properties":{"MESHCODE":"5339330534","揺全壊":0.03399},"geometry":{"type":"Polygon","coordinates":[[[139.4406274060001,35.589583177000065],[139.44375241300008,35.58958318300006],[139.4437524220001,35.59166718500006],[139.4406274160001,35.59166717800008],[139.4406274060001,35.589583177000065]]]}},{"type":"Feature","id":3919,"properties":{"MESHCODE":"5339330541","揺全壊":0.03075},"geometry":{"type":"Polygon","coordinates":[[[139.44375240400007,35.58750018100005],[139.44687741000007,35.587500187000046],[139.44687742000008,35.58958318900005],[139.44375241300008,35.58958318300006],[139.44375240400007,35.58750018100005]]]}},{"type":"Feature","id":3987,"properties":{"MESHCODE":"5339331024","揺全壊":0.04209},"geometry":{"type":"Polygon","coordinates":[[[139.384377319,35.59375001800004],[139.38750232000007,35.59375002400009],[139.387502326,35.59583302100009],[139.38437732500006,35.59583301400005],[139.384377319,35.59375001800004]]]}},{"type":"Feature","id":3994,"properties":{"MESHCODE":"5339331043","揺全壊":0.04282},"geometry":{"type":"Polygon","coordinates":[[[139.38125232900006,35.59791700400007],[139.384377331,35.59791701000006],[139.38437733700005,35.60000000700006],[139.381252334,35.6],[139.38125232900006,35.59791700400007]]]}},{"type":"Feature","id":4011,"properties":{"MESHCODE":"5339331144","揺全壊":0.04021},"geometry":{"type":"Polygon","coordinates":[[[139.3968773470001,35.597917048000056],[139.400002351,35.597917058000064],[139.40000235800005,35.600000055000066],[139.39687735400003,35.60000004500006],[139.3968773470001,35.597917048000056]]]}},{"type":"Feature","id":4021,"properties":{"MESHCODE":"5339331232","揺全壊":0.04537},"geometry":{"type":"Polygon","coordinates":[[[139.40312735100008,35.59583307000008],[139.40625235700008,35.59583308100008],[139.406252364,35.59791708000006],[139.403127358,35.59791706900006],[139.40312735100008,35.59583307000008]]]}},{"type":"Feature","id":4022,"properties":{"MESHCODE":"5339331233","揺全壊":0.04965},"geometry":{"type":"Polygon","coordinates":[[[139.400002351,35.597917058000064],[139.403127358,35.59791706900006],[139.40312736500005,35.60000006800004],[139.40000235800005,35.600000055000066],[139.400002351,35.597917058000064]]]}},{"type":"Feature","id":4024,"properties":{"MESHCODE":"5339331241","揺全壊":0.04873},"geometry":{"type":"Polygon","coordinates":[[[139.40625235700008,35.59583308100008],[139.4093773630001,35.59583309200008],[139.409377371,35.597917091000056],[139.406252364,35.59791708000006],[139.40625235700008,35.59583308100008]]]}},{"type":"Feature","id":4030,"properties":{"MESHCODE":"5339331313","揺全壊":0.03118},"geometry":{"type":"Polygon","coordinates":[[[139.41250236200005,35.59375010300005],[139.41562736800006,35.593750112000066],[139.41562737700008,35.59583311300008],[139.41250237000008,35.595833103000075],[139.41250236200005,35.59375010300005]]]}},{"type":"Feature","id":4034,"properties":{"MESHCODE":"5339331323","揺全壊":0.04217},"geometry":{"type":"Polygon","coordinates":[[[139.41875237500005,35.593750122000074],[139.42187738200005,35.593750131000036],[139.42187739000008,35.59583313200005],[139.41875238300008,35.595833122000045],[139.41875237500005,35.593750122000074]]]}},{"type":"Feature","id":4039,"properties":{"MESHCODE":"5339331334","揺全壊":0.03724},"geometry":{"type":"Polygon","coordinates":[[[139.415627385,35.59791711300005],[139.4187523920001,35.59791712300006],[139.41875240000002,35.600000124000076],[139.41562739300002,35.60000011300008],[139.415627385,35.59791711300005]]]}},{"type":"Feature","id":4050,"properties":{"MESHCODE":"5339331423","揺全壊":0.03248},"geometry":{"type":"Polygon","coordinates":[[[139.43125240300003,35.593750157000045],[139.43437741000002,35.59375016600006],[139.43437741900004,35.59583316800007],[139.43125241200005,35.59583315900005],[139.43125240300003,35.593750157000045]]]}},{"type":"Feature","id":4059,"properties":{"MESHCODE":"5339331444","揺全壊":0.03002},"geometry":{"type":"Polygon","coordinates":[[[139.43437742800006,35.59791717000007],[139.43750243500006,35.597917178000046],[139.43750244400007,35.60000018100004],[139.4343774360001,35.60000017100009],[139.43437742800006,35.59791717000007]]]}},{"type":"Feature","id":4113,"properties":{"MESHCODE":"5339331822","揺全壊":0.04027},"geometry":{"type":"Polygon","coordinates":[[[139.48437751200004,35.591667216000076],[139.48750252000002,35.591667216000076],[139.48750253000003,35.593750217000036],[139.48437752300003,35.593750217000036],[139.48437751200004,35.591667216000076]]]}},{"type":"Feature","id":4122,"properties":{"MESHCODE":"5339332013","揺全壊":0.04204},"geometry":{"type":"Polygon","coordinates":[[[139.3750023350001,35.60208298100008],[139.37812733700002,35.60208298900005],[139.37812734200008,35.604166984000074],[139.37500233900005,35.604166976000045],[139.3750023350001,35.60208298100008]]]}},{"type":"Feature","id":4123,"properties":{"MESHCODE":"5339332014","揺全壊":0.03264},"geometry":{"type":"Polygon","coordinates":[[[139.37812733700002,35.60208298900005],[139.38125234000006,35.602082996000036],[139.38125234400002,35.604166993000035],[139.37812734200008,35.604166984000074],[139.37812733700002,35.60208298900005]]]}},{"type":"Feature","id":4131,"properties":{"MESHCODE":"5339332034","揺全壊":0.04579},"geometry":{"type":"Polygon","coordinates":[[[139.37812734600004,35.60624998000009],[139.38125235000007,35.60624998900005],[139.38125235400003,35.60833298500006],[139.3781273510001,35.60833297600004],[139.37812734600004,35.60624998000009]]]}},{"type":"Feature","id":4142,"properties":{"MESHCODE":"5339332123","揺全壊":0.03582},"geometry":{"type":"Polygon","coordinates":[[[139.39375235500006,35.60208303300004],[139.39687736100007,35.60208304400004],[139.396877367,35.604167043000075],[139.3937523620001,35.60416703100009],[139.39375235500006,35.60208303300004]]]}},{"type":"Feature","id":4156,"properties":{"MESHCODE":"5339332221","揺全壊":0.04158},"geometry":{"type":"Polygon","coordinates":[[[139.40625237200004,35.60000007900004],[139.40937738000002,35.600000091000084],[139.40937738800005,35.602083090000065],[139.40625238100006,35.60208307900007],[139.40625237200004,35.60000007900004]]]}},{"type":"Feature","id":4167,"properties":{"MESHCODE":"5339332244","揺全壊":0.04578},"geometry":{"type":"Polygon","coordinates":[[[139.409377404,35.60625009000006],[139.4125024110001,35.606250103000036],[139.41250241900002,35.608333103000064],[139.40937741200003,35.60833309100008],[139.409377404,35.60625009000006]]]}},{"type":"Feature","id":4172,"properties":{"MESHCODE":"5339332321","揺全壊":0.04816},"geometry":{"type":"Polygon","coordinates":[[[139.41875240000002,35.600000124000076],[139.421877407,35.600000134000084],[139.42187741600003,35.60208313600009],[139.41875240900004,35.602083125000036],[139.41875240000002,35.600000124000076]]]}},{"type":"Feature","id":4174,"properties":{"MESHCODE":"5339332323","揺全壊":0.04816},"geometry":{"type":"Polygon","coordinates":[[[139.41875240900004,35.602083125000036],[139.42187741600003,35.60208313600009],[139.42187742500005,35.60416713700005],[139.41875241700006,35.60416712500006],[139.41875240900004,35.602083125000036]]]}},{"type":"Feature","id":4175,"properties":{"MESHCODE":"5339332324","揺全壊":0.03077},"geometry":{"type":"Polygon","coordinates":[[[139.42187741600003,35.60208313600009],[139.42500242300002,35.60208314700009],[139.42500243200004,35.604167149000034],[139.42187742500005,35.60416713700005],[139.42187741600003,35.60208313600009]]]}},{"type":"Feature","id":4180,"properties":{"MESHCODE":"5339332341","揺全壊":0.03132},"geometry":{"type":"Polygon","coordinates":[[[139.41875241700006,35.60416712500006],[139.42187742500005,35.60416713700005],[139.42187743300008,35.606250138000064],[139.41875242600008,35.60625012700007],[139.41875241700006,35.60416712500006]]]}},{"type":"Feature","id":4192,"properties":{"MESHCODE":"5339332431","揺全壊":0.03815},"geometry":{"type":"Polygon","coordinates":[[[139.42500243200004,35.604167149000034],[139.42812744000003,35.60416715800005],[139.42812744900004,35.60625016000006],[139.42500244100006,35.60625015100004],[139.42500243200004,35.604167149000034]]]}},{"type":"Feature","id":4196,"properties":{"MESHCODE":"5339332441","揺全壊":0.03402},"geometry":{"type":"Polygon","coordinates":[[[139.431252448,35.60416716700007],[139.434377456,35.60416717700008],[139.434377465,35.606250179000085],[139.43125245700003,35.60625017000007],[139.431252448,35.60416716700007]]]}},{"type":"Feature","id":4203,"properties":{"MESHCODE":"5339332514","揺全壊":0.03495},"geometry":{"type":"Polygon","coordinates":[[[139.44062746200007,35.60208319000009],[139.44375246900006,35.60208319600008],[139.44375248000006,35.604167199000074],[139.44062747200007,35.60416719300008],[139.44062746200007,35.60208319000009]]]}},{"type":"Feature","id":4204,"properties":{"MESHCODE":"5339332521","揺全壊":0.03777},"geometry":{"type":"Polygon","coordinates":[[[139.44375246000004,35.600000193000085],[139.44687746800003,35.60000019900008],[139.44687747700004,35.60208320300006],[139.44375246900006,35.60208319600008],[139.44375246000004,35.600000193000085]]]}},{"type":"Feature","id":4207,"properties":{"MESHCODE":"5339332524","揺全壊":0.0311},"geometry":{"type":"Polygon","coordinates":[[[139.44687747700004,35.60208320300006],[139.45000248500003,35.60208320900006],[139.45000249600002,35.60416721200005],[139.44687748800004,35.60416720600006],[139.44687747700004,35.60208320300006]]]}},{"type":"Feature","id":4211,"properties":{"MESHCODE":"5339332534","揺全壊":0.03839},"geometry":{"type":"Polygon","coordinates":[[[139.44062748200008,35.60625019500009],[139.44375249000007,35.60625020300006],[139.44375250000007,35.608333205000065],[139.4406274920001,35.60833319900007],[139.44062748200008,35.60625019500009]]]}},{"type":"Feature","id":4212,"properties":{"MESHCODE":"5339332541","揺全壊":0.04692},"geometry":{"type":"Polygon","coordinates":[[[139.44375248000006,35.604167199000074],[139.44687748800004,35.60416720600006],[139.44687749800005,35.60625020900005],[139.44375249000007,35.60625020300006],[139.44375248000006,35.604167199000074]]]}},{"type":"Feature","id":4213,"properties":{"MESHCODE":"5339332542","揺全壊":0.03171},"geometry":{"type":"Polygon","coordinates":[[[139.44687748800004,35.60416720600006],[139.45000249600002,35.60416721200005],[139.45000250600003,35.606250216000035],[139.44687749800005,35.60625020900005],[139.44687748800004,35.60416720600006]]]}},{"type":"Feature","id":4214,"properties":{"MESHCODE":"5339332543","揺全壊":0.03786},"geometry":{"type":"Polygon","coordinates":[[[139.44375249000007,35.60625020300006],[139.44687749800005,35.60625020900005],[139.44687750800006,35.60833321300004],[139.44375250000007,35.608333205000065],[139.44375249000007,35.60625020300006]]]}},{"type":"Feature","id":4217,"properties":{"MESHCODE":"5339332612","揺全壊":0.0467},"geometry":{"type":"Polygon","coordinates":[[[139.453127483,35.600000209000086],[139.4562524910001,35.600000212000054],[139.456252501,35.60208321500005],[139.453127493,35.60208321200008],[139.453127483,35.600000209000086]]]}},{"type":"Feature","id":4227,"properties":{"MESHCODE":"5339332641","揺全壊":0.03864},"geometry":{"type":"Polygon","coordinates":[[[139.456252511,35.60416721800004],[139.459377518,35.60416722100007],[139.459377529,35.606250223000075],[139.456252521,35.60625022100004],[139.456252511,35.60416721800004]]]}},{"type":"Feature","id":4237,"properties":{"MESHCODE":"5339332723","揺全壊":0.04066},"geometry":{"type":"Polygon","coordinates":[[[139.46875253200005,35.60208322100004],[139.47187754000004,35.60208322100004],[139.47187755000004,35.60416722300005],[139.46875254200006,35.60416722300005],[139.46875253200005,35.60208322100004]]]}},{"type":"Feature","id":4260,"properties":{"MESHCODE":"5339333031","揺全壊":0.04082},"geometry":{"type":"Polygon","coordinates":[[[139.375002354,35.61249995500009],[139.37812736,35.612499967000076],[139.37812736400008,35.61458296200004],[139.37500235800007,35.614582950000056],[139.375002354,35.61249995500009]]]}},{"type":"Feature","id":4267,"properties":{"MESHCODE":"5339333044","揺全壊":0.04762},"geometry":{"type":"Polygon","coordinates":[[[139.38437737700008,35.61458298800005],[139.38750238400007,35.614583],[139.3875023920001,35.616667],[139.384377384,35.61666698600004],[139.38437737700008,35.61458298800005]]]}},{"type":"Feature","id":4270,"properties":{"MESHCODE":"5339333113","揺全壊":0.04754},"geometry":{"type":"Polygon","coordinates":[[[139.387502368,35.61041700200008],[139.390627376,35.61041701500005],[139.39062738400003,35.61250001500008],[139.38750237700003,35.61250000100006],[139.387502368,35.61041700200008]]]}},{"type":"Feature","id":4288,"properties":{"MESHCODE":"5339333221","揺全壊":0.04611},"geometry":{"type":"Polygon","coordinates":[[[139.40625240400004,35.608333077000054],[139.40937741200003,35.60833309100008],[139.40937742100004,35.610417091000045],[139.40625241300006,35.61041707800007],[139.40625240400004,35.608333077000054]]]}},{"type":"Feature","id":4303,"properties":{"MESHCODE":"5339333314","揺全壊":0.03343},"geometry":{"type":"Polygon","coordinates":[[[139.41562743600002,35.610417116000065],[139.418752444,35.61041712900004],[139.418752454,35.61250013000006],[139.41562744600003,35.61250011700008],[139.41562743600002,35.610417116000065]]]}},{"type":"Feature","id":4323,"properties":{"MESHCODE":"5339333424","揺全壊":0.04127},"geometry":{"type":"Polygon","coordinates":[[[139.43437748500003,35.610417185000074],[139.437502493,35.61041719500008],[139.43750250300002,35.61250019900007],[139.43437749500004,35.61250018800007],[139.43437748500003,35.610417185000074]]]}},{"type":"Feature","id":4334,"properties":{"MESHCODE":"5339333513","揺全壊":0.0319},"geometry":{"type":"Polygon","coordinates":[[[139.437502493,35.61041719500008],[139.440627501,35.610417202000065],[139.440627511,35.61250020600005],[139.43750250300002,35.61250019900007],[139.437502493,35.61041719500008]]]}},{"type":"Feature","id":4367,"properties":{"MESHCODE":"5339333843","揺全壊":0.04848},"geometry":{"type":"Polygon","coordinates":[[[139.48125263000009,35.61458322000004],[139.48437763800007,35.614583216000085],[139.48437765000006,35.616667215000064],[139.48125264200007,35.61666722000007],[139.48125263000009,35.61458322000004]]]}},{"type":"Feature","id":4389,"properties":{"MESHCODE":"5339334023","揺全壊":0.03265},"geometry":{"type":"Polygon","coordinates":[[[139.38125238700002,35.61874997600006],[139.384377395,35.61874998900004],[139.384377405,35.62083299100004],[139.381252399,35.620832979000056],[139.38125238700002,35.61874997600006]]]}},{"type":"Feature","id":4395,"properties":{"MESHCODE":"5339334041","揺全壊":0.04863},"geometry":{"type":"Polygon","coordinates":[[[139.381252399,35.620832979000056],[139.384377405,35.62083299100004],[139.384377416,35.62291699300005],[139.3812524110001,35.62291698300004],[139.381252399,35.620832979000056]]]}},{"type":"Feature","id":4405,"properties":{"MESHCODE":"5339334123","揺全壊":0.04773},"geometry":{"type":"Polygon","coordinates":[[[139.3937524170001,35.61875002800008],[139.39687742400008,35.618750041000055],[139.3968774340001,35.62083304100008],[139.3937524270001,35.62083302800005],[139.3937524170001,35.61875002800008]]]}},{"type":"Feature","id":4423,"properties":{"MESHCODE":"5339334231","揺全壊":0.03293},"geometry":{"type":"Polygon","coordinates":[[[139.40000244200007,35.62083305400006],[139.40312745000006,35.62083306800008],[139.40312745900007,35.62291706800005],[139.40000245200008,35.62291705500007],[139.40000244200007,35.62083305400006]]]}},{"type":"Feature","id":4430,"properties":{"MESHCODE":"5339334244","揺全壊":0.03889},"geometry":{"type":"Polygon","coordinates":[[[139.40937747500004,35.62291709600004],[139.41250248300003,35.62291711000006],[139.41250249200004,35.62500011100008],[139.40937748400006,35.625000097000054],[139.40937747500004,35.62291709600004]]]}},{"type":"Feature","id":4448,"properties":{"MESHCODE":"5339334412","揺全壊":0.04812},"geometry":{"type":"Polygon","coordinates":[[[139.4281274980001,35.616667170000085],[139.43125250600008,35.61666718200007],[139.4312525160001,35.61875018400008],[139.428127507,35.618750172000034],[139.4281274980001,35.616667170000085]]]}},{"type":"Feature","id":4482,"properties":{"MESHCODE":"5339334614","揺全壊":0.04531},"geometry":{"type":"Polygon","coordinates":[[[139.45312757500005,35.61875024100004],[139.45625258400003,35.61875024200009],[139.45625259500002,35.620833245000085],[139.45312758500006,35.620833246000075],[139.45312757500005,35.61875024100004]]]}},{"type":"Feature","id":4488,"properties":{"MESHCODE":"5339334641","揺全壊":0.03129},"geometry":{"type":"Polygon","coordinates":[[[139.45625259500002,35.620833245000085],[139.459377604,35.620833245000085],[139.459377614,35.62291724800008],[139.45625260500003,35.62291724900007],[139.45625259500002,35.620833245000085]]]}},{"type":"Feature","id":4506,"properties":{"MESHCODE":"5339334821","揺全壊":0.04703},"geometry":{"type":"Polygon","coordinates":[[[139.48125264200007,35.61666722000007],[139.48437765000006,35.616667215000064],[139.48437766200004,35.618750215000034],[139.48125265400006,35.61875021900005],[139.48125264200007,35.61666722000007]]]}},{"type":"Feature","id":4522,"properties":{"MESHCODE":"5339334921","揺全壊":0.03221},"geometry":{"type":"Polygon","coordinates":[[[139.493752674,35.61666720300008],[139.496877681,35.61666719800007],[139.4968776940001,35.618750197000054],[139.493752686,35.61875020100007],[139.493752674,35.61666720300008]]]}},{"type":"Feature","id":4560,"properties":{"MESHCODE":"5339335133","揺全壊":0.03258},"geometry":{"type":"Polygon","coordinates":[[[139.38750246400002,35.631250014000045],[139.39062747100002,35.63125002500004],[139.390627482,35.63333302800004],[139.38750247500002,35.63333301600005],[139.38750246400002,35.631250014000045]]]}},{"type":"Feature","id":4571,"properties":{"MESHCODE":"5339335222","揺全壊":0.0315},"geometry":{"type":"Polygon","coordinates":[[[139.40937748400006,35.625000097000054],[139.41250249200004,35.62500011100008],[139.41250250200005,35.62708311200004],[139.40937749500006,35.62708309800007],[139.40937748400006,35.625000097000054]]]}},{"type":"Feature","id":4573,"properties":{"MESHCODE":"5339335224","揺全壊":0.0385},"geometry":{"type":"Polygon","coordinates":[[[139.40937749500006,35.62708309800007],[139.41250250200005,35.62708311200004],[139.41250251200006,35.62916711300005],[139.40937750400008,35.629167099000085],[139.40937749500006,35.62708309800007]]]}},{"type":"Feature","id":4594,"properties":{"MESHCODE":"5339335341","揺全壊":0.04078},"geometry":{"type":"Polygon","coordinates":[[[139.41875253,35.62916713900006],[139.4218775380001,35.629167152000036],[139.421877548,35.63125015300005],[139.41875254,35.63125014000008],[139.41875253,35.62916713900006]]]}},{"type":"Feature","id":4606,"properties":{"MESHCODE":"5339335431","揺全壊":0.04654},"geometry":{"type":"Polygon","coordinates":[[[139.42500254700008,35.62916716500007],[139.42812755600005,35.629167178000046],[139.42812756600006,35.63125018000005],[139.42500255700008,35.631250166000086],[139.42500254700008,35.62916716500007]]]}},{"type":"Feature","id":4627,"properties":{"MESHCODE":"5339335542","揺全壊":0.04772},"geometry":{"type":"Polygon","coordinates":[[[139.446877609,35.629167255000084],[139.4500026180001,35.62916726700007],[139.450002628,35.631250272000045],[139.44687761900002,35.63125026000006],[139.446877609,35.629167255000084]]]}},{"type":"Feature","id":4630,"properties":{"MESHCODE":"5339335611","揺全壊":0.03854},"geometry":{"type":"Polygon","coordinates":[[[139.4500025970001,35.62500025500009],[139.45312760700006,35.62500025400004],[139.45312761700006,35.627083258000084],[139.4500026080001,35.62708326100005],[139.4500025970001,35.62500025500009]]]}},{"type":"Feature","id":4632,"properties":{"MESHCODE":"5339335613","揺全壊":0.04747},"geometry":{"type":"Polygon","coordinates":[[[139.4500026080001,35.62708326100005],[139.45312761700006,35.627083258000084],[139.45312762700007,35.62916726200007],[139.4500026180001,35.62916726700007],[139.4500026080001,35.62708326100005]]]}},{"type":"Feature","id":4650,"properties":{"MESHCODE":"5339335721","揺全壊":0.04837},"geometry":{"type":"Polygon","coordinates":[[[139.46875265100005,35.62500023900009],[139.47187766000002,35.62500023300004],[139.471877672,35.627083233000064],[139.46875266200004,35.62708323800007],[139.46875265100005,35.62500023900009]]]}},{"type":"Feature","id":4671,"properties":{"MESHCODE":"5339335832","揺全壊":0.03457},"geometry":{"type":"Polygon","coordinates":[[[139.47812770100006,35.62916721900007],[139.48125271000004,35.62916721400006],[139.48125272200002,35.631250211000065],[139.47812771200006,35.63125021700006],[139.47812770100006,35.62916721900007]]]}},{"type":"Feature","id":4707,"properties":{"MESHCODE":"5339336042","揺全壊":0.03198},"geometry":{"type":"Polygon","coordinates":[[[139.38437749500008,35.63750001500006],[139.387502499,35.63750002200004],[139.3875025100001,35.639583025000036],[139.38437750800006,35.639583017000064],[139.38437749500008,35.63750001500006]]]}},{"type":"Feature","id":4708,"properties":{"MESHCODE":"5339336043","揺全壊":0.03201},"geometry":{"type":"Polygon","coordinates":[[[139.38125250400003,35.63958301000008],[139.38437750800006,35.639583017000064],[139.38437751900005,35.641667021000046],[139.381252517,35.64166701400006],[139.38125250400003,35.63958301000008]]]}},{"type":"Feature","id":4728,"properties":{"MESHCODE":"5339336213","揺全壊":0.03902},"geometry":{"type":"Polygon","coordinates":[[[139.400002514,35.635417063000034],[139.4031275210001,35.63541707600007],[139.4031275320001,35.63750007800007],[139.400002524,35.63750006500004],[139.400002514,35.635417063000034]]]}},{"type":"Feature","id":4744,"properties":{"MESHCODE":"5339336313","揺全壊":0.0452},"geometry":{"type":"Polygon","coordinates":[[[139.41250254400006,35.63541711400006],[139.41562755200005,35.63541712700004],[139.41562756300004,35.63750012600008],[139.41250255400007,35.637500114000034],[139.41250254400006,35.63541711400006]]]}},{"type":"Feature","id":4762,"properties":{"MESHCODE":"5339336421","揺全壊":0.03302},"geometry":{"type":"Polygon","coordinates":[[[139.43125258500004,35.633333194000045],[139.434377594,35.63333320800007],[139.43437760400002,35.635417207000046],[139.43125259600004,35.63541719300008],[139.43125258500004,35.633333194000045]]]}},{"type":"Feature","id":4795,"properties":{"MESHCODE":"5339336622","揺全壊":0.03606},"geometry":{"type":"Polygon","coordinates":[[[139.45937766600002,35.63333325700006],[139.462502675,35.63333325000008],[139.462502686,35.63541724700008],[139.45937767700002,35.63541725300007],[139.45937766600002,35.63333325700006]]]}},{"type":"Feature","id":4808,"properties":{"MESHCODE":"5339336713","揺全壊":0.03015},"geometry":{"type":"Polygon","coordinates":[[[139.462502686,35.63541724700008],[139.46562769600007,35.63541724000004],[139.46562770700007,35.63750023700004],[139.4625026970001,35.637500243000034],[139.462502686,35.63541724700008]]]}},{"type":"Feature","id":4847,"properties":{"MESHCODE":"5339336932","揺全壊":0.04292},"geometry":{"type":"Polygon","coordinates":[[[139.49062778500002,35.63750018300004],[139.4937527950001,35.63750017700005],[139.49375280800007,35.63958317300006],[139.4906277980001,35.639583180000045],[139.49062778500002,35.63750018300004]]]}},{"type":"Feature","id":4856,"properties":{"MESHCODE":"5339337013","揺全壊":0.03882},"geometry":{"type":"Polygon","coordinates":[[[139.37500252200005,35.64375000300004],[139.37812752500008,35.643750010000076],[139.37812753600008,35.64583301200008],[139.37500253300004,35.64583300600009],[139.37500252200005,35.64375000300004]]]}},{"type":"Feature","id":4863,"properties":{"MESHCODE":"5339337032","揺全壊":0.04793},"geometry":{"type":"Polygon","coordinates":[[[139.37812753600008,35.64583301200008],[139.381252539,35.645833019000065],[139.38125255,35.64791702100007],[139.37812754700008,35.647917015000075],[139.37812753600008,35.64583301200008]]]}},{"type":"Feature","id":4864,"properties":{"MESHCODE":"5339337033","揺全壊":0.04258},"geometry":{"type":"Polygon","coordinates":[[[139.37500254500003,35.647917008000036],[139.37812754700008,35.647917015000075],[139.37812755800007,35.65000001700008],[139.37500255600003,35.65000001100009],[139.37500254500003,35.647917008000036]]]}},{"type":"Feature","id":4876,"properties":{"MESHCODE":"5339337123","揺全壊":0.04791},"geometry":{"type":"Polygon","coordinates":[[[139.393752544,35.64375005000005],[139.39687755,35.64375006000006],[139.396877561,35.645833061000076],[139.3937525550001,35.64583305200006],[139.393752544,35.64375005000005]]]}},{"type":"Feature","id":4892,"properties":{"MESHCODE":"5339337223","揺全壊":0.04331},"geometry":{"type":"Polygon","coordinates":[[[139.4062525700001,35.64375009200006],[139.4093775780001,35.64375010300006],[139.4093775890001,35.645833103000086],[139.4062525810001,35.64583309300008],[139.4062525700001,35.64375009200006]]]}},{"type":"Feature","id":4907,"properties":{"MESHCODE":"5339337322","揺全壊":0.04217},"geometry":{"type":"Polygon","coordinates":[[[139.42187760000002,35.641667151000036],[139.425002608,35.64166716400007],[139.425002619,35.64375016200006],[139.42187761000002,35.64375015000007],[139.42187760000002,35.641667151000036]]]}},{"type":"Feature","id":4908,"properties":{"MESHCODE":"5339337323","揺全壊":0.04051},"geometry":{"type":"Polygon","coordinates":[[[139.41875260200004,35.64375013800009],[139.42187761000002,35.64375015000007],[139.42187762100002,35.645833148000065],[139.41875261300004,35.64583313700007],[139.41875260200004,35.64375013800009]]]}},{"type":"Feature","id":4909,"properties":{"MESHCODE":"5339337324","揺全壊":0.03542},"geometry":{"type":"Polygon","coordinates":[[[139.42187761000002,35.64375015000007],[139.425002619,35.64375016200006],[139.425002629,35.64583316000005],[139.42187762100002,35.645833148000065],[139.42187761000002,35.64375015000007]]]}},{"type":"Feature","id":4911,"properties":{"MESHCODE":"5339337332","揺全壊":0.04313},"geometry":{"type":"Polygon","coordinates":[[[139.41562760400006,35.64583312500008],[139.41875261300004,35.64583313700007],[139.41875262300005,35.647917136000046],[139.41562761500006,35.64791712500005],[139.41562760400006,35.64583312500008]]]}},{"type":"Feature","id":4918,"properties":{"MESHCODE":"5339337411","揺全壊":0.04922},"geometry":{"type":"Polygon","coordinates":[[[139.425002608,35.64166716400007],[139.4281276170001,35.641667176000055],[139.42812762800008,35.64375017400005],[139.425002619,35.64375016200006],[139.425002608,35.64166716400007]]]}},{"type":"Feature","id":4962,"properties":{"MESHCODE":"5339337641","揺全壊":0.04626},"geometry":{"type":"Polygon","coordinates":[[[139.45625272100006,35.64583323000005],[139.45937773000003,35.64583322800007],[139.45937774100003,35.647917223000036],[139.45625273100006,35.64791722400008],[139.45625272100006,35.64583323000005]]]}},{"type":"Feature","id":4991,"properties":{"MESHCODE":"5339337832","揺全壊":0.03538},"geometry":{"type":"Polygon","coordinates":[[[139.47812779100002,35.64583319500008],[139.48125280200009,35.645833189000086],[139.48125281300008,35.64791718500004],[139.47812780200002,35.64791719200008],[139.47812779100002,35.64583319500008]]]}},{"type":"Feature","id":4993,"properties":{"MESHCODE":"5339337834","揺全壊":0.03009},"geometry":{"type":"Polygon","coordinates":[[[139.47812780200002,35.64791719200008],[139.48125281300008,35.64791718500004],[139.4812528230001,35.65000018100005],[139.478127814,35.650000187000046],[139.47812780200002,35.64791719200008]]]}},{"type":"Feature","id":5032,"properties":{"MESHCODE":"5339338113","揺全壊":0.03376},"geometry":{"type":"Polygon","coordinates":[[[139.38750257900006,35.65208303800006],[139.39062758400007,35.652083047000076],[139.39062759600006,35.65416704900008],[139.38750259000005,35.65416704000006],[139.38750257900006,35.65208303800006]]]}},{"type":"Feature","id":5038,"properties":{"MESHCODE":"5339338131","揺全壊":0.04494},"geometry":{"type":"Polygon","coordinates":[[[139.38750259000005,35.65416704000006],[139.39062759600006,35.65416704900008],[139.39062760700006,35.656250051000086],[139.38750260200004,35.65625004300006],[139.38750259000005,35.65416704000006]]]}},{"type":"Feature","id":5040,"properties":{"MESHCODE":"5339338133","揺全壊":0.04351},"geometry":{"type":"Polygon","coordinates":[[[139.38750260200004,35.65625004300006],[139.39062760700006,35.656250051000086],[139.39062761900004,35.658333052000046],[139.38750261400003,35.65833304500006],[139.38750260200004,35.65625004300006]]]}},{"type":"Feature","id":5082,"properties":{"MESHCODE":"5339338421","揺全壊":0.04221},"geometry":{"type":"Polygon","coordinates":[[[139.4312526660001,35.65000017600005],[139.43437767500006,35.650000187000046],[139.43437768500007,35.65208318200007],[139.4312526770001,35.65208317300005],[139.4312526660001,35.65000017600005]]]}},{"type":"Feature","id":5101,"properties":{"MESHCODE":"5339338524","揺全壊":0.04496},"geometry":{"type":"Polygon","coordinates":[[[139.44687772300006,35.65208320800008],[139.45000273200003,35.65208321300008],[139.45000274300003,35.65416720700006],[139.44687773300006,35.65416720200005],[139.44687772300006,35.65208320800008]]]}},{"type":"Feature","id":5114,"properties":{"MESHCODE":"5339338621","揺全壊":0.036},"geometry":{"type":"Polygon","coordinates":[[[139.45625274100007,35.65000021800006],[139.45937775100003,35.65000021700007],[139.45937776200003,35.652083212000036],[139.45625275200007,35.652083212000036],[139.45625274100007,35.65000021800006]]]}},{"type":"Feature","id":5119,"properties":{"MESHCODE":"5339338632","揺全壊":0.03252},"geometry":{"type":"Polygon","coordinates":[[[139.4531277530001,35.65416720600007],[139.45625276300007,35.65416720600007],[139.45625277300007,35.656250200000045],[139.453127763,35.656250200000045],[139.4531277530001,35.65416720600007]]]}},{"type":"Feature","id":5143,"properties":{"MESHCODE":"5339338812","揺全壊":0.03248},"geometry":{"type":"Polygon","coordinates":[[[139.478127814,35.650000187000046],[139.4812528230001,35.65000018100005],[139.4812528340001,35.652083176000076],[139.47812782300002,35.65208318200007],[139.478127814,35.650000187000046]]]}},{"type":"Feature","id":5191,"properties":{"MESHCODE":"5339339112","揺全壊":0.03726},"geometry":{"type":"Polygon","coordinates":[[[139.39062761900004,35.658333052000046],[139.39375262300007,35.658333060000075],[139.39375263400007,35.66041706000004],[139.39062763000004,35.66041705300006],[139.39062761900004,35.658333052000046]]]}},{"type":"Feature","id":5194,"properties":{"MESHCODE":"5339339121","揺全壊":0.04829},"geometry":{"type":"Polygon","coordinates":[[[139.39375262300007,35.658333060000075],[139.39687762900007,35.65833306700006],[139.39687763900008,35.66041706800007],[139.39375263400007,35.66041706000004],[139.39375262300007,35.658333060000075]]]}},{"type":"Feature","id":5203,"properties":{"MESHCODE":"5339339142","揺全壊":0.04104},"geometry":{"type":"Polygon","coordinates":[[[139.39687765000008,35.66250006800004],[139.40000265600008,35.66250007500008],[139.4000026660001,35.66458307500005],[139.39687766100008,35.66458306800007],[139.39687765000008,35.66250006800004]]]}},{"type":"Feature","id":5221,"properties":{"MESHCODE":"5339339244","揺全壊":0.04221},"geometry":{"type":"Polygon","coordinates":[[[139.40937768600008,35.66458309900008],[139.4125026920001,35.664583107000055],[139.4125027030001,35.666667105000045],[139.40937769700008,35.66666709800006],[139.40937768600008,35.66458309900008]]]}},{"type":"Feature","id":5232,"properties":{"MESHCODE":"5339339333","揺全壊":0.04479},"geometry":{"type":"Polygon","coordinates":[[[139.4125026920001,35.664583107000055],[139.41562770000007,35.664583115000084],[139.41562771000008,35.666667113000074],[139.4125027030001,35.666667105000045],[139.4125026920001,35.664583107000055]]]}},{"type":"Feature","id":5309,"properties":{"MESHCODE":"5339339824","揺全壊":0.03191},"geometry":{"type":"Polygon","coordinates":[[[139.48437788900003,35.660417152000036],[139.4875029000001,35.66041714600004],[139.4875029110001,35.662500141000066],[139.48437790000003,35.66250014800005],[139.48437788900003,35.660417152000036]]]}},{"type":"Feature","id":5376,"properties":{"MESHCODE":"5339344732","揺全壊":0.03348},"geometry":{"type":"Polygon","coordinates":[[[139.59062779400006,35.62083321400007],[139.593752794,35.62083321700004],[139.59375280300003,35.622917216000076],[139.59062780300007,35.62291721100007],[139.59062779400006,35.62083321400007]]]}},{"type":"Feature","id":5384,"properties":{"MESHCODE":"5339344812","揺全壊":0.03612},"geometry":{"type":"Polygon","coordinates":[[[139.603127781,35.616667231000065],[139.60625278300006,35.616667233000044],[139.6062527910001,35.61875023200008],[139.60312778900004,35.61875022900006],[139.603127781,35.616667231000065]]]}},{"type":"Feature","id":5428,"properties":{"MESHCODE":"5339345042","揺全壊":0.03864},"geometry":{"type":"Polygon","coordinates":[[[139.50937778800005,35.62916716500007],[139.51250279600004,35.629167159000076],[139.512502809,35.63125015500009],[139.50937780100003,35.631250160000036],[139.50937778800005,35.62916716500007]]]}},{"type":"Feature","id":5436,"properties":{"MESHCODE":"5339345132","揺全壊":0.03201},"geometry":{"type":"Polygon","coordinates":[[[139.51562780200004,35.62916715700004],[139.51875280800004,35.62916715300008],[139.51875282100002,35.63125014800005],[139.51562781500002,35.631250152000064],[139.51562780200004,35.62916715700004]]]}},{"type":"Feature","id":5451,"properties":{"MESHCODE":"5339345532","揺全壊":0.04378},"geometry":{"type":"Polygon","coordinates":[[[139.56562784300002,35.62916716500007],[139.5687528420001,35.62916717000007],[139.5687528530001,35.63125016500004],[139.565627855,35.631250160000036],[139.56562784300002,35.62916716500007]]]}},{"type":"Feature","id":5556,"properties":{"MESHCODE":"5339346244","揺全壊":0.03568},"geometry":{"type":"Polygon","coordinates":[[[139.53437790600003,35.63958311400006],[139.53750291100005,35.63958311200008],[139.537502925,35.64166710500007],[139.53437792,35.641667108000036],[139.53437790600003,35.63958311400006]]]}},{"type":"Feature","id":5752,"properties":{"MESHCODE":"5339347531","揺全壊":0.04031},"geometry":{"type":"Polygon","coordinates":[[[139.562502946,35.64583312000008],[139.5656279420001,35.64583312600007],[139.5656279540001,35.647917121000035],[139.56250295900008,35.64791711400005],[139.562502946,35.64583312000008]]]}},{"type":"Feature","id":6403,"properties":{"MESHCODE":"5339352111","揺全壊":0.03259},"geometry":{"type":"Polygon","coordinates":[[[139.63750279200008,35.60000025000005],[139.64062780100005,35.60000024800007],[139.64062780900008,35.60208324700005],[139.637502799,35.60208324900009],[139.63750279200008,35.60000025000005]]]}},{"type":"Feature","id":6538,"properties":{"MESHCODE":"5339352924","揺全壊":0.039},"geometry":{"type":"Polygon","coordinates":[[[139.7468781120001,35.60208305000009],[139.7500031200001,35.60208304200006],[139.75000313200007,35.60416704000005],[139.7468781240001,35.60416704700009],[139.7468781120001,35.60208305000009]]]}},{"type":"Feature","id":6547,"properties":{"MESHCODE":"5339353011","揺全壊":0.03775},"geometry":{"type":"Polygon","coordinates":[[[139.6250027860001,35.608333248000065],[139.62812779400008,35.608333247000076],[139.628127801,35.610417246000054],[139.62500279300002,35.61041724700004],[139.6250027860001,35.608333248000065]]]}},{"type":"Feature","id":7018,"properties":{"MESHCODE":"5339355924","揺全壊":0.04184},"geometry":{"type":"Polygon","coordinates":[[[139.746878251,35.62708302300007],[139.75000326200006,35.627083016000086],[139.75000327400005,35.629167014000075],[139.7468782630001,35.62916702100006],[139.746878251,35.62708302300007]]]}},{"type":"Feature","id":7172,"properties":{"MESHCODE":"5339356912","揺全壊":0.03812},"geometry":{"type":"Polygon","coordinates":[[[139.74062826400007,35.633333029000084],[139.74375327500002,35.633333022000045],[139.743753287,35.635417020000034],[139.74062827500006,35.635417026000084],[139.74062826400007,35.633333029000084]]]}},{"type":"Feature","id":7177,"properties":{"MESHCODE":"5339356923","揺全壊":0.04851},"geometry":{"type":"Polygon","coordinates":[[[139.743753287,35.635417020000034],[139.74687829800007,35.63541701300005],[139.74687830900007,35.63750001100004],[139.743753298,35.63750001800008],[139.743753287,35.635417020000034]]]}},{"type":"Feature","id":7180,"properties":{"MESHCODE":"5339356932","揺全壊":0.04509},"geometry":{"type":"Polygon","coordinates":[[[139.74062828700005,35.637500024000076],[139.743753298,35.63750001800008],[139.743753309,35.639583015000085],[139.74062829700006,35.63958302100008],[139.74062828700005,35.637500024000076]]]}},{"type":"Feature","id":7669,"properties":{"MESHCODE":"5339360013","揺全壊":0.0354},"geometry":{"type":"Polygon","coordinates":[[[139.7500030230001,35.585417057000086],[139.7531280290001,35.58541704900006],[139.75312804200007,35.58750004700005],[139.75000303600007,35.58750005400009],[139.7500030230001,35.585417057000086]]]}},{"type":"Feature","id":7674,"properties":{"MESHCODE":"5339360024","揺全壊":0.0384},"geometry":{"type":"Polygon","coordinates":[[[139.7593780410001,35.585417034000045],[139.762503046,35.58541702700006],[139.76250306000009,35.587500025000054],[139.7593780530001,35.58750003200004],[139.7593780410001,35.585417034000045]]]}},{"type":"Feature","id":7679,"properties":{"MESHCODE":"5339360041","揺全壊":0.04448},"geometry":{"type":"Polygon","coordinates":[[[139.75625304800008,35.587500040000066],[139.7593780530001,35.58750003200004],[139.75937806700006,35.589583031000075],[139.75625306100005,35.58958303800006],[139.75625304800008,35.587500040000066]]]}},{"type":"Feature","id":7684,"properties":{"MESHCODE":"5339360112","揺全壊":0.03655},"geometry":{"type":"Polygon","coordinates":[[[139.76562803800005,35.583333020000055],[139.76875304300006,35.58333301300007],[139.76875305700003,35.58541701100006],[139.765628052,35.58541701900009],[139.76562803800005,35.583333020000055]]]}},{"type":"Feature","id":7689,"properties":{"MESHCODE":"5339360123","揺全壊":0.04157},"geometry":{"type":"Polygon","coordinates":[[[139.76875305700003,35.58541701100006],[139.77187806100005,35.58541700300009],[139.771878076,35.58750000200007],[139.76875307,35.58750001000004],[139.76875305700003,35.58541701100006]]]}},{"type":"Feature","id":7695,"properties":{"MESHCODE":"5339360141","揺全壊":0.04725},"geometry":{"type":"Polygon","coordinates":[[[139.76875307,35.58750001000004],[139.771878076,35.58750000200007],[139.7718780890001,35.58958300100005],[139.76875308400008,35.58958300900008],[139.76875307,35.58750001000004]]]}},{"type":"Feature","id":7705,"properties":{"MESHCODE":"5339360233","揺全壊":0.04272},"geometry":{"type":"Polygon","coordinates":[[[139.775003094,35.58958299300008],[139.778128101,35.58958298600004],[139.77812811500007,35.591666985000074],[139.77500310800008,35.59166699100007],[139.775003094,35.58958299300008]]]}},{"type":"Feature","id":7755,"properties":{"MESHCODE":"5339361124","揺全壊":0.03471},"geometry":{"type":"Polygon","coordinates":[[[139.77187811700003,35.59374999700009],[139.77500312300003,35.59374999000005],[139.7750031380001,35.59583298900009],[139.771878131,35.59583299600007],[139.77187811700003,35.59374999700009]]]}},{"type":"Feature","id":7756,"properties":{"MESHCODE":"5339361131","揺全壊":0.04983},"geometry":{"type":"Polygon","coordinates":[[[139.762503111,35.595833018000064],[139.765628118,35.59583301100008],[139.76562813100008,35.59791700900007],[139.7625031230001,35.59791701600005],[139.762503111,35.595833018000064]]]}},{"type":"Feature","id":7760,"properties":{"MESHCODE":"5339361141","揺全壊":0.0396},"geometry":{"type":"Polygon","coordinates":[[[139.768753124,35.59583300300005],[139.771878131,35.59583299600007],[139.77187814500007,35.59791699500005],[139.76875313800008,35.59791700200009],[139.768753124,35.59583300300005]]]}},{"type":"Feature","id":7850,"properties":{"MESHCODE":"5339362331","揺全壊":0.03775},"geometry":{"type":"Polygon","coordinates":[[[139.78750322300004,35.60416695500004],[139.79062823100003,35.604166949000046],[139.7906282460001,35.606249948000084],[139.787503238,35.60624995400008],[139.78750322300004,35.60416695500004]]]}},{"type":"Feature","id":7887,"properties":{"MESHCODE":"5339363011","揺全壊":0.0499},"geometry":{"type":"Polygon","coordinates":[[[139.75000315500006,35.60833303600009],[139.75312816400003,35.60833302900005],[139.75312817600002,35.61041702700004],[139.75000316700005,35.61041703400008],[139.75000315500006,35.60833303600009]]]}},{"type":"Feature","id":7913,"properties":{"MESHCODE":"5339363231","揺全壊":0.04662},"geometry":{"type":"Polygon","coordinates":[[[139.7750032470001,35.612499977000084],[139.77812825600006,35.612499970000044],[139.77812827000002,35.614582968000036],[139.77500326200004,35.614582974000086],[139.7750032470001,35.612499977000084]]]}},{"type":"Feature","id":7919,"properties":{"MESHCODE":"5339363243","揺全壊":0.03084},"geometry":{"type":"Polygon","coordinates":[[[139.781253278,35.61458296200004],[139.7843782870001,35.61458295500006],[139.78437830200005,35.61666695400004],[139.78125329300008,35.61666696000009],[139.781253278,35.61458296200004]]]}},{"type":"Feature","id":7965,"properties":{"MESHCODE":"5339364122","揺全壊":0.03528},"geometry":{"type":"Polygon","coordinates":[[[139.77187826600004,35.61666697900006],[139.77500327500002,35.616666972000075],[139.775003288,35.61874997100006],[139.77187828,35.61874997800004],[139.77187826600004,35.61666697900006]]]}},{"type":"Feature","id":7975,"properties":{"MESHCODE":"5339364212","揺全壊":0.04536},"geometry":{"type":"Polygon","coordinates":[[[139.7781282840001,35.61666696600008],[139.78125329300008,35.61666696000009],[139.78125330700004,35.61874995800008],[139.77812829800007,35.61874996500006],[139.7781282840001,35.61666696600008]]]}},{"type":"Feature","id":7985,"properties":{"MESHCODE":"5339364234","揺全壊":0.04647},"geometry":{"type":"Polygon","coordinates":[[[139.778128326,35.62291696200003],[139.78125333600008,35.62291695600004],[139.78125335000004,35.62499995500008],[139.77812834000008,35.62499996000008],[139.778128326,35.62291696200003]]]}},{"type":"Feature","id":7986,"properties":{"MESHCODE":"5339364241","揺全壊":0.03689},"geometry":{"type":"Polygon","coordinates":[[[139.781253322,35.62083295700006],[139.78437833100008,35.62083295100007],[139.78437834600004,35.62291694900006],[139.78125333600008,35.62291695600004],[139.781253322,35.62083295700006]]]}},{"type":"Feature","id":7994,"properties":{"MESHCODE":"5339364321","揺全壊":0.03734},"geometry":{"type":"Polygon","coordinates":[[[139.79375332900008,35.61666693500007],[139.79687833800006,35.616666928000086],[139.796878353,35.61874992700007],[139.79375334400004,35.61874993300006],[139.79375332900008,35.61666693500007]]]}},{"type":"Feature","id":7997,"properties":{"MESHCODE":"5339364331","揺全壊":0.04979},"geometry":{"type":"Polygon","coordinates":[[[139.78750334000006,35.620832944000085],[139.79062835000002,35.620832938000035],[139.7906283640001,35.62291693700007],[139.787503355,35.622916943000064],[139.78750334000006,35.620832944000085]]]}},{"type":"Feature","id":8004,"properties":{"MESHCODE":"5339364344","揺全壊":0.0354},"geometry":{"type":"Polygon","coordinates":[[[139.79687838300003,35.62291692400004],[139.800003393,35.622916918000044],[139.80000340800007,35.62499991700008],[139.7968783980001,35.624999923000075],[139.79687838300003,35.62291692400004]]]}},{"type":"Feature","id":8006,"properties":{"MESHCODE":"5339364612","揺全壊":0.04255},"geometry":{"type":"Polygon","coordinates":[[[139.82812842200008,35.61666686600006],[139.83125343100005,35.616666860000066],[139.8312534480001,35.61874985900005],[139.82812844,35.61874986500004],[139.82812842200008,35.61666686600006]]]}},{"type":"Feature","id":8016,"properties":{"MESHCODE":"5339364634","揺全壊":0.04456},"geometry":{"type":"Polygon","coordinates":[[[139.82812847500009,35.62291686400005],[139.83125348400006,35.622916857000064],[139.8312535020001,35.624999857000034],[139.82812849200002,35.624999863000085],[139.82812847500009,35.62291686400005]]]}},{"type":"Feature","id":8019,"properties":{"MESHCODE":"5339364643","揺全壊":0.04497},"geometry":{"type":"Polygon","coordinates":[[[139.83125348400006,35.622916857000064],[139.83437849300003,35.62291685100007],[139.83437851100007,35.62499985100004],[139.8312535020001,35.624999857000034],[139.83125348400006,35.622916857000064]]]}},{"type":"Feature","id":8033,"properties":{"MESHCODE":"5339365031","揺全壊":0.03925},"geometry":{"type":"Polygon","coordinates":[[[139.75000327400005,35.629167014000075],[139.753128284,35.62916700800008],[139.753128296,35.63125000500008],[139.75000328500005,35.63125001100008],[139.75000327400005,35.629167014000075]]]}},{"type":"Feature","id":8055,"properties":{"MESHCODE":"5339365214","揺全壊":0.03314},"geometry":{"type":"Polygon","coordinates":[[[139.77812835400005,35.62708295900006],[139.781253365,35.62708295300007],[139.7812533780001,35.62916695100006],[139.778128368,35.62916695800004],[139.77812835400005,35.62708295900006]]]}},{"type":"Feature","id":8059,"properties":{"MESHCODE":"5339365224","揺全壊":0.03139},"geometry":{"type":"Polygon","coordinates":[[[139.78437837400008,35.62708294600009],[139.78750338400005,35.62708294000004],[139.787503399,35.62916693900007],[139.78437838900004,35.629166945000065],[139.78437837400008,35.62708294600009]]]}},{"type":"Feature","id":8061,"properties":{"MESHCODE":"5339365232","揺全壊":0.04764},"geometry":{"type":"Polygon","coordinates":[[[139.778128368,35.62916695800004],[139.7812533780001,35.62916695100006],[139.78125339300004,35.63124995000004],[139.77812838300008,35.63124995700008],[139.778128368,35.62916695800004]]]}},{"type":"Feature","id":8063,"properties":{"MESHCODE":"5339365234","揺全壊":0.04434},"geometry":{"type":"Polygon","coordinates":[[[139.77812838300008,35.63124995700008],[139.78125339300004,35.63124995000004],[139.781253407,35.63333294800009],[139.77812839600006,35.63333295500007],[139.77812838300008,35.63124995700008]]]}},{"type":"Feature","id":8080,"properties":{"MESHCODE":"5339365341","揺全壊":0.04138},"geometry":{"type":"Polygon","coordinates":[[[139.79375341900004,35.629166927000085],[139.796878429,35.629166921000035],[139.79687844400007,35.63124992000007],[139.793753434,35.631249926000066],[139.79375341900004,35.629166927000085]]]}},{"type":"Feature","id":8082,"properties":{"MESHCODE":"5339365343","揺全壊":0.04138},"geometry":{"type":"Polygon","coordinates":[[[139.793753434,35.631249926000066],[139.79687844400007,35.63124992000007],[139.79687845900003,35.633332919000054],[139.79375344900006,35.63333292500005],[139.793753434,35.631249926000066]]]}},{"type":"Feature","id":8107,"properties":{"MESHCODE":"5339365644","揺全壊":0.03753},"geometry":{"type":"Polygon","coordinates":[[[139.83437856400008,35.63124984800004],[139.83750357300005,35.631249843000035],[139.8375035910001,35.63333284200007],[139.834378582,35.63333284700008],[139.83437856400008,35.63124984800004]]]}},{"type":"Feature","id":8136,"properties":{"MESHCODE":"5339366222","揺全壊":0.03165},"geometry":{"type":"Polygon","coordinates":[[[139.78437841800007,35.633332943000084],[139.78750342700005,35.633332936000045],[139.7875034430001,35.635416934000034],[139.78437843200004,35.635416941000074],[139.78437841800007,35.633332943000084]]]}},{"type":"Feature","id":8141,"properties":{"MESHCODE":"5339366234","揺全壊":0.04801},"geometry":{"type":"Polygon","coordinates":[[[139.77812843800007,35.639582949000044],[139.78125344800003,35.63958294400004],[139.7812534630001,35.641666942000086],[139.77812845100004,35.64166694700009],[139.77812843800007,35.639582949000044]]]}},{"type":"Feature","id":8150,"properties":{"MESHCODE":"5339366321","揺全壊":0.04827},"geometry":{"type":"Polygon","coordinates":[[[139.79375344900006,35.63333292500005],[139.79687845900003,35.633332919000054],[139.7968784740001,35.63541691800009],[139.79375346300003,35.63541692300004],[139.79375344900006,35.63333292500005]]]}},{"type":"Feature","id":8160,"properties":{"MESHCODE":"5339366343","揺全壊":0.04961},"geometry":{"type":"Polygon","coordinates":[[[139.79375349400004,35.639582921000056],[139.796878504,35.63958291500006],[139.79687852000006,35.64166691400004],[139.793753508,35.641666919000045],[139.79375349400004,35.639582921000056]]]}},{"type":"Feature","id":8226,"properties":{"MESHCODE":"5339366933","揺全壊":0.04728},"geometry":{"type":"Polygon","coordinates":[[[139.862503725,35.639582793000045],[139.865628733,35.63958278700005],[139.86562875200002,35.64166678600009],[139.86250374400004,35.641666791000034],[139.862503725,35.639582793000045]]]}},{"type":"Feature","id":8246,"properties":{"MESHCODE":"5339367044","揺全壊":0.03094},"geometry":{"type":"Polygon","coordinates":[[[139.75937842100006,35.647916974000054],[139.762503433,35.64791696900005],[139.76250344700009,35.64999996700004],[139.75937843400004,35.649999972000046],[139.75937842100006,35.647916974000054]]]}},{"type":"Feature","id":8254,"properties":{"MESHCODE":"5339367221","揺全壊":0.03193},"geometry":{"type":"Polygon","coordinates":[[[139.7812534630001,35.641666942000086],[139.78437847400005,35.641666936000036],[139.784378489,35.643749934000084],[139.78125347700006,35.64374994000008],[139.7812534630001,35.641666942000086]]]}},{"type":"Feature","id":8262,"properties":{"MESHCODE":"5339367242","揺全壊":0.04142},"geometry":{"type":"Polygon","coordinates":[[[139.78437850400007,35.645832933000065],[139.78750351500003,35.64583292800006],[139.7875035300001,35.64791692600005],[139.78437851800004,35.647916932000044],[139.78437850400007,35.645832933000065]]]}},{"type":"Feature","id":8273,"properties":{"MESHCODE":"5339367332","揺全壊":0.04515},"geometry":{"type":"Polygon","coordinates":[[[139.79062852700008,35.64583292200007],[139.79375353900002,35.645832917000064],[139.7937535530001,35.64791691500005],[139.79062854100005,35.647916921000046],[139.79062852700008,35.64583292200007]]]}},{"type":"Feature","id":8274,"properties":{"MESHCODE":"5339367333","揺全壊":0.03276},"geometry":{"type":"Polygon","coordinates":[[[139.7875035300001,35.64791692600005],[139.79062854100005,35.647916921000046],[139.7906285570001,35.64999991900004],[139.78750354400006,35.64999992500009],[139.7875035300001,35.64791692600005]]]}},{"type":"Feature","id":8275,"properties":{"MESHCODE":"5339367334","揺全壊":0.03931},"geometry":{"type":"Polygon","coordinates":[[[139.79062854100005,35.647916921000046],[139.7937535530001,35.64791691500005],[139.79375356800006,35.649999914000034],[139.7906285570001,35.64999991900004],[139.79062854100005,35.647916921000046]]]}},{"type":"Feature","id":8358,"properties":{"MESHCODE":"5339367911","揺全壊":0.04726},"geometry":{"type":"Polygon","coordinates":[[[139.86250374400004,35.641666791000034],[139.86562875200002,35.64166678600009],[139.86562877200004,35.64374978600006],[139.86250376400005,35.64374979100006],[139.86250374400004,35.641666791000034]]]}},{"type":"Feature","id":8431,"properties":{"MESHCODE":"5339368334","揺全壊":0.03905},"geometry":{"type":"Polygon","coordinates":[[[139.7906286010001,35.656249915000046],[139.79375361300004,35.65624991100009],[139.7937536280001,35.65833291000007],[139.79062861500006,35.658332915000074],[139.7906286010001,35.656249915000046]]]}},{"type":"Feature","id":8453,"properties":{"MESHCODE":"5339368512","揺全壊":0.04363},"geometry":{"type":"Polygon","coordinates":[[[139.81562865,35.64999987500005],[139.81875366300005,35.649999869000055],[139.818753678,35.65208286900008],[139.81562866700006,35.65208287400009],[139.81562865,35.64999987500005]]]}},{"type":"Feature","id":8469,"properties":{"MESHCODE":"5339368612","揺全壊":0.0444},"geometry":{"type":"Polygon","coordinates":[[[139.828128698,35.649999853000054],[139.83125370800008,35.64999984700006],[139.831253725,35.65208284700009],[139.82812871300007,35.65208285300008],[139.828128698,35.649999853000054]]]}},{"type":"Feature","id":8492,"properties":{"MESHCODE":"5339368731","揺全壊":0.03763},"geometry":{"type":"Polygon","coordinates":[[[139.83750376400008,35.65416683600006],[139.84062877600002,35.654166831000055],[139.84062879300006,35.65624983100008],[139.837503781,35.656249836000086],[139.83750376400008,35.65416683600006]]]}},{"type":"Feature","id":8495,"properties":{"MESHCODE":"5339368734","揺全壊":0.04661},"geometry":{"type":"Polygon","coordinates":[[[139.84062879300006,35.65624983100008],[139.843753805,35.65624982500009],[139.84375382200005,35.65833282500006],[139.84062881,35.65833283100005],[139.84062879300006,35.65624983100008]]]}},{"type":"Feature","id":8510,"properties":{"MESHCODE":"5339368833","揺全壊":0.047},"geometry":{"type":"Polygon","coordinates":[[[139.8500038300001,35.656249814000034],[139.85312884200005,35.65624980800004],[139.8531288590001,35.65833280800007],[139.85000384700004,35.65833281400006],[139.8500038300001,35.656249814000034]]]}},{"type":"Feature","id":8556,"properties":{"MESHCODE":"5339369131","揺全壊":0.03488},"geometry":{"type":"Polygon","coordinates":[[[139.7625035320001,35.66249995700008],[139.76562854500003,35.662499952000076],[139.7656285590001,35.66458295000007],[139.76250354700005,35.66458295500007],[139.7625035320001,35.66249995700008]]]}},{"type":"Feature","id":8557,"properties":{"MESHCODE":"5339369132","揺全壊":0.04971},"geometry":{"type":"Polygon","coordinates":[[[139.76562854500003,35.662499952000076],[139.76875355700008,35.66249994600008],[139.76875357200004,35.66458294500006],[139.7656285590001,35.66458295000007],[139.76562854500003,35.662499952000076]]]}},{"type":"Feature","id":8569,"properties":{"MESHCODE":"5339369222","揺全壊":0.03561},"geometry":{"type":"Polygon","coordinates":[[[139.78437859000007,35.658332924000035],[139.787503603,35.65833291900009],[139.78750361800007,35.66041691800007],[139.78437860500003,35.66041692300007],[139.78437859000007,35.658332924000035]]]}},{"type":"Feature","id":8582,"properties":{"MESHCODE":"5339369313","揺全壊":0.03098},"geometry":{"type":"Polygon","coordinates":[[[139.78750361800007,35.66041691800007],[139.79062863000001,35.66041691300006],[139.79062864600007,35.662499911000054],[139.78750363300003,35.66249991700005],[139.78750361800007,35.66041691800007]]]}},{"type":"Feature","id":8637,"properties":{"MESHCODE":"5339369632","揺全壊":0.03893},"geometry":{"type":"Polygon","coordinates":[[[139.82812879300002,35.662499850000074],[139.83125380400008,35.66249984500007],[139.83125382100002,35.66458284500004],[139.8281288080001,35.664582850000045],[139.82812879300002,35.662499850000074]]]}},{"type":"Feature","id":8698,"properties":{"MESHCODE":"5339377023","揺全壊":0.04565},"geometry":{"type":"Polygon","coordinates":[[[139.88125381200007,35.643749756000034],[139.88437881800007,35.64374975100009],[139.88437884000007,35.64583275000007],[139.88125383400006,35.64583275600006],[139.88125381200007,35.643749756000034]]]}},{"type":"Feature","id":8711,"properties":{"MESHCODE":"5339378022","揺全壊":0.03889},"geometry":{"type":"Polygon","coordinates":[[[139.88437888400006,35.64999975000006],[139.88750389200004,35.64999974400007],[139.88750391400004,35.65208274500009],[139.88437890600005,35.652082750000034],[139.88437888400006,35.64999975000006]]]}},{"type":"Feature","id":11266,"properties":{"MESHCODE":"5339420331","揺全壊":0.04417},"geometry":{"type":"Polygon","coordinates":[[[139.28750271800004,35.67083302100008],[139.29062771500003,35.67083302000009],[139.29062772300006,35.67291701900007],[139.28750272600007,35.67291702000006],[139.28750271800004,35.67083302100008]]]}},{"type":"Feature","id":11420,"properties":{"MESHCODE":"5339421313","揺全壊":0.04257},"geometry":{"type":"Polygon","coordinates":[[[139.28750274100003,35.677083019000065],[139.290627738,35.677083018000076],[139.29062774600004,35.679167018000044],[139.28750274800007,35.679167018000044],[139.28750274100003,35.677083019000065]]]}},{"type":"Feature","id":11426,"properties":{"MESHCODE":"5339421331","揺全壊":0.04089},"geometry":{"type":"Polygon","coordinates":[[[139.28750274800007,35.679167018000044],[139.29062774600004,35.679167018000044],[139.29062775400007,35.68125001700008],[139.2875027560001,35.68125001800007],[139.28750274800007,35.679167018000044]]]}},{"type":"Feature","id":11451,"properties":{"MESHCODE":"5339421512","揺全壊":0.03759},"geometry":{"type":"Polygon","coordinates":[[[139.31562770800008,35.675000013000044],[139.31875270500007,35.675000013000044],[139.31875271400008,35.67708301300007],[139.3156277170001,35.67708301300007],[139.31562770800008,35.675000013000044]]]}},{"type":"Feature","id":11453,"properties":{"MESHCODE":"5339421514","揺全壊":0.04943},"geometry":{"type":"Polygon","coordinates":[[[139.3156277170001,35.67708301300007],[139.31875271400008,35.67708301300007],[139.318752722,35.67916701300004],[139.315627725,35.679167014000086],[139.3156277170001,35.67708301300007]]]}},{"type":"Feature","id":11469,"properties":{"MESHCODE":"5339421614","揺全壊":0.03036},"geometry":{"type":"Polygon","coordinates":[[[139.32812770600003,35.67708301200008],[139.33125270300002,35.67708301200008],[139.33125271200004,35.67916701200005],[139.32812771400006,35.67916701200005],[139.32812770600003,35.67708301200008]]]}},{"type":"Feature","id":11470,"properties":{"MESHCODE":"5339421621","揺全壊":0.03804},"geometry":{"type":"Polygon","coordinates":[[[139.331252694,35.675000011000066],[139.3343776910001,35.675000011000066],[139.3343777,35.67708301200008],[139.33125270300002,35.67708301200008],[139.331252694,35.675000011000066]]]}},{"type":"Feature","id":11506,"properties":{"MESHCODE":"5339421831","揺全壊":0.0461},"geometry":{"type":"Polygon","coordinates":[[[139.3500027020001,35.679167015000075],[139.35312770200005,35.679167017000054],[139.35312771100007,35.68125001800007],[139.350002711,35.681250016000035],[139.3500027020001,35.679167015000075]]]}},{"type":"Feature","id":11511,"properties":{"MESHCODE":"5339421842","揺全壊":0.03406},"geometry":{"type":"Polygon","coordinates":[[[139.35937770200007,35.67916702200006],[139.36250270100004,35.67916702400004],[139.36250271200004,35.681250024000065],[139.3593777110001,35.681250022000086],[139.35937770200007,35.67916702200006]]]}},{"type":"Feature","id":11592,"properties":{"MESHCODE":"5339422343","揺全壊":0.03765},"geometry":{"type":"Polygon","coordinates":[[[139.29375278200007,35.68958301400005],[139.29687778000005,35.68958301400005],[139.29687778800007,35.691667014000075],[139.2937527900001,35.691667014000075],[139.29375278200007,35.68958301400005]]]}},{"type":"Feature","id":11602,"properties":{"MESHCODE":"5339422431","揺全壊":0.04071},"geometry":{"type":"Polygon","coordinates":[[[139.3000027710001,35.68750001500007],[139.30312776900007,35.68750001500007],[139.3031277770001,35.68958301400005],[139.30000277800002,35.68958301400005],[139.3000027710001,35.68750001500007]]]}},{"type":"Feature","id":11610,"properties":{"MESHCODE":"5339422511","揺全壊":0.03048},"geometry":{"type":"Polygon","coordinates":[[[139.31250274400008,35.683333014000084],[139.31562774100007,35.683333014000084],[139.3156277500001,35.68541701400005],[139.3125027530001,35.68541701400005],[139.31250274400008,35.683333014000084]]]}},{"type":"Feature","id":11647,"properties":{"MESHCODE":"5339422722","揺全壊":0.04743},"geometry":{"type":"Polygon","coordinates":[[[139.34687772100006,35.68333301600006],[139.35000272000002,35.68333301700005],[139.35000273000003,35.68541701800007],[139.34687773100006,35.68541701700008],[139.34687772100006,35.68333301600006]]]}},{"type":"Feature","id":11689,"properties":{"MESHCODE":"5339422944","揺全壊":0.04674},"geometry":{"type":"Polygon","coordinates":[[[139.371877755,35.689583033000076],[139.37500275700006,35.689583036000045],[139.37500276700007,35.69166703600007],[139.37187776500002,35.691667033000044],[139.371877755,35.689583033000076]]]}},{"type":"Feature","id":11723,"properties":{"MESHCODE":"5339423212","揺全壊":0.03202},"geometry":{"type":"Polygon","coordinates":[[[139.278127799,35.691667014000075],[139.2812527970001,35.691667014000075],[139.281252806,35.693750013000056],[139.27812780700003,35.693750013000056],[139.278127799,35.691667014000075]]]}},{"type":"Feature","id":11724,"properties":{"MESHCODE":"5339423213","揺全壊":0.03803},"geometry":{"type":"Polygon","coordinates":[[[139.27500280900006,35.693750013000056],[139.27812780700003,35.693750013000056],[139.27812781500006,35.69583301200004],[139.2750028170001,35.69583301200004],[139.27500280900006,35.693750013000056]]]}},{"type":"Feature","id":11728,"properties":{"MESHCODE":"5339423223","揺全壊":0.03388},"geometry":{"type":"Polygon","coordinates":[[[139.281252806,35.693750013000056],[139.2843778040001,35.693750013000056],[139.284377812,35.69583301200004],[139.28125281400003,35.69583301200004],[139.281252806,35.693750013000056]]]}},{"type":"Feature","id":11819,"properties":{"MESHCODE":"5339423812","揺全壊":0.03836},"geometry":{"type":"Polygon","coordinates":[[[139.35312775800003,35.69166702100006],[139.3562527580001,35.69166702200005],[139.3562527680001,35.693750023000064],[139.35312776700005,35.693750021000085],[139.35312775800003,35.69166702100006]]]}},{"type":"Feature","id":11832,"properties":{"MESHCODE":"5339423843","揺全壊":0.04014},"geometry":{"type":"Polygon","coordinates":[[[139.35625278600003,35.69791702300006],[139.35937778700008,35.69791702500004],[139.3593777970001,35.700000026000055],[139.35625279600004,35.700000024000076],[139.35625278600003,35.69791702300006]]]}},{"type":"Feature","id":11844,"properties":{"MESHCODE":"5339423933","揺全壊":0.04165},"geometry":{"type":"Polygon","coordinates":[[[139.36250278800003,35.697917027000074],[139.3656277890001,35.69791702900005],[139.3656277990001,35.70000003000007],[139.36250279800004,35.700000028000034],[139.36250278800003,35.697917027000074]]]}},{"type":"Feature","id":11845,"properties":{"MESHCODE":"5339423934","揺全壊":0.03278},"geometry":{"type":"Polygon","coordinates":[[[139.3656277890001,35.69791702900005],[139.368752792,35.69791703100009],[139.36875280100003,35.70000003200005],[139.3656277990001,35.70000003000007],[139.3656277890001,35.69791702900005]]]}},{"type":"Feature","id":11848,"properties":{"MESHCODE":"5339423943","揺全壊":0.04696},"geometry":{"type":"Polygon","coordinates":[[[139.368752792,35.69791703100009],[139.37187779400006,35.697917034000056],[139.37187780400006,35.700000034000084],[139.36875280100003,35.70000003200005],[139.368752792,35.69791703100009]]]}},{"type":"Feature","id":11990,"properties":{"MESHCODE":"5339424841","揺全壊":0.04372},"geometry":{"type":"Polygon","coordinates":[[[139.35625281400007,35.70416702300008],[139.35937781500002,35.70416702500006],[139.35937782400003,35.70625002400004],[139.3562528230001,35.70625002200006],[139.35625281400007,35.70416702300008]]]}},{"type":"Feature","id":12156,"properties":{"MESHCODE":"5339425913","揺全壊":0.04746},"geometry":{"type":"Polygon","coordinates":[[[139.36250284300002,35.71041702400004],[139.36562784600005,35.71041702600007],[139.36562785600006,35.71250002600004],[139.36250285200003,35.712500024000065],[139.36250284300002,35.71041702400004]]]}},{"type":"Feature","id":12157,"properties":{"MESHCODE":"5339425914","揺全壊":0.04718},"geometry":{"type":"Polygon","coordinates":[[[139.36562784600005,35.71041702600007],[139.3687528490001,35.71041702800005],[139.368752858,35.71250002700009],[139.36562785600006,35.71250002600004],[139.36562784600005,35.71041702600007]]]}},{"type":"Feature","id":12854,"properties":{"MESHCODE":"5339430241","揺全壊":0.03701},"geometry":{"type":"Polygon","coordinates":[[[139.4062527110001,35.67083308900004],[139.4093777170001,35.67083309600008],[139.4093777280001,35.67291709500006],[139.4062527220001,35.67291708800008],[139.4062527110001,35.67083308900004]]]}},{"type":"Feature","id":12859,"properties":{"MESHCODE":"5339430312","揺全壊":0.04181},"geometry":{"type":"Polygon","coordinates":[[[139.41562771000008,35.666667113000074],[139.41875271800006,35.666667121000046],[139.41875272900006,35.66875011800005],[139.41562772100008,35.668750111000065],[139.41562771000008,35.666667113000074]]]}},{"type":"Feature","id":12862,"properties":{"MESHCODE":"5339430321","揺全壊":0.03883},"geometry":{"type":"Polygon","coordinates":[[[139.41875271800006,35.666667121000046],[139.42187772600005,35.666667129000075],[139.42187773600006,35.66875012500009],[139.41875272900006,35.66875011800005],[139.41875271800006,35.666667121000046]]]}},{"type":"Feature","id":12871,"properties":{"MESHCODE":"5339430342","揺全壊":0.04373},"geometry":{"type":"Polygon","coordinates":[[[139.42187774700005,35.67083312300008],[139.42500275400005,35.67083312900007],[139.42500276500004,35.67291712600007],[139.42187775700006,35.67291712000008],[139.42187774700005,35.67083312300008]]]}},{"type":"Feature","id":12878,"properties":{"MESHCODE":"5339430421","揺全壊":0.03585},"geometry":{"type":"Polygon","coordinates":[[[139.43125275,35.666667148000045],[139.4343777580001,35.66666715300005],[139.4343777690001,35.66875014900006],[139.431252761,35.66875014400006],[139.43125275,35.666667148000045]]]}},{"type":"Feature","id":12879,"properties":{"MESHCODE":"5339430422","揺全壊":0.04184},"geometry":{"type":"Polygon","coordinates":[[[139.4343777580001,35.66666715300005],[139.43750276700007,35.66666715800005],[139.43750277700008,35.668750154000065],[139.4343777690001,35.66875014900006],[139.4343777580001,35.66666715300005]]]}},{"type":"Feature","id":12883,"properties":{"MESHCODE":"5339430432","揺全壊":0.03527},"geometry":{"type":"Polygon","coordinates":[[[139.42812776300002,35.67083313400008],[139.431252771,35.67083313900008],[139.431252781,35.67291713600008],[139.42812777300003,35.67291713100008],[139.42812776300002,35.67083313400008]]]}},{"type":"Feature","id":12889,"properties":{"MESHCODE":"5339430444","揺全壊":0.04884},"geometry":{"type":"Polygon","coordinates":[[[139.434377789,35.672917141000084],[139.4375027970001,35.67291714600009],[139.4375028080001,35.675000142000044],[139.4343778,35.67500013700004],[139.434377789,35.672917141000084]]]}},{"type":"Feature","id":12985,"properties":{"MESHCODE":"5339431044","揺全壊":0.03477},"geometry":{"type":"Polygon","coordinates":[[[139.384377728,35.68125004800004],[139.38750273100004,35.68125005200005],[139.38750274100005,35.68333305300007],[139.384377739,35.683333048000065],[139.384377728,35.68125004800004]]]}},{"type":"Feature","id":13009,"properties":{"MESHCODE":"5339431224","揺全壊":0.04945},"geometry":{"type":"Polygon","coordinates":[[[139.4093777490001,35.67708309200009],[139.4125027550001,35.67708309800008],[139.412502765,35.67916709600007],[139.409377759,35.67916709000008],[139.4093777490001,35.67708309200009]]]}},{"type":"Feature","id":13010,"properties":{"MESHCODE":"5339431231","揺全壊":0.04131},"geometry":{"type":"Polygon","coordinates":[[[139.4000027400001,35.67916707200004],[139.403127746,35.679167078000035],[139.403127757,35.68125007700007],[139.4000027510001,35.68125007100008],[139.4000027400001,35.67916707200004]]]}},{"type":"Feature","id":13024,"properties":{"MESHCODE":"5339431323","揺全壊":0.04716},"geometry":{"type":"Polygon","coordinates":[[[139.41875277000008,35.67708310900008],[139.42187777800007,35.677083114000084],[139.42187778800007,35.67916711100008],[139.41875278100008,35.67916710600008],[139.41875277000008,35.67708310900008]]]}},{"type":"Feature","id":13038,"properties":{"MESHCODE":"5339431421","揺全壊":0.03033},"geometry":{"type":"Polygon","coordinates":[[[139.43125279100002,35.67500013200004],[139.4343778,35.67500013700004],[139.43437781,35.67708313400004],[139.43125280200002,35.67708312900004],[139.43125279100002,35.67500013200004]]]}},{"type":"Feature","id":13090,"properties":{"MESHCODE":"5339431731","揺全壊":0.04346},"geometry":{"type":"Polygon","coordinates":[[[139.46250290600005,35.679167144000075],[139.46562791600002,35.67916714100005],[139.46562792600002,35.68125013700006],[139.46250291500007,35.68125014000009],[139.46250290600005,35.679167144000075]]]}},{"type":"Feature","id":13137,"properties":{"MESHCODE":"5339432024","揺全壊":0.03351},"geometry":{"type":"Polygon","coordinates":[[[139.38437774800002,35.68541704800003],[139.38750275200005,35.68541705200005],[139.38750276300004,35.687500051000086],[139.38437775800003,35.68750004800006],[139.38437774800002,35.68541704800003]]]}},{"type":"Feature","id":13138,"properties":{"MESHCODE":"5339432031","揺全壊":0.03037},"geometry":{"type":"Polygon","coordinates":[[[139.37500274700005,35.687500036000074],[139.37812775100008,35.68750004000009],[139.3781277610001,35.68958304000006],[139.37500275700006,35.689583036000045],[139.37500274700005,35.687500036000074]]]}},{"type":"Feature","id":13145,"properties":{"MESHCODE":"5339432044","揺全壊":0.03352},"geometry":{"type":"Polygon","coordinates":[[[139.38437776900003,35.68958304700004],[139.38750277300005,35.68958305100006],[139.38750278300006,35.691667050000035],[139.38437777900003,35.69166704700007],[139.38437776900003,35.68958304700004]]]}},{"type":"Feature","id":13156,"properties":{"MESHCODE":"5339432133","揺全壊":0.04799},"geometry":{"type":"Polygon","coordinates":[[[139.38750277300005,35.68958305100006],[139.39062777800007,35.68958305500007],[139.39062778800007,35.69166705400005],[139.38750278300006,35.691667050000035],[139.38750277300005,35.68958305100006]]]}},{"type":"Feature","id":13159,"properties":{"MESHCODE":"5339432142","揺全壊":0.03975},"geometry":{"type":"Polygon","coordinates":[[[139.3968777770001,35.68750006400006],[139.400002782,35.68750006800008],[139.400002792,35.68958306800005],[139.3968777880001,35.68958306300004],[139.3968777770001,35.68750006400006]]]}},{"type":"Feature","id":13162,"properties":{"MESHCODE":"5339432211","揺全壊":0.04688},"geometry":{"type":"Polygon","coordinates":[[[139.400002761,35.68333307000006],[139.4031277680001,35.683333075000064],[139.403127778,35.68541707400004],[139.400002771,35.68541706900004],[139.400002761,35.68333307000006]]]}},{"type":"Feature","id":13165,"properties":{"MESHCODE":"5339432214","揺全壊":0.03148},"geometry":{"type":"Polygon","coordinates":[[[139.403127778,35.68541707400004],[139.4062527850001,35.68541707900005],[139.4062527960001,35.687500078000085],[139.403127788,35.68750007300008],[139.403127778,35.68541707400004]]]}},{"type":"Feature","id":13169,"properties":{"MESHCODE":"5339432224","揺全壊":0.04594},"geometry":{"type":"Polygon","coordinates":[[[139.409377791,35.68541708400005],[139.412502797,35.685417089000055],[139.412502808,35.687500088000036],[139.409377802,35.68750008300009],[139.409377791,35.68541708400005]]]}},{"type":"Feature","id":13300,"properties":{"MESHCODE":"5339433033","揺全壊":0.04578},"geometry":{"type":"Polygon","coordinates":[[[139.375002795,35.697917036000035],[139.37812780000002,35.69791703900006],[139.37812781000002,35.70000003900009],[139.375002805,35.70000003600006],[139.375002795,35.697917036000035]]]}},{"type":"Feature","id":13309,"properties":{"MESHCODE":"5339433114","揺全壊":0.04052},"geometry":{"type":"Polygon","coordinates":[[[139.39062779800008,35.69375005300009],[139.3937528030001,35.693750057000045],[139.3937528130001,35.69583305600008],[139.3906278080001,35.69583305200007],[139.39062779800008,35.69375005300009]]]}},{"type":"Feature","id":13414,"properties":{"MESHCODE":"5339433741","揺全壊":0.03061},"geometry":{"type":"Polygon","coordinates":[[[139.46875300200008,35.69583311000008],[139.47187801100006,35.695833108000045],[139.47187802000008,35.697917105000045],[139.4687530110001,35.69791710700008],[139.46875300200008,35.69583311000008]]]}},{"type":"Feature","id":13455,"properties":{"MESHCODE":"5339434022","揺全壊":0.04656},"geometry":{"type":"Polygon","coordinates":[[[139.38437781800008,35.700000044000035],[139.3875028220001,35.70000004700006],[139.3875028330001,35.70208304600004],[139.38437782800008,35.70208304300007],[139.38437781800008,35.700000044000035]]]}},{"type":"Feature","id":13498,"properties":{"MESHCODE":"5339434311","揺全壊":0.04067},"geometry":{"type":"Polygon","coordinates":[[[139.412502873,35.70000007500005],[139.4156278800001,35.70000007800007],[139.4156278910001,35.702083075000075],[139.412502883,35.70208307300004],[139.412502873,35.70000007500005]]]}},{"type":"Feature","id":13500,"properties":{"MESHCODE":"5339434313","揺全壊":0.04765},"geometry":{"type":"Polygon","coordinates":[[[139.412502883,35.70208307300004],[139.4156278910001,35.702083075000075],[139.4156279,35.704167072000075],[139.412502893,35.70416706900005],[139.412502883,35.70208307300004]]]}},{"type":"Feature","id":13506,"properties":{"MESHCODE":"5339434331","揺全壊":0.04612},"geometry":{"type":"Polygon","coordinates":[[[139.412502893,35.70416706900005],[139.4156279,35.704167072000075],[139.415627911,35.70625007000007],[139.41250290300002,35.70625006700004],[139.412502893,35.70416706900005]]]}},{"type":"Feature","id":13522,"properties":{"MESHCODE":"5339434431","揺全壊":0.03635},"geometry":{"type":"Polygon","coordinates":[[[139.42500292400007,35.70416708100004],[139.42812793200005,35.70416708300007],[139.42812794200006,35.706250080000075],[139.42500293400008,35.70625007800004],[139.42500292400007,35.70416708100004]]]}},{"type":"Feature","id":13523,"properties":{"MESHCODE":"5339434432","揺全壊":0.0362},"geometry":{"type":"Polygon","coordinates":[[[139.42812793200005,35.70416708300007],[139.43125294000004,35.70416708500005],[139.43125295000004,35.706250082000054],[139.42812794200006,35.706250080000075],[139.42812793200005,35.70416708300007]]]}},{"type":"Feature","id":13604,"properties":{"MESHCODE":"5339434933","揺全壊":0.03973},"geometry":{"type":"Polygon","coordinates":[[[139.487503103,35.70625008500008],[139.49062811700003,35.70625007800004],[139.49062812500006,35.70833307600009],[139.487503112,35.70833308300007],[139.487503103,35.70625008500008]]]}},{"type":"Feature","id":13611,"properties":{"MESHCODE":"5339435012","揺全壊":0.03239},"geometry":{"type":"Polygon","coordinates":[[[139.37812784900007,35.70833303500007],[139.38125285500007,35.708333038000035],[139.3812528640001,35.71041703600008],[139.37812785900007,35.710417034000045],[139.37812784900007,35.70833303500007]]]}},{"type":"Feature","id":13663,"properties":{"MESHCODE":"5339435322","揺全壊":0.03842},"geometry":{"type":"Polygon","coordinates":[[[139.4218779370001,35.70833307300006],[139.42500294400008,35.70833307500004],[139.42500295600007,35.71041707100005],[139.4218779480001,35.71041706900007],[139.4218779370001,35.70833307300006]]]}},{"type":"Feature","id":13674,"properties":{"MESHCODE":"5339435411","揺全壊":0.04467},"geometry":{"type":"Polygon","coordinates":[[[139.42500294400008,35.70833307500004],[139.42812795300006,35.70833307700008],[139.42812796400005,35.71041707400008],[139.42500295600007,35.71041707100005],[139.42500294400008,35.70833307500004]]]}},{"type":"Feature","id":13676,"properties":{"MESHCODE":"5339435413","揺全壊":0.04757},"geometry":{"type":"Polygon","coordinates":[[[139.42500295600007,35.71041707100005],[139.42812796400005,35.71041707400008],[139.42812797500005,35.71250007000009],[139.42500296700007,35.712500068000054],[139.42500295600007,35.71041707100005]]]}},{"type":"Feature","id":13754,"properties":{"MESHCODE":"5339435911","揺全壊":0.04102},"geometry":{"type":"Polygon","coordinates":[[[139.487503112,35.70833308300007],[139.49062812500006,35.70833307600009],[139.49062813700004,35.71041707200004],[139.487503123,35.71041707900008],[139.487503112,35.70833308300007]]]}},{"type":"Feature","id":13809,"properties":{"MESHCODE":"5339436224","揺全壊":0.03077},"geometry":{"type":"Polygon","coordinates":[[[139.40937796000003,35.71875005000004],[139.41250296700002,35.718750053000065],[139.41250297800002,35.72083305000007],[139.40937797100003,35.72083304700004],[139.40937796000003,35.71875005000004]]]}},{"type":"Feature","id":13815,"properties":{"MESHCODE":"5339436242","揺全壊":0.04261},"geometry":{"type":"Polygon","coordinates":[[[139.40937797100003,35.72083304700004],[139.41250297800002,35.72083305000007],[139.41250298900002,35.722917048000056],[139.40937798100003,35.72291704500009],[139.40937797100003,35.72083304700004]]]}},{"type":"Feature","id":13817,"properties":{"MESHCODE":"5339436244","揺全壊":0.04784},"geometry":{"type":"Polygon","coordinates":[[[139.40937798100003,35.72291704500009],[139.41250298900002,35.722917048000056],[139.412503,35.72500004400007],[139.40937799200003,35.72500004200009],[139.40937798100003,35.72291704500009]]]}},{"type":"Feature","id":13847,"properties":{"MESHCODE":"5339436442","揺全壊":0.04853},"geometry":{"type":"Polygon","coordinates":[[[139.4343780370001,35.720833060000075],[139.43750304500008,35.720833061000064],[139.4375030550001,35.722917057000075],[139.434378047,35.722917056000085],[139.4343780370001,35.720833060000075]]]}},{"type":"Feature","id":13903,"properties":{"MESHCODE":"5339436822","揺全壊":0.03683},"geometry":{"type":"Polygon","coordinates":[[[139.484378149,35.71666706600007],[139.4875031580001,35.716667064000035],[139.48750317000008,35.71875005900006],[139.484378161,35.71875006100004],[139.484378149,35.71666706600007]]]}},{"type":"Feature","id":13936,"properties":{"MESHCODE":"5339437023","揺全壊":0.03254},"geometry":{"type":"Polygon","coordinates":[[[139.38125294000008,35.72708302600006],[139.3843779450001,35.72708302800004],[139.3843779550001,35.72916702500004],[139.3812529490001,35.72916702400005],[139.38125294000008,35.72708302600006]]]}},{"type":"Feature","id":13939,"properties":{"MESHCODE":"5339437032","揺全壊":0.04636},"geometry":{"type":"Polygon","coordinates":[[[139.37812794400008,35.72916702300006],[139.3812529490001,35.72916702400005],[139.381252959,35.73125002200004],[139.3781279530001,35.73125002200004],[139.37812794400008,35.72916702300006]]]}},{"type":"Feature","id":13948,"properties":{"MESHCODE":"5339437113","揺全壊":0.04479},"geometry":{"type":"Polygon","coordinates":[[[139.3875029510001,35.72708302800004],[139.39062795900008,35.727083030000074],[139.3906279680001,35.72916702800006],[139.387502961,35.729167026000084],[139.3875029510001,35.72708302800004]]]}},{"type":"Feature","id":13959,"properties":{"MESHCODE":"5339437142","揺全壊":0.03366},"geometry":{"type":"Polygon","coordinates":[[[139.39687798300008,35.72916703100009],[139.40000299100006,35.72916703200008],[139.40000300100007,35.73125003000007],[139.3968779930001,35.73125002900008],[139.39687798300008,35.72916703100009]]]}},{"type":"Feature","id":13960,"properties":{"MESHCODE":"5339437143","揺全壊":0.04359},"geometry":{"type":"Polygon","coordinates":[[[139.3937529850001,35.731250027000044],[139.3968779930001,35.73125002900008],[139.3968780030001,35.73333302700007],[139.3937529960001,35.733333025000036],[139.3937529850001,35.731250027000044]]]}},{"type":"Feature","id":13961,"properties":{"MESHCODE":"5339437144","揺全壊":0.04051},"geometry":{"type":"Polygon","coordinates":[[[139.3968779930001,35.73125002900008],[139.40000300100007,35.73125003000007],[139.40000301100008,35.73333302800006],[139.3968780030001,35.73333302700007],[139.3968779930001,35.73125002900008]]]}},{"type":"Feature","id":13966,"properties":{"MESHCODE":"5339437221","揺全壊":0.032},"geometry":{"type":"Polygon","coordinates":[[[139.40625298500004,35.725000040000054],[139.40937799200003,35.72500004200009],[139.40937800300003,35.727083039000036],[139.40625299600003,35.727083038000046],[139.40625298500004,35.725000040000054]]]}},{"type":"Feature","id":13968,"properties":{"MESHCODE":"5339437223","揺全壊":0.03026},"geometry":{"type":"Polygon","coordinates":[[[139.40625299600003,35.727083038000046],[139.40937800300003,35.727083039000036],[139.40937801500002,35.729167036000035],[139.40625300700003,35.729167035000046],[139.40625299600003,35.727083038000046]]]}},{"type":"Feature","id":13970,"properties":{"MESHCODE":"5339437231","揺全壊":0.04874},"geometry":{"type":"Polygon","coordinates":[[[139.40000299100006,35.72916703200008],[139.40312799900005,35.72916703300007],[139.40312800900006,35.73125003100006],[139.40000300100007,35.73125003000007],[139.40000299100006,35.72916703200008]]]}},{"type":"Feature","id":13971,"properties":{"MESHCODE":"5339437232","揺全壊":0.03717},"geometry":{"type":"Polygon","coordinates":[[[139.40312799900005,35.72916703300007],[139.40625300700003,35.729167035000046],[139.40625301700004,35.73125003200005],[139.40312800900006,35.73125003100006],[139.40312799900005,35.72916703300007]]]}},{"type":"Feature","id":13978,"properties":{"MESHCODE":"5339437311","揺全壊":0.04013},"geometry":{"type":"Polygon","coordinates":[[[139.412503,35.72500004400007],[139.415628008,35.72500004600005],[139.415628019,35.72708304200006],[139.412503011,35.72708304100007],[139.412503,35.72500004400007]]]}},{"type":"Feature","id":13988,"properties":{"MESHCODE":"5339437333","揺全壊":0.04633},"geometry":{"type":"Polygon","coordinates":[[[139.412503033,35.731250034000084],[139.4156280410001,35.73125003500007],[139.4156280530001,35.733333032000075],[139.412503044,35.733333031000086],[139.412503033,35.731250034000084]]]}},{"type":"Feature","id":14002,"properties":{"MESHCODE":"5339437431","揺全壊":0.0416},"geometry":{"type":"Polygon","coordinates":[[[139.42500305600004,35.729167043000075],[139.42812806400002,35.729167044000064],[139.42812807500002,35.73125004000008],[139.42500306600004,35.73125004000008],[139.42500305600004,35.729167043000075]]]}},{"type":"Feature","id":14014,"properties":{"MESHCODE":"5339437521","揺全壊":0.04601},"geometry":{"type":"Polygon","coordinates":[[[139.44375308300005,35.72500005400008],[139.44687809200002,35.725000055000066],[139.446878104,35.72708305100008],[139.44375309500003,35.72708305000009],[139.44375308300005,35.72500005400008]]]}},{"type":"Feature","id":14112,"properties":{"MESHCODE":"5339438123","揺全壊":0.03265},"geometry":{"type":"Polygon","coordinates":[[[139.393753006,35.73541702300008],[139.3968780140001,35.73541702300008],[139.3968780240001,35.73750002100007],[139.393753016,35.737500020000084],[139.393753006,35.73541702300008]]]}},{"type":"Feature","id":14118,"properties":{"MESHCODE":"5339438141","揺全壊":0.0433},"geometry":{"type":"Polygon","coordinates":[[[139.393753016,35.737500020000084],[139.3968780240001,35.73750002100007],[139.396878034,35.739583018000076],[139.393753026,35.739583018000076],[139.393753016,35.737500020000084]]]}},{"type":"Feature","id":14120,"properties":{"MESHCODE":"5339438143","揺全壊":0.04912},"geometry":{"type":"Polygon","coordinates":[[[139.393753026,35.739583018000076],[139.396878034,35.739583018000076],[139.396878045,35.741667016000065],[139.39375303600002,35.741667015000075],[139.393753026,35.739583018000076]]]}},{"type":"Feature","id":14132,"properties":{"MESHCODE":"5339438233","揺全壊":0.03346},"geometry":{"type":"Polygon","coordinates":[[[139.40000304300008,35.739583019000065],[139.40312805200006,35.739583020000055],[139.40312806200006,35.741667017000054],[139.4000030530001,35.741667017000054],[139.40000304300008,35.739583019000065]]]}},{"type":"Feature","id":14148,"properties":{"MESHCODE":"5339438333","揺全壊":0.03242},"geometry":{"type":"Polygon","coordinates":[[[139.412503077,35.73958302200003],[139.41562808600008,35.73958302300008],[139.41562809800007,35.74166702000008],[139.4125030890001,35.74166701900009],[139.412503077,35.73958302200003]]]}},{"type":"Feature","id":14152,"properties":{"MESHCODE":"5339438343","揺全壊":0.03102},"geometry":{"type":"Polygon","coordinates":[[[139.41875309500006,35.73958302400007],[139.42187810400003,35.73958302500006],[139.42187811600002,35.74166702200006],[139.41875310700004,35.74166702100007],[139.41875309500006,35.73958302400007]]]}},{"type":"Feature","id":14155,"properties":{"MESHCODE":"5339438412","揺全壊":0.03325},"geometry":{"type":"Polygon","coordinates":[[[139.42812808600002,35.73333303700008],[139.431253094,35.73333303700008],[139.4312531070001,35.73541703400008],[139.428128098,35.73541703300009],[139.42812808600002,35.73333303700008]]]}},{"type":"Feature","id":14169,"properties":{"MESHCODE":"5339438444","揺全壊":0.04172},"geometry":{"type":"Polygon","coordinates":[[[139.43437814000004,35.73958302600005],[139.437503149,35.73958302600005],[139.437503161,35.74166702200006],[139.43437815200002,35.74166702200006],[139.43437814000004,35.73958302600005]]]}},{"type":"Feature","id":14197,"properties":{"MESHCODE":"5339438634","揺全壊":0.03477},"geometry":{"type":"Polygon","coordinates":[[[139.45312819100002,35.739583028000084],[139.4562532000001,35.73958302700004],[139.45625321300008,35.74166702400004],[139.453128203,35.74166702500008],[139.45312819100002,35.739583028000084]]]}},{"type":"Feature","id":14208,"properties":{"MESHCODE":"5339438723","揺全壊":0.04905},"geometry":{"type":"Polygon","coordinates":[[[139.46875321100003,35.73541703300009],[139.47187822,35.73541703200004],[139.471878231,35.73750002700007],[139.46875322200003,35.737500028000056],[139.46875321100003,35.73541703300009]]]}},{"type":"Feature","id":14269,"properties":{"MESHCODE":"5339439114","揺全壊":0.03327},"geometry":{"type":"Polygon","coordinates":[[[139.39062803900003,35.74375001200008],[139.39375304700002,35.74375001300007],[139.393753059,35.74583301000007],[139.39062805000003,35.74583301000007],[139.39062803900003,35.74375001200008]]]}},{"type":"Feature","id":14270,"properties":{"MESHCODE":"5339439121","揺全壊":0.03011},"geometry":{"type":"Polygon","coordinates":[[[139.39375303600002,35.741667015000075],[139.396878045,35.741667016000065],[139.3968780560001,35.74375001400006],[139.39375304700002,35.74375001300007],[139.39375303600002,35.741667015000075]]]}},{"type":"Feature","id":14302,"properties":{"MESHCODE":"5339439321","揺全壊":0.0327},"geometry":{"type":"Polygon","coordinates":[[[139.41875310700004,35.74166702100007],[139.42187811600002,35.74166702200006],[139.421878128,35.74375001800007],[139.41875312000002,35.74375001700008],[139.41875310700004,35.74166702100007]]]}},{"type":"Feature","id":14303,"properties":{"MESHCODE":"5339439322","揺全壊":0.03416},"geometry":{"type":"Polygon","coordinates":[[[139.42187811600002,35.74166702200006],[139.4250031250001,35.74166702200006],[139.4250031370001,35.74375001900006],[139.421878128,35.74375001800007],[139.42187811600002,35.74166702200006]]]}},{"type":"Feature","id":14308,"properties":{"MESHCODE":"5339439333","揺全壊":0.04206},"geometry":{"type":"Polygon","coordinates":[[[139.41250312600005,35.74791700900005],[139.415628136,35.74791701000004],[139.415628148,35.75000000600005],[139.41250313900002,35.75000000600005],[139.41250312600005,35.74791700900005]]]}},{"type":"Feature","id":14312,"properties":{"MESHCODE":"5339439343","揺全壊":0.04379},"geometry":{"type":"Polygon","coordinates":[[[139.4187531450001,35.74791701000004],[139.42187815400007,35.747917011000084],[139.42187816600006,35.75000000700004],[139.41875315700008,35.75000000700004],[139.4187531450001,35.74791701000004]]]}},{"type":"Feature","id":14313,"properties":{"MESHCODE":"5339439344","揺全壊":0.03117},"geometry":{"type":"Polygon","coordinates":[[[139.42187815400007,35.747917011000084],[139.42500316200005,35.74791701200007],[139.42500317500003,35.750000008000086],[139.42187816600006,35.75000000700004],[139.42187815400007,35.747917011000084]]]}},{"type":"Feature","id":14317,"properties":{"MESHCODE":"5339439414","揺全壊":0.0421},"geometry":{"type":"Polygon","coordinates":[[[139.42812814600006,35.74375001900006],[139.43125315500004,35.74375001900006],[139.431253168,35.74583301500007],[139.42812815900004,35.74583301500007],[139.42812814600006,35.74375001900006]]]}},{"type":"Feature","id":14323,"properties":{"MESHCODE":"5339439432","揺全壊":0.03649},"geometry":{"type":"Polygon","coordinates":[[[139.42812815900004,35.74583301500007],[139.431253168,35.74583301500007],[139.43125318,35.74791701200007],[139.42812817100003,35.74791701200007],[139.42812815900004,35.74583301500007]]]}},{"type":"Feature","id":14326,"properties":{"MESHCODE":"5339439441","揺全壊":0.03702},"geometry":{"type":"Polygon","coordinates":[[[139.431253168,35.74583301500007],[139.4343781770001,35.74583301500007],[139.43437818900009,35.74791701200007],[139.43125318,35.74791701200007],[139.431253168,35.74583301500007]]]}},{"type":"Feature","id":14328,"properties":{"MESHCODE":"5339439443","揺全壊":0.04803},"geometry":{"type":"Polygon","coordinates":[[[139.43125318,35.74791701200007],[139.43437818900009,35.74791701200007],[139.43437820200006,35.750000008000086],[139.4312531930001,35.750000008000086],[139.43125318,35.74791701200007]]]}},{"type":"Feature","id":14329,"properties":{"MESHCODE":"5339439444","揺全壊":0.03241},"geometry":{"type":"Polygon","coordinates":[[[139.43437818900009,35.74791701200007],[139.43750319900005,35.74791701200007],[139.43750321100003,35.750000008000086],[139.43437820200006,35.750000008000086],[139.43437818900009,35.74791701200007]]]}},{"type":"Feature","id":14330,"properties":{"MESHCODE":"5339439511","揺全壊":0.03518},"geometry":{"type":"Polygon","coordinates":[[[139.437503161,35.74166702200006],[139.4406281690001,35.74166702300005],[139.44062818200007,35.74375002000005],[139.43750317400008,35.74375001900006],[139.437503161,35.74166702200006]]]}},{"type":"Feature","id":14332,"properties":{"MESHCODE":"5339439513","揺全壊":0.03802},"geometry":{"type":"Polygon","coordinates":[[[139.43750317400008,35.74375001900006],[139.44062818200007,35.74375002000005],[139.44062819400006,35.74583301500007],[139.43750318600007,35.74583301500007],[139.43750317400008,35.74375001900006]]]}},{"type":"Feature","id":14344,"properties":{"MESHCODE":"5339439543","揺全壊":0.03979},"geometry":{"type":"Polygon","coordinates":[[[139.44375321500002,35.74791701200007],[139.4468782240001,35.74791701300006],[139.44687823700008,35.750000008000086],[139.4437532280001,35.750000008000086],[139.44375321500002,35.74791701200007]]]}},{"type":"Feature","id":14345,"properties":{"MESHCODE":"5339439544","揺全壊":0.03166},"geometry":{"type":"Polygon","coordinates":[[[139.4468782240001,35.74791701300006],[139.45000323200009,35.74791701300006],[139.45000324500006,35.750000008000086],[139.44687823700008,35.750000008000086],[139.4468782240001,35.74791701300006]]]}},{"type":"Feature","id":14352,"properties":{"MESHCODE":"5339439623","揺全壊":0.04963},"geometry":{"type":"Polygon","coordinates":[[[139.45625322500007,35.74375002000005],[139.45937823400004,35.74375001900006],[139.45937824600003,35.74583301500007],[139.45625323700006,35.74583301500007],[139.45625322500007,35.74375002000005]]]}},{"type":"Feature","id":14358,"properties":{"MESHCODE":"5339439641","揺全壊":0.03439},"geometry":{"type":"Polygon","coordinates":[[[139.45625323700006,35.74583301500007],[139.45937824600003,35.74583301500007],[139.459378259,35.74791701000004],[139.45625325000003,35.747917011000084],[139.45625323700006,35.74583301500007]]]}},{"type":"Feature","id":14366,"properties":{"MESHCODE":"5339439721","揺全壊":0.03072},"geometry":{"type":"Polygon","coordinates":[[[139.4687532480001,35.74166701900009],[139.47187825600008,35.741667018000044],[139.47187826800007,35.74375001400006],[139.4687532590001,35.743750015000046],[139.4687532480001,35.74166701900009]]]}},{"type":"Feature","id":14390,"properties":{"MESHCODE":"5339439841","揺全壊":0.04742},"geometry":{"type":"Polygon","coordinates":[[[139.4812533070001,35.745833005000065],[139.48437831600006,35.745833004000076],[139.48437832800005,35.747917],[139.48125331900007,35.747917002000065],[139.4812533070001,35.745833005000065]]]}},{"type":"Feature","id":14431,"properties":{"MESHCODE":"5339440122","揺全壊":0.03318},"geometry":{"type":"Polygon","coordinates":[[[139.52187807300004,35.666667042000086],[139.52500308600008,35.666667034000056],[139.52500309900006,35.668750028000034],[139.52187808600002,35.66875003800004],[139.52187807300004,35.666667042000086]]]}},{"type":"Feature","id":14441,"properties":{"MESHCODE":"5339440144","揺全壊":0.04437},"geometry":{"type":"Polygon","coordinates":[[[139.5218781100001,35.672917029000075],[139.52500312400002,35.67291701800008],[139.525003136,35.675000014000034],[139.5218781210001,35.67500002400004],[139.5218781100001,35.672917029000075]]]}},{"type":"Feature","id":14444,"properties":{"MESHCODE":"5339440213","揺全壊":0.03197},"geometry":{"type":"Polygon","coordinates":[[[139.52500309900006,35.668750028000034],[139.52812810900002,35.66875002200004],[139.5281281230001,35.670833015000085],[139.52500311100005,35.67083302300006],[139.52500309900006,35.668750028000034]]]}},{"type":"Feature","id":14445,"properties":{"MESHCODE":"5339440214","揺全壊":0.03658},"geometry":{"type":"Polygon","coordinates":[[[139.52812810900002,35.66875002200004],[139.5312531190001,35.66875001500006],[139.53125313500004,35.670833008000045],[139.5281281230001,35.670833015000085],[139.52812810900002,35.66875002200004]]]}},{"type":"Feature","id":14451,"properties":{"MESHCODE":"5339440232","揺全壊":0.04328},"geometry":{"type":"Polygon","coordinates":[[[139.5281281230001,35.670833015000085],[139.53125313500004,35.670833008000045],[139.53125315,35.672917],[139.52812813700007,35.67291701000005],[139.5281281230001,35.670833015000085]]]}},{"type":"Feature","id":14751,"properties":{"MESHCODE":"5339442122","揺全壊":0.04886},"geometry":{"type":"Polygon","coordinates":[[[139.52187815800005,35.68333301500007],[139.52500317300007,35.683333005000065],[139.525003179,35.68541700500003],[139.5218781650001,35.68541701400005],[139.52187815800005,35.68333301500007]]]}},{"type":"Feature","id":14754,"properties":{"MESHCODE":"5339442131","揺全壊":0.03205},"geometry":{"type":"Polygon","coordinates":[[[139.512503133,35.68750003900004],[139.51562814700003,35.68750003100007],[139.51562815500006,35.68958303000005],[139.51250314100002,35.68958303800008],[139.512503133,35.68750003900004]]]}},{"type":"Feature","id":14765,"properties":{"MESHCODE":"5339442214","揺全壊":0.04746},"geometry":{"type":"Polygon","coordinates":[[[139.52812818900009,35.685417],[139.53125319800006,35.68541699600007],[139.531253204,35.68749999700009],[139.52812819500002,35.687500001000046],[139.52812818900009,35.685417]]]}},{"type":"Feature","id":15388,"properties":{"MESHCODE":"5339446113","揺全壊":0.04858},"geometry":{"type":"Polygon","coordinates":[[[139.51250326000002,35.71875001700005],[139.5156282690001,35.71875001300009],[139.515628279,35.72083301100008],[139.51250326900004,35.72083301500004],[139.51250326000002,35.71875001700005]]]}},{"type":"Feature","id":15411,"properties":{"MESHCODE":"5339446232","揺全壊":0.03883},"geometry":{"type":"Polygon","coordinates":[[[139.528128314,35.72083299600007],[139.531253321,35.720832994000034],[139.53125333000003,35.72291699200008],[139.52812832300003,35.72291699400006],[139.528128314,35.72083299600007]]]}},{"type":"Feature","id":15441,"properties":{"MESHCODE":"5339446424","揺全壊":0.04566},"geometry":{"type":"Polygon","coordinates":[[[139.5593783490001,35.71874999500005],[139.56250335000004,35.71874999700009],[139.56250336100004,35.720832994000034],[139.559378359,35.720832993000045],[139.5593783490001,35.71874999500005]]]}},{"type":"Feature","id":16094,"properties":{"MESHCODE":"5339450521","揺全壊":0.03901},"geometry":{"type":"Polygon","coordinates":[[[139.693753291,35.666667086000075],[139.69687830400005,35.666667079000035],[139.69687831800002,35.66875007600004],[139.6937533050001,35.66875008200009],[139.693753291,35.666667086000075]]]}},{"type":"Feature","id":16285,"properties":{"MESHCODE":"5339451714","揺全壊":0.0419},"geometry":{"type":"Polygon","coordinates":[[[139.71562845300002,35.677083021000044],[139.71875346500008,35.67708301500005],[139.718753482,35.67916701100006],[139.71562847100006,35.679167018000044],[139.71562845300002,35.677083021000044]]]}},{"type":"Feature","id":16287,"properties":{"MESHCODE":"5339451722","揺全壊":0.03273},"geometry":{"type":"Polygon","coordinates":[[[139.72187846000008,35.675000012000055],[139.72500347200003,35.67500000500007],[139.72500348900007,35.677083003000064],[139.72187847700002,35.67708300900006],[139.72187846000008,35.675000012000055]]]}},{"type":"Feature","id":16299,"properties":{"MESHCODE":"5339451812","揺全壊":0.04486},"geometry":{"type":"Polygon","coordinates":[[[139.72812848400008,35.675],[139.73125349600002,35.674999994000075],[139.73125351200008,35.67708299200007],[139.72812850100001,35.67708299700007],[139.72812848400008,35.675]]]}},{"type":"Feature","id":16317,"properties":{"MESHCODE":"5339451914","揺全壊":0.04713},"geometry":{"type":"Polygon","coordinates":[[[139.74062854800002,35.677082977000055],[139.74375356100006,35.67708297200005],[139.743753577,35.67916696900005],[139.74062856500007,35.679166974000054],[139.74062854800002,35.677082977000055]]]}},{"type":"Feature","id":16320,"properties":{"MESHCODE":"5339451923","揺全壊":0.03092},"geometry":{"type":"Polygon","coordinates":[[[139.74375356100006,35.67708297200005],[139.746878573,35.67708296600006],[139.74687858900006,35.679166965000036],[139.743753577,35.67916696900005],[139.74375356100006,35.67708297200005]]]}},{"type":"Feature","id":16419,"properties":{"MESHCODE":"5339452532","揺全壊":0.03904},"geometry":{"type":"Polygon","coordinates":[[[139.69062842800008,35.687500051000086],[139.6937534430001,35.687500045000036],[139.69375345900005,35.68958304100005],[139.69062844500002,35.68958304600005],[139.69062842800008,35.687500051000086]]]}},{"type":"Feature","id":16430,"properties":{"MESHCODE":"5339452621","揺全壊":0.03192},"geometry":{"type":"Polygon","coordinates":[[[139.70625346500003,35.68333302900004],[139.70937847900007,35.683333023000046],[139.709378495,35.685417019000056],[139.70625348200008,35.68541702500005],[139.70625346500003,35.68333302900004]]]}},{"type":"Feature","id":16432,"properties":{"MESHCODE":"5339452623","揺全壊":0.04226},"geometry":{"type":"Polygon","coordinates":[[[139.70625348200008,35.68541702500005],[139.709378495,35.685417019000056],[139.70937851200006,35.68750001500007],[139.706253499,35.68750002100006],[139.70625348200008,35.68541702500005]]]}},{"type":"Feature","id":16478,"properties":{"MESHCODE":"5339452921","揺全壊":0.03359},"geometry":{"type":"Polygon","coordinates":[[[139.74375361,35.683332965000034],[139.74687862200005,35.68333296000009],[139.7468786390001,35.685416958000076],[139.74375362600006,35.68541696300008],[139.74375361,35.683332965000034]]]}},{"type":"Feature","id":16480,"properties":{"MESHCODE":"5339452923","揺全壊":0.04734},"geometry":{"type":"Polygon","coordinates":[[[139.74375362600006,35.68541696300008],[139.7468786390001,35.685416958000076],[139.74687865500005,35.68749995600007],[139.7437536430001,35.68749996100007],[139.74375362600006,35.68541696300008]]]}},{"type":"Feature","id":16639,"properties":{"MESHCODE":"5339453922","揺全壊":0.04218},"geometry":{"type":"Polygon","coordinates":[[[139.74687868800004,35.69166695200005],[139.7500037000001,35.691666947000044],[139.75000371700003,35.693749945000036],[139.74687870500009,35.69374994900005],[139.74687868800004,35.69166695200005]]]}},{"type":"Feature","id":16760,"properties":{"MESHCODE":"5339454643","揺全壊":0.0437},"geometry":{"type":"Polygon","coordinates":[[[139.70625365900003,35.70624998200009],[139.70937867200007,35.70624997800007],[139.70937869,35.70833297300004],[139.70625367700006,35.708332978000044],[139.70625365900003,35.70624998200009]]]}},{"type":"Feature","id":17031,"properties":{"MESHCODE":"5339456342","揺全壊":0.04356},"geometry":{"type":"Polygon","coordinates":[[[139.671878634,35.72083298800004],[139.6750036530001,35.72083298300004],[139.6750036740001,35.72291697600008],[139.671878655,35.722916980000036],[139.671878634,35.72083298800004]]]}},{"type":"Feature","id":17070,"properties":{"MESHCODE":"5339456621","揺全壊":0.03104},"geometry":{"type":"Polygon","coordinates":[[[139.70625375500003,35.716666958000076],[139.7093787660001,35.71666695600004],[139.709378786,35.71874995100006],[139.70625377400006,35.71874995400009],[139.70625375500003,35.716666958000076]]]}},{"type":"Feature","id":17771,"properties":{"MESHCODE":"5339461012","揺全壊":0.04731},"geometry":{"type":"Polygon","coordinates":[[[139.75312858300003,35.67499995900005],[139.75625359600008,35.67499995400004],[139.75625361100003,35.67708295300008],[139.7531285980001,35.67708295700004],[139.75312858300003,35.67499995900005]]]}},{"type":"Feature","id":18057,"properties":{"MESHCODE":"5339462744","揺全壊":0.04776},"geometry":{"type":"Polygon","coordinates":[[[139.84687905700002,35.68958281600004],[139.85000407000007,35.68958281100004],[139.85000408300004,35.69166681100006],[139.8468790710001,35.691666816000065],[139.84687905700002,35.68958281600004]]]}},{"type":"Feature","id":18548,"properties":{"MESHCODE":"5339465833","揺全壊":0.03332},"geometry":{"type":"Polygon","coordinates":[[[139.85000421300003,35.714582809000035],[139.853129223,35.71458280500008],[139.853129234,35.716666804000056],[139.85000422500002,35.71666680800007],[139.85000421300003,35.714582809000035]]]}},{"type":"Feature","id":18593,"properties":{"MESHCODE":"5339466124","揺全壊":0.04167},"geometry":{"type":"Polygon","coordinates":[[[139.77187898400007,35.71874990100008],[139.77500399300004,35.718749898000056],[139.775004008,35.72083289600005],[139.77187899900002,35.72083289900007],[139.77187898400007,35.71874990100008]]]}},{"type":"Feature","id":18604,"properties":{"MESHCODE":"5339466213","揺全壊":0.043},"geometry":{"type":"Polygon","coordinates":[[[139.77500399300004,35.718749898000056],[139.778129003,35.71874989500009],[139.77812901800007,35.72083289300008],[139.775004008,35.72083289600005],[139.77500399300004,35.718749898000056]]]}},{"type":"Feature","id":18686,"properties":{"MESHCODE":"5339466721","揺全壊":0.03133},"geometry":{"type":"Polygon","coordinates":[[[139.843754204,35.71666681700009],[139.84687921500006,35.716666813000074],[139.84687922600006,35.718749812000055],[139.8437542160001,35.71874981700006],[139.843754204,35.71666681700009]]]}},{"type":"Feature","id":18960,"properties":{"MESHCODE":"5339468423","揺全壊":0.0448},"geometry":{"type":"Polygon","coordinates":[[[139.80625419900002,35.735416859000054],[139.809379208,35.735416856000086],[139.80937922100009,35.73749985500007],[139.806254212,35.737499857000046],[139.80625419900002,35.735416859000054]]]}},{"type":"Feature","id":18968,"properties":{"MESHCODE":"5339468443","揺全壊":0.03284},"geometry":{"type":"Polygon","coordinates":[[[139.8062542250001,35.73958285700007],[139.80937923400006,35.73958285400005],[139.80937924600005,35.74166685200004],[139.80625423700008,35.74166685500006],[139.8062542250001,35.73958285700007]]]}},{"type":"Feature","id":18970,"properties":{"MESHCODE":"5339468511","揺全壊":0.03068},"geometry":{"type":"Polygon","coordinates":[[[139.81250420600009,35.733332853000036],[139.81562921500006,35.73333284900008],[139.81562922700004,35.73541684800006],[139.81250421800007,35.73541685200007],[139.81250420600009,35.733332853000036]]]}},{"type":"Feature","id":19453,"properties":{"MESHCODE":"5339475234","揺全壊":0.04034},"geometry":{"type":"Polygon","coordinates":[[[139.90312929900006,35.714582747000065],[139.90625429400006,35.71458274300005],[139.90625430300008,35.716666745000055],[139.90312930700009,35.71666674700003],[139.90312929900006,35.714582747000065]]]}},{"type":"Feature","id":19520,"properties":{"MESHCODE":"5339477123","揺全壊":0.03126},"geometry":{"type":"Polygon","coordinates":[[[139.89375435800002,35.72708275600007],[139.8968793580001,35.72708275300005],[139.8968793690001,35.72916675300007],[139.89375436900002,35.72916675600004],[139.89375435800002,35.72708275600007]]]}},{"type":"Feature","id":23458,"properties":{"MESHCODE":"5339524124","揺全壊":0.03242},"geometry":{"type":"Polygon","coordinates":[[[139.27187824500004,35.78541693900007],[139.27500324800008,35.78541694000006],[139.27500326000006,35.787499937000064],[139.27187825800002,35.787499937000064],[139.27187824500004,35.78541693900007]]]}},{"type":"Feature","id":23623,"properties":{"MESHCODE":"5339525211","揺全壊":0.04903},"geometry":{"type":"Polygon","coordinates":[[[139.27500328300005,35.791666934000034],[139.27812828600008,35.791666934000034],[139.27812829800007,35.79374993000005],[139.27500329600002,35.79374993000005],[139.27500328300005,35.791666934000034]]]}},{"type":"Feature","id":23624,"properties":{"MESHCODE":"5339525212","揺全壊":0.04757},"geometry":{"type":"Polygon","coordinates":[[[139.27812828600008,35.791666934000034],[139.28125328700003,35.791666934000034],[139.2812533,35.79374993000005],[139.27812829800007,35.79374993000005],[139.27812828600008,35.791666934000034]]]}},{"type":"Feature","id":23625,"properties":{"MESHCODE":"5339525213","揺全壊":0.03807},"geometry":{"type":"Polygon","coordinates":[[[139.27500329600002,35.79374993000005],[139.27812829800007,35.79374993000005],[139.27812831100005,35.79583292800004],[139.275003308,35.79583292800004],[139.27500329600002,35.79374993000005]]]}},{"type":"Feature","id":23641,"properties":{"MESHCODE":"5339525313","揺全壊":0.03777},"geometry":{"type":"Polygon","coordinates":[[[139.2875033040001,35.79374993000005],[139.29062830600003,35.79374993000005],[139.290628319,35.79583292700005],[139.28750331700007,35.79583292800004],[139.2875033040001,35.79374993000005]]]}},{"type":"Feature","id":23650,"properties":{"MESHCODE":"5339525334","揺全壊":0.03017},"geometry":{"type":"Polygon","coordinates":[[[139.290628331,35.79791692500004],[139.29375333400003,35.79791692400005],[139.293753347,35.79999992100005],[139.29062834500007,35.79999992100005],[139.290628331,35.79791692500004]]]}},{"type":"Feature","id":23783,"properties":{"MESHCODE":"5339526424","揺全壊":0.03864},"geometry":{"type":"Polygon","coordinates":[[[139.30937837600004,35.80208291400004],[139.3125033780001,35.80208291300005],[139.31250339300004,35.80416691000005],[139.30937839,35.80416691100004],[139.30937837600004,35.80208291400004]]]}},{"type":"Feature","id":23794,"properties":{"MESHCODE":"5339526513","揺全壊":0.03161},"geometry":{"type":"Polygon","coordinates":[[[139.3125033780001,35.80208291300005],[139.3156283830001,35.80208291200006],[139.31562839700007,35.80416690800007],[139.31250339300004,35.80416691000005],[139.3125033780001,35.80208291300005]]]}},{"type":"Feature","id":24063,"properties":{"MESHCODE":"5339530042","揺全壊":0.04159},"geometry":{"type":"Polygon","coordinates":[[[139.38437807600008,35.75416700100004],[139.38750308600004,35.754167],[139.38750309700004,35.756249997000054],[139.38437808700007,35.756249998000044],[139.38437807600008,35.75416700100004]]]}},{"type":"Feature","id":24064,"properties":{"MESHCODE":"5339530043","揺全壊":0.03717},"geometry":{"type":"Polygon","coordinates":[[[139.381253077,35.756249998000044],[139.38437808700007,35.756249998000044],[139.38437809800007,35.758332995000046],[139.381253087,35.758332996000036],[139.381253077,35.756249998000044]]]}},{"type":"Feature","id":24083,"properties":{"MESHCODE":"5339530212","揺全壊":0.03032},"geometry":{"type":"Polygon","coordinates":[[[139.40312811,35.75000000600005],[139.4062531200001,35.75000000600005],[139.40625313200007,35.75208300200006],[139.4031281230001,35.75208300200006],[139.40312811,35.75000000600005]]]}},{"type":"Feature","id":24084,"properties":{"MESHCODE":"5339530213","揺全壊":0.03389},"geometry":{"type":"Polygon","coordinates":[[[139.40000311300003,35.75208300200006],[139.4031281230001,35.75208300200006],[139.4031281340001,35.75416699800007],[139.400003125,35.75416699800007],[139.40000311300003,35.75208300200006]]]}},{"type":"Feature","id":24094,"properties":{"MESHCODE":"5339530241","揺全壊":0.03937},"geometry":{"type":"Polygon","coordinates":[[[139.40625314400006,35.75416699800007],[139.40937815400002,35.75416699800007],[139.409378166,35.756249995000076],[139.40625315700004,35.756249995000076],[139.40625314400006,35.75416699800007]]]}},{"type":"Feature","id":24115,"properties":{"MESHCODE":"5339530412","揺全壊":0.0323},"geometry":{"type":"Polygon","coordinates":[[[139.428128184,35.750000008000086],[139.4312531930001,35.750000008000086],[139.43125320500008,35.75208300400004],[139.4281281970001,35.75208300400004],[139.428128184,35.750000008000086]]]}},{"type":"Feature","id":24116,"properties":{"MESHCODE":"5339530413","揺全壊":0.04081},"geometry":{"type":"Polygon","coordinates":[[[139.425003188,35.75208300400004],[139.4281281970001,35.75208300400004],[139.42812820900008,35.754167],[139.4250032000001,35.754167],[139.425003188,35.75208300400004]]]}},{"type":"Feature","id":24139,"properties":{"MESHCODE":"5339530532","揺全壊":0.04019},"geometry":{"type":"Polygon","coordinates":[[[139.44062824500008,35.754167],[139.44375325400006,35.754167],[139.44375326600004,35.756249996000065],[139.44062825700007,35.756249996000065],[139.44062824500008,35.754167]]]}},{"type":"Feature","id":24151,"properties":{"MESHCODE":"5339530622","揺全壊":0.0471},"geometry":{"type":"Polygon","coordinates":[[[139.4593782710001,35.75000000600005],[139.46250328000008,35.75000000600005],[139.46250329300005,35.75208300200006],[139.45937828400008,35.75208300200006],[139.4593782710001,35.75000000600005]]]}},{"type":"Feature","id":24156,"properties":{"MESHCODE":"5339530633","揺全壊":0.04729},"geometry":{"type":"Polygon","coordinates":[[[139.4500032840001,35.756249996000065],[139.45312829300008,35.756249995000076],[139.45312830600005,35.75833299100009],[139.45000329800007,35.75833299200008],[139.4500032840001,35.756249996000065]]]}},{"type":"Feature","id":24160,"properties":{"MESHCODE":"5339530643","揺全壊":0.03789},"geometry":{"type":"Polygon","coordinates":[[[139.45625330100006,35.756249994000086],[139.45937831000003,35.756249994000086],[139.45937832200002,35.75833299000004],[139.45625331400004,35.75833299000004],[139.45625330100006,35.756249994000086]]]}},{"type":"Feature","id":24168,"properties":{"MESHCODE":"5339530723","揺全壊":0.0353},"geometry":{"type":"Polygon","coordinates":[[[139.46875331,35.75208299900004],[139.471878318,35.75208299700006],[139.4718783300001,35.75416699300007],[139.468753322,35.75416699500005],[139.46875331,35.75208299900004]]]}},{"type":"Feature","id":24169,"properties":{"MESHCODE":"5339530724","揺全壊":0.0312},"geometry":{"type":"Polygon","coordinates":[[[139.471878318,35.75208299700006],[139.47500332700008,35.75208299600007],[139.47500333900007,35.75416699200008],[139.4718783300001,35.75416699300007],[139.471878318,35.75208299700006]]]}},{"type":"Feature","id":24209,"properties":{"MESHCODE":"5339530944","揺全壊":0.03191},"geometry":{"type":"Polygon","coordinates":[[[139.4968784130001,35.75624997500006],[139.5000034210001,35.75624997300008],[139.50000343400006,35.75833296900004],[139.4968784250001,35.75833297100007],[139.4968784130001,35.75624997500006]]]}},{"type":"Feature","id":24294,"properties":{"MESHCODE":"5339531522","揺全壊":0.04833},"geometry":{"type":"Polygon","coordinates":[[[139.4468782890001,35.75833299200008],[139.45000329800007,35.75833299200008],[139.45000331000006,35.76041698700004],[139.44687830100008,35.76041698700004],[139.4468782890001,35.75833299200008]]]}},{"type":"Feature","id":24305,"properties":{"MESHCODE":"5339531611","揺全壊":0.03279},"geometry":{"type":"Polygon","coordinates":[[[139.45000329800007,35.75833299200008],[139.45312830600005,35.75833299100009],[139.45312831800004,35.76041698700004],[139.45000331000006,35.76041698700004],[139.45000329800007,35.75833299200008]]]}},{"type":"Feature","id":24310,"properties":{"MESHCODE":"5339531622","揺全壊":0.03298},"geometry":{"type":"Polygon","coordinates":[[[139.45937832200002,35.75833299000004],[139.46250333,35.75833298900005],[139.4625033430001,35.76041698500006],[139.459378335,35.76041698500006],[139.45937832200002,35.75833299000004]]]}},{"type":"Feature","id":24312,"properties":{"MESHCODE":"5339531624","揺全壊":0.04977},"geometry":{"type":"Polygon","coordinates":[[[139.459378335,35.76041698500006],[139.4625033430001,35.76041698500006],[139.46250335600007,35.762499981000076],[139.4593783480001,35.762499982000065],[139.459378335,35.76041698500006]]]}},{"type":"Feature","id":24331,"properties":{"MESHCODE":"5339531733","揺全壊":0.03022},"geometry":{"type":"Polygon","coordinates":[[[139.46250336800006,35.76458297700009],[139.46562837600004,35.76458297500005],[139.46562838900002,35.76666697100006],[139.46250338100003,35.76666697300004],[139.46250336800006,35.76458297700009]]]}},{"type":"Feature","id":24354,"properties":{"MESHCODE":"5339531912","揺全壊":0.03967},"geometry":{"type":"Polygon","coordinates":[[[139.49062840800002,35.75833297600008],[139.493753417,35.75833297400004],[139.4937534280001,35.76041696900006],[139.49062842,35.76041697100004],[139.49062840800002,35.75833297600008]]]}},{"type":"Feature","id":24361,"properties":{"MESHCODE":"5339531931","揺全壊":0.04947},"geometry":{"type":"Polygon","coordinates":[[[139.48750342300002,35.76249996900009],[139.490628432,35.76249996700005],[139.4906284440001,35.764582964000056],[139.487503436,35.764582965000045],[139.48750342300002,35.76249996900009]]]}},{"type":"Feature","id":24363,"properties":{"MESHCODE":"5339531933","揺全壊":0.03169},"geometry":{"type":"Polygon","coordinates":[[[139.487503436,35.764582965000045],[139.4906284440001,35.764582964000056],[139.49062845600008,35.76666695900008],[139.487503447,35.766666961000055],[139.487503436,35.764582965000045]]]}},{"type":"Feature","id":24366,"properties":{"MESHCODE":"5339531942","揺全壊":0.04838},"geometry":{"type":"Polygon","coordinates":[[[139.49687844900006,35.76249996300004],[139.50000345700005,35.76249996100006],[139.50000346900003,35.76458295700007],[139.49687846100005,35.76458295900005],[139.49687844900006,35.76249996300004]]]}},{"type":"Feature","id":24426,"properties":{"MESHCODE":"5339532744","揺全壊":0.04473},"geometry":{"type":"Polygon","coordinates":[[[139.47187844500002,35.772916955000085],[139.475003453,35.77291695400004],[139.47500346700008,35.77499995000005],[139.4718784590001,35.77499995000005],[139.47187844500002,35.772916955000085]]]}},{"type":"Feature","id":24450,"properties":{"MESHCODE":"5339532924","揺全壊":0.03625},"geometry":{"type":"Polygon","coordinates":[[[139.49687848500002,35.768749951000075],[139.500003493,35.76874994900004],[139.5000035060001,35.77083294400006],[139.496878498,35.77083294600004],[139.49687848500002,35.768749951000075]]]}},{"type":"Feature","id":24455,"properties":{"MESHCODE":"5339532941","揺全壊":0.03052},"geometry":{"type":"Polygon","coordinates":[[[139.49375349000002,35.77083294900007],[139.496878498,35.77083294600004],[139.4968785100001,35.77291694200005],[139.493753502,35.77291694500008],[139.49375349000002,35.77083294900007]]]}},{"type":"Feature","id":24456,"properties":{"MESHCODE":"5339532942","揺全壊":0.03926},"geometry":{"type":"Polygon","coordinates":[[[139.496878498,35.77083294600004],[139.5000035060001,35.77083294400006],[139.50000351800009,35.77291694000007],[139.4968785100001,35.77291694200005],[139.496878498,35.77083294600004]]]}},{"type":"Feature","id":24469,"properties":{"MESHCODE":"5339533812","揺全壊":0.04659},"geometry":{"type":"Polygon","coordinates":[[[139.47812847500006,35.77499994900006],[139.48125348400004,35.77499994700008],[139.48125349600002,35.77708294300004],[139.47812848700005,35.777082945000075],[139.47812847500006,35.77499994900006]]]}},{"type":"Feature","id":24486,"properties":{"MESHCODE":"5339533924","揺全壊":0.03697},"geometry":{"type":"Polygon","coordinates":[[[139.49687853500006,35.77708293400008],[139.50000354300005,35.77708293200004],[139.50000355600002,35.77916692800005],[139.49687854800004,35.77916693000009],[139.49687853500006,35.77708293400008]]]}},{"type":"Feature","id":24490,"properties":{"MESHCODE":"5339533941","揺全壊":0.0463},"geometry":{"type":"Polygon","coordinates":[[[139.49375354000006,35.77916693200007],[139.49687854800004,35.77916693000009],[139.49687856000003,35.781249926000044],[139.49375355200004,35.78124992800008],[139.49375354000006,35.77916693200007]]]}},{"type":"Feature","id":24555,"properties":{"MESHCODE":"5339540342","揺全壊":0.03973},"geometry":{"type":"Polygon","coordinates":[[[139.54687852400002,35.754166947000044],[139.55000353000003,35.754166946000055],[139.550003543,35.75624994300006],[139.546878537,35.75624994400005],[139.54687852400002,35.754166947000044]]]}},{"type":"Feature","id":24659,"properties":{"MESHCODE":"5339541024","揺全壊":0.04324},"geometry":{"type":"Polygon","coordinates":[[[139.50937847,35.760416958000064],[139.5125034780001,35.76041695500004],[139.51250349000009,35.76249995200004],[139.5093784820001,35.76249995400008],[139.50937847,35.760416958000064]]]}},{"type":"Feature","id":24668,"properties":{"MESHCODE":"5339541111","揺全壊":0.03714},"geometry":{"type":"Polygon","coordinates":[[[139.5125034670001,35.75833295800004],[139.51562847500009,35.75833295600006],[139.51562848700007,35.76041695200007],[139.5125034780001,35.76041695500004],[139.5125034670001,35.75833295800004]]]}},{"type":"Feature","id":24669,"properties":{"MESHCODE":"5339541112","揺全壊":0.03881},"geometry":{"type":"Polygon","coordinates":[[[139.51562847500009,35.75833295600006],[139.51875348400006,35.75833295400008],[139.51875349500006,35.76041695100008],[139.51562848700007,35.76041695200007],[139.51562847500009,35.75833295600006]]]}},{"type":"Feature","id":24686,"properties":{"MESHCODE":"5339541213","揺全壊":0.04588},"geometry":{"type":"Polygon","coordinates":[[[139.525003512,35.76041694700007],[139.52812851800002,35.76041694500009],[139.528128531,35.762499942000034],[139.525003524,35.76249994300008],[139.525003512,35.76041694700007]]]}},{"type":"Feature","id":24713,"properties":{"MESHCODE":"5339541342","揺全壊":0.0359},"geometry":{"type":"Polygon","coordinates":[[[139.54687857400006,35.76249993300007],[139.55000358100006,35.76249993200008],[139.55000359300004,35.764582929000085],[139.54687858500006,35.764582930000074],[139.54687857400006,35.76249993300007]]]}},{"type":"Feature","id":24719,"properties":{"MESHCODE":"5339541424","揺全壊":0.03731},"geometry":{"type":"Polygon","coordinates":[[[139.5593785850001,35.76041693500008],[139.562503591,35.76041693500008],[139.56250360500007,35.762499931000036],[139.55937859800008,35.762499931000036],[139.5593785850001,35.76041693500008]]]}},{"type":"Feature","id":24808,"properties":{"MESHCODE":"5339542033","揺全壊":0.0371},"geometry":{"type":"Polygon","coordinates":[[[139.50000351800009,35.77291694000007],[139.50312852600007,35.77291693900008],[139.50312853900004,35.77499993400005],[139.50000353100006,35.774999936000086],[139.50000351800009,35.77291694000007]]]}},{"type":"Feature","id":24811,"properties":{"MESHCODE":"5339542042","揺全壊":0.03619},"geometry":{"type":"Polygon","coordinates":[[[139.50937853000005,35.77083293900006],[139.51250353800003,35.77083293800007],[139.512503551,35.77291693400008],[139.50937854300003,35.77291693600006],[139.50937853000005,35.77083293900006]]]}},{"type":"Feature","id":24836,"properties":{"MESHCODE":"5339542231","揺全壊":0.04152},"geometry":{"type":"Polygon","coordinates":[[[139.52500357100007,35.77083292900005],[139.52812857900005,35.77083292800006],[139.52812859000005,35.77291692400007],[139.52500358200007,35.77291692600005],[139.52500357100007,35.77083292900005]]]}},{"type":"Feature","id":24841,"properties":{"MESHCODE":"5339542244","揺全壊":0.04289},"geometry":{"type":"Polygon","coordinates":[[[139.53437860500003,35.772916921000046],[139.53750361200002,35.77291692000006],[139.537503625,35.77499991700006],[139.53437861700002,35.77499991800005],[139.53437860500003,35.772916921000046]]]}},{"type":"Feature","id":24869,"properties":{"MESHCODE":"5339542643","揺全壊":0.03988},"geometry":{"type":"Polygon","coordinates":[[[139.5812537160001,35.772916906000034],[139.5843787240001,35.772916905000045],[139.58437873900004,35.77499990100006],[139.58125373100006,35.77499990200005],[139.5812537160001,35.772916906000034]]]}},{"type":"Feature","id":24895,"properties":{"MESHCODE":"5339542831","揺全壊":0.04185},"geometry":{"type":"Polygon","coordinates":[[[139.60000375000004,35.770832907000056],[139.60312876,35.77083290600007],[139.60312877700005,35.77291690100009],[139.6000037660001,35.77291690200008],[139.60000375000004,35.770832907000056]]]}},{"type":"Feature","id":24896,"properties":{"MESHCODE":"5339542832","揺全壊":0.0332},"geometry":{"type":"Polygon","coordinates":[[[139.60312876,35.77083290600007],[139.60625377000008,35.77083290400009],[139.606253787,35.77291689900005],[139.60312877700005,35.77291690100009],[139.60312876,35.77083290600007]]]}},{"type":"Feature","id":24910,"properties":{"MESHCODE":"5339543011","揺全壊":0.0317},"geometry":{"type":"Polygon","coordinates":[[[139.50000353100006,35.774999936000086],[139.50312853900004,35.77499993400005],[139.50312855100003,35.77708293100005],[139.50000354300005,35.77708293200004],[139.50000353100006,35.774999936000086]]]}},{"type":"Feature","id":24959,"properties":{"MESHCODE":"5339543313","揺全壊":0.04935},"geometry":{"type":"Polygon","coordinates":[[[139.5375036380001,35.77708291200008],[139.54062864500008,35.777082911000036],[139.54062865700007,35.77916690700005],[139.53750365000008,35.779166908000036],[139.5375036380001,35.77708291200008]]]}},{"type":"Feature","id":24969,"properties":{"MESHCODE":"5339543713","揺全壊":0.04315},"geometry":{"type":"Polygon","coordinates":[[[139.5875037620001,35.77708289600008],[139.59062877100007,35.777082895000035],[139.59062878600002,35.779166891000045],[139.58750377600006,35.779166891000045],[139.5875037620001,35.77708289600008]]]}},{"type":"Feature","id":24980,"properties":{"MESHCODE":"5339544021","揺全壊":0.03532},"geometry":{"type":"Polygon","coordinates":[[[139.50625359700007,35.78333291600006],[139.50937860600004,35.783332915000074],[139.50937861800003,35.785416911000084],[139.50625361000004,35.78541691300006],[139.50625359700007,35.78333291600006]]]}},{"type":"Feature","id":24985,"properties":{"MESHCODE":"5339544113","揺全壊":0.04305},"geometry":{"type":"Polygon","coordinates":[[[139.512503627,35.78541691000004],[139.515628634,35.78541690800006],[139.5156286460001,35.78749990400007],[139.5125036390001,35.78749990500006],[139.512503627,35.78541691000004]]]}},{"type":"Feature","id":25006,"properties":{"MESHCODE":"5339544233","揺全壊":0.03534},"geometry":{"type":"Polygon","coordinates":[[[139.52500368200003,35.78958289500008],[139.52812869000002,35.789582893000045],[139.528128702,35.791666890000045],[139.52500369400002,35.79166689200008],[139.52500368200003,35.78958289500008]]]}},{"type":"Feature","id":25031,"properties":{"MESHCODE":"5339545241","揺全壊":0.03812},"geometry":{"type":"Polygon","coordinates":[[[139.53125373600005,35.795832880000034],[139.53437874400004,35.795832878000056],[139.53437875600002,35.797916874000066],[139.53125374800004,35.797916876000045],[139.53125373600005,35.795832880000034]]]}},{"type":"Feature","id":25042,"properties":{"MESHCODE":"5339545341","揺全壊":0.04511},"geometry":{"type":"Polygon","coordinates":[[[139.5437537680001,35.79583287300005],[139.54687877600009,35.79583287100007],[139.54687878800007,35.79791686700008],[139.5437537800001,35.79791686900006],[139.5437537680001,35.79583287300005]]]}},{"type":"Feature","id":25053,"properties":{"MESHCODE":"5339546322","揺全壊":0.04194},"geometry":{"type":"Polygon","coordinates":[[[139.54687880100005,35.79999986300004],[139.55000380800004,35.79999986100006],[139.55000382100002,35.80208285700007],[139.54687881300003,35.80208285900005],[139.54687880100005,35.79999986300004]]]}},{"type":"Feature","id":25848,"properties":{"MESHCODE":"5339555113","揺全壊":0.03922},"geometry":{"type":"Polygon","coordinates":[[[139.63750411700005,35.79374982500008],[139.6406291400001,35.79374982100006],[139.6406291520001,35.795832819000054],[139.63750413100001,35.79583282200008],[139.63750411700005,35.79374982500008]]]}},{"type":"Feature","id":25854,"properties":{"MESHCODE":"5339555131","揺全壊":0.0301},"geometry":{"type":"Polygon","coordinates":[[[139.63750413100001,35.79583282200008],[139.6406291520001,35.795832819000054],[139.64062916600005,35.79791681700004],[139.6375041440001,35.79791682000007],[139.63750413100001,35.79583282200008]]]}},{"type":"Feature","id":25974,"properties":{"MESHCODE":"5339560134","揺全壊":0.04045},"geometry":{"type":"Polygon","coordinates":[[[139.76562923900008,35.75624987800006],[139.76875424500008,35.75624987600008],[139.76875426000004,35.758332875000065],[139.76562925300004,35.75833287700004],[139.76562923900008,35.75624987800006]]]}},{"type":"Feature","id":26408,"properties":{"MESHCODE":"5339562842","揺全壊":0.0406},"geometry":{"type":"Polygon","coordinates":[[[139.8593795600001,35.770832770000084],[139.86250456800008,35.77083276600007],[139.86250458200004,35.77291676300007],[139.85937957400006,35.77291676800007],[139.8593795600001,35.770832770000084]]]}},{"type":"Feature","id":26419,"properties":{"MESHCODE":"5339562931","揺全壊":0.03849},"geometry":{"type":"Polygon","coordinates":[[[139.86250456800008,35.77083276600007],[139.86562957400008,35.770832761000065],[139.86562958800005,35.772916760000044],[139.86250458200004,35.77291676300007],[139.86250456800008,35.77083276600007]]]}},{"type":"Feature","id":26866,"properties":{"MESHCODE":"5339565921","揺全壊":0.03129},"geometry":{"type":"Polygon","coordinates":[[[139.86875472300005,35.791666733000056],[139.87187973100004,35.79166672900004],[139.8718797470001,35.793749726000044],[139.868754739,35.79374973000006],[139.86875472300005,35.791666733000056]]]}}]}
\ No newline at end of file
diff --git a/app/src/layers/data/tama-burned-area3-zero.json b/app/src/layers/data/tama-burned-area3-zero.json
new file mode 100644
index 0000000..fd38a21
--- /dev/null
+++ b/app/src/layers/data/tama-burned-area3-zero.json
@@ -0,0 +1 @@
+{"list":[{"name":"世田谷区","values":[85.19305,81.78969,78.61838,77.97459,74.67166,73.38841,71.42017,70.09636,67.72995,67.37281,66.52998,66.0542,66.03805,65.64901,65.1698,64.96802,64.85604,64.8405,64.63462,62.7851,62.70494,62.52045,62.30215,60.70299,60.16423,60.09428,59.46144,58.96456,58.51547,58.41909,58.33468,57.75778,57.42823,56.7526,56.50146,56.44239,56.38296,56.29674,56.24815,56.17578,55.96,55.81443,55.78255,55.76115,55.47659,55.08959,54.82108,54.81784,54.62492,54.56133,54.52019,54.50769,54.38341,54.36945,54.26635,54.17252,53.18324,53.09576,52.89713,52.52774,52.40941,52.05123,51.9833,51.14945,51.10125,51.00202,50.95208,50.94168,50.75863,50.74689,50.1814,50.08818,49.86707,49.8283,49.76544,49.73849,49.45455,49.22973,49.21296,48.34193,48.10401,47.93488,47.71674,47.53753,47.48296,47.42687,47.40214,47.34585,47.18951,46.89431,46.44325,46.43613,46.32685,46.32338,46.08832,45.94316,45.38828,45.37865,45.2741,45.23348,45.20582,44.96462,44.95893,44.85447,44.75249,44.32734,44.21848,44.21246,44.08958,44.0157,43.87444,43.83235,43.35359,43.27068,43.15251,42.7796,42.46347,42.34554,42.25993,42.18898,42.15237,41.99341,41.9891,41.94342,41.93892,41.86097,41.64239,41.52526,41.50056,41.35881,41.30137,41.21556,41.03686,41.02873,40.97477,40.94989,40.81322,40.76134,40.47934,40.3782,40.15636,40.04659,39.98295,39.598,39.48413,39.2177,39.20744,39.17573,39.07772,38.97311,38.93202,38.90987,38.61092,38.56602,38.38035,38.33833,38.21054,38.16786,38.13501,38.12591,37.8079,37.61649,37.53126,37.46953,37.35812,37.24062,37.10731,36.99845,36.97777,36.93207,36.84766,36.52631,36.52474,36.44262,36.23756,36.15706,36.11222,36.05793,36.03233,35.89478,35.86421,35.76257,35.75956,35.62278,35.48211,35.43047,35.15415,35.08806,35.00961,34.98538,34.92052,34.82091,34.64701,34.56606,34.45945,34.45441,34.28752,34.28485,34.26235,34.25394,34.25052,34.19555,34.17286,34.16391,34.11184,34.0432,34.02845,33.8652,33.65021,33.63669,33.39894,33.31782,33.31624,33.16939,33.143,33.09528,33.0365,32.83527,32.7489,32.74728,32.66904,32.60442,32.58768,32.53555,32.46343,32.44381,32.35369,32.33387,32.33309,32.31303,32.23472,32.11102,31.94855,31.8901,31.8429,31.79375,31.70046,31.68728,31.56738,31.53162,31.46679,31.40729,31.40433,31.34015,31.32718,31.2408,31.21756,31.21093,31.07791,30.81568,30.74374,30.73973,30.70361,30.68543,30.65473,30.56577,30.38828,30.36656,30.09574,30.09159,30.01455,29.98705,29.86016,29.67254,29.54922,29.41325,29.31036,29.15545,29.07563,29.06446,29.04211,28.97805,28.89714,28.88251,28.84214,28.81367,28.5509,28.46602,28.46045,28.40841,28.33573,28.31331,28.28204,28.2694,28.09487,28.05323,27.7531,27.60985,27.42885,27.41572,27.35992,27.34676,27.1316,27.08162,27.06569,27.01005,26.99456,26.99134,26.90694,26.89481,26.86217,26.84211,26.82375,26.73995,26.65494,26.63739,26.49512,26.49371,26.33889,26.07025,25.8977,25.78753,25.7563,25.74129,25.6099,25.52323,25.51672,25.49802,25.48333,25.43675,25.41048,25.38875,25.38325,25.36521,25.26984,25.17778,25.16827,25.13788,25.01537,24.70476,24.70148,24.60678,24.4117,24.37737,24.30136,24.28879,24.17283,24.16707,24.16527,23.912,23.78529,23.78516,23.68747,23.59194,23.58858,23.39726,23.38417,23.36105,23.28217,23.2812,23.24432,23.22719,23.13126,23.12215,23.02964,22.99256,22.80336,22.58997,22.57456,22.48915,22.37206,22.33617,22.28736,22.27152,22.23083,22.19909,22.1988,22.02953,21.99398,21.94639,21.79508,21.70488,21.68511,21.65689,21.61806,21.37699,21.36983,21.15334,21.11138,21.0974,21.09357,21.02551,21.01021,20.99382,20.91095,20.87533,20.85163,20.80609,20.68164,20.44948,20.37676,20.37661,20.34406,20.30048,20.29613,20.18262,20.14083,20.13642,19.97225,19.932,19.85066,19.81278,19.76622,19.74107,19.72387,19.66513,19.58081,19.5789,19.55996,19.52151,19.50656,19.40897,19.38051,19.35795,19.3334,19.32927,19.23633,19.11969,19.11099,19.07066,18.8221,18.7179,18.66214,18.62216,18.6162,18.57162,18.53276,18.51351,18.47605,18.38828,18.30071,18.211,18.19088,18.18307,18.17444,18.08851,18.02695,17.99746,17.99291,17.94416,17.91162,17.8942,17.76377,17.74685,17.74677,17.74547,17.73447,17.68949,17.65097,17.64039,17.6312,17.59967,17.54861,17.53232,17.50735,17.48139,17.47488,17.27472,17.15146,17.14223,17.0289,16.95557,16.90325,16.84842,16.82992,16.8192,16.81107,16.78826,16.75635,16.73524,16.7313,16.56175,16.47406,16.37681,16.37058,16.32465,16.23664,16.12397,16.0935,16.08038,16.06961,16.05176,16.04497,16.01777,15.95419,15.89438,15.87264,15.84459,15.74711,15.72223,15.6292,15.60758,15.58105,15.57028,15.4243,15.34537,15.25443,15.20614,15.15497,15.05224,14.97013,14.96001,14.91262,14.86258,14.71789,14.70971,14.67196,14.66078,14.63593,14.61877,14.61522,14.57769,14.55989,14.53669,14.51409,14.40533,14.40244,14.37953,14.36384,14.3477,14.34067,14.32425,14.31086,14.28215,14.25819,14.21129,14.21046,14.16557,14.10066,13.99929,13.99577,13.95009,13.93851,13.90502,13.83103,13.81998,13.79768,13.69151,13.65845,13.63906,13.63289,13.63268,13.62167,13.5853,13.58088,13.57994,13.53048,13.50938,13.47991,13.4197,13.41879,13.41173,13.38489,13.37262,13.32153,13.24913,13.24406,13.21471,13.1843,13.14958,13.1281,13.1228,13.07598,13.06915,12.96012,12.94541,12.9045,12.89152,12.86647,12.85767,12.85089,12.78883,12.76046,12.75694,12.73593,12.72206,12.72116,12.69594,12.67385,12.67197,12.65953,12.65631,12.62176,12.59151,12.53379,12.52607,12.50097,12.47609,12.4665,12.4614,12.45604,12.28971,12.28218,12.26706,12.25736,12.24667,12.22908,12.13859,12.08207,11.95413,11.94319,11.91466,11.87325,11.83185,11.82649,11.81871,11.71734,11.70366,11.68967,11.65824,11.64805,11.4683,11.45277,11.40405,11.40338,11.34045,11.3346,11.29346,11.25423,11.16937,11.09734,11.09176,11.01934,10.90474,10.90463,10.89459,10.89456,10.87067,10.73431,10.72725,10.68537,10.68309,10.63803,10.61874,10.60401,10.59992,10.59227,10.58802,10.58583,10.57762,10.53329,10.52853,10.49983,10.44532,10.39251,10.37398,10.35019,10.23197,10.217,10.19635,10.19436,10.13683,10.13035,10.11221,10.1111,10.0813,10.03807,10.03578,9.96065,9.93585,9.93531,9.86249,9.85266,9.78047,9.7198,9.69602,9.68557,9.68219,9.68124,9.67011,9.66607,9.66271,9.6513,9.63199,9.60733,9.60124,9.58524,9.58025,9.57148,9.55879,9.55363,9.5461,9.45664,9.33157,9.32994,9.28196,9.25888,9.18112,9.17759,9.03967,9.01464,9.00038,8.928890000000003,8.892300000000002,8.88234,8.74239,8.71757,8.7095,8.70924,8.59634,8.57084,8.565810000000003,8.562950000000003,8.52019,8.50983,8.463620000000002,8.39585,8.39345,8.2788,8.250170000000002,8.24883,8.24132,8.23415,8.13226,8.13147,8.11368,8.08396,8.036,7.99539,7.97122,7.96857,7.94613,7.94462,7.94373,7.93305,7.92287,7.84185,7.80575,7.75096,7.75036,7.68564,7.67711,7.66504,7.62452,7.44438,7.44308,7.42941,7.40686,7.38905,7.33547,7.31448,7.29258,7.22219,7.1659,7.14142,7.14051,7.11482,7.10723,6.9846,6.95297,6.81653,6.81381,6.75927,6.63063,6.60279,6.55628,6.51194,6.49186,6.45346,6.44145,6.38322,6.3793,6.37015,6.34955,6.24935,6.21419,6.1989,6.14577,6.03809,6.02348,5.89931,5.87404,5.87207,5.81752,5.80177,5.77016,5.733,5.727,5.62447,5.60105,5.51063,5.48315,5.47509,5.43125,5.41078,5.37949,5.33276,5.25184,5.2123,5.13673,5.08693,5.05707,5.02621,5.0214,4.99247,4.92955,4.86384,4.82128,4.68398,4.68396,4.64182,4.46458,4.45915,4.27771,4.27538,4.172900000000001,4.057610000000001,4.04802,3.91292,3.86144,3.83034,3.73688,3.66793,3.64048,3.5898,3.53808,3.53536,3.52345,3.47153,3.42747,3.41231,3.3926,3.27922,3.25646,3.1869,3.15718,3.12012,3.08032,3.05536,2.99355,2.96421,2.82968,2.81183,2.8021,2.80181,2.55599,2.47516,2.19886,2.10988,1.9963,1.95335,1.87528,1.79611,1.77227,1.68686,1.60333,1.58523,1.45498,1.41653,1.39996,1.28602,1.21052,1.12198,1.09069,1.03525,0.99319,0.83144,0.79996,0.79076,0.57335,0.56746,0.54099,0.4667,0.45561,0.44575,0.44469,0.44244,0.35226,0.30892,0.28984,0.28255,0.25219,0.22762,0.13861,0.11585,0.08814,0.01415,0.00018,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":17340},{"name":"練馬区","values":[31.3546,29.79338,29.0173,27.19452,27.1635,26.52632,26.25831,25.32063,23.51471,22.9504,20.90763,20.65972,20.08284,19.95962,19.42686,18.84909,17.82473,17.61192,16.7639,16.20355,15.72946,15.65261,15.17886,14.98452,14.82589,14.40673,14.25025,14.21715,13.8114,13.66439,13.66306,13.36799,13.34607,13.27958,13.27762,13.17891,12.98482,12.96515,12.82311,12.70298,12.69226,12.63674,12.60559,11.89402,11.87504,11.86629,11.84635,11.80369,11.71981,11.71474,11.61636,11.60748,11.59994,11.35475,11.33195,11.32817,11.0996,10.96668,10.90871,10.87016,10.86921,10.71905,10.6333,10.56975,10.48321,10.40324,10.3989,10.39844,10.33529,10.33297,10.22114,10.19463,10.15126,10.15066,10.05956,9.98159,9.86451,9.85732,9.76239,9.74391,9.72702,9.70722,9.69222,9.65119,9.59677,9.52466,9.51165,9.48934,9.4792,9.46845,9.44529,9.42323,9.42017,9.37436,9.30561,9.30455,9.18879,9.1415,9.04266,8.94333,8.91565,8.84759,8.76907,8.750030000000002,8.74879,8.73707,8.66902,8.53964,8.53654,8.48227,8.46863,8.427070000000002,8.42651,8.36333,8.30631,8.24587,8.17193,8.15607,8.129440000000002,8.12736,8.12011,8.08976,8.081250000000002,8.076320000000003,8.04847,8.02061,8.01685,7.99793,7.98976,7.94956,7.94165,7.8877,7.87782,7.84176,7.82426,7.82155,7.81742,7.81177,7.64375,7.56034,7.50052,7.49465,7.49114,7.45643,7.37247,7.33971,7.33675,7.33228,7.31675,7.2869,7.28464,7.28382,7.22862,7.22573,7.19094,7.16544,7.14643,7.04923,7.03866,7.01261,6.96297,6.92666,6.91821,6.87742,6.86331,6.82864,6.81342,6.81139,6.78638,6.77416,6.75725,6.73321,6.73032,6.69842,6.69772,6.69735,6.6841,6.67435,6.65361,6.64598,6.63125,6.61842,6.56966,6.55981,6.54257,6.54131,6.50096,6.488,6.48489,6.46725,6.46172,6.4556,6.4511,6.44746,6.42315,6.41314,6.40966,6.39742,6.39527,6.38956,6.38052,6.35709,6.33293,6.32355,6.30254,6.30251,6.3007,6.23773,6.20831,6.19562,6.17691,6.16418,6.15411,6.15094,6.14958,6.14705,6.14566,6.1391,6.13645,6.12061,6.11178,6.09593,6.08498,6.07829,6.04949,6.04291,6.02696,5.99658,5.99382,5.97002,5.94299,5.9238,5.9066,5.882,5.8628,5.82393,5.8214,5.80606,5.79979,5.79478,5.79268,5.77078,5.76933,5.76221,5.75167,5.74511,5.73732,5.71346,5.67792,5.65797,5.65292,5.64794,5.64483,5.61464,5.61279,5.60597,5.59338,5.57211,5.53226,5.51834,5.50911,5.50777,5.49845,5.49614,5.46644,5.46622,5.46108,5.45442,5.43685,5.4322,5.41746,5.39206,5.39021,5.37048,5.36641,5.34584,5.33738,5.31967,5.31198,5.30862,5.27719,5.27557,5.26649,5.26411,5.25748,5.24312,5.23237,5.22569,5.22073,5.19246,5.18707,5.18271,5.1801,5.16316,5.15304,5.1417,5.13481,5.13338,5.11981,5.11036,5.10165,5.09709,5.08821,5.07799,5.07314,5.06836,5.06035,5.05657,5.05478,5.04275,5.02529,5.01739,5.0068,5.0066,5.00154,5.00132,4.99768,4.98329,4.98147,4.97534,4.95579,4.95115,4.9467,4.93695,4.93543,4.90749,4.89167,4.89026,4.88131,4.8734,4.87164,4.85995,4.83746,4.83361,4.8286,4.81658,4.81303,4.80782,4.80223,4.8007,4.79491,4.78055,4.76568,4.7521,4.74338,4.73216,4.72674,4.72394,4.72059,4.71902,4.66775,4.65729,4.64709,4.64113,4.60402,4.5934,4.59095,4.54463,4.53476,4.53056,4.52401,4.52304,4.49744,4.49,4.48964,4.468860000000001,4.46831,4.45611,4.4445,4.43062,4.42647,4.41667,4.41446,4.40945,4.40855,4.39062,4.387400000000001,4.37498,4.3639,4.362390000000001,4.34183,4.337640000000001,4.31354,4.31164,4.306060000000001,4.304820000000001,4.30091,4.27945,4.26895,4.248840000000001,4.248770000000001,4.24782,4.20183,4.19688,4.17933,4.1677,4.14943,4.14884,4.14441,4.13764,4.12709,4.0762,4.0758,4.07062,4.0562,4.033260000000001,4.024250000000001,4.01913,4.01696,3.98861,3.98061,3.97661,3.95695,3.95445,3.92559,3.91697,3.91215,3.90304,3.89439,3.88389,3.88236,3.88209,3.85777,3.8533,3.84252,3.84234,3.83874,3.82687,3.82663,3.8164,3.79003,3.78428,3.76953,3.76358,3.75524,3.75112,3.74723,3.73454,3.7334,3.7159,3.71,3.70454,3.68105,3.65976,3.64794,3.64447,3.63867,3.60962,3.60508,3.60169,3.59817,3.57134,3.57067,3.55649,3.53267,3.52884,3.52785,3.4897,3.48086,3.48044,3.48021,3.45653,3.42415,3.41573,3.4155,3.40503,3.40321,3.39652,3.39308,3.38126,3.37493,3.37387,3.35774,3.35493,3.34763,3.34669,3.33311,3.32583,3.32582,3.31086,3.29523,3.28501,3.27071,3.24548,3.22988,3.22629,3.20478,3.20469,3.20339,3.17702,3.17576,3.1388,3.13635,3.13199,3.11281,3.11277,3.11132,3.10781,3.10346,3.08594,3.08501,3.08089,3.06208,3.05293,3.05088,3.04667,3.02872,3.02529,3.02332,2.98649,2.98564,2.98236,2.98225,2.98167,2.97815,2.96308,2.94485,2.94263,2.9413,2.93756,2.93631,2.93044,2.92657,2.92364,2.90863,2.90393,2.89431,2.89426,2.87418,2.86806,2.86686,2.86651,2.86381,2.86081,2.85711,2.83254,2.82196,2.81764,2.81481,2.79506,2.79318,2.77866,2.76087,2.76085,2.76033,2.75917,2.74815,2.74079,2.72182,2.71971,2.71823,2.71692,2.71348,2.7126,2.70792,2.69809,2.69159,2.68444,2.68002,2.67906,2.67617,2.67473,2.65554,2.64639,2.63684,2.63621,2.63156,2.62385,2.62309,2.62137,2.6064,2.6032,2.60283,2.60032,2.57373,2.56842,2.55464,2.54347,2.53529,2.53314,2.52319,2.52292,2.51576,2.50144,2.50142,2.48489,2.4765,2.47427,2.46822,2.45248,2.44948,2.44831,2.43407,2.42948,2.39336,2.38428,2.36467,2.3622,2.35456,2.32597,2.31309,2.30563,2.30422,2.30096,2.29971,2.29875,2.28287,2.26603,2.25669,2.24461,2.24132,2.22062,2.20703,2.19921,2.19037,2.1898,2.17153,2.16972,2.16916,2.16532,2.14212,2.13979,2.13193,2.12215,2.11286,2.0953,2.08119,2.05926,2.04571,2.03957,2.03881,2.03832,2.03333,2.01656,1.99595,1.96821,1.94412,1.94301,1.9406,1.93049,1.91137,1.90067,1.89425,1.89398,1.88545,1.88087,1.86863,1.84022,1.83101,1.76243,1.75291,1.752,1.72601,1.72469,1.72386,1.70257,1.702,1.6884,1.61795,1.61138,1.59779,1.5922,1.56591,1.53948,1.5343,1.52848,1.5068,1.49021,1.47195,1.43635,1.42496,1.40435,1.4043,1.40252,1.38202,1.37417,1.36519,1.36146,1.36025,1.30403,1.30146,1.2853,1.23194,1.22087,1.20589,1.19466,1.17295,1.15371,1.12078,1.11911,1.10155,1.09473,1.01964,1.00883,1.00624,0.9942,0.97737,0.97601,0.94868,0.94431,0.85382,0.84674,0.77648,0.75431,0.75188,0.74969,0.74825,0.7381,0.73402,0.69419,0.69259,0.67547,0.67341,0.65764,0.6416,0.64026,0.62769,0.62453,0.60986,0.5772,0.57461,0.56449,0.55205,0.54893,0.51734,0.48145,0.47846,0.45322,0.41409,0.40921,0.37041,0.34404,0.33335,0.32374,0.30449,0.26885,0.26631,0.25327,0.2349,0.21225,0.20806,0.17661,0.17107,0.15222,0.11388,0.11275,0.106,0.10469,0.09095,0.08733,0.0814,0.06954,0.05087,0.03809,0.0339,0.0339,0.01026,0.00001,0,0,0,0,0],"total":11004},{"name":"杉並区","values":[38.65128,36.75194,36.04583,35.08407,34.97894,33.30036,33.29108,32.9736,32.013,31.91501,31.76116,31.38066,30.76936,30.65699,30.63188,30.56662,30.47525,30.45036,30.15509,29.93216,29.84576,29.82382,29.42302,29.10637,29.07341,29.01168,28.64295,28.6425,28.62378,28.59239,28.42065,28.22831,28.17366,27.86694,27.85644,27.71591,27.66296,27.64891,27.55064,27.39474,27.3345,27.08403,26.70199,26.60975,26.15576,26.04649,25.93616,25.74727,25.74353,25.65909,25.49631,25.33295,25.30691,25.29087,25.08137,25.03256,24.84208,24.8243,24.82223,24.8143,24.81252,24.80233,24.62969,24.38934,24.18535,24.13988,24.06431,23.94457,23.92283,23.90154,23.89998,23.79242,23.7903,23.77848,23.76811,23.75815,23.71219,23.7049,23.6922,23.67475,23.67133,23.54313,23.54286,23.51237,23.46764,23.42106,23.318,23.27063,23.20101,23.08244,23.07325,23.02103,23.01153,22.91242,22.87505,22.85215,22.82841,22.76434,22.68106,22.66511,22.46409,22.35766,22.35377,22.33263,22.27332,22.24963,22.2463,22.21968,22.15391,22.10638,22.08972,22.05321,22.0164,21.85693,21.83153,21.72834,21.66523,21.63686,21.40543,21.38326,21.35335,21.35236,21.29657,21.24789,21.17057,21.13969,21.11649,21.08801,21.00887,21.00531,20.98075,20.95412,20.91068,20.72315,20.68948,20.62516,20.5315,20.41568,20.29267,20.25453,20.12546,20.08695,20.06497,20.04487,20.02271,20.002,20.0016,19.92886,19.84089,19.75953,19.68329,19.67232,19.62564,19.6202,19.57601,19.55078,19.52602,19.48956,19.48893,19.47396,19.46901,19.41516,19.35955,19.34058,19.32515,19.27887,19.25914,19.19019,19.15425,19.11171,18.9846,18.97737,18.97127,18.80964,18.78811,18.75957,18.73806,18.72816,18.57139,18.38525,18.36897,18.26366,18.198,18.18851,18.18373,18.08793,18.00669,17.98168,17.95704,17.95202,17.87989,17.87827,17.85957,17.67128,17.55696,17.53365,17.49069,17.48486,17.4433,17.43479,17.31294,17.27877,17.25773,17.11716,16.94557,16.90374,16.87162,16.76778,16.67905,16.61591,16.54002,16.49274,16.46655,16.43709,16.37665,16.29733,16.27521,16.13319,16.0673,15.99289,15.95514,15.8946,15.8237,15.7948,15.73784,15.61994,15.59036,15.58325,15.57706,15.56778,15.5238,15.51146,15.45956,15.44687,15.44215,15.31683,15.27985,15.21851,15.18415,15.17761,15.14691,15.14248,15.06799,15.06756,14.99421,14.91919,14.86491,14.71528,14.70651,14.69821,14.60674,14.51332,14.46168,14.41972,14.41073,14.40084,14.39025,14.35801,14.33873,14.31093,14.27828,14.26911,14.24981,14.14205,14.08029,14.0022,13.96411,13.96102,13.91625,13.80359,13.7073,13.7053,13.7021,13.69938,13.6121,13.54461,13.51182,13.49599,13.48829,13.48422,13.44228,13.38795,13.3701,13.27331,13.24653,13.16944,13.11197,13.06135,12.98403,12.90695,12.88313,12.87338,12.86525,12.8294,12.82866,12.79039,12.74713,12.72863,12.69597,12.63518,12.56698,12.55978,12.5169,12.48446,12.38052,12.32608,12.32542,12.31398,12.2987,12.22137,12.14245,12.13407,12.04904,11.96046,11.92145,11.90341,11.9012,11.83524,11.80315,11.78258,11.77167,11.76527,11.7474,11.6695,11.66688,11.60013,11.46028,11.42527,11.40594,11.29612,11.25956,10.9101,10.90494,10.89828,10.84814,10.80961,10.78525,10.74633,10.68645,10.67262,10.66028,10.64345,10.63972,10.58606,10.57451,10.55714,10.54927,10.48938,10.45863,10.45295,10.43027,10.37765,10.32713,10.31312,10.2046,10.17595,10.12573,10.06684,9.94899,9.93226,9.92475,9.9213,9.861,9.79431,9.76679,9.73277,9.70781,9.68808,9.65346,9.57526,9.57128,9.51326,9.43969,9.36482,9.28828,9.25751,9.24588,9.23831,9.22393,9.16903,9.000870000000003,8.9046,8.88856,8.85409,8.85191,8.84904,8.81322,8.7828,8.760730000000002,8.717750000000002,8.68924,8.68196,8.67001,8.6482,8.64085,8.61051,8.58896,8.54427,8.53737,8.53559,8.50614,8.4752,8.41504,8.35764,8.33628,8.28736,8.255800000000002,8.25335,8.23368,8.22134,8.217040000000003,8.15005,8.12515,8.10351,8.066940000000002,8.053850000000002,7.94453,7.91565,7.88855,7.84573,7.70197,7.69262,7.6717,7.54623,7.39839,7.36368,7.3612,7.30015,7.25788,7.22689,7.20377,7.1671,7.16397,7.13744,7.12079,7.07238,7.03172,6.99234,6.87843,6.84893,6.82954,6.80745,6.79063,6.78255,6.77021,6.74398,6.63098,6.62007,6.61242,6.5989,6.57628,6.53923,6.48636,6.466,6.37049,6.33793,6.3126,6.30002,6.26295,6.19792,6.14875,5.97453,5.82874,5.80941,5.80576,5.80042,5.79774,5.77934,5.75394,5.71485,5.63623,5.63294,5.55007,5.50058,5.31086,5.30835,5.2933,5.14706,5.0788,5.05573,5.03701,5.01259,4.88594,4.87938,4.86316,4.85132,4.74278,4.73242,4.64833,4.491170000000001,4.46822,4.39798,4.32859,4.19526,4.1225,4.043180000000001,3.97275,3.84222,3.62636,3.59641,3.58869,3.53318,3.46806,3.3632,2.84813,2.82951,2.78006,2.58341,2.39246,2.01448,1.9779,1.897,1.80739,1.53387,1.46473,0.85364,0.77942,0.72969],"total":10645},{"name":"足立区","values":[256.64074,253.91971,247.7449,247.12828,246.5077,242.18262,221.80153,212.78588,200.81374,198.63022,196.62771,187.81659,186.65801,186.5899,184.12271,184.08027,180.49327,178.54889,178.0868,177.31273,177.13476,174.84201,169.94121,169.08877,166.19487,166.02952,165.60313,157.86456,156.94043,156.88796,156.40449,150.64323,147.00673,146.33021,134.55289,132.52823,131.00723,130.77106,130.36056,128.80612,123.86925,122.35289,121.13712,111.18779,110.04234,109.03455,88.54281,84.89562,84.02335,82.53657,82.31135,81.53443,80.61322,80.45712,76.30588,74.44032,72.58096,66.80789,61.29085,59.81891,59.22829,58.81571,58.45156,58.05693,56.22151,55.94762,54.44755,53.66115,52.51864,51.64977,49.3728,45.35392,45.23544,44.45962,44.34164,43.92229,43.34813,41.57211,41.02764,39.4237,38.86155,38.26198,37.42754,36.31667,35.87758,34.72518,33.54195,31.97528,31.95312,31.90425,31.89625,31.12558,30.55293,29.85474,29.29444,28.13636,27.88358,27.86073,27.78381,27.27776,27.26449,26.98077,26.63452,26.44425,26.13418,25.13624,24.59541,24.42047,23.7873,23.34247,23.18297,23.13576,22.86973,22.75284,22.45627,22.34997,22.20482,21.87077,21.26236,21.07405,20.92249,20.44041,20.22606,19.81568,19.72414,19.63947,19.55454,19.50572,19.46309,19.29439,19.12809,19.12103,19.00011,18.3184,18.10025,18.08774,17.87393,17.6397,17.58355,17.43341,16.29027,16.19295,16.17955,16.10138,16.00595,15.90898,15.77894,15.65829,15.00764,14.95973,14.89305,14.73487,14.70451,14.61818,14.50592,14.43892,14.26216,14.23689,14.09989,13.82117,13.62147,13.51517,13.4891,13.18486,13.17979,12.91883,12.8018,12.71848,12.44207,12.36856,12.26581,12.20912,12.18864,12.10276,12.06772,11.93819,11.76662,11.71735,11.69725,11.66557,11.59584,11.43683,11.41144,11.16382,11.15951,10.67651,10.56835,10.45173,10.35422,10.26815,10.13151,10.124,10.0667,9.94538,9.59729,9.54808,9.49744,9.36058,9.14788,9.1194,9.03653,8.9175,8.9057,8.88091,8.779170000000002,8.74708,8.732530000000002,8.68702,8.679600000000002,8.63557,8.60623,8.56697,8.50094,8.41014,8.3766,8.1752,8.10624,8.06654,8.065860000000002,8.05322,7.95637,7.79129,7.71888,7.6778,7.66792,7.61757,7.55717,7.43798,7.40032,7.33258,7.27081,7.19214,7.13228,7.09418,7.05154,7.00059,6.96909,6.95716,6.90563,6.85844,6.80902,6.79857,6.74237,6.74005,6.70771,6.66026,6.59537,6.57995,6.57761,6.39173,6.24327,6.1657,6.15796,6.15656,6.06779,6.05994,5.90508,5.88319,5.7653,5.75678,5.73298,5.71986,5.66955,5.65788,5.61158,5.57128,5.51822,5.4287,5.37342,5.3549,5.33261,5.19155,5.15718,5.12983,5.12282,5.12269,5.01735,4.99574,4.97251,4.96848,4.95812,4.94737,4.93659,4.92956,4.92251,4.89766,4.86898,4.86476,4.86054,4.85472,4.82754,4.81215,4.78901,4.75351,4.69765,4.66743,4.61107,4.60826,4.57935,4.54246,4.51611,4.486220000000001,4.45218,4.4268,4.39073,4.38317,4.29327,4.28907,4.24032,4.213440000000001,4.17321,4.109670000000001,4.09014,4.059020000000001,4.02924,4.00822,3.97004,3.9288,3.92257,3.90875,3.85849,3.84286,3.83012,3.80905,3.77207,3.76257,3.74005,3.73794,3.70867,3.70129,3.67227,3.62857,3.62747,3.60505,3.60406,3.57708,3.52618,3.49261,3.48917,3.4622,3.43224,3.35174,3.33971,3.32527,3.32335,3.32128,3.31336,3.30703,3.27648,3.27531,3.25463,3.24103,3.22443,3.21241,3.17704,3.16596,3.1618,3.13979,3.13632,3.13573,3.12089,3.11812,3.08733,3.05292,3.04827,3.03921,3.03916,3.0382,3.0343,2.97707,2.94409,2.89645,2.86709,2.8548,2.85209,2.82212,2.76216,2.75278,2.73007,2.71379,2.68661,2.68152,2.65857,2.65472,2.63529,2.62629,2.59788,2.57769,2.56767,2.56196,2.56184,2.54467,2.53096,2.44718,2.43313,2.42687,2.41958,2.40151,2.39991,2.36839,2.344,2.34052,2.31626,2.3095,2.25601,2.18819,2.18741,2.18381,2.17677,2.15193,2.15079,2.14856,2.13843,2.1343,2.12737,2.11091,2.10304,2.09287,2.09016,2.08535,2.08078,2.08005,2.05697,2.04532,2.03511,2.02714,2.01584,2.01307,1.99656,1.98687,1.97952,1.96969,1.96117,1.95156,1.94483,1.92015,1.91405,1.89823,1.88241,1.8821,1.86802,1.853,1.84892,1.83314,1.796,1.78948,1.78629,1.77025,1.75052,1.74452,1.72395,1.72006,1.69786,1.69564,1.69465,1.68969,1.67356,1.65239,1.65048,1.64619,1.63033,1.62976,1.62341,1.59496,1.59417,1.59039,1.58162,1.56346,1.56074,1.55243,1.54265,1.54225,1.54173,1.53778,1.52804,1.52742,1.51269,1.50993,1.50083,1.4847,1.47397,1.46813,1.46786,1.46761,1.46677,1.46319,1.46311,1.44457,1.43904,1.43706,1.43683,1.42005,1.41746,1.41204,1.37114,1.36597,1.36471,1.36095,1.35976,1.3596,1.35787,1.35628,1.3412,1.3309,1.31978,1.29214,1.29061,1.28124,1.27547,1.2718,1.27116,1.25075,1.25022,1.2356,1.20627,1.19844,1.19392,1.16772,1.16657,1.16146,1.16139,1.13873,1.13708,1.13226,1.10931,1.10665,1.10482,1.0794,1.07934,1.07678,1.07163,1.06761,1.06286,1.06172,1.06063,1.05035,1.04787,1.04055,1.02811,1.01912,1.01691,1.00559,1.00256,0.99261,0.99123,0.96848,0.96581,0.96028,0.95835,0.95002,0.94925,0.94844,0.94767,0.94571,0.91322,0.91026,0.90474,0.8915,0.86764,0.85478,0.84809,0.84494,0.83959,0.83364,0.83175,0.81524,0.81377,0.81211,0.80628,0.80457,0.80213,0.79181,0.78644,0.78629,0.77834,0.77786,0.77507,0.77386,0.76918,0.74107,0.72724,0.71046,0.69667,0.69569,0.69353,0.68287,0.66632,0.66034,0.65577,0.64544,0.6402,0.63326,0.63211,0.62712,0.62688,0.61825,0.61807,0.61779,0.61581,0.61211,0.60924,0.60894,0.60819,0.6045,0.60134,0.58295,0.57695,0.57133,0.57073,0.56739,0.56452,0.55438,0.54294,0.54168,0.53858,0.53449,0.53422,0.52838,0.5274,0.52701,0.52306,0.52191,0.51696,0.51678,0.51445,0.50676,0.50283,0.49524,0.4919,0.48796,0.48685,0.4867,0.48468,0.47925,0.4665,0.46588,0.45454,0.45343,0.44787,0.44677,0.44529,0.43118,0.427,0.40554,0.40342,0.39871,0.39871,0.39461,0.39386,0.3936,0.39358,0.38859,0.38635,0.3811,0.36871,0.36704,0.3637,0.36342,0.35977,0.35958,0.35341,0.34991,0.34533,0.33954,0.33879,0.33747,0.33715,0.33224,0.32572,0.32513,0.32087,0.32001,0.31282,0.30429,0.29996,0.29885,0.29676,0.28797,0.2859,0.26666,0.26568,0.25779,0.25678,0.25315,0.2483,0.24486,0.24192,0.24112,0.24085,0.23367,0.22911,0.229,0.22783,0.21836,0.2181,0.21795,0.21248,0.20742,0.20666,0.20578,0.20452,0.20103,0.19712,0.18755,0.18551,0.18299,0.17693,0.17576,0.17543,0.17414,0.17181,0.16757,0.16744,0.16535,0.16514,0.16205,0.15291,0.13944,0.13823,0.13397,0.13207,0.13163,0.13028,0.12952,0.12952,0.11912,0.11682,0.11325,0.11175,0.11122,0.10975,0.10876,0.10693,0.10422,0.09815,0.09591,0.09544,0.09398,0.0905,0.08959,0.08831,0.0882,0.08733,0.08655,0.08543,0.0843,0.08341,0.08328,0.08157,0.08123,0.07993,0.07944,0.0777,0.07422,0.07137,0.07102,0.06997,0.0681,0.06561,0.06537,0.0641,0.06364,0.06222,0.06014,0.05999,0.0581,0.05465,0.05211,0.05123,0.05039,0.04895,0.04664,0.04643,0.04424,0.0432,0.03923,0.03775,0.03451,0.03191,0.03164,0.02912,0.02531,0.02506,0.02249,0.02243,0.02214,0.02028,0.01933,0.01907,0.01811,0.01745,0.01727,0.01552,0.01539,0.01452,0.01424,0.01378,0.01331,0.01102,0.00982,0.00824,0.00808,0.008,0.0077,0.0062,0.00384,0.00365,0.00342,0.00339,0.00289,0.00286,0.00256,0.00241,0.00231,0.00186,0.00171,0.0017,0.00164,0.00108,0.00059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":10483},{"name":"葛飾区","values":[108.06722,76.63799,50.526,46.59566,43.45498,42.02418,41.96377,41.67898,37.39085,36.32458,35.71235,33.97954,33.89653,33.36147,32.75238,31.58226,30.57806,30.48804,29.12244,28.91095,28.61091,28.4259,28.32406,28.15604,27.51991,27.24227,26.80599,26.74019,26.50403,26.29184,26.27587,26.12351,26.07715,25.96848,25.74205,25.66271,25.65978,25.60384,25.54892,25.42908,25.28862,24.49993,24.44264,24.33936,24.3112,24.25562,24.13294,23.72273,23.66895,23.57789,23.48246,23.04442,22.87318,22.79503,22.49697,22.35577,22.15184,22.12132,21.87767,21.62222,21.38423,21.30758,21.25895,21.15789,21.1436,21.0511,20.92408,20.84441,20.80464,20.59836,20.35108,19.92575,19.72299,19.5701,19.53878,19.47336,19.25259,18.90107,18.88853,18.75235,18.4404,18.30335,18.25848,18.20176,18.00613,17.9766,17.86974,17.84436,17.79252,17.57103,17.51814,17.50983,17.48254,17.42162,17.35565,17.3292,17.29339,17.26433,17.20089,17.059,17.05297,17.05203,17.05037,16.8274,16.74312,16.71172,16.70703,16.47383,16.33136,16.32492,16.31562,16.14402,16.12763,16.09843,15.93498,15.86124,15.807,15.77793,15.68171,15.66237,15.64683,15.59066,15.51065,15.43023,15.37512,15.34265,15.29856,15.27854,15.18442,15.15115,15.11392,15.05011,15.01821,14.892,14.82679,14.81499,14.79561,14.69906,14.65089,14.63092,14.43885,14.40277,14.32852,14.29806,14.27873,14.22938,14.18827,14.14502,13.98454,13.91887,13.88172,13.87068,13.85764,13.76151,13.70996,13.68867,13.66865,13.61815,13.54868,13.42924,13.39984,13.39085,13.31722,13.13236,13.10684,13.0092,12.9921,12.99007,12.98267,12.91284,12.89644,12.7184,12.66953,12.56513,12.46157,12.44877,12.41414,12.39275,12.33501,12.30379,12.28816,12.26248,12.16216,12.14798,12.12919,12.07814,12.07081,12.06173,11.94458,11.92261,11.75878,11.67327,11.59468,11.58481,11.57357,11.47027,11.41301,11.35787,11.33738,11.3248,11.22435,11.19476,11.15062,11.13624,11.06245,10.99923,10.87729,10.82731,10.81886,10.81587,10.76392,10.76081,10.63512,10.63253,10.5761,10.54744,10.52522,10.51352,10.51232,10.49927,10.31658,10.31099,10.27034,10.21644,10.14182,10.10061,10.01982,9.89174,9.86688,9.82383,9.78056,9.59517,9.5092,9.47488,9.46935,9.45264,9.44025,9.40411,9.34317,9.3179,9.29205,9.24551,9.20731,9.20323,9.19399,9.14278,9.05505,8.73843,8.69657,8.69575,8.66765,8.63081,8.61153,8.57652,8.56881,8.521190000000002,8.41676,8.3184,8.25095,8.197950000000002,8.173550000000002,8.11656,8.09283,8.08489,8.05301,8.03856,7.83627,7.758,7.74875,7.7138,7.70362,7.63318,7.6165,7.60657,7.51299,7.42306,7.30659,7.25533,7.09875,7.03157,7.00846,7.00376,6.89524,6.89374,6.87583,6.80966,6.73352,6.69974,6.60861,6.60007,6.51899,6.50306,6.46771,6.44169,6.40318,6.38217,6.36085,6.3219,6.28674,6.26212,6.25716,6.22013,6.1368,6.07433,6.06158,6.01318,5.89836,5.75718,5.72327,5.69322,5.67091,5.64619,5.58531,5.58177,5.55961,5.55335,5.48607,5.4456,5.44398,5.41592,5.38791,5.26114,5.25105,5.20391,5.18561,5.18054,5.16418,5.15445,5.15205,5.10109,5.10027,5.08985,4.93675,4.92523,4.90998,4.7905,4.75313,4.74813,4.74044,4.73975,4.73323,4.73106,4.65205,4.55017,4.53886,4.53158,4.52121,4.41888,4.40798,4.39879,4.39091,4.30929,4.28735,4.24398,4.23328,4.23215,4.1672,4.165510000000001,4.157250000000001,4.137260000000001,4.11242,4.11132,4.05731,4.04035,4.03393,4.02942,3.99684,3.99608,3.95169,3.92359,3.91659,3.90141,3.88442,3.86757,3.841,3.8324,3.77099,3.75479,3.73,3.71762,3.7072,3.70098,3.61629,3.59304,3.5488,3.51924,3.49379,3.48437,3.47175,3.46956,3.44291,3.43689,3.41363,3.39264,3.37336,3.3511,3.32713,3.30862,3.26469,3.26347,3.26332,3.24523,3.22552,3.14451,3.11896,3.1182,3.10806,3.10355,3.08565,3.05921,3.04166,2.96653,2.92781,2.88272,2.87986,2.87434,2.85285,2.82926,2.81388,2.7756,2.71583,2.63674,2.61212,2.60743,2.59751,2.59499,2.59116,2.57219,2.54714,2.53148,2.50231,2.48696,2.42692,2.36182,2.21832,2.15937,2.1442,2.06663,2.05637,2.03929,1.98316,1.90265,1.84259,1.8008,1.77286,1.76789,1.70277,1.68255,1.51318,1.413,1.40532,1.40324,1.30565,1.30042,1.24849,1.22701,1.22067,1.2169,1.13768,1.08819,1.03754,1.00119,0.99266,0.97384,0.91395,0.83688,0.83392,0.7691,0.72783,0.68325,0.61699,0.57314,0.54732,0.50385,0.38068,0.36796,0.30009,0.29366,0.29125,0.26724,0.24888,0.2089,0.20101,0.15551,0.10974,0.07667,0.0661,0.06595,0.03825,0.03594,0.01092,0.00969,0.00689,0.00676,0.00429,0.00405,0.00317,0.00316,0.0029,0.00262,0.00203,0.00069,0.00067,0.00047,0.00017,0.00014,0.00011,0.00006,0.00005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":3040},{"name":"大田区","values":[137.12221,118.61903,115.66628,108.37461,107.83433,106.88353,103.19252,102.98473,99.72711,98.50618,97.54444,95.13133,94.42008,94.28688,93.55676,93.40821,93.37391,91.57963,91.4599,90.38557,88.99088,88.03017,87.44364,87.12226,86.87172,86.4565,84.37923,84.08426,83.43055,82.35996,82.08105,81.54939,81.12254,79.82687,79.51922,79.00898,78.27703,77.7918,77.77379,77.70315,77.07651,76.27607,75.28168,74.88225,74.63915,74.57076,73.20921,72.98333,72.28572,72.1213,72.02071,71.88973,71.87703,71.61654,71.17167,70.61803,70.36699,70.35437,69.81594,69.61187,69.30166,68.66574,68.15479,68.10763,66.97455,65.52737,65.32169,65.04277,64.75906,64.62877,63.82922,63.76919,63.70134,63.69928,63.2838,63.2624,62.9229,62.60786,62.52824,62.37683,62.09357,61.76326,61.75601,61.35447,61.25694,61.08905,60.64518,60.58551,60.47344,60.13886,59.78139,59.75797,59.73238,59.30724,59.25893,58.71431,58.39959,58.29177,58.04352,58.03807,57.13959,57.04233,56.6118,56.58445,55.7211,55.69326,55.33714,55.33003,55.28622,55.09973,54.75338,54.72861,54.72017,54.50879,54.13419,54.0851,53.94946,53.85378,53.44149,53.35566,53.17591,52.64339,52.39164,52.10442,51.8318,51.64556,51.54242,51.43872,51.37212,51.33846,51.32773,51.31914,51.29561,50.9265,50.58161,50.52855,50.2354,50.11335,49.92495,49.71656,49.70999,49.38247,49.29146,49.27475,48.84545,48.76681,48.42728,48.39413,48.044,48.00398,47.78164,47.67629,47.44594,47.11355,47.04487,46.82983,46.75669,46.58716,46.57357,46.54496,46.54343,46.4233,46.39988,46.17993,45.81886,45.55234,45.39523,44.98472,44.85273,44.7589,44.70137,44.58984,44.57905,44.513,44.26725,44.19283,43.98875,43.94326,43.4211,43.32729,43.20205,43.08382,42.96202,42.93269,42.87624,42.73822,42.57364,42.54154,42.36093,42.07519,41.99324,41.97611,41.86896,41.7298,41.44011,41.26083,41.14016,41.11446,40.96378,40.91468,40.90502,40.87028,40.61239,40.36771,40.16927,39.9195,39.84425,39.72195,39.4795,38.92882,38.86929,38.31549,37.73946,37.68761,37.66334,37.38865,37.09568,36.89151,36.87882,36.45359,36.44945,36.43467,35.43187,35.3654,35.03605,34.8344,34.67638,34.4238,34.41701,34.37772,34.01161,33.90164,33.52778,33.51621,33.41034,33.20474,33.1837,33.17022,32.939,32.87993,32.68934,32.4329,32.26064,32.20033,31.87699,31.86281,31.68711,31.48536,31.42704,31.37111,31.06251,31.04091,30.93202,30.8946,30.88431,30.80306,30.71542,30.69712,30.45693,30.33589,30.17677,30.09161,30.07899,29.78387,29.73756,29.50176,29.30825,29.07022,28.6748,28.60097,28.57668,28.57322,28.3914,28.32162,28.20971,27.9321,27.88677,27.8142,27.6125,27.6101,27.6054,27.58901,27.5875,27.4688,27.00559,27.00197,26.84293,26.55371,26.52353,26.52004,26.42787,26.28237,26.26497,26.25994,26.23846,26.14005,26.09566,25.79647,25.23436,25.20426,24.89288,24.73855,24.64925,24.53139,24.24146,23.95817,23.90648,23.7541,23.75089,23.31794,23.31434,22.957,22.82766,22.53281,22.36751,22.26486,22.09317,22.04986,21.93734,21.59278,21.34793,21.25972,21.21532,21.20803,21.204,21.2033,21.1303,21.10029,20.98139,20.97869,20.84758,20.74904,20.63716,20.4817,20.26491,20.17486,20.17079,19.9562,19.95569,19.85356,19.7852,19.63246,19.20849,19.12723,18.87851,18.74415,18.6817,18.4341,18.4196,18.29003,18.07577,18.00661,17.72759,17.66714,17.47944,17.42668,17.35476,17.32242,17.18874,17.08745,17.00404,16.83369,16.67674,16.48035,16.3307,16.15118,16.13634,16.00615,16.00498,15.99838,15.80019,15.70025,15.66481,15.62753,15.54348,15.40763,15.271,15.24873,15.24394,15.20891,15.10886,15.09392,14.99932,14.98176,14.93741,14.88579,14.79142,14.72738,14.64306,14.63034,14.5942,14.54987,14.40097,14.39173,14.2185,13.93964,13.92539,13.85337,13.79779,13.57717,13.48918,13.45788,13.43137,13.39265,13.17571,13.11197,13.08634,13.07791,13.00924,12.99071,12.90455,12.78832,12.7545,12.59075,12.5896,12.4777,12.4542,12.4005,12.37533,12.03875,12.00122,11.99184,11.97111,11.92009,11.63627,11.62949,11.55689,11.52489,11.44285,11.34339,11.12385,11.02871,10.86714,10.76309,10.73555,10.60135,10.58659,10.53348,10.51434,10.33322,10.27358,9.99705,9.95748,9.88746,9.83903,9.52563,9.48737,9.48629,8.92182,8.706440000000002,8.67813,8.66948,8.59545,8.57409,8.570080000000003,8.556520000000003,8.44465,7.97845,7.72904,7.41946,7.41042,7.36487,7.32231,7.2565,7.16009,7.15402,7.13308,7.03297,7.02045,6.88339,6.87425,6.82335,6.79058,6.73335,6.61377,6.52968,6.49416,6.45374,6.42843,6.41529,6.20469,6.03854,6.03137,6.01154,5.94856,5.94091,5.93207,5.9145,5.86526,5.75848,5.75307,5.6098,5.59301,5.52586,5.50109,5.49598,5.37875,5.37356,5.2015,5.09952,5.09287,4.86255,4.82123,4.81681,4.79961,4.73943,4.69734,4.68845,4.65938,4.61671,4.5582,4.55575,4.53914,4.49113,4.446290000000001,4.33383,4.230400000000001,4.181580000000001,4.08864,3.92611,3.91317,3.88549,3.81998,3.58126,3.55452,3.53616,3.53533,3.50555,3.49126,3.43306,3.39116,3.31685,3.26302,3.24932,3.2448,3.2445,3.06709,3.03139,3.00826,2.95999,2.94355,2.9423,2.94121,2.86644,2.85192,2.74805,2.73534,2.72487,2.68422,2.67468,2.67433,2.55829,2.53754,2.52639,2.52587,2.52587,2.48408,2.45567,2.34229,2.33741,2.29671,2.18364,2.16299,2.06661,2.05939,2.03233,1.99218,1.99103,1.97319,1.95136,1.93867,1.92119,1.90642,1.90273,1.85984,1.8236,1.81797,1.73547,1.72744,1.71292,1.70694,1.67468,1.67415,1.65804,1.65117,1.64465,1.64092,1.60404,1.56619,1.52908,1.52652,1.52046,1.51542,1.43309,1.41043,1.39523,1.39293,1.36721,1.35318,1.33254,1.32773,1.31238,1.31175,1.2884,1.23783,1.19298,1.17082,1.16837,1.1586,1.14317,1.13619,1.12187,1.07582,1.0542,1.03527,1.0243,1.01716,1.01097,1.01095,1.01028,0.99845,0.99163,0.98686,0.9794,0.97525,0.94475,0.93255,0.89108,0.89042,0.86609,0.83033,0.82793,0.81358,0.77521,0.76673,0.7269,0.7153,0.6855,0.68262,0.67373,0.67199,0.66043,0.65143,0.64958,0.64838,0.64827,0.63742,0.57234,0.56244,0.54292,0.50806,0.50616,0.50513,0.50513,0.49768,0.49575,0.49487,0.49479,0.48687,0.48684,0.47838,0.47478,0.46109,0.46056,0.44716,0.44289,0.41851,0.41307,0.41227,0.39056,0.38981,0.38078,0.3706,0.35242,0.34429,0.34364,0.34215,0.34144,0.34131,0.33684,0.33112,0.33051,0.32763,0.32018,0.31847,0.31635,0.3163,0.30895,0.3023,0.25851,0.22083,0.21219,0.21022,0.20735,0.20729,0.20603,0.20332,0.19712,0.19485,0.17471,0.17429,0.15808,0.15347,0.14194,0.14178,0.14132,0.12145,0.11514,0.11129,0.10918,0.10264,0.10225,0.10005,0.09718,0.09687,0.09448,0.07992,0.07231,0.07078,0.07074,0.07068,0.07065,0.07065,0.07065,0.05924,0.0557,0.05152,0.04666,0.0464,0.03518,0.03403,0.02491,0.02441,0.02139,0.0132,0.013,0.01287,0.01043,0.00929,0.00785,0.00737,0.00687,0.00574,0.00445,0.00438,0.00355,0.00303,0.00284,0.00271,0.00214,0.002,0.00176,0.00172,0.00123,0.00122,0.00114,0.00099,0.00091,0.00083,0.00066,0.00047,0.00036,0.00014,0.00004,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":2674},{"name":"墨田区","values":[155.50716,146.10215,128.12686,126.01474,125.7988,116.44698,110.6458,97.25786,92.99452,87.66455,87.03163,83.49552,82.57758,78.64505,72.25579,71.51973,67.77156,65.77175,62.57838,52.66143,51.81718,50.38446,47.83365,46.7683,46.68915,46.3863,46.01651,45.99883,45.9891,45.8517,45.49877,44.4204,41.769,41.4841,41.18993,39.8152,39.64792,39.06817,38.75573,37.33898,36.86879,36.34377,35.52109,35.38159,34.47074,34.28163,32.32733,31.00681,30.39905,29.64456,29.02618,28.95611,27.20869,26.66554,25.72484,25.51644,25.42263,24.72725,24.65084,24.30117,23.89143,23.7498,22.77065,22.69699,22.15632,22.12635,21.93296,21.16773,20.13222,19.38956,19.26788,17.06513,16.90383,16.53376,16.06932,15.75035,15.67133,15.48945,14.95286,14.85678,14.69452,13.57899,13.57003,12.57748,12.3139,12.0416,11.01601,10.81838,10.17497,9.80873,9.70127,8.8691,8.82289,7.92266,7.87231,7.29927,7.07116,7.06948,7.02785,6.74356,6.51135,6.14511,5.60911,5.40171,5.16305,5.13865,4.85005,4.35869,4.150730000000001,4.11562,4.11522,3.95455,3.89276,3.77426,3.7064,3.60831,3.51677,3.16925,3.15397,3.10913,3.01443,2.88412,2.7519,2.7024,2.50254,2.48139,2.26536,2.19053,2.05514,2.01221,2.0066,1.86041,1.78763,1.764,1.65817,1.63015,1.58077,1.57467,1.52609,1.37172,1.36868,1.30688,1.27998,1.24292,1.21211,1.20037,1.12101,1.09462,1.06769,1.02473,1.01519,0.96356,0.9558,0.93505,0.93131,0.91995,0.87538,0.85393,0.8126,0.79504,0.79301,0.71243,0.69076,0.66656,0.63635,0.59726,0.58144,0.57616,0.5727,0.57083,0.53963,0.53693,0.53117,0.49755,0.4414,0.42913,0.41494,0.40772,0.40572,0.3733,0.36423,0.3399,0.33768,0.33046,0.32823,0.31494,0.30459,0.27672,0.23295,0.22573,0.13103,0.13083,0.12872,0.12721,0.10611,0.10309,0.10303,0.01784,0.01349,0.00822,0.00325,0.00062,0.00033,0,0,0,0,0,0,0],"total":1903},{"name":"品川区","values":[153.25235,105.41173,102.91907,102.17582,98.51678,98.24986,95.5256,94.71195,86.53125,85.23096,83.57397,83.16409,82.03599,76.75122,76.18428,76.12326,76.03171,75.66974,74.40669,72.44098,70.79046,69.80249,68.85754,68.76476,68.3619,68.19586,68.09806,67.01312,66.91147,66.01887,65.39789,64.686,63.23196,62.85455,62.47706,62.26503,60.08079,58.00289,57.98017,57.58726,57.37926,52.67859,52.28002,52.03562,51.3395,49.97961,49.94733,46.32681,45.98386,45.76991,45.31418,45.28546,43.96769,43.51296,43.15797,42.64977,41.70318,40.91279,40.33471,39.86888,39.82459,39.80598,39.45022,38.9671,38.63974,38.2802,37.6703,37.36659,36.30285,35.76146,35.66094,35.62918,35.47259,34.40693,33.91064,33.5819,33.48591,32.86486,32.60376,32.53986,31.04437,30.47793,30.35009,30.11985,29.48404,29.15753,29.04403,28.9924,28.74631,28.19878,27.9153,26.48662,25.45837,25.39615,25.30297,24.71267,24.64221,24.53444,24.28315,23.78561,23.28146,22.5133,22.33497,21.84326,21.68086,21.39146,21.23723,21.10162,21.07971,19.66443,19.57338,19.47213,19.3563,18.4983,18.34399,18.1939,18.13555,18.12949,17.85406,17.75487,17.70509,17.54696,17.0999,16.94125,16.48763,16.34924,16.19006,16.02539,15.61005,15.02966,14.9686,14.62354,14.58248,14.40712,14.23214,13.78366,13.6197,13.59151,13.56639,13.1138,13.01367,12.89592,12.88155,12.58536,11.80432,11.79823,11.32976,11.07412,10.87717,10.46478,10.32795,10.26328,9.91084,9.88776,9.54204,9.28644,9.14959,8.97805,8.5663,8.54161,8.52713,8.23746,7.99904,7.97277,7.93845,7.81185,7.66146,7.5826,7.45847,7.39836,7.39823,7.21707,6.78068,6.62155,6.57922,6.43982,6.35555,6.17061,5.96359,5.91441,5.89709,5.81286,5.79544,5.34481,5.31509,5.16524,4.93769,4.78085,4.74282,4.438500000000001,4.23336,4.22234,4.1413,4.075910000000001,4.06042,4.012260000000001,3.95271,3.92726,3.90758,3.80611,3.75277,3.68206,3.6566,3.65447,3.61314,3.33251,3.32398,3.27456,3.24837,3.11198,3.02406,3.02005,2.65322,2.63506,2.58442,2.53931,2.5053,2.44707,2.32247,2.08304,2.01755,2.00194,1.91621,1.74652,1.6895,1.66633,1.6541,1.62417,1.61696,1.59207,1.58082,1.55655,1.42876,1.42619,1.38091,1.32608,1.32604,1.32101,1.22661,1.21856,1.15815,1.13073,1.11,1.10999,1.03964,1.03196,0.98515,0.98034,0.89638,0.89307,0.87309,0.85376,0.82073,0.81077,0.78829,0.72181,0.71381,0.64952,0.63498,0.60741,0.6055,0.59892,0.59834,0.58378,0.53417,0.52953,0.52851,0.52837,0.512,0.49664,0.49242,0.46469,0.4465,0.44581,0.44129,0.4153,0.41407,0.40911,0.40729,0.40604,0.37804,0.34403,0.34398,0.34054,0.33448,0.32483,0.31434,0.28811,0.26898,0.26428,0.25164,0.21188,0.20409,0.20012,0.18761,0.1663,0.12911,0.11901,0.11403,0.10787,0.10763,0.09547,0.08888,0.08247,0.0824,0.08054,0.07483,0.07055,0.07018,0.06813,0.06176,0.0604,0.05692,0.05624,0.04175,0.03947,0.02737,0.0227,0.0226,0.01862,0.01355,0.01299,0.00864,0.00767,0.00698,0.00653,0.00633,0.00622,0.00522,0.00463,0.00461,0.00249,0.00228,0.00226,0.00186,0.0018,0.0014,0.00123,0.00102,0.001,0.00094,0.0008,0.00075,0.0007,0.00065,0.00045,0.00045,0.00027,0.00017,0.00013,0.0001,0.00009,0.00005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":1657},{"name":"江戸川区","values":[206.05823,196.5033,188.12188,172.93749,167.82685,151.3652,150.45391,148.54702,145.89311,140.02291,139.68547,138.92355,130.29928,130.11035,129.0649,120.91374,120.25059,119.77933,119.31732,119.06027,115.198,114.78989,111.77221,110.57322,108.96187,108.36694,108.32119,106.65219,106.22915,105.59884,101.93351,98.73752,98.51814,95.80762,94.8397,93.14601,91.08947,89.60209,89.52669,89.22303,88.10388,87.84955,82.83523,80.40995,80.33488,80.22908,79.58555,76.76852,76.74413,76.46251,75.33033,75.26057,75.18443,73.95847,73.39123,73.31405,71.12994,70.47363,70.37084,70.15614,70.08318,69.57828,69.40697,68.95036,67.93549,67.64992,67.36117,67.23804,65.38084,64.31759,63.45695,63.07884,63.01213,62.56659,62.55646,62.05883,61.82973,61.29672,61.11153,59.67715,59.46426,58.94814,58.51707,58.25679,58.10026,58.09994,57.2353,56.66103,55.09911,53.90146,53.14435,53.05758,52.50189,51.82435,51.76597,51.6316,50.89256,49.02841,49.01375,48.78082,48.42961,48.37359,48.03123,47.9979,47.24959,46.66576,46.29896,44.70691,44.59337,43.86933,43.82413,43.54683,43.31842,42.67265,42.64835,42.45604,42.26208,42.23936,42.22315,42.04828,42.02047,41.30604,41.2616,41.24653,41.09555,41.03397,40.63717,40.48025,40.16419,39.61553,39.33812,39.09315,38.61211,38.2491,38.10307,37.67506,36.73335,36.60007,36.56359,35.82117,35.76265,35.72364,35.6482,35.35382,35.10333,34.49371,34.15032,33.79793,33.4105,33.36808,32.22758,32.14982,31.83255,31.46107,31.33013,31.30042,30.90487,30.86788,30.86699,30.5503,30.40004,30.11023,30.06571,29.69293,29.57628,29.56222,29.51088,29.31506,29.29578,28.95638,28.77726,28.43948,28.35646,27.74155,27.41744,27.19468,26.90342,26.89848,26.80925,26.77152,26.047,25.98109,25.90289,25.88632,25.76622,25.75472,24.9641,24.91915,24.70212,24.11869,23.96558,23.60731,23.1912,23.09903,23.08216,22.04979,21.96295,21.95938,21.93372,21.66484,21.66272,21.50529,21.47102,21.16535,21.09826,21.03969,20.93476,20.62421,20.54275,20.49337,20.36855,20.34685,20.15438,20.05404,20.02799,19.80053,19.23279,19.13576,18.90321,18.89276,18.87763,18.79472,18.73317,18.63798,18.54537,18.31096,18.29364,18.24059,18.05849,17.9858,17.77163,17.48443,17.46767,17.39079,17.36898,17.27463,17.20885,17.12866,16.93266,16.67146,16.53643,16.05388,16.04348,15.98121,15.95425,15.77906,15.65976,15.59401,15.29481,15.15393,15.12137,15.08956,15.08418,15.06906,14.96282,14.80679,14.79581,14.74347,14.62877,14.56755,14.47944,14.27815,14.21197,14.17996,13.8359,13.82862,13.81279,13.6615,13.48367,13.42543,13.37775,13.09028,13.06464,13.06271,12.97383,12.76958,12.7249,12.66105,12.56921,12.48695,12.47072,12.44853,12.43231,12.11467,12.02759,12.01748,11.97141,11.90472,11.69613,11.57244,11.55062,11.06574,10.93838,10.82206,10.80878,10.73994,10.73349,10.72885,10.72781,10.68527,10.43028,10.37684,10.37428,10.37309,10.33534,10.26817,10.18719,10.08524,9.94223,9.92748,9.85581,9.79882,9.77866,9.70795,9.61037,9.5602,9.54057,9.37043,9.28641,9.18259,9.11674,9.0526,8.953060000000002,8.76031,8.7232,8.67393,8.57748,8.56188,8.5,8.4516,8.44073,8.393090000000003,8.39113,8.374980000000003,8.359830000000002,8.29461,8.23976,8.17703,8.16194,8.107620000000002,8.08574,8.0776,8.04182,7.9061,7.84943,7.72304,7.70433,7.66364,7.63006,7.56494,7.54777,7.52596,7.41003,7.37312,7.37163,7.3081,7.285,7.24049,7.1582,7.14245,7.11896,7.09677,7.05583,6.95369,6.93942,6.90059,6.88686,6.80796,6.75159,6.71538,6.71158,6.63063,6.61639,6.5694,6.47076,6.46507,6.46092,6.40728,6.38694,6.37832,6.37531,6.36271,5.99912,5.94872,5.8872,5.86423,5.745,5.69513,5.65862,5.65314,5.64672,5.61194,5.59324,5.56274,5.56212,5.55826,5.4697,5.46444,5.4578,5.40376,5.40116,5.24862,5.22451,5.21919,5.19524,5.1686,5.13567,5.02067,4.9828,4.97706,4.95008,4.9192,4.86633,4.7648,4.65656,4.63676,4.63523,4.51607,4.488000000000001,4.456800000000001,4.4487,4.43999,4.4325,4.371050000000001,4.28981,4.25235,4.23635,4.22906,4.151,3.84043,3.79644,3.78256,3.75612,3.73916,3.73583,3.73241,3.69826,3.66687,3.57388,3.5644,3.55272,3.46976,3.45334,3.42531,3.35798,3.30567,3.24248,3.21638,3.19717,3.12061,3.11582,3.01569,3.01225,2.99669,2.9941,2.96458,2.93475,2.92924,2.9098,2.90062,2.86378,2.85676,2.84658,2.84243,2.82348,2.82087,2.81553,2.80825,2.79113,2.76511,2.75117,2.7404,2.7184,2.70341,2.68056,2.65168,2.65032,2.64189,2.63955,2.63171,2.61762,2.55238,2.53478,2.46105,2.45488,2.4514,2.41988,2.4183,2.40277,2.39601,2.36709,2.36659,2.35892,2.34524,2.28355,2.27787,2.24991,2.21581,2.16974,2.15506,2.14366,2.12133,2.11936,2.06685,2.06474,2.016,1.97324,1.96998,1.96947,1.95784,1.94394,1.91664,1.9099,1.88668,1.85367,1.77115,1.72658,1.72385,1.68684,1.66953,1.66547,1.65341,1.61764,1.58286,1.57811,1.57471,1.55276,1.52957,1.51547,1.51302,1.45222,1.40843,1.39753,1.39525,1.38885,1.38709,1.32743,1.32717,1.32172,1.30096,1.2832,1.2814,1.27057,1.19882,1.18308,1.18048,1.17103,1.15998,1.11132,1.11031,1.05097,1.02858,1.01946,1.01895,0.99689,0.94735,0.90989,0.88899,0.88649,0.8638,0.85385,0.84522,0.844,0.81793,0.79908,0.79242,0.77669,0.73204,0.73164,0.70233,0.69299,0.69253,0.68714,0.68546,0.67234,0.67076,0.63576,0.63186,0.62507,0.61985,0.61477,0.61207,0.60081,0.59347,0.58731,0.57936,0.56498,0.56433,0.55365,0.52679,0.52201,0.51818,0.5108,0.50656,0.47985,0.47337,0.43437,0.42578,0.41856,0.41752,0.40257,0.39355,0.38244,0.36869,0.34674,0.34472,0.33469,0.31151,0.2898,0.25639,0.22057,0.21046,0.20344,0.2005,0.1834,0.17207,0.16483,0.15409,0.15288,0.14754,0.14746,0.14152,0.14108,0.13784,0.121,0.11914,0.11447,0.10848,0.10007,0.09908,0.09255,0.09046,0.08494,0.07114,0.07074,0.06669,0.05581,0.05194,0.05168,0.04946,0.04854,0.04746,0.04698,0.03556,0.03371,0.02781,0.02736,0.02599,0.02468,0.02261,0.02009,0.01916,0.01738,0.01733,0.01675,0.01477,0.01168,0.01149,0.01147,0.01139,0.01131,0.01116,0.00961,0.00931,0.00928,0.00883,0.00756,0.00718,0.00714,0.00556,0.00527,0.00477,0.00463,0.00433,0.00353,0.00336,0.00328,0.00284,0.00252,0.00221,0.00191,0.00186,0.00177,0.00156,0.00131,0.00101,0.00057,0.00028,0.00025,0.0002,0.00019,0.00019,0.00009,0.00003,0.00002,0.00002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":1624},{"name":"目黒区","values":[125.3903,105.81415,100.68113,98.77495,97.63795,95.72342,95.05644,86.31553,82.58974,80.40873,77.72061,76.53015,74.563,73.77355,72.83647,70.66982,68.27912,66.80466,66.06169,65.77545,61.32765,58.4433,57.54798,55.83781,55.60193,47.32989,47.23593,46.35822,45.88857,45.02995,44.82896,44.64739,43.50624,40.16696,39.46661,38.53579,34.75258,34.56002,34.50692,34.46714,32.23199,31.99562,31.57395,31.51726,31.29478,31.12456,30.55532,30.26244,30.2378,30.19732,28.90924,28.65803,28.51471,28.05516,27.82182,27.6002,27.44511,27.35945,26.94107,26.69265,26.04209,25.83932,25.7194,25.229,24.89075,24.826,24.43641,24.35563,24.16947,24.09395,24.08553,23.18769,22.95019,22.27713,22.18032,22.11556,21.88257,21.69835,19.06357,18.47366,18.32689,17.09541,17.05222,16.88995,16.4262,16.05066,15.90543,15.5142,15.31685,15.18191,15.10955,14.90824,13.83552,13.56376,13.50274,13.11153,13.09258,12.9349,12.83456,12.66077,12.1538,11.7974,11.6581,11.6309,11.56879,11.53678,11.53041,10.76838,10.43229,10.3101,9.98768,9.88899,9.77539,9.73598,9.68381,9.63151,9.33903,9.18519,8.842320000000003,8.65795,8.48552,8.27592,8.2705,7.85662,7.75436,7.69013,7.41075,7.32177,7.18027,7.13393,7.02544,7.02313,6.75802,6.55613,6.2318,6.05065,5.98451,5.93829,5.93598,5.80145,5.74843,5.40824,5.36164,5.13676,5.09193,4.94596,4.92584,4.92209,4.92095,4.86278,4.80831,4.69569,4.66547,4.61444,4.54051,4.52957,4.5133,4.496800000000001,4.38779,4.23048,4.162340000000001,3.87287,3.4607,3.42987,3.2806,3.22321,3.12682,3.11436,3.1032,2.94825,2.83856,2.78624,2.69474,2.68745,2.60726,2.58768,2.47451,2.3586,2.32752,2.28171,2.15453,2.15228,2.10094,1.95978,1.87908,1.87016,1.79522,1.70406,1.5864,1.54414,1.52213,1.46277,1.43748,1.41295,1.35115,1.32085,1.19433,1.17795,1.17098,1.14963,1.14356,1.14194,1.10078,1.03972,0.95269,0.86694,0.86455,0.86066,0.83066,0.79229,0.77134,0.73804,0.73676,0.73599,0.7237,0.64602,0.6361,0.59182,0.58335,0.53442,0.33991,0.33617,0.32112,0.23458,0.15366,0.13343,0.13192,0.08325],"total":1349},{"name":"中野区","values":[14.84078,12.07253,11.7442,10.72933,10.43039,9.61182,9.59891,9.31275,9.25115,9.11549,9.10957,9.0876,9.04406,8.961370000000002,8.84377,8.56241,7.83216,7.64464,7.64435,7.62907,7.5823,7.41718,7.40846,7.32301,7.27127,7.11638,7.10986,7.0907,7.07953,6.9812,6.97309,6.92649,6.82998,6.68166,6.6475,6.51633,6.44274,6.38272,6.33702,6.32095,6.31107,6.21384,6.2098,6.20903,6.19225,6.16898,6.10548,6.0951,6.04533,6.02359,5.99405,5.99142,5.98801,5.88302,5.86585,5.83663,5.73852,5.73,5.57966,5.56337,5.42919,5.42456,5.41758,5.40248,5.38904,5.37155,5.3357,5.31114,5.21643,5.21345,5.20711,5.16535,5.15074,5.06976,5.00108,4.98888,4.96757,4.95247,4.93189,4.87742,4.85845,4.8536,4.85287,4.84075,4.82806,4.80108,4.79754,4.73845,4.70057,4.63069,4.6229,4.56901,4.55075,4.53131,4.47102,4.45143,4.437890000000001,4.436930000000001,4.33877,4.32933,4.26655,4.25611,4.25041,4.21496,4.21115,4.21101,4.18152,4.155770000000001,4.13157,4.089870000000001,4.064390000000001,4.03716,4.00776,4.00443,4.00252,3.93265,3.8933,3.86941,3.84548,3.84265,3.77255,3.75679,3.67898,3.67264,3.66776,3.6637,3.61758,3.60277,3.60275,3.59191,3.58469,3.56633,3.55145,3.55056,3.50008,3.49699,3.45902,3.43081,3.41338,3.39307,3.34201,3.32771,3.28987,3.25311,3.24501,3.23773,3.18369,3.16785,3.15545,3.14387,3.09149,3.05236,3.02496,3.01239,2.9808,2.97453,2.96737,2.93727,2.93458,2.91999,2.89017,2.88163,2.87423,2.8637,2.86137,2.85945,2.85477,2.82598,2.7876,2.71548,2.69241,2.61805,2.60271,2.5822,2.50026,2.48276,2.44493,2.44484,2.42045,2.40308,2.38638,2.38276,2.37633,2.36045,2.35329,2.29469,2.29263,2.28414,2.27904,2.27095,2.22078,2.13794,2.1307,2.12742,2.1135,2.10125,2.0801,2.07526,2.06473,2.02718,1.95093,1.93674,1.92597,1.91326,1.89922,1.86163,1.82604,1.8067,1.79147,1.76906,1.73513,1.72578,1.70671,1.68898,1.68718,1.60343,1.57744,1.5716,1.55507,1.45612,1.45596,1.25108,1.23304,1.233,0.9413,0.85149,0.83912,0.69278,0.6815,0.66354,0.64435,0.64023,0.48231,0.32511,0.28077,0.13431],"total":1328},{"name":"板橋区","values":[17.44625,16.02353,14.32143,14.12573,14.02988,13.49249,13.41028,12.80964,12.66056,12.21226,12.19155,11.99806,11.70316,11.0022,10.80987,10.55321,10.13471,10.12621,10.0954,10.09217,9.93072,9.4679,9.27334,9.20044,8.93153,8.92761,8.82597,8.78131,8.4461,8.158390000000002,8.13515,8.11667,8.1004,8.03632,7.65197,7.63691,7.60381,7.43039,7.38175,7.33947,7.25849,7.22947,7.22941,7.17294,7.15054,7.02864,6.98349,6.96568,6.85845,6.74178,6.59748,6.4393,5.99487,5.91248,5.901,5.83469,5.64762,5.64538,5.54334,5.40856,5.26434,5.20751,5.16026,5.14276,5.13138,4.9095,4.76844,4.7423,4.59801,4.54326,4.46207,4.361170000000001,4.351790000000001,4.2265,4.22316,4.087,4.07396,4.07182,4.06757,4.062350000000001,4.04456,4.00206,4.00015,3.95466,3.9518,3.88409,3.83463,3.80383,3.73822,3.69615,3.69204,3.53457,3.50652,3.46359,3.37276,3.28875,3.27641,3.21653,3.1625,3.15897,3.14496,3.11196,2.99896,2.99073,2.94538,2.92737,2.91752,2.90973,2.90092,2.86368,2.86312,2.85557,2.83968,2.77658,2.73951,2.67359,2.64418,2.62697,2.56751,2.54709,2.52686,2.50508,2.49164,2.41975,2.38927,2.34315,2.33802,2.31088,2.30109,2.28673,2.21583,2.19994,2.12142,2.11686,2.06504,2.04716,2.03518,2.01735,2.01465,2.00297,1.95953,1.95622,1.95068,1.8931,1.86873,1.84699,1.81685,1.80081,1.79357,1.76002,1.691,1.67351,1.61982,1.57075,1.48849,1.48543,1.47662,1.45141,1.45102,1.43917,1.41856,1.4144,1.3037,1.29209,1.26881,1.23902,1.2389,1.23875,1.20919,1.1944,1.19251,1.19142,1.16894,1.15855,1.15727,1.15218,1.10962,1.0898,1.07228,1.03248,0.98753,0.96774,0.96062,0.94721,0.93621,0.90646,0.88822,0.86003,0.84302,0.83831,0.80949,0.80753,0.79787,0.79347,0.79203,0.78628,0.77838,0.75725,0.7453,0.72922,0.72517,0.72218,0.71554,0.7121,0.70978,0.70521,0.70505,0.69926,0.69707,0.68795,0.67554,0.67293,0.65715,0.65453,0.65443,0.64738,0.63499,0.631,0.60677,0.60306,0.60027,0.58168,0.57531,0.57374,0.57119,0.54878,0.54561,0.54295,0.54102,0.53103,0.5299,0.52559,0.52302,0.52189,0.51836,0.51455,0.51312,0.50804,0.50076,0.49721,0.49348,0.48427,0.48273,0.48139,0.48078,0.46951,0.44729,0.44663,0.43635,0.43112,0.42952,0.41605,0.41408,0.41229,0.41045,0.40456,0.39688,0.39145,0.38918,0.388,0.38758,0.38698,0.3847,0.34414,0.3381,0.33367,0.32966,0.32427,0.32132,0.31507,0.31173,0.30972,0.30865,0.30329,0.29987,0.29243,0.29234,0.29223,0.29091,0.28987,0.28406,0.28281,0.28065,0.28014,0.27889,0.27399,0.26633,0.26101,0.25774,0.25595,0.24889,0.24857,0.24028,0.24015,0.24015,0.23819,0.23582,0.23301,0.23009,0.22331,0.21879,0.21808,0.21316,0.20464,0.19996,0.1996,0.19544,0.19443,0.19318,0.18886,0.18868,0.18841,0.18758,0.1871,0.1843,0.18054,0.17359,0.17356,0.17325,0.17129,0.16633,0.16192,0.15742,0.15669,0.15364,0.15222,0.15142,0.14803,0.14577,0.14397,0.14289,0.1423,0.14198,0.14008,0.13906,0.13858,0.13758,0.13626,0.13532,0.13462,0.12985,0.12858,0.12576,0.12547,0.12356,0.11928,0.11891,0.11802,0.11765,0.11602,0.11208,0.11045,0.10867,0.10769,0.10756,0.10607,0.10346,0.10122,0.09975,0.09643,0.09547,0.09537,0.09509,0.09461,0.09393,0.09104,0.08987,0.08965,0.08866,0.08768,0.08748,0.08665,0.08659,0.08507,0.08468,0.08367,0.08266,0.08187,0.08011,0.07878,0.07687,0.07329,0.07322,0.07116,0.07001,0.06789,0.06786,0.06584,0.06483,0.0639,0.06364,0.06124,0.05927,0.05893,0.05757,0.05546,0.05507,0.05506,0.05289,0.05113,0.05109,0.05094,0.04973,0.04954,0.04914,0.04876,0.04864,0.0477,0.04754,0.04687,0.04546,0.0452,0.04172,0.04023,0.04004,0.03951,0.0388,0.03788,0.03767,0.03733,0.03729,0.03656,0.03652,0.03535,0.03523,0.03485,0.03345,0.03279,0.03273,0.03218,0.03112,0.02927,0.02691,0.02688,0.02621,0.02497,0.02497,0.02478,0.02433,0.02426,0.02294,0.02252,0.02186,0.02178,0.02175,0.02087,0.02059,0.02043,0.02035,0.01949,0.01887,0.01878,0.01829,0.01732,0.01654,0.01649,0.01645,0.01549,0.01519,0.01487,0.01375,0.01263,0.01149,0.01048,0.00937,0.00876,0.00838,0.00785,0.00766,0.00692,0.0069,0.00686,0.00681,0.00582,0.00572,0.00558,0.00553,0.00501,0.0039,0.00297,0.00203,0.00177,0.00141,0.00121,0.00108,0.00069,0.00022,0.00002,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":1189},{"name":"豊島区","values":[15.9213,15.36358,15.32963,14.93441,14.841,14.71754,14.26158,14.07292,13.94789,13.66444,13.46855,13.46799,13.19075,13.162,13.1544,12.88815,12.88621,12.86374,12.06894,11.96038,11.91068,11.86863,11.78723,11.77872,11.44932,10.84537,10.60869,10.47727,10.40346,10.25584,9.98196,9.96321,9.87126,9.76444,9.2818,9.24691,9.001580000000002,8.34915,8.12773,8.07911,7.94944,7.91264,7.74999,7.66401,7.45817,6.94085,6.79458,6.17917,5.27957,5.15071,4.56707,4.02198,3.89648,3.84476,3.76645,3.6196,3.53813,3.515,3.47171,3.38176,3.20694,2.9246,2.91404,2.89946,2.88134,2.86447,2.80704,2.76784,2.63834,2.63499,2.5876,2.56757,2.53649,2.52144,2.47672,2.43484,2.4323,2.42554,2.35248,2.24752,2.10177,2.08651,2.08559,2.07907,2.07177,2.06491,2.06207,2.0326,1.97472,1.89733,1.88876,1.87233,1.81193,1.77188,1.70835,1.61703,1.60622,1.57415,1.56326,1.54743,1.54104,1.53737,1.53558,1.48999,1.46179,1.46096,1.34805,1.34799,1.3282,1.28201,1.27643,1.25741,1.25198,1.22779,1.2152,1.21014,1.19446,1.18359,1.16906,1.15467,1.14901,1.13522,1.12309,1.12089,1.09967,1.09548,1.06924,1.06535,1.04615,1.01658,1.00866,0.99267,0.94059,0.90822,0.89636,0.89543,0.85819,0.83053,0.80659,0.788,0.78611,0.77786,0.76547,0.76083,0.73842,0.73637,0.72531,0.71451,0.71224,0.69367,0.69112,0.68722,0.6813,0.66657,0.66646,0.65622,0.64488,0.63373,0.61384,0.60665,0.58557,0.5588,0.54241,0.54224,0.53988,0.5135,0.50863,0.50316,0.44773,0.42664,0.41841,0.40603,0.39133,0.38916,0.38338,0.38194,0.3635,0.36239,0.36036,0.34928,0.34235,0.33794,0.3283,0.31581,0.29355,0.26177,0.22658,0.20959,0.20883,0.17868,0.14436,0.13394,0.13158,0.12721,0.12636,0.10127,0.06547,0.0505,0.04614],"total":877},{"name":"荒川区","values":[71.82081,63.64013,52.5538,50.00041,48.88016,47.30094,45.15852,44.44659,44.28894,44.14387,43.82655,42.62381,41.92362,40.41607,39.04956,38.26607,37.89794,37.80211,37.39654,34.46617,34.25721,33.71036,33.51516,31.38808,30.99552,30.51934,28.50404,27.70596,26.92828,26.71863,26.31195,25.90004,25.74765,25.33618,25.1171,24.30964,22.52125,22.30162,21.06719,20.48488,18.97222,18.09681,17.97159,17.9579,17.76952,17.40628,16.78975,16.64981,15.92689,15.48071,15.47547,14.31668,13.95539,13.89922,12.58332,12.07131,11.83828,11.66673,11.217,10.87772,10.63521,10.42331,9.75163,9.41168,8.31991,8.24828,8.086220000000003,8.01709,7.83237,7.6505,7.42444,7.17729,6.79232,6.23084,5.89079,5.71457,5.14326,5.04018,4.71004,4.59816,4.45221,4.38051,4.34897,4.23979,4.23766,4.201170000000001,3.96699,3.77284,3.72919,3.61548,3.28878,3.26637,3.18517,3.16387,2.57942,2.55439,2.53625,2.08678,2.062,1.91873,1.84894,1.83829,1.70236,1.67565,1.49748,1.45451,0.98186,0.93751,0.87148,0.73647,0.60024,0.58673,0.56454,0.51663,0.48541,0.47811,0.4387,0.43068,0.41543,0.33975,0.3192,0.31567,0.29352,0.29297,0.27537,0.2571,0.25054,0.24731,0.22354,0.15987,0.11172,0.09591,0.08829,0.08205,0.06317,0.04796,0.04722,0.04208,0.03891,0.03452,0.02421,0.0231,0.0178,0.01221,0.01171,0.00847,0.00762,0.00395,0.00357,0.00236,0.0017,0.00146,0.00109,0.00096,0.00022,0,0,0],"total":835},{"name":"北区","values":[20.84001,19.69602,18.85042,18.65205,17.22409,14.72235,13.99927,13.74471,13.13137,12.57889,11.23364,10.64553,10.63042,10.61809,9.6231,9.05927,8.527810000000002,8.501390000000002,8.42531,8.36407,8.309340000000002,8.10342,7.95905,7.69202,7.24503,7.21877,6.88756,6.88545,6.77075,6.46663,6.37299,5.44744,5.25575,5.2353,5.12812,4.97019,4.95343,4.95087,4.81556,4.79936,4.77689,4.52284,4.50449,4.48178,4.26722,4.257030000000001,4.13768,3.89359,3.87969,3.76497,3.66807,3.65575,3.54256,3.53151,3.47925,3.39509,3.32062,3.28271,3.15585,3.15037,3.1435,3.06469,3.01493,2.98963,2.88963,2.76036,2.75044,2.62409,2.53727,2.32505,2.30335,2.23924,2.23069,2.18044,2.15573,1.92102,1.8459,1.78951,1.76536,1.76041,1.72666,1.70387,1.69502,1.65024,1.61241,1.57016,1.55297,1.54738,1.51589,1.50875,1.46278,1.40933,1.38196,1.32405,1.31772,1.27249,1.26627,1.25338,1.24333,1.21593,1.21258,1.19058,1.17288,1.07488,1.05526,1.04934,1.02251,1.01957,1.00351,0.99857,0.96363,0.95779,0.93198,0.92509,0.89583,0.88906,0.87198,0.86487,0.84485,0.84201,0.77679,0.7563,0.74136,0.70611,0.60181,0.58168,0.57848,0.57023,0.56193,0.55395,0.5459,0.54167,0.51343,0.51067,0.5012,0.47953,0.47504,0.46127,0.45026,0.44669,0.44401,0.44271,0.44025,0.43766,0.42072,0.41844,0.41336,0.411,0.40216,0.39974,0.39957,0.38099,0.37547,0.36319,0.35013,0.31799,0.31194,0.30849,0.30406,0.29778,0.29764,0.29557,0.28914,0.27807,0.27437,0.26409,0.25628,0.2415,0.24006,0.23595,0.21828,0.21747,0.21535,0.2135,0.20528,0.19547,0.19537,0.19152,0.1905,0.19038,0.18619,0.18545,0.17492,0.16518,0.15539,0.1519,0.14557,0.13211,0.132,0.13052,0.12503,0.12423,0.12324,0.12304,0.12035,0.11844,0.11675,0.1165,0.11353,0.10851,0.09781,0.09605,0.09444,0.09354,0.09142,0.08711,0.0865,0.08591,0.08408,0.08287,0.08211,0.08009,0.07503,0.07409,0.07381,0.06709,0.06647,0.06314,0.05337,0.05337,0.04706,0.04644,0.04579,0.04512,0.04493,0.04377,0.04093,0.03933,0.03809,0.03728,0.03656,0.03543,0.03469,0.03423,0.03291,0.0324,0.03212,0.03108,0.03026,0.03018,0.02897,0.02887,0.02859,0.0266,0.026,0.02586,0.0257,0.02553,0.02457,0.02279,0.02252,0.02136,0.02121,0.02067,0.02024,0.02019,0.01858,0.01758,0.01735,0.017,0.01679,0.01462,0.01319,0.01204,0.01201,0.01172,0.01167,0.01129,0.01104,0.00985,0.00974,0.00819,0.0078,0.0078,0.00752,0.00724,0.00702,0.00588,0.00566,0.00522,0.0036,0.00359,0.0035,0.00347,0.0033,0.00293,0.00252,0.00171,0.00116,0.00096,0.00044,0.0004,0.00021,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":478},{"name":"江東区","values":[207.28703,196.48173,182.03958,166.73997,158.6418,99.72293,91.40703,83.7066,78.18247,73.40849,70.57093,64.77373,62.31299,61.72299,60.40593,58.47981,53.17936,51.97096,50.91116,47.53897,45.04084,43.99481,40.44751,36.84547,36.54596,35.62444,35.25853,35.18103,33.97673,32.34752,30.95963,30.07975,27.21507,25.05606,24.67019,23.7673,22.553,22.05039,20.04083,19.70346,18.65889,16.16448,15.65515,15.38678,13.81525,13.57429,13.42539,13.12623,12.32374,11.99246,11.74848,11.55936,10.80589,10.62656,10.13,9.96301,9.05491,8.57666,8.32992,7.77563,7.74247,7.7184,7.33807,7.16966,7.15014,7.14052,6.6317,6.32993,5.81908,5.81831,5.75047,5.49785,5.38923,5.25648,5.19904,5.11295,5.10372,4.99334,4.65438,4.63031,4.46948,4.44911,4.42995,4.39597,4.18318,3.92524,3.91236,3.77763,3.66026,3.52754,3.50235,3.41274,3.36913,3.36077,3.29631,3.25154,3.11515,2.98515,2.94768,2.9135,2.84375,2.77896,2.5158,2.25129,2.20083,2.02454,1.91387,1.90027,1.8477,1.80739,1.75279,1.7171,1.70261,1.68971,1.68457,1.68278,1.66186,1.63862,1.60317,1.60061,1.53822,1.53297,1.51054,1.50473,1.46301,1.4592,1.38658,1.36471,1.33888,1.3232,1.31322,1.20967,1.20254,1.2003,1.19687,1.18964,1.15792,1.1447,1.14323,1.13477,1.12455,1.11664,1.11329,1.11025,1.09888,1.0143,0.98714,0.94984,0.94502,0.94191,0.93211,0.9118,0.90952,0.9019,0.87172,0.85916,0.81745,0.78175,0.77008,0.72753,0.7009,0.68465,0.66518,0.65434,0.6473,0.62497,0.61641,0.60835,0.60743,0.59931,0.58389,0.56695,0.56089,0.55903,0.55463,0.54633,0.54033,0.53438,0.52462,0.49453,0.48993,0.47083,0.45794,0.45156,0.44056,0.42766,0.41501,0.41132,0.40624,0.40286,0.38382,0.38074,0.37806,0.37585,0.37494,0.36301,0.34941,0.34707,0.33596,0.33187,0.32637,0.31941,0.3088,0.30565,0.29451,0.2931,0.28936,0.27693,0.2637,0.2558,0.25568,0.24787,0.2458,0.2384,0.23498,0.23441,0.23355,0.22888,0.2267,0.22604,0.22148,0.21559,0.20645,0.20362,0.19832,0.18792,0.18508,0.17878,0.17343,0.17228,0.17041,0.17,0.16899,0.16175,0.16041,0.15743,0.15665,0.15417,0.15254,0.15077,0.14893,0.14386,0.14326,0.14248,0.13629,0.13429,0.13383,0.13349,0.133,0.13181,0.13108,0.12904,0.11958,0.11885,0.11876,0.11867,0.11804,0.11651,0.11327,0.11317,0.11182,0.10989,0.10962,0.10806,0.10458,0.09869,0.09395,0.09201,0.09082,0.08685,0.08505,0.08475,0.08439,0.08398,0.08334,0.08027,0.08001,0.07926,0.07891,0.07763,0.07582,0.07493,0.07487,0.07254,0.07243,0.07232,0.07195,0.07112,0.06946,0.06884,0.0687,0.0683,0.06801,0.06793,0.06663,0.06649,0.066,0.06571,0.06554,0.06328,0.06313,0.06262,0.06147,0.06134,0.06121,0.06029,0.06,0.05852,0.05718,0.05627,0.0557,0.05494,0.05254,0.05235,0.05226,0.05146,0.04888,0.04779,0.04725,0.04696,0.04557,0.04524,0.04457,0.04411,0.04349,0.04344,0.04292,0.04286,0.04161,0.04137,0.04103,0.04087,0.04054,0.03789,0.03672,0.03631,0.03602,0.03437,0.03389,0.03373,0.03357,0.03261,0.03244,0.03244,0.03153,0.03128,0.03098,0.03098,0.0308,0.03027,0.02977,0.0288,0.02818,0.02794,0.02767,0.02736,0.02699,0.02694,0.02673,0.02655,0.02602,0.02572,0.02553,0.02534,0.02513,0.0251,0.02502,0.02471,0.02456,0.02453,0.02453,0.02367,0.02355,0.0234,0.02331,0.02298,0.02249,0.02245,0.02213,0.02125,0.0212,0.02105,0.02093,0.02047,0.02037,0.02031,0.02024,0.02021,0.01944,0.01921,0.01873,0.01851,0.01836,0.018,0.01781,0.01772,0.01738,0.01708,0.01645,0.01643,0.01615,0.01591,0.01583,0.01555,0.01526,0.01513,0.015,0.01467,0.01453,0.01436,0.01431,0.01396,0.01387,0.01369,0.01359,0.01354,0.01307,0.01257,0.01227,0.01219,0.0113,0.01123,0.01113,0.01085,0.01072,0.01037,0.01029,0.0102,0.00995,0.00995,0.00988,0.00953,0.00939,0.0091,0.00896,0.00891,0.00882,0.00878,0.00867,0.00867,0.00864,0.00809,0.00806,0.00804,0.00781,0.00777,0.00763,0.00758,0.00747,0.00744,0.00709,0.007,0.007,0.00693,0.00691,0.00686,0.00667,0.00665,0.00648,0.0061,0.00582,0.0058,0.00561,0.00553,0.00553,0.00539,0.00539,0.00537,0.00532,0.00529,0.00516,0.005,0.005,0.00495,0.00476,0.00444,0.00431,0.00426,0.00407,0.00403,0.00398,0.00388,0.00382,0.00365,0.00362,0.0036,0.00358,0.00355,0.00352,0.00338,0.00334,0.00333,0.0033,0.00329,0.00327,0.00326,0.00319,0.00318,0.00317,0.00316,0.00309,0.00285,0.00282,0.00277,0.00269,0.00268,0.00245,0.00242,0.00234,0.00232,0.00224,0.00218,0.00206,0.00199,0.00189,0.00188,0.00186,0.00183,0.00183,0.00178,0.00177,0.00173,0.0017,0.00169,0.00156,0.00154,0.00146,0.00143,0.00143,0.00141,0.00135,0.00129,0.00128,0.00126,0.00126,0.00124,0.00114,0.0011,0.00103,0.00102,0.00096,0.00092,0.0009,0.00089,0.00085,0.0008,0.0008,0.00075,0.00074,0.00073,0.00071,0.00071,0.00071,0.0007,0.0007,0.00067,0.00066,0.00064,0.00063,0.00062,0.00056,0.00055,0.00052,0.00052,0.0005,0.0005,0.00046,0.00035,0.00034,0.00032,0.00031,0.00028,0.00028,0.00027,0.00025,0.00025,0.00025,0.00024,0.00023,0.00023,0.00022,0.00022,0.0002,0.0002,0.00018,0.00015,0.00012,0.0001,0.00009,0.00009,0.00009,0.00008,0.00008,0.00007,0.00006,0.00006,0.00006,0.00004,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":225},{"name":"台東区","values":[14.22594,11.87637,5.84461,5.39968,5.11599,4.150350000000001,4.11037,3.89655,3.79992,3.79672,3.78335,3.77804,3.60593,3.59927,3.35403,3.33223,3.14049,3.11857,3.07356,3.00421,2.88174,2.85234,2.84354,2.78885,2.75683,2.71171,2.59548,2.59211,2.582,2.58174,2.54811,2.31503,2.29961,2.21431,2.18787,2.13283,2.05261,2.01077,1.94784,1.7543,1.7306,1.7199,1.68288,1.61513,1.60902,1.49698,1.48852,1.48686,1.46049,1.46,1.43046,1.41731,1.40128,1.37092,1.33349,1.29851,1.27463,1.26747,1.14728,1.13764,1.13344,1.01578,0.96373,0.87523,0.78357,0.76951,0.75415,0.74607,0.73597,0.6979,0.68868,0.59748,0.58567,0.48232,0.47802,0.47307,0.4466,0.44409,0.36498,0.36025,0.35432,0.31568,0.29051,0.29046,0.28163,0.2775,0.25537,0.22262,0.21964,0.19164,0.18495,0.16979,0.16534,0.15692,0.14441,0.13837,0.13674,0.13319,0.13014,0.12694,0.1237,0.12343,0.11966,0.11671,0.11478,0.10896,0.10114,0.10017,0.08971,0.08511,0.08476,0.07945,0.07477,0.07085,0.06621,0.06513,0.06086,0.05923,0.05918,0.05831,0.05823,0.0565,0.05444,0.05394,0.04781,0.0473,0.04556,0.04503,0.04116,0.04073,0.03764,0.03368,0.03146,0.02984,0.02973,0.02893,0.02721,0.02639,0.01995,0.01954,0.01697,0.01686,0.01667,0.01542,0.01165,0.01148,0.01051,0.00833,0.00726,0.007,0.00459,0.00313,0.00176,0.00128,0.00065,0],"total":143},{"name":"文京区","values":[16.05674,12.94731,10.57107,10.2396,7.29224,3.95758,3.75767,2.86061,2.78216,2.56378,2.00219,1.94961,1.88755,1.8527,1.84578,1.84354,1.79849,1.6989,1.60351,1.56543,1.5449,1.47734,1.43021,1.41403,1.3574,1.26607,1.26333,1.23112,1.09688,0.98348,0.97252,0.94438,0.90023,0.87316,0.85516,0.83752,0.81708,0.75461,0.72107,0.71801,0.71718,0.60733,0.60596,0.58327,0.55035,0.50321,0.49452,0.49283,0.48691,0.44281,0.44122,0.43677,0.41432,0.4044,0.4001,0.39114,0.38917,0.38462,0.36624,0.36,0.35837,0.34474,0.34146,0.33825,0.33472,0.30758,0.30514,0.23959,0.2316,0.215,0.18728,0.18042,0.17764,0.17043,0.16172,0.16136,0.16,0.15077,0.14959,0.14912,0.13658,0.12893,0.1264,0.11872,0.11853,0.11055,0.09952,0.09714,0.08006,0.07792,0.07331,0.07249,0.07163,0.0712,0.06821,0.06323,0.06195,0.05847,0.05634,0.05243,0.04816,0.0476,0.04738,0.04698,0.04424,0.04114,0.03988,0.03937,0.0386,0.03541,0.03238,0.03097,0.02918,0.02697,0.02619,0.02538,0.0235,0.02316,0.0225,0.01934,0.0188,0.01871,0.01826,0.01811,0.01589,0.01574,0.01452,0.01382,0.01379,0.01309,0.01282,0.01186,0.01129,0.01118,0.01009,0.00998,0.00917,0.00888,0.00874,0.00851,0.00843,0.00787,0.0077,0.00737,0.00692,0.0066,0.00635,0.00568,0.00556,0.00551,0.00531,0.00523,0.00417,0.00414,0.0038,0.00317,0.00273,0.00261,0.00235,0.0022,0.00211,0.00205,0.00186,0.00158,0.00146,0.00143,0.00089,0.00088,0.00055,0.00049,0.00045,0.00025],"total":127},{"name":"渋谷区","values":[13.18941,11.49263,8.58844,7.45468,4.77214,4.7317,4.64668,4.53411,4.52162,4.46531,3.95519,3.90035,3.88624,3.80611,3.65071,3.64891,3.45385,3.37781,3.31307,3.06861,2.99269,2.9507,2.90206,2.83955,2.81081,2.70078,2.64691,2.64064,2.6257,2.57514,2.5253,2.49009,2.47525,2.42179,2.4197,2.39078,2.3747,2.37095,2.35682,2.33683,2.3255,2.2354,2.18891,2.11738,2.10036,2.08571,2.04702,2.01712,1.988,1.98575,1.97729,1.95751,1.93531,1.9244,1.92159,1.91825,1.9175,1.8567,1.8479,1.82363,1.80271,1.76207,1.75591,1.69587,1.67134,1.67058,1.66091,1.65691,1.65609,1.64207,1.63504,1.61973,1.60273,1.5879,1.57698,1.56479,1.51464,1.49774,1.47547,1.43516,1.41949,1.38691,1.37238,1.35198,1.34357,1.34117,1.33795,1.33322,1.32967,1.32342,1.27358,1.24893,1.24138,1.22308,1.21829,1.20571,1.20434,1.2002,1.19704,1.19553,1.18702,1.16972,1.16641,1.1566,1.15204,1.13292,1.13058,1.12451,1.11194,1.10596,1.1028,1.09118,1.08973,1.08839,1.08631,1.08235,1.04372,1.02713,1.01621,1.01154,1.00908,1.00553,0.98187,0.96862,0.94321,0.94267,0.9382,0.92914,0.91943,0.90663,0.8938,0.88514,0.86236,0.86016,0.8585,0.84718,0.82709,0.8239,0.82057,0.81866,0.81225,0.80011,0.79853,0.79754,0.79296,0.77319,0.7536,0.74534,0.73904,0.7184,0.71132,0.71003,0.70942,0.70681,0.66229,0.64028,0.63802,0.63679,0.62546,0.61489,0.60964,0.6075,0.58769,0.58312,0.55699,0.5532,0.54339,0.54058,0.53653,0.53515,0.53392,0.5284,0.52805,0.528,0.50881,0.50738,0.50398,0.49991,0.49979,0.47274,0.46299,0.45884,0.4559,0.45022,0.42994,0.42973,0.4206,0.39335,0.36414,0.34137,0.34014,0.33835,0.33074,0.30537,0.29201,0.26991,0.23101,0.22603,0.19996,0.19703,0.18421,0.18241,0.17463,0.17068,0.15471,0.14303,0.12557,0.12401,0.10198,0.09914,0.08666,0.08011,0.0605,0.05862,0.04657,0.03898,0.02344,0.02247,0.0212,0.02096,0.01854,0.01072,0.01048,0.00671,0.00537,0.00224,0.00133,0.0006,0.0005,0.00013,0,0],"total":114},{"name":"新宿区","values":[2.3884,2.30082,2.25504,2.17663,2.02973,2.02601,2.02578,1.90062,1.89165,1.88684,1.77581,1.68307,1.60962,1.59893,1.53575,1.50069,1.47013,1.44072,1.3487,1.32404,1.30466,1.29294,1.28419,1.28054,1.2804,1.23325,1.21885,1.20642,1.18372,1.17527,1.08025,1.05539,1.0502,1.04742,1.02359,1.00734,0.97873,0.86382,0.86272,0.8622,0.8589,0.8487,0.8435,0.83428,0.81547,0.79065,0.74625,0.74292,0.74135,0.73706,0.71612,0.68595,0.67504,0.63979,0.63869,0.61927,0.61866,0.60589,0.5829,0.54075,0.5393,0.53141,0.5168,0.51351,0.50419,0.49905,0.49525,0.49388,0.47161,0.46871,0.4641,0.45901,0.43623,0.43384,0.43292,0.42988,0.3942,0.38564,0.38524,0.38366,0.37821,0.35609,0.35097,0.34033,0.32945,0.31668,0.31661,0.30834,0.29416,0.29376,0.28753,0.28414,0.27392,0.27279,0.27123,0.26529,0.2578,0.25754,0.2528,0.25208,0.24788,0.24522,0.24027,0.238,0.23754,0.23669,0.22709,0.22251,0.21741,0.20762,0.20729,0.20673,0.19493,0.19087,0.18906,0.18755,0.1848,0.183,0.17782,0.17093,0.16948,0.16716,0.16119,0.15652,0.14937,0.14529,0.14447,0.14103,0.13951,0.13361,0.13343,0.1329,0.13222,0.12931,0.12843,0.12019,0.11578,0.10898,0.1085,0.1079,0.10464,0.1004,0.09727,0.09579,0.09195,0.09148,0.08744,0.08674,0.08488,0.084,0.07745,0.0759,0.07352,0.07194,0.0717,0.06674,0.06659,0.06463,0.06405,0.06326,0.0607,0.05986,0.0561,0.04937,0.04912,0.04829,0.0465,0.04574,0.04525,0.04477,0.03887,0.03714,0.0371,0.03472,0.03293,0.0329,0.02951,0.02917,0.0276,0.0274,0.02711,0.02708,0.02644,0.02638,0.02595,0.02584,0.02494,0.0249,0.02476,0.02467,0.02316,0.02311,0.02293,0.02247,0.02167,0.02151,0.02098,0.01983,0.01964,0.0192,0.01894,0.01832,0.01832,0.01676,0.01499,0.01463,0.0141,0.01269,0.01245,0.01139,0.0099,0.00973,0.0095,0.00944,0.00877,0.00829,0.00793,0.00786,0.00772,0.00715,0.00705,0.00683,0.00664,0.00645,0.00613,0.0059,0.00548,0.00542,0.00527,0.00503,0.00502,0.00495,0.00485,0.00477,0.00473,0.0046,0.00456,0.00433,0.0043,0.00422,0.00414,0.00401,0.00379,0.00366,0.00364,0.00356,0.00346,0.00346,0.00341,0.0033,0.00322,0.00296,0.00275,0.00265,0.00258,0.00253,0.00239,0.00216,0.00216,0.00198,0.00188,0.00183,0.00174,0.00173,0.00168,0.00164,0.00157,0.00154,0.00154,0.00131,0.00117,0.00115,0.00113,0.00111,0.00104,0.00094,0.00093,0.00066,0.00049,0.00031,0.00027,0.00024,0.00006,0.00004,0],"total":103},{"name":"港区","values":[3.04773,1.85014,1.23759,1.07475,0.85196,0.68708,0.38477,0.34701,0.30991,0.29914,0.26208,0.23181,0.23079,0.21934,0.21813,0.21147,0.20401,0.19872,0.197,0.1956,0.19111,0.19034,0.18884,0.17821,0.1774,0.17458,0.17156,0.17114,0.16957,0.16736,0.1646,0.15868,0.1565,0.15018,0.1491,0.14903,0.14505,0.14063,0.1405,0.13898,0.13576,0.13527,0.1348,0.13429,0.13005,0.12923,0.12799,0.12771,0.12699,0.12677,0.1266,0.1266,0.12541,0.12521,0.12504,0.12247,0.12187,0.11981,0.11954,0.11823,0.11772,0.11696,0.11693,0.11654,0.11574,0.11551,0.1154,0.11435,0.11404,0.11305,0.11153,0.11063,0.11061,0.10994,0.10962,0.10962,0.10962,0.10925,0.10874,0.10851,0.10469,0.10337,0.102,0.10084,0.10067,0.10047,0.09821,0.09797,0.09756,0.09721,0.09679,0.0963,0.09563,0.09436,0.09416,0.09354,0.09288,0.09239,0.09224,0.09025,0.08995,0.08968,0.08842,0.08709,0.08657,0.0864,0.0849,0.08433,0.08375,0.08276,0.08112,0.07786,0.07782,0.07714,0.07373,0.07273,0.07263,0.07184,0.07177,0.07105,0.07085,0.07083,0.07016,0.06963,0.0694,0.06909,0.06819,0.06808,0.06757,0.06733,0.06673,0.06607,0.0657,0.06526,0.06288,0.06286,0.06279,0.06237,0.06168,0.06163,0.06051,0.06028,0.05811,0.05721,0.0571,0.05708,0.05683,0.05581,0.05539,0.0551,0.05404,0.05334,0.05322,0.05308,0.05287,0.05279,0.0525,0.05064,0.05037,0.0501,0.04937,0.04764,0.04757,0.04706,0.04693,0.04574,0.04527,0.04516,0.0451,0.04497,0.04465,0.04384,0.04184,0.04035,0.04027,0.04008,0.03973,0.03961,0.03838,0.03751,0.03708,0.03657,0.0359,0.03547,0.03512,0.03476,0.03421,0.03411,0.03397,0.03366,0.03318,0.03316,0.03283,0.03277,0.03265,0.03167,0.03161,0.03135,0.03129,0.03123,0.03081,0.03049,0.02977,0.02949,0.02946,0.02906,0.02798,0.0274,0.02709,0.02705,0.02694,0.0254,0.02445,0.02425,0.02407,0.0236,0.02322,0.02309,0.02286,0.02284,0.02279,0.02236,0.02235,0.02229,0.02163,0.02143,0.0213,0.02127,0.02123,0.02082,0.02039,0.02011,0.0196,0.01921,0.01908,0.01896,0.0189,0.01886,0.01884,0.01857,0.01855,0.01777,0.01741,0.0172,0.01688,0.01673,0.0165,0.01644,0.0158,0.01579,0.01539,0.0153,0.0152,0.01431,0.01388,0.01348,0.01311,0.01307,0.01282,0.01278,0.01264,0.01249,0.01235,0.01169,0.01164,0.01147,0.01144,0.01099,0.01053,0.0085,0.00844,0.00837,0.00778,0.00771,0.00756,0.00683,0.00682,0.00616,0.00576,0.00574,0.00569,0.00559,0.00557,0.00536,0.0053,0.00518,0.00518,0.00516,0.00504,0.00501,0.00495,0.00494,0.00489,0.00474,0.00465,0.00451,0.00427,0.00414,0.00407,0.00404,0.00389,0.00384,0.00378,0.00341,0.00341,0.00334,0.00303,0.00301,0.00284,0.0028,0.00266,0.00232,0.00213,0.00209,0.00203,0.00169,0.00155,0.00142,0.0013,0.00128,0.00108,0.00099,0.00089,0.00088,0.00088,0.00023,0.00006,0.00004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":8},{"name":"中央区","values":[4.6714,2.42023,2.02529,1.73193,1.62501,1.23919,1.08003,0.91935,0.87724,0.78922,0.76003,0.74781,0.7329,0.43511,0.42625,0.39206,0.36339,0.35663,0.35204,0.34937,0.3482,0.34776,0.34667,0.34553,0.33416,0.318,0.26504,0.24394,0.21009,0.20064,0.19338,0.1931,0.19195,0.18877,0.18589,0.18544,0.18497,0.1833,0.18231,0.18231,0.18199,0.18147,0.18087,0.17875,0.17763,0.17698,0.17096,0.16698,0.16651,0.16554,0.16466,0.16461,0.16457,0.14729,0.13755,0.1188,0.10775,0.10214,0.09901,0.07918,0.06724,0.05754,0.03801,0.03264,0.0261,0.02565,0.02524,0.02357,0.02307,0.02178,0.01976,0.01766,0.0159,0.01551,0.01347,0.01294,0.01258,0.01096,0.01087,0.0106,0.0104,0.01022,0.00996,0.00913,0.00887,0.00884,0.00861,0.00857,0.00815,0.00786,0.00754,0.00695,0.00682,0.0068,0.00667,0.00665,0.00663,0.00661,0.00657,0.00656,0.00634,0.00601,0.006,0.00592,0.00572,0.00566,0.0055,0.00528,0.00487,0.00474,0.00467,0.00462,0.00448,0.00419,0.00407,0.00389,0.00375,0.00367,0.00356,0.00352,0.00345,0.00326,0.00275,0.00262,0.00248,0.00234,0.00224,0.00223,0.00216,0.00208,0.00201,0.00195,0.0019,0.00163,0.00152,0.00149,0.00149,0.00147,0.00142,0.0012,0.00093,0.0009,0.00085,0.00081,0.00076,0.00063,0.00059,0.00041,0.00025,0.00007,0.00002,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":1},{"name":"奥多摩町","values":[0.04472,0.02981,0.0295,0.02387,0.02384,0.02344,0.01707,0.01671,0.01593,0.01474,0.01406,0.01186,0.01181,0.01166,0.01126,0.01015,0.0095,0.00947,0.00929,0.00921,0.00859,0.00857,0.00823,0.00819,0.00804,0.00788,0.00784,0.00782,0.00737,0.00733,0.00721,0.00684,0.0068,0.00601,0.00571,0.00568,0.00554,0.00517,0.00511,0.00511,0.00482,0.00466,0.00451,0.00448,0.00427,0.0041,0.00399,0.00398,0.00384,0.00367,0.00364,0.00354,0.00347,0.00329,0.00321,0.00319,0.00312,0.0031,0.00309,0.00296,0.00289,0.00282,0.00282,0.00279,0.00278,0.00273,0.00271,0.00267,0.00259,0.00259,0.00258,0.00257,0.00255,0.00254,0.00252,0.0025,0.00243,0.00235,0.00234,0.00233,0.00229,0.00229,0.00222,0.00221,0.00221,0.00217,0.00216,0.00214,0.00214,0.0021,0.00204,0.00204,0.00203,0.00203,0.00203,0.00199,0.00197,0.00183,0.00176,0.00172,0.00167,0.00164,0.00164,0.00155,0.00155,0.00153,0.00142,0.00132,0.00129,0.00129,0.00127,0.00124,0.00123,0.00122,0.0012,0.0012,0.00119,0.00119,0.00117,0.00115,0.00111,0.00108,0.00105,0.00103,0.001,0.00099,0.00097,0.00097,0.00094,0.00094,0.00094,0.00092,0.00092,0.00091,0.0009,0.0009,0.00085,0.00081,0.0008,0.0008,0.00079,0.00079,0.00078,0.00073,0.00071,0.00071,0.0007,0.0007,0.0007,0.00069,0.00067,0.00066,0.00066,0.00063,0.00062,0.0006,0.00057,0.00057,0.00057,0.00056,0.00056,0.00056,0.00056,0.00055,0.00055,0.00055,0.00054,0.00054,0.00054,0.00053,0.0005,0.00048,0.00047,0.00045,0.00045,0.00044,0.00044,0.00043,0.00042,0.00042,0.00042,0.00041,0.0004,0.0004,0.0004,0.0004,0.00039,0.00039,0.00038,0.00038,0.00038,0.00038,0.00036,0.00036,0.00036,0.00035,0.00035,0.00035,0.00034,0.00034,0.00033,0.00032,0.00031,0.00031,0.0003,0.0003,0.0003,0.0003,0.00029,0.00029,0.00029,0.00029,0.00027,0.00027,0.00027,0.00026,0.00026,0.00026,0.00025,0.00025,0.00025,0.00023,0.00022,0.00022,0.00022,0.00021,0.00021,0.0002,0.0002,0.0002,0.00019,0.00019,0.00019,0.00019,0.00018,0.00018,0.00017,0.00017,0.00017,0.00017,0.00016,0.00016,0.00016,0.00016,0.00015,0.00014,0.00014,0.00014,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00012,0.00012,0.00012,0.00011,0.0001,0.0001,0.0001,0.0001,0.0001,0.00009,0.00009,0.00009,0.00009,0.00009,0.00009,0.00009,0.00008,0.00008,0.00007,0.00007,0.00006,0.00006,0.00005,0.00005,0.00005,0.00005,0.00005,0.00005,0.00005,0.00005,0.00004,0.00004,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"町田市","values":[9.26871,8.77733,8.07423,7.60433,7.12168,6.85877,6.73234,6.59219,6.33971,5.79027,5.75623,5.59896,5.31295,5.21389,5.20813,5.18256,5.12778,5.08657,5.02148,4.99364,4.92147,4.91083,4.9065,4.87583,4.78446,4.65756,4.48344,4.44827,4.39798,4.3651,4.30605,4.123630000000001,4.109530000000001,4.0535,4.033120000000001,3.91864,3.91469,3.86849,3.84195,3.83406,3.73196,3.61803,3.60197,3.59574,3.51781,3.51418,3.48406,3.45199,3.35487,3.34082,3.31966,3.30409,3.29939,3.23665,3.22895,3.20924,3.17788,3.13718,3.11262,3.10665,3.08233,3.0601,3.0303,2.99533,2.97743,2.97014,2.9575,2.95713,2.94563,2.93619,2.92374,2.91647,2.89785,2.87058,2.86577,2.83183,2.82092,2.79976,2.7834,2.76359,2.73202,2.72959,2.70671,2.70634,2.65694,2.63551,2.63115,2.60809,2.59275,2.58631,2.57494,2.56455,2.5591,2.50594,2.42914,2.42172,2.41469,2.40833,2.40419,2.37895,2.32375,2.32026,2.31497,2.30131,2.28534,2.27485,2.26952,2.26421,2.23182,2.21293,2.17407,2.13462,2.13172,2.12705,2.12134,2.09822,2.09587,2.09213,2.05867,2.0541,2.02706,2.02035,2.0151,2.0134,2.01005,2.00901,1.99714,1.99642,1.99014,1.9388,1.93387,1.9075,1.90679,1.90649,1.90186,1.89796,1.8943,1.89114,1.87636,1.86151,1.83242,1.81945,1.78364,1.77118,1.75248,1.74957,1.74908,1.74526,1.7411,1.73382,1.72791,1.70592,1.69698,1.6919,1.68149,1.66381,1.64631,1.62375,1.54749,1.53754,1.52221,1.5192,1.51772,1.50713,1.48687,1.48623,1.4837,1.48183,1.48151,1.47954,1.47279,1.47117,1.46415,1.46403,1.4578,1.4566,1.45291,1.44435,1.44095,1.42633,1.41412,1.40127,1.39613,1.3846,1.37629,1.37044,1.36198,1.35017,1.34729,1.33378,1.32691,1.32613,1.32451,1.32439,1.3212,1.32006,1.31249,1.30389,1.30334,1.26544,1.24874,1.2447,1.23989,1.22962,1.22607,1.2136,1.19429,1.19363,1.17963,1.17903,1.17844,1.1756,1.17359,1.17295,1.16887,1.16307,1.16027,1.15937,1.15899,1.15424,1.15259,1.14989,1.14899,1.1423,1.13798,1.12922,1.12729,1.1229,1.11021,1.09395,1.07611,1.06841,1.06716,1.06648,1.05162,1.04802,1.04546,1.02567,1.02237,1.01601,1.01001,0.99875,0.99477,0.98738,0.98562,0.98515,0.9804,0.96658,0.9578,0.95437,0.95302,0.95208,0.94918,0.94894,0.94362,0.94153,0.93779,0.93629,0.93349,0.93076,0.92103,0.91591,0.91507,0.91332,0.91146,0.91117,0.90978,0.90625,0.90585,0.90342,0.89858,0.89855,0.89813,0.89098,0.88929,0.88877,0.88415,0.87988,0.8784,0.87451,0.87446,0.87435,0.87262,0.8699,0.86727,0.85654,0.85474,0.85435,0.85299,0.84917,0.84859,0.84251,0.83742,0.82448,0.82245,0.81944,0.81943,0.81652,0.81562,0.81534,0.81368,0.8135,0.80628,0.80316,0.79947,0.79914,0.79771,0.79367,0.7927,0.78783,0.78771,0.7842,0.77997,0.77917,0.77633,0.77444,0.77255,0.77211,0.74659,0.74593,0.74589,0.7412,0.7359,0.73491,0.73453,0.73314,0.73039,0.72618,0.72574,0.71441,0.71214,0.70232,0.70018,0.70013,0.6975,0.69319,0.6917,0.68901,0.68162,0.68078,0.67792,0.67703,0.6757,0.66625,0.66612,0.666,0.65901,0.65706,0.65331,0.64811,0.64706,0.64548,0.63982,0.63894,0.6327,0.62454,0.6161,0.6148,0.61375,0.6124,0.61228,0.61124,0.61068,0.61052,0.60899,0.60853,0.60568,0.60355,0.60143,0.59781,0.5971,0.5969,0.59316,0.58967,0.58858,0.58431,0.58207,0.58024,0.57884,0.57759,0.57379,0.57112,0.57069,0.57057,0.56965,0.56764,0.56636,0.56341,0.56326,0.55617,0.55547,0.55535,0.55402,0.55058,0.54829,0.54346,0.54241,0.53968,0.53699,0.53323,0.53243,0.53075,0.52873,0.52735,0.52676,0.52538,0.52296,0.51887,0.51618,0.51605,0.51555,0.5146,0.51255,0.51237,0.51042,0.50863,0.50741,0.50691,0.50157,0.50129,0.50006,0.49998,0.49876,0.49181,0.49082,0.48885,0.48367,0.48163,0.47948,0.4791,0.4786,0.47656,0.47572,0.46995,0.46844,0.46654,0.46609,0.46574,0.46519,0.4644,0.4556,0.45323,0.45236,0.45057,0.44815,0.44799,0.44667,0.44516,0.44506,0.44135,0.43444,0.43384,0.43249,0.4314,0.43083,0.42907,0.42818,0.42634,0.42533,0.4226,0.41365,0.41018,0.40397,0.40177,0.40158,0.40081,0.40011,0.40009,0.39895,0.39636,0.39543,0.39499,0.39436,0.3938,0.38474,0.38195,0.38153,0.38046,0.37949,0.37876,0.37714,0.37705,0.37641,0.37103,0.3694,0.36871,0.36862,0.36742,0.36637,0.36373,0.36352,0.36108,0.36068,0.36038,0.3592,0.35672,0.35312,0.3502,0.35019,0.35009,0.34978,0.34852,0.34634,0.3423,0.341,0.34018,0.34006,0.33955,0.33797,0.33652,0.33538,0.33481,0.33296,0.32966,0.32914,0.32266,0.32218,0.32207,0.32131,0.31757,0.31723,0.31147,0.30986,0.30759,0.30534,0.30368,0.3036,0.30031,0.29962,0.2963,0.29394,0.29382,0.29287,0.29022,0.28847,0.28774,0.28559,0.28386,0.2834,0.2808,0.28073,0.27956,0.27679,0.27393,0.27378,0.27352,0.27316,0.27301,0.27287,0.27088,0.26762,0.26564,0.26478,0.26234,0.25976,0.25906,0.25893,0.2589,0.25786,0.25616,0.25541,0.25364,0.2534,0.25181,0.25062,0.24966,0.24902,0.24822,0.24506,0.24204,0.24185,0.24155,0.24127,0.23515,0.23461,0.23397,0.23212,0.23147,0.23092,0.23056,0.23047,0.23045,0.22984,0.22968,0.22793,0.2273,0.22708,0.2259,0.22584,0.22515,0.22414,0.22403,0.22118,0.2193,0.21883,0.21855,0.21821,0.21806,0.21795,0.21759,0.21484,0.21457,0.21299,0.21271,0.21251,0.21241,0.21002,0.20936,0.20912,0.20901,0.20782,0.20726,0.20635,0.20571,0.20536,0.20498,0.20356,0.20097,0.20072,0.1965,0.19323,0.19169,0.19125,0.19073,0.18978,0.1895,0.18807,0.18615,0.18519,0.18497,0.18148,0.18117,0.18079,0.18055,0.18038,0.18003,0.17995,0.17986,0.17937,0.1789,0.17764,0.17739,0.17703,0.17636,0.17607,0.176,0.17539,0.17316,0.17254,0.1722,0.17215,0.17184,0.17135,0.17122,0.17119,0.17075,0.17004,0.16996,0.16961,0.16832,0.16765,0.16669,0.16592,0.16516,0.16504,0.16309,0.16307,0.16298,0.16233,0.16067,0.15946,0.15826,0.15655,0.15584,0.15467,0.15409,0.15391,0.15265,0.15199,0.15134,0.15045,0.15014,0.14967,0.1494,0.14882,0.14861,0.14849,0.14683,0.14659,0.14644,0.14522,0.14478,0.14457,0.14429,0.14421,0.14305,0.1423,0.14215,0.14093,0.13954,0.1377,0.13457,0.13368,0.13329,0.13249,0.13225,0.13041,0.1297,0.12839,0.12779,0.12764,0.12762,0.12737,0.12521,0.12328,0.12282,0.12006,0.11992,0.11879,0.11844,0.11738,0.11619,0.11565,0.11387,0.11375,0.11374,0.11373,0.11114,0.11082,0.11047,0.11045,0.11031,0.1103,0.10857,0.1067,0.10558,0.10513,0.10492,0.1049,0.10408,0.10394,0.10388,0.10155,0.09771,0.09763,0.09751,0.09747,0.09673,0.09618,0.09459,0.09445,0.09284,0.09206,0.09033,0.0895,0.08834,0.08813,0.08533,0.08428,0.08425,0.08339,0.08254,0.08225,0.08144,0.08135,0.08124,0.08028,0.08018,0.07961,0.07935,0.07859,0.07848,0.07832,0.07771,0.07724,0.07681,0.07644,0.07616,0.07481,0.07431,0.0741,0.07406,0.07268,0.07003,0.06873,0.06853,0.06797,0.0671,0.06632,0.06577,0.06479,0.06475,0.06433,0.06427,0.06413,0.06396,0.06388,0.06331,0.06323,0.06147,0.06072,0.06003,0.05945,0.05897,0.05889,0.05805,0.05791,0.05769,0.05748,0.05688,0.05682,0.05613,0.05554,0.05529,0.05491,0.05484,0.05447,0.0538,0.05345,0.0534,0.05149,0.05123,0.05074,0.05063,0.05046,0.04882,0.04868,0.04815,0.04775,0.04722,0.04718,0.04718,0.04686,0.04668,0.04656,0.04605,0.04589,0.04571,0.04505,0.04468,0.04453,0.04411,0.04396,0.04385,0.04339,0.04327,0.04293,0.0428,0.04274,0.0426,0.04184,0.04181,0.04141,0.04131,0.04084,0.04071,0.04061,0.03941,0.03926,0.0392,0.03879,0.03811,0.03783,0.0378,0.03724,0.03719,0.03715,0.0367,0.03667,0.03639,0.03616,0.03571,0.03528,0.03511,0.03509,0.03467,0.0343,0.03421,0.03411,0.03386,0.03372,0.03359,0.03358,0.03313,0.03245,0.03244,0.03214,0.03197,0.03136,0.0307,0.03068,0.03057,0.03047,0.02992,0.02969,0.02967,0.02958,0.02933,0.02918,0.02854,0.028,0.02761,0.02753,0.02751,0.02713,0.02697,0.0268,0.02667,0.02641,0.02616,0.02581,0.02567,0.02521,0.02521,0.02504,0.02481,0.02453,0.02448,0.02439,0.02434,0.02434,0.02372,0.02371,0.02358,0.02316,0.02271,0.02262,0.02243,0.02175,0.02148,0.02133,0.02093,0.02064,0.02059,0.0204,0.01955,0.01942,0.01936,0.01919,0.01898,0.01895,0.0189,0.0189,0.0189,0.01835,0.01821,0.01803,0.01789,0.0178,0.01766,0.01766,0.01764,0.01763,0.0175,0.0169,0.01686,0.01667,0.0165,0.01635,0.0159,0.01587,0.01584,0.01572,0.01569,0.01533,0.01503,0.01459,0.01429,0.01424,0.01422,0.01416,0.01344,0.01327,0.01322,0.01313,0.01311,0.01277,0.01259,0.01192,0.01191,0.01156,0.01151,0.01141,0.01135,0.01133,0.01128,0.01116,0.01104,0.01056,0.01052,0.01001,0.00951,0.00932,0.00923,0.00915,0.00913,0.00905,0.00881,0.00877,0.00872,0.00871,0.00864,0.00854,0.00843,0.0084,0.00832,0.00822,0.00761,0.00749,0.00744,0.00716,0.00705,0.00703,0.00699,0.00692,0.00676,0.00674,0.00655,0.0065,0.00646,0.00646,0.00639,0.00627,0.00627,0.00625,0.00614,0.00594,0.00594,0.00587,0.00582,0.0057,0.00562,0.00555,0.0054,0.00539,0.00521,0.00518,0.00517,0.00509,0.00507,0.00501,0.0049,0.0048,0.00478,0.00453,0.00443,0.00436,0.00428,0.00427,0.00423,0.00421,0.00418,0.00417,0.00417,0.00412,0.00407,0.00407,0.004,0.00391,0.00386,0.00379,0.00372,0.00369,0.0036,0.00359,0.0035,0.00349,0.00348,0.00345,0.00333,0.00323,0.00319,0.00316,0.00315,0.00313,0.00305,0.00302,0.00301,0.00291,0.0029,0.00286,0.00286,0.00277,0.00271,0.00245,0.00239,0.00236,0.00228,0.00227,0.00219,0.00219,0.00214,0.00208,0.00206,0.00193,0.00163,0.00162,0.00152,0.00142,0.00141,0.0014,0.00139,0.00135,0.00134,0.00134,0.00128,0.00125,0.00123,0.0012,0.00115,0.00106,0.00105,0.00103,0.00098,0.00095,0.00095,0.00078,0.00076,0.00072,0.00072,0.00069,0.00066,0.00066,0.00066,0.0006,0.00059,0.00058,0.00055,0.00052,0.00051,0.00049,0.00049,0.00042,0.00041,0.00039,0.00036,0.00035,0.00035,0.00034,0.00029,0.00022,0.0002,0.0002,0.00019,0.00019,0.00018,0.00017,0.00017,0.00015,0.00013,0.00013,0.00012,0.00011,0.00008,0.00008,0.00006,0.00006,0.00006,0.00005,0.00005,0.00003,0.00002,0.00001,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"八王子市","values":[6.50729,5.33059,4.96577,4.96555,4.94564,4.36851,4.30992,4.263080000000001,4.21708,4.190730000000001,4.096320000000001,4.030070000000001,3.90303,3.88227,3.76798,3.70302,3.69715,3.68004,3.6624,3.60832,3.49093,3.44018,3.28604,3.28237,3.26276,3.13915,3.09878,3.09664,3.07721,3.0704,3.06779,3.06495,3.04493,3.02514,3.00953,2.99295,2.97413,2.95261,2.88917,2.8754,2.84285,2.76579,2.74882,2.73211,2.71483,2.68503,2.64974,2.64313,2.63928,2.62936,2.57916,2.57211,2.56742,2.56608,2.55965,2.54149,2.50814,2.4998,2.49735,2.42049,2.4158,2.31374,2.30754,2.28309,2.23917,2.19513,2.15218,2.14713,2.08109,2.06821,2.06248,2.05306,2.04878,2.04483,1.99668,1.98814,1.92743,1.92682,1.91092,1.90649,1.80065,1.79341,1.77935,1.75976,1.75811,1.74222,1.71879,1.66853,1.63214,1.60731,1.58933,1.57092,1.55511,1.54849,1.54709,1.53359,1.5286,1.52403,1.44693,1.43646,1.38862,1.37964,1.31815,1.31341,1.27194,1.23467,1.21779,1.20351,1.18974,1.18279,1.18265,1.16966,1.15962,1.15576,1.15068,1.13983,1.13306,1.12445,1.12011,1.11912,1.11846,1.11637,1.11491,1.11471,1.11234,1.1008,1.10034,1.09525,1.08988,1.08385,1.06948,1.06611,1.0566,1.05588,1.05017,1.04961,1.04517,1.03919,1.03875,1.02403,1.01909,1.01874,1.01248,1.00666,0.99809,0.99243,0.99102,0.99077,0.98984,0.98923,0.98526,0.97641,0.97237,0.97169,0.96932,0.96685,0.9627,0.96096,0.9576,0.95532,0.95465,0.95412,0.95008,0.94989,0.94627,0.94366,0.94216,0.93791,0.93332,0.93148,0.931,0.92955,0.92865,0.92649,0.92239,0.92178,0.92175,0.92009,0.91975,0.91582,0.90924,0.90604,0.89992,0.8974,0.89592,0.89482,0.89199,0.89055,0.88045,0.8788,0.87803,0.87777,0.87768,0.86977,0.86899,0.86221,0.86177,0.86029,0.85544,0.85523,0.85446,0.85356,0.85351,0.85242,0.8474,0.84459,0.84303,0.84213,0.83891,0.83829,0.83722,0.83636,0.83577,0.83388,0.83193,0.82903,0.8273,0.82635,0.826,0.82598,0.82287,0.81884,0.81456,0.81321,0.80989,0.80912,0.80815,0.80784,0.80736,0.80172,0.80028,0.79964,0.79962,0.79955,0.79865,0.79099,0.7892,0.78825,0.78698,0.78343,0.78097,0.7801,0.77769,0.77058,0.76998,0.76822,0.76801,0.76785,0.76707,0.7646,0.76292,0.7626,0.76082,0.75811,0.75748,0.75425,0.75423,0.75344,0.75204,0.75166,0.75142,0.75086,0.74763,0.74744,0.74279,0.74248,0.74046,0.73863,0.7377,0.73766,0.73686,0.73535,0.7349,0.73367,0.73293,0.73259,0.73229,0.73175,0.72959,0.72897,0.7286,0.72804,0.72773,0.72615,0.72526,0.72485,0.72367,0.72359,0.7234,0.72234,0.72158,0.72116,0.72017,0.72009,0.71958,0.71955,0.71802,0.71752,0.71731,0.71681,0.71479,0.7142,0.71347,0.71161,0.71151,0.7113,0.70977,0.70926,0.70835,0.70829,0.7065,0.70551,0.70353,0.69976,0.69529,0.69475,0.69187,0.68978,0.68942,0.68851,0.68742,0.68613,0.68423,0.68214,0.68207,0.68005,0.6793,0.67715,0.67487,0.67065,0.6677,0.66688,0.66243,0.66096,0.66058,0.66028,0.66028,0.65969,0.65954,0.65771,0.65737,0.65686,0.65602,0.65471,0.65222,0.65122,0.65068,0.6501,0.64806,0.64788,0.64787,0.64483,0.64458,0.64452,0.64303,0.64277,0.64252,0.641,0.63952,0.63782,0.63524,0.6322,0.63215,0.6308,0.63039,0.62675,0.62427,0.62387,0.62315,0.62225,0.62082,0.62043,0.61995,0.61991,0.61916,0.61229,0.61226,0.61216,0.61182,0.61161,0.61158,0.61053,0.60982,0.60972,0.60952,0.60906,0.60887,0.60834,0.60645,0.60643,0.60555,0.60519,0.60399,0.60368,0.60316,0.6021,0.60147,0.60095,0.60094,0.59915,0.59828,0.59753,0.59712,0.5943,0.59238,0.58891,0.58684,0.58647,0.58584,0.58313,0.58209,0.57976,0.57956,0.57791,0.57779,0.57737,0.57558,0.57389,0.57202,0.57193,0.57062,0.56911,0.56709,0.56603,0.56536,0.56025,0.55988,0.55792,0.55735,0.55642,0.55593,0.5538,0.5524,0.55174,0.55105,0.5503,0.55026,0.55006,0.54616,0.54482,0.54479,0.54294,0.54209,0.54208,0.54104,0.541,0.53837,0.5381,0.53738,0.53603,0.5356,0.53495,0.53387,0.53274,0.53178,0.52976,0.5292,0.52847,0.5272,0.52666,0.52568,0.52252,0.52144,0.52109,0.52107,0.521,0.51948,0.51731,0.51509,0.51321,0.51215,0.50935,0.50876,0.50549,0.50419,0.50299,0.5025,0.50224,0.50177,0.50096,0.50068,0.50063,0.50041,0.49979,0.49811,0.49791,0.49711,0.49669,0.49636,0.49627,0.49589,0.49337,0.49173,0.49001,0.48966,0.48705,0.48678,0.4866,0.48485,0.4848,0.48429,0.47875,0.47777,0.47775,0.4777,0.47642,0.47549,0.47426,0.47402,0.47388,0.47347,0.47034,0.46918,0.46871,0.46812,0.46731,0.46686,0.4663,0.46563,0.46222,0.46187,0.46136,0.46033,0.45887,0.45852,0.45813,0.45752,0.45681,0.45596,0.45511,0.45335,0.45279,0.45092,0.45062,0.45021,0.44973,0.44948,0.44754,0.44678,0.44655,0.44634,0.44469,0.43997,0.43971,0.4391,0.43869,0.43759,0.43628,0.43552,0.4333,0.43068,0.43042,0.43031,0.42996,0.42879,0.42675,0.42298,0.42164,0.42127,0.42093,0.41979,0.41934,0.41818,0.41815,0.41559,0.41361,0.41336,0.41213,0.41208,0.41179,0.41126,0.41103,0.41099,0.40922,0.40436,0.40428,0.40246,0.40089,0.40014,0.39928,0.39681,0.39362,0.39344,0.39292,0.39259,0.39202,0.39171,0.39035,0.39025,0.39007,0.38907,0.38824,0.38802,0.38744,0.38687,0.38474,0.38468,0.38409,0.38252,0.38138,0.38066,0.38062,0.37941,0.37903,0.379,0.3754,0.37454,0.37284,0.37273,0.37258,0.37158,0.36887,0.36784,0.36768,0.36652,0.36618,0.3661,0.36597,0.36527,0.36407,0.36338,0.36201,0.36133,0.35846,0.35786,0.3572,0.35508,0.35304,0.35276,0.35262,0.35257,0.34866,0.34844,0.34687,0.34655,0.34607,0.3459,0.34483,0.34464,0.34407,0.34369,0.34325,0.34318,0.34292,0.34194,0.34065,0.34047,0.33987,0.33944,0.33792,0.33787,0.33776,0.33736,0.33729,0.33674,0.3363,0.3351,0.33474,0.33394,0.33357,0.33353,0.33269,0.33246,0.33225,0.33222,0.33213,0.33195,0.33171,0.33048,0.32869,0.32762,0.32756,0.32629,0.32461,0.32388,0.32366,0.32306,0.32285,0.32274,0.32169,0.32057,0.31887,0.31853,0.31833,0.31592,0.31541,0.31438,0.31355,0.31243,0.31197,0.31133,0.30994,0.30941,0.30861,0.30845,0.30817,0.30673,0.3067,0.306,0.30508,0.30475,0.30457,0.30393,0.30379,0.30311,0.30303,0.29895,0.29528,0.29432,0.29165,0.29129,0.2912,0.29113,0.29089,0.29022,0.28881,0.28828,0.2876,0.28721,0.28709,0.28662,0.28555,0.28531,0.28328,0.28307,0.28268,0.28246,0.282,0.28179,0.28122,0.28051,0.2802,0.2795,0.27909,0.27882,0.27818,0.27799,0.27753,0.27617,0.27598,0.27594,0.27548,0.27506,0.27469,0.27454,0.27449,0.2733,0.27315,0.272,0.2719,0.27114,0.27086,0.26824,0.26549,0.26548,0.26495,0.26311,0.263,0.26274,0.26223,0.26216,0.25968,0.25963,0.25927,0.25913,0.2589,0.25836,0.25812,0.25764,0.25677,0.25587,0.25365,0.25333,0.25284,0.25233,0.2513,0.25068,0.24896,0.24886,0.2486,0.24842,0.24755,0.24697,0.24562,0.24458,0.24383,0.24374,0.24364,0.24347,0.24342,0.24184,0.24183,0.23778,0.23658,0.23611,0.23589,0.23563,0.23543,0.23392,0.23318,0.23311,0.23276,0.23196,0.23185,0.23183,0.23116,0.23071,0.2304,0.23033,0.22759,0.2275,0.2263,0.22544,0.22428,0.22368,0.22262,0.22204,0.22117,0.22031,0.21929,0.21803,0.21798,0.21705,0.21552,0.21428,0.21355,0.21304,0.21262,0.21099,0.21047,0.2104,0.21016,0.20999,0.20889,0.20853,0.20846,0.20662,0.20576,0.20559,0.20539,0.20502,0.20477,0.20442,0.20405,0.2035,0.20239,0.20234,0.19946,0.19943,0.1991,0.19907,0.19723,0.19705,0.19694,0.19689,0.19674,0.19603,0.19562,0.19549,0.1953,0.19406,0.194,0.19288,0.1924,0.19201,0.19182,0.19075,0.18989,0.18825,0.18785,0.18681,0.18565,0.18441,0.18151,0.18138,0.18051,0.18031,0.17883,0.17844,0.178,0.17767,0.17757,0.17723,0.17645,0.17592,0.17553,0.17424,0.17316,0.17289,0.1718,0.17111,0.17079,0.17077,0.17053,0.16989,0.1687,0.16783,0.1662,0.16549,0.1653,0.16522,0.1648,0.16465,0.16425,0.16388,0.16377,0.16307,0.1627,0.16181,0.16022,0.1592,0.15904,0.15866,0.15854,0.15745,0.15728,0.15718,0.15667,0.15621,0.1552,0.15443,0.15424,0.15352,0.15331,0.15172,0.15154,0.15108,0.15094,0.14983,0.14939,0.14872,0.14851,0.14818,0.14817,0.14763,0.14644,0.14607,0.14579,0.14561,0.14512,0.14491,0.14484,0.14478,0.1446,0.14429,0.14429,0.14414,0.1435,0.14299,0.14161,0.14079,0.14076,0.14038,0.14036,0.13973,0.1393,0.13896,0.13879,0.13816,0.13793,0.13772,0.13741,0.13561,0.13549,0.13527,0.13505,0.135,0.13497,0.13464,0.13355,0.13342,0.13318,0.13285,0.13248,0.13197,0.13168,0.13134,0.13095,0.13093,0.13079,0.13077,0.12899,0.12673,0.12647,0.12616,0.12574,0.12524,0.12512,0.12419,0.12332,0.12291,0.12264,0.1226,0.12208,0.1216,0.12156,0.11986,0.11893,0.11866,0.11836,0.11826,0.11757,0.1173,0.11671,0.11618,0.11574,0.11565,0.11434,0.11421,0.11406,0.11374,0.11322,0.11309,0.11298,0.1129,0.11277,0.11247,0.11173,0.11166,0.1115,0.11135,0.11124,0.11115,0.1106,0.11016,0.10877,0.10823,0.10803,0.108,0.10785,0.10748,0.10716,0.10703,0.1066,0.10558,0.10519,0.10508,0.10496,0.10489,0.10474,0.10447,0.10442,0.10435,0.10359,0.10335,0.10284,0.10258,0.10183,0.10143,0.10128,0.10007,0.09995,0.09937,0.09918,0.09884,0.09812,0.098,0.09749,0.09743,0.09676,0.09666,0.09663,0.09608,0.09574,0.09572,0.09568,0.09566,0.09497,0.09491,0.09412,0.09409,0.09403,0.09342,0.09304,0.09225,0.09198,0.09197,0.09167,0.09144,0.091,0.0907,0.09057,0.08965,0.08942,0.0889,0.08847,0.08839,0.08813,0.0881,0.08787,0.08713,0.0863,0.08626,0.08582,0.08572,0.08515,0.08465,0.08447,0.08435,0.08421,0.0831,0.08309,0.08251,0.08178,0.08169,0.08134,0.08128,0.08126,0.08095,0.08081,0.08029,0.07997,0.0797,0.07949,0.07934,0.07923,0.07911,0.07896,0.07888,0.07884,0.07814,0.07806,0.07656,0.07654,0.07647,0.07637,0.07606,0.0756,0.07555,0.07529,0.07441,0.07439,0.07413,0.07409,0.07321,0.07238,0.0723,0.07217,0.07151,0.07132,0.07106,0.07103,0.07075,0.07052,0.06993,0.06992,0.06988,0.06987,0.06965,0.06952,0.06942,0.06927,0.06923,0.06916,0.0689,0.06887,0.06862,0.06848,0.06828,0.06764,0.06746,0.06705,0.06703,0.06695,0.06686,0.06631,0.06583,0.06582,0.06564,0.06531,0.06519,0.06517,0.06473,0.06437,0.06379,0.0635,0.06348,0.0634,0.06335,0.06316,0.06266,0.06249,0.06173,0.06158,0.06042,0.06037,0.06017,0.06006,0.06003,0.05945,0.05917,0.05915,0.059,0.05899,0.05895,0.05869,0.05858,0.05845,0.05829,0.05822,0.05821,0.05772,0.05749,0.05743,0.0567,0.05657,0.05655,0.0559,0.05568,0.05534,0.05516,0.05514,0.05505,0.05477,0.05475,0.05465,0.0545,0.05408,0.0538,0.05345,0.05345,0.05343,0.05289,0.05287,0.05286,0.05284,0.05275,0.05271,0.05261,0.05249,0.05219,0.05194,0.0517,0.05148,0.05147,0.0514,0.05128,0.05115,0.05083,0.05081,0.05061,0.05007,0.0497,0.04939,0.04936,0.04931,0.04921,0.04907,0.04904,0.04902,0.04854,0.04845,0.04844,0.04823,0.04809,0.04806,0.04801,0.0479,0.0475,0.0475,0.04729,0.04708,0.04683,0.04679,0.04673,0.04671,0.04649,0.04648,0.04647,0.04647,0.04638,0.04636,0.04635,0.04634,0.04633,0.04633,0.04633,0.04633,0.04633,0.04625,0.04593,0.04535,0.04487,0.04448,0.04433,0.04388,0.04377,0.04349,0.04301,0.04277,0.04274,0.04273,0.0427,0.04259,0.04223,0.0422,0.04192,0.04144,0.04128,0.04112,0.04101,0.04078,0.04076,0.04057,0.04032,0.04026,0.04025,0.03993,0.0391,0.03906,0.03883,0.03883,0.03866,0.03866,0.03858,0.03831,0.03828,0.038,0.03756,0.03723,0.03723,0.03714,0.03711,0.0371,0.03704,0.03671,0.03636,0.03609,0.03599,0.03537,0.03512,0.03498,0.03487,0.03455,0.0342,0.03369,0.03366,0.03363,0.03359,0.03354,0.03346,0.03338,0.03332,0.03328,0.03321,0.03321,0.03317,0.033,0.03293,0.03267,0.03249,0.03054,0.03051,0.03041,0.03039,0.03015,0.03015,0.03005,0.03003,0.02997,0.02995,0.0298,0.02966,0.02892,0.02876,0.02865,0.0286,0.02856,0.02853,0.0285,0.02839,0.02837,0.02832,0.02806,0.02803,0.02801,0.028,0.02764,0.02721,0.02721,0.02721,0.02716,0.02714,0.02695,0.02682,0.0264,0.0264,0.02637,0.02632,0.02627,0.02617,0.02588,0.02564,0.02538,0.02533,0.02522,0.02505,0.02464,0.02454,0.02447,0.02417,0.02408,0.02392,0.02373,0.0237,0.02326,0.02324,0.02319,0.02317,0.02313,0.02285,0.02267,0.02261,0.02243,0.02221,0.02216,0.02214,0.02209,0.02206,0.02194,0.02174,0.02171,0.02169,0.02154,0.02129,0.02126,0.0212,0.02111,0.02091,0.02082,0.02064,0.02064,0.02019,0.02014,0.02009,0.02005,0.01979,0.01979,0.0196,0.01959,0.01945,0.01935,0.01933,0.01925,0.01923,0.01922,0.01918,0.01915,0.01897,0.01879,0.01877,0.01876,0.01872,0.01868,0.0185,0.01838,0.0181,0.01808,0.01807,0.01804,0.01803,0.018,0.01781,0.01778,0.01758,0.01757,0.01756,0.01752,0.0175,0.01748,0.0173,0.01727,0.01725,0.01717,0.01717,0.01709,0.01703,0.01693,0.01686,0.01685,0.01685,0.01649,0.01637,0.01635,0.01633,0.0163,0.01625,0.01625,0.016,0.01597,0.01597,0.01592,0.01588,0.01586,0.01581,0.01576,0.01573,0.01572,0.01571,0.01561,0.01558,0.01549,0.01542,0.01542,0.0154,0.01536,0.01532,0.01522,0.01517,0.01512,0.01487,0.01479,0.01472,0.01456,0.01433,0.01424,0.0141,0.01389,0.01388,0.01385,0.0138,0.01364,0.01341,0.01339,0.01337,0.01334,0.01322,0.01309,0.01305,0.01303,0.01302,0.01296,0.01295,0.0128,0.01273,0.01266,0.01264,0.01262,0.01259,0.01256,0.01251,0.01251,0.01243,0.01237,0.01234,0.01233,0.01233,0.01233,0.01233,0.01233,0.01233,0.01233,0.01229,0.01211,0.01211,0.01209,0.01208,0.01207,0.01199,0.01194,0.01182,0.01182,0.01179,0.0117,0.01158,0.01154,0.01123,0.01123,0.01118,0.0111,0.01108,0.01096,0.01093,0.01092,0.01091,0.0108,0.01077,0.01074,0.01068,0.01067,0.01061,0.01061,0.01035,0.00979,0.00978,0.00974,0.0097,0.00968,0.00968,0.00965,0.00963,0.00962,0.00961,0.00959,0.00952,0.00951,0.00938,0.00935,0.00933,0.00926,0.00917,0.00911,0.00892,0.0088,0.00866,0.0086,0.00858,0.00851,0.00836,0.00834,0.00828,0.00825,0.00816,0.00811,0.00808,0.00805,0.0079,0.00788,0.00787,0.00776,0.00773,0.00768,0.00767,0.00766,0.00759,0.00759,0.00751,0.00748,0.00745,0.00744,0.00738,0.00719,0.00692,0.00674,0.00672,0.00663,0.00658,0.00655,0.00651,0.00649,0.00648,0.00646,0.00646,0.00645,0.00641,0.00639,0.00635,0.00615,0.00606,0.00606,0.00601,0.00601,0.00588,0.00586,0.00581,0.0058,0.00574,0.00557,0.00556,0.00548,0.00543,0.0054,0.0054,0.00533,0.00533,0.00527,0.00526,0.00516,0.00512,0.00509,0.00498,0.0049,0.00488,0.00479,0.00478,0.00476,0.00464,0.00464,0.00456,0.00453,0.0045,0.00446,0.00443,0.00442,0.00436,0.00435,0.0043,0.00422,0.00421,0.00419,0.00418,0.00415,0.00413,0.00402,0.00396,0.00394,0.00394,0.0039,0.00383,0.00376,0.00371,0.00366,0.00361,0.0036,0.00346,0.00345,0.00339,0.00339,0.00336,0.0033,0.00326,0.0032,0.00316,0.00314,0.00311,0.00311,0.00304,0.00299,0.00299,0.00294,0.00291,0.00288,0.00287,0.00282,0.00282,0.00279,0.00278,0.00276,0.00272,0.0027,0.00268,0.00265,0.00264,0.00258,0.00257,0.00254,0.00249,0.00249,0.00244,0.00244,0.00243,0.0024,0.00234,0.00232,0.00231,0.00227,0.00219,0.00216,0.00214,0.00214,0.0021,0.00207,0.00205,0.00202,0.00197,0.00193,0.00193,0.00192,0.00191,0.00185,0.00184,0.00183,0.00178,0.00177,0.00174,0.00169,0.00163,0.00162,0.00159,0.00158,0.00157,0.00155,0.00152,0.0015,0.00147,0.00144,0.00143,0.00141,0.00139,0.00136,0.00135,0.00133,0.00133,0.00131,0.00122,0.0012,0.00117,0.00114,0.00114,0.00113,0.00112,0.00111,0.00106,0.00106,0.00105,0.00103,0.00103,0.00101,0.001,0.00099,0.00099,0.00095,0.00094,0.00092,0.0009,0.0009,0.00088,0.00086,0.00084,0.00081,0.00081,0.00079,0.00074,0.00073,0.00072,0.00071,0.00066,0.00065,0.00064,0.00064,0.00061,0.0006,0.00044,0.0004,0.0004,0.0004,0.00038,0.00038,0.00037,0.00036,0.00035,0.00033,0.00032,0.0003,0.0003,0.0003,0.00028,0.00027,0.00027,0.00026,0.00025,0.00025,0.00024,0.00023,0.00022,0.00021,0.00019,0.00017,0.00017,0.00017,0.00015,0.00014,0.00014,0.00014,0.00013,0.00013,0.00013,0.00013,0.00012,0.00012,0.00011,0.00011,0.00011,0.00011,0.0001,0.0001,0.0001,0.00009,0.00009,0.00008,0.00008,0.00008,0.00008,0.00007,0.00006,0.00006,0.00005,0.00004,0.00004,0.00004,0.00004,0.00004,0.00004,0.00004,0.00004,0.00003,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"檜原村","values":[0.00711,0.00702,0.00617,0.00524,0.00511,0.00498,0.00451,0.00447,0.00436,0.00425,0.00413,0.00349,0.00339,0.00328,0.00323,0.00322,0.00319,0.00319,0.00317,0.00306,0.00296,0.00281,0.00278,0.00269,0.00266,0.00256,0.00253,0.00234,0.00224,0.00218,0.00215,0.00213,0.0021,0.00209,0.00208,0.00202,0.00187,0.00176,0.00174,0.00172,0.0017,0.0017,0.0017,0.00168,0.00166,0.00166,0.0016,0.00158,0.00157,0.00156,0.0015,0.00149,0.00148,0.00141,0.00139,0.00137,0.00137,0.00136,0.00135,0.00128,0.00126,0.00125,0.00125,0.00123,0.0012,0.00117,0.00117,0.00112,0.00111,0.00111,0.0011,0.00106,0.00105,0.00104,0.00104,0.00104,0.00095,0.00095,0.00094,0.0009,0.00088,0.00087,0.00087,0.00086,0.00084,0.00083,0.00082,0.00082,0.0008,0.0008,0.00079,0.00079,0.00078,0.00078,0.00078,0.00077,0.00077,0.00074,0.00074,0.00073,0.00072,0.00071,0.00071,0.0007,0.0007,0.00069,0.00069,0.00068,0.00067,0.00066,0.00065,0.00065,0.00063,0.00063,0.00063,0.00062,0.00061,0.00061,0.0006,0.0006,0.00059,0.00058,0.00057,0.00056,0.00053,0.00053,0.00053,0.0005,0.00049,0.00049,0.00049,0.00049,0.00048,0.00047,0.00047,0.00046,0.00045,0.00043,0.00041,0.0004,0.0004,0.00039,0.00039,0.00039,0.00039,0.00038,0.00038,0.00037,0.00036,0.00035,0.00035,0.00034,0.00034,0.00031,0.00031,0.0003,0.00029,0.00028,0.00028,0.00027,0.00027,0.00027,0.00024,0.00024,0.00023,0.00023,0.00023,0.00023,0.00023,0.00021,0.00021,0.0002,0.0002,0.0002,0.0002,0.00019,0.00019,0.00018,0.00018,0.00018,0.00017,0.00016,0.00015,0.00015,0.00014,0.00012,0.00012,0.00011,0.0001,0.0001,0.00009,0.00009,0.00008,0.00008,0.00007,0.00007,0.00006,0.00006,0.00006,0.00006,0.00006,0.00006,0.00005,0.00005,0.00004,0.00004,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"日野市","values":[2.73386,2.62089,2.50457,2.48406,2.18076,2.10958,2.0739,2.06574,1.92856,1.8858,1.8442,1.798,1.72016,1.71421,1.4929,1.44317,1.37594,1.34446,1.31775,1.29002,1.26078,1.22235,1.17087,1.16528,1.15702,1.15023,1.07502,1.07197,1.03682,1.02803,1.02274,1.00152,0.99357,0.98972,0.95512,0.94443,0.94254,0.9145,0.91123,0.8918,0.89053,0.88351,0.87458,0.8732,0.87136,0.84934,0.81316,0.80567,0.79911,0.79649,0.78418,0.76475,0.74753,0.72187,0.71578,0.7044,0.70339,0.70033,0.69561,0.69467,0.67829,0.67704,0.65815,0.65684,0.65484,0.65021,0.63115,0.60702,0.59434,0.59398,0.59127,0.57947,0.57479,0.57208,0.56725,0.56573,0.56434,0.55404,0.55224,0.53492,0.53437,0.53095,0.52592,0.51899,0.51523,0.50335,0.49746,0.49089,0.48992,0.48431,0.48105,0.48083,0.47146,0.47069,0.46972,0.4626,0.46251,0.45589,0.45581,0.45487,0.45192,0.44716,0.44484,0.43671,0.43379,0.43027,0.42913,0.4288,0.4284,0.42397,0.42331,0.42311,0.42119,0.4176,0.4171,0.41499,0.41059,0.406,0.40579,0.40086,0.39953,0.39804,0.39546,0.39476,0.38627,0.37174,0.37079,0.37027,0.36795,0.36617,0.36614,0.36502,0.3555,0.35101,0.34823,0.34676,0.34201,0.33941,0.33935,0.33829,0.33471,0.33259,0.33065,0.32918,0.32149,0.31932,0.31842,0.31706,0.31517,0.31303,0.31218,0.31203,0.30493,0.30362,0.30042,0.29707,0.29368,0.2928,0.29177,0.29135,0.29022,0.28822,0.28584,0.28188,0.27673,0.27124,0.27099,0.26903,0.26324,0.25981,0.25929,0.2585,0.25454,0.24856,0.24814,0.24805,0.24805,0.2473,0.2469,0.24472,0.24375,0.24291,0.23809,0.23805,0.23698,0.236,0.2358,0.23542,0.23146,0.23136,0.2242,0.22341,0.22339,0.22261,0.21881,0.21855,0.21805,0.21757,0.21408,0.21302,0.21247,0.21232,0.21193,0.20739,0.20637,0.20529,0.20416,0.20407,0.19947,0.1993,0.19695,0.19648,0.19598,0.19571,0.19551,0.19451,0.19281,0.19264,0.19215,0.19211,0.19165,0.19049,0.18791,0.1875,0.18457,0.18295,0.18072,0.18,0.17752,0.17634,0.17513,0.17457,0.16719,0.16694,0.16691,0.16605,0.16498,0.16191,0.16097,0.16041,0.15937,0.15794,0.15647,0.15644,0.1561,0.15602,0.1532,0.15096,0.14995,0.1495,0.14921,0.14638,0.1431,0.1423,0.1417,0.1411,0.14108,0.14034,0.13384,0.13318,0.13254,0.12857,0.12388,0.12386,0.12317,0.12247,0.1212,0.12009,0.11918,0.11838,0.11723,0.117,0.11614,0.11584,0.11239,0.11194,0.11193,0.11161,0.11129,0.10907,0.10574,0.10462,0.10447,0.10134,0.10082,0.09844,0.09834,0.09703,0.0959,0.09507,0.09457,0.09337,0.09266,0.09208,0.09183,0.08956,0.08868,0.08514,0.08457,0.0838,0.08244,0.08122,0.07952,0.07917,0.07907,0.07898,0.07831,0.07755,0.07713,0.0771,0.07577,0.0744,0.0742,0.07377,0.07367,0.07329,0.07227,0.07087,0.07079,0.06734,0.06691,0.06671,0.06589,0.06436,0.0643,0.06225,0.06196,0.06191,0.05968,0.05955,0.0593,0.05874,0.05799,0.05627,0.05574,0.0552,0.05254,0.05234,0.05155,0.05048,0.04855,0.04791,0.04784,0.04733,0.04704,0.04675,0.0463,0.04576,0.04456,0.04414,0.04302,0.04288,0.0426,0.04135,0.04126,0.03923,0.03888,0.03848,0.03811,0.03582,0.03488,0.03465,0.03302,0.03242,0.03168,0.03009,0.02801,0.028,0.02726,0.02652,0.02636,0.02578,0.02283,0.02216,0.02193,0.02125,0.02108,0.02029,0.02,0.01918,0.01864,0.01702,0.01698,0.01335,0.01096,0.00882,0.00847,0.00721,0.00705,0.00663,0.00484,0.00466,0.00398,0.00357,0.00286,0.00174,0.00119,0.00065,0.00029,0.00009,0.00007,0.00006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"多摩市","values":[0.60946,0.60345,0.51344,0.48852,0.47745,0.46316,0.46262,0.45623,0.45118,0.44391,0.42546,0.42107,0.41984,0.41563,0.40816,0.40482,0.39513,0.39482,0.39259,0.39084,0.38664,0.38536,0.37838,0.37304,0.37028,0.36148,0.3611,0.35636,0.34308,0.33835,0.33119,0.32961,0.32618,0.32314,0.3199,0.31585,0.31118,0.30721,0.30631,0.30232,0.29731,0.29698,0.29587,0.29517,0.2911,0.2908,0.29028,0.28991,0.28539,0.28063,0.27334,0.26907,0.26163,0.26073,0.25881,0.25761,0.24845,0.24778,0.24471,0.24443,0.24218,0.24,0.23731,0.23582,0.23408,0.23107,0.23024,0.22808,0.22636,0.22624,0.22617,0.22468,0.22422,0.21697,0.21065,0.20998,0.2094,0.20677,0.20531,0.2043,0.20382,0.20195,0.20117,0.20023,0.19802,0.19755,0.19347,0.19246,0.19145,0.18765,0.18741,0.18735,0.18661,0.18508,0.18422,0.18087,0.1794,0.178,0.17659,0.17304,0.17212,0.16969,0.16912,0.16639,0.16629,0.16393,0.1591,0.15863,0.1584,0.15558,0.15548,0.14918,0.14892,0.14717,0.14499,0.14477,0.14396,0.14193,0.14085,0.14037,0.13881,0.13849,0.13712,0.13607,0.13493,0.131,0.13002,0.12512,0.1162,0.11531,0.11443,0.11323,0.11265,0.11238,0.11024,0.10994,0.10962,0.10959,0.10809,0.10434,0.10423,0.10082,0.10053,0.09927,0.09894,0.09698,0.0957,0.09476,0.09433,0.09361,0.09333,0.09238,0.09221,0.09039,0.08883,0.08824,0.08779,0.08693,0.08553,0.08495,0.08227,0.08191,0.07944,0.07841,0.07726,0.07486,0.07455,0.07427,0.07378,0.07322,0.06976,0.06969,0.06959,0.06716,0.06506,0.06397,0.06384,0.06342,0.06201,0.06175,0.06107,0.0604,0.05993,0.05964,0.05632,0.05555,0.05502,0.05494,0.05388,0.05349,0.05336,0.05282,0.05252,0.05227,0.05189,0.05123,0.04979,0.04952,0.04877,0.04722,0.04179,0.04118,0.04103,0.03836,0.038,0.03767,0.0374,0.03721,0.03692,0.03658,0.03563,0.03525,0.03519,0.03485,0.03482,0.03435,0.03346,0.03323,0.03224,0.03189,0.0314,0.03035,0.03024,0.03013,0.02982,0.02962,0.02853,0.02765,0.02733,0.02662,0.02605,0.02585,0.02561,0.02512,0.02491,0.02304,0.02264,0.02252,0.02126,0.02098,0.02044,0.02037,0.02026,0.0199,0.01978,0.01968,0.01954,0.01937,0.01887,0.01766,0.01752,0.01699,0.01669,0.01602,0.01591,0.01575,0.01574,0.01574,0.01557,0.01549,0.01527,0.01474,0.01455,0.0145,0.01413,0.01329,0.01305,0.01295,0.01276,0.0113,0.00986,0.00941,0.00933,0.00892,0.00857,0.00756,0.00703,0.00699,0.00607,0.0057,0.00531,0.00528,0.0047,0.00407,0.00405,0.00395,0.00389,0.0037,0.00359,0.00273,0.00252,0.00242,0.00174,0.00124,0.00111,0.00106,0.001,0.00093,0.00074,0.00058,0.00045,0.00041,0.00038,0.00037,0.00022,0.00014,0.00014,0.00013,0.00007,0.00006,0.00003,0.00001,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"稲城市","values":[2.08228,1.95929,1.6592,1.48549,1.38079,1.31344,1.26993,1.19952,1.1588,1.09021,1.08568,1.06593,1.02714,1.01854,1.01366,1.01307,0.97411,0.93081,0.89207,0.88755,0.85301,0.83534,0.8285,0.78754,0.78067,0.75295,0.75224,0.75019,0.70739,0.67798,0.67472,0.67208,0.66653,0.65843,0.65573,0.64048,0.61272,0.58928,0.57386,0.5727,0.55837,0.54522,0.54251,0.53528,0.53499,0.52277,0.51442,0.47884,0.47668,0.4742,0.4673,0.45605,0.43809,0.42226,0.41777,0.41364,0.38573,0.38249,0.37382,0.36109,0.3597,0.34257,0.33913,0.3198,0.31191,0.30903,0.30734,0.30665,0.30344,0.30312,0.29683,0.29311,0.26987,0.26973,0.26938,0.26454,0.26054,0.23569,0.22632,0.22456,0.22363,0.22251,0.22236,0.21383,0.21189,0.21009,0.20667,0.20602,0.20245,0.19602,0.1915,0.18444,0.17789,0.17363,0.1654,0.1569,0.15576,0.15489,0.15077,0.13939,0.13793,0.13711,0.13457,0.13088,0.1297,0.12884,0.12746,0.12691,0.12574,0.1221,0.12054,0.11689,0.11544,0.11165,0.11092,0.10974,0.10803,0.1042,0.09911,0.09751,0.09656,0.09589,0.09497,0.09399,0.09296,0.09236,0.09225,0.08867,0.08529,0.08203,0.08192,0.07663,0.07608,0.0742,0.07253,0.07203,0.06947,0.06861,0.06814,0.0648,0.06339,0.06294,0.0625,0.06174,0.06145,0.06095,0.05808,0.05746,0.05459,0.05386,0.04395,0.04293,0.04222,0.04096,0.03991,0.03925,0.03824,0.03789,0.03751,0.03663,0.03644,0.03634,0.03589,0.03566,0.03386,0.03357,0.03306,0.02925,0.02835,0.0275,0.02678,0.02607,0.02579,0.02571,0.02551,0.02352,0.02291,0.0219,0.02149,0.02133,0.02126,0.02124,0.02106,0.02102,0.02086,0.02009,0.01984,0.01936,0.01906,0.01804,0.01709,0.01633,0.01542,0.01521,0.01503,0.0146,0.01409,0.01356,0.01275,0.01273,0.01269,0.01249,0.01248,0.01236,0.01224,0.01219,0.01203,0.01192,0.01173,0.01101,0.01082,0.0108,0.01074,0.01026,0.00867,0.00839,0.00765,0.00752,0.0073,0.00572,0.00566,0.00554,0.00484,0.00478,0.00458,0.00405,0.00405,0.00405,0.00403,0.00403,0.00374,0.00267,0.00246,0.00216,0.00209,0.00197,0.00175,0.00155,0.00136,0.00122,0.00105,0.00051,0.00041,0.00036,0.00032,0.00031,0.00018,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"府中市","values":[7.96863,7.92419,7.86007,6.93336,6.30164,5.48065,5.46477,4.60083,4.34408,4.33977,3.97476,3.78037,3.72609,3.56049,3.53019,3.48662,3.46066,3.35303,3.30586,3.23628,3.11451,3.10345,3.07472,3.03255,2.95316,2.93283,2.84539,2.79811,2.79136,2.73977,2.72864,2.70902,2.69258,2.5867,2.58667,2.57801,2.56586,2.52349,2.50288,2.48669,2.48554,2.44541,2.41065,2.4059,2.39294,2.35635,2.35465,2.33297,2.32248,2.31737,2.31497,2.28291,2.28011,2.27475,2.23567,2.22507,2.21251,2.20294,2.19873,2.1863,2.18582,2.18165,2.1799,2.17646,2.17062,2.15462,2.14686,2.14679,2.14625,2.12694,2.10346,2.10101,2.1,2.09929,2.09669,2.0962,2.07186,2.0717,2.04039,2.02711,2.01675,2.00149,1.9853,1.97816,1.97308,1.95283,1.95205,1.945,1.93988,1.93581,1.93017,1.92605,1.92574,1.91411,1.87088,1.86848,1.84369,1.84033,1.83954,1.83454,1.83439,1.8155,1.8147,1.81242,1.79939,1.79928,1.78991,1.78967,1.78567,1.77916,1.76321,1.76027,1.75472,1.74879,1.74873,1.74625,1.73345,1.73212,1.73149,1.72958,1.71471,1.71237,1.71207,1.68825,1.68731,1.67702,1.66254,1.6403,1.62727,1.62161,1.61286,1.60385,1.60093,1.58703,1.58402,1.58022,1.56678,1.54533,1.54317,1.53601,1.53505,1.53338,1.52362,1.51728,1.51289,1.50724,1.4964,1.48654,1.48083,1.47769,1.47699,1.47528,1.46666,1.45251,1.44665,1.44407,1.42992,1.42855,1.42668,1.41877,1.41593,1.41027,1.41005,1.40694,1.40032,1.39806,1.39314,1.3931,1.38967,1.37429,1.37389,1.37383,1.35937,1.35741,1.35481,1.34767,1.34718,1.34206,1.3397,1.32987,1.31995,1.31989,1.31728,1.31266,1.30303,1.29946,1.29245,1.28679,1.27556,1.27324,1.27015,1.26773,1.26549,1.25744,1.25035,1.24719,1.24654,1.24571,1.24445,1.24409,1.23829,1.22392,1.22307,1.22224,1.22109,1.21767,1.20758,1.20657,1.17082,1.15108,1.14551,1.14162,1.11398,1.11037,1.10823,1.10763,1.09915,1.09812,1.09799,1.08975,1.08924,1.07248,1.0706,1.05175,1.04429,1.03944,1.03008,1.02422,1.0196,1.016,1.01516,1.01259,1.00949,0.9994,0.97827,0.96869,0.96193,0.95692,0.94219,0.94054,0.93985,0.93007,0.92879,0.92535,0.92307,0.90631,0.90399,0.90304,0.89568,0.88957,0.87668,0.87657,0.87625,0.87561,0.87386,0.86971,0.86568,0.86336,0.86093,0.85575,0.84907,0.84865,0.84604,0.84305,0.84,0.83908,0.82962,0.82513,0.82027,0.80603,0.80259,0.79965,0.7945,0.79219,0.78863,0.78538,0.78245,0.77638,0.75312,0.74718,0.74324,0.73832,0.73704,0.71894,0.71473,0.71089,0.68776,0.68243,0.67951,0.66737,0.65082,0.64665,0.63762,0.62757,0.6228,0.62007,0.61237,0.61168,0.60304,0.59244,0.58871,0.57321,0.57321,0.57043,0.5691,0.54272,0.53042,0.52893,0.52015,0.51123,0.50633,0.5054,0.50499,0.49277,0.49195,0.48818,0.4852,0.48224,0.47829,0.47723,0.47104,0.46813,0.46729,0.46497,0.46221,0.4603,0.45636,0.45134,0.38354,0.37111,0.36538,0.35174,0.34835,0.34174,0.33594,0.32715,0.32212,0.3205,0.31929,0.30835,0.30796,0.30485,0.30459,0.30374,0.28495,0.28163,0.27845,0.27251,0.24469,0.24203,0.22134,0.21345,0.21147,0.20728,0.19493,0.19258,0.18339,0.17836,0.17047,0.14881,0.14791,0.1441,0.13878,0.13521,0.12522,0.11866,0.11861,0.11441,0.09431,0.09234,0.09222,0.09097,0.08986,0.0876,0.08378,0.07655,0.06591,0.06513,0.06417,0.06398,0.0629,0.06288,0.06285,0.06198,0.0617,0.06125,0.06056,0.05497,0.05359,0.05223,0.05132,0.05129,0.05105,0.04927,0.04591,0.04265,0.04109,0.03853,0.03847,0.03736,0.03195,0.02874,0.02683,0.0257,0.0239,0.0234,0.01768,0.01701,0.01648,0.01644,0.01388,0.01353,0.01148,0.01078,0.01073,0.0096,0.00943,0.0094,0.00894,0.00879,0.0078,0.00677,0.00428,0.0039,0.00281,0.00025,0.00006,0.00004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"狛江市","values":[40.95184,40.01701,39.93541,39.85663,38.56897,38.10226,36.54688,35.46226,34.34824,33.80666,32.149,31.2791,29.59753,29.58158,27.87313,24.27006,23.51582,22.2675,22.15716,21.88754,21.33781,21.23876,20.65634,19.31552,18.58765,18.32539,16.10788,15.78513,15.12498,14.89997,14.51633,14.48331,14.06259,13.56644,13.51377,12.99795,12.86822,12.72081,12.66305,12.43,11.07935,11.04449,10.8951,9.89195,9.55555,9.3524,8.989850000000002,8.91727,8.91334,8.58558,8.54763,8.54444,8.319000000000003,8.24134,8.22035,8.03576,7.82852,7.78284,7.75703,7.70338,7.61791,7.61465,7.5481,7.51333,7.26641,6.95962,6.91233,6.82781,6.74395,5.90145,5.89186,5.89112,5.87094,5.77269,5.75391,5.10308,5.03208,5.02207,4.89429,4.44613,4.41798,4.22953,3.95525,3.89192,3.89156,3.64178,3.51477,3.08422,2.55405,2.50405,2.26777,2.15023,1.96937,0.75465,0.63401,0.29627,0.00055,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"調布市","values":[35.94963,23.64106,23.33615,21.63037,20.17759,19.93949,19.23408,18.56875,18.53204,17.92284,17.01545,16.26879,16.13861,15.35205,14.28841,14.25917,13.92908,12.73072,11.69353,11.42289,10.77517,10.54996,10.01914,9.48928,8.44563,8.42065,8.38192,7.10659,7.08185,6.89235,6.72473,6.68549,6.51416,6.49206,6.39252,6.34839,6.33847,6.27243,5.84177,5.49886,5.49056,5.45713,5.36285,5.36164,5.31661,5.20088,5.14062,5.13451,5.0726,5.06688,5.00781,4.99535,4.90495,4.85834,4.80202,4.75036,4.74253,4.73354,4.72623,4.69297,4.61307,4.55703,4.38945,4.38154,4.37496,4.358170000000001,4.34853,4.27999,4.1991,4.14525,4.137870000000001,4.09936,4.06291,4.00059,3.92493,3.89978,3.89867,3.86878,3.78672,3.77627,3.7696,3.69996,3.68386,3.64405,3.56101,3.54764,3.54681,3.53118,3.40143,3.38359,3.36417,3.35888,3.33282,3.30933,3.25784,3.22427,3.22056,3.21488,3.18729,3.17918,3.11291,3.10151,3.0604,3.04307,3.02926,3.00955,2.99129,2.97614,2.97485,2.95595,2.95363,2.94937,2.92225,2.90364,2.85908,2.82673,2.80036,2.79609,2.78896,2.77796,2.75457,2.7446,2.71339,2.69681,2.67028,2.66413,2.63645,2.63379,2.62152,2.59896,2.58393,2.56591,2.50043,2.49637,2.49612,2.48233,2.45833,2.34949,2.34696,2.34632,2.33233,2.32787,2.26167,2.25522,2.23373,2.16367,2.13313,2.13096,2.09696,2.08835,2.08092,2.07482,2.05143,2.03613,2.02523,2.00416,2.00291,2.00261,1.96214,1.95768,1.95594,1.94226,1.94073,1.94003,1.91081,1.85443,1.83365,1.82366,1.81006,1.8022,1.79582,1.76667,1.74626,1.7239,1.71861,1.71548,1.70806,1.69861,1.69786,1.69123,1.67686,1.67185,1.64014,1.63361,1.63201,1.62493,1.62351,1.6169,1.61521,1.60643,1.5944,1.58905,1.58401,1.55802,1.5472,1.53537,1.51734,1.51361,1.50554,1.4983,1.45494,1.43104,1.426,1.41678,1.3964,1.37551,1.35894,1.34274,1.33355,1.28971,1.28796,1.27478,1.25851,1.24073,1.23175,1.21793,1.21102,1.20997,1.18615,1.16431,1.15968,1.1569,1.14435,1.14363,1.13219,1.09696,1.08158,1.06874,1.05782,1.05612,1.05566,1.04091,1.0334,1.03137,1.01411,1.01137,1.00692,0.99701,0.99331,0.97577,0.95277,0.94764,0.94315,0.94038,0.93667,0.90641,0.90259,0.90207,0.89725,0.8929,0.87586,0.86232,0.85381,0.83498,0.79231,0.77587,0.7714,0.75733,0.75337,0.74074,0.72855,0.71426,0.70939,0.69453,0.69074,0.68491,0.68203,0.66713,0.63571,0.61599,0.61378,0.5668,0.54275,0.52745,0.50783,0.50341,0.47107,0.4516,0.44859,0.44731,0.44522,0.43954,0.43395,0.41041,0.39454,0.39404,0.39353,0.39314,0.38802,0.35911,0.35819,0.31203,0.30522,0.29895,0.25496,0.232,0.19722,0.15708,0.14567,0.14246,0.11244,0.10063,0.07449,0.06733,0.0658,0.05358,0.05321,0.04857,0.04007,0.03684,0.03549,0.01531,0.00807,0.0034,0.00053,0.00041,0.0004,0.00039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"三鷹市","values":[29.54088,28.47853,24.52222,23.51848,23.22847,20.40682,17.74713,17.73225,17.44704,17.37892,17.30123,16.0036,15.31546,14.92258,14.78187,14.65323,14.59921,14.04997,13.96117,13.65516,12.81926,12.32512,12.21076,11.62353,11.50702,11.39153,11.1564,11.13062,10.86288,10.85287,10.31263,10.30934,10.06093,9.38537,9.36509,8.8661,8.09672,8.05681,7.36236,7.09317,7.07692,6.81508,6.75867,6.57855,6.3256,6.31047,5.93783,5.8953,5.79706,5.51873,5.3432,5.31441,5.28162,4.95633,4.9511,4.94168,4.85225,4.77362,4.63107,4.58749,4.57819,4.53552,4.51352,4.51111,4.37618,4.31103,4.25227,4.19895,4.13829,4.03297,3.98355,3.85332,3.79462,3.70097,3.61384,3.4659,3.42398,3.32158,3.30706,3.19176,3.19134,3.14752,3.13108,3.03122,2.98871,2.9754,2.93466,2.9216,2.88641,2.87265,2.78937,2.78722,2.70904,2.64774,2.63829,2.58673,2.56683,2.48266,2.46657,2.42802,2.39647,2.38327,2.35677,2.3206,2.29407,2.27851,2.23195,2.22476,2.17983,2.17143,2.1135,2.10222,2.05845,2.05359,2.0164,1.97393,1.96382,1.94867,1.94479,1.90459,1.8935,1.8192,1.81486,1.80414,1.77413,1.73889,1.73636,1.6846,1.68003,1.64379,1.64302,1.62478,1.60703,1.56763,1.56621,1.56477,1.53977,1.51916,1.4935,1.47531,1.4697,1.42743,1.41544,1.41076,1.41018,1.39867,1.37468,1.37432,1.36419,1.35342,1.31581,1.31489,1.30399,1.29589,1.29499,1.28394,1.27627,1.25509,1.23626,1.22897,1.21566,1.21408,1.2074,1.20027,1.16511,1.15842,1.13175,1.12147,1.09643,1.09478,1.06946,1.05265,1.0334,1.02665,1.00788,0.99248,0.97455,0.97163,0.97148,0.94888,0.93578,0.9344,0.91616,0.888,0.86915,0.84502,0.83683,0.83648,0.83392,0.83059,0.82954,0.82787,0.81546,0.81546,0.81221,0.80379,0.80049,0.78772,0.78419,0.78125,0.76412,0.75799,0.75616,0.75541,0.75405,0.73996,0.71862,0.70301,0.69861,0.69337,0.64626,0.6117,0.6111,0.59917,0.58689,0.5819,0.56774,0.56178,0.55218,0.54874,0.53975,0.51909,0.49302,0.47806,0.46791,0.46221,0.32998,0.31405,0.31323,0.25647,0.25254,0.25134,0.23756,0.21119,0.2023,0.19425,0.18174,0.17802,0.17359,0.1709,0.14687,0.14231,0.13989,0.1375,0.1322,0.09241,0.09047,0.06918,0.05441,0.04335,0.04065,0.03967,0.01169],"total":0},{"name":"所属未定地","values":[0.00144,0.0014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"あきる野市","values":[5.23282,4.93769,4.40939,3.91188,3.5934,3.31015,3.21368,3.18571,3.16009,3.15346,3.07115,2.9246,2.81148,2.6468,2.61376,2.57673,2.5178,2.42001,2.40522,2.33394,2.2845,2.2813,2.11845,1.95632,1.84733,1.80097,1.78325,1.70082,1.69844,1.67111,1.64356,1.62976,1.61243,1.60233,1.51375,1.47854,1.44348,1.43704,1.43502,1.43002,1.3631,1.35766,1.32764,1.30322,1.3008,1.14522,1.14214,1.13327,1.08646,1.08522,1.0742,1.05877,1.05711,1.02597,0.99661,0.99298,0.97068,0.95218,0.93706,0.93698,0.9197,0.91103,0.90398,0.88492,0.85889,0.85027,0.83652,0.83565,0.82607,0.81681,0.81665,0.80697,0.80536,0.79584,0.79114,0.78457,0.7819,0.77501,0.7739,0.77089,0.73698,0.72876,0.72284,0.71524,0.70425,0.69155,0.67237,0.65838,0.64405,0.642,0.64042,0.63917,0.62483,0.6169,0.61399,0.61142,0.60764,0.60565,0.59529,0.58295,0.58222,0.57847,0.5726,0.57222,0.56265,0.56168,0.5616,0.55646,0.5526,0.54896,0.54439,0.53964,0.5269,0.50702,0.49573,0.49017,0.48669,0.48144,0.48046,0.4682,0.45625,0.45507,0.44762,0.44447,0.4436,0.43969,0.42289,0.40946,0.40633,0.40497,0.40477,0.39958,0.3972,0.39615,0.37839,0.36837,0.36675,0.36437,0.36084,0.35569,0.35535,0.35457,0.34809,0.34776,0.34765,0.34734,0.32938,0.32902,0.32425,0.32413,0.32204,0.3198,0.31746,0.31517,0.31309,0.30803,0.30163,0.29896,0.2983,0.29185,0.27218,0.27204,0.26892,0.26447,0.24629,0.24099,0.23829,0.22809,0.2246,0.2222,0.22076,0.21598,0.19966,0.1937,0.1936,0.1926,0.18649,0.18166,0.18136,0.18135,0.17909,0.17773,0.17669,0.17195,0.17041,0.16984,0.16833,0.16802,0.1675,0.16724,0.16533,0.16496,0.16476,0.1645,0.15914,0.15902,0.15617,0.15613,0.15138,0.15118,0.14989,0.14934,0.14838,0.14268,0.14063,0.13944,0.1387,0.13755,0.13755,0.13472,0.13419,0.13399,0.13366,0.1328,0.13159,0.12878,0.12589,0.12588,0.12497,0.1242,0.12158,0.12052,0.11995,0.1184,0.1179,0.11753,0.11682,0.1161,0.11467,0.11444,0.11337,0.11307,0.11267,0.1122,0.10862,0.1053,0.105,0.10495,0.10264,0.10162,0.10076,0.09531,0.09439,0.09349,0.093,0.0887,0.08751,0.08704,0.08664,0.08642,0.08535,0.08146,0.08141,0.07946,0.07918,0.07696,0.07633,0.07573,0.07569,0.07538,0.07395,0.07361,0.07328,0.07324,0.07284,0.07238,0.07043,0.06877,0.06844,0.0683,0.06788,0.06678,0.06475,0.06437,0.06431,0.06332,0.06303,0.06299,0.06254,0.06166,0.06163,0.05968,0.05957,0.0553,0.05506,0.05393,0.05078,0.04805,0.04773,0.04628,0.04184,0.04146,0.04089,0.04045,0.038,0.03798,0.03765,0.03736,0.03736,0.03735,0.03734,0.03727,0.03674,0.03658,0.03631,0.03612,0.03581,0.03549,0.0352,0.03441,0.03372,0.03369,0.03361,0.03321,0.03315,0.03126,0.03126,0.03059,0.0304,0.02935,0.0293,0.02926,0.02895,0.02706,0.02704,0.02667,0.02661,0.02623,0.02611,0.02602,0.02578,0.02546,0.02536,0.02528,0.02524,0.02524,0.02472,0.02451,0.02393,0.02366,0.02351,0.02284,0.02265,0.02258,0.02252,0.02237,0.02215,0.02199,0.02169,0.02161,0.02125,0.02113,0.02101,0.02086,0.02084,0.01979,0.01964,0.01929,0.01924,0.0178,0.01739,0.01678,0.01559,0.01516,0.01511,0.01492,0.01458,0.01426,0.01422,0.01414,0.01392,0.01387,0.0131,0.01286,0.01252,0.01242,0.0123,0.01201,0.01186,0.0118,0.01168,0.01168,0.01167,0.01136,0.01121,0.01114,0.01111,0.01068,0.01042,0.01042,0.01014,0.01012,0.00935,0.00924,0.00883,0.00878,0.00851,0.0085,0.00767,0.00766,0.00699,0.00698,0.00681,0.00654,0.00587,0.00579,0.00573,0.00571,0.00553,0.00546,0.00544,0.0054,0.00518,0.00501,0.00498,0.00498,0.00498,0.00461,0.00437,0.00436,0.00436,0.00431,0.00422,0.00422,0.00422,0.0042,0.00419,0.00405,0.00396,0.00396,0.00371,0.00366,0.00342,0.00335,0.00332,0.00327,0.00326,0.00318,0.00294,0.00292,0.00276,0.00276,0.00271,0.00268,0.00265,0.00249,0.00249,0.00242,0.00236,0.00233,0.0023,0.0023,0.00212,0.0021,0.00207,0.00206,0.00206,0.00188,0.00185,0.0017,0.00169,0.00161,0.00157,0.00157,0.00156,0.00145,0.00145,0.00144,0.00142,0.0014,0.00134,0.0013,0.00128,0.00127,0.00126,0.00123,0.00114,0.00112,0.0011,0.00109,0.00107,0.001,0.00098,0.00092,0.0009,0.0009,0.00088,0.00083,0.00082,0.00081,0.0008,0.0008,0.0008,0.0008,0.00079,0.00079,0.00078,0.00074,0.00074,0.00073,0.00072,0.0007,0.00066,0.00062,0.00061,0.00061,0.00059,0.00057,0.00057,0.00043,0.00039,0.00036,0.00035,0.00035,0.00033,0.00032,0.00032,0.0003,0.00029,0.00028,0.00028,0.00027,0.00026,0.00026,0.00025,0.00022,0.00021,0.00019,0.00018,0.00018,0.00016,0.00015,0.00013,0.00012,0.00012,0.00012,0.00011,0.00008,0.00008,0.00007,0.00007,0.00007,0.00006,0.00006,0.00006,0.00006,0.00006,0.00005,0.00005,0.00004,0.00004,0.00004,0.00004,0.00003,0.00003,0.00003,0.00003,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"日の出町","values":[1.21885,1.02856,0.86044,0.70677,0.67224,0.63008,0.62183,0.49444,0.46855,0.46452,0.46089,0.39538,0.37584,0.32471,0.32432,0.31743,0.29837,0.28411,0.27141,0.27096,0.26986,0.25313,0.24339,0.23094,0.22742,0.20938,0.20747,0.16738,0.1599,0.13127,0.12922,0.12373,0.11511,0.10525,0.10503,0.10465,0.10185,0.09937,0.08689,0.0855,0.0769,0.07501,0.07264,0.0673,0.0673,0.06423,0.06389,0.05522,0.05095,0.04868,0.04716,0.04598,0.04482,0.04388,0.04109,0.03977,0.039,0.03856,0.03808,0.03598,0.0355,0.03496,0.03297,0.03149,0.03126,0.03062,0.03036,0.03005,0.02901,0.02765,0.0274,0.02689,0.0261,0.02557,0.02369,0.02233,0.02195,0.02176,0.02128,0.02011,0.02008,0.02001,0.01976,0.01973,0.01924,0.01881,0.01783,0.01783,0.01752,0.01746,0.0159,0.01571,0.01569,0.0152,0.01471,0.01437,0.01308,0.01246,0.0115,0.01142,0.01023,0.00991,0.00961,0.00931,0.00906,0.00886,0.00854,0.00818,0.0081,0.00799,0.00797,0.00788,0.0078,0.00758,0.00747,0.00747,0.00716,0.00711,0.00696,0.00674,0.00671,0.00617,0.00592,0.00585,0.00583,0.00572,0.00557,0.00546,0.00514,0.00476,0.00472,0.00464,0.00446,0.0043,0.0041,0.00406,0.00404,0.00397,0.00397,0.00394,0.00362,0.00357,0.00348,0.00341,0.00331,0.00325,0.00325,0.00313,0.00299,0.0029,0.00269,0.00263,0.00248,0.00235,0.00229,0.00224,0.00214,0.00201,0.00197,0.0019,0.00187,0.00186,0.00167,0.00162,0.00144,0.00136,0.00134,0.00132,0.00129,0.0011,0.00101,0.00093,0.00084,0.00073,0.00067,0.00066,0.00066,0.00063,0.00063,0.00062,0.0006,0.00059,0.0004,0.00033,0.00033,0.00033,0.00032,0.00028,0.00026,0.00022,0.00021,0.00016,0.00016,0.00015,0.00015,0.00014,0.00014,0.00014,0.00012,0.00011,0.00011,0.00009,0.00009,0.00009,0.00008,0.00007,0.00007,0.00007,0.00006,0.00006,0.00006,0.00005,0.00005,0.00005,0.00005,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"昭島市","values":[2.31459,1.62246,1.61904,1.4644,1.43256,1.35131,1.2974,1.24918,1.24844,1.22761,1.21481,1.12652,1.08303,1.04245,1.03727,1.02349,0.97229,0.96307,0.95482,0.9471,0.93435,0.84466,0.82093,0.80147,0.79995,0.78687,0.78101,0.76417,0.76044,0.76017,0.7574,0.75402,0.74855,0.74362,0.70978,0.6836,0.66002,0.65767,0.63558,0.60379,0.60185,0.59941,0.59443,0.58816,0.57379,0.56872,0.56428,0.54539,0.539,0.53277,0.53197,0.52166,0.5143,0.49567,0.4922,0.48299,0.47181,0.46219,0.46165,0.45183,0.44366,0.43032,0.42824,0.42595,0.40825,0.40031,0.36817,0.3632,0.36201,0.36135,0.35987,0.34014,0.33922,0.3343,0.33143,0.32834,0.32604,0.32584,0.32121,0.3155,0.30263,0.29861,0.29195,0.29053,0.28757,0.28703,0.28339,0.27479,0.27378,0.26613,0.26131,0.24661,0.24585,0.22798,0.22749,0.22693,0.22648,0.20616,0.20086,0.19598,0.193,0.19255,0.18851,0.18762,0.18562,0.18341,0.18123,0.1805,0.17931,0.17917,0.17845,0.17805,0.17356,0.17231,0.16988,0.16854,0.16748,0.15913,0.15685,0.15447,0.15414,0.15173,0.14919,0.14841,0.14799,0.14766,0.14688,0.14634,0.14397,0.14312,0.14042,0.14031,0.13858,0.13821,0.13308,0.13106,0.13004,0.12758,0.12481,0.12441,0.12284,0.11986,0.11908,0.11584,0.115,0.11324,0.1094,0.10336,0.10284,0.10081,0.0999,0.09873,0.09761,0.09577,0.09364,0.09283,0.09078,0.08812,0.08779,0.08651,0.08603,0.08588,0.0843,0.08352,0.08284,0.08197,0.0775,0.07631,0.0741,0.07397,0.06914,0.0689,0.06826,0.0681,0.06534,0.06299,0.06147,0.06128,0.06079,0.06055,0.05795,0.05668,0.05543,0.05018,0.05015,0.04768,0.04716,0.04306,0.04169,0.03858,0.0379,0.03731,0.03577,0.03479,0.03375,0.03207,0.02698,0.02686,0.02489,0.02451,0.02416,0.02209,0.02181,0.02174,0.02173,0.02097,0.02039,0.01947,0.01777,0.01716,0.01706,0.01513,0.01455,0.0139,0.01367,0.01023,0.01023,0.00993,0.00935,0.00935,0.00818,0.00742,0.00682,0.0065,0.00547,0.00487,0.00376,0.00281,0.00265,0.00217,0.00205,0.00174,0.00166,0.0008,0.00033,0.00029,0.00023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"福生市","values":[0.84958,0.83111,0.79698,0.78899,0.61078,0.5884,0.56607,0.53043,0.49578,0.46961,0.44309,0.39529,0.39014,0.38956,0.38811,0.38575,0.38085,0.35522,0.35058,0.34465,0.34118,0.33414,0.32804,0.3123,0.29516,0.28738,0.28136,0.26125,0.25757,0.24591,0.23558,0.2292,0.22042,0.22024,0.21295,0.21235,0.2123,0.20663,0.1993,0.19645,0.19609,0.19134,0.18252,0.1781,0.17744,0.17625,0.17503,0.17189,0.17078,0.16784,0.1643,0.14395,0.13588,0.13001,0.12841,0.12711,0.12673,0.11829,0.11712,0.11543,0.11538,0.11354,0.10887,0.10593,0.10342,0.10052,0.09892,0.09392,0.09388,0.09191,0.09031,0.08941,0.08799,0.08596,0.08334,0.08269,0.08142,0.07252,0.06974,0.06966,0.06857,0.0678,0.06558,0.06398,0.06349,0.06106,0.05945,0.05891,0.05685,0.05684,0.05459,0.05127,0.04962,0.04803,0.04566,0.04442,0.0426,0.04158,0.04069,0.03689,0.03674,0.03517,0.03459,0.03256,0.03126,0.0286,0.02827,0.02818,0.02538,0.02516,0.02435,0.024,0.02116,0.02067,0.01874,0.01808,0.01737,0.01707,0.0161,0.01521,0.01497,0.01497,0.01466,0.01345,0.01318,0.01294,0.01145,0.01125,0.00937,0.00838,0.00775,0.00751,0.00733,0.00668,0.00656,0.00569,0.00489,0.00482,0.00375,0.00324,0.00226,0.00188,0.00065,0.00048,0.0004,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"立川市","values":[4.91427,4.354510000000001,4.26352,3.8059,3.72068,3.58122,3.09123,2.36214,2.2275,2.14237,2.13766,2.13383,2.07221,2.01316,2.00494,1.97281,1.94717,1.94068,1.92395,1.91582,1.85223,1.80612,1.80161,1.62714,1.60891,1.58264,1.5797,1.55624,1.52147,1.46764,1.45982,1.42125,1.32257,1.31837,1.29506,1.2748,1.26252,1.20244,1.18835,1.17781,1.16258,1.13367,1.11681,1.08293,1.07508,1.06621,1.06186,1.04819,1.04564,1.02144,0.98609,0.95776,0.92502,0.92443,0.90699,0.90638,0.88451,0.88437,0.86694,0.82775,0.82672,0.82467,0.80637,0.80008,0.7929,0.77791,0.76029,0.75751,0.72368,0.71789,0.71099,0.70994,0.70333,0.69554,0.69278,0.67981,0.67911,0.67821,0.6755,0.667,0.65781,0.63863,0.62386,0.62252,0.59018,0.58909,0.58712,0.58534,0.58349,0.57725,0.56675,0.56385,0.56366,0.55935,0.55875,0.53639,0.5273,0.50831,0.50691,0.49707,0.49077,0.49064,0.4826,0.48,0.47281,0.46794,0.46589,0.45431,0.44794,0.44552,0.44271,0.4307,0.39858,0.39249,0.38961,0.38359,0.3775,0.3766,0.37305,0.37193,0.3713,0.36936,0.3637,0.36091,0.35751,0.35508,0.35066,0.34833,0.34653,0.34327,0.33168,0.33162,0.32982,0.3236,0.31931,0.31869,0.31042,0.2827,0.28117,0.27828,0.27473,0.27097,0.26692,0.2659,0.26271,0.25378,0.25135,0.24632,0.24497,0.24331,0.24214,0.2276,0.22424,0.22093,0.22068,0.21591,0.21392,0.21296,0.21234,0.21023,0.20989,0.2085,0.20756,0.20729,0.20644,0.20568,0.20477,0.20467,0.20374,0.20373,0.20092,0.19274,0.19199,0.18903,0.18574,0.18526,0.18499,0.18421,0.17931,0.17749,0.17619,0.17373,0.17273,0.16753,0.1666,0.16627,0.16443,0.15638,0.15464,0.14962,0.14848,0.14738,0.14422,0.1424,0.13604,0.13316,0.12964,0.12947,0.12588,0.12379,0.11712,0.11466,0.11288,0.11246,0.11125,0.1112,0.1084,0.10824,0.10503,0.10197,0.09918,0.09319,0.09298,0.09253,0.09249,0.09142,0.08947,0.08917,0.08859,0.08694,0.08537,0.08107,0.07989,0.07642,0.07606,0.07461,0.07353,0.07342,0.07199,0.07159,0.07149,0.07011,0.06812,0.06809,0.06734,0.06682,0.06448,0.06365,0.06199,0.0601,0.05906,0.05739,0.05717,0.05659,0.05598,0.05587,0.05551,0.05407,0.05319,0.05152,0.05143,0.05004,0.04925,0.04837,0.0478,0.04656,0.04555,0.04405,0.04297,0.0425,0.04208,0.04001,0.03986,0.03953,0.03934,0.03922,0.03858,0.03823,0.03772,0.0372,0.03654,0.03555,0.0349,0.03359,0.0334,0.033,0.03005,0.02906,0.02846,0.02805,0.02714,0.02689,0.02627,0.0259,0.02548,0.02431,0.02422,0.0239,0.02389,0.02355,0.02343,0.02226,0.02171,0.02085,0.01984,0.01982,0.01972,0.01928,0.01906,0.01855,0.01815,0.01779,0.01768,0.01733,0.01645,0.01588,0.0154,0.01472,0.01374,0.01364,0.01356,0.01353,0.01331,0.01253,0.01247,0.01195,0.0107,0.00977,0.00968,0.00919,0.00918,0.00883,0.00882,0.00852,0.00828,0.00759,0.00674,0.00673,0.00648,0.00612,0.00603,0.00597,0.00587,0.00568,0.00537,0.0053,0.00528,0.00479,0.00455,0.00448,0.00445,0.00441,0.00433,0.00431,0.00431,0.00303,0.00303,0.00279,0.00276,0.00268,0.00226,0.00208,0.00191,0.00156,0.00152,0.00111,0.00079,0.00073,0.00068,0.00058,0.00032,0.00018,0.00001,0.00001,0,0,0,0,0,0,0,0,0],"total":0},{"name":"武蔵村山市","values":[9.69893,5.69488,5.15888,3.98514,3.41485,3.28557,3.13673,3.12518,2.96846,2.45951,2.0132,1.97565,1.63115,1.59974,1.54723,1.47841,1.13527,1.10222,1.08815,1.05196,1.03841,1.00638,0.97666,0.95771,0.75502,0.75125,0.72664,0.61126,0.60514,0.60415,0.53178,0.5296,0.51413,0.50856,0.48559,0.4748,0.44979,0.44681,0.44627,0.4439,0.42723,0.40802,0.39316,0.39213,0.39187,0.34255,0.33051,0.32865,0.32572,0.31432,0.31385,0.31065,0.30284,0.29881,0.29276,0.29177,0.28059,0.27874,0.26885,0.26343,0.26242,0.25997,0.25591,0.25207,0.25085,0.24912,0.24362,0.23368,0.23003,0.22405,0.22404,0.22131,0.22121,0.21976,0.21937,0.21718,0.20985,0.20283,0.20161,0.20014,0.19769,0.1953,0.1939,0.19168,0.18449,0.18426,0.17778,0.17716,0.17467,0.17464,0.17161,0.16996,0.16829,0.15962,0.15835,0.15245,0.14019,0.1395,0.13632,0.13589,0.12884,0.12734,0.12573,0.12562,0.12422,0.12402,0.12312,0.12298,0.11169,0.10982,0.10643,0.10621,0.10573,0.10491,0.10473,0.10229,0.10163,0.10051,0.09883,0.09825,0.09464,0.09417,0.09102,0.08948,0.08644,0.08626,0.08622,0.08572,0.08414,0.08108,0.07567,0.07557,0.07511,0.07383,0.07362,0.07288,0.07136,0.0712,0.06984,0.06618,0.06589,0.06572,0.05749,0.05662,0.05532,0.05253,0.05242,0.05208,0.0517,0.0514,0.0513,0.05093,0.05029,0.0502,0.04971,0.04872,0.04753,0.04552,0.04543,0.04427,0.0428,0.04219,0.03879,0.03788,0.0378,0.03695,0.03514,0.03507,0.03471,0.03245,0.02913,0.02729,0.02717,0.02648,0.02399,0.02345,0.02329,0.02322,0.02168,0.01965,0.01938,0.01527,0.01475,0.01353,0.01218,0.01175,0.01137,0.01032,0.00876,0.00757,0.00738,0.00701,0.00655,0.0054,0.0051,0.00499,0.00475,0.00466,0.00361,0.00323,0.00316,0.0031,0.0029,0.00288,0.00275,0.00244,0.00239,0.00197,0.00171,0.00158,0.00147,0.00102,0.00098,0.00084,0.00061,0.00049,0.0004,0.00024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"羽村市","values":[3.30681,1.33462,1.33453,1.30768,1.29059,1.25266,1.23296,1.21808,1.12213,1.1152,1.11312,1.0724,1.04513,1.02252,1.00874,1.00051,0.9788,0.96838,0.81244,0.80704,0.8052,0.767,0.72245,0.71191,0.70644,0.70527,0.68138,0.64989,0.64803,0.63281,0.61704,0.6132,0.60259,0.58751,0.57443,0.55781,0.55156,0.55098,0.53088,0.52176,0.5086,0.45827,0.44543,0.43865,0.43414,0.41962,0.41654,0.41215,0.41209,0.38529,0.38221,0.3777,0.37471,0.36363,0.34751,0.33838,0.33566,0.3356,0.32033,0.31946,0.30562,0.28972,0.26987,0.25554,0.24236,0.24073,0.24067,0.23685,0.23287,0.21786,0.20419,0.19277,0.18565,0.18461,0.18324,0.17619,0.17304,0.16935,0.16498,0.16489,0.15794,0.1546,0.14899,0.14191,0.13187,0.12217,0.11336,0.10287,0.10285,0.09876,0.09795,0.09457,0.09273,0.08864,0.08819,0.08523,0.08098,0.07883,0.07809,0.07443,0.07387,0.06909,0.06502,0.06404,0.06341,0.06303,0.06204,0.05737,0.05661,0.05398,0.05204,0.0505,0.05044,0.04828,0.044,0.03977,0.03789,0.03675,0.03129,0.02929,0.02926,0.02915,0.02757,0.02748,0.02666,0.02643,0.02373,0.02371,0.02292,0.02279,0.01905,0.01802,0.01759,0.01754,0.01568,0.01241,0.0114,0.01121,0.0107,0.00952,0.00851,0.00803,0.00769,0.00574,0.00547,0.00389,0.00282,0.00255,0.00215,0.00036,0],"total":0},{"name":"瑞穂町","values":[0.68352,0.36835,0.36638,0.35933,0.34126,0.33776,0.32006,0.30315,0.29419,0.29283,0.28607,0.28455,0.26425,0.26394,0.25615,0.24275,0.21649,0.19858,0.19394,0.17811,0.17415,0.16764,0.16654,0.16048,0.15766,0.15746,0.15325,0.15081,0.14784,0.13967,0.13434,0.12846,0.12548,0.1221,0.12024,0.11892,0.11565,0.11545,0.11499,0.1123,0.11,0.10266,0.09427,0.09325,0.08603,0.0859,0.08539,0.08524,0.08499,0.08463,0.08314,0.08194,0.08142,0.07908,0.07727,0.07662,0.07639,0.07495,0.07339,0.06971,0.06881,0.06814,0.06798,0.06673,0.06426,0.06363,0.06352,0.06316,0.0603,0.05748,0.05542,0.05511,0.05391,0.05186,0.05173,0.05082,0.05049,0.04696,0.04692,0.04687,0.04396,0.04345,0.04242,0.04216,0.04024,0.03919,0.03748,0.03593,0.03456,0.034,0.03355,0.03332,0.03273,0.0318,0.02995,0.02975,0.02921,0.02886,0.02886,0.02667,0.02666,0.02587,0.02533,0.0249,0.02482,0.02469,0.02378,0.02271,0.02194,0.02158,0.02065,0.02064,0.02024,0.01994,0.01966,0.01949,0.01932,0.01926,0.01731,0.01697,0.01546,0.01525,0.01482,0.0148,0.01444,0.01441,0.01428,0.01359,0.01318,0.01295,0.01283,0.01283,0.01276,0.01251,0.01251,0.01245,0.01234,0.01218,0.01192,0.01188,0.01165,0.01105,0.01082,0.01054,0.01052,0.0101,0.00983,0.00967,0.00908,0.00888,0.00886,0.0076,0.00734,0.00724,0.00703,0.00655,0.00649,0.00635,0.00592,0.00575,0.00568,0.00548,0.0054,0.00503,0.0049,0.00479,0.00466,0.0045,0.00441,0.00424,0.00424,0.0041,0.00409,0.00399,0.00374,0.00346,0.00336,0.00316,0.00312,0.00293,0.00271,0.00253,0.00229,0.00165,0.00159,0.00158,0.00155,0.00146,0.00134,0.00132,0.00131,0.00108,0.00107,0.00104,0.0009,0.00089,0.00084,0.00081,0.00077,0.00074,0.00074,0.00067,0.00059,0.00049,0.00043,0.00037,0.00033,0.00032,0.00026,0.00026,0.00024,0.00022,0.00021,0.0002,0.00011,0.00011,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"国立市","values":[11.86729,11.48177,11.12616,10.05825,8.89199,8.458740000000002,8.273350000000002,7.80428,7.78337,7.33869,5.76815,5.72263,5.07288,5.03311,4.982,4.363450000000001,4.21408,4.07991,3.77338,3.77109,3.67046,3.56517,3.43379,3.33385,3.20948,2.93783,2.7294,2.59281,2.51333,2.51141,2.18304,2.17573,2.15447,2.11102,2.00858,1.9772,1.8005,1.63525,1.59446,1.55751,1.44825,1.42787,1.36951,1.3602,1.32513,1.18028,1.09787,1.09027,1.06707,1.06558,1.00557,0.80494,0.79979,0.67914,0.65647,0.65518,0.62471,0.61423,0.59373,0.49544,0.48996,0.48912,0.45148,0.4427,0.43998,0.41462,0.35619,0.34306,0.33597,0.31428,0.30935,0.29041,0.28973,0.28579,0.28428,0.28419,0.28254,0.27855,0.27242,0.26218,0.24963,0.24229,0.23159,0.23033,0.22521,0.22483,0.21009,0.20641,0.20514,0.20323,0.19407,0.19177,0.18827,0.18758,0.18229,0.17548,0.15187,0.1297,0.12591,0.12386,0.11923,0.11601,0.10491,0.10443,0.102,0.10157,0.09033,0.07925,0.07912,0.07836,0.07617,0.06883,0.05227,0.04273,0.03803,0.03626,0.03017,0.02852,0.02421,0.02288,0.01816,0.01373,0.01202,0.00988,0.00716,0.00552,0.00511],"total":0},{"name":"国分寺市","values":[14.20883,13.6877,12.80991,10.10719,9.04429,8.09034,7.69519,7.47666,6.60619,6.04046,6.01443,5.97006,5.93707,5.86855,5.84283,5.82401,5.50746,5.34887,5.20724,5.14548,5.04242,4.98153,4.639,4.41749,4.3035,4.28557,4.1899,4.01099,3.8856,3.84613,3.65901,3.5282,3.40861,3.29882,3.22197,3.14423,3.03468,2.97492,2.90783,2.88944,2.85868,2.85335,2.71847,2.67926,2.64809,2.6045,2.54985,2.43937,2.41644,2.38087,2.33188,2.27567,2.24549,2.19729,2.17147,2.12581,2.05125,2.04208,2.03685,1.98763,1.90633,1.78425,1.7276,1.63912,1.62879,1.61613,1.59678,1.57063,1.56286,1.55254,1.55148,1.53143,1.52829,1.51467,1.50699,1.50362,1.50294,1.47307,1.4139,1.38477,1.37719,1.35437,1.34599,1.3091,1.2919,1.26501,1.25907,1.21282,1.20971,1.17943,1.17212,1.17061,1.16782,1.16258,1.15447,1.12756,1.11089,1.10868,1.09043,1.06778,1.05991,1.0366,1.0212,1.01484,1.00503,1.00183,0.99639,0.96507,0.95414,0.93371,0.89399,0.88869,0.78835,0.78774,0.77664,0.7693,0.75429,0.75374,0.71318,0.69046,0.67524,0.65786,0.62597,0.62146,0.61619,0.60609,0.60025,0.56451,0.55371,0.55211,0.54307,0.5362,0.48792,0.47221,0.4578,0.45166,0.41989,0.41766,0.41138,0.40201,0.40174,0.39887,0.39873,0.36665,0.36571,0.3291,0.32677,0.31633,0.30473,0.2953,0.29342,0.29195,0.28554,0.27891,0.24465,0.23153,0.22167,0.20998,0.20919,0.20902,0.19798,0.19769,0.19524,0.19326,0.1921,0.1708,0.16693,0.16545,0.16072,0.14477,0.13183,0.08292,0.07126,0.02197],"total":0},{"name":"小金井市","values":[12.79818,12.54886,12.24668,12.07369,11.691,11.62944,11.20738,10.5947,10.36877,9.84156,9.74414,9.49134,9.45836,8.93135,8.816890000000003,8.58244,8.41869,8.22823,7.94765,7.6243,7.61129,7.58958,6.57605,6.42224,6.38401,6.27789,6.09186,5.95974,5.83747,5.79023,5.67319,5.65609,5.56339,5.42613,5.24229,5.18937,5.16358,5.08878,5.06997,4.94246,4.89063,4.84161,4.83638,4.25571,4.25273,4.20883,4.20005,4.15147,4.08432,3.79119,3.76194,3.66813,3.65516,3.6314,3.60864,3.55378,3.52313,3.52029,3.51636,3.4036,3.37147,3.34695,3.24022,3.178,3.15045,3.1405,3.12522,3.11211,3.01577,2.97986,2.90125,2.84712,2.83204,2.80481,2.79326,2.79273,2.73991,2.73127,2.62649,2.53697,2.4471,2.38103,2.37249,2.36338,2.35535,2.35324,2.31037,2.29604,2.16638,2.13114,2.08849,2.00449,2.00175,1.87909,1.79887,1.79449,1.767,1.74383,1.73838,1.71377,1.69219,1.69146,1.65136,1.5366,1.48806,1.47856,1.43585,1.42632,1.40975,1.40431,1.35359,1.32866,1.32624,1.31623,1.31612,1.28637,1.2782,1.23401,1.22226,1.21983,1.21372,1.20451,1.20349,1.10485,1.06104,0.93346,0.90264,0.89115,0.87292,0.84864,0.83721,0.82683,0.80205,0.76271,0.71402,0.7117,0.70542,0.67417,0.64019,0.6167,0.59554,0.50974,0.50703,0.50653,0.50421,0.49804,0.49408,0.48964,0.45013,0.40867,0.38806,0.31671,0.27203,0.2608,0.18967,0.15598,0.15026,0.14438,0.14411,0.13096,0.12748,0.11287,0.07874,0.06943,0.05171,0.03578,0.02723,0.02314,0.01587,0.00063,0,0,0,0],"total":0},{"name":"小平市","values":[7.40109,7.30099,6.87914,6.38033,6.06938,5.94797,5.55147,5.21688,4.96594,4.88842,4.83076,4.82734,4.79779,4.21892,4.132780000000001,4.09613,3.89334,3.88771,3.81511,3.76821,3.74504,3.72405,3.66886,3.41904,3.33015,3.28074,3.24369,3.22773,3.15487,3.11615,3.02412,3.01721,2.98081,2.97006,2.92465,2.90877,2.76431,2.73426,2.6579,2.59169,2.56224,2.5245,2.4585,2.45638,2.4189,2.40996,2.38352,2.37631,2.34913,2.2758,2.18817,2.1626,2.14617,2.08724,2.0693,1.99857,1.94881,1.88961,1.88064,1.87653,1.84082,1.83286,1.83188,1.83171,1.81936,1.71731,1.692,1.6565,1.65318,1.59881,1.58262,1.56155,1.54899,1.51593,1.5,1.48553,1.47764,1.46089,1.45803,1.45478,1.45015,1.4485,1.43727,1.4354,1.43449,1.40196,1.36635,1.36362,1.35356,1.34181,1.33783,1.33491,1.32588,1.31419,1.31177,1.3116,1.31042,1.30721,1.28915,1.27193,1.1999,1.19862,1.18716,1.18293,1.15571,1.13215,1.12931,1.12761,1.09492,1.0722,1.04898,1.04896,1.04818,1.02721,1.01473,1.01115,1.00903,0.99593,0.98122,0.97408,0.97378,0.9558,0.95253,0.9421,0.93666,0.91516,0.9087,0.9058,0.89286,0.88982,0.88832,0.8555,0.83442,0.82678,0.8134,0.79751,0.79534,0.79043,0.7884,0.77705,0.77647,0.77475,0.77378,0.7641,0.75443,0.74564,0.70616,0.70257,0.69352,0.68075,0.6724,0.66603,0.65622,0.65551,0.6552,0.64526,0.63176,0.63154,0.63152,0.63107,0.62809,0.62581,0.61561,0.61002,0.60357,0.60312,0.59773,0.59479,0.59229,0.59207,0.59132,0.58401,0.56697,0.56172,0.55904,0.55156,0.5487,0.54504,0.53811,0.53777,0.53645,0.53422,0.53368,0.52834,0.52334,0.51846,0.51583,0.51461,0.50518,0.50019,0.49997,0.48518,0.48426,0.48192,0.47999,0.47696,0.47682,0.47275,0.46754,0.45597,0.43914,0.43852,0.4249,0.41824,0.4146,0.41384,0.39513,0.39036,0.38934,0.38882,0.3864,0.38199,0.38093,0.37886,0.37261,0.37239,0.37228,0.37155,0.37035,0.363,0.35743,0.34812,0.34715,0.34552,0.34269,0.34043,0.33446,0.32906,0.32798,0.32572,0.32364,0.32161,0.32109,0.31721,0.31316,0.31251,0.31221,0.30147,0.29608,0.29604,0.29306,0.28081,0.27743,0.27207,0.25834,0.25477,0.23995,0.23638,0.23438,0.23405,0.233,0.23077,0.2296,0.22454,0.22222,0.22213,0.20376,0.19786,0.19783,0.19507,0.19264,0.18843,0.17723,0.16967,0.16864,0.16825,0.1638,0.1577,0.14948,0.1487,0.14388,0.14362,0.14287,0.1391,0.13635,0.13514,0.13136,0.12652,0.12514,0.12488,0.12147,0.11988,0.11493,0.11182,0.11093,0.10651,0.10547,0.10446,0.09328,0.09032,0.0867,0.08533,0.0836,0.07992,0.07865,0.07579,0.06389,0.06197,0.05544,0.05511,0.05387,0.04543,0.04134,0.04063,0.03775,0.03648,0.03585,0.03158,0.03055,0.02568,0.02206,0.02049,0.00661,0,0,0],"total":0},{"name":"東大和市","values":[2.26886,1.80575,1.66216,1.59121,1.31885,1.20062,1.09176,1.07199,1.01252,0.98167,0.9788,0.97651,0.96344,0.96214,0.89468,0.8925,0.87235,0.86906,0.8485,0.81552,0.78131,0.77861,0.76918,0.75327,0.70339,0.70311,0.67746,0.67204,0.65806,0.65734,0.64855,0.63647,0.6352,0.63388,0.63193,0.63013,0.62704,0.62425,0.61844,0.58835,0.58723,0.57689,0.57524,0.56267,0.54135,0.53806,0.53574,0.5285,0.52435,0.52354,0.51897,0.51253,0.49744,0.47437,0.46396,0.46395,0.44756,0.4472,0.44511,0.44488,0.44431,0.43784,0.43734,0.43633,0.43517,0.41473,0.40695,0.39576,0.38938,0.37959,0.37768,0.36221,0.36054,0.34652,0.34594,0.33474,0.32196,0.31406,0.31021,0.30602,0.29693,0.27948,0.27909,0.27643,0.27327,0.27319,0.26709,0.26222,0.26169,0.25033,0.24693,0.24246,0.23335,0.22946,0.22401,0.22368,0.22279,0.21782,0.2161,0.21516,0.21019,0.20943,0.20768,0.2061,0.20518,0.2036,0.19987,0.19679,0.1944,0.19269,0.19087,0.18647,0.17911,0.17705,0.16741,0.16452,0.16276,0.16114,0.15301,0.14846,0.14455,0.13338,0.13166,0.12393,0.12299,0.11616,0.10745,0.10315,0.09417,0.09179,0.08656,0.08177,0.0728,0.07225,0.06988,0.06695,0.06263,0.06187,0.05978,0.05635,0.05521,0.05439,0.05353,0.04544,0.04363,0.04226,0.04208,0.0393,0.0356,0.034,0.03374,0.03369,0.02743,0.0251,0.02466,0.02162,0.021,0.02057,0.01804,0.01504,0.01344,0.00969,0.00865,0.00801,0.00288,0.00275,0.00228,0.00023,0.00003,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"東村山市","values":[3.29261,3.25911,3.19806,3.01135,2.2414,2.11191,1.9997,1.94394,1.90139,1.8574,1.83497,1.80046,1.72394,1.66576,1.62576,1.55875,1.54463,1.53167,1.51399,1.4943,1.47463,1.43625,1.20902,1.20095,1.1952,1.19476,1.18055,1.15643,1.13684,1.12024,1.1188,1.1147,1.11082,1.09891,1.08779,1.03354,1.01721,0.99696,0.9816,0.97087,0.96328,0.95779,0.95434,0.93131,0.93101,0.90827,0.89553,0.89011,0.88046,0.87909,0.86788,0.85831,0.85741,0.83628,0.8354,0.83411,0.82228,0.82155,0.81908,0.80511,0.80125,0.78547,0.77587,0.76399,0.75544,0.74891,0.73955,0.73879,0.73807,0.73734,0.73036,0.72949,0.7158,0.70473,0.68929,0.65434,0.65255,0.65089,0.62795,0.62385,0.62265,0.61849,0.61249,0.60747,0.59125,0.57829,0.56777,0.56725,0.56375,0.55832,0.54955,0.54878,0.54667,0.54109,0.53957,0.53257,0.52577,0.52399,0.52381,0.51915,0.51407,0.50768,0.50421,0.49311,0.48682,0.48153,0.47782,0.47668,0.46337,0.46079,0.45865,0.45682,0.45612,0.45488,0.44729,0.44256,0.43698,0.43562,0.43419,0.42392,0.41869,0.4122,0.4092,0.40642,0.40511,0.40065,0.39488,0.38406,0.38225,0.3748,0.36898,0.35295,0.34882,0.34562,0.34375,0.34264,0.34241,0.3322,0.33033,0.32518,0.31891,0.31406,0.31018,0.30857,0.30408,0.30334,0.29901,0.29464,0.28875,0.28096,0.27943,0.27917,0.27897,0.27778,0.27644,0.27432,0.27106,0.27092,0.27081,0.26402,0.26236,0.25325,0.2522,0.2519,0.25013,0.24743,0.24008,0.23831,0.23322,0.22887,0.22374,0.22112,0.21691,0.21474,0.21468,0.2121,0.21076,0.20687,0.20461,0.20453,0.20312,0.20089,0.19375,0.19184,0.19171,0.18483,0.18327,0.17131,0.16843,0.16444,0.16187,0.16038,0.15891,0.1586,0.15758,0.15578,0.15416,0.15224,0.15192,0.15168,0.1471,0.14611,0.145,0.14477,0.14138,0.13942,0.13748,0.13466,0.13351,0.13278,0.1324,0.13035,0.12828,0.12504,0.12326,0.11842,0.11596,0.11294,0.11271,0.10827,0.10592,0.10138,0.10066,0.09803,0.09494,0.09261,0.09063,0.08692,0.08465,0.0822,0.07993,0.07386,0.07208,0.07172,0.07059,0.06699,0.06455,0.06393,0.06285,0.06265,0.06155,0.06129,0.06104,0.05944,0.05831,0.05589,0.05562,0.05009,0.04955,0.04868,0.04741,0.04408,0.04114,0.03942,0.03886,0.03758,0.03717,0.03516,0.0321,0.03178,0.01761,0.01507,0.01147,0.00546,0.0045,0.00272,0.0016,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"東久留米市","values":[4.1509,4.14781,3.81832,3.59507,3.58067,3.49658,3.36685,3.30808,3.28586,3.225,3.1367,3.12127,3.08271,3.07454,3.03675,2.98661,2.76617,2.72198,2.51074,2.45934,2.41931,2.4148,2.396,2.31204,2.17289,2.0104,1.99359,1.85259,1.77494,1.72914,1.69341,1.61074,1.58874,1.58547,1.56385,1.52748,1.51304,1.4906,1.48679,1.44124,1.41739,1.40408,1.3805,1.34438,1.3141,1.26875,1.24267,1.21457,1.18672,1.17355,1.14916,1.14824,1.141,1.13563,1.10753,1.04682,0.98602,0.95121,0.94641,0.94015,0.93968,0.9384,0.92576,0.92506,0.91928,0.87856,0.87438,0.86684,0.85934,0.85728,0.829,0.82447,0.79728,0.79373,0.78389,0.7786,0.76754,0.76442,0.75542,0.7536,0.73854,0.71095,0.70174,0.7005,0.68424,0.66746,0.66586,0.665,0.66218,0.65784,0.62821,0.61306,0.60469,0.60454,0.60089,0.58671,0.57047,0.56486,0.56363,0.56066,0.55464,0.54467,0.53637,0.51829,0.5125,0.51114,0.50784,0.50632,0.49404,0.49388,0.48776,0.48572,0.48557,0.48114,0.46238,0.46097,0.4561,0.45387,0.44809,0.44655,0.43433,0.43114,0.4227,0.42257,0.42191,0.42097,0.40671,0.39963,0.39661,0.39077,0.38786,0.38669,0.3843,0.38158,0.37756,0.37126,0.36812,0.36368,0.36226,0.35313,0.35155,0.34447,0.33967,0.33309,0.33184,0.32231,0.3179,0.31415,0.30962,0.30884,0.29998,0.29287,0.29192,0.28956,0.28317,0.28315,0.28199,0.28185,0.27837,0.27769,0.27516,0.27432,0.27385,0.26742,0.2672,0.26227,0.26022,0.25965,0.2556,0.24831,0.24476,0.24367,0.24,0.23719,0.22742,0.22473,0.22447,0.2179,0.21391,0.21012,0.20306,0.20202,0.19978,0.19441,0.18375,0.17824,0.17322,0.16783,0.16296,0.1472,0.14212,0.14091,0.13896,0.12943,0.12885,0.1273,0.11827,0.10584,0.07713,0.07072,0.06103,0.05273,0.04058,0.03946,0.03568,0.03554,0,0,0,0,0,0],"total":0},{"name":"武蔵野市","values":[25.53504,23.87638,22.7458,22.52874,21.6542,21.04046,20.98598,19.96388,19.44507,18.22577,17.63041,17.30106,16.97133,16.78747,16.11509,15.44378,14.14963,12.89458,12.63902,11.09371,11.0429,10.69465,9.9859,9.82376,9.36092,8.95092,8.0665,8.06579,7.91133,7.78767,7.53857,7.48508,6.73484,6.72105,6.38522,6.19144,6.13497,6.00787,5.87375,5.75333,5.60274,4.87169,4.86829,4.66925,4.229580000000001,4.02574,3.91874,3.89223,3.7959,3.79293,3.77906,3.63125,3.55636,3.40904,3.27997,3.27377,3.14944,3.08264,2.91444,2.91311,2.77477,2.48254,2.40576,2.32887,2.31399,2.30738,2.08992,2.06381,2.05827,2.05307,2.00091,1.8031,1.73369,1.54071,1.50042,1.48308,1.47031,1.38445,1.32357,1.22923,1.2268,1.18339,1.17804,1.16818,1.16652,1.14606,1.12656,1.12022,1.09435,1.08075,1.04053,1.02007,0.95584,0.93959,0.93865,0.9378,0.89764,0.86666,0.86635,0.86181,0.77605,0.76321,0.75432,0.74994,0.74718,0.74062,0.73226,0.7146,0.70154,0.68907,0.68568,0.67035,0.64953,0.64908,0.60352,0.57008,0.5186,0.51315,0.50983,0.49711,0.48486,0.47864,0.46435,0.46009,0.45128,0.44406,0.44077,0.44061,0.43384,0.43254,0.43202,0.42965,0.42943,0.41919,0.36305,0.36258,0.35422,0.35322,0.33909,0.33049,0.30948,0.30496,0.3033,0.27577,0.27549,0.25199,0.24784,0.24308,0.22936,0.22584,0.201,0.19993,0.18858,0.16961,0.15732,0.13302,0.13087,0.11835,0.10841,0.10349,0.08815,0.07114,0.04253,0.01927,0,0],"total":0},{"name":"西東京市","values":[17.60897,14.90114,14.71892,12.8625,11.5684,11.10444,10.47321,10.15303,9.92714,9.84943,9.6347,9.56091,9.38209,9.28427,8.96586,8.77742,8.049620000000003,7.68079,7.60197,7.23398,6.93225,6.84718,6.59784,6.09666,6.0251,5.92739,5.79614,5.765,5.52565,5.39947,5.38226,5.32009,5.20715,5.08592,5.08163,5.05012,5.04932,4.94901,4.87674,4.71493,4.39863,4.25413,4.2136,4.19029,4.17058,4.10295,3.88332,3.82519,3.77834,3.7352,3.70153,3.69654,3.54817,3.54081,3.47315,3.44884,3.38255,3.36924,3.35778,3.34257,3.28819,3.25883,3.2152,3.1786,3.12577,3.10533,3.07539,3.03366,3.0329,3.01614,3.01049,2.99973,2.91172,2.86877,2.77576,2.68762,2.68631,2.67325,2.63532,2.61864,2.61472,2.58106,2.56485,2.55718,2.54838,2.54572,2.54359,2.48132,2.42354,2.3785,2.36779,2.33032,2.27139,2.26803,2.23458,2.21733,2.21237,2.20532,2.19507,2.19475,2.19461,2.16094,2.11549,2.10159,2.09457,2.09106,1.9524,1.94786,1.89222,1.85149,1.81577,1.80705,1.77917,1.75237,1.74922,1.74419,1.74379,1.73599,1.7324,1.72473,1.72304,1.71874,1.7004,1.67028,1.6398,1.63347,1.605,1.60257,1.60163,1.58504,1.58072,1.55929,1.55204,1.53264,1.52863,1.5229,1.49557,1.46184,1.43727,1.43617,1.42169,1.40786,1.39686,1.38531,1.36721,1.36526,1.31565,1.27769,1.21295,1.21001,1.20698,1.19903,1.18176,1.17527,1.17473,1.14859,1.14781,1.14521,1.13781,1.11436,1.11276,1.09866,1.08974,1.07812,1.03067,1.02904,1.01214,0.95902,0.95169,0.94071,0.93868,0.93715,0.93268,0.91767,0.90763,0.90107,0.89734,0.89325,0.86759,0.86463,0.83935,0.80375,0.75875,0.75785,0.756,0.7444,0.73973,0.72022,0.70681,0.69751,0.67384,0.67214,0.66378,0.66099,0.66091,0.64866,0.647,0.64674,0.63722,0.62438,0.59903,0.58656,0.57886,0.56218,0.55761,0.52466,0.50034,0.49089,0.49055,0.47927,0.47373,0.4632,0.46003,0.43723,0.43425,0.43227,0.41881,0.41832,0.40934,0.40298,0.40111,0.38951,0.36729,0.35488,0.34554,0.32074,0.31417,0.30012,0.29429,0.26836,0.26604,0.22498,0.21968,0.21631,0.21301,0.20221,0.18923,0.15558,0.10471,0.05492,0.0484,0.02867,0.02291,0.00954,0.00822,0,0],"total":0},{"name":"千代田区","values":[0.09194,0.08455,0.04091,0.03866,0.03609,0.02461,0.02289,0.02088,0.01837,0.01734,0.01557,0.0146,0.01434,0.01425,0.01344,0.0132,0.01247,0.01246,0.01237,0.01088,0.01054,0.00978,0.00953,0.00923,0.00837,0.0083,0.0083,0.00807,0.00796,0.00725,0.00685,0.00628,0.00627,0.00611,0.00585,0.00556,0.00537,0.00531,0.0051,0.00493,0.00481,0.00475,0.00449,0.00437,0.00425,0.00423,0.00413,0.00412,0.00395,0.00384,0.00382,0.00376,0.00373,0.00361,0.00359,0.00358,0.0035,0.00338,0.00331,0.00328,0.00327,0.00326,0.00325,0.00317,0.00313,0.00308,0.00303,0.00299,0.00287,0.00285,0.00284,0.00268,0.00266,0.00265,0.00251,0.00236,0.00235,0.00225,0.00223,0.00221,0.00219,0.00209,0.00207,0.00202,0.00198,0.00187,0.00185,0.00183,0.00182,0.00175,0.00164,0.0016,0.00159,0.00158,0.00153,0.00147,0.0014,0.00132,0.00126,0.00124,0.00123,0.00122,0.00121,0.00103,0.00102,0.00099,0.00098,0.00097,0.00093,0.00092,0.00087,0.00086,0.00084,0.00082,0.0008,0.00077,0.00076,0.00074,0.00068,0.00067,0.00054,0.00054,0.00051,0.00046,0.00043,0.00042,0.00041,0.00039,0.00036,0.00035,0.00031,0.00031,0.00031,0.0003,0.0003,0.00029,0.00029,0.00027,0.00024,0.00023,0.00023,0.00023,0.00022,0.00018,0.00016,0.00011,0.00011,0.00009,0.00009,0.00008,0.00007,0.00007,0.00006,0.00005,0.00004,0.00003,0.00003,0.00003,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0,0,0,0,0,0],"total":0},{"name":"青梅市","values":[0.61093,0.47535,0.45971,0.45068,0.42859,0.42326,0.40357,0.38346,0.38088,0.3723,0.37052,0.3653,0.35859,0.34824,0.34399,0.34226,0.3395,0.33738,0.33734,0.33072,0.33044,0.32811,0.32668,0.32222,0.32022,0.31945,0.31294,0.3109,0.30737,0.30654,0.30361,0.29597,0.29569,0.29289,0.29232,0.28889,0.28842,0.28825,0.28444,0.28428,0.28388,0.28348,0.2814,0.27757,0.2767,0.27446,0.27445,0.27416,0.27312,0.2669,0.26479,0.26254,0.26252,0.26244,0.26021,0.2552,0.2522,0.24946,0.24829,0.2482,0.24764,0.24531,0.24352,0.2433,0.24299,0.24283,0.24263,0.24241,0.24136,0.24044,0.2403,0.24022,0.23921,0.23906,0.23699,0.23627,0.23239,0.2322,0.23154,0.23126,0.22924,0.22907,0.22906,0.22702,0.22563,0.22431,0.22383,0.22181,0.22143,0.2211,0.22014,0.21893,0.21799,0.21719,0.21657,0.2151,0.2143,0.21372,0.21264,0.21233,0.21105,0.21067,0.21044,0.20909,0.20879,0.20674,0.20648,0.20593,0.20574,0.20446,0.20385,0.2035,0.20191,0.20087,0.2007,0.20059,0.19842,0.19837,0.19705,0.19697,0.19637,0.19545,0.19412,0.19403,0.19346,0.19329,0.19297,0.18936,0.18864,0.18746,0.18734,0.18667,0.18594,0.18577,0.18414,0.18268,0.18185,0.18143,0.1804,0.17951,0.17903,0.17851,0.1777,0.17682,0.17644,0.17516,0.17425,0.174,0.1732,0.17228,0.17123,0.17056,0.16695,0.16591,0.16555,0.16415,0.16391,0.16271,0.16122,0.15994,0.15745,0.15698,0.15688,0.15659,0.15647,0.15632,0.15398,0.15356,0.15352,0.15332,0.15296,0.15217,0.15203,0.15202,0.15174,0.15008,0.14956,0.14949,0.14864,0.14844,0.14755,0.14714,0.14674,0.14619,0.14599,0.14557,0.14517,0.14504,0.14461,0.14431,0.14357,0.14324,0.14279,0.14251,0.14179,0.14067,0.13925,0.13913,0.13892,0.13793,0.13538,0.13523,0.13499,0.13407,0.13385,0.13313,0.13193,0.12967,0.12888,0.12886,0.12755,0.12653,0.12464,0.12432,0.12328,0.12297,0.12089,0.11954,0.11843,0.11779,0.11673,0.11639,0.11593,0.1152,0.1145,0.11351,0.11322,0.1127,0.11259,0.11242,0.11235,0.11212,0.11155,0.11085,0.11067,0.11062,0.11037,0.11002,0.10911,0.10886,0.10753,0.10721,0.10636,0.10365,0.10359,0.10299,0.10227,0.10135,0.10115,0.10114,0.10026,0.09958,0.09777,0.09734,0.09702,0.09688,0.09643,0.09554,0.09515,0.09447,0.09434,0.09343,0.09276,0.0916,0.09142,0.09134,0.08943,0.08871,0.08746,0.08727,0.08642,0.08593,0.08506,0.08315,0.08229,0.08163,0.08024,0.07947,0.07931,0.07894,0.07821,0.07759,0.07732,0.07697,0.07648,0.07613,0.07527,0.07476,0.07403,0.07383,0.07354,0.07297,0.0724,0.07226,0.07207,0.07199,0.07048,0.07021,0.07011,0.07006,0.06994,0.06991,0.06964,0.06951,0.0695,0.06885,0.06785,0.06765,0.06701,0.06585,0.06516,0.06478,0.06395,0.06324,0.06232,0.06208,0.06159,0.06148,0.06143,0.06064,0.06016,0.06015,0.05941,0.0593,0.05837,0.05789,0.05773,0.05772,0.05711,0.05685,0.05547,0.05478,0.05449,0.05423,0.05343,0.05321,0.05291,0.05227,0.052,0.05127,0.05056,0.05011,0.04996,0.04991,0.04949,0.04942,0.04932,0.04898,0.04892,0.04876,0.04826,0.04813,0.04608,0.04574,0.0456,0.04554,0.0454,0.04536,0.04453,0.0439,0.04384,0.04382,0.0438,0.04367,0.04311,0.04265,0.04255,0.04255,0.04187,0.04162,0.04117,0.04082,0.04049,0.03932,0.03912,0.03836,0.03804,0.03789,0.03785,0.03737,0.03726,0.03714,0.03705,0.03684,0.03681,0.03664,0.03655,0.03558,0.03552,0.03551,0.03509,0.03472,0.03461,0.03454,0.0345,0.03442,0.03391,0.03388,0.03379,0.0334,0.03338,0.03329,0.03277,0.03227,0.03192,0.03181,0.03143,0.03126,0.03108,0.03098,0.03064,0.02992,0.02942,0.02932,0.02904,0.02864,0.02818,0.0281,0.02781,0.02763,0.02738,0.02725,0.0272,0.02719,0.02707,0.02703,0.0268,0.02666,0.02652,0.02649,0.0264,0.02615,0.02604,0.02598,0.02572,0.0254,0.02537,0.02537,0.02454,0.0243,0.02422,0.02372,0.02354,0.02311,0.02252,0.02249,0.02242,0.02224,0.02214,0.02209,0.02148,0.02139,0.02121,0.02087,0.02068,0.02008,0.02006,0.02005,0.02004,0.02,0.01973,0.01954,0.01927,0.01924,0.01911,0.01892,0.01872,0.01845,0.01833,0.01829,0.01821,0.01819,0.01818,0.01796,0.01794,0.01787,0.01783,0.01776,0.01762,0.01756,0.01754,0.01715,0.01711,0.01697,0.01687,0.01687,0.01643,0.01631,0.01622,0.0162,0.01592,0.01589,0.01586,0.01571,0.01557,0.01541,0.0154,0.01534,0.01533,0.01527,0.01503,0.01495,0.01495,0.01491,0.01455,0.01453,0.01438,0.01404,0.01382,0.01378,0.0137,0.01362,0.01362,0.01347,0.01342,0.01293,0.01267,0.01254,0.01235,0.0123,0.01227,0.01224,0.01222,0.01209,0.01209,0.01197,0.01189,0.01187,0.01186,0.01183,0.01171,0.01147,0.01147,0.01145,0.01144,0.0114,0.01139,0.0107,0.0107,0.01069,0.01063,0.01061,0.01051,0.01049,0.01026,0.00994,0.00986,0.00984,0.00982,0.00976,0.00966,0.00965,0.0096,0.0096,0.00949,0.00941,0.00933,0.00927,0.00918,0.00914,0.00907,0.00898,0.00896,0.00884,0.00874,0.0087,0.00862,0.00862,0.00862,0.00861,0.00848,0.00835,0.00824,0.00813,0.00813,0.00808,0.00807,0.00802,0.00801,0.00776,0.00734,0.00727,0.00725,0.00719,0.00716,0.00706,0.00703,0.00702,0.00697,0.00689,0.00684,0.00678,0.00672,0.00669,0.00669,0.00669,0.00669,0.00669,0.00663,0.00662,0.00645,0.00636,0.00619,0.00618,0.00589,0.00582,0.00573,0.00571,0.00569,0.00568,0.0056,0.00541,0.00536,0.00533,0.00532,0.00524,0.00518,0.00518,0.0051,0.00507,0.00489,0.0048,0.00475,0.00474,0.00474,0.00468,0.00461,0.00454,0.00443,0.00443,0.00432,0.00425,0.00406,0.00404,0.00404,0.00399,0.00396,0.00395,0.00386,0.00357,0.00347,0.00333,0.00326,0.00317,0.00304,0.00299,0.00294,0.00291,0.00287,0.00286,0.00279,0.00276,0.00275,0.00271,0.00267,0.00267,0.00266,0.00252,0.00239,0.00237,0.00234,0.00232,0.00232,0.00232,0.00231,0.00231,0.00224,0.00224,0.00209,0.00208,0.00205,0.00204,0.00203,0.002,0.00199,0.00195,0.00191,0.0019,0.00179,0.00176,0.00169,0.00158,0.00156,0.00155,0.00147,0.00141,0.0014,0.00139,0.00138,0.00129,0.00127,0.00119,0.00116,0.00113,0.00112,0.00112,0.00111,0.00111,0.00105,0.00102,0.001,0.00096,0.00095,0.00095,0.00091,0.00085,0.00083,0.00078,0.00077,0.00077,0.00075,0.00074,0.00073,0.00066,0.00064,0.00063,0.00057,0.00053,0.00053,0.00052,0.00051,0.00048,0.00047,0.00047,0.00047,0.00044,0.00041,0.00041,0.00037,0.00035,0.00035,0.00035,0.00033,0.00033,0.00033,0.00032,0.0003,0.0003,0.0003,0.0003,0.00029,0.00028,0.00028,0.00027,0.00026,0.00024,0.00023,0.00023,0.00022,0.0002,0.0002,0.0002,0.0002,0.0002,0.00019,0.00018,0.00015,0.00015,0.00014,0.00014,0.00014,0.00014,0.00014,0.00013,0.00011,0.00011,0.00011,0.00011,0.0001,0.0001,0.0001,0.0001,0.00008,0.00008,0.00008,0.00007,0.00007,0.00007,0.00007,0.00006,0.00005,0.00005,0.00005,0.00005,0.00005,0.00004,0.00004,0.00004,0.00004,0.00003,0.00003,0.00003,0.00003,0.00003,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"清瀬市","values":[2.32539,2.14781,1.57051,1.52397,1.29447,1.04491,1.00324,0.9973,0.93025,0.85902,0.84769,0.83572,0.81307,0.76149,0.75059,0.74225,0.73157,0.73058,0.71098,0.70453,0.62117,0.62032,0.60742,0.59066,0.58648,0.57792,0.55287,0.55063,0.54338,0.52438,0.51528,0.51475,0.51196,0.50738,0.50237,0.49511,0.48358,0.47545,0.47347,0.46217,0.4246,0.42217,0.41742,0.41647,0.40603,0.39325,0.39076,0.38958,0.37293,0.36712,0.36363,0.3575,0.33238,0.32984,0.32667,0.31758,0.31609,0.31478,0.31458,0.31206,0.29654,0.29616,0.29465,0.28616,0.28372,0.2799,0.27687,0.27674,0.27631,0.25831,0.25181,0.25162,0.24494,0.24341,0.24249,0.23974,0.23955,0.23804,0.23404,0.22869,0.22305,0.22247,0.22003,0.21608,0.2158,0.21505,0.21419,0.20626,0.20563,0.20352,0.203,0.20119,0.20087,0.19779,0.19771,0.18943,0.18779,0.17707,0.17611,0.16563,0.16525,0.16362,0.16218,0.15495,0.15053,0.15042,0.14676,0.14593,0.14048,0.13992,0.13415,0.13291,0.13106,0.12916,0.12856,0.12096,0.12032,0.11972,0.11907,0.11589,0.11512,0.11371,0.10867,0.1083,0.10444,0.09323,0.09173,0.08762,0.08638,0.08485,0.08024,0.07885,0.07769,0.07451,0.07376,0.07243,0.05617,0.05579,0.05536,0.05508,0.05168,0.04938,0.04683,0.04581,0.04575,0.04523,0.0387,0.03713,0.03696,0.0334,0.03083,0.02932,0.02808,0.02519,0.02317,0.02276,0.02178,0.0215,0.02034,0.01957,0.01919,0.01501,0.01301,0.01279,0.00983,0.00939,0.00851,0.00628,0.00201,0.00099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0}]}
\ No newline at end of file
diff --git a/app/src/layers/data/tama-burned-area3.json b/app/src/layers/data/tama-burned-area3.json
new file mode 100644
index 0000000..92a7666
--- /dev/null
+++ b/app/src/layers/data/tama-burned-area3.json
@@ -0,0 +1 @@
+{"list":[{"name":"世田谷区","values":[85.19305,81.78969,78.61838,77.97459,74.67166,73.38841,71.42017,70.09636,67.72995,67.37281,66.52998,66.0542,66.03805,65.64901,65.1698,64.96802,64.85604,64.8405,64.63462,62.7851,62.70494,62.52045,62.30215,60.70299,60.16423,60.09428,59.46144,58.96456,58.51547,58.41909,58.33468,57.75778,57.42823,56.7526,56.50146,56.44239,56.38296,56.29674,56.24815,56.17578,55.96,55.81443,55.78255,55.76115,55.47659,55.08959,54.82108,54.81784,54.62492,54.56133,54.52019,54.50769,54.38341,54.36945,54.26635,54.17252,53.18324,53.09576,52.89713,52.52774,52.40941,52.05123,51.9833,51.14945,51.10125,51.00202,50.95208,50.94168,50.75863,50.74689,50.1814,50.08818,49.86707,49.8283,49.76544,49.73849,49.45455,49.22973,49.21296,48.34193,48.10401,47.93488,47.71674,47.53753,47.48296,47.42687,47.40214,47.34585,47.18951,46.89431,46.44325,46.43613,46.32685,46.32338,46.08832,45.94316,45.38828,45.37865,45.2741,45.23348,45.20582,44.96462,44.95893,44.85447,44.75249,44.32734,44.21848,44.21246,44.08958,44.0157,43.87444,43.83235,43.35359,43.27068,43.15251,42.7796,42.46347,42.34554,42.25993,42.18898,42.15237,41.99341,41.9891,41.94342,41.93892,41.86097,41.64239,41.52526,41.50056,41.35881,41.30137,41.21556,41.03686,41.02873,40.97477,40.94989,40.81322,40.76134,40.47934,40.3782,40.15636,40.04659,39.98295,39.598,39.48413,39.2177,39.20744,39.17573,39.07772,38.97311,38.93202,38.90987,38.61092,38.56602,38.38035,38.33833,38.21054,38.16786,38.13501,38.12591,37.8079,37.61649,37.53126,37.46953,37.35812,37.24062,37.10731,36.99845,36.97777,36.93207,36.84766,36.52631,36.52474,36.44262,36.23756,36.15706,36.11222,36.05793,36.03233,35.89478,35.86421,35.76257,35.75956,35.62278,35.48211,35.43047,35.15415,35.08806,35.00961,34.98538,34.92052,34.82091,34.64701,34.56606,34.45945,34.45441,34.28752,34.28485,34.26235,34.25394,34.25052,34.19555,34.17286,34.16391,34.11184,34.0432,34.02845,33.8652,33.65021,33.63669,33.39894,33.31782,33.31624,33.16939,33.143,33.09528,33.0365,32.83527,32.7489,32.74728,32.66904,32.60442,32.58768,32.53555,32.46343,32.44381,32.35369,32.33387,32.33309,32.31303,32.23472,32.11102,31.94855,31.8901,31.8429,31.79375,31.70046,31.68728,31.56738,31.53162,31.46679,31.40729,31.40433,31.34015,31.32718,31.2408,31.21756,31.21093,31.07791,30.81568,30.74374,30.73973,30.70361,30.68543,30.65473,30.56577,30.38828,30.36656,30.09574,30.09159,30.01455,29.98705,29.86016,29.67254,29.54922,29.41325,29.31036,29.15545,29.07563,29.06446,29.04211,28.97805,28.89714,28.88251,28.84214,28.81367,28.5509,28.46602,28.46045,28.40841,28.33573,28.31331,28.28204,28.2694,28.09487,28.05323,27.7531,27.60985,27.42885,27.41572,27.35992,27.34676,27.1316,27.08162,27.06569,27.01005,26.99456,26.99134,26.90694,26.89481,26.86217,26.84211,26.82375,26.73995,26.65494,26.63739,26.49512,26.49371,26.33889,26.07025,25.8977,25.78753,25.7563,25.74129,25.6099,25.52323,25.51672,25.49802,25.48333,25.43675,25.41048,25.38875,25.38325,25.36521,25.26984,25.17778,25.16827,25.13788,25.01537,24.70476,24.70148,24.60678,24.4117,24.37737,24.30136,24.28879,24.17283,24.16707,24.16527,23.912,23.78529,23.78516,23.68747,23.59194,23.58858,23.39726,23.38417,23.36105,23.28217,23.2812,23.24432,23.22719,23.13126,23.12215,23.02964,22.99256,22.80336,22.58997,22.57456,22.48915,22.37206,22.33617,22.28736,22.27152,22.23083,22.19909,22.1988,22.02953,21.99398,21.94639,21.79508,21.70488,21.68511,21.65689,21.61806,21.37699,21.36983,21.15334,21.11138,21.0974,21.09357,21.02551,21.01021,20.99382,20.91095,20.87533,20.85163,20.80609,20.68164,20.44948,20.37676,20.37661,20.34406,20.30048,20.29613,20.18262,20.14083,20.13642,19.97225,19.932,19.85066,19.81278,19.76622,19.74107,19.72387,19.66513,19.58081,19.5789,19.55996,19.52151,19.50656,19.40897,19.38051,19.35795,19.3334,19.32927,19.23633,19.11969,19.11099,19.07066,18.8221,18.7179,18.66214,18.62216,18.6162,18.57162,18.53276,18.51351,18.47605,18.38828,18.30071,18.211,18.19088,18.18307,18.17444,18.08851,18.02695,17.99746,17.99291,17.94416,17.91162,17.8942,17.76377,17.74685,17.74677,17.74547,17.73447,17.68949,17.65097,17.64039,17.6312,17.59967,17.54861,17.53232,17.50735,17.48139,17.47488,17.27472,17.15146,17.14223,17.0289,16.95557,16.90325,16.84842,16.82992,16.8192,16.81107,16.78826,16.75635,16.73524,16.7313,16.56175,16.47406,16.37681,16.37058,16.32465,16.23664,16.12397,16.0935,16.08038,16.06961,16.05176,16.04497,16.01777,15.95419,15.89438,15.87264,15.84459,15.74711,15.72223,15.6292,15.60758,15.58105,15.57028,15.4243,15.34537,15.25443,15.20614,15.15497,15.05224,14.97013,14.96001,14.91262,14.86258,14.71789,14.70971,14.67196,14.66078,14.63593,14.61877,14.61522,14.57769,14.55989,14.53669,14.51409,14.40533,14.40244,14.37953,14.36384,14.3477,14.34067,14.32425,14.31086,14.28215,14.25819,14.21129,14.21046,14.16557,14.10066,13.99929,13.99577,13.95009,13.93851,13.90502,13.83103,13.81998,13.79768,13.69151,13.65845,13.63906,13.63289,13.63268,13.62167,13.5853,13.58088,13.57994,13.53048,13.50938,13.47991,13.4197,13.41879,13.41173,13.38489,13.37262,13.32153,13.24913,13.24406,13.21471,13.1843,13.14958,13.1281,13.1228,13.07598,13.06915,12.96012,12.94541,12.9045,12.89152,12.86647,12.85767,12.85089,12.78883,12.76046,12.75694,12.73593,12.72206,12.72116,12.69594,12.67385,12.67197,12.65953,12.65631,12.62176,12.59151,12.53379,12.52607,12.50097,12.47609,12.4665,12.4614,12.45604,12.28971,12.28218,12.26706,12.25736,12.24667,12.22908,12.13859,12.08207,11.95413,11.94319,11.91466,11.87325,11.83185,11.82649,11.81871,11.71734,11.70366,11.68967,11.65824,11.64805,11.4683,11.45277,11.40405,11.40338,11.34045,11.3346,11.29346,11.25423,11.16937,11.09734,11.09176,11.01934,10.90474,10.90463,10.89459,10.89456,10.87067,10.73431,10.72725,10.68537,10.68309,10.63803,10.61874,10.60401,10.59992,10.59227,10.58802,10.58583,10.57762,10.53329,10.52853,10.49983,10.44532,10.39251,10.37398,10.35019,10.23197,10.217,10.19635,10.19436,10.13683,10.13035,10.11221,10.1111,10.0813,10.03807,10.03578,9.96065,9.93585,9.93531,9.86249,9.85266,9.78047,9.7198,9.69602,9.68557,9.68219,9.68124,9.67011,9.66607,9.66271,9.6513,9.63199,9.60733,9.60124,9.58524,9.58025,9.57148,9.55879,9.55363,9.5461,9.45664,9.33157,9.32994,9.28196,9.25888,9.18112,9.17759,9.03967,9.01464,9.00038,8.928890000000003,8.892300000000002,8.88234,8.74239,8.71757,8.7095,8.70924,8.59634,8.57084,8.565810000000003,8.562950000000003,8.52019,8.50983,8.463620000000002,8.39585,8.39345,8.2788,8.250170000000002,8.24883,8.24132,8.23415,8.13226,8.13147,8.11368,8.08396,8.036,7.99539,7.97122,7.96857,7.94613,7.94462,7.94373,7.93305,7.92287,7.84185,7.80575,7.75096,7.75036,7.68564,7.67711,7.66504,7.62452,7.44438,7.44308,7.42941,7.40686,7.38905,7.33547,7.31448,7.29258,7.22219,7.1659,7.14142,7.14051,7.11482,7.10723,6.9846,6.95297,6.81653,6.81381,6.75927,6.63063,6.60279,6.55628,6.51194,6.49186,6.45346,6.44145,6.38322,6.3793,6.37015,6.34955,6.24935,6.21419,6.1989,6.14577,6.03809,6.02348,5.89931,5.87404,5.87207,5.81752,5.80177,5.77016,5.733,5.727,5.62447,5.60105,5.51063,5.48315,5.47509,5.43125,5.41078,5.37949,5.33276,5.25184,5.2123,5.13673,5.08693,5.05707,5.02621,5.0214,4.99247,4.92955,4.86384,4.82128,4.68398,4.68396,4.64182,4.46458,4.45915,4.27771,4.27538,4.172900000000001,4.057610000000001,4.04802,3.91292,3.86144,3.83034,3.73688,3.66793,3.64048,3.5898,3.53808,3.53536,3.52345,3.47153,3.42747,3.41231,3.3926,3.27922,3.25646,3.1869,3.15718,3.12012,3.08032,3.05536,2.99355,2.96421,2.82968,2.81183,2.8021,2.80181,2.55599,2.47516,2.19886,2.10988,1.9963,1.95335,1.87528,1.79611,1.77227,1.68686,1.60333,1.58523,1.45498,1.41653,1.39996,1.28602,1.21052,1.12198,1.09069,1.03525,0.99319,0.83144,0.79996,0.79076,0.57335,0.56746,0.54099,0.4667,0.45561,0.44575,0.44469,0.44244,0.35226,0.30892,0.28984,0.28255,0.25219,0.22762,0.13861,0.11585,0.08814,0.01415,0.00018,0.00001],"total":17340},{"name":"練馬区","values":[31.3546,29.79338,29.0173,27.19452,27.1635,26.52632,26.25831,25.32063,23.51471,22.9504,20.90763,20.65972,20.08284,19.95962,19.42686,18.84909,17.82473,17.61192,16.7639,16.20355,15.72946,15.65261,15.17886,14.98452,14.82589,14.40673,14.25025,14.21715,13.8114,13.66439,13.66306,13.36799,13.34607,13.27958,13.27762,13.17891,12.98482,12.96515,12.82311,12.70298,12.69226,12.63674,12.60559,11.89402,11.87504,11.86629,11.84635,11.80369,11.71981,11.71474,11.61636,11.60748,11.59994,11.35475,11.33195,11.32817,11.0996,10.96668,10.90871,10.87016,10.86921,10.71905,10.6333,10.56975,10.48321,10.40324,10.3989,10.39844,10.33529,10.33297,10.22114,10.19463,10.15126,10.15066,10.05956,9.98159,9.86451,9.85732,9.76239,9.74391,9.72702,9.70722,9.69222,9.65119,9.59677,9.52466,9.51165,9.48934,9.4792,9.46845,9.44529,9.42323,9.42017,9.37436,9.30561,9.30455,9.18879,9.1415,9.04266,8.94333,8.91565,8.84759,8.76907,8.750030000000002,8.74879,8.73707,8.66902,8.53964,8.53654,8.48227,8.46863,8.427070000000002,8.42651,8.36333,8.30631,8.24587,8.17193,8.15607,8.129440000000002,8.12736,8.12011,8.08976,8.081250000000002,8.076320000000003,8.04847,8.02061,8.01685,7.99793,7.98976,7.94956,7.94165,7.8877,7.87782,7.84176,7.82426,7.82155,7.81742,7.81177,7.64375,7.56034,7.50052,7.49465,7.49114,7.45643,7.37247,7.33971,7.33675,7.33228,7.31675,7.2869,7.28464,7.28382,7.22862,7.22573,7.19094,7.16544,7.14643,7.04923,7.03866,7.01261,6.96297,6.92666,6.91821,6.87742,6.86331,6.82864,6.81342,6.81139,6.78638,6.77416,6.75725,6.73321,6.73032,6.69842,6.69772,6.69735,6.6841,6.67435,6.65361,6.64598,6.63125,6.61842,6.56966,6.55981,6.54257,6.54131,6.50096,6.488,6.48489,6.46725,6.46172,6.4556,6.4511,6.44746,6.42315,6.41314,6.40966,6.39742,6.39527,6.38956,6.38052,6.35709,6.33293,6.32355,6.30254,6.30251,6.3007,6.23773,6.20831,6.19562,6.17691,6.16418,6.15411,6.15094,6.14958,6.14705,6.14566,6.1391,6.13645,6.12061,6.11178,6.09593,6.08498,6.07829,6.04949,6.04291,6.02696,5.99658,5.99382,5.97002,5.94299,5.9238,5.9066,5.882,5.8628,5.82393,5.8214,5.80606,5.79979,5.79478,5.79268,5.77078,5.76933,5.76221,5.75167,5.74511,5.73732,5.71346,5.67792,5.65797,5.65292,5.64794,5.64483,5.61464,5.61279,5.60597,5.59338,5.57211,5.53226,5.51834,5.50911,5.50777,5.49845,5.49614,5.46644,5.46622,5.46108,5.45442,5.43685,5.4322,5.41746,5.39206,5.39021,5.37048,5.36641,5.34584,5.33738,5.31967,5.31198,5.30862,5.27719,5.27557,5.26649,5.26411,5.25748,5.24312,5.23237,5.22569,5.22073,5.19246,5.18707,5.18271,5.1801,5.16316,5.15304,5.1417,5.13481,5.13338,5.11981,5.11036,5.10165,5.09709,5.08821,5.07799,5.07314,5.06836,5.06035,5.05657,5.05478,5.04275,5.02529,5.01739,5.0068,5.0066,5.00154,5.00132,4.99768,4.98329,4.98147,4.97534,4.95579,4.95115,4.9467,4.93695,4.93543,4.90749,4.89167,4.89026,4.88131,4.8734,4.87164,4.85995,4.83746,4.83361,4.8286,4.81658,4.81303,4.80782,4.80223,4.8007,4.79491,4.78055,4.76568,4.7521,4.74338,4.73216,4.72674,4.72394,4.72059,4.71902,4.66775,4.65729,4.64709,4.64113,4.60402,4.5934,4.59095,4.54463,4.53476,4.53056,4.52401,4.52304,4.49744,4.49,4.48964,4.468860000000001,4.46831,4.45611,4.4445,4.43062,4.42647,4.41667,4.41446,4.40945,4.40855,4.39062,4.387400000000001,4.37498,4.3639,4.362390000000001,4.34183,4.337640000000001,4.31354,4.31164,4.306060000000001,4.304820000000001,4.30091,4.27945,4.26895,4.248840000000001,4.248770000000001,4.24782,4.20183,4.19688,4.17933,4.1677,4.14943,4.14884,4.14441,4.13764,4.12709,4.0762,4.0758,4.07062,4.0562,4.033260000000001,4.024250000000001,4.01913,4.01696,3.98861,3.98061,3.97661,3.95695,3.95445,3.92559,3.91697,3.91215,3.90304,3.89439,3.88389,3.88236,3.88209,3.85777,3.8533,3.84252,3.84234,3.83874,3.82687,3.82663,3.8164,3.79003,3.78428,3.76953,3.76358,3.75524,3.75112,3.74723,3.73454,3.7334,3.7159,3.71,3.70454,3.68105,3.65976,3.64794,3.64447,3.63867,3.60962,3.60508,3.60169,3.59817,3.57134,3.57067,3.55649,3.53267,3.52884,3.52785,3.4897,3.48086,3.48044,3.48021,3.45653,3.42415,3.41573,3.4155,3.40503,3.40321,3.39652,3.39308,3.38126,3.37493,3.37387,3.35774,3.35493,3.34763,3.34669,3.33311,3.32583,3.32582,3.31086,3.29523,3.28501,3.27071,3.24548,3.22988,3.22629,3.20478,3.20469,3.20339,3.17702,3.17576,3.1388,3.13635,3.13199,3.11281,3.11277,3.11132,3.10781,3.10346,3.08594,3.08501,3.08089,3.06208,3.05293,3.05088,3.04667,3.02872,3.02529,3.02332,2.98649,2.98564,2.98236,2.98225,2.98167,2.97815,2.96308,2.94485,2.94263,2.9413,2.93756,2.93631,2.93044,2.92657,2.92364,2.90863,2.90393,2.89431,2.89426,2.87418,2.86806,2.86686,2.86651,2.86381,2.86081,2.85711,2.83254,2.82196,2.81764,2.81481,2.79506,2.79318,2.77866,2.76087,2.76085,2.76033,2.75917,2.74815,2.74079,2.72182,2.71971,2.71823,2.71692,2.71348,2.7126,2.70792,2.69809,2.69159,2.68444,2.68002,2.67906,2.67617,2.67473,2.65554,2.64639,2.63684,2.63621,2.63156,2.62385,2.62309,2.62137,2.6064,2.6032,2.60283,2.60032,2.57373,2.56842,2.55464,2.54347,2.53529,2.53314,2.52319,2.52292,2.51576,2.50144,2.50142,2.48489,2.4765,2.47427,2.46822,2.45248,2.44948,2.44831,2.43407,2.42948,2.39336,2.38428,2.36467,2.3622,2.35456,2.32597,2.31309,2.30563,2.30422,2.30096,2.29971,2.29875,2.28287,2.26603,2.25669,2.24461,2.24132,2.22062,2.20703,2.19921,2.19037,2.1898,2.17153,2.16972,2.16916,2.16532,2.14212,2.13979,2.13193,2.12215,2.11286,2.0953,2.08119,2.05926,2.04571,2.03957,2.03881,2.03832,2.03333,2.01656,1.99595,1.96821,1.94412,1.94301,1.9406,1.93049,1.91137,1.90067,1.89425,1.89398,1.88545,1.88087,1.86863,1.84022,1.83101,1.76243,1.75291,1.752,1.72601,1.72469,1.72386,1.70257,1.702,1.6884,1.61795,1.61138,1.59779,1.5922,1.56591,1.53948,1.5343,1.52848,1.5068,1.49021,1.47195,1.43635,1.42496,1.40435,1.4043,1.40252,1.38202,1.37417,1.36519,1.36146,1.36025,1.30403,1.30146,1.2853,1.23194,1.22087,1.20589,1.19466,1.17295,1.15371,1.12078,1.11911,1.10155,1.09473,1.01964,1.00883,1.00624,0.9942,0.97737,0.97601,0.94868,0.94431,0.85382,0.84674,0.77648,0.75431,0.75188,0.74969,0.74825,0.7381,0.73402,0.69419,0.69259,0.67547,0.67341,0.65764,0.6416,0.64026,0.62769,0.62453,0.60986,0.5772,0.57461,0.56449,0.55205,0.54893,0.51734,0.48145,0.47846,0.45322,0.41409,0.40921,0.37041,0.34404,0.33335,0.32374,0.30449,0.26885,0.26631,0.25327,0.2349,0.21225,0.20806,0.17661,0.17107,0.15222,0.11388,0.11275,0.106,0.10469,0.09095,0.08733,0.0814,0.06954,0.05087,0.03809,0.0339,0.0339,0.01026,0.00001],"total":11004},{"name":"杉並区","values":[38.65128,36.75194,36.04583,35.08407,34.97894,33.30036,33.29108,32.9736,32.013,31.91501,31.76116,31.38066,30.76936,30.65699,30.63188,30.56662,30.47525,30.45036,30.15509,29.93216,29.84576,29.82382,29.42302,29.10637,29.07341,29.01168,28.64295,28.6425,28.62378,28.59239,28.42065,28.22831,28.17366,27.86694,27.85644,27.71591,27.66296,27.64891,27.55064,27.39474,27.3345,27.08403,26.70199,26.60975,26.15576,26.04649,25.93616,25.74727,25.74353,25.65909,25.49631,25.33295,25.30691,25.29087,25.08137,25.03256,24.84208,24.8243,24.82223,24.8143,24.81252,24.80233,24.62969,24.38934,24.18535,24.13988,24.06431,23.94457,23.92283,23.90154,23.89998,23.79242,23.7903,23.77848,23.76811,23.75815,23.71219,23.7049,23.6922,23.67475,23.67133,23.54313,23.54286,23.51237,23.46764,23.42106,23.318,23.27063,23.20101,23.08244,23.07325,23.02103,23.01153,22.91242,22.87505,22.85215,22.82841,22.76434,22.68106,22.66511,22.46409,22.35766,22.35377,22.33263,22.27332,22.24963,22.2463,22.21968,22.15391,22.10638,22.08972,22.05321,22.0164,21.85693,21.83153,21.72834,21.66523,21.63686,21.40543,21.38326,21.35335,21.35236,21.29657,21.24789,21.17057,21.13969,21.11649,21.08801,21.00887,21.00531,20.98075,20.95412,20.91068,20.72315,20.68948,20.62516,20.5315,20.41568,20.29267,20.25453,20.12546,20.08695,20.06497,20.04487,20.02271,20.002,20.0016,19.92886,19.84089,19.75953,19.68329,19.67232,19.62564,19.6202,19.57601,19.55078,19.52602,19.48956,19.48893,19.47396,19.46901,19.41516,19.35955,19.34058,19.32515,19.27887,19.25914,19.19019,19.15425,19.11171,18.9846,18.97737,18.97127,18.80964,18.78811,18.75957,18.73806,18.72816,18.57139,18.38525,18.36897,18.26366,18.198,18.18851,18.18373,18.08793,18.00669,17.98168,17.95704,17.95202,17.87989,17.87827,17.85957,17.67128,17.55696,17.53365,17.49069,17.48486,17.4433,17.43479,17.31294,17.27877,17.25773,17.11716,16.94557,16.90374,16.87162,16.76778,16.67905,16.61591,16.54002,16.49274,16.46655,16.43709,16.37665,16.29733,16.27521,16.13319,16.0673,15.99289,15.95514,15.8946,15.8237,15.7948,15.73784,15.61994,15.59036,15.58325,15.57706,15.56778,15.5238,15.51146,15.45956,15.44687,15.44215,15.31683,15.27985,15.21851,15.18415,15.17761,15.14691,15.14248,15.06799,15.06756,14.99421,14.91919,14.86491,14.71528,14.70651,14.69821,14.60674,14.51332,14.46168,14.41972,14.41073,14.40084,14.39025,14.35801,14.33873,14.31093,14.27828,14.26911,14.24981,14.14205,14.08029,14.0022,13.96411,13.96102,13.91625,13.80359,13.7073,13.7053,13.7021,13.69938,13.6121,13.54461,13.51182,13.49599,13.48829,13.48422,13.44228,13.38795,13.3701,13.27331,13.24653,13.16944,13.11197,13.06135,12.98403,12.90695,12.88313,12.87338,12.86525,12.8294,12.82866,12.79039,12.74713,12.72863,12.69597,12.63518,12.56698,12.55978,12.5169,12.48446,12.38052,12.32608,12.32542,12.31398,12.2987,12.22137,12.14245,12.13407,12.04904,11.96046,11.92145,11.90341,11.9012,11.83524,11.80315,11.78258,11.77167,11.76527,11.7474,11.6695,11.66688,11.60013,11.46028,11.42527,11.40594,11.29612,11.25956,10.9101,10.90494,10.89828,10.84814,10.80961,10.78525,10.74633,10.68645,10.67262,10.66028,10.64345,10.63972,10.58606,10.57451,10.55714,10.54927,10.48938,10.45863,10.45295,10.43027,10.37765,10.32713,10.31312,10.2046,10.17595,10.12573,10.06684,9.94899,9.93226,9.92475,9.9213,9.861,9.79431,9.76679,9.73277,9.70781,9.68808,9.65346,9.57526,9.57128,9.51326,9.43969,9.36482,9.28828,9.25751,9.24588,9.23831,9.22393,9.16903,9.000870000000003,8.9046,8.88856,8.85409,8.85191,8.84904,8.81322,8.7828,8.760730000000002,8.717750000000002,8.68924,8.68196,8.67001,8.6482,8.64085,8.61051,8.58896,8.54427,8.53737,8.53559,8.50614,8.4752,8.41504,8.35764,8.33628,8.28736,8.255800000000002,8.25335,8.23368,8.22134,8.217040000000003,8.15005,8.12515,8.10351,8.066940000000002,8.053850000000002,7.94453,7.91565,7.88855,7.84573,7.70197,7.69262,7.6717,7.54623,7.39839,7.36368,7.3612,7.30015,7.25788,7.22689,7.20377,7.1671,7.16397,7.13744,7.12079,7.07238,7.03172,6.99234,6.87843,6.84893,6.82954,6.80745,6.79063,6.78255,6.77021,6.74398,6.63098,6.62007,6.61242,6.5989,6.57628,6.53923,6.48636,6.466,6.37049,6.33793,6.3126,6.30002,6.26295,6.19792,6.14875,5.97453,5.82874,5.80941,5.80576,5.80042,5.79774,5.77934,5.75394,5.71485,5.63623,5.63294,5.55007,5.50058,5.31086,5.30835,5.2933,5.14706,5.0788,5.05573,5.03701,5.01259,4.88594,4.87938,4.86316,4.85132,4.74278,4.73242,4.64833,4.491170000000001,4.46822,4.39798,4.32859,4.19526,4.1225,4.043180000000001,3.97275,3.84222,3.62636,3.59641,3.58869,3.53318,3.46806,3.3632,2.84813,2.82951,2.78006,2.58341,2.39246,2.01448,1.9779,1.897,1.80739,1.53387,1.46473,0.85364,0.77942,0.72969],"total":10645},{"name":"足立区","values":[256.64074,253.91971,247.7449,247.12828,246.5077,242.18262,221.80153,212.78588,200.81374,198.63022,196.62771,187.81659,186.65801,186.5899,184.12271,184.08027,180.49327,178.54889,178.0868,177.31273,177.13476,174.84201,169.94121,169.08877,166.19487,166.02952,165.60313,157.86456,156.94043,156.88796,156.40449,150.64323,147.00673,146.33021,134.55289,132.52823,131.00723,130.77106,130.36056,128.80612,123.86925,122.35289,121.13712,111.18779,110.04234,109.03455,88.54281,84.89562,84.02335,82.53657,82.31135,81.53443,80.61322,80.45712,76.30588,74.44032,72.58096,66.80789,61.29085,59.81891,59.22829,58.81571,58.45156,58.05693,56.22151,55.94762,54.44755,53.66115,52.51864,51.64977,49.3728,45.35392,45.23544,44.45962,44.34164,43.92229,43.34813,41.57211,41.02764,39.4237,38.86155,38.26198,37.42754,36.31667,35.87758,34.72518,33.54195,31.97528,31.95312,31.90425,31.89625,31.12558,30.55293,29.85474,29.29444,28.13636,27.88358,27.86073,27.78381,27.27776,27.26449,26.98077,26.63452,26.44425,26.13418,25.13624,24.59541,24.42047,23.7873,23.34247,23.18297,23.13576,22.86973,22.75284,22.45627,22.34997,22.20482,21.87077,21.26236,21.07405,20.92249,20.44041,20.22606,19.81568,19.72414,19.63947,19.55454,19.50572,19.46309,19.29439,19.12809,19.12103,19.00011,18.3184,18.10025,18.08774,17.87393,17.6397,17.58355,17.43341,16.29027,16.19295,16.17955,16.10138,16.00595,15.90898,15.77894,15.65829,15.00764,14.95973,14.89305,14.73487,14.70451,14.61818,14.50592,14.43892,14.26216,14.23689,14.09989,13.82117,13.62147,13.51517,13.4891,13.18486,13.17979,12.91883,12.8018,12.71848,12.44207,12.36856,12.26581,12.20912,12.18864,12.10276,12.06772,11.93819,11.76662,11.71735,11.69725,11.66557,11.59584,11.43683,11.41144,11.16382,11.15951,10.67651,10.56835,10.45173,10.35422,10.26815,10.13151,10.124,10.0667,9.94538,9.59729,9.54808,9.49744,9.36058,9.14788,9.1194,9.03653,8.9175,8.9057,8.88091,8.779170000000002,8.74708,8.732530000000002,8.68702,8.679600000000002,8.63557,8.60623,8.56697,8.50094,8.41014,8.3766,8.1752,8.10624,8.06654,8.065860000000002,8.05322,7.95637,7.79129,7.71888,7.6778,7.66792,7.61757,7.55717,7.43798,7.40032,7.33258,7.27081,7.19214,7.13228,7.09418,7.05154,7.00059,6.96909,6.95716,6.90563,6.85844,6.80902,6.79857,6.74237,6.74005,6.70771,6.66026,6.59537,6.57995,6.57761,6.39173,6.24327,6.1657,6.15796,6.15656,6.06779,6.05994,5.90508,5.88319,5.7653,5.75678,5.73298,5.71986,5.66955,5.65788,5.61158,5.57128,5.51822,5.4287,5.37342,5.3549,5.33261,5.19155,5.15718,5.12983,5.12282,5.12269,5.01735,4.99574,4.97251,4.96848,4.95812,4.94737,4.93659,4.92956,4.92251,4.89766,4.86898,4.86476,4.86054,4.85472,4.82754,4.81215,4.78901,4.75351,4.69765,4.66743,4.61107,4.60826,4.57935,4.54246,4.51611,4.486220000000001,4.45218,4.4268,4.39073,4.38317,4.29327,4.28907,4.24032,4.213440000000001,4.17321,4.109670000000001,4.09014,4.059020000000001,4.02924,4.00822,3.97004,3.9288,3.92257,3.90875,3.85849,3.84286,3.83012,3.80905,3.77207,3.76257,3.74005,3.73794,3.70867,3.70129,3.67227,3.62857,3.62747,3.60505,3.60406,3.57708,3.52618,3.49261,3.48917,3.4622,3.43224,3.35174,3.33971,3.32527,3.32335,3.32128,3.31336,3.30703,3.27648,3.27531,3.25463,3.24103,3.22443,3.21241,3.17704,3.16596,3.1618,3.13979,3.13632,3.13573,3.12089,3.11812,3.08733,3.05292,3.04827,3.03921,3.03916,3.0382,3.0343,2.97707,2.94409,2.89645,2.86709,2.8548,2.85209,2.82212,2.76216,2.75278,2.73007,2.71379,2.68661,2.68152,2.65857,2.65472,2.63529,2.62629,2.59788,2.57769,2.56767,2.56196,2.56184,2.54467,2.53096,2.44718,2.43313,2.42687,2.41958,2.40151,2.39991,2.36839,2.344,2.34052,2.31626,2.3095,2.25601,2.18819,2.18741,2.18381,2.17677,2.15193,2.15079,2.14856,2.13843,2.1343,2.12737,2.11091,2.10304,2.09287,2.09016,2.08535,2.08078,2.08005,2.05697,2.04532,2.03511,2.02714,2.01584,2.01307,1.99656,1.98687,1.97952,1.96969,1.96117,1.95156,1.94483,1.92015,1.91405,1.89823,1.88241,1.8821,1.86802,1.853,1.84892,1.83314,1.796,1.78948,1.78629,1.77025,1.75052,1.74452,1.72395,1.72006,1.69786,1.69564,1.69465,1.68969,1.67356,1.65239,1.65048,1.64619,1.63033,1.62976,1.62341,1.59496,1.59417,1.59039,1.58162,1.56346,1.56074,1.55243,1.54265,1.54225,1.54173,1.53778,1.52804,1.52742,1.51269,1.50993,1.50083,1.4847,1.47397,1.46813,1.46786,1.46761,1.46677,1.46319,1.46311,1.44457,1.43904,1.43706,1.43683,1.42005,1.41746,1.41204,1.37114,1.36597,1.36471,1.36095,1.35976,1.3596,1.35787,1.35628,1.3412,1.3309,1.31978,1.29214,1.29061,1.28124,1.27547,1.2718,1.27116,1.25075,1.25022,1.2356,1.20627,1.19844,1.19392,1.16772,1.16657,1.16146,1.16139,1.13873,1.13708,1.13226,1.10931,1.10665,1.10482,1.0794,1.07934,1.07678,1.07163,1.06761,1.06286,1.06172,1.06063,1.05035,1.04787,1.04055,1.02811,1.01912,1.01691,1.00559,1.00256,0.99261,0.99123,0.96848,0.96581,0.96028,0.95835,0.95002,0.94925,0.94844,0.94767,0.94571,0.91322,0.91026,0.90474,0.8915,0.86764,0.85478,0.84809,0.84494,0.83959,0.83364,0.83175,0.81524,0.81377,0.81211,0.80628,0.80457,0.80213,0.79181,0.78644,0.78629,0.77834,0.77786,0.77507,0.77386,0.76918,0.74107,0.72724,0.71046,0.69667,0.69569,0.69353,0.68287,0.66632,0.66034,0.65577,0.64544,0.6402,0.63326,0.63211,0.62712,0.62688,0.61825,0.61807,0.61779,0.61581,0.61211,0.60924,0.60894,0.60819,0.6045,0.60134,0.58295,0.57695,0.57133,0.57073,0.56739,0.56452,0.55438,0.54294,0.54168,0.53858,0.53449,0.53422,0.52838,0.5274,0.52701,0.52306,0.52191,0.51696,0.51678,0.51445,0.50676,0.50283,0.49524,0.4919,0.48796,0.48685,0.4867,0.48468,0.47925,0.4665,0.46588,0.45454,0.45343,0.44787,0.44677,0.44529,0.43118,0.427,0.40554,0.40342,0.39871,0.39871,0.39461,0.39386,0.3936,0.39358,0.38859,0.38635,0.3811,0.36871,0.36704,0.3637,0.36342,0.35977,0.35958,0.35341,0.34991,0.34533,0.33954,0.33879,0.33747,0.33715,0.33224,0.32572,0.32513,0.32087,0.32001,0.31282,0.30429,0.29996,0.29885,0.29676,0.28797,0.2859,0.26666,0.26568,0.25779,0.25678,0.25315,0.2483,0.24486,0.24192,0.24112,0.24085,0.23367,0.22911,0.229,0.22783,0.21836,0.2181,0.21795,0.21248,0.20742,0.20666,0.20578,0.20452,0.20103,0.19712,0.18755,0.18551,0.18299,0.17693,0.17576,0.17543,0.17414,0.17181,0.16757,0.16744,0.16535,0.16514,0.16205,0.15291,0.13944,0.13823,0.13397,0.13207,0.13163,0.13028,0.12952,0.12952,0.11912,0.11682,0.11325,0.11175,0.11122,0.10975,0.10876,0.10693,0.10422,0.09815,0.09591,0.09544,0.09398,0.0905,0.08959,0.08831,0.0882,0.08733,0.08655,0.08543,0.0843,0.08341,0.08328,0.08157,0.08123,0.07993,0.07944,0.0777,0.07422,0.07137,0.07102,0.06997,0.0681,0.06561,0.06537,0.0641,0.06364,0.06222,0.06014,0.05999,0.0581,0.05465,0.05211,0.05123,0.05039,0.04895,0.04664,0.04643,0.04424,0.0432,0.03923,0.03775,0.03451,0.03191,0.03164,0.02912,0.02531,0.02506,0.02249,0.02243,0.02214,0.02028,0.01933,0.01907,0.01811,0.01745,0.01727,0.01552,0.01539,0.01452,0.01424,0.01378,0.01331,0.01102,0.00982,0.00824,0.00808,0.008,0.0077,0.0062,0.00384,0.00365,0.00342,0.00339,0.00289,0.00286,0.00256,0.00241,0.00231,0.00186,0.00171,0.0017,0.00164,0.00108,0.00059],"total":10483},{"name":"葛飾区","values":[108.06722,76.63799,50.526,46.59566,43.45498,42.02418,41.96377,41.67898,37.39085,36.32458,35.71235,33.97954,33.89653,33.36147,32.75238,31.58226,30.57806,30.48804,29.12244,28.91095,28.61091,28.4259,28.32406,28.15604,27.51991,27.24227,26.80599,26.74019,26.50403,26.29184,26.27587,26.12351,26.07715,25.96848,25.74205,25.66271,25.65978,25.60384,25.54892,25.42908,25.28862,24.49993,24.44264,24.33936,24.3112,24.25562,24.13294,23.72273,23.66895,23.57789,23.48246,23.04442,22.87318,22.79503,22.49697,22.35577,22.15184,22.12132,21.87767,21.62222,21.38423,21.30758,21.25895,21.15789,21.1436,21.0511,20.92408,20.84441,20.80464,20.59836,20.35108,19.92575,19.72299,19.5701,19.53878,19.47336,19.25259,18.90107,18.88853,18.75235,18.4404,18.30335,18.25848,18.20176,18.00613,17.9766,17.86974,17.84436,17.79252,17.57103,17.51814,17.50983,17.48254,17.42162,17.35565,17.3292,17.29339,17.26433,17.20089,17.059,17.05297,17.05203,17.05037,16.8274,16.74312,16.71172,16.70703,16.47383,16.33136,16.32492,16.31562,16.14402,16.12763,16.09843,15.93498,15.86124,15.807,15.77793,15.68171,15.66237,15.64683,15.59066,15.51065,15.43023,15.37512,15.34265,15.29856,15.27854,15.18442,15.15115,15.11392,15.05011,15.01821,14.892,14.82679,14.81499,14.79561,14.69906,14.65089,14.63092,14.43885,14.40277,14.32852,14.29806,14.27873,14.22938,14.18827,14.14502,13.98454,13.91887,13.88172,13.87068,13.85764,13.76151,13.70996,13.68867,13.66865,13.61815,13.54868,13.42924,13.39984,13.39085,13.31722,13.13236,13.10684,13.0092,12.9921,12.99007,12.98267,12.91284,12.89644,12.7184,12.66953,12.56513,12.46157,12.44877,12.41414,12.39275,12.33501,12.30379,12.28816,12.26248,12.16216,12.14798,12.12919,12.07814,12.07081,12.06173,11.94458,11.92261,11.75878,11.67327,11.59468,11.58481,11.57357,11.47027,11.41301,11.35787,11.33738,11.3248,11.22435,11.19476,11.15062,11.13624,11.06245,10.99923,10.87729,10.82731,10.81886,10.81587,10.76392,10.76081,10.63512,10.63253,10.5761,10.54744,10.52522,10.51352,10.51232,10.49927,10.31658,10.31099,10.27034,10.21644,10.14182,10.10061,10.01982,9.89174,9.86688,9.82383,9.78056,9.59517,9.5092,9.47488,9.46935,9.45264,9.44025,9.40411,9.34317,9.3179,9.29205,9.24551,9.20731,9.20323,9.19399,9.14278,9.05505,8.73843,8.69657,8.69575,8.66765,8.63081,8.61153,8.57652,8.56881,8.521190000000002,8.41676,8.3184,8.25095,8.197950000000002,8.173550000000002,8.11656,8.09283,8.08489,8.05301,8.03856,7.83627,7.758,7.74875,7.7138,7.70362,7.63318,7.6165,7.60657,7.51299,7.42306,7.30659,7.25533,7.09875,7.03157,7.00846,7.00376,6.89524,6.89374,6.87583,6.80966,6.73352,6.69974,6.60861,6.60007,6.51899,6.50306,6.46771,6.44169,6.40318,6.38217,6.36085,6.3219,6.28674,6.26212,6.25716,6.22013,6.1368,6.07433,6.06158,6.01318,5.89836,5.75718,5.72327,5.69322,5.67091,5.64619,5.58531,5.58177,5.55961,5.55335,5.48607,5.4456,5.44398,5.41592,5.38791,5.26114,5.25105,5.20391,5.18561,5.18054,5.16418,5.15445,5.15205,5.10109,5.10027,5.08985,4.93675,4.92523,4.90998,4.7905,4.75313,4.74813,4.74044,4.73975,4.73323,4.73106,4.65205,4.55017,4.53886,4.53158,4.52121,4.41888,4.40798,4.39879,4.39091,4.30929,4.28735,4.24398,4.23328,4.23215,4.1672,4.165510000000001,4.157250000000001,4.137260000000001,4.11242,4.11132,4.05731,4.04035,4.03393,4.02942,3.99684,3.99608,3.95169,3.92359,3.91659,3.90141,3.88442,3.86757,3.841,3.8324,3.77099,3.75479,3.73,3.71762,3.7072,3.70098,3.61629,3.59304,3.5488,3.51924,3.49379,3.48437,3.47175,3.46956,3.44291,3.43689,3.41363,3.39264,3.37336,3.3511,3.32713,3.30862,3.26469,3.26347,3.26332,3.24523,3.22552,3.14451,3.11896,3.1182,3.10806,3.10355,3.08565,3.05921,3.04166,2.96653,2.92781,2.88272,2.87986,2.87434,2.85285,2.82926,2.81388,2.7756,2.71583,2.63674,2.61212,2.60743,2.59751,2.59499,2.59116,2.57219,2.54714,2.53148,2.50231,2.48696,2.42692,2.36182,2.21832,2.15937,2.1442,2.06663,2.05637,2.03929,1.98316,1.90265,1.84259,1.8008,1.77286,1.76789,1.70277,1.68255,1.51318,1.413,1.40532,1.40324,1.30565,1.30042,1.24849,1.22701,1.22067,1.2169,1.13768,1.08819,1.03754,1.00119,0.99266,0.97384,0.91395,0.83688,0.83392,0.7691,0.72783,0.68325,0.61699,0.57314,0.54732,0.50385,0.38068,0.36796,0.30009,0.29366,0.29125,0.26724,0.24888,0.2089,0.20101,0.15551,0.10974,0.07667,0.0661,0.06595,0.03825,0.03594,0.01092,0.00969,0.00689,0.00676,0.00429,0.00405,0.00317,0.00316,0.0029,0.00262,0.00203,0.00069,0.00067,0.00047,0.00017,0.00014,0.00011,0.00006,0.00005],"total":3040},{"name":"大田区","values":[137.12221,118.61903,115.66628,108.37461,107.83433,106.88353,103.19252,102.98473,99.72711,98.50618,97.54444,95.13133,94.42008,94.28688,93.55676,93.40821,93.37391,91.57963,91.4599,90.38557,88.99088,88.03017,87.44364,87.12226,86.87172,86.4565,84.37923,84.08426,83.43055,82.35996,82.08105,81.54939,81.12254,79.82687,79.51922,79.00898,78.27703,77.7918,77.77379,77.70315,77.07651,76.27607,75.28168,74.88225,74.63915,74.57076,73.20921,72.98333,72.28572,72.1213,72.02071,71.88973,71.87703,71.61654,71.17167,70.61803,70.36699,70.35437,69.81594,69.61187,69.30166,68.66574,68.15479,68.10763,66.97455,65.52737,65.32169,65.04277,64.75906,64.62877,63.82922,63.76919,63.70134,63.69928,63.2838,63.2624,62.9229,62.60786,62.52824,62.37683,62.09357,61.76326,61.75601,61.35447,61.25694,61.08905,60.64518,60.58551,60.47344,60.13886,59.78139,59.75797,59.73238,59.30724,59.25893,58.71431,58.39959,58.29177,58.04352,58.03807,57.13959,57.04233,56.6118,56.58445,55.7211,55.69326,55.33714,55.33003,55.28622,55.09973,54.75338,54.72861,54.72017,54.50879,54.13419,54.0851,53.94946,53.85378,53.44149,53.35566,53.17591,52.64339,52.39164,52.10442,51.8318,51.64556,51.54242,51.43872,51.37212,51.33846,51.32773,51.31914,51.29561,50.9265,50.58161,50.52855,50.2354,50.11335,49.92495,49.71656,49.70999,49.38247,49.29146,49.27475,48.84545,48.76681,48.42728,48.39413,48.044,48.00398,47.78164,47.67629,47.44594,47.11355,47.04487,46.82983,46.75669,46.58716,46.57357,46.54496,46.54343,46.4233,46.39988,46.17993,45.81886,45.55234,45.39523,44.98472,44.85273,44.7589,44.70137,44.58984,44.57905,44.513,44.26725,44.19283,43.98875,43.94326,43.4211,43.32729,43.20205,43.08382,42.96202,42.93269,42.87624,42.73822,42.57364,42.54154,42.36093,42.07519,41.99324,41.97611,41.86896,41.7298,41.44011,41.26083,41.14016,41.11446,40.96378,40.91468,40.90502,40.87028,40.61239,40.36771,40.16927,39.9195,39.84425,39.72195,39.4795,38.92882,38.86929,38.31549,37.73946,37.68761,37.66334,37.38865,37.09568,36.89151,36.87882,36.45359,36.44945,36.43467,35.43187,35.3654,35.03605,34.8344,34.67638,34.4238,34.41701,34.37772,34.01161,33.90164,33.52778,33.51621,33.41034,33.20474,33.1837,33.17022,32.939,32.87993,32.68934,32.4329,32.26064,32.20033,31.87699,31.86281,31.68711,31.48536,31.42704,31.37111,31.06251,31.04091,30.93202,30.8946,30.88431,30.80306,30.71542,30.69712,30.45693,30.33589,30.17677,30.09161,30.07899,29.78387,29.73756,29.50176,29.30825,29.07022,28.6748,28.60097,28.57668,28.57322,28.3914,28.32162,28.20971,27.9321,27.88677,27.8142,27.6125,27.6101,27.6054,27.58901,27.5875,27.4688,27.00559,27.00197,26.84293,26.55371,26.52353,26.52004,26.42787,26.28237,26.26497,26.25994,26.23846,26.14005,26.09566,25.79647,25.23436,25.20426,24.89288,24.73855,24.64925,24.53139,24.24146,23.95817,23.90648,23.7541,23.75089,23.31794,23.31434,22.957,22.82766,22.53281,22.36751,22.26486,22.09317,22.04986,21.93734,21.59278,21.34793,21.25972,21.21532,21.20803,21.204,21.2033,21.1303,21.10029,20.98139,20.97869,20.84758,20.74904,20.63716,20.4817,20.26491,20.17486,20.17079,19.9562,19.95569,19.85356,19.7852,19.63246,19.20849,19.12723,18.87851,18.74415,18.6817,18.4341,18.4196,18.29003,18.07577,18.00661,17.72759,17.66714,17.47944,17.42668,17.35476,17.32242,17.18874,17.08745,17.00404,16.83369,16.67674,16.48035,16.3307,16.15118,16.13634,16.00615,16.00498,15.99838,15.80019,15.70025,15.66481,15.62753,15.54348,15.40763,15.271,15.24873,15.24394,15.20891,15.10886,15.09392,14.99932,14.98176,14.93741,14.88579,14.79142,14.72738,14.64306,14.63034,14.5942,14.54987,14.40097,14.39173,14.2185,13.93964,13.92539,13.85337,13.79779,13.57717,13.48918,13.45788,13.43137,13.39265,13.17571,13.11197,13.08634,13.07791,13.00924,12.99071,12.90455,12.78832,12.7545,12.59075,12.5896,12.4777,12.4542,12.4005,12.37533,12.03875,12.00122,11.99184,11.97111,11.92009,11.63627,11.62949,11.55689,11.52489,11.44285,11.34339,11.12385,11.02871,10.86714,10.76309,10.73555,10.60135,10.58659,10.53348,10.51434,10.33322,10.27358,9.99705,9.95748,9.88746,9.83903,9.52563,9.48737,9.48629,8.92182,8.706440000000002,8.67813,8.66948,8.59545,8.57409,8.570080000000003,8.556520000000003,8.44465,7.97845,7.72904,7.41946,7.41042,7.36487,7.32231,7.2565,7.16009,7.15402,7.13308,7.03297,7.02045,6.88339,6.87425,6.82335,6.79058,6.73335,6.61377,6.52968,6.49416,6.45374,6.42843,6.41529,6.20469,6.03854,6.03137,6.01154,5.94856,5.94091,5.93207,5.9145,5.86526,5.75848,5.75307,5.6098,5.59301,5.52586,5.50109,5.49598,5.37875,5.37356,5.2015,5.09952,5.09287,4.86255,4.82123,4.81681,4.79961,4.73943,4.69734,4.68845,4.65938,4.61671,4.5582,4.55575,4.53914,4.49113,4.446290000000001,4.33383,4.230400000000001,4.181580000000001,4.08864,3.92611,3.91317,3.88549,3.81998,3.58126,3.55452,3.53616,3.53533,3.50555,3.49126,3.43306,3.39116,3.31685,3.26302,3.24932,3.2448,3.2445,3.06709,3.03139,3.00826,2.95999,2.94355,2.9423,2.94121,2.86644,2.85192,2.74805,2.73534,2.72487,2.68422,2.67468,2.67433,2.55829,2.53754,2.52639,2.52587,2.52587,2.48408,2.45567,2.34229,2.33741,2.29671,2.18364,2.16299,2.06661,2.05939,2.03233,1.99218,1.99103,1.97319,1.95136,1.93867,1.92119,1.90642,1.90273,1.85984,1.8236,1.81797,1.73547,1.72744,1.71292,1.70694,1.67468,1.67415,1.65804,1.65117,1.64465,1.64092,1.60404,1.56619,1.52908,1.52652,1.52046,1.51542,1.43309,1.41043,1.39523,1.39293,1.36721,1.35318,1.33254,1.32773,1.31238,1.31175,1.2884,1.23783,1.19298,1.17082,1.16837,1.1586,1.14317,1.13619,1.12187,1.07582,1.0542,1.03527,1.0243,1.01716,1.01097,1.01095,1.01028,0.99845,0.99163,0.98686,0.9794,0.97525,0.94475,0.93255,0.89108,0.89042,0.86609,0.83033,0.82793,0.81358,0.77521,0.76673,0.7269,0.7153,0.6855,0.68262,0.67373,0.67199,0.66043,0.65143,0.64958,0.64838,0.64827,0.63742,0.57234,0.56244,0.54292,0.50806,0.50616,0.50513,0.50513,0.49768,0.49575,0.49487,0.49479,0.48687,0.48684,0.47838,0.47478,0.46109,0.46056,0.44716,0.44289,0.41851,0.41307,0.41227,0.39056,0.38981,0.38078,0.3706,0.35242,0.34429,0.34364,0.34215,0.34144,0.34131,0.33684,0.33112,0.33051,0.32763,0.32018,0.31847,0.31635,0.3163,0.30895,0.3023,0.25851,0.22083,0.21219,0.21022,0.20735,0.20729,0.20603,0.20332,0.19712,0.19485,0.17471,0.17429,0.15808,0.15347,0.14194,0.14178,0.14132,0.12145,0.11514,0.11129,0.10918,0.10264,0.10225,0.10005,0.09718,0.09687,0.09448,0.07992,0.07231,0.07078,0.07074,0.07068,0.07065,0.07065,0.07065,0.05924,0.0557,0.05152,0.04666,0.0464,0.03518,0.03403,0.02491,0.02441,0.02139,0.0132,0.013,0.01287,0.01043,0.00929,0.00785,0.00737,0.00687,0.00574,0.00445,0.00438,0.00355,0.00303,0.00284,0.00271,0.00214,0.002,0.00176,0.00172,0.00123,0.00122,0.00114,0.00099,0.00091,0.00083,0.00066,0.00047,0.00036,0.00014,0.00004,0.00001],"total":2674},{"name":"墨田区","values":[155.50716,146.10215,128.12686,126.01474,125.7988,116.44698,110.6458,97.25786,92.99452,87.66455,87.03163,83.49552,82.57758,78.64505,72.25579,71.51973,67.77156,65.77175,62.57838,52.66143,51.81718,50.38446,47.83365,46.7683,46.68915,46.3863,46.01651,45.99883,45.9891,45.8517,45.49877,44.4204,41.769,41.4841,41.18993,39.8152,39.64792,39.06817,38.75573,37.33898,36.86879,36.34377,35.52109,35.38159,34.47074,34.28163,32.32733,31.00681,30.39905,29.64456,29.02618,28.95611,27.20869,26.66554,25.72484,25.51644,25.42263,24.72725,24.65084,24.30117,23.89143,23.7498,22.77065,22.69699,22.15632,22.12635,21.93296,21.16773,20.13222,19.38956,19.26788,17.06513,16.90383,16.53376,16.06932,15.75035,15.67133,15.48945,14.95286,14.85678,14.69452,13.57899,13.57003,12.57748,12.3139,12.0416,11.01601,10.81838,10.17497,9.80873,9.70127,8.8691,8.82289,7.92266,7.87231,7.29927,7.07116,7.06948,7.02785,6.74356,6.51135,6.14511,5.60911,5.40171,5.16305,5.13865,4.85005,4.35869,4.150730000000001,4.11562,4.11522,3.95455,3.89276,3.77426,3.7064,3.60831,3.51677,3.16925,3.15397,3.10913,3.01443,2.88412,2.7519,2.7024,2.50254,2.48139,2.26536,2.19053,2.05514,2.01221,2.0066,1.86041,1.78763,1.764,1.65817,1.63015,1.58077,1.57467,1.52609,1.37172,1.36868,1.30688,1.27998,1.24292,1.21211,1.20037,1.12101,1.09462,1.06769,1.02473,1.01519,0.96356,0.9558,0.93505,0.93131,0.91995,0.87538,0.85393,0.8126,0.79504,0.79301,0.71243,0.69076,0.66656,0.63635,0.59726,0.58144,0.57616,0.5727,0.57083,0.53963,0.53693,0.53117,0.49755,0.4414,0.42913,0.41494,0.40772,0.40572,0.3733,0.36423,0.3399,0.33768,0.33046,0.32823,0.31494,0.30459,0.27672,0.23295,0.22573,0.13103,0.13083,0.12872,0.12721,0.10611,0.10309,0.10303,0.01784,0.01349,0.00822,0.00325,0.00062,0.00033],"total":1903},{"name":"品川区","values":[153.25235,105.41173,102.91907,102.17582,98.51678,98.24986,95.5256,94.71195,86.53125,85.23096,83.57397,83.16409,82.03599,76.75122,76.18428,76.12326,76.03171,75.66974,74.40669,72.44098,70.79046,69.80249,68.85754,68.76476,68.3619,68.19586,68.09806,67.01312,66.91147,66.01887,65.39789,64.686,63.23196,62.85455,62.47706,62.26503,60.08079,58.00289,57.98017,57.58726,57.37926,52.67859,52.28002,52.03562,51.3395,49.97961,49.94733,46.32681,45.98386,45.76991,45.31418,45.28546,43.96769,43.51296,43.15797,42.64977,41.70318,40.91279,40.33471,39.86888,39.82459,39.80598,39.45022,38.9671,38.63974,38.2802,37.6703,37.36659,36.30285,35.76146,35.66094,35.62918,35.47259,34.40693,33.91064,33.5819,33.48591,32.86486,32.60376,32.53986,31.04437,30.47793,30.35009,30.11985,29.48404,29.15753,29.04403,28.9924,28.74631,28.19878,27.9153,26.48662,25.45837,25.39615,25.30297,24.71267,24.64221,24.53444,24.28315,23.78561,23.28146,22.5133,22.33497,21.84326,21.68086,21.39146,21.23723,21.10162,21.07971,19.66443,19.57338,19.47213,19.3563,18.4983,18.34399,18.1939,18.13555,18.12949,17.85406,17.75487,17.70509,17.54696,17.0999,16.94125,16.48763,16.34924,16.19006,16.02539,15.61005,15.02966,14.9686,14.62354,14.58248,14.40712,14.23214,13.78366,13.6197,13.59151,13.56639,13.1138,13.01367,12.89592,12.88155,12.58536,11.80432,11.79823,11.32976,11.07412,10.87717,10.46478,10.32795,10.26328,9.91084,9.88776,9.54204,9.28644,9.14959,8.97805,8.5663,8.54161,8.52713,8.23746,7.99904,7.97277,7.93845,7.81185,7.66146,7.5826,7.45847,7.39836,7.39823,7.21707,6.78068,6.62155,6.57922,6.43982,6.35555,6.17061,5.96359,5.91441,5.89709,5.81286,5.79544,5.34481,5.31509,5.16524,4.93769,4.78085,4.74282,4.438500000000001,4.23336,4.22234,4.1413,4.075910000000001,4.06042,4.012260000000001,3.95271,3.92726,3.90758,3.80611,3.75277,3.68206,3.6566,3.65447,3.61314,3.33251,3.32398,3.27456,3.24837,3.11198,3.02406,3.02005,2.65322,2.63506,2.58442,2.53931,2.5053,2.44707,2.32247,2.08304,2.01755,2.00194,1.91621,1.74652,1.6895,1.66633,1.6541,1.62417,1.61696,1.59207,1.58082,1.55655,1.42876,1.42619,1.38091,1.32608,1.32604,1.32101,1.22661,1.21856,1.15815,1.13073,1.11,1.10999,1.03964,1.03196,0.98515,0.98034,0.89638,0.89307,0.87309,0.85376,0.82073,0.81077,0.78829,0.72181,0.71381,0.64952,0.63498,0.60741,0.6055,0.59892,0.59834,0.58378,0.53417,0.52953,0.52851,0.52837,0.512,0.49664,0.49242,0.46469,0.4465,0.44581,0.44129,0.4153,0.41407,0.40911,0.40729,0.40604,0.37804,0.34403,0.34398,0.34054,0.33448,0.32483,0.31434,0.28811,0.26898,0.26428,0.25164,0.21188,0.20409,0.20012,0.18761,0.1663,0.12911,0.11901,0.11403,0.10787,0.10763,0.09547,0.08888,0.08247,0.0824,0.08054,0.07483,0.07055,0.07018,0.06813,0.06176,0.0604,0.05692,0.05624,0.04175,0.03947,0.02737,0.0227,0.0226,0.01862,0.01355,0.01299,0.00864,0.00767,0.00698,0.00653,0.00633,0.00622,0.00522,0.00463,0.00461,0.00249,0.00228,0.00226,0.00186,0.0018,0.0014,0.00123,0.00102,0.001,0.00094,0.0008,0.00075,0.0007,0.00065,0.00045,0.00045,0.00027,0.00017,0.00013,0.0001,0.00009,0.00005],"total":1657},{"name":"江戸川区","values":[206.05823,196.5033,188.12188,172.93749,167.82685,151.3652,150.45391,148.54702,145.89311,140.02291,139.68547,138.92355,130.29928,130.11035,129.0649,120.91374,120.25059,119.77933,119.31732,119.06027,115.198,114.78989,111.77221,110.57322,108.96187,108.36694,108.32119,106.65219,106.22915,105.59884,101.93351,98.73752,98.51814,95.80762,94.8397,93.14601,91.08947,89.60209,89.52669,89.22303,88.10388,87.84955,82.83523,80.40995,80.33488,80.22908,79.58555,76.76852,76.74413,76.46251,75.33033,75.26057,75.18443,73.95847,73.39123,73.31405,71.12994,70.47363,70.37084,70.15614,70.08318,69.57828,69.40697,68.95036,67.93549,67.64992,67.36117,67.23804,65.38084,64.31759,63.45695,63.07884,63.01213,62.56659,62.55646,62.05883,61.82973,61.29672,61.11153,59.67715,59.46426,58.94814,58.51707,58.25679,58.10026,58.09994,57.2353,56.66103,55.09911,53.90146,53.14435,53.05758,52.50189,51.82435,51.76597,51.6316,50.89256,49.02841,49.01375,48.78082,48.42961,48.37359,48.03123,47.9979,47.24959,46.66576,46.29896,44.70691,44.59337,43.86933,43.82413,43.54683,43.31842,42.67265,42.64835,42.45604,42.26208,42.23936,42.22315,42.04828,42.02047,41.30604,41.2616,41.24653,41.09555,41.03397,40.63717,40.48025,40.16419,39.61553,39.33812,39.09315,38.61211,38.2491,38.10307,37.67506,36.73335,36.60007,36.56359,35.82117,35.76265,35.72364,35.6482,35.35382,35.10333,34.49371,34.15032,33.79793,33.4105,33.36808,32.22758,32.14982,31.83255,31.46107,31.33013,31.30042,30.90487,30.86788,30.86699,30.5503,30.40004,30.11023,30.06571,29.69293,29.57628,29.56222,29.51088,29.31506,29.29578,28.95638,28.77726,28.43948,28.35646,27.74155,27.41744,27.19468,26.90342,26.89848,26.80925,26.77152,26.047,25.98109,25.90289,25.88632,25.76622,25.75472,24.9641,24.91915,24.70212,24.11869,23.96558,23.60731,23.1912,23.09903,23.08216,22.04979,21.96295,21.95938,21.93372,21.66484,21.66272,21.50529,21.47102,21.16535,21.09826,21.03969,20.93476,20.62421,20.54275,20.49337,20.36855,20.34685,20.15438,20.05404,20.02799,19.80053,19.23279,19.13576,18.90321,18.89276,18.87763,18.79472,18.73317,18.63798,18.54537,18.31096,18.29364,18.24059,18.05849,17.9858,17.77163,17.48443,17.46767,17.39079,17.36898,17.27463,17.20885,17.12866,16.93266,16.67146,16.53643,16.05388,16.04348,15.98121,15.95425,15.77906,15.65976,15.59401,15.29481,15.15393,15.12137,15.08956,15.08418,15.06906,14.96282,14.80679,14.79581,14.74347,14.62877,14.56755,14.47944,14.27815,14.21197,14.17996,13.8359,13.82862,13.81279,13.6615,13.48367,13.42543,13.37775,13.09028,13.06464,13.06271,12.97383,12.76958,12.7249,12.66105,12.56921,12.48695,12.47072,12.44853,12.43231,12.11467,12.02759,12.01748,11.97141,11.90472,11.69613,11.57244,11.55062,11.06574,10.93838,10.82206,10.80878,10.73994,10.73349,10.72885,10.72781,10.68527,10.43028,10.37684,10.37428,10.37309,10.33534,10.26817,10.18719,10.08524,9.94223,9.92748,9.85581,9.79882,9.77866,9.70795,9.61037,9.5602,9.54057,9.37043,9.28641,9.18259,9.11674,9.0526,8.953060000000002,8.76031,8.7232,8.67393,8.57748,8.56188,8.5,8.4516,8.44073,8.393090000000003,8.39113,8.374980000000003,8.359830000000002,8.29461,8.23976,8.17703,8.16194,8.107620000000002,8.08574,8.0776,8.04182,7.9061,7.84943,7.72304,7.70433,7.66364,7.63006,7.56494,7.54777,7.52596,7.41003,7.37312,7.37163,7.3081,7.285,7.24049,7.1582,7.14245,7.11896,7.09677,7.05583,6.95369,6.93942,6.90059,6.88686,6.80796,6.75159,6.71538,6.71158,6.63063,6.61639,6.5694,6.47076,6.46507,6.46092,6.40728,6.38694,6.37832,6.37531,6.36271,5.99912,5.94872,5.8872,5.86423,5.745,5.69513,5.65862,5.65314,5.64672,5.61194,5.59324,5.56274,5.56212,5.55826,5.4697,5.46444,5.4578,5.40376,5.40116,5.24862,5.22451,5.21919,5.19524,5.1686,5.13567,5.02067,4.9828,4.97706,4.95008,4.9192,4.86633,4.7648,4.65656,4.63676,4.63523,4.51607,4.488000000000001,4.456800000000001,4.4487,4.43999,4.4325,4.371050000000001,4.28981,4.25235,4.23635,4.22906,4.151,3.84043,3.79644,3.78256,3.75612,3.73916,3.73583,3.73241,3.69826,3.66687,3.57388,3.5644,3.55272,3.46976,3.45334,3.42531,3.35798,3.30567,3.24248,3.21638,3.19717,3.12061,3.11582,3.01569,3.01225,2.99669,2.9941,2.96458,2.93475,2.92924,2.9098,2.90062,2.86378,2.85676,2.84658,2.84243,2.82348,2.82087,2.81553,2.80825,2.79113,2.76511,2.75117,2.7404,2.7184,2.70341,2.68056,2.65168,2.65032,2.64189,2.63955,2.63171,2.61762,2.55238,2.53478,2.46105,2.45488,2.4514,2.41988,2.4183,2.40277,2.39601,2.36709,2.36659,2.35892,2.34524,2.28355,2.27787,2.24991,2.21581,2.16974,2.15506,2.14366,2.12133,2.11936,2.06685,2.06474,2.016,1.97324,1.96998,1.96947,1.95784,1.94394,1.91664,1.9099,1.88668,1.85367,1.77115,1.72658,1.72385,1.68684,1.66953,1.66547,1.65341,1.61764,1.58286,1.57811,1.57471,1.55276,1.52957,1.51547,1.51302,1.45222,1.40843,1.39753,1.39525,1.38885,1.38709,1.32743,1.32717,1.32172,1.30096,1.2832,1.2814,1.27057,1.19882,1.18308,1.18048,1.17103,1.15998,1.11132,1.11031,1.05097,1.02858,1.01946,1.01895,0.99689,0.94735,0.90989,0.88899,0.88649,0.8638,0.85385,0.84522,0.844,0.81793,0.79908,0.79242,0.77669,0.73204,0.73164,0.70233,0.69299,0.69253,0.68714,0.68546,0.67234,0.67076,0.63576,0.63186,0.62507,0.61985,0.61477,0.61207,0.60081,0.59347,0.58731,0.57936,0.56498,0.56433,0.55365,0.52679,0.52201,0.51818,0.5108,0.50656,0.47985,0.47337,0.43437,0.42578,0.41856,0.41752,0.40257,0.39355,0.38244,0.36869,0.34674,0.34472,0.33469,0.31151,0.2898,0.25639,0.22057,0.21046,0.20344,0.2005,0.1834,0.17207,0.16483,0.15409,0.15288,0.14754,0.14746,0.14152,0.14108,0.13784,0.121,0.11914,0.11447,0.10848,0.10007,0.09908,0.09255,0.09046,0.08494,0.07114,0.07074,0.06669,0.05581,0.05194,0.05168,0.04946,0.04854,0.04746,0.04698,0.03556,0.03371,0.02781,0.02736,0.02599,0.02468,0.02261,0.02009,0.01916,0.01738,0.01733,0.01675,0.01477,0.01168,0.01149,0.01147,0.01139,0.01131,0.01116,0.00961,0.00931,0.00928,0.00883,0.00756,0.00718,0.00714,0.00556,0.00527,0.00477,0.00463,0.00433,0.00353,0.00336,0.00328,0.00284,0.00252,0.00221,0.00191,0.00186,0.00177,0.00156,0.00131,0.00101,0.00057,0.00028,0.00025,0.0002,0.00019,0.00019,0.00009,0.00003,0.00002,0.00002],"total":1624},{"name":"目黒区","values":[125.3903,105.81415,100.68113,98.77495,97.63795,95.72342,95.05644,86.31553,82.58974,80.40873,77.72061,76.53015,74.563,73.77355,72.83647,70.66982,68.27912,66.80466,66.06169,65.77545,61.32765,58.4433,57.54798,55.83781,55.60193,47.32989,47.23593,46.35822,45.88857,45.02995,44.82896,44.64739,43.50624,40.16696,39.46661,38.53579,34.75258,34.56002,34.50692,34.46714,32.23199,31.99562,31.57395,31.51726,31.29478,31.12456,30.55532,30.26244,30.2378,30.19732,28.90924,28.65803,28.51471,28.05516,27.82182,27.6002,27.44511,27.35945,26.94107,26.69265,26.04209,25.83932,25.7194,25.229,24.89075,24.826,24.43641,24.35563,24.16947,24.09395,24.08553,23.18769,22.95019,22.27713,22.18032,22.11556,21.88257,21.69835,19.06357,18.47366,18.32689,17.09541,17.05222,16.88995,16.4262,16.05066,15.90543,15.5142,15.31685,15.18191,15.10955,14.90824,13.83552,13.56376,13.50274,13.11153,13.09258,12.9349,12.83456,12.66077,12.1538,11.7974,11.6581,11.6309,11.56879,11.53678,11.53041,10.76838,10.43229,10.3101,9.98768,9.88899,9.77539,9.73598,9.68381,9.63151,9.33903,9.18519,8.842320000000003,8.65795,8.48552,8.27592,8.2705,7.85662,7.75436,7.69013,7.41075,7.32177,7.18027,7.13393,7.02544,7.02313,6.75802,6.55613,6.2318,6.05065,5.98451,5.93829,5.93598,5.80145,5.74843,5.40824,5.36164,5.13676,5.09193,4.94596,4.92584,4.92209,4.92095,4.86278,4.80831,4.69569,4.66547,4.61444,4.54051,4.52957,4.5133,4.496800000000001,4.38779,4.23048,4.162340000000001,3.87287,3.4607,3.42987,3.2806,3.22321,3.12682,3.11436,3.1032,2.94825,2.83856,2.78624,2.69474,2.68745,2.60726,2.58768,2.47451,2.3586,2.32752,2.28171,2.15453,2.15228,2.10094,1.95978,1.87908,1.87016,1.79522,1.70406,1.5864,1.54414,1.52213,1.46277,1.43748,1.41295,1.35115,1.32085,1.19433,1.17795,1.17098,1.14963,1.14356,1.14194,1.10078,1.03972,0.95269,0.86694,0.86455,0.86066,0.83066,0.79229,0.77134,0.73804,0.73676,0.73599,0.7237,0.64602,0.6361,0.59182,0.58335,0.53442,0.33991,0.33617,0.32112,0.23458,0.15366,0.13343,0.13192,0.08325],"total":1349},{"name":"中野区","values":[14.84078,12.07253,11.7442,10.72933,10.43039,9.61182,9.59891,9.31275,9.25115,9.11549,9.10957,9.0876,9.04406,8.961370000000002,8.84377,8.56241,7.83216,7.64464,7.64435,7.62907,7.5823,7.41718,7.40846,7.32301,7.27127,7.11638,7.10986,7.0907,7.07953,6.9812,6.97309,6.92649,6.82998,6.68166,6.6475,6.51633,6.44274,6.38272,6.33702,6.32095,6.31107,6.21384,6.2098,6.20903,6.19225,6.16898,6.10548,6.0951,6.04533,6.02359,5.99405,5.99142,5.98801,5.88302,5.86585,5.83663,5.73852,5.73,5.57966,5.56337,5.42919,5.42456,5.41758,5.40248,5.38904,5.37155,5.3357,5.31114,5.21643,5.21345,5.20711,5.16535,5.15074,5.06976,5.00108,4.98888,4.96757,4.95247,4.93189,4.87742,4.85845,4.8536,4.85287,4.84075,4.82806,4.80108,4.79754,4.73845,4.70057,4.63069,4.6229,4.56901,4.55075,4.53131,4.47102,4.45143,4.437890000000001,4.436930000000001,4.33877,4.32933,4.26655,4.25611,4.25041,4.21496,4.21115,4.21101,4.18152,4.155770000000001,4.13157,4.089870000000001,4.064390000000001,4.03716,4.00776,4.00443,4.00252,3.93265,3.8933,3.86941,3.84548,3.84265,3.77255,3.75679,3.67898,3.67264,3.66776,3.6637,3.61758,3.60277,3.60275,3.59191,3.58469,3.56633,3.55145,3.55056,3.50008,3.49699,3.45902,3.43081,3.41338,3.39307,3.34201,3.32771,3.28987,3.25311,3.24501,3.23773,3.18369,3.16785,3.15545,3.14387,3.09149,3.05236,3.02496,3.01239,2.9808,2.97453,2.96737,2.93727,2.93458,2.91999,2.89017,2.88163,2.87423,2.8637,2.86137,2.85945,2.85477,2.82598,2.7876,2.71548,2.69241,2.61805,2.60271,2.5822,2.50026,2.48276,2.44493,2.44484,2.42045,2.40308,2.38638,2.38276,2.37633,2.36045,2.35329,2.29469,2.29263,2.28414,2.27904,2.27095,2.22078,2.13794,2.1307,2.12742,2.1135,2.10125,2.0801,2.07526,2.06473,2.02718,1.95093,1.93674,1.92597,1.91326,1.89922,1.86163,1.82604,1.8067,1.79147,1.76906,1.73513,1.72578,1.70671,1.68898,1.68718,1.60343,1.57744,1.5716,1.55507,1.45612,1.45596,1.25108,1.23304,1.233,0.9413,0.85149,0.83912,0.69278,0.6815,0.66354,0.64435,0.64023,0.48231,0.32511,0.28077,0.13431],"total":1328},{"name":"板橋区","values":[17.44625,16.02353,14.32143,14.12573,14.02988,13.49249,13.41028,12.80964,12.66056,12.21226,12.19155,11.99806,11.70316,11.0022,10.80987,10.55321,10.13471,10.12621,10.0954,10.09217,9.93072,9.4679,9.27334,9.20044,8.93153,8.92761,8.82597,8.78131,8.4461,8.158390000000002,8.13515,8.11667,8.1004,8.03632,7.65197,7.63691,7.60381,7.43039,7.38175,7.33947,7.25849,7.22947,7.22941,7.17294,7.15054,7.02864,6.98349,6.96568,6.85845,6.74178,6.59748,6.4393,5.99487,5.91248,5.901,5.83469,5.64762,5.64538,5.54334,5.40856,5.26434,5.20751,5.16026,5.14276,5.13138,4.9095,4.76844,4.7423,4.59801,4.54326,4.46207,4.361170000000001,4.351790000000001,4.2265,4.22316,4.087,4.07396,4.07182,4.06757,4.062350000000001,4.04456,4.00206,4.00015,3.95466,3.9518,3.88409,3.83463,3.80383,3.73822,3.69615,3.69204,3.53457,3.50652,3.46359,3.37276,3.28875,3.27641,3.21653,3.1625,3.15897,3.14496,3.11196,2.99896,2.99073,2.94538,2.92737,2.91752,2.90973,2.90092,2.86368,2.86312,2.85557,2.83968,2.77658,2.73951,2.67359,2.64418,2.62697,2.56751,2.54709,2.52686,2.50508,2.49164,2.41975,2.38927,2.34315,2.33802,2.31088,2.30109,2.28673,2.21583,2.19994,2.12142,2.11686,2.06504,2.04716,2.03518,2.01735,2.01465,2.00297,1.95953,1.95622,1.95068,1.8931,1.86873,1.84699,1.81685,1.80081,1.79357,1.76002,1.691,1.67351,1.61982,1.57075,1.48849,1.48543,1.47662,1.45141,1.45102,1.43917,1.41856,1.4144,1.3037,1.29209,1.26881,1.23902,1.2389,1.23875,1.20919,1.1944,1.19251,1.19142,1.16894,1.15855,1.15727,1.15218,1.10962,1.0898,1.07228,1.03248,0.98753,0.96774,0.96062,0.94721,0.93621,0.90646,0.88822,0.86003,0.84302,0.83831,0.80949,0.80753,0.79787,0.79347,0.79203,0.78628,0.77838,0.75725,0.7453,0.72922,0.72517,0.72218,0.71554,0.7121,0.70978,0.70521,0.70505,0.69926,0.69707,0.68795,0.67554,0.67293,0.65715,0.65453,0.65443,0.64738,0.63499,0.631,0.60677,0.60306,0.60027,0.58168,0.57531,0.57374,0.57119,0.54878,0.54561,0.54295,0.54102,0.53103,0.5299,0.52559,0.52302,0.52189,0.51836,0.51455,0.51312,0.50804,0.50076,0.49721,0.49348,0.48427,0.48273,0.48139,0.48078,0.46951,0.44729,0.44663,0.43635,0.43112,0.42952,0.41605,0.41408,0.41229,0.41045,0.40456,0.39688,0.39145,0.38918,0.388,0.38758,0.38698,0.3847,0.34414,0.3381,0.33367,0.32966,0.32427,0.32132,0.31507,0.31173,0.30972,0.30865,0.30329,0.29987,0.29243,0.29234,0.29223,0.29091,0.28987,0.28406,0.28281,0.28065,0.28014,0.27889,0.27399,0.26633,0.26101,0.25774,0.25595,0.24889,0.24857,0.24028,0.24015,0.24015,0.23819,0.23582,0.23301,0.23009,0.22331,0.21879,0.21808,0.21316,0.20464,0.19996,0.1996,0.19544,0.19443,0.19318,0.18886,0.18868,0.18841,0.18758,0.1871,0.1843,0.18054,0.17359,0.17356,0.17325,0.17129,0.16633,0.16192,0.15742,0.15669,0.15364,0.15222,0.15142,0.14803,0.14577,0.14397,0.14289,0.1423,0.14198,0.14008,0.13906,0.13858,0.13758,0.13626,0.13532,0.13462,0.12985,0.12858,0.12576,0.12547,0.12356,0.11928,0.11891,0.11802,0.11765,0.11602,0.11208,0.11045,0.10867,0.10769,0.10756,0.10607,0.10346,0.10122,0.09975,0.09643,0.09547,0.09537,0.09509,0.09461,0.09393,0.09104,0.08987,0.08965,0.08866,0.08768,0.08748,0.08665,0.08659,0.08507,0.08468,0.08367,0.08266,0.08187,0.08011,0.07878,0.07687,0.07329,0.07322,0.07116,0.07001,0.06789,0.06786,0.06584,0.06483,0.0639,0.06364,0.06124,0.05927,0.05893,0.05757,0.05546,0.05507,0.05506,0.05289,0.05113,0.05109,0.05094,0.04973,0.04954,0.04914,0.04876,0.04864,0.0477,0.04754,0.04687,0.04546,0.0452,0.04172,0.04023,0.04004,0.03951,0.0388,0.03788,0.03767,0.03733,0.03729,0.03656,0.03652,0.03535,0.03523,0.03485,0.03345,0.03279,0.03273,0.03218,0.03112,0.02927,0.02691,0.02688,0.02621,0.02497,0.02497,0.02478,0.02433,0.02426,0.02294,0.02252,0.02186,0.02178,0.02175,0.02087,0.02059,0.02043,0.02035,0.01949,0.01887,0.01878,0.01829,0.01732,0.01654,0.01649,0.01645,0.01549,0.01519,0.01487,0.01375,0.01263,0.01149,0.01048,0.00937,0.00876,0.00838,0.00785,0.00766,0.00692,0.0069,0.00686,0.00681,0.00582,0.00572,0.00558,0.00553,0.00501,0.0039,0.00297,0.00203,0.00177,0.00141,0.00121,0.00108,0.00069,0.00022,0.00002,0.00001],"total":1189},{"name":"豊島区","values":[15.9213,15.36358,15.32963,14.93441,14.841,14.71754,14.26158,14.07292,13.94789,13.66444,13.46855,13.46799,13.19075,13.162,13.1544,12.88815,12.88621,12.86374,12.06894,11.96038,11.91068,11.86863,11.78723,11.77872,11.44932,10.84537,10.60869,10.47727,10.40346,10.25584,9.98196,9.96321,9.87126,9.76444,9.2818,9.24691,9.001580000000002,8.34915,8.12773,8.07911,7.94944,7.91264,7.74999,7.66401,7.45817,6.94085,6.79458,6.17917,5.27957,5.15071,4.56707,4.02198,3.89648,3.84476,3.76645,3.6196,3.53813,3.515,3.47171,3.38176,3.20694,2.9246,2.91404,2.89946,2.88134,2.86447,2.80704,2.76784,2.63834,2.63499,2.5876,2.56757,2.53649,2.52144,2.47672,2.43484,2.4323,2.42554,2.35248,2.24752,2.10177,2.08651,2.08559,2.07907,2.07177,2.06491,2.06207,2.0326,1.97472,1.89733,1.88876,1.87233,1.81193,1.77188,1.70835,1.61703,1.60622,1.57415,1.56326,1.54743,1.54104,1.53737,1.53558,1.48999,1.46179,1.46096,1.34805,1.34799,1.3282,1.28201,1.27643,1.25741,1.25198,1.22779,1.2152,1.21014,1.19446,1.18359,1.16906,1.15467,1.14901,1.13522,1.12309,1.12089,1.09967,1.09548,1.06924,1.06535,1.04615,1.01658,1.00866,0.99267,0.94059,0.90822,0.89636,0.89543,0.85819,0.83053,0.80659,0.788,0.78611,0.77786,0.76547,0.76083,0.73842,0.73637,0.72531,0.71451,0.71224,0.69367,0.69112,0.68722,0.6813,0.66657,0.66646,0.65622,0.64488,0.63373,0.61384,0.60665,0.58557,0.5588,0.54241,0.54224,0.53988,0.5135,0.50863,0.50316,0.44773,0.42664,0.41841,0.40603,0.39133,0.38916,0.38338,0.38194,0.3635,0.36239,0.36036,0.34928,0.34235,0.33794,0.3283,0.31581,0.29355,0.26177,0.22658,0.20959,0.20883,0.17868,0.14436,0.13394,0.13158,0.12721,0.12636,0.10127,0.06547,0.0505,0.04614],"total":877},{"name":"荒川区","values":[71.82081,63.64013,52.5538,50.00041,48.88016,47.30094,45.15852,44.44659,44.28894,44.14387,43.82655,42.62381,41.92362,40.41607,39.04956,38.26607,37.89794,37.80211,37.39654,34.46617,34.25721,33.71036,33.51516,31.38808,30.99552,30.51934,28.50404,27.70596,26.92828,26.71863,26.31195,25.90004,25.74765,25.33618,25.1171,24.30964,22.52125,22.30162,21.06719,20.48488,18.97222,18.09681,17.97159,17.9579,17.76952,17.40628,16.78975,16.64981,15.92689,15.48071,15.47547,14.31668,13.95539,13.89922,12.58332,12.07131,11.83828,11.66673,11.217,10.87772,10.63521,10.42331,9.75163,9.41168,8.31991,8.24828,8.086220000000003,8.01709,7.83237,7.6505,7.42444,7.17729,6.79232,6.23084,5.89079,5.71457,5.14326,5.04018,4.71004,4.59816,4.45221,4.38051,4.34897,4.23979,4.23766,4.201170000000001,3.96699,3.77284,3.72919,3.61548,3.28878,3.26637,3.18517,3.16387,2.57942,2.55439,2.53625,2.08678,2.062,1.91873,1.84894,1.83829,1.70236,1.67565,1.49748,1.45451,0.98186,0.93751,0.87148,0.73647,0.60024,0.58673,0.56454,0.51663,0.48541,0.47811,0.4387,0.43068,0.41543,0.33975,0.3192,0.31567,0.29352,0.29297,0.27537,0.2571,0.25054,0.24731,0.22354,0.15987,0.11172,0.09591,0.08829,0.08205,0.06317,0.04796,0.04722,0.04208,0.03891,0.03452,0.02421,0.0231,0.0178,0.01221,0.01171,0.00847,0.00762,0.00395,0.00357,0.00236,0.0017,0.00146,0.00109,0.00096,0.00022],"total":835},{"name":"北区","values":[20.84001,19.69602,18.85042,18.65205,17.22409,14.72235,13.99927,13.74471,13.13137,12.57889,11.23364,10.64553,10.63042,10.61809,9.6231,9.05927,8.527810000000002,8.501390000000002,8.42531,8.36407,8.309340000000002,8.10342,7.95905,7.69202,7.24503,7.21877,6.88756,6.88545,6.77075,6.46663,6.37299,5.44744,5.25575,5.2353,5.12812,4.97019,4.95343,4.95087,4.81556,4.79936,4.77689,4.52284,4.50449,4.48178,4.26722,4.257030000000001,4.13768,3.89359,3.87969,3.76497,3.66807,3.65575,3.54256,3.53151,3.47925,3.39509,3.32062,3.28271,3.15585,3.15037,3.1435,3.06469,3.01493,2.98963,2.88963,2.76036,2.75044,2.62409,2.53727,2.32505,2.30335,2.23924,2.23069,2.18044,2.15573,1.92102,1.8459,1.78951,1.76536,1.76041,1.72666,1.70387,1.69502,1.65024,1.61241,1.57016,1.55297,1.54738,1.51589,1.50875,1.46278,1.40933,1.38196,1.32405,1.31772,1.27249,1.26627,1.25338,1.24333,1.21593,1.21258,1.19058,1.17288,1.07488,1.05526,1.04934,1.02251,1.01957,1.00351,0.99857,0.96363,0.95779,0.93198,0.92509,0.89583,0.88906,0.87198,0.86487,0.84485,0.84201,0.77679,0.7563,0.74136,0.70611,0.60181,0.58168,0.57848,0.57023,0.56193,0.55395,0.5459,0.54167,0.51343,0.51067,0.5012,0.47953,0.47504,0.46127,0.45026,0.44669,0.44401,0.44271,0.44025,0.43766,0.42072,0.41844,0.41336,0.411,0.40216,0.39974,0.39957,0.38099,0.37547,0.36319,0.35013,0.31799,0.31194,0.30849,0.30406,0.29778,0.29764,0.29557,0.28914,0.27807,0.27437,0.26409,0.25628,0.2415,0.24006,0.23595,0.21828,0.21747,0.21535,0.2135,0.20528,0.19547,0.19537,0.19152,0.1905,0.19038,0.18619,0.18545,0.17492,0.16518,0.15539,0.1519,0.14557,0.13211,0.132,0.13052,0.12503,0.12423,0.12324,0.12304,0.12035,0.11844,0.11675,0.1165,0.11353,0.10851,0.09781,0.09605,0.09444,0.09354,0.09142,0.08711,0.0865,0.08591,0.08408,0.08287,0.08211,0.08009,0.07503,0.07409,0.07381,0.06709,0.06647,0.06314,0.05337,0.05337,0.04706,0.04644,0.04579,0.04512,0.04493,0.04377,0.04093,0.03933,0.03809,0.03728,0.03656,0.03543,0.03469,0.03423,0.03291,0.0324,0.03212,0.03108,0.03026,0.03018,0.02897,0.02887,0.02859,0.0266,0.026,0.02586,0.0257,0.02553,0.02457,0.02279,0.02252,0.02136,0.02121,0.02067,0.02024,0.02019,0.01858,0.01758,0.01735,0.017,0.01679,0.01462,0.01319,0.01204,0.01201,0.01172,0.01167,0.01129,0.01104,0.00985,0.00974,0.00819,0.0078,0.0078,0.00752,0.00724,0.00702,0.00588,0.00566,0.00522,0.0036,0.00359,0.0035,0.00347,0.0033,0.00293,0.00252,0.00171,0.00116,0.00096,0.00044,0.0004,0.00021,0.00001],"total":478},{"name":"江東区","values":[207.28703,196.48173,182.03958,166.73997,158.6418,99.72293,91.40703,83.7066,78.18247,73.40849,70.57093,64.77373,62.31299,61.72299,60.40593,58.47981,53.17936,51.97096,50.91116,47.53897,45.04084,43.99481,40.44751,36.84547,36.54596,35.62444,35.25853,35.18103,33.97673,32.34752,30.95963,30.07975,27.21507,25.05606,24.67019,23.7673,22.553,22.05039,20.04083,19.70346,18.65889,16.16448,15.65515,15.38678,13.81525,13.57429,13.42539,13.12623,12.32374,11.99246,11.74848,11.55936,10.80589,10.62656,10.13,9.96301,9.05491,8.57666,8.32992,7.77563,7.74247,7.7184,7.33807,7.16966,7.15014,7.14052,6.6317,6.32993,5.81908,5.81831,5.75047,5.49785,5.38923,5.25648,5.19904,5.11295,5.10372,4.99334,4.65438,4.63031,4.46948,4.44911,4.42995,4.39597,4.18318,3.92524,3.91236,3.77763,3.66026,3.52754,3.50235,3.41274,3.36913,3.36077,3.29631,3.25154,3.11515,2.98515,2.94768,2.9135,2.84375,2.77896,2.5158,2.25129,2.20083,2.02454,1.91387,1.90027,1.8477,1.80739,1.75279,1.7171,1.70261,1.68971,1.68457,1.68278,1.66186,1.63862,1.60317,1.60061,1.53822,1.53297,1.51054,1.50473,1.46301,1.4592,1.38658,1.36471,1.33888,1.3232,1.31322,1.20967,1.20254,1.2003,1.19687,1.18964,1.15792,1.1447,1.14323,1.13477,1.12455,1.11664,1.11329,1.11025,1.09888,1.0143,0.98714,0.94984,0.94502,0.94191,0.93211,0.9118,0.90952,0.9019,0.87172,0.85916,0.81745,0.78175,0.77008,0.72753,0.7009,0.68465,0.66518,0.65434,0.6473,0.62497,0.61641,0.60835,0.60743,0.59931,0.58389,0.56695,0.56089,0.55903,0.55463,0.54633,0.54033,0.53438,0.52462,0.49453,0.48993,0.47083,0.45794,0.45156,0.44056,0.42766,0.41501,0.41132,0.40624,0.40286,0.38382,0.38074,0.37806,0.37585,0.37494,0.36301,0.34941,0.34707,0.33596,0.33187,0.32637,0.31941,0.3088,0.30565,0.29451,0.2931,0.28936,0.27693,0.2637,0.2558,0.25568,0.24787,0.2458,0.2384,0.23498,0.23441,0.23355,0.22888,0.2267,0.22604,0.22148,0.21559,0.20645,0.20362,0.19832,0.18792,0.18508,0.17878,0.17343,0.17228,0.17041,0.17,0.16899,0.16175,0.16041,0.15743,0.15665,0.15417,0.15254,0.15077,0.14893,0.14386,0.14326,0.14248,0.13629,0.13429,0.13383,0.13349,0.133,0.13181,0.13108,0.12904,0.11958,0.11885,0.11876,0.11867,0.11804,0.11651,0.11327,0.11317,0.11182,0.10989,0.10962,0.10806,0.10458,0.09869,0.09395,0.09201,0.09082,0.08685,0.08505,0.08475,0.08439,0.08398,0.08334,0.08027,0.08001,0.07926,0.07891,0.07763,0.07582,0.07493,0.07487,0.07254,0.07243,0.07232,0.07195,0.07112,0.06946,0.06884,0.0687,0.0683,0.06801,0.06793,0.06663,0.06649,0.066,0.06571,0.06554,0.06328,0.06313,0.06262,0.06147,0.06134,0.06121,0.06029,0.06,0.05852,0.05718,0.05627,0.0557,0.05494,0.05254,0.05235,0.05226,0.05146,0.04888,0.04779,0.04725,0.04696,0.04557,0.04524,0.04457,0.04411,0.04349,0.04344,0.04292,0.04286,0.04161,0.04137,0.04103,0.04087,0.04054,0.03789,0.03672,0.03631,0.03602,0.03437,0.03389,0.03373,0.03357,0.03261,0.03244,0.03244,0.03153,0.03128,0.03098,0.03098,0.0308,0.03027,0.02977,0.0288,0.02818,0.02794,0.02767,0.02736,0.02699,0.02694,0.02673,0.02655,0.02602,0.02572,0.02553,0.02534,0.02513,0.0251,0.02502,0.02471,0.02456,0.02453,0.02453,0.02367,0.02355,0.0234,0.02331,0.02298,0.02249,0.02245,0.02213,0.02125,0.0212,0.02105,0.02093,0.02047,0.02037,0.02031,0.02024,0.02021,0.01944,0.01921,0.01873,0.01851,0.01836,0.018,0.01781,0.01772,0.01738,0.01708,0.01645,0.01643,0.01615,0.01591,0.01583,0.01555,0.01526,0.01513,0.015,0.01467,0.01453,0.01436,0.01431,0.01396,0.01387,0.01369,0.01359,0.01354,0.01307,0.01257,0.01227,0.01219,0.0113,0.01123,0.01113,0.01085,0.01072,0.01037,0.01029,0.0102,0.00995,0.00995,0.00988,0.00953,0.00939,0.0091,0.00896,0.00891,0.00882,0.00878,0.00867,0.00867,0.00864,0.00809,0.00806,0.00804,0.00781,0.00777,0.00763,0.00758,0.00747,0.00744,0.00709,0.007,0.007,0.00693,0.00691,0.00686,0.00667,0.00665,0.00648,0.0061,0.00582,0.0058,0.00561,0.00553,0.00553,0.00539,0.00539,0.00537,0.00532,0.00529,0.00516,0.005,0.005,0.00495,0.00476,0.00444,0.00431,0.00426,0.00407,0.00403,0.00398,0.00388,0.00382,0.00365,0.00362,0.0036,0.00358,0.00355,0.00352,0.00338,0.00334,0.00333,0.0033,0.00329,0.00327,0.00326,0.00319,0.00318,0.00317,0.00316,0.00309,0.00285,0.00282,0.00277,0.00269,0.00268,0.00245,0.00242,0.00234,0.00232,0.00224,0.00218,0.00206,0.00199,0.00189,0.00188,0.00186,0.00183,0.00183,0.00178,0.00177,0.00173,0.0017,0.00169,0.00156,0.00154,0.00146,0.00143,0.00143,0.00141,0.00135,0.00129,0.00128,0.00126,0.00126,0.00124,0.00114,0.0011,0.00103,0.00102,0.00096,0.00092,0.0009,0.00089,0.00085,0.0008,0.0008,0.00075,0.00074,0.00073,0.00071,0.00071,0.00071,0.0007,0.0007,0.00067,0.00066,0.00064,0.00063,0.00062,0.00056,0.00055,0.00052,0.00052,0.0005,0.0005,0.00046,0.00035,0.00034,0.00032,0.00031,0.00028,0.00028,0.00027,0.00025,0.00025,0.00025,0.00024,0.00023,0.00023,0.00022,0.00022,0.0002,0.0002,0.00018,0.00015,0.00012,0.0001,0.00009,0.00009,0.00009,0.00008,0.00008,0.00007,0.00006,0.00006,0.00006,0.00004,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001],"total":225},{"name":"台東区","values":[14.22594,11.87637,5.84461,5.39968,5.11599,4.150350000000001,4.11037,3.89655,3.79992,3.79672,3.78335,3.77804,3.60593,3.59927,3.35403,3.33223,3.14049,3.11857,3.07356,3.00421,2.88174,2.85234,2.84354,2.78885,2.75683,2.71171,2.59548,2.59211,2.582,2.58174,2.54811,2.31503,2.29961,2.21431,2.18787,2.13283,2.05261,2.01077,1.94784,1.7543,1.7306,1.7199,1.68288,1.61513,1.60902,1.49698,1.48852,1.48686,1.46049,1.46,1.43046,1.41731,1.40128,1.37092,1.33349,1.29851,1.27463,1.26747,1.14728,1.13764,1.13344,1.01578,0.96373,0.87523,0.78357,0.76951,0.75415,0.74607,0.73597,0.6979,0.68868,0.59748,0.58567,0.48232,0.47802,0.47307,0.4466,0.44409,0.36498,0.36025,0.35432,0.31568,0.29051,0.29046,0.28163,0.2775,0.25537,0.22262,0.21964,0.19164,0.18495,0.16979,0.16534,0.15692,0.14441,0.13837,0.13674,0.13319,0.13014,0.12694,0.1237,0.12343,0.11966,0.11671,0.11478,0.10896,0.10114,0.10017,0.08971,0.08511,0.08476,0.07945,0.07477,0.07085,0.06621,0.06513,0.06086,0.05923,0.05918,0.05831,0.05823,0.0565,0.05444,0.05394,0.04781,0.0473,0.04556,0.04503,0.04116,0.04073,0.03764,0.03368,0.03146,0.02984,0.02973,0.02893,0.02721,0.02639,0.01995,0.01954,0.01697,0.01686,0.01667,0.01542,0.01165,0.01148,0.01051,0.00833,0.00726,0.007,0.00459,0.00313,0.00176,0.00128,0.00065],"total":143},{"name":"文京区","values":[16.05674,12.94731,10.57107,10.2396,7.29224,3.95758,3.75767,2.86061,2.78216,2.56378,2.00219,1.94961,1.88755,1.8527,1.84578,1.84354,1.79849,1.6989,1.60351,1.56543,1.5449,1.47734,1.43021,1.41403,1.3574,1.26607,1.26333,1.23112,1.09688,0.98348,0.97252,0.94438,0.90023,0.87316,0.85516,0.83752,0.81708,0.75461,0.72107,0.71801,0.71718,0.60733,0.60596,0.58327,0.55035,0.50321,0.49452,0.49283,0.48691,0.44281,0.44122,0.43677,0.41432,0.4044,0.4001,0.39114,0.38917,0.38462,0.36624,0.36,0.35837,0.34474,0.34146,0.33825,0.33472,0.30758,0.30514,0.23959,0.2316,0.215,0.18728,0.18042,0.17764,0.17043,0.16172,0.16136,0.16,0.15077,0.14959,0.14912,0.13658,0.12893,0.1264,0.11872,0.11853,0.11055,0.09952,0.09714,0.08006,0.07792,0.07331,0.07249,0.07163,0.0712,0.06821,0.06323,0.06195,0.05847,0.05634,0.05243,0.04816,0.0476,0.04738,0.04698,0.04424,0.04114,0.03988,0.03937,0.0386,0.03541,0.03238,0.03097,0.02918,0.02697,0.02619,0.02538,0.0235,0.02316,0.0225,0.01934,0.0188,0.01871,0.01826,0.01811,0.01589,0.01574,0.01452,0.01382,0.01379,0.01309,0.01282,0.01186,0.01129,0.01118,0.01009,0.00998,0.00917,0.00888,0.00874,0.00851,0.00843,0.00787,0.0077,0.00737,0.00692,0.0066,0.00635,0.00568,0.00556,0.00551,0.00531,0.00523,0.00417,0.00414,0.0038,0.00317,0.00273,0.00261,0.00235,0.0022,0.00211,0.00205,0.00186,0.00158,0.00146,0.00143,0.00089,0.00088,0.00055,0.00049,0.00045,0.00025],"total":127},{"name":"渋谷区","values":[13.18941,11.49263,8.58844,7.45468,4.77214,4.7317,4.64668,4.53411,4.52162,4.46531,3.95519,3.90035,3.88624,3.80611,3.65071,3.64891,3.45385,3.37781,3.31307,3.06861,2.99269,2.9507,2.90206,2.83955,2.81081,2.70078,2.64691,2.64064,2.6257,2.57514,2.5253,2.49009,2.47525,2.42179,2.4197,2.39078,2.3747,2.37095,2.35682,2.33683,2.3255,2.2354,2.18891,2.11738,2.10036,2.08571,2.04702,2.01712,1.988,1.98575,1.97729,1.95751,1.93531,1.9244,1.92159,1.91825,1.9175,1.8567,1.8479,1.82363,1.80271,1.76207,1.75591,1.69587,1.67134,1.67058,1.66091,1.65691,1.65609,1.64207,1.63504,1.61973,1.60273,1.5879,1.57698,1.56479,1.51464,1.49774,1.47547,1.43516,1.41949,1.38691,1.37238,1.35198,1.34357,1.34117,1.33795,1.33322,1.32967,1.32342,1.27358,1.24893,1.24138,1.22308,1.21829,1.20571,1.20434,1.2002,1.19704,1.19553,1.18702,1.16972,1.16641,1.1566,1.15204,1.13292,1.13058,1.12451,1.11194,1.10596,1.1028,1.09118,1.08973,1.08839,1.08631,1.08235,1.04372,1.02713,1.01621,1.01154,1.00908,1.00553,0.98187,0.96862,0.94321,0.94267,0.9382,0.92914,0.91943,0.90663,0.8938,0.88514,0.86236,0.86016,0.8585,0.84718,0.82709,0.8239,0.82057,0.81866,0.81225,0.80011,0.79853,0.79754,0.79296,0.77319,0.7536,0.74534,0.73904,0.7184,0.71132,0.71003,0.70942,0.70681,0.66229,0.64028,0.63802,0.63679,0.62546,0.61489,0.60964,0.6075,0.58769,0.58312,0.55699,0.5532,0.54339,0.54058,0.53653,0.53515,0.53392,0.5284,0.52805,0.528,0.50881,0.50738,0.50398,0.49991,0.49979,0.47274,0.46299,0.45884,0.4559,0.45022,0.42994,0.42973,0.4206,0.39335,0.36414,0.34137,0.34014,0.33835,0.33074,0.30537,0.29201,0.26991,0.23101,0.22603,0.19996,0.19703,0.18421,0.18241,0.17463,0.17068,0.15471,0.14303,0.12557,0.12401,0.10198,0.09914,0.08666,0.08011,0.0605,0.05862,0.04657,0.03898,0.02344,0.02247,0.0212,0.02096,0.01854,0.01072,0.01048,0.00671,0.00537,0.00224,0.00133,0.0006,0.0005,0.00013],"total":114},{"name":"新宿区","values":[2.3884,2.30082,2.25504,2.17663,2.02973,2.02601,2.02578,1.90062,1.89165,1.88684,1.77581,1.68307,1.60962,1.59893,1.53575,1.50069,1.47013,1.44072,1.3487,1.32404,1.30466,1.29294,1.28419,1.28054,1.2804,1.23325,1.21885,1.20642,1.18372,1.17527,1.08025,1.05539,1.0502,1.04742,1.02359,1.00734,0.97873,0.86382,0.86272,0.8622,0.8589,0.8487,0.8435,0.83428,0.81547,0.79065,0.74625,0.74292,0.74135,0.73706,0.71612,0.68595,0.67504,0.63979,0.63869,0.61927,0.61866,0.60589,0.5829,0.54075,0.5393,0.53141,0.5168,0.51351,0.50419,0.49905,0.49525,0.49388,0.47161,0.46871,0.4641,0.45901,0.43623,0.43384,0.43292,0.42988,0.3942,0.38564,0.38524,0.38366,0.37821,0.35609,0.35097,0.34033,0.32945,0.31668,0.31661,0.30834,0.29416,0.29376,0.28753,0.28414,0.27392,0.27279,0.27123,0.26529,0.2578,0.25754,0.2528,0.25208,0.24788,0.24522,0.24027,0.238,0.23754,0.23669,0.22709,0.22251,0.21741,0.20762,0.20729,0.20673,0.19493,0.19087,0.18906,0.18755,0.1848,0.183,0.17782,0.17093,0.16948,0.16716,0.16119,0.15652,0.14937,0.14529,0.14447,0.14103,0.13951,0.13361,0.13343,0.1329,0.13222,0.12931,0.12843,0.12019,0.11578,0.10898,0.1085,0.1079,0.10464,0.1004,0.09727,0.09579,0.09195,0.09148,0.08744,0.08674,0.08488,0.084,0.07745,0.0759,0.07352,0.07194,0.0717,0.06674,0.06659,0.06463,0.06405,0.06326,0.0607,0.05986,0.0561,0.04937,0.04912,0.04829,0.0465,0.04574,0.04525,0.04477,0.03887,0.03714,0.0371,0.03472,0.03293,0.0329,0.02951,0.02917,0.0276,0.0274,0.02711,0.02708,0.02644,0.02638,0.02595,0.02584,0.02494,0.0249,0.02476,0.02467,0.02316,0.02311,0.02293,0.02247,0.02167,0.02151,0.02098,0.01983,0.01964,0.0192,0.01894,0.01832,0.01832,0.01676,0.01499,0.01463,0.0141,0.01269,0.01245,0.01139,0.0099,0.00973,0.0095,0.00944,0.00877,0.00829,0.00793,0.00786,0.00772,0.00715,0.00705,0.00683,0.00664,0.00645,0.00613,0.0059,0.00548,0.00542,0.00527,0.00503,0.00502,0.00495,0.00485,0.00477,0.00473,0.0046,0.00456,0.00433,0.0043,0.00422,0.00414,0.00401,0.00379,0.00366,0.00364,0.00356,0.00346,0.00346,0.00341,0.0033,0.00322,0.00296,0.00275,0.00265,0.00258,0.00253,0.00239,0.00216,0.00216,0.00198,0.00188,0.00183,0.00174,0.00173,0.00168,0.00164,0.00157,0.00154,0.00154,0.00131,0.00117,0.00115,0.00113,0.00111,0.00104,0.00094,0.00093,0.00066,0.00049,0.00031,0.00027,0.00024,0.00006,0.00004],"total":103},{"name":"港区","values":[3.04773,1.85014,1.23759,1.07475,0.85196,0.68708,0.38477,0.34701,0.30991,0.29914,0.26208,0.23181,0.23079,0.21934,0.21813,0.21147,0.20401,0.19872,0.197,0.1956,0.19111,0.19034,0.18884,0.17821,0.1774,0.17458,0.17156,0.17114,0.16957,0.16736,0.1646,0.15868,0.1565,0.15018,0.1491,0.14903,0.14505,0.14063,0.1405,0.13898,0.13576,0.13527,0.1348,0.13429,0.13005,0.12923,0.12799,0.12771,0.12699,0.12677,0.1266,0.1266,0.12541,0.12521,0.12504,0.12247,0.12187,0.11981,0.11954,0.11823,0.11772,0.11696,0.11693,0.11654,0.11574,0.11551,0.1154,0.11435,0.11404,0.11305,0.11153,0.11063,0.11061,0.10994,0.10962,0.10962,0.10962,0.10925,0.10874,0.10851,0.10469,0.10337,0.102,0.10084,0.10067,0.10047,0.09821,0.09797,0.09756,0.09721,0.09679,0.0963,0.09563,0.09436,0.09416,0.09354,0.09288,0.09239,0.09224,0.09025,0.08995,0.08968,0.08842,0.08709,0.08657,0.0864,0.0849,0.08433,0.08375,0.08276,0.08112,0.07786,0.07782,0.07714,0.07373,0.07273,0.07263,0.07184,0.07177,0.07105,0.07085,0.07083,0.07016,0.06963,0.0694,0.06909,0.06819,0.06808,0.06757,0.06733,0.06673,0.06607,0.0657,0.06526,0.06288,0.06286,0.06279,0.06237,0.06168,0.06163,0.06051,0.06028,0.05811,0.05721,0.0571,0.05708,0.05683,0.05581,0.05539,0.0551,0.05404,0.05334,0.05322,0.05308,0.05287,0.05279,0.0525,0.05064,0.05037,0.0501,0.04937,0.04764,0.04757,0.04706,0.04693,0.04574,0.04527,0.04516,0.0451,0.04497,0.04465,0.04384,0.04184,0.04035,0.04027,0.04008,0.03973,0.03961,0.03838,0.03751,0.03708,0.03657,0.0359,0.03547,0.03512,0.03476,0.03421,0.03411,0.03397,0.03366,0.03318,0.03316,0.03283,0.03277,0.03265,0.03167,0.03161,0.03135,0.03129,0.03123,0.03081,0.03049,0.02977,0.02949,0.02946,0.02906,0.02798,0.0274,0.02709,0.02705,0.02694,0.0254,0.02445,0.02425,0.02407,0.0236,0.02322,0.02309,0.02286,0.02284,0.02279,0.02236,0.02235,0.02229,0.02163,0.02143,0.0213,0.02127,0.02123,0.02082,0.02039,0.02011,0.0196,0.01921,0.01908,0.01896,0.0189,0.01886,0.01884,0.01857,0.01855,0.01777,0.01741,0.0172,0.01688,0.01673,0.0165,0.01644,0.0158,0.01579,0.01539,0.0153,0.0152,0.01431,0.01388,0.01348,0.01311,0.01307,0.01282,0.01278,0.01264,0.01249,0.01235,0.01169,0.01164,0.01147,0.01144,0.01099,0.01053,0.0085,0.00844,0.00837,0.00778,0.00771,0.00756,0.00683,0.00682,0.00616,0.00576,0.00574,0.00569,0.00559,0.00557,0.00536,0.0053,0.00518,0.00518,0.00516,0.00504,0.00501,0.00495,0.00494,0.00489,0.00474,0.00465,0.00451,0.00427,0.00414,0.00407,0.00404,0.00389,0.00384,0.00378,0.00341,0.00341,0.00334,0.00303,0.00301,0.00284,0.0028,0.00266,0.00232,0.00213,0.00209,0.00203,0.00169,0.00155,0.00142,0.0013,0.00128,0.00108,0.00099,0.00089,0.00088,0.00088,0.00023,0.00006,0.00004],"total":8},{"name":"中央区","values":[4.6714,2.42023,2.02529,1.73193,1.62501,1.23919,1.08003,0.91935,0.87724,0.78922,0.76003,0.74781,0.7329,0.43511,0.42625,0.39206,0.36339,0.35663,0.35204,0.34937,0.3482,0.34776,0.34667,0.34553,0.33416,0.318,0.26504,0.24394,0.21009,0.20064,0.19338,0.1931,0.19195,0.18877,0.18589,0.18544,0.18497,0.1833,0.18231,0.18231,0.18199,0.18147,0.18087,0.17875,0.17763,0.17698,0.17096,0.16698,0.16651,0.16554,0.16466,0.16461,0.16457,0.14729,0.13755,0.1188,0.10775,0.10214,0.09901,0.07918,0.06724,0.05754,0.03801,0.03264,0.0261,0.02565,0.02524,0.02357,0.02307,0.02178,0.01976,0.01766,0.0159,0.01551,0.01347,0.01294,0.01258,0.01096,0.01087,0.0106,0.0104,0.01022,0.00996,0.00913,0.00887,0.00884,0.00861,0.00857,0.00815,0.00786,0.00754,0.00695,0.00682,0.0068,0.00667,0.00665,0.00663,0.00661,0.00657,0.00656,0.00634,0.00601,0.006,0.00592,0.00572,0.00566,0.0055,0.00528,0.00487,0.00474,0.00467,0.00462,0.00448,0.00419,0.00407,0.00389,0.00375,0.00367,0.00356,0.00352,0.00345,0.00326,0.00275,0.00262,0.00248,0.00234,0.00224,0.00223,0.00216,0.00208,0.00201,0.00195,0.0019,0.00163,0.00152,0.00149,0.00149,0.00147,0.00142,0.0012,0.00093,0.0009,0.00085,0.00081,0.00076,0.00063,0.00059,0.00041,0.00025,0.00007,0.00002,0.00001],"total":1},{"name":"奥多摩町","values":[0.04472,0.02981,0.0295,0.02387,0.02384,0.02344,0.01707,0.01671,0.01593,0.01474,0.01406,0.01186,0.01181,0.01166,0.01126,0.01015,0.0095,0.00947,0.00929,0.00921,0.00859,0.00857,0.00823,0.00819,0.00804,0.00788,0.00784,0.00782,0.00737,0.00733,0.00721,0.00684,0.0068,0.00601,0.00571,0.00568,0.00554,0.00517,0.00511,0.00511,0.00482,0.00466,0.00451,0.00448,0.00427,0.0041,0.00399,0.00398,0.00384,0.00367,0.00364,0.00354,0.00347,0.00329,0.00321,0.00319,0.00312,0.0031,0.00309,0.00296,0.00289,0.00282,0.00282,0.00279,0.00278,0.00273,0.00271,0.00267,0.00259,0.00259,0.00258,0.00257,0.00255,0.00254,0.00252,0.0025,0.00243,0.00235,0.00234,0.00233,0.00229,0.00229,0.00222,0.00221,0.00221,0.00217,0.00216,0.00214,0.00214,0.0021,0.00204,0.00204,0.00203,0.00203,0.00203,0.00199,0.00197,0.00183,0.00176,0.00172,0.00167,0.00164,0.00164,0.00155,0.00155,0.00153,0.00142,0.00132,0.00129,0.00129,0.00127,0.00124,0.00123,0.00122,0.0012,0.0012,0.00119,0.00119,0.00117,0.00115,0.00111,0.00108,0.00105,0.00103,0.001,0.00099,0.00097,0.00097,0.00094,0.00094,0.00094,0.00092,0.00092,0.00091,0.0009,0.0009,0.00085,0.00081,0.0008,0.0008,0.00079,0.00079,0.00078,0.00073,0.00071,0.00071,0.0007,0.0007,0.0007,0.00069,0.00067,0.00066,0.00066,0.00063,0.00062,0.0006,0.00057,0.00057,0.00057,0.00056,0.00056,0.00056,0.00056,0.00055,0.00055,0.00055,0.00054,0.00054,0.00054,0.00053,0.0005,0.00048,0.00047,0.00045,0.00045,0.00044,0.00044,0.00043,0.00042,0.00042,0.00042,0.00041,0.0004,0.0004,0.0004,0.0004,0.00039,0.00039,0.00038,0.00038,0.00038,0.00038,0.00036,0.00036,0.00036,0.00035,0.00035,0.00035,0.00034,0.00034,0.00033,0.00032,0.00031,0.00031,0.0003,0.0003,0.0003,0.0003,0.00029,0.00029,0.00029,0.00029,0.00027,0.00027,0.00027,0.00026,0.00026,0.00026,0.00025,0.00025,0.00025,0.00023,0.00022,0.00022,0.00022,0.00021,0.00021,0.0002,0.0002,0.0002,0.00019,0.00019,0.00019,0.00019,0.00018,0.00018,0.00017,0.00017,0.00017,0.00017,0.00016,0.00016,0.00016,0.00016,0.00015,0.00014,0.00014,0.00014,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00012,0.00012,0.00012,0.00011,0.0001,0.0001,0.0001,0.0001,0.0001,0.00009,0.00009,0.00009,0.00009,0.00009,0.00009,0.00009,0.00008,0.00008,0.00007,0.00007,0.00006,0.00006,0.00005,0.00005,0.00005,0.00005,0.00005,0.00005,0.00005,0.00005,0.00004,0.00004,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001],"total":0},{"name":"町田市","values":[9.26871,8.77733,8.07423,7.60433,7.12168,6.85877,6.73234,6.59219,6.33971,5.79027,5.75623,5.59896,5.31295,5.21389,5.20813,5.18256,5.12778,5.08657,5.02148,4.99364,4.92147,4.91083,4.9065,4.87583,4.78446,4.65756,4.48344,4.44827,4.39798,4.3651,4.30605,4.123630000000001,4.109530000000001,4.0535,4.033120000000001,3.91864,3.91469,3.86849,3.84195,3.83406,3.73196,3.61803,3.60197,3.59574,3.51781,3.51418,3.48406,3.45199,3.35487,3.34082,3.31966,3.30409,3.29939,3.23665,3.22895,3.20924,3.17788,3.13718,3.11262,3.10665,3.08233,3.0601,3.0303,2.99533,2.97743,2.97014,2.9575,2.95713,2.94563,2.93619,2.92374,2.91647,2.89785,2.87058,2.86577,2.83183,2.82092,2.79976,2.7834,2.76359,2.73202,2.72959,2.70671,2.70634,2.65694,2.63551,2.63115,2.60809,2.59275,2.58631,2.57494,2.56455,2.5591,2.50594,2.42914,2.42172,2.41469,2.40833,2.40419,2.37895,2.32375,2.32026,2.31497,2.30131,2.28534,2.27485,2.26952,2.26421,2.23182,2.21293,2.17407,2.13462,2.13172,2.12705,2.12134,2.09822,2.09587,2.09213,2.05867,2.0541,2.02706,2.02035,2.0151,2.0134,2.01005,2.00901,1.99714,1.99642,1.99014,1.9388,1.93387,1.9075,1.90679,1.90649,1.90186,1.89796,1.8943,1.89114,1.87636,1.86151,1.83242,1.81945,1.78364,1.77118,1.75248,1.74957,1.74908,1.74526,1.7411,1.73382,1.72791,1.70592,1.69698,1.6919,1.68149,1.66381,1.64631,1.62375,1.54749,1.53754,1.52221,1.5192,1.51772,1.50713,1.48687,1.48623,1.4837,1.48183,1.48151,1.47954,1.47279,1.47117,1.46415,1.46403,1.4578,1.4566,1.45291,1.44435,1.44095,1.42633,1.41412,1.40127,1.39613,1.3846,1.37629,1.37044,1.36198,1.35017,1.34729,1.33378,1.32691,1.32613,1.32451,1.32439,1.3212,1.32006,1.31249,1.30389,1.30334,1.26544,1.24874,1.2447,1.23989,1.22962,1.22607,1.2136,1.19429,1.19363,1.17963,1.17903,1.17844,1.1756,1.17359,1.17295,1.16887,1.16307,1.16027,1.15937,1.15899,1.15424,1.15259,1.14989,1.14899,1.1423,1.13798,1.12922,1.12729,1.1229,1.11021,1.09395,1.07611,1.06841,1.06716,1.06648,1.05162,1.04802,1.04546,1.02567,1.02237,1.01601,1.01001,0.99875,0.99477,0.98738,0.98562,0.98515,0.9804,0.96658,0.9578,0.95437,0.95302,0.95208,0.94918,0.94894,0.94362,0.94153,0.93779,0.93629,0.93349,0.93076,0.92103,0.91591,0.91507,0.91332,0.91146,0.91117,0.90978,0.90625,0.90585,0.90342,0.89858,0.89855,0.89813,0.89098,0.88929,0.88877,0.88415,0.87988,0.8784,0.87451,0.87446,0.87435,0.87262,0.8699,0.86727,0.85654,0.85474,0.85435,0.85299,0.84917,0.84859,0.84251,0.83742,0.82448,0.82245,0.81944,0.81943,0.81652,0.81562,0.81534,0.81368,0.8135,0.80628,0.80316,0.79947,0.79914,0.79771,0.79367,0.7927,0.78783,0.78771,0.7842,0.77997,0.77917,0.77633,0.77444,0.77255,0.77211,0.74659,0.74593,0.74589,0.7412,0.7359,0.73491,0.73453,0.73314,0.73039,0.72618,0.72574,0.71441,0.71214,0.70232,0.70018,0.70013,0.6975,0.69319,0.6917,0.68901,0.68162,0.68078,0.67792,0.67703,0.6757,0.66625,0.66612,0.666,0.65901,0.65706,0.65331,0.64811,0.64706,0.64548,0.63982,0.63894,0.6327,0.62454,0.6161,0.6148,0.61375,0.6124,0.61228,0.61124,0.61068,0.61052,0.60899,0.60853,0.60568,0.60355,0.60143,0.59781,0.5971,0.5969,0.59316,0.58967,0.58858,0.58431,0.58207,0.58024,0.57884,0.57759,0.57379,0.57112,0.57069,0.57057,0.56965,0.56764,0.56636,0.56341,0.56326,0.55617,0.55547,0.55535,0.55402,0.55058,0.54829,0.54346,0.54241,0.53968,0.53699,0.53323,0.53243,0.53075,0.52873,0.52735,0.52676,0.52538,0.52296,0.51887,0.51618,0.51605,0.51555,0.5146,0.51255,0.51237,0.51042,0.50863,0.50741,0.50691,0.50157,0.50129,0.50006,0.49998,0.49876,0.49181,0.49082,0.48885,0.48367,0.48163,0.47948,0.4791,0.4786,0.47656,0.47572,0.46995,0.46844,0.46654,0.46609,0.46574,0.46519,0.4644,0.4556,0.45323,0.45236,0.45057,0.44815,0.44799,0.44667,0.44516,0.44506,0.44135,0.43444,0.43384,0.43249,0.4314,0.43083,0.42907,0.42818,0.42634,0.42533,0.4226,0.41365,0.41018,0.40397,0.40177,0.40158,0.40081,0.40011,0.40009,0.39895,0.39636,0.39543,0.39499,0.39436,0.3938,0.38474,0.38195,0.38153,0.38046,0.37949,0.37876,0.37714,0.37705,0.37641,0.37103,0.3694,0.36871,0.36862,0.36742,0.36637,0.36373,0.36352,0.36108,0.36068,0.36038,0.3592,0.35672,0.35312,0.3502,0.35019,0.35009,0.34978,0.34852,0.34634,0.3423,0.341,0.34018,0.34006,0.33955,0.33797,0.33652,0.33538,0.33481,0.33296,0.32966,0.32914,0.32266,0.32218,0.32207,0.32131,0.31757,0.31723,0.31147,0.30986,0.30759,0.30534,0.30368,0.3036,0.30031,0.29962,0.2963,0.29394,0.29382,0.29287,0.29022,0.28847,0.28774,0.28559,0.28386,0.2834,0.2808,0.28073,0.27956,0.27679,0.27393,0.27378,0.27352,0.27316,0.27301,0.27287,0.27088,0.26762,0.26564,0.26478,0.26234,0.25976,0.25906,0.25893,0.2589,0.25786,0.25616,0.25541,0.25364,0.2534,0.25181,0.25062,0.24966,0.24902,0.24822,0.24506,0.24204,0.24185,0.24155,0.24127,0.23515,0.23461,0.23397,0.23212,0.23147,0.23092,0.23056,0.23047,0.23045,0.22984,0.22968,0.22793,0.2273,0.22708,0.2259,0.22584,0.22515,0.22414,0.22403,0.22118,0.2193,0.21883,0.21855,0.21821,0.21806,0.21795,0.21759,0.21484,0.21457,0.21299,0.21271,0.21251,0.21241,0.21002,0.20936,0.20912,0.20901,0.20782,0.20726,0.20635,0.20571,0.20536,0.20498,0.20356,0.20097,0.20072,0.1965,0.19323,0.19169,0.19125,0.19073,0.18978,0.1895,0.18807,0.18615,0.18519,0.18497,0.18148,0.18117,0.18079,0.18055,0.18038,0.18003,0.17995,0.17986,0.17937,0.1789,0.17764,0.17739,0.17703,0.17636,0.17607,0.176,0.17539,0.17316,0.17254,0.1722,0.17215,0.17184,0.17135,0.17122,0.17119,0.17075,0.17004,0.16996,0.16961,0.16832,0.16765,0.16669,0.16592,0.16516,0.16504,0.16309,0.16307,0.16298,0.16233,0.16067,0.15946,0.15826,0.15655,0.15584,0.15467,0.15409,0.15391,0.15265,0.15199,0.15134,0.15045,0.15014,0.14967,0.1494,0.14882,0.14861,0.14849,0.14683,0.14659,0.14644,0.14522,0.14478,0.14457,0.14429,0.14421,0.14305,0.1423,0.14215,0.14093,0.13954,0.1377,0.13457,0.13368,0.13329,0.13249,0.13225,0.13041,0.1297,0.12839,0.12779,0.12764,0.12762,0.12737,0.12521,0.12328,0.12282,0.12006,0.11992,0.11879,0.11844,0.11738,0.11619,0.11565,0.11387,0.11375,0.11374,0.11373,0.11114,0.11082,0.11047,0.11045,0.11031,0.1103,0.10857,0.1067,0.10558,0.10513,0.10492,0.1049,0.10408,0.10394,0.10388,0.10155,0.09771,0.09763,0.09751,0.09747,0.09673,0.09618,0.09459,0.09445,0.09284,0.09206,0.09033,0.0895,0.08834,0.08813,0.08533,0.08428,0.08425,0.08339,0.08254,0.08225,0.08144,0.08135,0.08124,0.08028,0.08018,0.07961,0.07935,0.07859,0.07848,0.07832,0.07771,0.07724,0.07681,0.07644,0.07616,0.07481,0.07431,0.0741,0.07406,0.07268,0.07003,0.06873,0.06853,0.06797,0.0671,0.06632,0.06577,0.06479,0.06475,0.06433,0.06427,0.06413,0.06396,0.06388,0.06331,0.06323,0.06147,0.06072,0.06003,0.05945,0.05897,0.05889,0.05805,0.05791,0.05769,0.05748,0.05688,0.05682,0.05613,0.05554,0.05529,0.05491,0.05484,0.05447,0.0538,0.05345,0.0534,0.05149,0.05123,0.05074,0.05063,0.05046,0.04882,0.04868,0.04815,0.04775,0.04722,0.04718,0.04718,0.04686,0.04668,0.04656,0.04605,0.04589,0.04571,0.04505,0.04468,0.04453,0.04411,0.04396,0.04385,0.04339,0.04327,0.04293,0.0428,0.04274,0.0426,0.04184,0.04181,0.04141,0.04131,0.04084,0.04071,0.04061,0.03941,0.03926,0.0392,0.03879,0.03811,0.03783,0.0378,0.03724,0.03719,0.03715,0.0367,0.03667,0.03639,0.03616,0.03571,0.03528,0.03511,0.03509,0.03467,0.0343,0.03421,0.03411,0.03386,0.03372,0.03359,0.03358,0.03313,0.03245,0.03244,0.03214,0.03197,0.03136,0.0307,0.03068,0.03057,0.03047,0.02992,0.02969,0.02967,0.02958,0.02933,0.02918,0.02854,0.028,0.02761,0.02753,0.02751,0.02713,0.02697,0.0268,0.02667,0.02641,0.02616,0.02581,0.02567,0.02521,0.02521,0.02504,0.02481,0.02453,0.02448,0.02439,0.02434,0.02434,0.02372,0.02371,0.02358,0.02316,0.02271,0.02262,0.02243,0.02175,0.02148,0.02133,0.02093,0.02064,0.02059,0.0204,0.01955,0.01942,0.01936,0.01919,0.01898,0.01895,0.0189,0.0189,0.0189,0.01835,0.01821,0.01803,0.01789,0.0178,0.01766,0.01766,0.01764,0.01763,0.0175,0.0169,0.01686,0.01667,0.0165,0.01635,0.0159,0.01587,0.01584,0.01572,0.01569,0.01533,0.01503,0.01459,0.01429,0.01424,0.01422,0.01416,0.01344,0.01327,0.01322,0.01313,0.01311,0.01277,0.01259,0.01192,0.01191,0.01156,0.01151,0.01141,0.01135,0.01133,0.01128,0.01116,0.01104,0.01056,0.01052,0.01001,0.00951,0.00932,0.00923,0.00915,0.00913,0.00905,0.00881,0.00877,0.00872,0.00871,0.00864,0.00854,0.00843,0.0084,0.00832,0.00822,0.00761,0.00749,0.00744,0.00716,0.00705,0.00703,0.00699,0.00692,0.00676,0.00674,0.00655,0.0065,0.00646,0.00646,0.00639,0.00627,0.00627,0.00625,0.00614,0.00594,0.00594,0.00587,0.00582,0.0057,0.00562,0.00555,0.0054,0.00539,0.00521,0.00518,0.00517,0.00509,0.00507,0.00501,0.0049,0.0048,0.00478,0.00453,0.00443,0.00436,0.00428,0.00427,0.00423,0.00421,0.00418,0.00417,0.00417,0.00412,0.00407,0.00407,0.004,0.00391,0.00386,0.00379,0.00372,0.00369,0.0036,0.00359,0.0035,0.00349,0.00348,0.00345,0.00333,0.00323,0.00319,0.00316,0.00315,0.00313,0.00305,0.00302,0.00301,0.00291,0.0029,0.00286,0.00286,0.00277,0.00271,0.00245,0.00239,0.00236,0.00228,0.00227,0.00219,0.00219,0.00214,0.00208,0.00206,0.00193,0.00163,0.00162,0.00152,0.00142,0.00141,0.0014,0.00139,0.00135,0.00134,0.00134,0.00128,0.00125,0.00123,0.0012,0.00115,0.00106,0.00105,0.00103,0.00098,0.00095,0.00095,0.00078,0.00076,0.00072,0.00072,0.00069,0.00066,0.00066,0.00066,0.0006,0.00059,0.00058,0.00055,0.00052,0.00051,0.00049,0.00049,0.00042,0.00041,0.00039,0.00036,0.00035,0.00035,0.00034,0.00029,0.00022,0.0002,0.0002,0.00019,0.00019,0.00018,0.00017,0.00017,0.00015,0.00013,0.00013,0.00012,0.00011,0.00008,0.00008,0.00006,0.00006,0.00006,0.00005,0.00005,0.00003,0.00002,0.00001,0.00001],"total":0},{"name":"八王子市","values":[6.50729,5.33059,4.96577,4.96555,4.94564,4.36851,4.30992,4.263080000000001,4.21708,4.190730000000001,4.096320000000001,4.030070000000001,3.90303,3.88227,3.76798,3.70302,3.69715,3.68004,3.6624,3.60832,3.49093,3.44018,3.28604,3.28237,3.26276,3.13915,3.09878,3.09664,3.07721,3.0704,3.06779,3.06495,3.04493,3.02514,3.00953,2.99295,2.97413,2.95261,2.88917,2.8754,2.84285,2.76579,2.74882,2.73211,2.71483,2.68503,2.64974,2.64313,2.63928,2.62936,2.57916,2.57211,2.56742,2.56608,2.55965,2.54149,2.50814,2.4998,2.49735,2.42049,2.4158,2.31374,2.30754,2.28309,2.23917,2.19513,2.15218,2.14713,2.08109,2.06821,2.06248,2.05306,2.04878,2.04483,1.99668,1.98814,1.92743,1.92682,1.91092,1.90649,1.80065,1.79341,1.77935,1.75976,1.75811,1.74222,1.71879,1.66853,1.63214,1.60731,1.58933,1.57092,1.55511,1.54849,1.54709,1.53359,1.5286,1.52403,1.44693,1.43646,1.38862,1.37964,1.31815,1.31341,1.27194,1.23467,1.21779,1.20351,1.18974,1.18279,1.18265,1.16966,1.15962,1.15576,1.15068,1.13983,1.13306,1.12445,1.12011,1.11912,1.11846,1.11637,1.11491,1.11471,1.11234,1.1008,1.10034,1.09525,1.08988,1.08385,1.06948,1.06611,1.0566,1.05588,1.05017,1.04961,1.04517,1.03919,1.03875,1.02403,1.01909,1.01874,1.01248,1.00666,0.99809,0.99243,0.99102,0.99077,0.98984,0.98923,0.98526,0.97641,0.97237,0.97169,0.96932,0.96685,0.9627,0.96096,0.9576,0.95532,0.95465,0.95412,0.95008,0.94989,0.94627,0.94366,0.94216,0.93791,0.93332,0.93148,0.931,0.92955,0.92865,0.92649,0.92239,0.92178,0.92175,0.92009,0.91975,0.91582,0.90924,0.90604,0.89992,0.8974,0.89592,0.89482,0.89199,0.89055,0.88045,0.8788,0.87803,0.87777,0.87768,0.86977,0.86899,0.86221,0.86177,0.86029,0.85544,0.85523,0.85446,0.85356,0.85351,0.85242,0.8474,0.84459,0.84303,0.84213,0.83891,0.83829,0.83722,0.83636,0.83577,0.83388,0.83193,0.82903,0.8273,0.82635,0.826,0.82598,0.82287,0.81884,0.81456,0.81321,0.80989,0.80912,0.80815,0.80784,0.80736,0.80172,0.80028,0.79964,0.79962,0.79955,0.79865,0.79099,0.7892,0.78825,0.78698,0.78343,0.78097,0.7801,0.77769,0.77058,0.76998,0.76822,0.76801,0.76785,0.76707,0.7646,0.76292,0.7626,0.76082,0.75811,0.75748,0.75425,0.75423,0.75344,0.75204,0.75166,0.75142,0.75086,0.74763,0.74744,0.74279,0.74248,0.74046,0.73863,0.7377,0.73766,0.73686,0.73535,0.7349,0.73367,0.73293,0.73259,0.73229,0.73175,0.72959,0.72897,0.7286,0.72804,0.72773,0.72615,0.72526,0.72485,0.72367,0.72359,0.7234,0.72234,0.72158,0.72116,0.72017,0.72009,0.71958,0.71955,0.71802,0.71752,0.71731,0.71681,0.71479,0.7142,0.71347,0.71161,0.71151,0.7113,0.70977,0.70926,0.70835,0.70829,0.7065,0.70551,0.70353,0.69976,0.69529,0.69475,0.69187,0.68978,0.68942,0.68851,0.68742,0.68613,0.68423,0.68214,0.68207,0.68005,0.6793,0.67715,0.67487,0.67065,0.6677,0.66688,0.66243,0.66096,0.66058,0.66028,0.66028,0.65969,0.65954,0.65771,0.65737,0.65686,0.65602,0.65471,0.65222,0.65122,0.65068,0.6501,0.64806,0.64788,0.64787,0.64483,0.64458,0.64452,0.64303,0.64277,0.64252,0.641,0.63952,0.63782,0.63524,0.6322,0.63215,0.6308,0.63039,0.62675,0.62427,0.62387,0.62315,0.62225,0.62082,0.62043,0.61995,0.61991,0.61916,0.61229,0.61226,0.61216,0.61182,0.61161,0.61158,0.61053,0.60982,0.60972,0.60952,0.60906,0.60887,0.60834,0.60645,0.60643,0.60555,0.60519,0.60399,0.60368,0.60316,0.6021,0.60147,0.60095,0.60094,0.59915,0.59828,0.59753,0.59712,0.5943,0.59238,0.58891,0.58684,0.58647,0.58584,0.58313,0.58209,0.57976,0.57956,0.57791,0.57779,0.57737,0.57558,0.57389,0.57202,0.57193,0.57062,0.56911,0.56709,0.56603,0.56536,0.56025,0.55988,0.55792,0.55735,0.55642,0.55593,0.5538,0.5524,0.55174,0.55105,0.5503,0.55026,0.55006,0.54616,0.54482,0.54479,0.54294,0.54209,0.54208,0.54104,0.541,0.53837,0.5381,0.53738,0.53603,0.5356,0.53495,0.53387,0.53274,0.53178,0.52976,0.5292,0.52847,0.5272,0.52666,0.52568,0.52252,0.52144,0.52109,0.52107,0.521,0.51948,0.51731,0.51509,0.51321,0.51215,0.50935,0.50876,0.50549,0.50419,0.50299,0.5025,0.50224,0.50177,0.50096,0.50068,0.50063,0.50041,0.49979,0.49811,0.49791,0.49711,0.49669,0.49636,0.49627,0.49589,0.49337,0.49173,0.49001,0.48966,0.48705,0.48678,0.4866,0.48485,0.4848,0.48429,0.47875,0.47777,0.47775,0.4777,0.47642,0.47549,0.47426,0.47402,0.47388,0.47347,0.47034,0.46918,0.46871,0.46812,0.46731,0.46686,0.4663,0.46563,0.46222,0.46187,0.46136,0.46033,0.45887,0.45852,0.45813,0.45752,0.45681,0.45596,0.45511,0.45335,0.45279,0.45092,0.45062,0.45021,0.44973,0.44948,0.44754,0.44678,0.44655,0.44634,0.44469,0.43997,0.43971,0.4391,0.43869,0.43759,0.43628,0.43552,0.4333,0.43068,0.43042,0.43031,0.42996,0.42879,0.42675,0.42298,0.42164,0.42127,0.42093,0.41979,0.41934,0.41818,0.41815,0.41559,0.41361,0.41336,0.41213,0.41208,0.41179,0.41126,0.41103,0.41099,0.40922,0.40436,0.40428,0.40246,0.40089,0.40014,0.39928,0.39681,0.39362,0.39344,0.39292,0.39259,0.39202,0.39171,0.39035,0.39025,0.39007,0.38907,0.38824,0.38802,0.38744,0.38687,0.38474,0.38468,0.38409,0.38252,0.38138,0.38066,0.38062,0.37941,0.37903,0.379,0.3754,0.37454,0.37284,0.37273,0.37258,0.37158,0.36887,0.36784,0.36768,0.36652,0.36618,0.3661,0.36597,0.36527,0.36407,0.36338,0.36201,0.36133,0.35846,0.35786,0.3572,0.35508,0.35304,0.35276,0.35262,0.35257,0.34866,0.34844,0.34687,0.34655,0.34607,0.3459,0.34483,0.34464,0.34407,0.34369,0.34325,0.34318,0.34292,0.34194,0.34065,0.34047,0.33987,0.33944,0.33792,0.33787,0.33776,0.33736,0.33729,0.33674,0.3363,0.3351,0.33474,0.33394,0.33357,0.33353,0.33269,0.33246,0.33225,0.33222,0.33213,0.33195,0.33171,0.33048,0.32869,0.32762,0.32756,0.32629,0.32461,0.32388,0.32366,0.32306,0.32285,0.32274,0.32169,0.32057,0.31887,0.31853,0.31833,0.31592,0.31541,0.31438,0.31355,0.31243,0.31197,0.31133,0.30994,0.30941,0.30861,0.30845,0.30817,0.30673,0.3067,0.306,0.30508,0.30475,0.30457,0.30393,0.30379,0.30311,0.30303,0.29895,0.29528,0.29432,0.29165,0.29129,0.2912,0.29113,0.29089,0.29022,0.28881,0.28828,0.2876,0.28721,0.28709,0.28662,0.28555,0.28531,0.28328,0.28307,0.28268,0.28246,0.282,0.28179,0.28122,0.28051,0.2802,0.2795,0.27909,0.27882,0.27818,0.27799,0.27753,0.27617,0.27598,0.27594,0.27548,0.27506,0.27469,0.27454,0.27449,0.2733,0.27315,0.272,0.2719,0.27114,0.27086,0.26824,0.26549,0.26548,0.26495,0.26311,0.263,0.26274,0.26223,0.26216,0.25968,0.25963,0.25927,0.25913,0.2589,0.25836,0.25812,0.25764,0.25677,0.25587,0.25365,0.25333,0.25284,0.25233,0.2513,0.25068,0.24896,0.24886,0.2486,0.24842,0.24755,0.24697,0.24562,0.24458,0.24383,0.24374,0.24364,0.24347,0.24342,0.24184,0.24183,0.23778,0.23658,0.23611,0.23589,0.23563,0.23543,0.23392,0.23318,0.23311,0.23276,0.23196,0.23185,0.23183,0.23116,0.23071,0.2304,0.23033,0.22759,0.2275,0.2263,0.22544,0.22428,0.22368,0.22262,0.22204,0.22117,0.22031,0.21929,0.21803,0.21798,0.21705,0.21552,0.21428,0.21355,0.21304,0.21262,0.21099,0.21047,0.2104,0.21016,0.20999,0.20889,0.20853,0.20846,0.20662,0.20576,0.20559,0.20539,0.20502,0.20477,0.20442,0.20405,0.2035,0.20239,0.20234,0.19946,0.19943,0.1991,0.19907,0.19723,0.19705,0.19694,0.19689,0.19674,0.19603,0.19562,0.19549,0.1953,0.19406,0.194,0.19288,0.1924,0.19201,0.19182,0.19075,0.18989,0.18825,0.18785,0.18681,0.18565,0.18441,0.18151,0.18138,0.18051,0.18031,0.17883,0.17844,0.178,0.17767,0.17757,0.17723,0.17645,0.17592,0.17553,0.17424,0.17316,0.17289,0.1718,0.17111,0.17079,0.17077,0.17053,0.16989,0.1687,0.16783,0.1662,0.16549,0.1653,0.16522,0.1648,0.16465,0.16425,0.16388,0.16377,0.16307,0.1627,0.16181,0.16022,0.1592,0.15904,0.15866,0.15854,0.15745,0.15728,0.15718,0.15667,0.15621,0.1552,0.15443,0.15424,0.15352,0.15331,0.15172,0.15154,0.15108,0.15094,0.14983,0.14939,0.14872,0.14851,0.14818,0.14817,0.14763,0.14644,0.14607,0.14579,0.14561,0.14512,0.14491,0.14484,0.14478,0.1446,0.14429,0.14429,0.14414,0.1435,0.14299,0.14161,0.14079,0.14076,0.14038,0.14036,0.13973,0.1393,0.13896,0.13879,0.13816,0.13793,0.13772,0.13741,0.13561,0.13549,0.13527,0.13505,0.135,0.13497,0.13464,0.13355,0.13342,0.13318,0.13285,0.13248,0.13197,0.13168,0.13134,0.13095,0.13093,0.13079,0.13077,0.12899,0.12673,0.12647,0.12616,0.12574,0.12524,0.12512,0.12419,0.12332,0.12291,0.12264,0.1226,0.12208,0.1216,0.12156,0.11986,0.11893,0.11866,0.11836,0.11826,0.11757,0.1173,0.11671,0.11618,0.11574,0.11565,0.11434,0.11421,0.11406,0.11374,0.11322,0.11309,0.11298,0.1129,0.11277,0.11247,0.11173,0.11166,0.1115,0.11135,0.11124,0.11115,0.1106,0.11016,0.10877,0.10823,0.10803,0.108,0.10785,0.10748,0.10716,0.10703,0.1066,0.10558,0.10519,0.10508,0.10496,0.10489,0.10474,0.10447,0.10442,0.10435,0.10359,0.10335,0.10284,0.10258,0.10183,0.10143,0.10128,0.10007,0.09995,0.09937,0.09918,0.09884,0.09812,0.098,0.09749,0.09743,0.09676,0.09666,0.09663,0.09608,0.09574,0.09572,0.09568,0.09566,0.09497,0.09491,0.09412,0.09409,0.09403,0.09342,0.09304,0.09225,0.09198,0.09197,0.09167,0.09144,0.091,0.0907,0.09057,0.08965,0.08942,0.0889,0.08847,0.08839,0.08813,0.0881,0.08787,0.08713,0.0863,0.08626,0.08582,0.08572,0.08515,0.08465,0.08447,0.08435,0.08421,0.0831,0.08309,0.08251,0.08178,0.08169,0.08134,0.08128,0.08126,0.08095,0.08081,0.08029,0.07997,0.0797,0.07949,0.07934,0.07923,0.07911,0.07896,0.07888,0.07884,0.07814,0.07806,0.07656,0.07654,0.07647,0.07637,0.07606,0.0756,0.07555,0.07529,0.07441,0.07439,0.07413,0.07409,0.07321,0.07238,0.0723,0.07217,0.07151,0.07132,0.07106,0.07103,0.07075,0.07052,0.06993,0.06992,0.06988,0.06987,0.06965,0.06952,0.06942,0.06927,0.06923,0.06916,0.0689,0.06887,0.06862,0.06848,0.06828,0.06764,0.06746,0.06705,0.06703,0.06695,0.06686,0.06631,0.06583,0.06582,0.06564,0.06531,0.06519,0.06517,0.06473,0.06437,0.06379,0.0635,0.06348,0.0634,0.06335,0.06316,0.06266,0.06249,0.06173,0.06158,0.06042,0.06037,0.06017,0.06006,0.06003,0.05945,0.05917,0.05915,0.059,0.05899,0.05895,0.05869,0.05858,0.05845,0.05829,0.05822,0.05821,0.05772,0.05749,0.05743,0.0567,0.05657,0.05655,0.0559,0.05568,0.05534,0.05516,0.05514,0.05505,0.05477,0.05475,0.05465,0.0545,0.05408,0.0538,0.05345,0.05345,0.05343,0.05289,0.05287,0.05286,0.05284,0.05275,0.05271,0.05261,0.05249,0.05219,0.05194,0.0517,0.05148,0.05147,0.0514,0.05128,0.05115,0.05083,0.05081,0.05061,0.05007,0.0497,0.04939,0.04936,0.04931,0.04921,0.04907,0.04904,0.04902,0.04854,0.04845,0.04844,0.04823,0.04809,0.04806,0.04801,0.0479,0.0475,0.0475,0.04729,0.04708,0.04683,0.04679,0.04673,0.04671,0.04649,0.04648,0.04647,0.04647,0.04638,0.04636,0.04635,0.04634,0.04633,0.04633,0.04633,0.04633,0.04633,0.04625,0.04593,0.04535,0.04487,0.04448,0.04433,0.04388,0.04377,0.04349,0.04301,0.04277,0.04274,0.04273,0.0427,0.04259,0.04223,0.0422,0.04192,0.04144,0.04128,0.04112,0.04101,0.04078,0.04076,0.04057,0.04032,0.04026,0.04025,0.03993,0.0391,0.03906,0.03883,0.03883,0.03866,0.03866,0.03858,0.03831,0.03828,0.038,0.03756,0.03723,0.03723,0.03714,0.03711,0.0371,0.03704,0.03671,0.03636,0.03609,0.03599,0.03537,0.03512,0.03498,0.03487,0.03455,0.0342,0.03369,0.03366,0.03363,0.03359,0.03354,0.03346,0.03338,0.03332,0.03328,0.03321,0.03321,0.03317,0.033,0.03293,0.03267,0.03249,0.03054,0.03051,0.03041,0.03039,0.03015,0.03015,0.03005,0.03003,0.02997,0.02995,0.0298,0.02966,0.02892,0.02876,0.02865,0.0286,0.02856,0.02853,0.0285,0.02839,0.02837,0.02832,0.02806,0.02803,0.02801,0.028,0.02764,0.02721,0.02721,0.02721,0.02716,0.02714,0.02695,0.02682,0.0264,0.0264,0.02637,0.02632,0.02627,0.02617,0.02588,0.02564,0.02538,0.02533,0.02522,0.02505,0.02464,0.02454,0.02447,0.02417,0.02408,0.02392,0.02373,0.0237,0.02326,0.02324,0.02319,0.02317,0.02313,0.02285,0.02267,0.02261,0.02243,0.02221,0.02216,0.02214,0.02209,0.02206,0.02194,0.02174,0.02171,0.02169,0.02154,0.02129,0.02126,0.0212,0.02111,0.02091,0.02082,0.02064,0.02064,0.02019,0.02014,0.02009,0.02005,0.01979,0.01979,0.0196,0.01959,0.01945,0.01935,0.01933,0.01925,0.01923,0.01922,0.01918,0.01915,0.01897,0.01879,0.01877,0.01876,0.01872,0.01868,0.0185,0.01838,0.0181,0.01808,0.01807,0.01804,0.01803,0.018,0.01781,0.01778,0.01758,0.01757,0.01756,0.01752,0.0175,0.01748,0.0173,0.01727,0.01725,0.01717,0.01717,0.01709,0.01703,0.01693,0.01686,0.01685,0.01685,0.01649,0.01637,0.01635,0.01633,0.0163,0.01625,0.01625,0.016,0.01597,0.01597,0.01592,0.01588,0.01586,0.01581,0.01576,0.01573,0.01572,0.01571,0.01561,0.01558,0.01549,0.01542,0.01542,0.0154,0.01536,0.01532,0.01522,0.01517,0.01512,0.01487,0.01479,0.01472,0.01456,0.01433,0.01424,0.0141,0.01389,0.01388,0.01385,0.0138,0.01364,0.01341,0.01339,0.01337,0.01334,0.01322,0.01309,0.01305,0.01303,0.01302,0.01296,0.01295,0.0128,0.01273,0.01266,0.01264,0.01262,0.01259,0.01256,0.01251,0.01251,0.01243,0.01237,0.01234,0.01233,0.01233,0.01233,0.01233,0.01233,0.01233,0.01233,0.01229,0.01211,0.01211,0.01209,0.01208,0.01207,0.01199,0.01194,0.01182,0.01182,0.01179,0.0117,0.01158,0.01154,0.01123,0.01123,0.01118,0.0111,0.01108,0.01096,0.01093,0.01092,0.01091,0.0108,0.01077,0.01074,0.01068,0.01067,0.01061,0.01061,0.01035,0.00979,0.00978,0.00974,0.0097,0.00968,0.00968,0.00965,0.00963,0.00962,0.00961,0.00959,0.00952,0.00951,0.00938,0.00935,0.00933,0.00926,0.00917,0.00911,0.00892,0.0088,0.00866,0.0086,0.00858,0.00851,0.00836,0.00834,0.00828,0.00825,0.00816,0.00811,0.00808,0.00805,0.0079,0.00788,0.00787,0.00776,0.00773,0.00768,0.00767,0.00766,0.00759,0.00759,0.00751,0.00748,0.00745,0.00744,0.00738,0.00719,0.00692,0.00674,0.00672,0.00663,0.00658,0.00655,0.00651,0.00649,0.00648,0.00646,0.00646,0.00645,0.00641,0.00639,0.00635,0.00615,0.00606,0.00606,0.00601,0.00601,0.00588,0.00586,0.00581,0.0058,0.00574,0.00557,0.00556,0.00548,0.00543,0.0054,0.0054,0.00533,0.00533,0.00527,0.00526,0.00516,0.00512,0.00509,0.00498,0.0049,0.00488,0.00479,0.00478,0.00476,0.00464,0.00464,0.00456,0.00453,0.0045,0.00446,0.00443,0.00442,0.00436,0.00435,0.0043,0.00422,0.00421,0.00419,0.00418,0.00415,0.00413,0.00402,0.00396,0.00394,0.00394,0.0039,0.00383,0.00376,0.00371,0.00366,0.00361,0.0036,0.00346,0.00345,0.00339,0.00339,0.00336,0.0033,0.00326,0.0032,0.00316,0.00314,0.00311,0.00311,0.00304,0.00299,0.00299,0.00294,0.00291,0.00288,0.00287,0.00282,0.00282,0.00279,0.00278,0.00276,0.00272,0.0027,0.00268,0.00265,0.00264,0.00258,0.00257,0.00254,0.00249,0.00249,0.00244,0.00244,0.00243,0.0024,0.00234,0.00232,0.00231,0.00227,0.00219,0.00216,0.00214,0.00214,0.0021,0.00207,0.00205,0.00202,0.00197,0.00193,0.00193,0.00192,0.00191,0.00185,0.00184,0.00183,0.00178,0.00177,0.00174,0.00169,0.00163,0.00162,0.00159,0.00158,0.00157,0.00155,0.00152,0.0015,0.00147,0.00144,0.00143,0.00141,0.00139,0.00136,0.00135,0.00133,0.00133,0.00131,0.00122,0.0012,0.00117,0.00114,0.00114,0.00113,0.00112,0.00111,0.00106,0.00106,0.00105,0.00103,0.00103,0.00101,0.001,0.00099,0.00099,0.00095,0.00094,0.00092,0.0009,0.0009,0.00088,0.00086,0.00084,0.00081,0.00081,0.00079,0.00074,0.00073,0.00072,0.00071,0.00066,0.00065,0.00064,0.00064,0.00061,0.0006,0.00044,0.0004,0.0004,0.0004,0.00038,0.00038,0.00037,0.00036,0.00035,0.00033,0.00032,0.0003,0.0003,0.0003,0.00028,0.00027,0.00027,0.00026,0.00025,0.00025,0.00024,0.00023,0.00022,0.00021,0.00019,0.00017,0.00017,0.00017,0.00015,0.00014,0.00014,0.00014,0.00013,0.00013,0.00013,0.00013,0.00012,0.00012,0.00011,0.00011,0.00011,0.00011,0.0001,0.0001,0.0001,0.00009,0.00009,0.00008,0.00008,0.00008,0.00008,0.00007,0.00006,0.00006,0.00005,0.00004,0.00004,0.00004,0.00004,0.00004,0.00004,0.00004,0.00004,0.00003,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001],"total":0},{"name":"檜原村","values":[0.00711,0.00702,0.00617,0.00524,0.00511,0.00498,0.00451,0.00447,0.00436,0.00425,0.00413,0.00349,0.00339,0.00328,0.00323,0.00322,0.00319,0.00319,0.00317,0.00306,0.00296,0.00281,0.00278,0.00269,0.00266,0.00256,0.00253,0.00234,0.00224,0.00218,0.00215,0.00213,0.0021,0.00209,0.00208,0.00202,0.00187,0.00176,0.00174,0.00172,0.0017,0.0017,0.0017,0.00168,0.00166,0.00166,0.0016,0.00158,0.00157,0.00156,0.0015,0.00149,0.00148,0.00141,0.00139,0.00137,0.00137,0.00136,0.00135,0.00128,0.00126,0.00125,0.00125,0.00123,0.0012,0.00117,0.00117,0.00112,0.00111,0.00111,0.0011,0.00106,0.00105,0.00104,0.00104,0.00104,0.00095,0.00095,0.00094,0.0009,0.00088,0.00087,0.00087,0.00086,0.00084,0.00083,0.00082,0.00082,0.0008,0.0008,0.00079,0.00079,0.00078,0.00078,0.00078,0.00077,0.00077,0.00074,0.00074,0.00073,0.00072,0.00071,0.00071,0.0007,0.0007,0.00069,0.00069,0.00068,0.00067,0.00066,0.00065,0.00065,0.00063,0.00063,0.00063,0.00062,0.00061,0.00061,0.0006,0.0006,0.00059,0.00058,0.00057,0.00056,0.00053,0.00053,0.00053,0.0005,0.00049,0.00049,0.00049,0.00049,0.00048,0.00047,0.00047,0.00046,0.00045,0.00043,0.00041,0.0004,0.0004,0.00039,0.00039,0.00039,0.00039,0.00038,0.00038,0.00037,0.00036,0.00035,0.00035,0.00034,0.00034,0.00031,0.00031,0.0003,0.00029,0.00028,0.00028,0.00027,0.00027,0.00027,0.00024,0.00024,0.00023,0.00023,0.00023,0.00023,0.00023,0.00021,0.00021,0.0002,0.0002,0.0002,0.0002,0.00019,0.00019,0.00018,0.00018,0.00018,0.00017,0.00016,0.00015,0.00015,0.00014,0.00012,0.00012,0.00011,0.0001,0.0001,0.00009,0.00009,0.00008,0.00008,0.00007,0.00007,0.00006,0.00006,0.00006,0.00006,0.00006,0.00006,0.00005,0.00005,0.00004,0.00004,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001],"total":0},{"name":"日野市","values":[2.73386,2.62089,2.50457,2.48406,2.18076,2.10958,2.0739,2.06574,1.92856,1.8858,1.8442,1.798,1.72016,1.71421,1.4929,1.44317,1.37594,1.34446,1.31775,1.29002,1.26078,1.22235,1.17087,1.16528,1.15702,1.15023,1.07502,1.07197,1.03682,1.02803,1.02274,1.00152,0.99357,0.98972,0.95512,0.94443,0.94254,0.9145,0.91123,0.8918,0.89053,0.88351,0.87458,0.8732,0.87136,0.84934,0.81316,0.80567,0.79911,0.79649,0.78418,0.76475,0.74753,0.72187,0.71578,0.7044,0.70339,0.70033,0.69561,0.69467,0.67829,0.67704,0.65815,0.65684,0.65484,0.65021,0.63115,0.60702,0.59434,0.59398,0.59127,0.57947,0.57479,0.57208,0.56725,0.56573,0.56434,0.55404,0.55224,0.53492,0.53437,0.53095,0.52592,0.51899,0.51523,0.50335,0.49746,0.49089,0.48992,0.48431,0.48105,0.48083,0.47146,0.47069,0.46972,0.4626,0.46251,0.45589,0.45581,0.45487,0.45192,0.44716,0.44484,0.43671,0.43379,0.43027,0.42913,0.4288,0.4284,0.42397,0.42331,0.42311,0.42119,0.4176,0.4171,0.41499,0.41059,0.406,0.40579,0.40086,0.39953,0.39804,0.39546,0.39476,0.38627,0.37174,0.37079,0.37027,0.36795,0.36617,0.36614,0.36502,0.3555,0.35101,0.34823,0.34676,0.34201,0.33941,0.33935,0.33829,0.33471,0.33259,0.33065,0.32918,0.32149,0.31932,0.31842,0.31706,0.31517,0.31303,0.31218,0.31203,0.30493,0.30362,0.30042,0.29707,0.29368,0.2928,0.29177,0.29135,0.29022,0.28822,0.28584,0.28188,0.27673,0.27124,0.27099,0.26903,0.26324,0.25981,0.25929,0.2585,0.25454,0.24856,0.24814,0.24805,0.24805,0.2473,0.2469,0.24472,0.24375,0.24291,0.23809,0.23805,0.23698,0.236,0.2358,0.23542,0.23146,0.23136,0.2242,0.22341,0.22339,0.22261,0.21881,0.21855,0.21805,0.21757,0.21408,0.21302,0.21247,0.21232,0.21193,0.20739,0.20637,0.20529,0.20416,0.20407,0.19947,0.1993,0.19695,0.19648,0.19598,0.19571,0.19551,0.19451,0.19281,0.19264,0.19215,0.19211,0.19165,0.19049,0.18791,0.1875,0.18457,0.18295,0.18072,0.18,0.17752,0.17634,0.17513,0.17457,0.16719,0.16694,0.16691,0.16605,0.16498,0.16191,0.16097,0.16041,0.15937,0.15794,0.15647,0.15644,0.1561,0.15602,0.1532,0.15096,0.14995,0.1495,0.14921,0.14638,0.1431,0.1423,0.1417,0.1411,0.14108,0.14034,0.13384,0.13318,0.13254,0.12857,0.12388,0.12386,0.12317,0.12247,0.1212,0.12009,0.11918,0.11838,0.11723,0.117,0.11614,0.11584,0.11239,0.11194,0.11193,0.11161,0.11129,0.10907,0.10574,0.10462,0.10447,0.10134,0.10082,0.09844,0.09834,0.09703,0.0959,0.09507,0.09457,0.09337,0.09266,0.09208,0.09183,0.08956,0.08868,0.08514,0.08457,0.0838,0.08244,0.08122,0.07952,0.07917,0.07907,0.07898,0.07831,0.07755,0.07713,0.0771,0.07577,0.0744,0.0742,0.07377,0.07367,0.07329,0.07227,0.07087,0.07079,0.06734,0.06691,0.06671,0.06589,0.06436,0.0643,0.06225,0.06196,0.06191,0.05968,0.05955,0.0593,0.05874,0.05799,0.05627,0.05574,0.0552,0.05254,0.05234,0.05155,0.05048,0.04855,0.04791,0.04784,0.04733,0.04704,0.04675,0.0463,0.04576,0.04456,0.04414,0.04302,0.04288,0.0426,0.04135,0.04126,0.03923,0.03888,0.03848,0.03811,0.03582,0.03488,0.03465,0.03302,0.03242,0.03168,0.03009,0.02801,0.028,0.02726,0.02652,0.02636,0.02578,0.02283,0.02216,0.02193,0.02125,0.02108,0.02029,0.02,0.01918,0.01864,0.01702,0.01698,0.01335,0.01096,0.00882,0.00847,0.00721,0.00705,0.00663,0.00484,0.00466,0.00398,0.00357,0.00286,0.00174,0.00119,0.00065,0.00029,0.00009,0.00007,0.00006],"total":0},{"name":"多摩市","values":[0.60946,0.60345,0.51344,0.48852,0.47745,0.46316,0.46262,0.45623,0.45118,0.44391,0.42546,0.42107,0.41984,0.41563,0.40816,0.40482,0.39513,0.39482,0.39259,0.39084,0.38664,0.38536,0.37838,0.37304,0.37028,0.36148,0.3611,0.35636,0.34308,0.33835,0.33119,0.32961,0.32618,0.32314,0.3199,0.31585,0.31118,0.30721,0.30631,0.30232,0.29731,0.29698,0.29587,0.29517,0.2911,0.2908,0.29028,0.28991,0.28539,0.28063,0.27334,0.26907,0.26163,0.26073,0.25881,0.25761,0.24845,0.24778,0.24471,0.24443,0.24218,0.24,0.23731,0.23582,0.23408,0.23107,0.23024,0.22808,0.22636,0.22624,0.22617,0.22468,0.22422,0.21697,0.21065,0.20998,0.2094,0.20677,0.20531,0.2043,0.20382,0.20195,0.20117,0.20023,0.19802,0.19755,0.19347,0.19246,0.19145,0.18765,0.18741,0.18735,0.18661,0.18508,0.18422,0.18087,0.1794,0.178,0.17659,0.17304,0.17212,0.16969,0.16912,0.16639,0.16629,0.16393,0.1591,0.15863,0.1584,0.15558,0.15548,0.14918,0.14892,0.14717,0.14499,0.14477,0.14396,0.14193,0.14085,0.14037,0.13881,0.13849,0.13712,0.13607,0.13493,0.131,0.13002,0.12512,0.1162,0.11531,0.11443,0.11323,0.11265,0.11238,0.11024,0.10994,0.10962,0.10959,0.10809,0.10434,0.10423,0.10082,0.10053,0.09927,0.09894,0.09698,0.0957,0.09476,0.09433,0.09361,0.09333,0.09238,0.09221,0.09039,0.08883,0.08824,0.08779,0.08693,0.08553,0.08495,0.08227,0.08191,0.07944,0.07841,0.07726,0.07486,0.07455,0.07427,0.07378,0.07322,0.06976,0.06969,0.06959,0.06716,0.06506,0.06397,0.06384,0.06342,0.06201,0.06175,0.06107,0.0604,0.05993,0.05964,0.05632,0.05555,0.05502,0.05494,0.05388,0.05349,0.05336,0.05282,0.05252,0.05227,0.05189,0.05123,0.04979,0.04952,0.04877,0.04722,0.04179,0.04118,0.04103,0.03836,0.038,0.03767,0.0374,0.03721,0.03692,0.03658,0.03563,0.03525,0.03519,0.03485,0.03482,0.03435,0.03346,0.03323,0.03224,0.03189,0.0314,0.03035,0.03024,0.03013,0.02982,0.02962,0.02853,0.02765,0.02733,0.02662,0.02605,0.02585,0.02561,0.02512,0.02491,0.02304,0.02264,0.02252,0.02126,0.02098,0.02044,0.02037,0.02026,0.0199,0.01978,0.01968,0.01954,0.01937,0.01887,0.01766,0.01752,0.01699,0.01669,0.01602,0.01591,0.01575,0.01574,0.01574,0.01557,0.01549,0.01527,0.01474,0.01455,0.0145,0.01413,0.01329,0.01305,0.01295,0.01276,0.0113,0.00986,0.00941,0.00933,0.00892,0.00857,0.00756,0.00703,0.00699,0.00607,0.0057,0.00531,0.00528,0.0047,0.00407,0.00405,0.00395,0.00389,0.0037,0.00359,0.00273,0.00252,0.00242,0.00174,0.00124,0.00111,0.00106,0.001,0.00093,0.00074,0.00058,0.00045,0.00041,0.00038,0.00037,0.00022,0.00014,0.00014,0.00013,0.00007,0.00006,0.00003,0.00001,0.00001],"total":0},{"name":"稲城市","values":[2.08228,1.95929,1.6592,1.48549,1.38079,1.31344,1.26993,1.19952,1.1588,1.09021,1.08568,1.06593,1.02714,1.01854,1.01366,1.01307,0.97411,0.93081,0.89207,0.88755,0.85301,0.83534,0.8285,0.78754,0.78067,0.75295,0.75224,0.75019,0.70739,0.67798,0.67472,0.67208,0.66653,0.65843,0.65573,0.64048,0.61272,0.58928,0.57386,0.5727,0.55837,0.54522,0.54251,0.53528,0.53499,0.52277,0.51442,0.47884,0.47668,0.4742,0.4673,0.45605,0.43809,0.42226,0.41777,0.41364,0.38573,0.38249,0.37382,0.36109,0.3597,0.34257,0.33913,0.3198,0.31191,0.30903,0.30734,0.30665,0.30344,0.30312,0.29683,0.29311,0.26987,0.26973,0.26938,0.26454,0.26054,0.23569,0.22632,0.22456,0.22363,0.22251,0.22236,0.21383,0.21189,0.21009,0.20667,0.20602,0.20245,0.19602,0.1915,0.18444,0.17789,0.17363,0.1654,0.1569,0.15576,0.15489,0.15077,0.13939,0.13793,0.13711,0.13457,0.13088,0.1297,0.12884,0.12746,0.12691,0.12574,0.1221,0.12054,0.11689,0.11544,0.11165,0.11092,0.10974,0.10803,0.1042,0.09911,0.09751,0.09656,0.09589,0.09497,0.09399,0.09296,0.09236,0.09225,0.08867,0.08529,0.08203,0.08192,0.07663,0.07608,0.0742,0.07253,0.07203,0.06947,0.06861,0.06814,0.0648,0.06339,0.06294,0.0625,0.06174,0.06145,0.06095,0.05808,0.05746,0.05459,0.05386,0.04395,0.04293,0.04222,0.04096,0.03991,0.03925,0.03824,0.03789,0.03751,0.03663,0.03644,0.03634,0.03589,0.03566,0.03386,0.03357,0.03306,0.02925,0.02835,0.0275,0.02678,0.02607,0.02579,0.02571,0.02551,0.02352,0.02291,0.0219,0.02149,0.02133,0.02126,0.02124,0.02106,0.02102,0.02086,0.02009,0.01984,0.01936,0.01906,0.01804,0.01709,0.01633,0.01542,0.01521,0.01503,0.0146,0.01409,0.01356,0.01275,0.01273,0.01269,0.01249,0.01248,0.01236,0.01224,0.01219,0.01203,0.01192,0.01173,0.01101,0.01082,0.0108,0.01074,0.01026,0.00867,0.00839,0.00765,0.00752,0.0073,0.00572,0.00566,0.00554,0.00484,0.00478,0.00458,0.00405,0.00405,0.00405,0.00403,0.00403,0.00374,0.00267,0.00246,0.00216,0.00209,0.00197,0.00175,0.00155,0.00136,0.00122,0.00105,0.00051,0.00041,0.00036,0.00032,0.00031,0.00018,0.00001],"total":0},{"name":"府中市","values":[7.96863,7.92419,7.86007,6.93336,6.30164,5.48065,5.46477,4.60083,4.34408,4.33977,3.97476,3.78037,3.72609,3.56049,3.53019,3.48662,3.46066,3.35303,3.30586,3.23628,3.11451,3.10345,3.07472,3.03255,2.95316,2.93283,2.84539,2.79811,2.79136,2.73977,2.72864,2.70902,2.69258,2.5867,2.58667,2.57801,2.56586,2.52349,2.50288,2.48669,2.48554,2.44541,2.41065,2.4059,2.39294,2.35635,2.35465,2.33297,2.32248,2.31737,2.31497,2.28291,2.28011,2.27475,2.23567,2.22507,2.21251,2.20294,2.19873,2.1863,2.18582,2.18165,2.1799,2.17646,2.17062,2.15462,2.14686,2.14679,2.14625,2.12694,2.10346,2.10101,2.1,2.09929,2.09669,2.0962,2.07186,2.0717,2.04039,2.02711,2.01675,2.00149,1.9853,1.97816,1.97308,1.95283,1.95205,1.945,1.93988,1.93581,1.93017,1.92605,1.92574,1.91411,1.87088,1.86848,1.84369,1.84033,1.83954,1.83454,1.83439,1.8155,1.8147,1.81242,1.79939,1.79928,1.78991,1.78967,1.78567,1.77916,1.76321,1.76027,1.75472,1.74879,1.74873,1.74625,1.73345,1.73212,1.73149,1.72958,1.71471,1.71237,1.71207,1.68825,1.68731,1.67702,1.66254,1.6403,1.62727,1.62161,1.61286,1.60385,1.60093,1.58703,1.58402,1.58022,1.56678,1.54533,1.54317,1.53601,1.53505,1.53338,1.52362,1.51728,1.51289,1.50724,1.4964,1.48654,1.48083,1.47769,1.47699,1.47528,1.46666,1.45251,1.44665,1.44407,1.42992,1.42855,1.42668,1.41877,1.41593,1.41027,1.41005,1.40694,1.40032,1.39806,1.39314,1.3931,1.38967,1.37429,1.37389,1.37383,1.35937,1.35741,1.35481,1.34767,1.34718,1.34206,1.3397,1.32987,1.31995,1.31989,1.31728,1.31266,1.30303,1.29946,1.29245,1.28679,1.27556,1.27324,1.27015,1.26773,1.26549,1.25744,1.25035,1.24719,1.24654,1.24571,1.24445,1.24409,1.23829,1.22392,1.22307,1.22224,1.22109,1.21767,1.20758,1.20657,1.17082,1.15108,1.14551,1.14162,1.11398,1.11037,1.10823,1.10763,1.09915,1.09812,1.09799,1.08975,1.08924,1.07248,1.0706,1.05175,1.04429,1.03944,1.03008,1.02422,1.0196,1.016,1.01516,1.01259,1.00949,0.9994,0.97827,0.96869,0.96193,0.95692,0.94219,0.94054,0.93985,0.93007,0.92879,0.92535,0.92307,0.90631,0.90399,0.90304,0.89568,0.88957,0.87668,0.87657,0.87625,0.87561,0.87386,0.86971,0.86568,0.86336,0.86093,0.85575,0.84907,0.84865,0.84604,0.84305,0.84,0.83908,0.82962,0.82513,0.82027,0.80603,0.80259,0.79965,0.7945,0.79219,0.78863,0.78538,0.78245,0.77638,0.75312,0.74718,0.74324,0.73832,0.73704,0.71894,0.71473,0.71089,0.68776,0.68243,0.67951,0.66737,0.65082,0.64665,0.63762,0.62757,0.6228,0.62007,0.61237,0.61168,0.60304,0.59244,0.58871,0.57321,0.57321,0.57043,0.5691,0.54272,0.53042,0.52893,0.52015,0.51123,0.50633,0.5054,0.50499,0.49277,0.49195,0.48818,0.4852,0.48224,0.47829,0.47723,0.47104,0.46813,0.46729,0.46497,0.46221,0.4603,0.45636,0.45134,0.38354,0.37111,0.36538,0.35174,0.34835,0.34174,0.33594,0.32715,0.32212,0.3205,0.31929,0.30835,0.30796,0.30485,0.30459,0.30374,0.28495,0.28163,0.27845,0.27251,0.24469,0.24203,0.22134,0.21345,0.21147,0.20728,0.19493,0.19258,0.18339,0.17836,0.17047,0.14881,0.14791,0.1441,0.13878,0.13521,0.12522,0.11866,0.11861,0.11441,0.09431,0.09234,0.09222,0.09097,0.08986,0.0876,0.08378,0.07655,0.06591,0.06513,0.06417,0.06398,0.0629,0.06288,0.06285,0.06198,0.0617,0.06125,0.06056,0.05497,0.05359,0.05223,0.05132,0.05129,0.05105,0.04927,0.04591,0.04265,0.04109,0.03853,0.03847,0.03736,0.03195,0.02874,0.02683,0.0257,0.0239,0.0234,0.01768,0.01701,0.01648,0.01644,0.01388,0.01353,0.01148,0.01078,0.01073,0.0096,0.00943,0.0094,0.00894,0.00879,0.0078,0.00677,0.00428,0.0039,0.00281,0.00025,0.00006,0.00004],"total":0},{"name":"狛江市","values":[40.95184,40.01701,39.93541,39.85663,38.56897,38.10226,36.54688,35.46226,34.34824,33.80666,32.149,31.2791,29.59753,29.58158,27.87313,24.27006,23.51582,22.2675,22.15716,21.88754,21.33781,21.23876,20.65634,19.31552,18.58765,18.32539,16.10788,15.78513,15.12498,14.89997,14.51633,14.48331,14.06259,13.56644,13.51377,12.99795,12.86822,12.72081,12.66305,12.43,11.07935,11.04449,10.8951,9.89195,9.55555,9.3524,8.989850000000002,8.91727,8.91334,8.58558,8.54763,8.54444,8.319000000000003,8.24134,8.22035,8.03576,7.82852,7.78284,7.75703,7.70338,7.61791,7.61465,7.5481,7.51333,7.26641,6.95962,6.91233,6.82781,6.74395,5.90145,5.89186,5.89112,5.87094,5.77269,5.75391,5.10308,5.03208,5.02207,4.89429,4.44613,4.41798,4.22953,3.95525,3.89192,3.89156,3.64178,3.51477,3.08422,2.55405,2.50405,2.26777,2.15023,1.96937,0.75465,0.63401,0.29627,0.00055],"total":0},{"name":"調布市","values":[35.94963,23.64106,23.33615,21.63037,20.17759,19.93949,19.23408,18.56875,18.53204,17.92284,17.01545,16.26879,16.13861,15.35205,14.28841,14.25917,13.92908,12.73072,11.69353,11.42289,10.77517,10.54996,10.01914,9.48928,8.44563,8.42065,8.38192,7.10659,7.08185,6.89235,6.72473,6.68549,6.51416,6.49206,6.39252,6.34839,6.33847,6.27243,5.84177,5.49886,5.49056,5.45713,5.36285,5.36164,5.31661,5.20088,5.14062,5.13451,5.0726,5.06688,5.00781,4.99535,4.90495,4.85834,4.80202,4.75036,4.74253,4.73354,4.72623,4.69297,4.61307,4.55703,4.38945,4.38154,4.37496,4.358170000000001,4.34853,4.27999,4.1991,4.14525,4.137870000000001,4.09936,4.06291,4.00059,3.92493,3.89978,3.89867,3.86878,3.78672,3.77627,3.7696,3.69996,3.68386,3.64405,3.56101,3.54764,3.54681,3.53118,3.40143,3.38359,3.36417,3.35888,3.33282,3.30933,3.25784,3.22427,3.22056,3.21488,3.18729,3.17918,3.11291,3.10151,3.0604,3.04307,3.02926,3.00955,2.99129,2.97614,2.97485,2.95595,2.95363,2.94937,2.92225,2.90364,2.85908,2.82673,2.80036,2.79609,2.78896,2.77796,2.75457,2.7446,2.71339,2.69681,2.67028,2.66413,2.63645,2.63379,2.62152,2.59896,2.58393,2.56591,2.50043,2.49637,2.49612,2.48233,2.45833,2.34949,2.34696,2.34632,2.33233,2.32787,2.26167,2.25522,2.23373,2.16367,2.13313,2.13096,2.09696,2.08835,2.08092,2.07482,2.05143,2.03613,2.02523,2.00416,2.00291,2.00261,1.96214,1.95768,1.95594,1.94226,1.94073,1.94003,1.91081,1.85443,1.83365,1.82366,1.81006,1.8022,1.79582,1.76667,1.74626,1.7239,1.71861,1.71548,1.70806,1.69861,1.69786,1.69123,1.67686,1.67185,1.64014,1.63361,1.63201,1.62493,1.62351,1.6169,1.61521,1.60643,1.5944,1.58905,1.58401,1.55802,1.5472,1.53537,1.51734,1.51361,1.50554,1.4983,1.45494,1.43104,1.426,1.41678,1.3964,1.37551,1.35894,1.34274,1.33355,1.28971,1.28796,1.27478,1.25851,1.24073,1.23175,1.21793,1.21102,1.20997,1.18615,1.16431,1.15968,1.1569,1.14435,1.14363,1.13219,1.09696,1.08158,1.06874,1.05782,1.05612,1.05566,1.04091,1.0334,1.03137,1.01411,1.01137,1.00692,0.99701,0.99331,0.97577,0.95277,0.94764,0.94315,0.94038,0.93667,0.90641,0.90259,0.90207,0.89725,0.8929,0.87586,0.86232,0.85381,0.83498,0.79231,0.77587,0.7714,0.75733,0.75337,0.74074,0.72855,0.71426,0.70939,0.69453,0.69074,0.68491,0.68203,0.66713,0.63571,0.61599,0.61378,0.5668,0.54275,0.52745,0.50783,0.50341,0.47107,0.4516,0.44859,0.44731,0.44522,0.43954,0.43395,0.41041,0.39454,0.39404,0.39353,0.39314,0.38802,0.35911,0.35819,0.31203,0.30522,0.29895,0.25496,0.232,0.19722,0.15708,0.14567,0.14246,0.11244,0.10063,0.07449,0.06733,0.0658,0.05358,0.05321,0.04857,0.04007,0.03684,0.03549,0.01531,0.00807,0.0034,0.00053,0.00041,0.0004,0.00039],"total":0},{"name":"三鷹市","values":[29.54088,28.47853,24.52222,23.51848,23.22847,20.40682,17.74713,17.73225,17.44704,17.37892,17.30123,16.0036,15.31546,14.92258,14.78187,14.65323,14.59921,14.04997,13.96117,13.65516,12.81926,12.32512,12.21076,11.62353,11.50702,11.39153,11.1564,11.13062,10.86288,10.85287,10.31263,10.30934,10.06093,9.38537,9.36509,8.8661,8.09672,8.05681,7.36236,7.09317,7.07692,6.81508,6.75867,6.57855,6.3256,6.31047,5.93783,5.8953,5.79706,5.51873,5.3432,5.31441,5.28162,4.95633,4.9511,4.94168,4.85225,4.77362,4.63107,4.58749,4.57819,4.53552,4.51352,4.51111,4.37618,4.31103,4.25227,4.19895,4.13829,4.03297,3.98355,3.85332,3.79462,3.70097,3.61384,3.4659,3.42398,3.32158,3.30706,3.19176,3.19134,3.14752,3.13108,3.03122,2.98871,2.9754,2.93466,2.9216,2.88641,2.87265,2.78937,2.78722,2.70904,2.64774,2.63829,2.58673,2.56683,2.48266,2.46657,2.42802,2.39647,2.38327,2.35677,2.3206,2.29407,2.27851,2.23195,2.22476,2.17983,2.17143,2.1135,2.10222,2.05845,2.05359,2.0164,1.97393,1.96382,1.94867,1.94479,1.90459,1.8935,1.8192,1.81486,1.80414,1.77413,1.73889,1.73636,1.6846,1.68003,1.64379,1.64302,1.62478,1.60703,1.56763,1.56621,1.56477,1.53977,1.51916,1.4935,1.47531,1.4697,1.42743,1.41544,1.41076,1.41018,1.39867,1.37468,1.37432,1.36419,1.35342,1.31581,1.31489,1.30399,1.29589,1.29499,1.28394,1.27627,1.25509,1.23626,1.22897,1.21566,1.21408,1.2074,1.20027,1.16511,1.15842,1.13175,1.12147,1.09643,1.09478,1.06946,1.05265,1.0334,1.02665,1.00788,0.99248,0.97455,0.97163,0.97148,0.94888,0.93578,0.9344,0.91616,0.888,0.86915,0.84502,0.83683,0.83648,0.83392,0.83059,0.82954,0.82787,0.81546,0.81546,0.81221,0.80379,0.80049,0.78772,0.78419,0.78125,0.76412,0.75799,0.75616,0.75541,0.75405,0.73996,0.71862,0.70301,0.69861,0.69337,0.64626,0.6117,0.6111,0.59917,0.58689,0.5819,0.56774,0.56178,0.55218,0.54874,0.53975,0.51909,0.49302,0.47806,0.46791,0.46221,0.32998,0.31405,0.31323,0.25647,0.25254,0.25134,0.23756,0.21119,0.2023,0.19425,0.18174,0.17802,0.17359,0.1709,0.14687,0.14231,0.13989,0.1375,0.1322,0.09241,0.09047,0.06918,0.05441,0.04335,0.04065,0.03967,0.01169],"total":0},{"name":"所属未定地","values":[0.00144,0.0014],"total":0},{"name":"あきる野市","values":[5.23282,4.93769,4.40939,3.91188,3.5934,3.31015,3.21368,3.18571,3.16009,3.15346,3.07115,2.9246,2.81148,2.6468,2.61376,2.57673,2.5178,2.42001,2.40522,2.33394,2.2845,2.2813,2.11845,1.95632,1.84733,1.80097,1.78325,1.70082,1.69844,1.67111,1.64356,1.62976,1.61243,1.60233,1.51375,1.47854,1.44348,1.43704,1.43502,1.43002,1.3631,1.35766,1.32764,1.30322,1.3008,1.14522,1.14214,1.13327,1.08646,1.08522,1.0742,1.05877,1.05711,1.02597,0.99661,0.99298,0.97068,0.95218,0.93706,0.93698,0.9197,0.91103,0.90398,0.88492,0.85889,0.85027,0.83652,0.83565,0.82607,0.81681,0.81665,0.80697,0.80536,0.79584,0.79114,0.78457,0.7819,0.77501,0.7739,0.77089,0.73698,0.72876,0.72284,0.71524,0.70425,0.69155,0.67237,0.65838,0.64405,0.642,0.64042,0.63917,0.62483,0.6169,0.61399,0.61142,0.60764,0.60565,0.59529,0.58295,0.58222,0.57847,0.5726,0.57222,0.56265,0.56168,0.5616,0.55646,0.5526,0.54896,0.54439,0.53964,0.5269,0.50702,0.49573,0.49017,0.48669,0.48144,0.48046,0.4682,0.45625,0.45507,0.44762,0.44447,0.4436,0.43969,0.42289,0.40946,0.40633,0.40497,0.40477,0.39958,0.3972,0.39615,0.37839,0.36837,0.36675,0.36437,0.36084,0.35569,0.35535,0.35457,0.34809,0.34776,0.34765,0.34734,0.32938,0.32902,0.32425,0.32413,0.32204,0.3198,0.31746,0.31517,0.31309,0.30803,0.30163,0.29896,0.2983,0.29185,0.27218,0.27204,0.26892,0.26447,0.24629,0.24099,0.23829,0.22809,0.2246,0.2222,0.22076,0.21598,0.19966,0.1937,0.1936,0.1926,0.18649,0.18166,0.18136,0.18135,0.17909,0.17773,0.17669,0.17195,0.17041,0.16984,0.16833,0.16802,0.1675,0.16724,0.16533,0.16496,0.16476,0.1645,0.15914,0.15902,0.15617,0.15613,0.15138,0.15118,0.14989,0.14934,0.14838,0.14268,0.14063,0.13944,0.1387,0.13755,0.13755,0.13472,0.13419,0.13399,0.13366,0.1328,0.13159,0.12878,0.12589,0.12588,0.12497,0.1242,0.12158,0.12052,0.11995,0.1184,0.1179,0.11753,0.11682,0.1161,0.11467,0.11444,0.11337,0.11307,0.11267,0.1122,0.10862,0.1053,0.105,0.10495,0.10264,0.10162,0.10076,0.09531,0.09439,0.09349,0.093,0.0887,0.08751,0.08704,0.08664,0.08642,0.08535,0.08146,0.08141,0.07946,0.07918,0.07696,0.07633,0.07573,0.07569,0.07538,0.07395,0.07361,0.07328,0.07324,0.07284,0.07238,0.07043,0.06877,0.06844,0.0683,0.06788,0.06678,0.06475,0.06437,0.06431,0.06332,0.06303,0.06299,0.06254,0.06166,0.06163,0.05968,0.05957,0.0553,0.05506,0.05393,0.05078,0.04805,0.04773,0.04628,0.04184,0.04146,0.04089,0.04045,0.038,0.03798,0.03765,0.03736,0.03736,0.03735,0.03734,0.03727,0.03674,0.03658,0.03631,0.03612,0.03581,0.03549,0.0352,0.03441,0.03372,0.03369,0.03361,0.03321,0.03315,0.03126,0.03126,0.03059,0.0304,0.02935,0.0293,0.02926,0.02895,0.02706,0.02704,0.02667,0.02661,0.02623,0.02611,0.02602,0.02578,0.02546,0.02536,0.02528,0.02524,0.02524,0.02472,0.02451,0.02393,0.02366,0.02351,0.02284,0.02265,0.02258,0.02252,0.02237,0.02215,0.02199,0.02169,0.02161,0.02125,0.02113,0.02101,0.02086,0.02084,0.01979,0.01964,0.01929,0.01924,0.0178,0.01739,0.01678,0.01559,0.01516,0.01511,0.01492,0.01458,0.01426,0.01422,0.01414,0.01392,0.01387,0.0131,0.01286,0.01252,0.01242,0.0123,0.01201,0.01186,0.0118,0.01168,0.01168,0.01167,0.01136,0.01121,0.01114,0.01111,0.01068,0.01042,0.01042,0.01014,0.01012,0.00935,0.00924,0.00883,0.00878,0.00851,0.0085,0.00767,0.00766,0.00699,0.00698,0.00681,0.00654,0.00587,0.00579,0.00573,0.00571,0.00553,0.00546,0.00544,0.0054,0.00518,0.00501,0.00498,0.00498,0.00498,0.00461,0.00437,0.00436,0.00436,0.00431,0.00422,0.00422,0.00422,0.0042,0.00419,0.00405,0.00396,0.00396,0.00371,0.00366,0.00342,0.00335,0.00332,0.00327,0.00326,0.00318,0.00294,0.00292,0.00276,0.00276,0.00271,0.00268,0.00265,0.00249,0.00249,0.00242,0.00236,0.00233,0.0023,0.0023,0.00212,0.0021,0.00207,0.00206,0.00206,0.00188,0.00185,0.0017,0.00169,0.00161,0.00157,0.00157,0.00156,0.00145,0.00145,0.00144,0.00142,0.0014,0.00134,0.0013,0.00128,0.00127,0.00126,0.00123,0.00114,0.00112,0.0011,0.00109,0.00107,0.001,0.00098,0.00092,0.0009,0.0009,0.00088,0.00083,0.00082,0.00081,0.0008,0.0008,0.0008,0.0008,0.00079,0.00079,0.00078,0.00074,0.00074,0.00073,0.00072,0.0007,0.00066,0.00062,0.00061,0.00061,0.00059,0.00057,0.00057,0.00043,0.00039,0.00036,0.00035,0.00035,0.00033,0.00032,0.00032,0.0003,0.00029,0.00028,0.00028,0.00027,0.00026,0.00026,0.00025,0.00022,0.00021,0.00019,0.00018,0.00018,0.00016,0.00015,0.00013,0.00012,0.00012,0.00012,0.00011,0.00008,0.00008,0.00007,0.00007,0.00007,0.00006,0.00006,0.00006,0.00006,0.00006,0.00005,0.00005,0.00004,0.00004,0.00004,0.00004,0.00003,0.00003,0.00003,0.00003,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001],"total":0},{"name":"日の出町","values":[1.21885,1.02856,0.86044,0.70677,0.67224,0.63008,0.62183,0.49444,0.46855,0.46452,0.46089,0.39538,0.37584,0.32471,0.32432,0.31743,0.29837,0.28411,0.27141,0.27096,0.26986,0.25313,0.24339,0.23094,0.22742,0.20938,0.20747,0.16738,0.1599,0.13127,0.12922,0.12373,0.11511,0.10525,0.10503,0.10465,0.10185,0.09937,0.08689,0.0855,0.0769,0.07501,0.07264,0.0673,0.0673,0.06423,0.06389,0.05522,0.05095,0.04868,0.04716,0.04598,0.04482,0.04388,0.04109,0.03977,0.039,0.03856,0.03808,0.03598,0.0355,0.03496,0.03297,0.03149,0.03126,0.03062,0.03036,0.03005,0.02901,0.02765,0.0274,0.02689,0.0261,0.02557,0.02369,0.02233,0.02195,0.02176,0.02128,0.02011,0.02008,0.02001,0.01976,0.01973,0.01924,0.01881,0.01783,0.01783,0.01752,0.01746,0.0159,0.01571,0.01569,0.0152,0.01471,0.01437,0.01308,0.01246,0.0115,0.01142,0.01023,0.00991,0.00961,0.00931,0.00906,0.00886,0.00854,0.00818,0.0081,0.00799,0.00797,0.00788,0.0078,0.00758,0.00747,0.00747,0.00716,0.00711,0.00696,0.00674,0.00671,0.00617,0.00592,0.00585,0.00583,0.00572,0.00557,0.00546,0.00514,0.00476,0.00472,0.00464,0.00446,0.0043,0.0041,0.00406,0.00404,0.00397,0.00397,0.00394,0.00362,0.00357,0.00348,0.00341,0.00331,0.00325,0.00325,0.00313,0.00299,0.0029,0.00269,0.00263,0.00248,0.00235,0.00229,0.00224,0.00214,0.00201,0.00197,0.0019,0.00187,0.00186,0.00167,0.00162,0.00144,0.00136,0.00134,0.00132,0.00129,0.0011,0.00101,0.00093,0.00084,0.00073,0.00067,0.00066,0.00066,0.00063,0.00063,0.00062,0.0006,0.00059,0.0004,0.00033,0.00033,0.00033,0.00032,0.00028,0.00026,0.00022,0.00021,0.00016,0.00016,0.00015,0.00015,0.00014,0.00014,0.00014,0.00012,0.00011,0.00011,0.00009,0.00009,0.00009,0.00008,0.00007,0.00007,0.00007,0.00006,0.00006,0.00006,0.00005,0.00005,0.00005,0.00005,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001],"total":0},{"name":"昭島市","values":[2.31459,1.62246,1.61904,1.4644,1.43256,1.35131,1.2974,1.24918,1.24844,1.22761,1.21481,1.12652,1.08303,1.04245,1.03727,1.02349,0.97229,0.96307,0.95482,0.9471,0.93435,0.84466,0.82093,0.80147,0.79995,0.78687,0.78101,0.76417,0.76044,0.76017,0.7574,0.75402,0.74855,0.74362,0.70978,0.6836,0.66002,0.65767,0.63558,0.60379,0.60185,0.59941,0.59443,0.58816,0.57379,0.56872,0.56428,0.54539,0.539,0.53277,0.53197,0.52166,0.5143,0.49567,0.4922,0.48299,0.47181,0.46219,0.46165,0.45183,0.44366,0.43032,0.42824,0.42595,0.40825,0.40031,0.36817,0.3632,0.36201,0.36135,0.35987,0.34014,0.33922,0.3343,0.33143,0.32834,0.32604,0.32584,0.32121,0.3155,0.30263,0.29861,0.29195,0.29053,0.28757,0.28703,0.28339,0.27479,0.27378,0.26613,0.26131,0.24661,0.24585,0.22798,0.22749,0.22693,0.22648,0.20616,0.20086,0.19598,0.193,0.19255,0.18851,0.18762,0.18562,0.18341,0.18123,0.1805,0.17931,0.17917,0.17845,0.17805,0.17356,0.17231,0.16988,0.16854,0.16748,0.15913,0.15685,0.15447,0.15414,0.15173,0.14919,0.14841,0.14799,0.14766,0.14688,0.14634,0.14397,0.14312,0.14042,0.14031,0.13858,0.13821,0.13308,0.13106,0.13004,0.12758,0.12481,0.12441,0.12284,0.11986,0.11908,0.11584,0.115,0.11324,0.1094,0.10336,0.10284,0.10081,0.0999,0.09873,0.09761,0.09577,0.09364,0.09283,0.09078,0.08812,0.08779,0.08651,0.08603,0.08588,0.0843,0.08352,0.08284,0.08197,0.0775,0.07631,0.0741,0.07397,0.06914,0.0689,0.06826,0.0681,0.06534,0.06299,0.06147,0.06128,0.06079,0.06055,0.05795,0.05668,0.05543,0.05018,0.05015,0.04768,0.04716,0.04306,0.04169,0.03858,0.0379,0.03731,0.03577,0.03479,0.03375,0.03207,0.02698,0.02686,0.02489,0.02451,0.02416,0.02209,0.02181,0.02174,0.02173,0.02097,0.02039,0.01947,0.01777,0.01716,0.01706,0.01513,0.01455,0.0139,0.01367,0.01023,0.01023,0.00993,0.00935,0.00935,0.00818,0.00742,0.00682,0.0065,0.00547,0.00487,0.00376,0.00281,0.00265,0.00217,0.00205,0.00174,0.00166,0.0008,0.00033,0.00029,0.00023],"total":0},{"name":"福生市","values":[0.84958,0.83111,0.79698,0.78899,0.61078,0.5884,0.56607,0.53043,0.49578,0.46961,0.44309,0.39529,0.39014,0.38956,0.38811,0.38575,0.38085,0.35522,0.35058,0.34465,0.34118,0.33414,0.32804,0.3123,0.29516,0.28738,0.28136,0.26125,0.25757,0.24591,0.23558,0.2292,0.22042,0.22024,0.21295,0.21235,0.2123,0.20663,0.1993,0.19645,0.19609,0.19134,0.18252,0.1781,0.17744,0.17625,0.17503,0.17189,0.17078,0.16784,0.1643,0.14395,0.13588,0.13001,0.12841,0.12711,0.12673,0.11829,0.11712,0.11543,0.11538,0.11354,0.10887,0.10593,0.10342,0.10052,0.09892,0.09392,0.09388,0.09191,0.09031,0.08941,0.08799,0.08596,0.08334,0.08269,0.08142,0.07252,0.06974,0.06966,0.06857,0.0678,0.06558,0.06398,0.06349,0.06106,0.05945,0.05891,0.05685,0.05684,0.05459,0.05127,0.04962,0.04803,0.04566,0.04442,0.0426,0.04158,0.04069,0.03689,0.03674,0.03517,0.03459,0.03256,0.03126,0.0286,0.02827,0.02818,0.02538,0.02516,0.02435,0.024,0.02116,0.02067,0.01874,0.01808,0.01737,0.01707,0.0161,0.01521,0.01497,0.01497,0.01466,0.01345,0.01318,0.01294,0.01145,0.01125,0.00937,0.00838,0.00775,0.00751,0.00733,0.00668,0.00656,0.00569,0.00489,0.00482,0.00375,0.00324,0.00226,0.00188,0.00065,0.00048,0.0004],"total":0},{"name":"立川市","values":[4.91427,4.354510000000001,4.26352,3.8059,3.72068,3.58122,3.09123,2.36214,2.2275,2.14237,2.13766,2.13383,2.07221,2.01316,2.00494,1.97281,1.94717,1.94068,1.92395,1.91582,1.85223,1.80612,1.80161,1.62714,1.60891,1.58264,1.5797,1.55624,1.52147,1.46764,1.45982,1.42125,1.32257,1.31837,1.29506,1.2748,1.26252,1.20244,1.18835,1.17781,1.16258,1.13367,1.11681,1.08293,1.07508,1.06621,1.06186,1.04819,1.04564,1.02144,0.98609,0.95776,0.92502,0.92443,0.90699,0.90638,0.88451,0.88437,0.86694,0.82775,0.82672,0.82467,0.80637,0.80008,0.7929,0.77791,0.76029,0.75751,0.72368,0.71789,0.71099,0.70994,0.70333,0.69554,0.69278,0.67981,0.67911,0.67821,0.6755,0.667,0.65781,0.63863,0.62386,0.62252,0.59018,0.58909,0.58712,0.58534,0.58349,0.57725,0.56675,0.56385,0.56366,0.55935,0.55875,0.53639,0.5273,0.50831,0.50691,0.49707,0.49077,0.49064,0.4826,0.48,0.47281,0.46794,0.46589,0.45431,0.44794,0.44552,0.44271,0.4307,0.39858,0.39249,0.38961,0.38359,0.3775,0.3766,0.37305,0.37193,0.3713,0.36936,0.3637,0.36091,0.35751,0.35508,0.35066,0.34833,0.34653,0.34327,0.33168,0.33162,0.32982,0.3236,0.31931,0.31869,0.31042,0.2827,0.28117,0.27828,0.27473,0.27097,0.26692,0.2659,0.26271,0.25378,0.25135,0.24632,0.24497,0.24331,0.24214,0.2276,0.22424,0.22093,0.22068,0.21591,0.21392,0.21296,0.21234,0.21023,0.20989,0.2085,0.20756,0.20729,0.20644,0.20568,0.20477,0.20467,0.20374,0.20373,0.20092,0.19274,0.19199,0.18903,0.18574,0.18526,0.18499,0.18421,0.17931,0.17749,0.17619,0.17373,0.17273,0.16753,0.1666,0.16627,0.16443,0.15638,0.15464,0.14962,0.14848,0.14738,0.14422,0.1424,0.13604,0.13316,0.12964,0.12947,0.12588,0.12379,0.11712,0.11466,0.11288,0.11246,0.11125,0.1112,0.1084,0.10824,0.10503,0.10197,0.09918,0.09319,0.09298,0.09253,0.09249,0.09142,0.08947,0.08917,0.08859,0.08694,0.08537,0.08107,0.07989,0.07642,0.07606,0.07461,0.07353,0.07342,0.07199,0.07159,0.07149,0.07011,0.06812,0.06809,0.06734,0.06682,0.06448,0.06365,0.06199,0.0601,0.05906,0.05739,0.05717,0.05659,0.05598,0.05587,0.05551,0.05407,0.05319,0.05152,0.05143,0.05004,0.04925,0.04837,0.0478,0.04656,0.04555,0.04405,0.04297,0.0425,0.04208,0.04001,0.03986,0.03953,0.03934,0.03922,0.03858,0.03823,0.03772,0.0372,0.03654,0.03555,0.0349,0.03359,0.0334,0.033,0.03005,0.02906,0.02846,0.02805,0.02714,0.02689,0.02627,0.0259,0.02548,0.02431,0.02422,0.0239,0.02389,0.02355,0.02343,0.02226,0.02171,0.02085,0.01984,0.01982,0.01972,0.01928,0.01906,0.01855,0.01815,0.01779,0.01768,0.01733,0.01645,0.01588,0.0154,0.01472,0.01374,0.01364,0.01356,0.01353,0.01331,0.01253,0.01247,0.01195,0.0107,0.00977,0.00968,0.00919,0.00918,0.00883,0.00882,0.00852,0.00828,0.00759,0.00674,0.00673,0.00648,0.00612,0.00603,0.00597,0.00587,0.00568,0.00537,0.0053,0.00528,0.00479,0.00455,0.00448,0.00445,0.00441,0.00433,0.00431,0.00431,0.00303,0.00303,0.00279,0.00276,0.00268,0.00226,0.00208,0.00191,0.00156,0.00152,0.00111,0.00079,0.00073,0.00068,0.00058,0.00032,0.00018,0.00001,0.00001],"total":0},{"name":"武蔵村山市","values":[9.69893,5.69488,5.15888,3.98514,3.41485,3.28557,3.13673,3.12518,2.96846,2.45951,2.0132,1.97565,1.63115,1.59974,1.54723,1.47841,1.13527,1.10222,1.08815,1.05196,1.03841,1.00638,0.97666,0.95771,0.75502,0.75125,0.72664,0.61126,0.60514,0.60415,0.53178,0.5296,0.51413,0.50856,0.48559,0.4748,0.44979,0.44681,0.44627,0.4439,0.42723,0.40802,0.39316,0.39213,0.39187,0.34255,0.33051,0.32865,0.32572,0.31432,0.31385,0.31065,0.30284,0.29881,0.29276,0.29177,0.28059,0.27874,0.26885,0.26343,0.26242,0.25997,0.25591,0.25207,0.25085,0.24912,0.24362,0.23368,0.23003,0.22405,0.22404,0.22131,0.22121,0.21976,0.21937,0.21718,0.20985,0.20283,0.20161,0.20014,0.19769,0.1953,0.1939,0.19168,0.18449,0.18426,0.17778,0.17716,0.17467,0.17464,0.17161,0.16996,0.16829,0.15962,0.15835,0.15245,0.14019,0.1395,0.13632,0.13589,0.12884,0.12734,0.12573,0.12562,0.12422,0.12402,0.12312,0.12298,0.11169,0.10982,0.10643,0.10621,0.10573,0.10491,0.10473,0.10229,0.10163,0.10051,0.09883,0.09825,0.09464,0.09417,0.09102,0.08948,0.08644,0.08626,0.08622,0.08572,0.08414,0.08108,0.07567,0.07557,0.07511,0.07383,0.07362,0.07288,0.07136,0.0712,0.06984,0.06618,0.06589,0.06572,0.05749,0.05662,0.05532,0.05253,0.05242,0.05208,0.0517,0.0514,0.0513,0.05093,0.05029,0.0502,0.04971,0.04872,0.04753,0.04552,0.04543,0.04427,0.0428,0.04219,0.03879,0.03788,0.0378,0.03695,0.03514,0.03507,0.03471,0.03245,0.02913,0.02729,0.02717,0.02648,0.02399,0.02345,0.02329,0.02322,0.02168,0.01965,0.01938,0.01527,0.01475,0.01353,0.01218,0.01175,0.01137,0.01032,0.00876,0.00757,0.00738,0.00701,0.00655,0.0054,0.0051,0.00499,0.00475,0.00466,0.00361,0.00323,0.00316,0.0031,0.0029,0.00288,0.00275,0.00244,0.00239,0.00197,0.00171,0.00158,0.00147,0.00102,0.00098,0.00084,0.00061,0.00049,0.0004,0.00024],"total":0},{"name":"羽村市","values":[3.30681,1.33462,1.33453,1.30768,1.29059,1.25266,1.23296,1.21808,1.12213,1.1152,1.11312,1.0724,1.04513,1.02252,1.00874,1.00051,0.9788,0.96838,0.81244,0.80704,0.8052,0.767,0.72245,0.71191,0.70644,0.70527,0.68138,0.64989,0.64803,0.63281,0.61704,0.6132,0.60259,0.58751,0.57443,0.55781,0.55156,0.55098,0.53088,0.52176,0.5086,0.45827,0.44543,0.43865,0.43414,0.41962,0.41654,0.41215,0.41209,0.38529,0.38221,0.3777,0.37471,0.36363,0.34751,0.33838,0.33566,0.3356,0.32033,0.31946,0.30562,0.28972,0.26987,0.25554,0.24236,0.24073,0.24067,0.23685,0.23287,0.21786,0.20419,0.19277,0.18565,0.18461,0.18324,0.17619,0.17304,0.16935,0.16498,0.16489,0.15794,0.1546,0.14899,0.14191,0.13187,0.12217,0.11336,0.10287,0.10285,0.09876,0.09795,0.09457,0.09273,0.08864,0.08819,0.08523,0.08098,0.07883,0.07809,0.07443,0.07387,0.06909,0.06502,0.06404,0.06341,0.06303,0.06204,0.05737,0.05661,0.05398,0.05204,0.0505,0.05044,0.04828,0.044,0.03977,0.03789,0.03675,0.03129,0.02929,0.02926,0.02915,0.02757,0.02748,0.02666,0.02643,0.02373,0.02371,0.02292,0.02279,0.01905,0.01802,0.01759,0.01754,0.01568,0.01241,0.0114,0.01121,0.0107,0.00952,0.00851,0.00803,0.00769,0.00574,0.00547,0.00389,0.00282,0.00255,0.00215,0.00036],"total":0},{"name":"瑞穂町","values":[0.68352,0.36835,0.36638,0.35933,0.34126,0.33776,0.32006,0.30315,0.29419,0.29283,0.28607,0.28455,0.26425,0.26394,0.25615,0.24275,0.21649,0.19858,0.19394,0.17811,0.17415,0.16764,0.16654,0.16048,0.15766,0.15746,0.15325,0.15081,0.14784,0.13967,0.13434,0.12846,0.12548,0.1221,0.12024,0.11892,0.11565,0.11545,0.11499,0.1123,0.11,0.10266,0.09427,0.09325,0.08603,0.0859,0.08539,0.08524,0.08499,0.08463,0.08314,0.08194,0.08142,0.07908,0.07727,0.07662,0.07639,0.07495,0.07339,0.06971,0.06881,0.06814,0.06798,0.06673,0.06426,0.06363,0.06352,0.06316,0.0603,0.05748,0.05542,0.05511,0.05391,0.05186,0.05173,0.05082,0.05049,0.04696,0.04692,0.04687,0.04396,0.04345,0.04242,0.04216,0.04024,0.03919,0.03748,0.03593,0.03456,0.034,0.03355,0.03332,0.03273,0.0318,0.02995,0.02975,0.02921,0.02886,0.02886,0.02667,0.02666,0.02587,0.02533,0.0249,0.02482,0.02469,0.02378,0.02271,0.02194,0.02158,0.02065,0.02064,0.02024,0.01994,0.01966,0.01949,0.01932,0.01926,0.01731,0.01697,0.01546,0.01525,0.01482,0.0148,0.01444,0.01441,0.01428,0.01359,0.01318,0.01295,0.01283,0.01283,0.01276,0.01251,0.01251,0.01245,0.01234,0.01218,0.01192,0.01188,0.01165,0.01105,0.01082,0.01054,0.01052,0.0101,0.00983,0.00967,0.00908,0.00888,0.00886,0.0076,0.00734,0.00724,0.00703,0.00655,0.00649,0.00635,0.00592,0.00575,0.00568,0.00548,0.0054,0.00503,0.0049,0.00479,0.00466,0.0045,0.00441,0.00424,0.00424,0.0041,0.00409,0.00399,0.00374,0.00346,0.00336,0.00316,0.00312,0.00293,0.00271,0.00253,0.00229,0.00165,0.00159,0.00158,0.00155,0.00146,0.00134,0.00132,0.00131,0.00108,0.00107,0.00104,0.0009,0.00089,0.00084,0.00081,0.00077,0.00074,0.00074,0.00067,0.00059,0.00049,0.00043,0.00037,0.00033,0.00032,0.00026,0.00026,0.00024,0.00022,0.00021,0.0002,0.00011,0.00011,0.00001],"total":0},{"name":"国立市","values":[11.86729,11.48177,11.12616,10.05825,8.89199,8.458740000000002,8.273350000000002,7.80428,7.78337,7.33869,5.76815,5.72263,5.07288,5.03311,4.982,4.363450000000001,4.21408,4.07991,3.77338,3.77109,3.67046,3.56517,3.43379,3.33385,3.20948,2.93783,2.7294,2.59281,2.51333,2.51141,2.18304,2.17573,2.15447,2.11102,2.00858,1.9772,1.8005,1.63525,1.59446,1.55751,1.44825,1.42787,1.36951,1.3602,1.32513,1.18028,1.09787,1.09027,1.06707,1.06558,1.00557,0.80494,0.79979,0.67914,0.65647,0.65518,0.62471,0.61423,0.59373,0.49544,0.48996,0.48912,0.45148,0.4427,0.43998,0.41462,0.35619,0.34306,0.33597,0.31428,0.30935,0.29041,0.28973,0.28579,0.28428,0.28419,0.28254,0.27855,0.27242,0.26218,0.24963,0.24229,0.23159,0.23033,0.22521,0.22483,0.21009,0.20641,0.20514,0.20323,0.19407,0.19177,0.18827,0.18758,0.18229,0.17548,0.15187,0.1297,0.12591,0.12386,0.11923,0.11601,0.10491,0.10443,0.102,0.10157,0.09033,0.07925,0.07912,0.07836,0.07617,0.06883,0.05227,0.04273,0.03803,0.03626,0.03017,0.02852,0.02421,0.02288,0.01816,0.01373,0.01202,0.00988,0.00716,0.00552,0.00511],"total":0},{"name":"国分寺市","values":[14.20883,13.6877,12.80991,10.10719,9.04429,8.09034,7.69519,7.47666,6.60619,6.04046,6.01443,5.97006,5.93707,5.86855,5.84283,5.82401,5.50746,5.34887,5.20724,5.14548,5.04242,4.98153,4.639,4.41749,4.3035,4.28557,4.1899,4.01099,3.8856,3.84613,3.65901,3.5282,3.40861,3.29882,3.22197,3.14423,3.03468,2.97492,2.90783,2.88944,2.85868,2.85335,2.71847,2.67926,2.64809,2.6045,2.54985,2.43937,2.41644,2.38087,2.33188,2.27567,2.24549,2.19729,2.17147,2.12581,2.05125,2.04208,2.03685,1.98763,1.90633,1.78425,1.7276,1.63912,1.62879,1.61613,1.59678,1.57063,1.56286,1.55254,1.55148,1.53143,1.52829,1.51467,1.50699,1.50362,1.50294,1.47307,1.4139,1.38477,1.37719,1.35437,1.34599,1.3091,1.2919,1.26501,1.25907,1.21282,1.20971,1.17943,1.17212,1.17061,1.16782,1.16258,1.15447,1.12756,1.11089,1.10868,1.09043,1.06778,1.05991,1.0366,1.0212,1.01484,1.00503,1.00183,0.99639,0.96507,0.95414,0.93371,0.89399,0.88869,0.78835,0.78774,0.77664,0.7693,0.75429,0.75374,0.71318,0.69046,0.67524,0.65786,0.62597,0.62146,0.61619,0.60609,0.60025,0.56451,0.55371,0.55211,0.54307,0.5362,0.48792,0.47221,0.4578,0.45166,0.41989,0.41766,0.41138,0.40201,0.40174,0.39887,0.39873,0.36665,0.36571,0.3291,0.32677,0.31633,0.30473,0.2953,0.29342,0.29195,0.28554,0.27891,0.24465,0.23153,0.22167,0.20998,0.20919,0.20902,0.19798,0.19769,0.19524,0.19326,0.1921,0.1708,0.16693,0.16545,0.16072,0.14477,0.13183,0.08292,0.07126,0.02197],"total":0},{"name":"小金井市","values":[12.79818,12.54886,12.24668,12.07369,11.691,11.62944,11.20738,10.5947,10.36877,9.84156,9.74414,9.49134,9.45836,8.93135,8.816890000000003,8.58244,8.41869,8.22823,7.94765,7.6243,7.61129,7.58958,6.57605,6.42224,6.38401,6.27789,6.09186,5.95974,5.83747,5.79023,5.67319,5.65609,5.56339,5.42613,5.24229,5.18937,5.16358,5.08878,5.06997,4.94246,4.89063,4.84161,4.83638,4.25571,4.25273,4.20883,4.20005,4.15147,4.08432,3.79119,3.76194,3.66813,3.65516,3.6314,3.60864,3.55378,3.52313,3.52029,3.51636,3.4036,3.37147,3.34695,3.24022,3.178,3.15045,3.1405,3.12522,3.11211,3.01577,2.97986,2.90125,2.84712,2.83204,2.80481,2.79326,2.79273,2.73991,2.73127,2.62649,2.53697,2.4471,2.38103,2.37249,2.36338,2.35535,2.35324,2.31037,2.29604,2.16638,2.13114,2.08849,2.00449,2.00175,1.87909,1.79887,1.79449,1.767,1.74383,1.73838,1.71377,1.69219,1.69146,1.65136,1.5366,1.48806,1.47856,1.43585,1.42632,1.40975,1.40431,1.35359,1.32866,1.32624,1.31623,1.31612,1.28637,1.2782,1.23401,1.22226,1.21983,1.21372,1.20451,1.20349,1.10485,1.06104,0.93346,0.90264,0.89115,0.87292,0.84864,0.83721,0.82683,0.80205,0.76271,0.71402,0.7117,0.70542,0.67417,0.64019,0.6167,0.59554,0.50974,0.50703,0.50653,0.50421,0.49804,0.49408,0.48964,0.45013,0.40867,0.38806,0.31671,0.27203,0.2608,0.18967,0.15598,0.15026,0.14438,0.14411,0.13096,0.12748,0.11287,0.07874,0.06943,0.05171,0.03578,0.02723,0.02314,0.01587,0.00063],"total":0},{"name":"小平市","values":[7.40109,7.30099,6.87914,6.38033,6.06938,5.94797,5.55147,5.21688,4.96594,4.88842,4.83076,4.82734,4.79779,4.21892,4.132780000000001,4.09613,3.89334,3.88771,3.81511,3.76821,3.74504,3.72405,3.66886,3.41904,3.33015,3.28074,3.24369,3.22773,3.15487,3.11615,3.02412,3.01721,2.98081,2.97006,2.92465,2.90877,2.76431,2.73426,2.6579,2.59169,2.56224,2.5245,2.4585,2.45638,2.4189,2.40996,2.38352,2.37631,2.34913,2.2758,2.18817,2.1626,2.14617,2.08724,2.0693,1.99857,1.94881,1.88961,1.88064,1.87653,1.84082,1.83286,1.83188,1.83171,1.81936,1.71731,1.692,1.6565,1.65318,1.59881,1.58262,1.56155,1.54899,1.51593,1.5,1.48553,1.47764,1.46089,1.45803,1.45478,1.45015,1.4485,1.43727,1.4354,1.43449,1.40196,1.36635,1.36362,1.35356,1.34181,1.33783,1.33491,1.32588,1.31419,1.31177,1.3116,1.31042,1.30721,1.28915,1.27193,1.1999,1.19862,1.18716,1.18293,1.15571,1.13215,1.12931,1.12761,1.09492,1.0722,1.04898,1.04896,1.04818,1.02721,1.01473,1.01115,1.00903,0.99593,0.98122,0.97408,0.97378,0.9558,0.95253,0.9421,0.93666,0.91516,0.9087,0.9058,0.89286,0.88982,0.88832,0.8555,0.83442,0.82678,0.8134,0.79751,0.79534,0.79043,0.7884,0.77705,0.77647,0.77475,0.77378,0.7641,0.75443,0.74564,0.70616,0.70257,0.69352,0.68075,0.6724,0.66603,0.65622,0.65551,0.6552,0.64526,0.63176,0.63154,0.63152,0.63107,0.62809,0.62581,0.61561,0.61002,0.60357,0.60312,0.59773,0.59479,0.59229,0.59207,0.59132,0.58401,0.56697,0.56172,0.55904,0.55156,0.5487,0.54504,0.53811,0.53777,0.53645,0.53422,0.53368,0.52834,0.52334,0.51846,0.51583,0.51461,0.50518,0.50019,0.49997,0.48518,0.48426,0.48192,0.47999,0.47696,0.47682,0.47275,0.46754,0.45597,0.43914,0.43852,0.4249,0.41824,0.4146,0.41384,0.39513,0.39036,0.38934,0.38882,0.3864,0.38199,0.38093,0.37886,0.37261,0.37239,0.37228,0.37155,0.37035,0.363,0.35743,0.34812,0.34715,0.34552,0.34269,0.34043,0.33446,0.32906,0.32798,0.32572,0.32364,0.32161,0.32109,0.31721,0.31316,0.31251,0.31221,0.30147,0.29608,0.29604,0.29306,0.28081,0.27743,0.27207,0.25834,0.25477,0.23995,0.23638,0.23438,0.23405,0.233,0.23077,0.2296,0.22454,0.22222,0.22213,0.20376,0.19786,0.19783,0.19507,0.19264,0.18843,0.17723,0.16967,0.16864,0.16825,0.1638,0.1577,0.14948,0.1487,0.14388,0.14362,0.14287,0.1391,0.13635,0.13514,0.13136,0.12652,0.12514,0.12488,0.12147,0.11988,0.11493,0.11182,0.11093,0.10651,0.10547,0.10446,0.09328,0.09032,0.0867,0.08533,0.0836,0.07992,0.07865,0.07579,0.06389,0.06197,0.05544,0.05511,0.05387,0.04543,0.04134,0.04063,0.03775,0.03648,0.03585,0.03158,0.03055,0.02568,0.02206,0.02049,0.00661],"total":0},{"name":"東大和市","values":[2.26886,1.80575,1.66216,1.59121,1.31885,1.20062,1.09176,1.07199,1.01252,0.98167,0.9788,0.97651,0.96344,0.96214,0.89468,0.8925,0.87235,0.86906,0.8485,0.81552,0.78131,0.77861,0.76918,0.75327,0.70339,0.70311,0.67746,0.67204,0.65806,0.65734,0.64855,0.63647,0.6352,0.63388,0.63193,0.63013,0.62704,0.62425,0.61844,0.58835,0.58723,0.57689,0.57524,0.56267,0.54135,0.53806,0.53574,0.5285,0.52435,0.52354,0.51897,0.51253,0.49744,0.47437,0.46396,0.46395,0.44756,0.4472,0.44511,0.44488,0.44431,0.43784,0.43734,0.43633,0.43517,0.41473,0.40695,0.39576,0.38938,0.37959,0.37768,0.36221,0.36054,0.34652,0.34594,0.33474,0.32196,0.31406,0.31021,0.30602,0.29693,0.27948,0.27909,0.27643,0.27327,0.27319,0.26709,0.26222,0.26169,0.25033,0.24693,0.24246,0.23335,0.22946,0.22401,0.22368,0.22279,0.21782,0.2161,0.21516,0.21019,0.20943,0.20768,0.2061,0.20518,0.2036,0.19987,0.19679,0.1944,0.19269,0.19087,0.18647,0.17911,0.17705,0.16741,0.16452,0.16276,0.16114,0.15301,0.14846,0.14455,0.13338,0.13166,0.12393,0.12299,0.11616,0.10745,0.10315,0.09417,0.09179,0.08656,0.08177,0.0728,0.07225,0.06988,0.06695,0.06263,0.06187,0.05978,0.05635,0.05521,0.05439,0.05353,0.04544,0.04363,0.04226,0.04208,0.0393,0.0356,0.034,0.03374,0.03369,0.02743,0.0251,0.02466,0.02162,0.021,0.02057,0.01804,0.01504,0.01344,0.00969,0.00865,0.00801,0.00288,0.00275,0.00228,0.00023,0.00003,0.00001],"total":0},{"name":"東村山市","values":[3.29261,3.25911,3.19806,3.01135,2.2414,2.11191,1.9997,1.94394,1.90139,1.8574,1.83497,1.80046,1.72394,1.66576,1.62576,1.55875,1.54463,1.53167,1.51399,1.4943,1.47463,1.43625,1.20902,1.20095,1.1952,1.19476,1.18055,1.15643,1.13684,1.12024,1.1188,1.1147,1.11082,1.09891,1.08779,1.03354,1.01721,0.99696,0.9816,0.97087,0.96328,0.95779,0.95434,0.93131,0.93101,0.90827,0.89553,0.89011,0.88046,0.87909,0.86788,0.85831,0.85741,0.83628,0.8354,0.83411,0.82228,0.82155,0.81908,0.80511,0.80125,0.78547,0.77587,0.76399,0.75544,0.74891,0.73955,0.73879,0.73807,0.73734,0.73036,0.72949,0.7158,0.70473,0.68929,0.65434,0.65255,0.65089,0.62795,0.62385,0.62265,0.61849,0.61249,0.60747,0.59125,0.57829,0.56777,0.56725,0.56375,0.55832,0.54955,0.54878,0.54667,0.54109,0.53957,0.53257,0.52577,0.52399,0.52381,0.51915,0.51407,0.50768,0.50421,0.49311,0.48682,0.48153,0.47782,0.47668,0.46337,0.46079,0.45865,0.45682,0.45612,0.45488,0.44729,0.44256,0.43698,0.43562,0.43419,0.42392,0.41869,0.4122,0.4092,0.40642,0.40511,0.40065,0.39488,0.38406,0.38225,0.3748,0.36898,0.35295,0.34882,0.34562,0.34375,0.34264,0.34241,0.3322,0.33033,0.32518,0.31891,0.31406,0.31018,0.30857,0.30408,0.30334,0.29901,0.29464,0.28875,0.28096,0.27943,0.27917,0.27897,0.27778,0.27644,0.27432,0.27106,0.27092,0.27081,0.26402,0.26236,0.25325,0.2522,0.2519,0.25013,0.24743,0.24008,0.23831,0.23322,0.22887,0.22374,0.22112,0.21691,0.21474,0.21468,0.2121,0.21076,0.20687,0.20461,0.20453,0.20312,0.20089,0.19375,0.19184,0.19171,0.18483,0.18327,0.17131,0.16843,0.16444,0.16187,0.16038,0.15891,0.1586,0.15758,0.15578,0.15416,0.15224,0.15192,0.15168,0.1471,0.14611,0.145,0.14477,0.14138,0.13942,0.13748,0.13466,0.13351,0.13278,0.1324,0.13035,0.12828,0.12504,0.12326,0.11842,0.11596,0.11294,0.11271,0.10827,0.10592,0.10138,0.10066,0.09803,0.09494,0.09261,0.09063,0.08692,0.08465,0.0822,0.07993,0.07386,0.07208,0.07172,0.07059,0.06699,0.06455,0.06393,0.06285,0.06265,0.06155,0.06129,0.06104,0.05944,0.05831,0.05589,0.05562,0.05009,0.04955,0.04868,0.04741,0.04408,0.04114,0.03942,0.03886,0.03758,0.03717,0.03516,0.0321,0.03178,0.01761,0.01507,0.01147,0.00546,0.0045,0.00272,0.0016],"total":0},{"name":"東久留米市","values":[4.1509,4.14781,3.81832,3.59507,3.58067,3.49658,3.36685,3.30808,3.28586,3.225,3.1367,3.12127,3.08271,3.07454,3.03675,2.98661,2.76617,2.72198,2.51074,2.45934,2.41931,2.4148,2.396,2.31204,2.17289,2.0104,1.99359,1.85259,1.77494,1.72914,1.69341,1.61074,1.58874,1.58547,1.56385,1.52748,1.51304,1.4906,1.48679,1.44124,1.41739,1.40408,1.3805,1.34438,1.3141,1.26875,1.24267,1.21457,1.18672,1.17355,1.14916,1.14824,1.141,1.13563,1.10753,1.04682,0.98602,0.95121,0.94641,0.94015,0.93968,0.9384,0.92576,0.92506,0.91928,0.87856,0.87438,0.86684,0.85934,0.85728,0.829,0.82447,0.79728,0.79373,0.78389,0.7786,0.76754,0.76442,0.75542,0.7536,0.73854,0.71095,0.70174,0.7005,0.68424,0.66746,0.66586,0.665,0.66218,0.65784,0.62821,0.61306,0.60469,0.60454,0.60089,0.58671,0.57047,0.56486,0.56363,0.56066,0.55464,0.54467,0.53637,0.51829,0.5125,0.51114,0.50784,0.50632,0.49404,0.49388,0.48776,0.48572,0.48557,0.48114,0.46238,0.46097,0.4561,0.45387,0.44809,0.44655,0.43433,0.43114,0.4227,0.42257,0.42191,0.42097,0.40671,0.39963,0.39661,0.39077,0.38786,0.38669,0.3843,0.38158,0.37756,0.37126,0.36812,0.36368,0.36226,0.35313,0.35155,0.34447,0.33967,0.33309,0.33184,0.32231,0.3179,0.31415,0.30962,0.30884,0.29998,0.29287,0.29192,0.28956,0.28317,0.28315,0.28199,0.28185,0.27837,0.27769,0.27516,0.27432,0.27385,0.26742,0.2672,0.26227,0.26022,0.25965,0.2556,0.24831,0.24476,0.24367,0.24,0.23719,0.22742,0.22473,0.22447,0.2179,0.21391,0.21012,0.20306,0.20202,0.19978,0.19441,0.18375,0.17824,0.17322,0.16783,0.16296,0.1472,0.14212,0.14091,0.13896,0.12943,0.12885,0.1273,0.11827,0.10584,0.07713,0.07072,0.06103,0.05273,0.04058,0.03946,0.03568,0.03554],"total":0},{"name":"武蔵野市","values":[25.53504,23.87638,22.7458,22.52874,21.6542,21.04046,20.98598,19.96388,19.44507,18.22577,17.63041,17.30106,16.97133,16.78747,16.11509,15.44378,14.14963,12.89458,12.63902,11.09371,11.0429,10.69465,9.9859,9.82376,9.36092,8.95092,8.0665,8.06579,7.91133,7.78767,7.53857,7.48508,6.73484,6.72105,6.38522,6.19144,6.13497,6.00787,5.87375,5.75333,5.60274,4.87169,4.86829,4.66925,4.229580000000001,4.02574,3.91874,3.89223,3.7959,3.79293,3.77906,3.63125,3.55636,3.40904,3.27997,3.27377,3.14944,3.08264,2.91444,2.91311,2.77477,2.48254,2.40576,2.32887,2.31399,2.30738,2.08992,2.06381,2.05827,2.05307,2.00091,1.8031,1.73369,1.54071,1.50042,1.48308,1.47031,1.38445,1.32357,1.22923,1.2268,1.18339,1.17804,1.16818,1.16652,1.14606,1.12656,1.12022,1.09435,1.08075,1.04053,1.02007,0.95584,0.93959,0.93865,0.9378,0.89764,0.86666,0.86635,0.86181,0.77605,0.76321,0.75432,0.74994,0.74718,0.74062,0.73226,0.7146,0.70154,0.68907,0.68568,0.67035,0.64953,0.64908,0.60352,0.57008,0.5186,0.51315,0.50983,0.49711,0.48486,0.47864,0.46435,0.46009,0.45128,0.44406,0.44077,0.44061,0.43384,0.43254,0.43202,0.42965,0.42943,0.41919,0.36305,0.36258,0.35422,0.35322,0.33909,0.33049,0.30948,0.30496,0.3033,0.27577,0.27549,0.25199,0.24784,0.24308,0.22936,0.22584,0.201,0.19993,0.18858,0.16961,0.15732,0.13302,0.13087,0.11835,0.10841,0.10349,0.08815,0.07114,0.04253,0.01927],"total":0},{"name":"西東京市","values":[17.60897,14.90114,14.71892,12.8625,11.5684,11.10444,10.47321,10.15303,9.92714,9.84943,9.6347,9.56091,9.38209,9.28427,8.96586,8.77742,8.049620000000003,7.68079,7.60197,7.23398,6.93225,6.84718,6.59784,6.09666,6.0251,5.92739,5.79614,5.765,5.52565,5.39947,5.38226,5.32009,5.20715,5.08592,5.08163,5.05012,5.04932,4.94901,4.87674,4.71493,4.39863,4.25413,4.2136,4.19029,4.17058,4.10295,3.88332,3.82519,3.77834,3.7352,3.70153,3.69654,3.54817,3.54081,3.47315,3.44884,3.38255,3.36924,3.35778,3.34257,3.28819,3.25883,3.2152,3.1786,3.12577,3.10533,3.07539,3.03366,3.0329,3.01614,3.01049,2.99973,2.91172,2.86877,2.77576,2.68762,2.68631,2.67325,2.63532,2.61864,2.61472,2.58106,2.56485,2.55718,2.54838,2.54572,2.54359,2.48132,2.42354,2.3785,2.36779,2.33032,2.27139,2.26803,2.23458,2.21733,2.21237,2.20532,2.19507,2.19475,2.19461,2.16094,2.11549,2.10159,2.09457,2.09106,1.9524,1.94786,1.89222,1.85149,1.81577,1.80705,1.77917,1.75237,1.74922,1.74419,1.74379,1.73599,1.7324,1.72473,1.72304,1.71874,1.7004,1.67028,1.6398,1.63347,1.605,1.60257,1.60163,1.58504,1.58072,1.55929,1.55204,1.53264,1.52863,1.5229,1.49557,1.46184,1.43727,1.43617,1.42169,1.40786,1.39686,1.38531,1.36721,1.36526,1.31565,1.27769,1.21295,1.21001,1.20698,1.19903,1.18176,1.17527,1.17473,1.14859,1.14781,1.14521,1.13781,1.11436,1.11276,1.09866,1.08974,1.07812,1.03067,1.02904,1.01214,0.95902,0.95169,0.94071,0.93868,0.93715,0.93268,0.91767,0.90763,0.90107,0.89734,0.89325,0.86759,0.86463,0.83935,0.80375,0.75875,0.75785,0.756,0.7444,0.73973,0.72022,0.70681,0.69751,0.67384,0.67214,0.66378,0.66099,0.66091,0.64866,0.647,0.64674,0.63722,0.62438,0.59903,0.58656,0.57886,0.56218,0.55761,0.52466,0.50034,0.49089,0.49055,0.47927,0.47373,0.4632,0.46003,0.43723,0.43425,0.43227,0.41881,0.41832,0.40934,0.40298,0.40111,0.38951,0.36729,0.35488,0.34554,0.32074,0.31417,0.30012,0.29429,0.26836,0.26604,0.22498,0.21968,0.21631,0.21301,0.20221,0.18923,0.15558,0.10471,0.05492,0.0484,0.02867,0.02291,0.00954,0.00822],"total":0},{"name":"千代田区","values":[0.09194,0.08455,0.04091,0.03866,0.03609,0.02461,0.02289,0.02088,0.01837,0.01734,0.01557,0.0146,0.01434,0.01425,0.01344,0.0132,0.01247,0.01246,0.01237,0.01088,0.01054,0.00978,0.00953,0.00923,0.00837,0.0083,0.0083,0.00807,0.00796,0.00725,0.00685,0.00628,0.00627,0.00611,0.00585,0.00556,0.00537,0.00531,0.0051,0.00493,0.00481,0.00475,0.00449,0.00437,0.00425,0.00423,0.00413,0.00412,0.00395,0.00384,0.00382,0.00376,0.00373,0.00361,0.00359,0.00358,0.0035,0.00338,0.00331,0.00328,0.00327,0.00326,0.00325,0.00317,0.00313,0.00308,0.00303,0.00299,0.00287,0.00285,0.00284,0.00268,0.00266,0.00265,0.00251,0.00236,0.00235,0.00225,0.00223,0.00221,0.00219,0.00209,0.00207,0.00202,0.00198,0.00187,0.00185,0.00183,0.00182,0.00175,0.00164,0.0016,0.00159,0.00158,0.00153,0.00147,0.0014,0.00132,0.00126,0.00124,0.00123,0.00122,0.00121,0.00103,0.00102,0.00099,0.00098,0.00097,0.00093,0.00092,0.00087,0.00086,0.00084,0.00082,0.0008,0.00077,0.00076,0.00074,0.00068,0.00067,0.00054,0.00054,0.00051,0.00046,0.00043,0.00042,0.00041,0.00039,0.00036,0.00035,0.00031,0.00031,0.00031,0.0003,0.0003,0.00029,0.00029,0.00027,0.00024,0.00023,0.00023,0.00023,0.00022,0.00018,0.00016,0.00011,0.00011,0.00009,0.00009,0.00008,0.00007,0.00007,0.00006,0.00005,0.00004,0.00003,0.00003,0.00003,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001],"total":0},{"name":"青梅市","values":[0.61093,0.47535,0.45971,0.45068,0.42859,0.42326,0.40357,0.38346,0.38088,0.3723,0.37052,0.3653,0.35859,0.34824,0.34399,0.34226,0.3395,0.33738,0.33734,0.33072,0.33044,0.32811,0.32668,0.32222,0.32022,0.31945,0.31294,0.3109,0.30737,0.30654,0.30361,0.29597,0.29569,0.29289,0.29232,0.28889,0.28842,0.28825,0.28444,0.28428,0.28388,0.28348,0.2814,0.27757,0.2767,0.27446,0.27445,0.27416,0.27312,0.2669,0.26479,0.26254,0.26252,0.26244,0.26021,0.2552,0.2522,0.24946,0.24829,0.2482,0.24764,0.24531,0.24352,0.2433,0.24299,0.24283,0.24263,0.24241,0.24136,0.24044,0.2403,0.24022,0.23921,0.23906,0.23699,0.23627,0.23239,0.2322,0.23154,0.23126,0.22924,0.22907,0.22906,0.22702,0.22563,0.22431,0.22383,0.22181,0.22143,0.2211,0.22014,0.21893,0.21799,0.21719,0.21657,0.2151,0.2143,0.21372,0.21264,0.21233,0.21105,0.21067,0.21044,0.20909,0.20879,0.20674,0.20648,0.20593,0.20574,0.20446,0.20385,0.2035,0.20191,0.20087,0.2007,0.20059,0.19842,0.19837,0.19705,0.19697,0.19637,0.19545,0.19412,0.19403,0.19346,0.19329,0.19297,0.18936,0.18864,0.18746,0.18734,0.18667,0.18594,0.18577,0.18414,0.18268,0.18185,0.18143,0.1804,0.17951,0.17903,0.17851,0.1777,0.17682,0.17644,0.17516,0.17425,0.174,0.1732,0.17228,0.17123,0.17056,0.16695,0.16591,0.16555,0.16415,0.16391,0.16271,0.16122,0.15994,0.15745,0.15698,0.15688,0.15659,0.15647,0.15632,0.15398,0.15356,0.15352,0.15332,0.15296,0.15217,0.15203,0.15202,0.15174,0.15008,0.14956,0.14949,0.14864,0.14844,0.14755,0.14714,0.14674,0.14619,0.14599,0.14557,0.14517,0.14504,0.14461,0.14431,0.14357,0.14324,0.14279,0.14251,0.14179,0.14067,0.13925,0.13913,0.13892,0.13793,0.13538,0.13523,0.13499,0.13407,0.13385,0.13313,0.13193,0.12967,0.12888,0.12886,0.12755,0.12653,0.12464,0.12432,0.12328,0.12297,0.12089,0.11954,0.11843,0.11779,0.11673,0.11639,0.11593,0.1152,0.1145,0.11351,0.11322,0.1127,0.11259,0.11242,0.11235,0.11212,0.11155,0.11085,0.11067,0.11062,0.11037,0.11002,0.10911,0.10886,0.10753,0.10721,0.10636,0.10365,0.10359,0.10299,0.10227,0.10135,0.10115,0.10114,0.10026,0.09958,0.09777,0.09734,0.09702,0.09688,0.09643,0.09554,0.09515,0.09447,0.09434,0.09343,0.09276,0.0916,0.09142,0.09134,0.08943,0.08871,0.08746,0.08727,0.08642,0.08593,0.08506,0.08315,0.08229,0.08163,0.08024,0.07947,0.07931,0.07894,0.07821,0.07759,0.07732,0.07697,0.07648,0.07613,0.07527,0.07476,0.07403,0.07383,0.07354,0.07297,0.0724,0.07226,0.07207,0.07199,0.07048,0.07021,0.07011,0.07006,0.06994,0.06991,0.06964,0.06951,0.0695,0.06885,0.06785,0.06765,0.06701,0.06585,0.06516,0.06478,0.06395,0.06324,0.06232,0.06208,0.06159,0.06148,0.06143,0.06064,0.06016,0.06015,0.05941,0.0593,0.05837,0.05789,0.05773,0.05772,0.05711,0.05685,0.05547,0.05478,0.05449,0.05423,0.05343,0.05321,0.05291,0.05227,0.052,0.05127,0.05056,0.05011,0.04996,0.04991,0.04949,0.04942,0.04932,0.04898,0.04892,0.04876,0.04826,0.04813,0.04608,0.04574,0.0456,0.04554,0.0454,0.04536,0.04453,0.0439,0.04384,0.04382,0.0438,0.04367,0.04311,0.04265,0.04255,0.04255,0.04187,0.04162,0.04117,0.04082,0.04049,0.03932,0.03912,0.03836,0.03804,0.03789,0.03785,0.03737,0.03726,0.03714,0.03705,0.03684,0.03681,0.03664,0.03655,0.03558,0.03552,0.03551,0.03509,0.03472,0.03461,0.03454,0.0345,0.03442,0.03391,0.03388,0.03379,0.0334,0.03338,0.03329,0.03277,0.03227,0.03192,0.03181,0.03143,0.03126,0.03108,0.03098,0.03064,0.02992,0.02942,0.02932,0.02904,0.02864,0.02818,0.0281,0.02781,0.02763,0.02738,0.02725,0.0272,0.02719,0.02707,0.02703,0.0268,0.02666,0.02652,0.02649,0.0264,0.02615,0.02604,0.02598,0.02572,0.0254,0.02537,0.02537,0.02454,0.0243,0.02422,0.02372,0.02354,0.02311,0.02252,0.02249,0.02242,0.02224,0.02214,0.02209,0.02148,0.02139,0.02121,0.02087,0.02068,0.02008,0.02006,0.02005,0.02004,0.02,0.01973,0.01954,0.01927,0.01924,0.01911,0.01892,0.01872,0.01845,0.01833,0.01829,0.01821,0.01819,0.01818,0.01796,0.01794,0.01787,0.01783,0.01776,0.01762,0.01756,0.01754,0.01715,0.01711,0.01697,0.01687,0.01687,0.01643,0.01631,0.01622,0.0162,0.01592,0.01589,0.01586,0.01571,0.01557,0.01541,0.0154,0.01534,0.01533,0.01527,0.01503,0.01495,0.01495,0.01491,0.01455,0.01453,0.01438,0.01404,0.01382,0.01378,0.0137,0.01362,0.01362,0.01347,0.01342,0.01293,0.01267,0.01254,0.01235,0.0123,0.01227,0.01224,0.01222,0.01209,0.01209,0.01197,0.01189,0.01187,0.01186,0.01183,0.01171,0.01147,0.01147,0.01145,0.01144,0.0114,0.01139,0.0107,0.0107,0.01069,0.01063,0.01061,0.01051,0.01049,0.01026,0.00994,0.00986,0.00984,0.00982,0.00976,0.00966,0.00965,0.0096,0.0096,0.00949,0.00941,0.00933,0.00927,0.00918,0.00914,0.00907,0.00898,0.00896,0.00884,0.00874,0.0087,0.00862,0.00862,0.00862,0.00861,0.00848,0.00835,0.00824,0.00813,0.00813,0.00808,0.00807,0.00802,0.00801,0.00776,0.00734,0.00727,0.00725,0.00719,0.00716,0.00706,0.00703,0.00702,0.00697,0.00689,0.00684,0.00678,0.00672,0.00669,0.00669,0.00669,0.00669,0.00669,0.00663,0.00662,0.00645,0.00636,0.00619,0.00618,0.00589,0.00582,0.00573,0.00571,0.00569,0.00568,0.0056,0.00541,0.00536,0.00533,0.00532,0.00524,0.00518,0.00518,0.0051,0.00507,0.00489,0.0048,0.00475,0.00474,0.00474,0.00468,0.00461,0.00454,0.00443,0.00443,0.00432,0.00425,0.00406,0.00404,0.00404,0.00399,0.00396,0.00395,0.00386,0.00357,0.00347,0.00333,0.00326,0.00317,0.00304,0.00299,0.00294,0.00291,0.00287,0.00286,0.00279,0.00276,0.00275,0.00271,0.00267,0.00267,0.00266,0.00252,0.00239,0.00237,0.00234,0.00232,0.00232,0.00232,0.00231,0.00231,0.00224,0.00224,0.00209,0.00208,0.00205,0.00204,0.00203,0.002,0.00199,0.00195,0.00191,0.0019,0.00179,0.00176,0.00169,0.00158,0.00156,0.00155,0.00147,0.00141,0.0014,0.00139,0.00138,0.00129,0.00127,0.00119,0.00116,0.00113,0.00112,0.00112,0.00111,0.00111,0.00105,0.00102,0.001,0.00096,0.00095,0.00095,0.00091,0.00085,0.00083,0.00078,0.00077,0.00077,0.00075,0.00074,0.00073,0.00066,0.00064,0.00063,0.00057,0.00053,0.00053,0.00052,0.00051,0.00048,0.00047,0.00047,0.00047,0.00044,0.00041,0.00041,0.00037,0.00035,0.00035,0.00035,0.00033,0.00033,0.00033,0.00032,0.0003,0.0003,0.0003,0.0003,0.00029,0.00028,0.00028,0.00027,0.00026,0.00024,0.00023,0.00023,0.00022,0.0002,0.0002,0.0002,0.0002,0.0002,0.00019,0.00018,0.00015,0.00015,0.00014,0.00014,0.00014,0.00014,0.00014,0.00013,0.00011,0.00011,0.00011,0.00011,0.0001,0.0001,0.0001,0.0001,0.00008,0.00008,0.00008,0.00007,0.00007,0.00007,0.00007,0.00006,0.00005,0.00005,0.00005,0.00005,0.00005,0.00004,0.00004,0.00004,0.00004,0.00003,0.00003,0.00003,0.00003,0.00003,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001],"total":0},{"name":"清瀬市","values":[2.32539,2.14781,1.57051,1.52397,1.29447,1.04491,1.00324,0.9973,0.93025,0.85902,0.84769,0.83572,0.81307,0.76149,0.75059,0.74225,0.73157,0.73058,0.71098,0.70453,0.62117,0.62032,0.60742,0.59066,0.58648,0.57792,0.55287,0.55063,0.54338,0.52438,0.51528,0.51475,0.51196,0.50738,0.50237,0.49511,0.48358,0.47545,0.47347,0.46217,0.4246,0.42217,0.41742,0.41647,0.40603,0.39325,0.39076,0.38958,0.37293,0.36712,0.36363,0.3575,0.33238,0.32984,0.32667,0.31758,0.31609,0.31478,0.31458,0.31206,0.29654,0.29616,0.29465,0.28616,0.28372,0.2799,0.27687,0.27674,0.27631,0.25831,0.25181,0.25162,0.24494,0.24341,0.24249,0.23974,0.23955,0.23804,0.23404,0.22869,0.22305,0.22247,0.22003,0.21608,0.2158,0.21505,0.21419,0.20626,0.20563,0.20352,0.203,0.20119,0.20087,0.19779,0.19771,0.18943,0.18779,0.17707,0.17611,0.16563,0.16525,0.16362,0.16218,0.15495,0.15053,0.15042,0.14676,0.14593,0.14048,0.13992,0.13415,0.13291,0.13106,0.12916,0.12856,0.12096,0.12032,0.11972,0.11907,0.11589,0.11512,0.11371,0.10867,0.1083,0.10444,0.09323,0.09173,0.08762,0.08638,0.08485,0.08024,0.07885,0.07769,0.07451,0.07376,0.07243,0.05617,0.05579,0.05536,0.05508,0.05168,0.04938,0.04683,0.04581,0.04575,0.04523,0.0387,0.03713,0.03696,0.0334,0.03083,0.02932,0.02808,0.02519,0.02317,0.02276,0.02178,0.0215,0.02034,0.01957,0.01919,0.01501,0.01301,0.01279,0.00983,0.00939,0.00851,0.00628,0.00201,0.00099],"total":0}]}
\ No newline at end of file
diff --git a/app/src/layers/data/toshin-burned-area3-zero.json b/app/src/layers/data/toshin-burned-area3-zero.json
new file mode 100644
index 0000000..0803512
--- /dev/null
+++ b/app/src/layers/data/toshin-burned-area3-zero.json
@@ -0,0 +1 @@
+{"list":[{"name":"世田谷区","values":[85.19305,81.78969,78.61838,77.97459,74.67166,73.38841,71.42017,70.09636,67.72995,67.37281,66.52998,66.0542,66.03805,65.64901,65.1698,64.96802,64.85604,64.8405,64.63462,62.7851,62.70494,62.52045,62.30215,60.70299,60.16423,60.09428,59.46144,58.96456,58.51547,58.41909,58.33468,57.75778,57.42823,56.7526,56.50146,56.44239,56.38296,56.29674,56.24815,56.17578,55.96,55.81443,55.78255,55.76115,55.47659,55.08959,54.82108,54.81784,54.62492,54.56133,54.52019,54.50769,54.38341,54.36945,54.26635,54.17252,53.18324,53.09576,52.89713,52.52774,52.40941,52.05123,51.9833,51.14945,51.10125,51.00202,50.95208,50.94168,50.75863,50.74689,50.1814,50.08818,49.86707,49.8283,49.76544,49.73849,49.45455,49.22973,49.21296,48.34193,48.10401,47.93488,47.71674,47.53753,47.48296,47.42687,47.40214,47.34585,47.18951,46.89431,46.44325,46.43613,46.32685,46.32338,46.08832,45.94316,45.38828,45.37865,45.2741,45.23348,45.20582,44.96462,44.95893,44.85447,44.75249,44.32734,44.21848,44.21246,44.08958,44.0157,43.87444,43.83235,43.35359,43.27068,43.15251,42.7796,42.46347,42.34554,42.25993,42.18898,42.15237,41.99341,41.9891,41.94342,41.93892,41.86097,41.64239,41.52526,41.50056,41.35881,41.30137,41.21556,41.03686,41.02873,40.97477,40.94989,40.81322,40.76134,40.47934,40.3782,40.15636,40.04659,39.98295,39.598,39.48413,39.2177,39.20744,39.17573,39.07772,38.97311,38.93202,38.90987,38.61092,38.56602,38.38035,38.33833,38.21054,38.16786,38.13501,38.12591,37.8079,37.61649,37.53126,37.46953,37.35812,37.24062,37.10731,36.99845,36.97777,36.93207,36.84766,36.52631,36.52474,36.44262,36.23756,36.15706,36.11222,36.05793,36.03233,35.89478,35.86421,35.76257,35.75956,35.62278,35.48211,35.43047,35.15415,35.08806,35.00961,34.98538,34.92052,34.82091,34.64701,34.56606,34.45945,34.45441,34.28752,34.28485,34.26235,34.25394,34.25052,34.19555,34.17286,34.16391,34.11184,34.0432,34.02845,33.8652,33.65021,33.63669,33.39894,33.31782,33.31624,33.16939,33.143,33.09528,33.0365,32.83527,32.7489,32.74728,32.66904,32.60442,32.58768,32.53555,32.46343,32.44381,32.35369,32.33387,32.33309,32.31303,32.23472,32.11102,31.94855,31.8901,31.8429,31.79375,31.70046,31.68728,31.56738,31.53162,31.46679,31.40729,31.40433,31.34015,31.32718,31.2408,31.21756,31.21093,31.07791,30.81568,30.74374,30.73973,30.70361,30.68543,30.65473,30.56577,30.38828,30.36656,30.09574,30.09159,30.01455,29.98705,29.86016,29.67254,29.54922,29.41325,29.31036,29.15545,29.07563,29.06446,29.04211,28.97805,28.89714,28.88251,28.84214,28.81367,28.5509,28.46602,28.46045,28.40841,28.33573,28.31331,28.28204,28.2694,28.09487,28.05323,27.7531,27.60985,27.42885,27.41572,27.35992,27.34676,27.1316,27.08162,27.06569,27.01005,26.99456,26.99134,26.90694,26.89481,26.86217,26.84211,26.82375,26.73995,26.65494,26.63739,26.49512,26.49371,26.33889,26.07025,25.8977,25.78753,25.7563,25.74129,25.6099,25.52323,25.51672,25.49802,25.48333,25.43675,25.41048,25.38875,25.38325,25.36521,25.26984,25.17778,25.16827,25.13788,25.01537,24.70476,24.70148,24.60678,24.4117,24.37737,24.30136,24.28879,24.17283,24.16707,24.16527,23.912,23.78529,23.78516,23.68747,23.59194,23.58858,23.39726,23.38417,23.36105,23.28217,23.2812,23.24432,23.22719,23.13126,23.12215,23.02964,22.99256,22.80336,22.58997,22.57456,22.48915,22.37206,22.33617,22.28736,22.27152,22.23083,22.19909,22.1988,22.02953,21.99398,21.94639,21.79508,21.70488,21.68511,21.65689,21.61806,21.37699,21.36983,21.15334,21.11138,21.0974,21.09357,21.02551,21.01021,20.99382,20.91095,20.87533,20.85163,20.80609,20.68164,20.44948,20.37676,20.37661,20.34406,20.30048,20.29613,20.18262,20.14083,20.13642,19.97225,19.932,19.85066,19.81278,19.76622,19.74107,19.72387,19.66513,19.58081,19.5789,19.55996,19.52151,19.50656,19.40897,19.38051,19.35795,19.3334,19.32927,19.23633,19.11969,19.11099,19.07066,18.8221,18.7179,18.66214,18.62216,18.6162,18.57162,18.53276,18.51351,18.47605,18.38828,18.30071,18.211,18.19088,18.18307,18.17444,18.08851,18.02695,17.99746,17.99291,17.94416,17.91162,17.8942,17.76377,17.74685,17.74677,17.74547,17.73447,17.68949,17.65097,17.64039,17.6312,17.59967,17.54861,17.53232,17.50735,17.48139,17.47488,17.27472,17.15146,17.14223,17.0289,16.95557,16.90325,16.84842,16.82992,16.8192,16.81107,16.78826,16.75635,16.73524,16.7313,16.56175,16.47406,16.37681,16.37058,16.32465,16.23664,16.12397,16.0935,16.08038,16.06961,16.05176,16.04497,16.01777,15.95419,15.89438,15.87264,15.84459,15.74711,15.72223,15.6292,15.60758,15.58105,15.57028,15.4243,15.34537,15.25443,15.20614,15.15497,15.05224,14.97013,14.96001,14.91262,14.86258,14.71789,14.70971,14.67196,14.66078,14.63593,14.61877,14.61522,14.57769,14.55989,14.53669,14.51409,14.40533,14.40244,14.37953,14.36384,14.3477,14.34067,14.32425,14.31086,14.28215,14.25819,14.21129,14.21046,14.16557,14.10066,13.99929,13.99577,13.95009,13.93851,13.90502,13.83103,13.81998,13.79768,13.69151,13.65845,13.63906,13.63289,13.63268,13.62167,13.5853,13.58088,13.57994,13.53048,13.50938,13.47991,13.4197,13.41879,13.41173,13.38489,13.37262,13.32153,13.24913,13.24406,13.21471,13.1843,13.14958,13.1281,13.1228,13.07598,13.06915,12.96012,12.94541,12.9045,12.89152,12.86647,12.85767,12.85089,12.78883,12.76046,12.75694,12.73593,12.72206,12.72116,12.69594,12.67385,12.67197,12.65953,12.65631,12.62176,12.59151,12.53379,12.52607,12.50097,12.47609,12.4665,12.4614,12.45604,12.28971,12.28218,12.26706,12.25736,12.24667,12.22908,12.13859,12.08207,11.95413,11.94319,11.91466,11.87325,11.83185,11.82649,11.81871,11.71734,11.70366,11.68967,11.65824,11.64805,11.4683,11.45277,11.40405,11.40338,11.34045,11.3346,11.29346,11.25423,11.16937,11.09734,11.09176,11.01934,10.90474,10.90463,10.89459,10.89456,10.87067,10.73431,10.72725,10.68537,10.68309,10.63803,10.61874,10.60401,10.59992,10.59227,10.58802,10.58583,10.57762,10.53329,10.52853,10.49983,10.44532,10.39251,10.37398,10.35019,10.23197,10.217,10.19635,10.19436,10.13683,10.13035,10.11221,10.1111,10.0813,10.03807,10.03578,9.96065,9.93585,9.93531,9.86249,9.85266,9.78047,9.7198,9.69602,9.68557,9.68219,9.68124,9.67011,9.66607,9.66271,9.6513,9.63199,9.60733,9.60124,9.58524,9.58025,9.57148,9.55879,9.55363,9.5461,9.45664,9.33157,9.32994,9.28196,9.25888,9.18112,9.17759,9.03967,9.01464,9.00038,8.928890000000003,8.892300000000002,8.88234,8.74239,8.71757,8.7095,8.70924,8.59634,8.57084,8.565810000000003,8.562950000000003,8.52019,8.50983,8.463620000000002,8.39585,8.39345,8.2788,8.250170000000002,8.24883,8.24132,8.23415,8.13226,8.13147,8.11368,8.08396,8.036,7.99539,7.97122,7.96857,7.94613,7.94462,7.94373,7.93305,7.92287,7.84185,7.80575,7.75096,7.75036,7.68564,7.67711,7.66504,7.62452,7.44438,7.44308,7.42941,7.40686,7.38905,7.33547,7.31448,7.29258,7.22219,7.1659,7.14142,7.14051,7.11482,7.10723,6.9846,6.95297,6.81653,6.81381,6.75927,6.63063,6.60279,6.55628,6.51194,6.49186,6.45346,6.44145,6.38322,6.3793,6.37015,6.34955,6.24935,6.21419,6.1989,6.14577,6.03809,6.02348,5.89931,5.87404,5.87207,5.81752,5.80177,5.77016,5.733,5.727,5.62447,5.60105,5.51063,5.48315,5.47509,5.43125,5.41078,5.37949,5.33276,5.25184,5.2123,5.13673,5.08693,5.05707,5.02621,5.0214,4.99247,4.92955,4.86384,4.82128,4.68398,4.68396,4.64182,4.46458,4.45915,4.27771,4.27538,4.172900000000001,4.057610000000001,4.04802,3.91292,3.86144,3.83034,3.73688,3.66793,3.64048,3.5898,3.53808,3.53536,3.52345,3.47153,3.42747,3.41231,3.3926,3.27922,3.25646,3.1869,3.15718,3.12012,3.08032,3.05536,2.99355,2.96421,2.82968,2.81183,2.8021,2.80181,2.55599,2.47516,2.19886,2.10988,1.9963,1.95335,1.87528,1.79611,1.77227,1.68686,1.60333,1.58523,1.45498,1.41653,1.39996,1.28602,1.21052,1.12198,1.09069,1.03525,0.99319,0.83144,0.79996,0.79076,0.57335,0.56746,0.54099,0.4667,0.45561,0.44575,0.44469,0.44244,0.35226,0.30892,0.28984,0.28255,0.25219,0.22762,0.13861,0.11585,0.08814,0.01415,0.00018,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":19989},{"name":"大田区","values":[137.12221,118.61903,115.66628,108.37461,107.83433,106.88353,103.19252,102.98473,99.72711,98.50618,97.54444,95.13133,94.42008,94.28688,93.55676,93.40821,93.37391,91.57963,91.4599,90.38557,88.99088,88.03017,87.44364,87.12226,86.87172,86.4565,84.37923,84.08426,83.43055,82.35996,82.08105,81.54939,81.12254,79.82687,79.51922,79.00898,78.27703,77.7918,77.77379,77.70315,77.07651,76.27607,75.28168,74.88225,74.63915,74.57076,73.20921,72.98333,72.28572,72.1213,72.02071,71.88973,71.87703,71.61654,71.17167,70.61803,70.36699,70.35437,69.81594,69.61187,69.30166,68.66574,68.15479,68.10763,66.97455,65.52737,65.32169,65.04277,64.75906,64.62877,63.82922,63.76919,63.70134,63.69928,63.2838,63.2624,62.9229,62.60786,62.52824,62.37683,62.09357,61.76326,61.75601,61.35447,61.25694,61.08905,60.64518,60.58551,60.47344,60.13886,59.78139,59.75797,59.73238,59.30724,59.25893,58.71431,58.39959,58.29177,58.04352,58.03807,57.13959,57.04233,56.6118,56.58445,55.7211,55.69326,55.33714,55.33003,55.28622,55.09973,54.75338,54.72861,54.72017,54.50879,54.13419,54.0851,53.94946,53.85378,53.44149,53.35566,53.17591,52.64339,52.39164,52.10442,51.8318,51.64556,51.54242,51.43872,51.37212,51.33846,51.32773,51.31914,51.29561,50.9265,50.58161,50.52855,50.2354,50.11335,49.92495,49.71656,49.70999,49.38247,49.29146,49.27475,48.84545,48.76681,48.42728,48.39413,48.044,48.00398,47.78164,47.67629,47.44594,47.11355,47.04487,46.82983,46.75669,46.58716,46.57357,46.54496,46.54343,46.4233,46.39988,46.17993,45.81886,45.55234,45.39523,44.98472,44.85273,44.7589,44.70137,44.58984,44.57905,44.513,44.26725,44.19283,43.98875,43.94326,43.4211,43.32729,43.20205,43.08382,42.96202,42.93269,42.87624,42.73822,42.57364,42.54154,42.36093,42.07519,41.99324,41.97611,41.86896,41.7298,41.44011,41.26083,41.14016,41.11446,40.96378,40.91468,40.90502,40.87028,40.61239,40.36771,40.16927,39.9195,39.84425,39.72195,39.4795,38.92882,38.86929,38.31549,37.73946,37.68761,37.66334,37.38865,37.09568,36.89151,36.87882,36.45359,36.44945,36.43467,35.43187,35.3654,35.03605,34.8344,34.67638,34.4238,34.41701,34.37772,34.01161,33.90164,33.52778,33.51621,33.41034,33.20474,33.1837,33.17022,32.939,32.87993,32.68934,32.4329,32.26064,32.20033,31.87699,31.86281,31.68711,31.48536,31.42704,31.37111,31.06251,31.04091,30.93202,30.8946,30.88431,30.80306,30.71542,30.69712,30.45693,30.33589,30.17677,30.09161,30.07899,29.78387,29.73756,29.50176,29.30825,29.07022,28.6748,28.60097,28.57668,28.57322,28.3914,28.32162,28.20971,27.9321,27.88677,27.8142,27.6125,27.6101,27.6054,27.58901,27.5875,27.4688,27.00559,27.00197,26.84293,26.55371,26.52353,26.52004,26.42787,26.28237,26.26497,26.25994,26.23846,26.14005,26.09566,25.79647,25.23436,25.20426,24.89288,24.73855,24.64925,24.53139,24.24146,23.95817,23.90648,23.7541,23.75089,23.31794,23.31434,22.957,22.82766,22.53281,22.36751,22.26486,22.09317,22.04986,21.93734,21.59278,21.34793,21.25972,21.21532,21.20803,21.204,21.2033,21.1303,21.10029,20.98139,20.97869,20.84758,20.74904,20.63716,20.4817,20.26491,20.17486,20.17079,19.9562,19.95569,19.85356,19.7852,19.63246,19.20849,19.12723,18.87851,18.74415,18.6817,18.4341,18.4196,18.29003,18.07577,18.00661,17.72759,17.66714,17.47944,17.42668,17.35476,17.32242,17.18874,17.08745,17.00404,16.83369,16.67674,16.48035,16.3307,16.15118,16.13634,16.00615,16.00498,15.99838,15.80019,15.70025,15.66481,15.62753,15.54348,15.40763,15.271,15.24873,15.24394,15.20891,15.10886,15.09392,14.99932,14.98176,14.93741,14.88579,14.79142,14.72738,14.64306,14.63034,14.5942,14.54987,14.40097,14.39173,14.2185,13.93964,13.92539,13.85337,13.79779,13.57717,13.48918,13.45788,13.43137,13.39265,13.17571,13.11197,13.08634,13.07791,13.00924,12.99071,12.90455,12.78832,12.7545,12.59075,12.5896,12.4777,12.4542,12.4005,12.37533,12.03875,12.00122,11.99184,11.97111,11.92009,11.63627,11.62949,11.55689,11.52489,11.44285,11.34339,11.12385,11.02871,10.86714,10.76309,10.73555,10.60135,10.58659,10.53348,10.51434,10.33322,10.27358,9.99705,9.95748,9.88746,9.83903,9.52563,9.48737,9.48629,8.92182,8.706440000000002,8.67813,8.66948,8.59545,8.57409,8.570080000000003,8.556520000000003,8.44465,7.97845,7.72904,7.41946,7.41042,7.36487,7.32231,7.2565,7.16009,7.15402,7.13308,7.03297,7.02045,6.88339,6.87425,6.82335,6.79058,6.73335,6.61377,6.52968,6.49416,6.45374,6.42843,6.41529,6.20469,6.03854,6.03137,6.01154,5.94856,5.94091,5.93207,5.9145,5.86526,5.75848,5.75307,5.6098,5.59301,5.52586,5.50109,5.49598,5.37875,5.37356,5.2015,5.09952,5.09287,4.86255,4.82123,4.81681,4.79961,4.73943,4.69734,4.68845,4.65938,4.61671,4.5582,4.55575,4.53914,4.49113,4.446290000000001,4.33383,4.230400000000001,4.181580000000001,4.08864,3.92611,3.91317,3.88549,3.81998,3.58126,3.55452,3.53616,3.53533,3.50555,3.49126,3.43306,3.39116,3.31685,3.26302,3.24932,3.2448,3.2445,3.06709,3.03139,3.00826,2.95999,2.94355,2.9423,2.94121,2.86644,2.85192,2.74805,2.73534,2.72487,2.68422,2.67468,2.67433,2.55829,2.53754,2.52639,2.52587,2.52587,2.48408,2.45567,2.34229,2.33741,2.29671,2.18364,2.16299,2.06661,2.05939,2.03233,1.99218,1.99103,1.97319,1.95136,1.93867,1.92119,1.90642,1.90273,1.85984,1.8236,1.81797,1.73547,1.72744,1.71292,1.70694,1.67468,1.67415,1.65804,1.65117,1.64465,1.64092,1.60404,1.56619,1.52908,1.52652,1.52046,1.51542,1.43309,1.41043,1.39523,1.39293,1.36721,1.35318,1.33254,1.32773,1.31238,1.31175,1.2884,1.23783,1.19298,1.17082,1.16837,1.1586,1.14317,1.13619,1.12187,1.07582,1.0542,1.03527,1.0243,1.01716,1.01097,1.01095,1.01028,0.99845,0.99163,0.98686,0.9794,0.97525,0.94475,0.93255,0.89108,0.89042,0.86609,0.83033,0.82793,0.81358,0.77521,0.76673,0.7269,0.7153,0.6855,0.68262,0.67373,0.67199,0.66043,0.65143,0.64958,0.64838,0.64827,0.63742,0.57234,0.56244,0.54292,0.50806,0.50616,0.50513,0.50513,0.49768,0.49575,0.49487,0.49479,0.48687,0.48684,0.47838,0.47478,0.46109,0.46056,0.44716,0.44289,0.41851,0.41307,0.41227,0.39056,0.38981,0.38078,0.3706,0.35242,0.34429,0.34364,0.34215,0.34144,0.34131,0.33684,0.33112,0.33051,0.32763,0.32018,0.31847,0.31635,0.3163,0.30895,0.3023,0.25851,0.22083,0.21219,0.21022,0.20735,0.20729,0.20603,0.20332,0.19712,0.19485,0.17471,0.17429,0.15808,0.15347,0.14194,0.14178,0.14132,0.12145,0.11514,0.11129,0.10918,0.10264,0.10225,0.10005,0.09718,0.09687,0.09448,0.07992,0.07231,0.07078,0.07074,0.07068,0.07065,0.07065,0.07065,0.05924,0.0557,0.05152,0.04666,0.0464,0.03518,0.03403,0.02491,0.02441,0.02139,0.0132,0.013,0.01287,0.01043,0.00929,0.00785,0.00737,0.00687,0.00574,0.00445,0.00438,0.00355,0.00303,0.00284,0.00271,0.00214,0.002,0.00176,0.00172,0.00123,0.00122,0.00114,0.00099,0.00091,0.00083,0.00066,0.00047,0.00036,0.00014,0.00004,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":18884},{"name":"江戸川区","values":[206.05823,196.5033,188.12188,172.93749,167.82685,151.3652,150.45391,148.54702,145.89311,140.02291,139.68547,138.92355,130.29928,130.11035,129.0649,120.91374,120.25059,119.77933,119.31732,119.06027,115.198,114.78989,111.77221,110.57322,108.96187,108.36694,108.32119,106.65219,106.22915,105.59884,101.93351,98.73752,98.51814,95.80762,94.8397,93.14601,91.08947,89.60209,89.52669,89.22303,88.10388,87.84955,82.83523,80.40995,80.33488,80.22908,79.58555,76.76852,76.74413,76.46251,75.33033,75.26057,75.18443,73.95847,73.39123,73.31405,71.12994,70.47363,70.37084,70.15614,70.08318,69.57828,69.40697,68.95036,67.93549,67.64992,67.36117,67.23804,65.38084,64.31759,63.45695,63.07884,63.01213,62.56659,62.55646,62.05883,61.82973,61.29672,61.11153,59.67715,59.46426,58.94814,58.51707,58.25679,58.10026,58.09994,57.2353,56.66103,55.09911,53.90146,53.14435,53.05758,52.50189,51.82435,51.76597,51.6316,50.89256,49.02841,49.01375,48.78082,48.42961,48.37359,48.03123,47.9979,47.24959,46.66576,46.29896,44.70691,44.59337,43.86933,43.82413,43.54683,43.31842,42.67265,42.64835,42.45604,42.26208,42.23936,42.22315,42.04828,42.02047,41.30604,41.2616,41.24653,41.09555,41.03397,40.63717,40.48025,40.16419,39.61553,39.33812,39.09315,38.61211,38.2491,38.10307,37.67506,36.73335,36.60007,36.56359,35.82117,35.76265,35.72364,35.6482,35.35382,35.10333,34.49371,34.15032,33.79793,33.4105,33.36808,32.22758,32.14982,31.83255,31.46107,31.33013,31.30042,30.90487,30.86788,30.86699,30.5503,30.40004,30.11023,30.06571,29.69293,29.57628,29.56222,29.51088,29.31506,29.29578,28.95638,28.77726,28.43948,28.35646,27.74155,27.41744,27.19468,26.90342,26.89848,26.80925,26.77152,26.047,25.98109,25.90289,25.88632,25.76622,25.75472,24.9641,24.91915,24.70212,24.11869,23.96558,23.60731,23.1912,23.09903,23.08216,22.04979,21.96295,21.95938,21.93372,21.66484,21.66272,21.50529,21.47102,21.16535,21.09826,21.03969,20.93476,20.62421,20.54275,20.49337,20.36855,20.34685,20.15438,20.05404,20.02799,19.80053,19.23279,19.13576,18.90321,18.89276,18.87763,18.79472,18.73317,18.63798,18.54537,18.31096,18.29364,18.24059,18.05849,17.9858,17.77163,17.48443,17.46767,17.39079,17.36898,17.27463,17.20885,17.12866,16.93266,16.67146,16.53643,16.05388,16.04348,15.98121,15.95425,15.77906,15.65976,15.59401,15.29481,15.15393,15.12137,15.08956,15.08418,15.06906,14.96282,14.80679,14.79581,14.74347,14.62877,14.56755,14.47944,14.27815,14.21197,14.17996,13.8359,13.82862,13.81279,13.6615,13.48367,13.42543,13.37775,13.09028,13.06464,13.06271,12.97383,12.76958,12.7249,12.66105,12.56921,12.48695,12.47072,12.44853,12.43231,12.11467,12.02759,12.01748,11.97141,11.90472,11.69613,11.57244,11.55062,11.06574,10.93838,10.82206,10.80878,10.73994,10.73349,10.72885,10.72781,10.68527,10.43028,10.37684,10.37428,10.37309,10.33534,10.26817,10.18719,10.08524,9.94223,9.92748,9.85581,9.79882,9.77866,9.70795,9.61037,9.5602,9.54057,9.37043,9.28641,9.18259,9.11674,9.0526,8.953060000000002,8.76031,8.7232,8.67393,8.57748,8.56188,8.5,8.4516,8.44073,8.393090000000003,8.39113,8.374980000000003,8.359830000000002,8.29461,8.23976,8.17703,8.16194,8.107620000000002,8.08574,8.0776,8.04182,7.9061,7.84943,7.72304,7.70433,7.66364,7.63006,7.56494,7.54777,7.52596,7.41003,7.37312,7.37163,7.3081,7.285,7.24049,7.1582,7.14245,7.11896,7.09677,7.05583,6.95369,6.93942,6.90059,6.88686,6.80796,6.75159,6.71538,6.71158,6.63063,6.61639,6.5694,6.47076,6.46507,6.46092,6.40728,6.38694,6.37832,6.37531,6.36271,5.99912,5.94872,5.8872,5.86423,5.745,5.69513,5.65862,5.65314,5.64672,5.61194,5.59324,5.56274,5.56212,5.55826,5.4697,5.46444,5.4578,5.40376,5.40116,5.24862,5.22451,5.21919,5.19524,5.1686,5.13567,5.02067,4.9828,4.97706,4.95008,4.9192,4.86633,4.7648,4.65656,4.63676,4.63523,4.51607,4.488000000000001,4.456800000000001,4.4487,4.43999,4.4325,4.371050000000001,4.28981,4.25235,4.23635,4.22906,4.151,3.84043,3.79644,3.78256,3.75612,3.73916,3.73583,3.73241,3.69826,3.66687,3.57388,3.5644,3.55272,3.46976,3.45334,3.42531,3.35798,3.30567,3.24248,3.21638,3.19717,3.12061,3.11582,3.01569,3.01225,2.99669,2.9941,2.96458,2.93475,2.92924,2.9098,2.90062,2.86378,2.85676,2.84658,2.84243,2.82348,2.82087,2.81553,2.80825,2.79113,2.76511,2.75117,2.7404,2.7184,2.70341,2.68056,2.65168,2.65032,2.64189,2.63955,2.63171,2.61762,2.55238,2.53478,2.46105,2.45488,2.4514,2.41988,2.4183,2.40277,2.39601,2.36709,2.36659,2.35892,2.34524,2.28355,2.27787,2.24991,2.21581,2.16974,2.15506,2.14366,2.12133,2.11936,2.06685,2.06474,2.016,1.97324,1.96998,1.96947,1.95784,1.94394,1.91664,1.9099,1.88668,1.85367,1.77115,1.72658,1.72385,1.68684,1.66953,1.66547,1.65341,1.61764,1.58286,1.57811,1.57471,1.55276,1.52957,1.51547,1.51302,1.45222,1.40843,1.39753,1.39525,1.38885,1.38709,1.32743,1.32717,1.32172,1.30096,1.2832,1.2814,1.27057,1.19882,1.18308,1.18048,1.17103,1.15998,1.11132,1.11031,1.05097,1.02858,1.01946,1.01895,0.99689,0.94735,0.90989,0.88899,0.88649,0.8638,0.85385,0.84522,0.844,0.81793,0.79908,0.79242,0.77669,0.73204,0.73164,0.70233,0.69299,0.69253,0.68714,0.68546,0.67234,0.67076,0.63576,0.63186,0.62507,0.61985,0.61477,0.61207,0.60081,0.59347,0.58731,0.57936,0.56498,0.56433,0.55365,0.52679,0.52201,0.51818,0.5108,0.50656,0.47985,0.47337,0.43437,0.42578,0.41856,0.41752,0.40257,0.39355,0.38244,0.36869,0.34674,0.34472,0.33469,0.31151,0.2898,0.25639,0.22057,0.21046,0.20344,0.2005,0.1834,0.17207,0.16483,0.15409,0.15288,0.14754,0.14746,0.14152,0.14108,0.13784,0.121,0.11914,0.11447,0.10848,0.10007,0.09908,0.09255,0.09046,0.08494,0.07114,0.07074,0.06669,0.05581,0.05194,0.05168,0.04946,0.04854,0.04746,0.04698,0.03556,0.03371,0.02781,0.02736,0.02599,0.02468,0.02261,0.02009,0.01916,0.01738,0.01733,0.01675,0.01477,0.01168,0.01149,0.01147,0.01139,0.01131,0.01116,0.00961,0.00931,0.00928,0.00883,0.00756,0.00718,0.00714,0.00556,0.00527,0.00477,0.00463,0.00433,0.00353,0.00336,0.00328,0.00284,0.00252,0.00221,0.00191,0.00186,0.00177,0.00156,0.00131,0.00101,0.00057,0.00028,0.00025,0.0002,0.00019,0.00019,0.00009,0.00003,0.00002,0.00002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":15194},{"name":"足立区","values":[256.64074,253.91971,247.7449,247.12828,246.5077,242.18262,221.80153,212.78588,200.81374,198.63022,196.62771,187.81659,186.65801,186.5899,184.12271,184.08027,180.49327,178.54889,178.0868,177.31273,177.13476,174.84201,169.94121,169.08877,166.19487,166.02952,165.60313,157.86456,156.94043,156.88796,156.40449,150.64323,147.00673,146.33021,134.55289,132.52823,131.00723,130.77106,130.36056,128.80612,123.86925,122.35289,121.13712,111.18779,110.04234,109.03455,88.54281,84.89562,84.02335,82.53657,82.31135,81.53443,80.61322,80.45712,76.30588,74.44032,72.58096,66.80789,61.29085,59.81891,59.22829,58.81571,58.45156,58.05693,56.22151,55.94762,54.44755,53.66115,52.51864,51.64977,49.3728,45.35392,45.23544,44.45962,44.34164,43.92229,43.34813,41.57211,41.02764,39.4237,38.86155,38.26198,37.42754,36.31667,35.87758,34.72518,33.54195,31.97528,31.95312,31.90425,31.89625,31.12558,30.55293,29.85474,29.29444,28.13636,27.88358,27.86073,27.78381,27.27776,27.26449,26.98077,26.63452,26.44425,26.13418,25.13624,24.59541,24.42047,23.7873,23.34247,23.18297,23.13576,22.86973,22.75284,22.45627,22.34997,22.20482,21.87077,21.26236,21.07405,20.92249,20.44041,20.22606,19.81568,19.72414,19.63947,19.55454,19.50572,19.46309,19.29439,19.12809,19.12103,19.00011,18.3184,18.10025,18.08774,17.87393,17.6397,17.58355,17.43341,16.29027,16.19295,16.17955,16.10138,16.00595,15.90898,15.77894,15.65829,15.00764,14.95973,14.89305,14.73487,14.70451,14.61818,14.50592,14.43892,14.26216,14.23689,14.09989,13.82117,13.62147,13.51517,13.4891,13.18486,13.17979,12.91883,12.8018,12.71848,12.44207,12.36856,12.26581,12.20912,12.18864,12.10276,12.06772,11.93819,11.76662,11.71735,11.69725,11.66557,11.59584,11.43683,11.41144,11.16382,11.15951,10.67651,10.56835,10.45173,10.35422,10.26815,10.13151,10.124,10.0667,9.94538,9.59729,9.54808,9.49744,9.36058,9.14788,9.1194,9.03653,8.9175,8.9057,8.88091,8.779170000000002,8.74708,8.732530000000002,8.68702,8.679600000000002,8.63557,8.60623,8.56697,8.50094,8.41014,8.3766,8.1752,8.10624,8.06654,8.065860000000002,8.05322,7.95637,7.79129,7.71888,7.6778,7.66792,7.61757,7.55717,7.43798,7.40032,7.33258,7.27081,7.19214,7.13228,7.09418,7.05154,7.00059,6.96909,6.95716,6.90563,6.85844,6.80902,6.79857,6.74237,6.74005,6.70771,6.66026,6.59537,6.57995,6.57761,6.39173,6.24327,6.1657,6.15796,6.15656,6.06779,6.05994,5.90508,5.88319,5.7653,5.75678,5.73298,5.71986,5.66955,5.65788,5.61158,5.57128,5.51822,5.4287,5.37342,5.3549,5.33261,5.19155,5.15718,5.12983,5.12282,5.12269,5.01735,4.99574,4.97251,4.96848,4.95812,4.94737,4.93659,4.92956,4.92251,4.89766,4.86898,4.86476,4.86054,4.85472,4.82754,4.81215,4.78901,4.75351,4.69765,4.66743,4.61107,4.60826,4.57935,4.54246,4.51611,4.486220000000001,4.45218,4.4268,4.39073,4.38317,4.29327,4.28907,4.24032,4.213440000000001,4.17321,4.109670000000001,4.09014,4.059020000000001,4.02924,4.00822,3.97004,3.9288,3.92257,3.90875,3.85849,3.84286,3.83012,3.80905,3.77207,3.76257,3.74005,3.73794,3.70867,3.70129,3.67227,3.62857,3.62747,3.60505,3.60406,3.57708,3.52618,3.49261,3.48917,3.4622,3.43224,3.35174,3.33971,3.32527,3.32335,3.32128,3.31336,3.30703,3.27648,3.27531,3.25463,3.24103,3.22443,3.21241,3.17704,3.16596,3.1618,3.13979,3.13632,3.13573,3.12089,3.11812,3.08733,3.05292,3.04827,3.03921,3.03916,3.0382,3.0343,2.97707,2.94409,2.89645,2.86709,2.8548,2.85209,2.82212,2.76216,2.75278,2.73007,2.71379,2.68661,2.68152,2.65857,2.65472,2.63529,2.62629,2.59788,2.57769,2.56767,2.56196,2.56184,2.54467,2.53096,2.44718,2.43313,2.42687,2.41958,2.40151,2.39991,2.36839,2.344,2.34052,2.31626,2.3095,2.25601,2.18819,2.18741,2.18381,2.17677,2.15193,2.15079,2.14856,2.13843,2.1343,2.12737,2.11091,2.10304,2.09287,2.09016,2.08535,2.08078,2.08005,2.05697,2.04532,2.03511,2.02714,2.01584,2.01307,1.99656,1.98687,1.97952,1.96969,1.96117,1.95156,1.94483,1.92015,1.91405,1.89823,1.88241,1.8821,1.86802,1.853,1.84892,1.83314,1.796,1.78948,1.78629,1.77025,1.75052,1.74452,1.72395,1.72006,1.69786,1.69564,1.69465,1.68969,1.67356,1.65239,1.65048,1.64619,1.63033,1.62976,1.62341,1.59496,1.59417,1.59039,1.58162,1.56346,1.56074,1.55243,1.54265,1.54225,1.54173,1.53778,1.52804,1.52742,1.51269,1.50993,1.50083,1.4847,1.47397,1.46813,1.46786,1.46761,1.46677,1.46319,1.46311,1.44457,1.43904,1.43706,1.43683,1.42005,1.41746,1.41204,1.37114,1.36597,1.36471,1.36095,1.35976,1.3596,1.35787,1.35628,1.3412,1.3309,1.31978,1.29214,1.29061,1.28124,1.27547,1.2718,1.27116,1.25075,1.25022,1.2356,1.20627,1.19844,1.19392,1.16772,1.16657,1.16146,1.16139,1.13873,1.13708,1.13226,1.10931,1.10665,1.10482,1.0794,1.07934,1.07678,1.07163,1.06761,1.06286,1.06172,1.06063,1.05035,1.04787,1.04055,1.02811,1.01912,1.01691,1.00559,1.00256,0.99261,0.99123,0.96848,0.96581,0.96028,0.95835,0.95002,0.94925,0.94844,0.94767,0.94571,0.91322,0.91026,0.90474,0.8915,0.86764,0.85478,0.84809,0.84494,0.83959,0.83364,0.83175,0.81524,0.81377,0.81211,0.80628,0.80457,0.80213,0.79181,0.78644,0.78629,0.77834,0.77786,0.77507,0.77386,0.76918,0.74107,0.72724,0.71046,0.69667,0.69569,0.69353,0.68287,0.66632,0.66034,0.65577,0.64544,0.6402,0.63326,0.63211,0.62712,0.62688,0.61825,0.61807,0.61779,0.61581,0.61211,0.60924,0.60894,0.60819,0.6045,0.60134,0.58295,0.57695,0.57133,0.57073,0.56739,0.56452,0.55438,0.54294,0.54168,0.53858,0.53449,0.53422,0.52838,0.5274,0.52701,0.52306,0.52191,0.51696,0.51678,0.51445,0.50676,0.50283,0.49524,0.4919,0.48796,0.48685,0.4867,0.48468,0.47925,0.4665,0.46588,0.45454,0.45343,0.44787,0.44677,0.44529,0.43118,0.427,0.40554,0.40342,0.39871,0.39871,0.39461,0.39386,0.3936,0.39358,0.38859,0.38635,0.3811,0.36871,0.36704,0.3637,0.36342,0.35977,0.35958,0.35341,0.34991,0.34533,0.33954,0.33879,0.33747,0.33715,0.33224,0.32572,0.32513,0.32087,0.32001,0.31282,0.30429,0.29996,0.29885,0.29676,0.28797,0.2859,0.26666,0.26568,0.25779,0.25678,0.25315,0.2483,0.24486,0.24192,0.24112,0.24085,0.23367,0.22911,0.229,0.22783,0.21836,0.2181,0.21795,0.21248,0.20742,0.20666,0.20578,0.20452,0.20103,0.19712,0.18755,0.18551,0.18299,0.17693,0.17576,0.17543,0.17414,0.17181,0.16757,0.16744,0.16535,0.16514,0.16205,0.15291,0.13944,0.13823,0.13397,0.13207,0.13163,0.13028,0.12952,0.12952,0.11912,0.11682,0.11325,0.11175,0.11122,0.10975,0.10876,0.10693,0.10422,0.09815,0.09591,0.09544,0.09398,0.0905,0.08959,0.08831,0.0882,0.08733,0.08655,0.08543,0.0843,0.08341,0.08328,0.08157,0.08123,0.07993,0.07944,0.0777,0.07422,0.07137,0.07102,0.06997,0.0681,0.06561,0.06537,0.0641,0.06364,0.06222,0.06014,0.05999,0.0581,0.05465,0.05211,0.05123,0.05039,0.04895,0.04664,0.04643,0.04424,0.0432,0.03923,0.03775,0.03451,0.03191,0.03164,0.02912,0.02531,0.02506,0.02249,0.02243,0.02214,0.02028,0.01933,0.01907,0.01811,0.01745,0.01727,0.01552,0.01539,0.01452,0.01424,0.01378,0.01331,0.01102,0.00982,0.00824,0.00808,0.008,0.0077,0.0062,0.00384,0.00365,0.00342,0.00339,0.00289,0.00286,0.00256,0.00241,0.00231,0.00186,0.00171,0.0017,0.00164,0.00108,0.00059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":13546},{"name":"杉並区","values":[38.65128,36.75194,36.04583,35.08407,34.97894,33.30036,33.29108,32.9736,32.013,31.91501,31.76116,31.38066,30.76936,30.65699,30.63188,30.56662,30.47525,30.45036,30.15509,29.93216,29.84576,29.82382,29.42302,29.10637,29.07341,29.01168,28.64295,28.6425,28.62378,28.59239,28.42065,28.22831,28.17366,27.86694,27.85644,27.71591,27.66296,27.64891,27.55064,27.39474,27.3345,27.08403,26.70199,26.60975,26.15576,26.04649,25.93616,25.74727,25.74353,25.65909,25.49631,25.33295,25.30691,25.29087,25.08137,25.03256,24.84208,24.8243,24.82223,24.8143,24.81252,24.80233,24.62969,24.38934,24.18535,24.13988,24.06431,23.94457,23.92283,23.90154,23.89998,23.79242,23.7903,23.77848,23.76811,23.75815,23.71219,23.7049,23.6922,23.67475,23.67133,23.54313,23.54286,23.51237,23.46764,23.42106,23.318,23.27063,23.20101,23.08244,23.07325,23.02103,23.01153,22.91242,22.87505,22.85215,22.82841,22.76434,22.68106,22.66511,22.46409,22.35766,22.35377,22.33263,22.27332,22.24963,22.2463,22.21968,22.15391,22.10638,22.08972,22.05321,22.0164,21.85693,21.83153,21.72834,21.66523,21.63686,21.40543,21.38326,21.35335,21.35236,21.29657,21.24789,21.17057,21.13969,21.11649,21.08801,21.00887,21.00531,20.98075,20.95412,20.91068,20.72315,20.68948,20.62516,20.5315,20.41568,20.29267,20.25453,20.12546,20.08695,20.06497,20.04487,20.02271,20.002,20.0016,19.92886,19.84089,19.75953,19.68329,19.67232,19.62564,19.6202,19.57601,19.55078,19.52602,19.48956,19.48893,19.47396,19.46901,19.41516,19.35955,19.34058,19.32515,19.27887,19.25914,19.19019,19.15425,19.11171,18.9846,18.97737,18.97127,18.80964,18.78811,18.75957,18.73806,18.72816,18.57139,18.38525,18.36897,18.26366,18.198,18.18851,18.18373,18.08793,18.00669,17.98168,17.95704,17.95202,17.87989,17.87827,17.85957,17.67128,17.55696,17.53365,17.49069,17.48486,17.4433,17.43479,17.31294,17.27877,17.25773,17.11716,16.94557,16.90374,16.87162,16.76778,16.67905,16.61591,16.54002,16.49274,16.46655,16.43709,16.37665,16.29733,16.27521,16.13319,16.0673,15.99289,15.95514,15.8946,15.8237,15.7948,15.73784,15.61994,15.59036,15.58325,15.57706,15.56778,15.5238,15.51146,15.45956,15.44687,15.44215,15.31683,15.27985,15.21851,15.18415,15.17761,15.14691,15.14248,15.06799,15.06756,14.99421,14.91919,14.86491,14.71528,14.70651,14.69821,14.60674,14.51332,14.46168,14.41972,14.41073,14.40084,14.39025,14.35801,14.33873,14.31093,14.27828,14.26911,14.24981,14.14205,14.08029,14.0022,13.96411,13.96102,13.91625,13.80359,13.7073,13.7053,13.7021,13.69938,13.6121,13.54461,13.51182,13.49599,13.48829,13.48422,13.44228,13.38795,13.3701,13.27331,13.24653,13.16944,13.11197,13.06135,12.98403,12.90695,12.88313,12.87338,12.86525,12.8294,12.82866,12.79039,12.74713,12.72863,12.69597,12.63518,12.56698,12.55978,12.5169,12.48446,12.38052,12.32608,12.32542,12.31398,12.2987,12.22137,12.14245,12.13407,12.04904,11.96046,11.92145,11.90341,11.9012,11.83524,11.80315,11.78258,11.77167,11.76527,11.7474,11.6695,11.66688,11.60013,11.46028,11.42527,11.40594,11.29612,11.25956,10.9101,10.90494,10.89828,10.84814,10.80961,10.78525,10.74633,10.68645,10.67262,10.66028,10.64345,10.63972,10.58606,10.57451,10.55714,10.54927,10.48938,10.45863,10.45295,10.43027,10.37765,10.32713,10.31312,10.2046,10.17595,10.12573,10.06684,9.94899,9.93226,9.92475,9.9213,9.861,9.79431,9.76679,9.73277,9.70781,9.68808,9.65346,9.57526,9.57128,9.51326,9.43969,9.36482,9.28828,9.25751,9.24588,9.23831,9.22393,9.16903,9.000870000000003,8.9046,8.88856,8.85409,8.85191,8.84904,8.81322,8.7828,8.760730000000002,8.717750000000002,8.68924,8.68196,8.67001,8.6482,8.64085,8.61051,8.58896,8.54427,8.53737,8.53559,8.50614,8.4752,8.41504,8.35764,8.33628,8.28736,8.255800000000002,8.25335,8.23368,8.22134,8.217040000000003,8.15005,8.12515,8.10351,8.066940000000002,8.053850000000002,7.94453,7.91565,7.88855,7.84573,7.70197,7.69262,7.6717,7.54623,7.39839,7.36368,7.3612,7.30015,7.25788,7.22689,7.20377,7.1671,7.16397,7.13744,7.12079,7.07238,7.03172,6.99234,6.87843,6.84893,6.82954,6.80745,6.79063,6.78255,6.77021,6.74398,6.63098,6.62007,6.61242,6.5989,6.57628,6.53923,6.48636,6.466,6.37049,6.33793,6.3126,6.30002,6.26295,6.19792,6.14875,5.97453,5.82874,5.80941,5.80576,5.80042,5.79774,5.77934,5.75394,5.71485,5.63623,5.63294,5.55007,5.50058,5.31086,5.30835,5.2933,5.14706,5.0788,5.05573,5.03701,5.01259,4.88594,4.87938,4.86316,4.85132,4.74278,4.73242,4.64833,4.491170000000001,4.46822,4.39798,4.32859,4.19526,4.1225,4.043180000000001,3.97275,3.84222,3.62636,3.59641,3.58869,3.53318,3.46806,3.3632,2.84813,2.82951,2.78006,2.58341,2.39246,2.01448,1.9779,1.897,1.80739,1.53387,1.46473,0.85364,0.77942,0.72969],"total":7900},{"name":"品川区","values":[153.25235,105.41173,102.91907,102.17582,98.51678,98.24986,95.5256,94.71195,86.53125,85.23096,83.57397,83.16409,82.03599,76.75122,76.18428,76.12326,76.03171,75.66974,74.40669,72.44098,70.79046,69.80249,68.85754,68.76476,68.3619,68.19586,68.09806,67.01312,66.91147,66.01887,65.39789,64.686,63.23196,62.85455,62.47706,62.26503,60.08079,58.00289,57.98017,57.58726,57.37926,52.67859,52.28002,52.03562,51.3395,49.97961,49.94733,46.32681,45.98386,45.76991,45.31418,45.28546,43.96769,43.51296,43.15797,42.64977,41.70318,40.91279,40.33471,39.86888,39.82459,39.80598,39.45022,38.9671,38.63974,38.2802,37.6703,37.36659,36.30285,35.76146,35.66094,35.62918,35.47259,34.40693,33.91064,33.5819,33.48591,32.86486,32.60376,32.53986,31.04437,30.47793,30.35009,30.11985,29.48404,29.15753,29.04403,28.9924,28.74631,28.19878,27.9153,26.48662,25.45837,25.39615,25.30297,24.71267,24.64221,24.53444,24.28315,23.78561,23.28146,22.5133,22.33497,21.84326,21.68086,21.39146,21.23723,21.10162,21.07971,19.66443,19.57338,19.47213,19.3563,18.4983,18.34399,18.1939,18.13555,18.12949,17.85406,17.75487,17.70509,17.54696,17.0999,16.94125,16.48763,16.34924,16.19006,16.02539,15.61005,15.02966,14.9686,14.62354,14.58248,14.40712,14.23214,13.78366,13.6197,13.59151,13.56639,13.1138,13.01367,12.89592,12.88155,12.58536,11.80432,11.79823,11.32976,11.07412,10.87717,10.46478,10.32795,10.26328,9.91084,9.88776,9.54204,9.28644,9.14959,8.97805,8.5663,8.54161,8.52713,8.23746,7.99904,7.97277,7.93845,7.81185,7.66146,7.5826,7.45847,7.39836,7.39823,7.21707,6.78068,6.62155,6.57922,6.43982,6.35555,6.17061,5.96359,5.91441,5.89709,5.81286,5.79544,5.34481,5.31509,5.16524,4.93769,4.78085,4.74282,4.438500000000001,4.23336,4.22234,4.1413,4.075910000000001,4.06042,4.012260000000001,3.95271,3.92726,3.90758,3.80611,3.75277,3.68206,3.6566,3.65447,3.61314,3.33251,3.32398,3.27456,3.24837,3.11198,3.02406,3.02005,2.65322,2.63506,2.58442,2.53931,2.5053,2.44707,2.32247,2.08304,2.01755,2.00194,1.91621,1.74652,1.6895,1.66633,1.6541,1.62417,1.61696,1.59207,1.58082,1.55655,1.42876,1.42619,1.38091,1.32608,1.32604,1.32101,1.22661,1.21856,1.15815,1.13073,1.11,1.10999,1.03964,1.03196,0.98515,0.98034,0.89638,0.89307,0.87309,0.85376,0.82073,0.81077,0.78829,0.72181,0.71381,0.64952,0.63498,0.60741,0.6055,0.59892,0.59834,0.58378,0.53417,0.52953,0.52851,0.52837,0.512,0.49664,0.49242,0.46469,0.4465,0.44581,0.44129,0.4153,0.41407,0.40911,0.40729,0.40604,0.37804,0.34403,0.34398,0.34054,0.33448,0.32483,0.31434,0.28811,0.26898,0.26428,0.25164,0.21188,0.20409,0.20012,0.18761,0.1663,0.12911,0.11901,0.11403,0.10787,0.10763,0.09547,0.08888,0.08247,0.0824,0.08054,0.07483,0.07055,0.07018,0.06813,0.06176,0.0604,0.05692,0.05624,0.04175,0.03947,0.02737,0.0227,0.0226,0.01862,0.01355,0.01299,0.00864,0.00767,0.00698,0.00653,0.00633,0.00622,0.00522,0.00463,0.00461,0.00249,0.00228,0.00226,0.00186,0.0018,0.0014,0.00123,0.00102,0.001,0.00094,0.0008,0.00075,0.0007,0.00065,0.00045,0.00045,0.00027,0.00017,0.00013,0.0001,0.00009,0.00005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":6590},{"name":"葛飾区","values":[108.06722,76.63799,50.526,46.59566,43.45498,42.02418,41.96377,41.67898,37.39085,36.32458,35.71235,33.97954,33.89653,33.36147,32.75238,31.58226,30.57806,30.48804,29.12244,28.91095,28.61091,28.4259,28.32406,28.15604,27.51991,27.24227,26.80599,26.74019,26.50403,26.29184,26.27587,26.12351,26.07715,25.96848,25.74205,25.66271,25.65978,25.60384,25.54892,25.42908,25.28862,24.49993,24.44264,24.33936,24.3112,24.25562,24.13294,23.72273,23.66895,23.57789,23.48246,23.04442,22.87318,22.79503,22.49697,22.35577,22.15184,22.12132,21.87767,21.62222,21.38423,21.30758,21.25895,21.15789,21.1436,21.0511,20.92408,20.84441,20.80464,20.59836,20.35108,19.92575,19.72299,19.5701,19.53878,19.47336,19.25259,18.90107,18.88853,18.75235,18.4404,18.30335,18.25848,18.20176,18.00613,17.9766,17.86974,17.84436,17.79252,17.57103,17.51814,17.50983,17.48254,17.42162,17.35565,17.3292,17.29339,17.26433,17.20089,17.059,17.05297,17.05203,17.05037,16.8274,16.74312,16.71172,16.70703,16.47383,16.33136,16.32492,16.31562,16.14402,16.12763,16.09843,15.93498,15.86124,15.807,15.77793,15.68171,15.66237,15.64683,15.59066,15.51065,15.43023,15.37512,15.34265,15.29856,15.27854,15.18442,15.15115,15.11392,15.05011,15.01821,14.892,14.82679,14.81499,14.79561,14.69906,14.65089,14.63092,14.43885,14.40277,14.32852,14.29806,14.27873,14.22938,14.18827,14.14502,13.98454,13.91887,13.88172,13.87068,13.85764,13.76151,13.70996,13.68867,13.66865,13.61815,13.54868,13.42924,13.39984,13.39085,13.31722,13.13236,13.10684,13.0092,12.9921,12.99007,12.98267,12.91284,12.89644,12.7184,12.66953,12.56513,12.46157,12.44877,12.41414,12.39275,12.33501,12.30379,12.28816,12.26248,12.16216,12.14798,12.12919,12.07814,12.07081,12.06173,11.94458,11.92261,11.75878,11.67327,11.59468,11.58481,11.57357,11.47027,11.41301,11.35787,11.33738,11.3248,11.22435,11.19476,11.15062,11.13624,11.06245,10.99923,10.87729,10.82731,10.81886,10.81587,10.76392,10.76081,10.63512,10.63253,10.5761,10.54744,10.52522,10.51352,10.51232,10.49927,10.31658,10.31099,10.27034,10.21644,10.14182,10.10061,10.01982,9.89174,9.86688,9.82383,9.78056,9.59517,9.5092,9.47488,9.46935,9.45264,9.44025,9.40411,9.34317,9.3179,9.29205,9.24551,9.20731,9.20323,9.19399,9.14278,9.05505,8.73843,8.69657,8.69575,8.66765,8.63081,8.61153,8.57652,8.56881,8.521190000000002,8.41676,8.3184,8.25095,8.197950000000002,8.173550000000002,8.11656,8.09283,8.08489,8.05301,8.03856,7.83627,7.758,7.74875,7.7138,7.70362,7.63318,7.6165,7.60657,7.51299,7.42306,7.30659,7.25533,7.09875,7.03157,7.00846,7.00376,6.89524,6.89374,6.87583,6.80966,6.73352,6.69974,6.60861,6.60007,6.51899,6.50306,6.46771,6.44169,6.40318,6.38217,6.36085,6.3219,6.28674,6.26212,6.25716,6.22013,6.1368,6.07433,6.06158,6.01318,5.89836,5.75718,5.72327,5.69322,5.67091,5.64619,5.58531,5.58177,5.55961,5.55335,5.48607,5.4456,5.44398,5.41592,5.38791,5.26114,5.25105,5.20391,5.18561,5.18054,5.16418,5.15445,5.15205,5.10109,5.10027,5.08985,4.93675,4.92523,4.90998,4.7905,4.75313,4.74813,4.74044,4.73975,4.73323,4.73106,4.65205,4.55017,4.53886,4.53158,4.52121,4.41888,4.40798,4.39879,4.39091,4.30929,4.28735,4.24398,4.23328,4.23215,4.1672,4.165510000000001,4.157250000000001,4.137260000000001,4.11242,4.11132,4.05731,4.04035,4.03393,4.02942,3.99684,3.99608,3.95169,3.92359,3.91659,3.90141,3.88442,3.86757,3.841,3.8324,3.77099,3.75479,3.73,3.71762,3.7072,3.70098,3.61629,3.59304,3.5488,3.51924,3.49379,3.48437,3.47175,3.46956,3.44291,3.43689,3.41363,3.39264,3.37336,3.3511,3.32713,3.30862,3.26469,3.26347,3.26332,3.24523,3.22552,3.14451,3.11896,3.1182,3.10806,3.10355,3.08565,3.05921,3.04166,2.96653,2.92781,2.88272,2.87986,2.87434,2.85285,2.82926,2.81388,2.7756,2.71583,2.63674,2.61212,2.60743,2.59751,2.59499,2.59116,2.57219,2.54714,2.53148,2.50231,2.48696,2.42692,2.36182,2.21832,2.15937,2.1442,2.06663,2.05637,2.03929,1.98316,1.90265,1.84259,1.8008,1.77286,1.76789,1.70277,1.68255,1.51318,1.413,1.40532,1.40324,1.30565,1.30042,1.24849,1.22701,1.22067,1.2169,1.13768,1.08819,1.03754,1.00119,0.99266,0.97384,0.91395,0.83688,0.83392,0.7691,0.72783,0.68325,0.61699,0.57314,0.54732,0.50385,0.38068,0.36796,0.30009,0.29366,0.29125,0.26724,0.24888,0.2089,0.20101,0.15551,0.10974,0.07667,0.0661,0.06595,0.03825,0.03594,0.01092,0.00969,0.00689,0.00676,0.00429,0.00405,0.00317,0.00316,0.0029,0.00262,0.00203,0.00069,0.00067,0.00047,0.00017,0.00014,0.00011,0.00006,0.00005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":5373},{"name":"目黒区","values":[125.3903,105.81415,100.68113,98.77495,97.63795,95.72342,95.05644,86.31553,82.58974,80.40873,77.72061,76.53015,74.563,73.77355,72.83647,70.66982,68.27912,66.80466,66.06169,65.77545,61.32765,58.4433,57.54798,55.83781,55.60193,47.32989,47.23593,46.35822,45.88857,45.02995,44.82896,44.64739,43.50624,40.16696,39.46661,38.53579,34.75258,34.56002,34.50692,34.46714,32.23199,31.99562,31.57395,31.51726,31.29478,31.12456,30.55532,30.26244,30.2378,30.19732,28.90924,28.65803,28.51471,28.05516,27.82182,27.6002,27.44511,27.35945,26.94107,26.69265,26.04209,25.83932,25.7194,25.229,24.89075,24.826,24.43641,24.35563,24.16947,24.09395,24.08553,23.18769,22.95019,22.27713,22.18032,22.11556,21.88257,21.69835,19.06357,18.47366,18.32689,17.09541,17.05222,16.88995,16.4262,16.05066,15.90543,15.5142,15.31685,15.18191,15.10955,14.90824,13.83552,13.56376,13.50274,13.11153,13.09258,12.9349,12.83456,12.66077,12.1538,11.7974,11.6581,11.6309,11.56879,11.53678,11.53041,10.76838,10.43229,10.3101,9.98768,9.88899,9.77539,9.73598,9.68381,9.63151,9.33903,9.18519,8.842320000000003,8.65795,8.48552,8.27592,8.2705,7.85662,7.75436,7.69013,7.41075,7.32177,7.18027,7.13393,7.02544,7.02313,6.75802,6.55613,6.2318,6.05065,5.98451,5.93829,5.93598,5.80145,5.74843,5.40824,5.36164,5.13676,5.09193,4.94596,4.92584,4.92209,4.92095,4.86278,4.80831,4.69569,4.66547,4.61444,4.54051,4.52957,4.5133,4.496800000000001,4.38779,4.23048,4.162340000000001,3.87287,3.4607,3.42987,3.2806,3.22321,3.12682,3.11436,3.1032,2.94825,2.83856,2.78624,2.69474,2.68745,2.60726,2.58768,2.47451,2.3586,2.32752,2.28171,2.15453,2.15228,2.10094,1.95978,1.87908,1.87016,1.79522,1.70406,1.5864,1.54414,1.52213,1.46277,1.43748,1.41295,1.35115,1.32085,1.19433,1.17795,1.17098,1.14963,1.14356,1.14194,1.10078,1.03972,0.95269,0.86694,0.86455,0.86066,0.83066,0.79229,0.77134,0.73804,0.73676,0.73599,0.7237,0.64602,0.6361,0.59182,0.58335,0.53442,0.33991,0.33617,0.32112,0.23458,0.15366,0.13343,0.13192,0.08325],"total":4426},{"name":"墨田区","values":[155.50716,146.10215,128.12686,126.01474,125.7988,116.44698,110.6458,97.25786,92.99452,87.66455,87.03163,83.49552,82.57758,78.64505,72.25579,71.51973,67.77156,65.77175,62.57838,52.66143,51.81718,50.38446,47.83365,46.7683,46.68915,46.3863,46.01651,45.99883,45.9891,45.8517,45.49877,44.4204,41.769,41.4841,41.18993,39.8152,39.64792,39.06817,38.75573,37.33898,36.86879,36.34377,35.52109,35.38159,34.47074,34.28163,32.32733,31.00681,30.39905,29.64456,29.02618,28.95611,27.20869,26.66554,25.72484,25.51644,25.42263,24.72725,24.65084,24.30117,23.89143,23.7498,22.77065,22.69699,22.15632,22.12635,21.93296,21.16773,20.13222,19.38956,19.26788,17.06513,16.90383,16.53376,16.06932,15.75035,15.67133,15.48945,14.95286,14.85678,14.69452,13.57899,13.57003,12.57748,12.3139,12.0416,11.01601,10.81838,10.17497,9.80873,9.70127,8.8691,8.82289,7.92266,7.87231,7.29927,7.07116,7.06948,7.02785,6.74356,6.51135,6.14511,5.60911,5.40171,5.16305,5.13865,4.85005,4.35869,4.150730000000001,4.11562,4.11522,3.95455,3.89276,3.77426,3.7064,3.60831,3.51677,3.16925,3.15397,3.10913,3.01443,2.88412,2.7519,2.7024,2.50254,2.48139,2.26536,2.19053,2.05514,2.01221,2.0066,1.86041,1.78763,1.764,1.65817,1.63015,1.58077,1.57467,1.52609,1.37172,1.36868,1.30688,1.27998,1.24292,1.21211,1.20037,1.12101,1.09462,1.06769,1.02473,1.01519,0.96356,0.9558,0.93505,0.93131,0.91995,0.87538,0.85393,0.8126,0.79504,0.79301,0.71243,0.69076,0.66656,0.63635,0.59726,0.58144,0.57616,0.5727,0.57083,0.53963,0.53693,0.53117,0.49755,0.4414,0.42913,0.41494,0.40772,0.40572,0.3733,0.36423,0.3399,0.33768,0.33046,0.32823,0.31494,0.30459,0.27672,0.23295,0.22573,0.13103,0.13083,0.12872,0.12721,0.10611,0.10309,0.10303,0.01784,0.01349,0.00822,0.00325,0.00062,0.00033,0,0,0,0,0,0,0],"total":4143},{"name":"練馬区","values":[31.3546,29.79338,29.0173,27.19452,27.1635,26.52632,26.25831,25.32063,23.51471,22.9504,20.90763,20.65972,20.08284,19.95962,19.42686,18.84909,17.82473,17.61192,16.7639,16.20355,15.72946,15.65261,15.17886,14.98452,14.82589,14.40673,14.25025,14.21715,13.8114,13.66439,13.66306,13.36799,13.34607,13.27958,13.27762,13.17891,12.98482,12.96515,12.82311,12.70298,12.69226,12.63674,12.60559,11.89402,11.87504,11.86629,11.84635,11.80369,11.71981,11.71474,11.61636,11.60748,11.59994,11.35475,11.33195,11.32817,11.0996,10.96668,10.90871,10.87016,10.86921,10.71905,10.6333,10.56975,10.48321,10.40324,10.3989,10.39844,10.33529,10.33297,10.22114,10.19463,10.15126,10.15066,10.05956,9.98159,9.86451,9.85732,9.76239,9.74391,9.72702,9.70722,9.69222,9.65119,9.59677,9.52466,9.51165,9.48934,9.4792,9.46845,9.44529,9.42323,9.42017,9.37436,9.30561,9.30455,9.18879,9.1415,9.04266,8.94333,8.91565,8.84759,8.76907,8.750030000000002,8.74879,8.73707,8.66902,8.53964,8.53654,8.48227,8.46863,8.427070000000002,8.42651,8.36333,8.30631,8.24587,8.17193,8.15607,8.129440000000002,8.12736,8.12011,8.08976,8.081250000000002,8.076320000000003,8.04847,8.02061,8.01685,7.99793,7.98976,7.94956,7.94165,7.8877,7.87782,7.84176,7.82426,7.82155,7.81742,7.81177,7.64375,7.56034,7.50052,7.49465,7.49114,7.45643,7.37247,7.33971,7.33675,7.33228,7.31675,7.2869,7.28464,7.28382,7.22862,7.22573,7.19094,7.16544,7.14643,7.04923,7.03866,7.01261,6.96297,6.92666,6.91821,6.87742,6.86331,6.82864,6.81342,6.81139,6.78638,6.77416,6.75725,6.73321,6.73032,6.69842,6.69772,6.69735,6.6841,6.67435,6.65361,6.64598,6.63125,6.61842,6.56966,6.55981,6.54257,6.54131,6.50096,6.488,6.48489,6.46725,6.46172,6.4556,6.4511,6.44746,6.42315,6.41314,6.40966,6.39742,6.39527,6.38956,6.38052,6.35709,6.33293,6.32355,6.30254,6.30251,6.3007,6.23773,6.20831,6.19562,6.17691,6.16418,6.15411,6.15094,6.14958,6.14705,6.14566,6.1391,6.13645,6.12061,6.11178,6.09593,6.08498,6.07829,6.04949,6.04291,6.02696,5.99658,5.99382,5.97002,5.94299,5.9238,5.9066,5.882,5.8628,5.82393,5.8214,5.80606,5.79979,5.79478,5.79268,5.77078,5.76933,5.76221,5.75167,5.74511,5.73732,5.71346,5.67792,5.65797,5.65292,5.64794,5.64483,5.61464,5.61279,5.60597,5.59338,5.57211,5.53226,5.51834,5.50911,5.50777,5.49845,5.49614,5.46644,5.46622,5.46108,5.45442,5.43685,5.4322,5.41746,5.39206,5.39021,5.37048,5.36641,5.34584,5.33738,5.31967,5.31198,5.30862,5.27719,5.27557,5.26649,5.26411,5.25748,5.24312,5.23237,5.22569,5.22073,5.19246,5.18707,5.18271,5.1801,5.16316,5.15304,5.1417,5.13481,5.13338,5.11981,5.11036,5.10165,5.09709,5.08821,5.07799,5.07314,5.06836,5.06035,5.05657,5.05478,5.04275,5.02529,5.01739,5.0068,5.0066,5.00154,5.00132,4.99768,4.98329,4.98147,4.97534,4.95579,4.95115,4.9467,4.93695,4.93543,4.90749,4.89167,4.89026,4.88131,4.8734,4.87164,4.85995,4.83746,4.83361,4.8286,4.81658,4.81303,4.80782,4.80223,4.8007,4.79491,4.78055,4.76568,4.7521,4.74338,4.73216,4.72674,4.72394,4.72059,4.71902,4.66775,4.65729,4.64709,4.64113,4.60402,4.5934,4.59095,4.54463,4.53476,4.53056,4.52401,4.52304,4.49744,4.49,4.48964,4.468860000000001,4.46831,4.45611,4.4445,4.43062,4.42647,4.41667,4.41446,4.40945,4.40855,4.39062,4.387400000000001,4.37498,4.3639,4.362390000000001,4.34183,4.337640000000001,4.31354,4.31164,4.306060000000001,4.304820000000001,4.30091,4.27945,4.26895,4.248840000000001,4.248770000000001,4.24782,4.20183,4.19688,4.17933,4.1677,4.14943,4.14884,4.14441,4.13764,4.12709,4.0762,4.0758,4.07062,4.0562,4.033260000000001,4.024250000000001,4.01913,4.01696,3.98861,3.98061,3.97661,3.95695,3.95445,3.92559,3.91697,3.91215,3.90304,3.89439,3.88389,3.88236,3.88209,3.85777,3.8533,3.84252,3.84234,3.83874,3.82687,3.82663,3.8164,3.79003,3.78428,3.76953,3.76358,3.75524,3.75112,3.74723,3.73454,3.7334,3.7159,3.71,3.70454,3.68105,3.65976,3.64794,3.64447,3.63867,3.60962,3.60508,3.60169,3.59817,3.57134,3.57067,3.55649,3.53267,3.52884,3.52785,3.4897,3.48086,3.48044,3.48021,3.45653,3.42415,3.41573,3.4155,3.40503,3.40321,3.39652,3.39308,3.38126,3.37493,3.37387,3.35774,3.35493,3.34763,3.34669,3.33311,3.32583,3.32582,3.31086,3.29523,3.28501,3.27071,3.24548,3.22988,3.22629,3.20478,3.20469,3.20339,3.17702,3.17576,3.1388,3.13635,3.13199,3.11281,3.11277,3.11132,3.10781,3.10346,3.08594,3.08501,3.08089,3.06208,3.05293,3.05088,3.04667,3.02872,3.02529,3.02332,2.98649,2.98564,2.98236,2.98225,2.98167,2.97815,2.96308,2.94485,2.94263,2.9413,2.93756,2.93631,2.93044,2.92657,2.92364,2.90863,2.90393,2.89431,2.89426,2.87418,2.86806,2.86686,2.86651,2.86381,2.86081,2.85711,2.83254,2.82196,2.81764,2.81481,2.79506,2.79318,2.77866,2.76087,2.76085,2.76033,2.75917,2.74815,2.74079,2.72182,2.71971,2.71823,2.71692,2.71348,2.7126,2.70792,2.69809,2.69159,2.68444,2.68002,2.67906,2.67617,2.67473,2.65554,2.64639,2.63684,2.63621,2.63156,2.62385,2.62309,2.62137,2.6064,2.6032,2.60283,2.60032,2.57373,2.56842,2.55464,2.54347,2.53529,2.53314,2.52319,2.52292,2.51576,2.50144,2.50142,2.48489,2.4765,2.47427,2.46822,2.45248,2.44948,2.44831,2.43407,2.42948,2.39336,2.38428,2.36467,2.3622,2.35456,2.32597,2.31309,2.30563,2.30422,2.30096,2.29971,2.29875,2.28287,2.26603,2.25669,2.24461,2.24132,2.22062,2.20703,2.19921,2.19037,2.1898,2.17153,2.16972,2.16916,2.16532,2.14212,2.13979,2.13193,2.12215,2.11286,2.0953,2.08119,2.05926,2.04571,2.03957,2.03881,2.03832,2.03333,2.01656,1.99595,1.96821,1.94412,1.94301,1.9406,1.93049,1.91137,1.90067,1.89425,1.89398,1.88545,1.88087,1.86863,1.84022,1.83101,1.76243,1.75291,1.752,1.72601,1.72469,1.72386,1.70257,1.702,1.6884,1.61795,1.61138,1.59779,1.5922,1.56591,1.53948,1.5343,1.52848,1.5068,1.49021,1.47195,1.43635,1.42496,1.40435,1.4043,1.40252,1.38202,1.37417,1.36519,1.36146,1.36025,1.30403,1.30146,1.2853,1.23194,1.22087,1.20589,1.19466,1.17295,1.15371,1.12078,1.11911,1.10155,1.09473,1.01964,1.00883,1.00624,0.9942,0.97737,0.97601,0.94868,0.94431,0.85382,0.84674,0.77648,0.75431,0.75188,0.74969,0.74825,0.7381,0.73402,0.69419,0.69259,0.67547,0.67341,0.65764,0.6416,0.64026,0.62769,0.62453,0.60986,0.5772,0.57461,0.56449,0.55205,0.54893,0.51734,0.48145,0.47846,0.45322,0.41409,0.40921,0.37041,0.34404,0.33335,0.32374,0.30449,0.26885,0.26631,0.25327,0.2349,0.21225,0.20806,0.17661,0.17107,0.15222,0.11388,0.11275,0.106,0.10469,0.09095,0.08733,0.0814,0.06954,0.05087,0.03809,0.0339,0.0339,0.01026,0.00001,0,0,0,0,0],"total":4005},{"name":"江東区","values":[207.28703,196.48173,182.03958,166.73997,158.6418,99.72293,91.40703,83.7066,78.18247,73.40849,70.57093,64.77373,62.31299,61.72299,60.40593,58.47981,53.17936,51.97096,50.91116,47.53897,45.04084,43.99481,40.44751,36.84547,36.54596,35.62444,35.25853,35.18103,33.97673,32.34752,30.95963,30.07975,27.21507,25.05606,24.67019,23.7673,22.553,22.05039,20.04083,19.70346,18.65889,16.16448,15.65515,15.38678,13.81525,13.57429,13.42539,13.12623,12.32374,11.99246,11.74848,11.55936,10.80589,10.62656,10.13,9.96301,9.05491,8.57666,8.32992,7.77563,7.74247,7.7184,7.33807,7.16966,7.15014,7.14052,6.6317,6.32993,5.81908,5.81831,5.75047,5.49785,5.38923,5.25648,5.19904,5.11295,5.10372,4.99334,4.65438,4.63031,4.46948,4.44911,4.42995,4.39597,4.18318,3.92524,3.91236,3.77763,3.66026,3.52754,3.50235,3.41274,3.36913,3.36077,3.29631,3.25154,3.11515,2.98515,2.94768,2.9135,2.84375,2.77896,2.5158,2.25129,2.20083,2.02454,1.91387,1.90027,1.8477,1.80739,1.75279,1.7171,1.70261,1.68971,1.68457,1.68278,1.66186,1.63862,1.60317,1.60061,1.53822,1.53297,1.51054,1.50473,1.46301,1.4592,1.38658,1.36471,1.33888,1.3232,1.31322,1.20967,1.20254,1.2003,1.19687,1.18964,1.15792,1.1447,1.14323,1.13477,1.12455,1.11664,1.11329,1.11025,1.09888,1.0143,0.98714,0.94984,0.94502,0.94191,0.93211,0.9118,0.90952,0.9019,0.87172,0.85916,0.81745,0.78175,0.77008,0.72753,0.7009,0.68465,0.66518,0.65434,0.6473,0.62497,0.61641,0.60835,0.60743,0.59931,0.58389,0.56695,0.56089,0.55903,0.55463,0.54633,0.54033,0.53438,0.52462,0.49453,0.48993,0.47083,0.45794,0.45156,0.44056,0.42766,0.41501,0.41132,0.40624,0.40286,0.38382,0.38074,0.37806,0.37585,0.37494,0.36301,0.34941,0.34707,0.33596,0.33187,0.32637,0.31941,0.3088,0.30565,0.29451,0.2931,0.28936,0.27693,0.2637,0.2558,0.25568,0.24787,0.2458,0.2384,0.23498,0.23441,0.23355,0.22888,0.2267,0.22604,0.22148,0.21559,0.20645,0.20362,0.19832,0.18792,0.18508,0.17878,0.17343,0.17228,0.17041,0.17,0.16899,0.16175,0.16041,0.15743,0.15665,0.15417,0.15254,0.15077,0.14893,0.14386,0.14326,0.14248,0.13629,0.13429,0.13383,0.13349,0.133,0.13181,0.13108,0.12904,0.11958,0.11885,0.11876,0.11867,0.11804,0.11651,0.11327,0.11317,0.11182,0.10989,0.10962,0.10806,0.10458,0.09869,0.09395,0.09201,0.09082,0.08685,0.08505,0.08475,0.08439,0.08398,0.08334,0.08027,0.08001,0.07926,0.07891,0.07763,0.07582,0.07493,0.07487,0.07254,0.07243,0.07232,0.07195,0.07112,0.06946,0.06884,0.0687,0.0683,0.06801,0.06793,0.06663,0.06649,0.066,0.06571,0.06554,0.06328,0.06313,0.06262,0.06147,0.06134,0.06121,0.06029,0.06,0.05852,0.05718,0.05627,0.0557,0.05494,0.05254,0.05235,0.05226,0.05146,0.04888,0.04779,0.04725,0.04696,0.04557,0.04524,0.04457,0.04411,0.04349,0.04344,0.04292,0.04286,0.04161,0.04137,0.04103,0.04087,0.04054,0.03789,0.03672,0.03631,0.03602,0.03437,0.03389,0.03373,0.03357,0.03261,0.03244,0.03244,0.03153,0.03128,0.03098,0.03098,0.0308,0.03027,0.02977,0.0288,0.02818,0.02794,0.02767,0.02736,0.02699,0.02694,0.02673,0.02655,0.02602,0.02572,0.02553,0.02534,0.02513,0.0251,0.02502,0.02471,0.02456,0.02453,0.02453,0.02367,0.02355,0.0234,0.02331,0.02298,0.02249,0.02245,0.02213,0.02125,0.0212,0.02105,0.02093,0.02047,0.02037,0.02031,0.02024,0.02021,0.01944,0.01921,0.01873,0.01851,0.01836,0.018,0.01781,0.01772,0.01738,0.01708,0.01645,0.01643,0.01615,0.01591,0.01583,0.01555,0.01526,0.01513,0.015,0.01467,0.01453,0.01436,0.01431,0.01396,0.01387,0.01369,0.01359,0.01354,0.01307,0.01257,0.01227,0.01219,0.0113,0.01123,0.01113,0.01085,0.01072,0.01037,0.01029,0.0102,0.00995,0.00995,0.00988,0.00953,0.00939,0.0091,0.00896,0.00891,0.00882,0.00878,0.00867,0.00867,0.00864,0.00809,0.00806,0.00804,0.00781,0.00777,0.00763,0.00758,0.00747,0.00744,0.00709,0.007,0.007,0.00693,0.00691,0.00686,0.00667,0.00665,0.00648,0.0061,0.00582,0.0058,0.00561,0.00553,0.00553,0.00539,0.00539,0.00537,0.00532,0.00529,0.00516,0.005,0.005,0.00495,0.00476,0.00444,0.00431,0.00426,0.00407,0.00403,0.00398,0.00388,0.00382,0.00365,0.00362,0.0036,0.00358,0.00355,0.00352,0.00338,0.00334,0.00333,0.0033,0.00329,0.00327,0.00326,0.00319,0.00318,0.00317,0.00316,0.00309,0.00285,0.00282,0.00277,0.00269,0.00268,0.00245,0.00242,0.00234,0.00232,0.00224,0.00218,0.00206,0.00199,0.00189,0.00188,0.00186,0.00183,0.00183,0.00178,0.00177,0.00173,0.0017,0.00169,0.00156,0.00154,0.00146,0.00143,0.00143,0.00141,0.00135,0.00129,0.00128,0.00126,0.00126,0.00124,0.00114,0.0011,0.00103,0.00102,0.00096,0.00092,0.0009,0.00089,0.00085,0.0008,0.0008,0.00075,0.00074,0.00073,0.00071,0.00071,0.00071,0.0007,0.0007,0.00067,0.00066,0.00064,0.00063,0.00062,0.00056,0.00055,0.00052,0.00052,0.0005,0.0005,0.00046,0.00035,0.00034,0.00032,0.00031,0.00028,0.00028,0.00027,0.00025,0.00025,0.00025,0.00024,0.00023,0.00023,0.00022,0.00022,0.0002,0.0002,0.00018,0.00015,0.00012,0.0001,0.00009,0.00009,0.00009,0.00008,0.00008,0.00007,0.00006,0.00006,0.00006,0.00004,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":3100},{"name":"荒川区","values":[71.82081,63.64013,52.5538,50.00041,48.88016,47.30094,45.15852,44.44659,44.28894,44.14387,43.82655,42.62381,41.92362,40.41607,39.04956,38.26607,37.89794,37.80211,37.39654,34.46617,34.25721,33.71036,33.51516,31.38808,30.99552,30.51934,28.50404,27.70596,26.92828,26.71863,26.31195,25.90004,25.74765,25.33618,25.1171,24.30964,22.52125,22.30162,21.06719,20.48488,18.97222,18.09681,17.97159,17.9579,17.76952,17.40628,16.78975,16.64981,15.92689,15.48071,15.47547,14.31668,13.95539,13.89922,12.58332,12.07131,11.83828,11.66673,11.217,10.87772,10.63521,10.42331,9.75163,9.41168,8.31991,8.24828,8.086220000000003,8.01709,7.83237,7.6505,7.42444,7.17729,6.79232,6.23084,5.89079,5.71457,5.14326,5.04018,4.71004,4.59816,4.45221,4.38051,4.34897,4.23979,4.23766,4.201170000000001,3.96699,3.77284,3.72919,3.61548,3.28878,3.26637,3.18517,3.16387,2.57942,2.55439,2.53625,2.08678,2.062,1.91873,1.84894,1.83829,1.70236,1.67565,1.49748,1.45451,0.98186,0.93751,0.87148,0.73647,0.60024,0.58673,0.56454,0.51663,0.48541,0.47811,0.4387,0.43068,0.41543,0.33975,0.3192,0.31567,0.29352,0.29297,0.27537,0.2571,0.25054,0.24731,0.22354,0.15987,0.11172,0.09591,0.08829,0.08205,0.06317,0.04796,0.04722,0.04208,0.03891,0.03452,0.02421,0.0231,0.0178,0.01221,0.01171,0.00847,0.00762,0.00395,0.00357,0.00236,0.0017,0.00146,0.00109,0.00096,0.00022,0,0,0],"total":1996},{"name":"中野区","values":[14.84078,12.07253,11.7442,10.72933,10.43039,9.61182,9.59891,9.31275,9.25115,9.11549,9.10957,9.0876,9.04406,8.961370000000002,8.84377,8.56241,7.83216,7.64464,7.64435,7.62907,7.5823,7.41718,7.40846,7.32301,7.27127,7.11638,7.10986,7.0907,7.07953,6.9812,6.97309,6.92649,6.82998,6.68166,6.6475,6.51633,6.44274,6.38272,6.33702,6.32095,6.31107,6.21384,6.2098,6.20903,6.19225,6.16898,6.10548,6.0951,6.04533,6.02359,5.99405,5.99142,5.98801,5.88302,5.86585,5.83663,5.73852,5.73,5.57966,5.56337,5.42919,5.42456,5.41758,5.40248,5.38904,5.37155,5.3357,5.31114,5.21643,5.21345,5.20711,5.16535,5.15074,5.06976,5.00108,4.98888,4.96757,4.95247,4.93189,4.87742,4.85845,4.8536,4.85287,4.84075,4.82806,4.80108,4.79754,4.73845,4.70057,4.63069,4.6229,4.56901,4.55075,4.53131,4.47102,4.45143,4.437890000000001,4.436930000000001,4.33877,4.32933,4.26655,4.25611,4.25041,4.21496,4.21115,4.21101,4.18152,4.155770000000001,4.13157,4.089870000000001,4.064390000000001,4.03716,4.00776,4.00443,4.00252,3.93265,3.8933,3.86941,3.84548,3.84265,3.77255,3.75679,3.67898,3.67264,3.66776,3.6637,3.61758,3.60277,3.60275,3.59191,3.58469,3.56633,3.55145,3.55056,3.50008,3.49699,3.45902,3.43081,3.41338,3.39307,3.34201,3.32771,3.28987,3.25311,3.24501,3.23773,3.18369,3.16785,3.15545,3.14387,3.09149,3.05236,3.02496,3.01239,2.9808,2.97453,2.96737,2.93727,2.93458,2.91999,2.89017,2.88163,2.87423,2.8637,2.86137,2.85945,2.85477,2.82598,2.7876,2.71548,2.69241,2.61805,2.60271,2.5822,2.50026,2.48276,2.44493,2.44484,2.42045,2.40308,2.38638,2.38276,2.37633,2.36045,2.35329,2.29469,2.29263,2.28414,2.27904,2.27095,2.22078,2.13794,2.1307,2.12742,2.1135,2.10125,2.0801,2.07526,2.06473,2.02718,1.95093,1.93674,1.92597,1.91326,1.89922,1.86163,1.82604,1.8067,1.79147,1.76906,1.73513,1.72578,1.70671,1.68898,1.68718,1.60343,1.57744,1.5716,1.55507,1.45612,1.45596,1.25108,1.23304,1.233,0.9413,0.85149,0.83912,0.69278,0.6815,0.66354,0.64435,0.64023,0.48231,0.32511,0.28077,0.13431],"total":983},{"name":"板橋区","values":[17.44625,16.02353,14.32143,14.12573,14.02988,13.49249,13.41028,12.80964,12.66056,12.21226,12.19155,11.99806,11.70316,11.0022,10.80987,10.55321,10.13471,10.12621,10.0954,10.09217,9.93072,9.4679,9.27334,9.20044,8.93153,8.92761,8.82597,8.78131,8.4461,8.158390000000002,8.13515,8.11667,8.1004,8.03632,7.65197,7.63691,7.60381,7.43039,7.38175,7.33947,7.25849,7.22947,7.22941,7.17294,7.15054,7.02864,6.98349,6.96568,6.85845,6.74178,6.59748,6.4393,5.99487,5.91248,5.901,5.83469,5.64762,5.64538,5.54334,5.40856,5.26434,5.20751,5.16026,5.14276,5.13138,4.9095,4.76844,4.7423,4.59801,4.54326,4.46207,4.361170000000001,4.351790000000001,4.2265,4.22316,4.087,4.07396,4.07182,4.06757,4.062350000000001,4.04456,4.00206,4.00015,3.95466,3.9518,3.88409,3.83463,3.80383,3.73822,3.69615,3.69204,3.53457,3.50652,3.46359,3.37276,3.28875,3.27641,3.21653,3.1625,3.15897,3.14496,3.11196,2.99896,2.99073,2.94538,2.92737,2.91752,2.90973,2.90092,2.86368,2.86312,2.85557,2.83968,2.77658,2.73951,2.67359,2.64418,2.62697,2.56751,2.54709,2.52686,2.50508,2.49164,2.41975,2.38927,2.34315,2.33802,2.31088,2.30109,2.28673,2.21583,2.19994,2.12142,2.11686,2.06504,2.04716,2.03518,2.01735,2.01465,2.00297,1.95953,1.95622,1.95068,1.8931,1.86873,1.84699,1.81685,1.80081,1.79357,1.76002,1.691,1.67351,1.61982,1.57075,1.48849,1.48543,1.47662,1.45141,1.45102,1.43917,1.41856,1.4144,1.3037,1.29209,1.26881,1.23902,1.2389,1.23875,1.20919,1.1944,1.19251,1.19142,1.16894,1.15855,1.15727,1.15218,1.10962,1.0898,1.07228,1.03248,0.98753,0.96774,0.96062,0.94721,0.93621,0.90646,0.88822,0.86003,0.84302,0.83831,0.80949,0.80753,0.79787,0.79347,0.79203,0.78628,0.77838,0.75725,0.7453,0.72922,0.72517,0.72218,0.71554,0.7121,0.70978,0.70521,0.70505,0.69926,0.69707,0.68795,0.67554,0.67293,0.65715,0.65453,0.65443,0.64738,0.63499,0.631,0.60677,0.60306,0.60027,0.58168,0.57531,0.57374,0.57119,0.54878,0.54561,0.54295,0.54102,0.53103,0.5299,0.52559,0.52302,0.52189,0.51836,0.51455,0.51312,0.50804,0.50076,0.49721,0.49348,0.48427,0.48273,0.48139,0.48078,0.46951,0.44729,0.44663,0.43635,0.43112,0.42952,0.41605,0.41408,0.41229,0.41045,0.40456,0.39688,0.39145,0.38918,0.388,0.38758,0.38698,0.3847,0.34414,0.3381,0.33367,0.32966,0.32427,0.32132,0.31507,0.31173,0.30972,0.30865,0.30329,0.29987,0.29243,0.29234,0.29223,0.29091,0.28987,0.28406,0.28281,0.28065,0.28014,0.27889,0.27399,0.26633,0.26101,0.25774,0.25595,0.24889,0.24857,0.24028,0.24015,0.24015,0.23819,0.23582,0.23301,0.23009,0.22331,0.21879,0.21808,0.21316,0.20464,0.19996,0.1996,0.19544,0.19443,0.19318,0.18886,0.18868,0.18841,0.18758,0.1871,0.1843,0.18054,0.17359,0.17356,0.17325,0.17129,0.16633,0.16192,0.15742,0.15669,0.15364,0.15222,0.15142,0.14803,0.14577,0.14397,0.14289,0.1423,0.14198,0.14008,0.13906,0.13858,0.13758,0.13626,0.13532,0.13462,0.12985,0.12858,0.12576,0.12547,0.12356,0.11928,0.11891,0.11802,0.11765,0.11602,0.11208,0.11045,0.10867,0.10769,0.10756,0.10607,0.10346,0.10122,0.09975,0.09643,0.09547,0.09537,0.09509,0.09461,0.09393,0.09104,0.08987,0.08965,0.08866,0.08768,0.08748,0.08665,0.08659,0.08507,0.08468,0.08367,0.08266,0.08187,0.08011,0.07878,0.07687,0.07329,0.07322,0.07116,0.07001,0.06789,0.06786,0.06584,0.06483,0.0639,0.06364,0.06124,0.05927,0.05893,0.05757,0.05546,0.05507,0.05506,0.05289,0.05113,0.05109,0.05094,0.04973,0.04954,0.04914,0.04876,0.04864,0.0477,0.04754,0.04687,0.04546,0.0452,0.04172,0.04023,0.04004,0.03951,0.0388,0.03788,0.03767,0.03733,0.03729,0.03656,0.03652,0.03535,0.03523,0.03485,0.03345,0.03279,0.03273,0.03218,0.03112,0.02927,0.02691,0.02688,0.02621,0.02497,0.02497,0.02478,0.02433,0.02426,0.02294,0.02252,0.02186,0.02178,0.02175,0.02087,0.02059,0.02043,0.02035,0.01949,0.01887,0.01878,0.01829,0.01732,0.01654,0.01649,0.01645,0.01549,0.01519,0.01487,0.01375,0.01263,0.01149,0.01048,0.00937,0.00876,0.00838,0.00785,0.00766,0.00692,0.0069,0.00686,0.00681,0.00582,0.00572,0.00558,0.00553,0.00501,0.0039,0.00297,0.00203,0.00177,0.00141,0.00121,0.00108,0.00069,0.00022,0.00002,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":934},{"name":"豊島区","values":[15.9213,15.36358,15.32963,14.93441,14.841,14.71754,14.26158,14.07292,13.94789,13.66444,13.46855,13.46799,13.19075,13.162,13.1544,12.88815,12.88621,12.86374,12.06894,11.96038,11.91068,11.86863,11.78723,11.77872,11.44932,10.84537,10.60869,10.47727,10.40346,10.25584,9.98196,9.96321,9.87126,9.76444,9.2818,9.24691,9.001580000000002,8.34915,8.12773,8.07911,7.94944,7.91264,7.74999,7.66401,7.45817,6.94085,6.79458,6.17917,5.27957,5.15071,4.56707,4.02198,3.89648,3.84476,3.76645,3.6196,3.53813,3.515,3.47171,3.38176,3.20694,2.9246,2.91404,2.89946,2.88134,2.86447,2.80704,2.76784,2.63834,2.63499,2.5876,2.56757,2.53649,2.52144,2.47672,2.43484,2.4323,2.42554,2.35248,2.24752,2.10177,2.08651,2.08559,2.07907,2.07177,2.06491,2.06207,2.0326,1.97472,1.89733,1.88876,1.87233,1.81193,1.77188,1.70835,1.61703,1.60622,1.57415,1.56326,1.54743,1.54104,1.53737,1.53558,1.48999,1.46179,1.46096,1.34805,1.34799,1.3282,1.28201,1.27643,1.25741,1.25198,1.22779,1.2152,1.21014,1.19446,1.18359,1.16906,1.15467,1.14901,1.13522,1.12309,1.12089,1.09967,1.09548,1.06924,1.06535,1.04615,1.01658,1.00866,0.99267,0.94059,0.90822,0.89636,0.89543,0.85819,0.83053,0.80659,0.788,0.78611,0.77786,0.76547,0.76083,0.73842,0.73637,0.72531,0.71451,0.71224,0.69367,0.69112,0.68722,0.6813,0.66657,0.66646,0.65622,0.64488,0.63373,0.61384,0.60665,0.58557,0.5588,0.54241,0.54224,0.53988,0.5135,0.50863,0.50316,0.44773,0.42664,0.41841,0.40603,0.39133,0.38916,0.38338,0.38194,0.3635,0.36239,0.36036,0.34928,0.34235,0.33794,0.3283,0.31581,0.29355,0.26177,0.22658,0.20959,0.20883,0.17868,0.14436,0.13394,0.13158,0.12721,0.12636,0.10127,0.06547,0.0505,0.04614],"total":745},{"name":"北区","values":[20.84001,19.69602,18.85042,18.65205,17.22409,14.72235,13.99927,13.74471,13.13137,12.57889,11.23364,10.64553,10.63042,10.61809,9.6231,9.05927,8.527810000000002,8.501390000000002,8.42531,8.36407,8.309340000000002,8.10342,7.95905,7.69202,7.24503,7.21877,6.88756,6.88545,6.77075,6.46663,6.37299,5.44744,5.25575,5.2353,5.12812,4.97019,4.95343,4.95087,4.81556,4.79936,4.77689,4.52284,4.50449,4.48178,4.26722,4.257030000000001,4.13768,3.89359,3.87969,3.76497,3.66807,3.65575,3.54256,3.53151,3.47925,3.39509,3.32062,3.28271,3.15585,3.15037,3.1435,3.06469,3.01493,2.98963,2.88963,2.76036,2.75044,2.62409,2.53727,2.32505,2.30335,2.23924,2.23069,2.18044,2.15573,1.92102,1.8459,1.78951,1.76536,1.76041,1.72666,1.70387,1.69502,1.65024,1.61241,1.57016,1.55297,1.54738,1.51589,1.50875,1.46278,1.40933,1.38196,1.32405,1.31772,1.27249,1.26627,1.25338,1.24333,1.21593,1.21258,1.19058,1.17288,1.07488,1.05526,1.04934,1.02251,1.01957,1.00351,0.99857,0.96363,0.95779,0.93198,0.92509,0.89583,0.88906,0.87198,0.86487,0.84485,0.84201,0.77679,0.7563,0.74136,0.70611,0.60181,0.58168,0.57848,0.57023,0.56193,0.55395,0.5459,0.54167,0.51343,0.51067,0.5012,0.47953,0.47504,0.46127,0.45026,0.44669,0.44401,0.44271,0.44025,0.43766,0.42072,0.41844,0.41336,0.411,0.40216,0.39974,0.39957,0.38099,0.37547,0.36319,0.35013,0.31799,0.31194,0.30849,0.30406,0.29778,0.29764,0.29557,0.28914,0.27807,0.27437,0.26409,0.25628,0.2415,0.24006,0.23595,0.21828,0.21747,0.21535,0.2135,0.20528,0.19547,0.19537,0.19152,0.1905,0.19038,0.18619,0.18545,0.17492,0.16518,0.15539,0.1519,0.14557,0.13211,0.132,0.13052,0.12503,0.12423,0.12324,0.12304,0.12035,0.11844,0.11675,0.1165,0.11353,0.10851,0.09781,0.09605,0.09444,0.09354,0.09142,0.08711,0.0865,0.08591,0.08408,0.08287,0.08211,0.08009,0.07503,0.07409,0.07381,0.06709,0.06647,0.06314,0.05337,0.05337,0.04706,0.04644,0.04579,0.04512,0.04493,0.04377,0.04093,0.03933,0.03809,0.03728,0.03656,0.03543,0.03469,0.03423,0.03291,0.0324,0.03212,0.03108,0.03026,0.03018,0.02897,0.02887,0.02859,0.0266,0.026,0.02586,0.0257,0.02553,0.02457,0.02279,0.02252,0.02136,0.02121,0.02067,0.02024,0.02019,0.01858,0.01758,0.01735,0.017,0.01679,0.01462,0.01319,0.01204,0.01201,0.01172,0.01167,0.01129,0.01104,0.00985,0.00974,0.00819,0.0078,0.0078,0.00752,0.00724,0.00702,0.00588,0.00566,0.00522,0.0036,0.00359,0.0035,0.00347,0.0033,0.00293,0.00252,0.00171,0.00116,0.00096,0.00044,0.0004,0.00021,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":570},{"name":"渋谷区","values":[13.18941,11.49263,8.58844,7.45468,4.77214,4.7317,4.64668,4.53411,4.52162,4.46531,3.95519,3.90035,3.88624,3.80611,3.65071,3.64891,3.45385,3.37781,3.31307,3.06861,2.99269,2.9507,2.90206,2.83955,2.81081,2.70078,2.64691,2.64064,2.6257,2.57514,2.5253,2.49009,2.47525,2.42179,2.4197,2.39078,2.3747,2.37095,2.35682,2.33683,2.3255,2.2354,2.18891,2.11738,2.10036,2.08571,2.04702,2.01712,1.988,1.98575,1.97729,1.95751,1.93531,1.9244,1.92159,1.91825,1.9175,1.8567,1.8479,1.82363,1.80271,1.76207,1.75591,1.69587,1.67134,1.67058,1.66091,1.65691,1.65609,1.64207,1.63504,1.61973,1.60273,1.5879,1.57698,1.56479,1.51464,1.49774,1.47547,1.43516,1.41949,1.38691,1.37238,1.35198,1.34357,1.34117,1.33795,1.33322,1.32967,1.32342,1.27358,1.24893,1.24138,1.22308,1.21829,1.20571,1.20434,1.2002,1.19704,1.19553,1.18702,1.16972,1.16641,1.1566,1.15204,1.13292,1.13058,1.12451,1.11194,1.10596,1.1028,1.09118,1.08973,1.08839,1.08631,1.08235,1.04372,1.02713,1.01621,1.01154,1.00908,1.00553,0.98187,0.96862,0.94321,0.94267,0.9382,0.92914,0.91943,0.90663,0.8938,0.88514,0.86236,0.86016,0.8585,0.84718,0.82709,0.8239,0.82057,0.81866,0.81225,0.80011,0.79853,0.79754,0.79296,0.77319,0.7536,0.74534,0.73904,0.7184,0.71132,0.71003,0.70942,0.70681,0.66229,0.64028,0.63802,0.63679,0.62546,0.61489,0.60964,0.6075,0.58769,0.58312,0.55699,0.5532,0.54339,0.54058,0.53653,0.53515,0.53392,0.5284,0.52805,0.528,0.50881,0.50738,0.50398,0.49991,0.49979,0.47274,0.46299,0.45884,0.4559,0.45022,0.42994,0.42973,0.4206,0.39335,0.36414,0.34137,0.34014,0.33835,0.33074,0.30537,0.29201,0.26991,0.23101,0.22603,0.19996,0.19703,0.18421,0.18241,0.17463,0.17068,0.15471,0.14303,0.12557,0.12401,0.10198,0.09914,0.08666,0.08011,0.0605,0.05862,0.04657,0.03898,0.02344,0.02247,0.0212,0.02096,0.01854,0.01072,0.01048,0.00671,0.00537,0.00224,0.00133,0.0006,0.0005,0.00013,0,0],"total":297},{"name":"台東区","values":[14.22594,11.87637,5.84461,5.39968,5.11599,4.150350000000001,4.11037,3.89655,3.79992,3.79672,3.78335,3.77804,3.60593,3.59927,3.35403,3.33223,3.14049,3.11857,3.07356,3.00421,2.88174,2.85234,2.84354,2.78885,2.75683,2.71171,2.59548,2.59211,2.582,2.58174,2.54811,2.31503,2.29961,2.21431,2.18787,2.13283,2.05261,2.01077,1.94784,1.7543,1.7306,1.7199,1.68288,1.61513,1.60902,1.49698,1.48852,1.48686,1.46049,1.46,1.43046,1.41731,1.40128,1.37092,1.33349,1.29851,1.27463,1.26747,1.14728,1.13764,1.13344,1.01578,0.96373,0.87523,0.78357,0.76951,0.75415,0.74607,0.73597,0.6979,0.68868,0.59748,0.58567,0.48232,0.47802,0.47307,0.4466,0.44409,0.36498,0.36025,0.35432,0.31568,0.29051,0.29046,0.28163,0.2775,0.25537,0.22262,0.21964,0.19164,0.18495,0.16979,0.16534,0.15692,0.14441,0.13837,0.13674,0.13319,0.13014,0.12694,0.1237,0.12343,0.11966,0.11671,0.11478,0.10896,0.10114,0.10017,0.08971,0.08511,0.08476,0.07945,0.07477,0.07085,0.06621,0.06513,0.06086,0.05923,0.05918,0.05831,0.05823,0.0565,0.05444,0.05394,0.04781,0.0473,0.04556,0.04503,0.04116,0.04073,0.03764,0.03368,0.03146,0.02984,0.02973,0.02893,0.02721,0.02639,0.01995,0.01954,0.01697,0.01686,0.01667,0.01542,0.01165,0.01148,0.01051,0.00833,0.00726,0.007,0.00459,0.00313,0.00176,0.00128,0.00065,0],"total":192},{"name":"文京区","values":[16.05674,12.94731,10.57107,10.2396,7.29224,3.95758,3.75767,2.86061,2.78216,2.56378,2.00219,1.94961,1.88755,1.8527,1.84578,1.84354,1.79849,1.6989,1.60351,1.56543,1.5449,1.47734,1.43021,1.41403,1.3574,1.26607,1.26333,1.23112,1.09688,0.98348,0.97252,0.94438,0.90023,0.87316,0.85516,0.83752,0.81708,0.75461,0.72107,0.71801,0.71718,0.60733,0.60596,0.58327,0.55035,0.50321,0.49452,0.49283,0.48691,0.44281,0.44122,0.43677,0.41432,0.4044,0.4001,0.39114,0.38917,0.38462,0.36624,0.36,0.35837,0.34474,0.34146,0.33825,0.33472,0.30758,0.30514,0.23959,0.2316,0.215,0.18728,0.18042,0.17764,0.17043,0.16172,0.16136,0.16,0.15077,0.14959,0.14912,0.13658,0.12893,0.1264,0.11872,0.11853,0.11055,0.09952,0.09714,0.08006,0.07792,0.07331,0.07249,0.07163,0.0712,0.06821,0.06323,0.06195,0.05847,0.05634,0.05243,0.04816,0.0476,0.04738,0.04698,0.04424,0.04114,0.03988,0.03937,0.0386,0.03541,0.03238,0.03097,0.02918,0.02697,0.02619,0.02538,0.0235,0.02316,0.0225,0.01934,0.0188,0.01871,0.01826,0.01811,0.01589,0.01574,0.01452,0.01382,0.01379,0.01309,0.01282,0.01186,0.01129,0.01118,0.01009,0.00998,0.00917,0.00888,0.00874,0.00851,0.00843,0.00787,0.0077,0.00737,0.00692,0.0066,0.00635,0.00568,0.00556,0.00551,0.00531,0.00523,0.00417,0.00414,0.0038,0.00317,0.00273,0.00261,0.00235,0.0022,0.00211,0.00205,0.00186,0.00158,0.00146,0.00143,0.00089,0.00088,0.00055,0.00049,0.00045,0.00025],"total":137},{"name":"新宿区","values":[2.3884,2.30082,2.25504,2.17663,2.02973,2.02601,2.02578,1.90062,1.89165,1.88684,1.77581,1.68307,1.60962,1.59893,1.53575,1.50069,1.47013,1.44072,1.3487,1.32404,1.30466,1.29294,1.28419,1.28054,1.2804,1.23325,1.21885,1.20642,1.18372,1.17527,1.08025,1.05539,1.0502,1.04742,1.02359,1.00734,0.97873,0.86382,0.86272,0.8622,0.8589,0.8487,0.8435,0.83428,0.81547,0.79065,0.74625,0.74292,0.74135,0.73706,0.71612,0.68595,0.67504,0.63979,0.63869,0.61927,0.61866,0.60589,0.5829,0.54075,0.5393,0.53141,0.5168,0.51351,0.50419,0.49905,0.49525,0.49388,0.47161,0.46871,0.4641,0.45901,0.43623,0.43384,0.43292,0.42988,0.3942,0.38564,0.38524,0.38366,0.37821,0.35609,0.35097,0.34033,0.32945,0.31668,0.31661,0.30834,0.29416,0.29376,0.28753,0.28414,0.27392,0.27279,0.27123,0.26529,0.2578,0.25754,0.2528,0.25208,0.24788,0.24522,0.24027,0.238,0.23754,0.23669,0.22709,0.22251,0.21741,0.20762,0.20729,0.20673,0.19493,0.19087,0.18906,0.18755,0.1848,0.183,0.17782,0.17093,0.16948,0.16716,0.16119,0.15652,0.14937,0.14529,0.14447,0.14103,0.13951,0.13361,0.13343,0.1329,0.13222,0.12931,0.12843,0.12019,0.11578,0.10898,0.1085,0.1079,0.10464,0.1004,0.09727,0.09579,0.09195,0.09148,0.08744,0.08674,0.08488,0.084,0.07745,0.0759,0.07352,0.07194,0.0717,0.06674,0.06659,0.06463,0.06405,0.06326,0.0607,0.05986,0.0561,0.04937,0.04912,0.04829,0.0465,0.04574,0.04525,0.04477,0.03887,0.03714,0.0371,0.03472,0.03293,0.0329,0.02951,0.02917,0.0276,0.0274,0.02711,0.02708,0.02644,0.02638,0.02595,0.02584,0.02494,0.0249,0.02476,0.02467,0.02316,0.02311,0.02293,0.02247,0.02167,0.02151,0.02098,0.01983,0.01964,0.0192,0.01894,0.01832,0.01832,0.01676,0.01499,0.01463,0.0141,0.01269,0.01245,0.01139,0.0099,0.00973,0.0095,0.00944,0.00877,0.00829,0.00793,0.00786,0.00772,0.00715,0.00705,0.00683,0.00664,0.00645,0.00613,0.0059,0.00548,0.00542,0.00527,0.00503,0.00502,0.00495,0.00485,0.00477,0.00473,0.0046,0.00456,0.00433,0.0043,0.00422,0.00414,0.00401,0.00379,0.00366,0.00364,0.00356,0.00346,0.00346,0.00341,0.0033,0.00322,0.00296,0.00275,0.00265,0.00258,0.00253,0.00239,0.00216,0.00216,0.00198,0.00188,0.00183,0.00174,0.00173,0.00168,0.00164,0.00157,0.00154,0.00154,0.00131,0.00117,0.00115,0.00113,0.00111,0.00104,0.00094,0.00093,0.00066,0.00049,0.00031,0.00027,0.00024,0.00006,0.00004,0],"total":86},{"name":"港区","values":[3.04773,1.85014,1.23759,1.07475,0.85196,0.68708,0.38477,0.34701,0.30991,0.29914,0.26208,0.23181,0.23079,0.21934,0.21813,0.21147,0.20401,0.19872,0.197,0.1956,0.19111,0.19034,0.18884,0.17821,0.1774,0.17458,0.17156,0.17114,0.16957,0.16736,0.1646,0.15868,0.1565,0.15018,0.1491,0.14903,0.14505,0.14063,0.1405,0.13898,0.13576,0.13527,0.1348,0.13429,0.13005,0.12923,0.12799,0.12771,0.12699,0.12677,0.1266,0.1266,0.12541,0.12521,0.12504,0.12247,0.12187,0.11981,0.11954,0.11823,0.11772,0.11696,0.11693,0.11654,0.11574,0.11551,0.1154,0.11435,0.11404,0.11305,0.11153,0.11063,0.11061,0.10994,0.10962,0.10962,0.10962,0.10925,0.10874,0.10851,0.10469,0.10337,0.102,0.10084,0.10067,0.10047,0.09821,0.09797,0.09756,0.09721,0.09679,0.0963,0.09563,0.09436,0.09416,0.09354,0.09288,0.09239,0.09224,0.09025,0.08995,0.08968,0.08842,0.08709,0.08657,0.0864,0.0849,0.08433,0.08375,0.08276,0.08112,0.07786,0.07782,0.07714,0.07373,0.07273,0.07263,0.07184,0.07177,0.07105,0.07085,0.07083,0.07016,0.06963,0.0694,0.06909,0.06819,0.06808,0.06757,0.06733,0.06673,0.06607,0.0657,0.06526,0.06288,0.06286,0.06279,0.06237,0.06168,0.06163,0.06051,0.06028,0.05811,0.05721,0.0571,0.05708,0.05683,0.05581,0.05539,0.0551,0.05404,0.05334,0.05322,0.05308,0.05287,0.05279,0.0525,0.05064,0.05037,0.0501,0.04937,0.04764,0.04757,0.04706,0.04693,0.04574,0.04527,0.04516,0.0451,0.04497,0.04465,0.04384,0.04184,0.04035,0.04027,0.04008,0.03973,0.03961,0.03838,0.03751,0.03708,0.03657,0.0359,0.03547,0.03512,0.03476,0.03421,0.03411,0.03397,0.03366,0.03318,0.03316,0.03283,0.03277,0.03265,0.03167,0.03161,0.03135,0.03129,0.03123,0.03081,0.03049,0.02977,0.02949,0.02946,0.02906,0.02798,0.0274,0.02709,0.02705,0.02694,0.0254,0.02445,0.02425,0.02407,0.0236,0.02322,0.02309,0.02286,0.02284,0.02279,0.02236,0.02235,0.02229,0.02163,0.02143,0.0213,0.02127,0.02123,0.02082,0.02039,0.02011,0.0196,0.01921,0.01908,0.01896,0.0189,0.01886,0.01884,0.01857,0.01855,0.01777,0.01741,0.0172,0.01688,0.01673,0.0165,0.01644,0.0158,0.01579,0.01539,0.0153,0.0152,0.01431,0.01388,0.01348,0.01311,0.01307,0.01282,0.01278,0.01264,0.01249,0.01235,0.01169,0.01164,0.01147,0.01144,0.01099,0.01053,0.0085,0.00844,0.00837,0.00778,0.00771,0.00756,0.00683,0.00682,0.00616,0.00576,0.00574,0.00569,0.00559,0.00557,0.00536,0.0053,0.00518,0.00518,0.00516,0.00504,0.00501,0.00495,0.00494,0.00489,0.00474,0.00465,0.00451,0.00427,0.00414,0.00407,0.00404,0.00389,0.00384,0.00378,0.00341,0.00341,0.00334,0.00303,0.00301,0.00284,0.0028,0.00266,0.00232,0.00213,0.00209,0.00203,0.00169,0.00155,0.00142,0.0013,0.00128,0.00108,0.00099,0.00089,0.00088,0.00088,0.00023,0.00006,0.00004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":18},{"name":"中央区","values":[4.6714,2.42023,2.02529,1.73193,1.62501,1.23919,1.08003,0.91935,0.87724,0.78922,0.76003,0.74781,0.7329,0.43511,0.42625,0.39206,0.36339,0.35663,0.35204,0.34937,0.3482,0.34776,0.34667,0.34553,0.33416,0.318,0.26504,0.24394,0.21009,0.20064,0.19338,0.1931,0.19195,0.18877,0.18589,0.18544,0.18497,0.1833,0.18231,0.18231,0.18199,0.18147,0.18087,0.17875,0.17763,0.17698,0.17096,0.16698,0.16651,0.16554,0.16466,0.16461,0.16457,0.14729,0.13755,0.1188,0.10775,0.10214,0.09901,0.07918,0.06724,0.05754,0.03801,0.03264,0.0261,0.02565,0.02524,0.02357,0.02307,0.02178,0.01976,0.01766,0.0159,0.01551,0.01347,0.01294,0.01258,0.01096,0.01087,0.0106,0.0104,0.01022,0.00996,0.00913,0.00887,0.00884,0.00861,0.00857,0.00815,0.00786,0.00754,0.00695,0.00682,0.0068,0.00667,0.00665,0.00663,0.00661,0.00657,0.00656,0.00634,0.00601,0.006,0.00592,0.00572,0.00566,0.0055,0.00528,0.00487,0.00474,0.00467,0.00462,0.00448,0.00419,0.00407,0.00389,0.00375,0.00367,0.00356,0.00352,0.00345,0.00326,0.00275,0.00262,0.00248,0.00234,0.00224,0.00223,0.00216,0.00208,0.00201,0.00195,0.0019,0.00163,0.00152,0.00149,0.00149,0.00147,0.00142,0.0012,0.00093,0.0009,0.00085,0.00081,0.00076,0.00063,0.00059,0.00041,0.00025,0.00007,0.00002,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":4},{"name":"奥多摩町","values":[0.04472,0.02981,0.0295,0.02387,0.02384,0.02344,0.01707,0.01671,0.01593,0.01474,0.01406,0.01186,0.01181,0.01166,0.01126,0.01015,0.0095,0.00947,0.00929,0.00921,0.00859,0.00857,0.00823,0.00819,0.00804,0.00788,0.00784,0.00782,0.00737,0.00733,0.00721,0.00684,0.0068,0.00601,0.00571,0.00568,0.00554,0.00517,0.00511,0.00511,0.00482,0.00466,0.00451,0.00448,0.00427,0.0041,0.00399,0.00398,0.00384,0.00367,0.00364,0.00354,0.00347,0.00329,0.00321,0.00319,0.00312,0.0031,0.00309,0.00296,0.00289,0.00282,0.00282,0.00279,0.00278,0.00273,0.00271,0.00267,0.00259,0.00259,0.00258,0.00257,0.00255,0.00254,0.00252,0.0025,0.00243,0.00235,0.00234,0.00233,0.00229,0.00229,0.00222,0.00221,0.00221,0.00217,0.00216,0.00214,0.00214,0.0021,0.00204,0.00204,0.00203,0.00203,0.00203,0.00199,0.00197,0.00183,0.00176,0.00172,0.00167,0.00164,0.00164,0.00155,0.00155,0.00153,0.00142,0.00132,0.00129,0.00129,0.00127,0.00124,0.00123,0.00122,0.0012,0.0012,0.00119,0.00119,0.00117,0.00115,0.00111,0.00108,0.00105,0.00103,0.001,0.00099,0.00097,0.00097,0.00094,0.00094,0.00094,0.00092,0.00092,0.00091,0.0009,0.0009,0.00085,0.00081,0.0008,0.0008,0.00079,0.00079,0.00078,0.00073,0.00071,0.00071,0.0007,0.0007,0.0007,0.00069,0.00067,0.00066,0.00066,0.00063,0.00062,0.0006,0.00057,0.00057,0.00057,0.00056,0.00056,0.00056,0.00056,0.00055,0.00055,0.00055,0.00054,0.00054,0.00054,0.00053,0.0005,0.00048,0.00047,0.00045,0.00045,0.00044,0.00044,0.00043,0.00042,0.00042,0.00042,0.00041,0.0004,0.0004,0.0004,0.0004,0.00039,0.00039,0.00038,0.00038,0.00038,0.00038,0.00036,0.00036,0.00036,0.00035,0.00035,0.00035,0.00034,0.00034,0.00033,0.00032,0.00031,0.00031,0.0003,0.0003,0.0003,0.0003,0.00029,0.00029,0.00029,0.00029,0.00027,0.00027,0.00027,0.00026,0.00026,0.00026,0.00025,0.00025,0.00025,0.00023,0.00022,0.00022,0.00022,0.00021,0.00021,0.0002,0.0002,0.0002,0.00019,0.00019,0.00019,0.00019,0.00018,0.00018,0.00017,0.00017,0.00017,0.00017,0.00016,0.00016,0.00016,0.00016,0.00015,0.00014,0.00014,0.00014,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00012,0.00012,0.00012,0.00011,0.0001,0.0001,0.0001,0.0001,0.0001,0.00009,0.00009,0.00009,0.00009,0.00009,0.00009,0.00009,0.00008,0.00008,0.00007,0.00007,0.00006,0.00006,0.00005,0.00005,0.00005,0.00005,0.00005,0.00005,0.00005,0.00005,0.00004,0.00004,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"町田市","values":[9.26871,8.77733,8.07423,7.60433,7.12168,6.85877,6.73234,6.59219,6.33971,5.79027,5.75623,5.59896,5.31295,5.21389,5.20813,5.18256,5.12778,5.08657,5.02148,4.99364,4.92147,4.91083,4.9065,4.87583,4.78446,4.65756,4.48344,4.44827,4.39798,4.3651,4.30605,4.123630000000001,4.109530000000001,4.0535,4.033120000000001,3.91864,3.91469,3.86849,3.84195,3.83406,3.73196,3.61803,3.60197,3.59574,3.51781,3.51418,3.48406,3.45199,3.35487,3.34082,3.31966,3.30409,3.29939,3.23665,3.22895,3.20924,3.17788,3.13718,3.11262,3.10665,3.08233,3.0601,3.0303,2.99533,2.97743,2.97014,2.9575,2.95713,2.94563,2.93619,2.92374,2.91647,2.89785,2.87058,2.86577,2.83183,2.82092,2.79976,2.7834,2.76359,2.73202,2.72959,2.70671,2.70634,2.65694,2.63551,2.63115,2.60809,2.59275,2.58631,2.57494,2.56455,2.5591,2.50594,2.42914,2.42172,2.41469,2.40833,2.40419,2.37895,2.32375,2.32026,2.31497,2.30131,2.28534,2.27485,2.26952,2.26421,2.23182,2.21293,2.17407,2.13462,2.13172,2.12705,2.12134,2.09822,2.09587,2.09213,2.05867,2.0541,2.02706,2.02035,2.0151,2.0134,2.01005,2.00901,1.99714,1.99642,1.99014,1.9388,1.93387,1.9075,1.90679,1.90649,1.90186,1.89796,1.8943,1.89114,1.87636,1.86151,1.83242,1.81945,1.78364,1.77118,1.75248,1.74957,1.74908,1.74526,1.7411,1.73382,1.72791,1.70592,1.69698,1.6919,1.68149,1.66381,1.64631,1.62375,1.54749,1.53754,1.52221,1.5192,1.51772,1.50713,1.48687,1.48623,1.4837,1.48183,1.48151,1.47954,1.47279,1.47117,1.46415,1.46403,1.4578,1.4566,1.45291,1.44435,1.44095,1.42633,1.41412,1.40127,1.39613,1.3846,1.37629,1.37044,1.36198,1.35017,1.34729,1.33378,1.32691,1.32613,1.32451,1.32439,1.3212,1.32006,1.31249,1.30389,1.30334,1.26544,1.24874,1.2447,1.23989,1.22962,1.22607,1.2136,1.19429,1.19363,1.17963,1.17903,1.17844,1.1756,1.17359,1.17295,1.16887,1.16307,1.16027,1.15937,1.15899,1.15424,1.15259,1.14989,1.14899,1.1423,1.13798,1.12922,1.12729,1.1229,1.11021,1.09395,1.07611,1.06841,1.06716,1.06648,1.05162,1.04802,1.04546,1.02567,1.02237,1.01601,1.01001,0.99875,0.99477,0.98738,0.98562,0.98515,0.9804,0.96658,0.9578,0.95437,0.95302,0.95208,0.94918,0.94894,0.94362,0.94153,0.93779,0.93629,0.93349,0.93076,0.92103,0.91591,0.91507,0.91332,0.91146,0.91117,0.90978,0.90625,0.90585,0.90342,0.89858,0.89855,0.89813,0.89098,0.88929,0.88877,0.88415,0.87988,0.8784,0.87451,0.87446,0.87435,0.87262,0.8699,0.86727,0.85654,0.85474,0.85435,0.85299,0.84917,0.84859,0.84251,0.83742,0.82448,0.82245,0.81944,0.81943,0.81652,0.81562,0.81534,0.81368,0.8135,0.80628,0.80316,0.79947,0.79914,0.79771,0.79367,0.7927,0.78783,0.78771,0.7842,0.77997,0.77917,0.77633,0.77444,0.77255,0.77211,0.74659,0.74593,0.74589,0.7412,0.7359,0.73491,0.73453,0.73314,0.73039,0.72618,0.72574,0.71441,0.71214,0.70232,0.70018,0.70013,0.6975,0.69319,0.6917,0.68901,0.68162,0.68078,0.67792,0.67703,0.6757,0.66625,0.66612,0.666,0.65901,0.65706,0.65331,0.64811,0.64706,0.64548,0.63982,0.63894,0.6327,0.62454,0.6161,0.6148,0.61375,0.6124,0.61228,0.61124,0.61068,0.61052,0.60899,0.60853,0.60568,0.60355,0.60143,0.59781,0.5971,0.5969,0.59316,0.58967,0.58858,0.58431,0.58207,0.58024,0.57884,0.57759,0.57379,0.57112,0.57069,0.57057,0.56965,0.56764,0.56636,0.56341,0.56326,0.55617,0.55547,0.55535,0.55402,0.55058,0.54829,0.54346,0.54241,0.53968,0.53699,0.53323,0.53243,0.53075,0.52873,0.52735,0.52676,0.52538,0.52296,0.51887,0.51618,0.51605,0.51555,0.5146,0.51255,0.51237,0.51042,0.50863,0.50741,0.50691,0.50157,0.50129,0.50006,0.49998,0.49876,0.49181,0.49082,0.48885,0.48367,0.48163,0.47948,0.4791,0.4786,0.47656,0.47572,0.46995,0.46844,0.46654,0.46609,0.46574,0.46519,0.4644,0.4556,0.45323,0.45236,0.45057,0.44815,0.44799,0.44667,0.44516,0.44506,0.44135,0.43444,0.43384,0.43249,0.4314,0.43083,0.42907,0.42818,0.42634,0.42533,0.4226,0.41365,0.41018,0.40397,0.40177,0.40158,0.40081,0.40011,0.40009,0.39895,0.39636,0.39543,0.39499,0.39436,0.3938,0.38474,0.38195,0.38153,0.38046,0.37949,0.37876,0.37714,0.37705,0.37641,0.37103,0.3694,0.36871,0.36862,0.36742,0.36637,0.36373,0.36352,0.36108,0.36068,0.36038,0.3592,0.35672,0.35312,0.3502,0.35019,0.35009,0.34978,0.34852,0.34634,0.3423,0.341,0.34018,0.34006,0.33955,0.33797,0.33652,0.33538,0.33481,0.33296,0.32966,0.32914,0.32266,0.32218,0.32207,0.32131,0.31757,0.31723,0.31147,0.30986,0.30759,0.30534,0.30368,0.3036,0.30031,0.29962,0.2963,0.29394,0.29382,0.29287,0.29022,0.28847,0.28774,0.28559,0.28386,0.2834,0.2808,0.28073,0.27956,0.27679,0.27393,0.27378,0.27352,0.27316,0.27301,0.27287,0.27088,0.26762,0.26564,0.26478,0.26234,0.25976,0.25906,0.25893,0.2589,0.25786,0.25616,0.25541,0.25364,0.2534,0.25181,0.25062,0.24966,0.24902,0.24822,0.24506,0.24204,0.24185,0.24155,0.24127,0.23515,0.23461,0.23397,0.23212,0.23147,0.23092,0.23056,0.23047,0.23045,0.22984,0.22968,0.22793,0.2273,0.22708,0.2259,0.22584,0.22515,0.22414,0.22403,0.22118,0.2193,0.21883,0.21855,0.21821,0.21806,0.21795,0.21759,0.21484,0.21457,0.21299,0.21271,0.21251,0.21241,0.21002,0.20936,0.20912,0.20901,0.20782,0.20726,0.20635,0.20571,0.20536,0.20498,0.20356,0.20097,0.20072,0.1965,0.19323,0.19169,0.19125,0.19073,0.18978,0.1895,0.18807,0.18615,0.18519,0.18497,0.18148,0.18117,0.18079,0.18055,0.18038,0.18003,0.17995,0.17986,0.17937,0.1789,0.17764,0.17739,0.17703,0.17636,0.17607,0.176,0.17539,0.17316,0.17254,0.1722,0.17215,0.17184,0.17135,0.17122,0.17119,0.17075,0.17004,0.16996,0.16961,0.16832,0.16765,0.16669,0.16592,0.16516,0.16504,0.16309,0.16307,0.16298,0.16233,0.16067,0.15946,0.15826,0.15655,0.15584,0.15467,0.15409,0.15391,0.15265,0.15199,0.15134,0.15045,0.15014,0.14967,0.1494,0.14882,0.14861,0.14849,0.14683,0.14659,0.14644,0.14522,0.14478,0.14457,0.14429,0.14421,0.14305,0.1423,0.14215,0.14093,0.13954,0.1377,0.13457,0.13368,0.13329,0.13249,0.13225,0.13041,0.1297,0.12839,0.12779,0.12764,0.12762,0.12737,0.12521,0.12328,0.12282,0.12006,0.11992,0.11879,0.11844,0.11738,0.11619,0.11565,0.11387,0.11375,0.11374,0.11373,0.11114,0.11082,0.11047,0.11045,0.11031,0.1103,0.10857,0.1067,0.10558,0.10513,0.10492,0.1049,0.10408,0.10394,0.10388,0.10155,0.09771,0.09763,0.09751,0.09747,0.09673,0.09618,0.09459,0.09445,0.09284,0.09206,0.09033,0.0895,0.08834,0.08813,0.08533,0.08428,0.08425,0.08339,0.08254,0.08225,0.08144,0.08135,0.08124,0.08028,0.08018,0.07961,0.07935,0.07859,0.07848,0.07832,0.07771,0.07724,0.07681,0.07644,0.07616,0.07481,0.07431,0.0741,0.07406,0.07268,0.07003,0.06873,0.06853,0.06797,0.0671,0.06632,0.06577,0.06479,0.06475,0.06433,0.06427,0.06413,0.06396,0.06388,0.06331,0.06323,0.06147,0.06072,0.06003,0.05945,0.05897,0.05889,0.05805,0.05791,0.05769,0.05748,0.05688,0.05682,0.05613,0.05554,0.05529,0.05491,0.05484,0.05447,0.0538,0.05345,0.0534,0.05149,0.05123,0.05074,0.05063,0.05046,0.04882,0.04868,0.04815,0.04775,0.04722,0.04718,0.04718,0.04686,0.04668,0.04656,0.04605,0.04589,0.04571,0.04505,0.04468,0.04453,0.04411,0.04396,0.04385,0.04339,0.04327,0.04293,0.0428,0.04274,0.0426,0.04184,0.04181,0.04141,0.04131,0.04084,0.04071,0.04061,0.03941,0.03926,0.0392,0.03879,0.03811,0.03783,0.0378,0.03724,0.03719,0.03715,0.0367,0.03667,0.03639,0.03616,0.03571,0.03528,0.03511,0.03509,0.03467,0.0343,0.03421,0.03411,0.03386,0.03372,0.03359,0.03358,0.03313,0.03245,0.03244,0.03214,0.03197,0.03136,0.0307,0.03068,0.03057,0.03047,0.02992,0.02969,0.02967,0.02958,0.02933,0.02918,0.02854,0.028,0.02761,0.02753,0.02751,0.02713,0.02697,0.0268,0.02667,0.02641,0.02616,0.02581,0.02567,0.02521,0.02521,0.02504,0.02481,0.02453,0.02448,0.02439,0.02434,0.02434,0.02372,0.02371,0.02358,0.02316,0.02271,0.02262,0.02243,0.02175,0.02148,0.02133,0.02093,0.02064,0.02059,0.0204,0.01955,0.01942,0.01936,0.01919,0.01898,0.01895,0.0189,0.0189,0.0189,0.01835,0.01821,0.01803,0.01789,0.0178,0.01766,0.01766,0.01764,0.01763,0.0175,0.0169,0.01686,0.01667,0.0165,0.01635,0.0159,0.01587,0.01584,0.01572,0.01569,0.01533,0.01503,0.01459,0.01429,0.01424,0.01422,0.01416,0.01344,0.01327,0.01322,0.01313,0.01311,0.01277,0.01259,0.01192,0.01191,0.01156,0.01151,0.01141,0.01135,0.01133,0.01128,0.01116,0.01104,0.01056,0.01052,0.01001,0.00951,0.00932,0.00923,0.00915,0.00913,0.00905,0.00881,0.00877,0.00872,0.00871,0.00864,0.00854,0.00843,0.0084,0.00832,0.00822,0.00761,0.00749,0.00744,0.00716,0.00705,0.00703,0.00699,0.00692,0.00676,0.00674,0.00655,0.0065,0.00646,0.00646,0.00639,0.00627,0.00627,0.00625,0.00614,0.00594,0.00594,0.00587,0.00582,0.0057,0.00562,0.00555,0.0054,0.00539,0.00521,0.00518,0.00517,0.00509,0.00507,0.00501,0.0049,0.0048,0.00478,0.00453,0.00443,0.00436,0.00428,0.00427,0.00423,0.00421,0.00418,0.00417,0.00417,0.00412,0.00407,0.00407,0.004,0.00391,0.00386,0.00379,0.00372,0.00369,0.0036,0.00359,0.0035,0.00349,0.00348,0.00345,0.00333,0.00323,0.00319,0.00316,0.00315,0.00313,0.00305,0.00302,0.00301,0.00291,0.0029,0.00286,0.00286,0.00277,0.00271,0.00245,0.00239,0.00236,0.00228,0.00227,0.00219,0.00219,0.00214,0.00208,0.00206,0.00193,0.00163,0.00162,0.00152,0.00142,0.00141,0.0014,0.00139,0.00135,0.00134,0.00134,0.00128,0.00125,0.00123,0.0012,0.00115,0.00106,0.00105,0.00103,0.00098,0.00095,0.00095,0.00078,0.00076,0.00072,0.00072,0.00069,0.00066,0.00066,0.00066,0.0006,0.00059,0.00058,0.00055,0.00052,0.00051,0.00049,0.00049,0.00042,0.00041,0.00039,0.00036,0.00035,0.00035,0.00034,0.00029,0.00022,0.0002,0.0002,0.00019,0.00019,0.00018,0.00017,0.00017,0.00015,0.00013,0.00013,0.00012,0.00011,0.00008,0.00008,0.00006,0.00006,0.00006,0.00005,0.00005,0.00003,0.00002,0.00001,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"八王子市","values":[6.50729,5.33059,4.96577,4.96555,4.94564,4.36851,4.30992,4.263080000000001,4.21708,4.190730000000001,4.096320000000001,4.030070000000001,3.90303,3.88227,3.76798,3.70302,3.69715,3.68004,3.6624,3.60832,3.49093,3.44018,3.28604,3.28237,3.26276,3.13915,3.09878,3.09664,3.07721,3.0704,3.06779,3.06495,3.04493,3.02514,3.00953,2.99295,2.97413,2.95261,2.88917,2.8754,2.84285,2.76579,2.74882,2.73211,2.71483,2.68503,2.64974,2.64313,2.63928,2.62936,2.57916,2.57211,2.56742,2.56608,2.55965,2.54149,2.50814,2.4998,2.49735,2.42049,2.4158,2.31374,2.30754,2.28309,2.23917,2.19513,2.15218,2.14713,2.08109,2.06821,2.06248,2.05306,2.04878,2.04483,1.99668,1.98814,1.92743,1.92682,1.91092,1.90649,1.80065,1.79341,1.77935,1.75976,1.75811,1.74222,1.71879,1.66853,1.63214,1.60731,1.58933,1.57092,1.55511,1.54849,1.54709,1.53359,1.5286,1.52403,1.44693,1.43646,1.38862,1.37964,1.31815,1.31341,1.27194,1.23467,1.21779,1.20351,1.18974,1.18279,1.18265,1.16966,1.15962,1.15576,1.15068,1.13983,1.13306,1.12445,1.12011,1.11912,1.11846,1.11637,1.11491,1.11471,1.11234,1.1008,1.10034,1.09525,1.08988,1.08385,1.06948,1.06611,1.0566,1.05588,1.05017,1.04961,1.04517,1.03919,1.03875,1.02403,1.01909,1.01874,1.01248,1.00666,0.99809,0.99243,0.99102,0.99077,0.98984,0.98923,0.98526,0.97641,0.97237,0.97169,0.96932,0.96685,0.9627,0.96096,0.9576,0.95532,0.95465,0.95412,0.95008,0.94989,0.94627,0.94366,0.94216,0.93791,0.93332,0.93148,0.931,0.92955,0.92865,0.92649,0.92239,0.92178,0.92175,0.92009,0.91975,0.91582,0.90924,0.90604,0.89992,0.8974,0.89592,0.89482,0.89199,0.89055,0.88045,0.8788,0.87803,0.87777,0.87768,0.86977,0.86899,0.86221,0.86177,0.86029,0.85544,0.85523,0.85446,0.85356,0.85351,0.85242,0.8474,0.84459,0.84303,0.84213,0.83891,0.83829,0.83722,0.83636,0.83577,0.83388,0.83193,0.82903,0.8273,0.82635,0.826,0.82598,0.82287,0.81884,0.81456,0.81321,0.80989,0.80912,0.80815,0.80784,0.80736,0.80172,0.80028,0.79964,0.79962,0.79955,0.79865,0.79099,0.7892,0.78825,0.78698,0.78343,0.78097,0.7801,0.77769,0.77058,0.76998,0.76822,0.76801,0.76785,0.76707,0.7646,0.76292,0.7626,0.76082,0.75811,0.75748,0.75425,0.75423,0.75344,0.75204,0.75166,0.75142,0.75086,0.74763,0.74744,0.74279,0.74248,0.74046,0.73863,0.7377,0.73766,0.73686,0.73535,0.7349,0.73367,0.73293,0.73259,0.73229,0.73175,0.72959,0.72897,0.7286,0.72804,0.72773,0.72615,0.72526,0.72485,0.72367,0.72359,0.7234,0.72234,0.72158,0.72116,0.72017,0.72009,0.71958,0.71955,0.71802,0.71752,0.71731,0.71681,0.71479,0.7142,0.71347,0.71161,0.71151,0.7113,0.70977,0.70926,0.70835,0.70829,0.7065,0.70551,0.70353,0.69976,0.69529,0.69475,0.69187,0.68978,0.68942,0.68851,0.68742,0.68613,0.68423,0.68214,0.68207,0.68005,0.6793,0.67715,0.67487,0.67065,0.6677,0.66688,0.66243,0.66096,0.66058,0.66028,0.66028,0.65969,0.65954,0.65771,0.65737,0.65686,0.65602,0.65471,0.65222,0.65122,0.65068,0.6501,0.64806,0.64788,0.64787,0.64483,0.64458,0.64452,0.64303,0.64277,0.64252,0.641,0.63952,0.63782,0.63524,0.6322,0.63215,0.6308,0.63039,0.62675,0.62427,0.62387,0.62315,0.62225,0.62082,0.62043,0.61995,0.61991,0.61916,0.61229,0.61226,0.61216,0.61182,0.61161,0.61158,0.61053,0.60982,0.60972,0.60952,0.60906,0.60887,0.60834,0.60645,0.60643,0.60555,0.60519,0.60399,0.60368,0.60316,0.6021,0.60147,0.60095,0.60094,0.59915,0.59828,0.59753,0.59712,0.5943,0.59238,0.58891,0.58684,0.58647,0.58584,0.58313,0.58209,0.57976,0.57956,0.57791,0.57779,0.57737,0.57558,0.57389,0.57202,0.57193,0.57062,0.56911,0.56709,0.56603,0.56536,0.56025,0.55988,0.55792,0.55735,0.55642,0.55593,0.5538,0.5524,0.55174,0.55105,0.5503,0.55026,0.55006,0.54616,0.54482,0.54479,0.54294,0.54209,0.54208,0.54104,0.541,0.53837,0.5381,0.53738,0.53603,0.5356,0.53495,0.53387,0.53274,0.53178,0.52976,0.5292,0.52847,0.5272,0.52666,0.52568,0.52252,0.52144,0.52109,0.52107,0.521,0.51948,0.51731,0.51509,0.51321,0.51215,0.50935,0.50876,0.50549,0.50419,0.50299,0.5025,0.50224,0.50177,0.50096,0.50068,0.50063,0.50041,0.49979,0.49811,0.49791,0.49711,0.49669,0.49636,0.49627,0.49589,0.49337,0.49173,0.49001,0.48966,0.48705,0.48678,0.4866,0.48485,0.4848,0.48429,0.47875,0.47777,0.47775,0.4777,0.47642,0.47549,0.47426,0.47402,0.47388,0.47347,0.47034,0.46918,0.46871,0.46812,0.46731,0.46686,0.4663,0.46563,0.46222,0.46187,0.46136,0.46033,0.45887,0.45852,0.45813,0.45752,0.45681,0.45596,0.45511,0.45335,0.45279,0.45092,0.45062,0.45021,0.44973,0.44948,0.44754,0.44678,0.44655,0.44634,0.44469,0.43997,0.43971,0.4391,0.43869,0.43759,0.43628,0.43552,0.4333,0.43068,0.43042,0.43031,0.42996,0.42879,0.42675,0.42298,0.42164,0.42127,0.42093,0.41979,0.41934,0.41818,0.41815,0.41559,0.41361,0.41336,0.41213,0.41208,0.41179,0.41126,0.41103,0.41099,0.40922,0.40436,0.40428,0.40246,0.40089,0.40014,0.39928,0.39681,0.39362,0.39344,0.39292,0.39259,0.39202,0.39171,0.39035,0.39025,0.39007,0.38907,0.38824,0.38802,0.38744,0.38687,0.38474,0.38468,0.38409,0.38252,0.38138,0.38066,0.38062,0.37941,0.37903,0.379,0.3754,0.37454,0.37284,0.37273,0.37258,0.37158,0.36887,0.36784,0.36768,0.36652,0.36618,0.3661,0.36597,0.36527,0.36407,0.36338,0.36201,0.36133,0.35846,0.35786,0.3572,0.35508,0.35304,0.35276,0.35262,0.35257,0.34866,0.34844,0.34687,0.34655,0.34607,0.3459,0.34483,0.34464,0.34407,0.34369,0.34325,0.34318,0.34292,0.34194,0.34065,0.34047,0.33987,0.33944,0.33792,0.33787,0.33776,0.33736,0.33729,0.33674,0.3363,0.3351,0.33474,0.33394,0.33357,0.33353,0.33269,0.33246,0.33225,0.33222,0.33213,0.33195,0.33171,0.33048,0.32869,0.32762,0.32756,0.32629,0.32461,0.32388,0.32366,0.32306,0.32285,0.32274,0.32169,0.32057,0.31887,0.31853,0.31833,0.31592,0.31541,0.31438,0.31355,0.31243,0.31197,0.31133,0.30994,0.30941,0.30861,0.30845,0.30817,0.30673,0.3067,0.306,0.30508,0.30475,0.30457,0.30393,0.30379,0.30311,0.30303,0.29895,0.29528,0.29432,0.29165,0.29129,0.2912,0.29113,0.29089,0.29022,0.28881,0.28828,0.2876,0.28721,0.28709,0.28662,0.28555,0.28531,0.28328,0.28307,0.28268,0.28246,0.282,0.28179,0.28122,0.28051,0.2802,0.2795,0.27909,0.27882,0.27818,0.27799,0.27753,0.27617,0.27598,0.27594,0.27548,0.27506,0.27469,0.27454,0.27449,0.2733,0.27315,0.272,0.2719,0.27114,0.27086,0.26824,0.26549,0.26548,0.26495,0.26311,0.263,0.26274,0.26223,0.26216,0.25968,0.25963,0.25927,0.25913,0.2589,0.25836,0.25812,0.25764,0.25677,0.25587,0.25365,0.25333,0.25284,0.25233,0.2513,0.25068,0.24896,0.24886,0.2486,0.24842,0.24755,0.24697,0.24562,0.24458,0.24383,0.24374,0.24364,0.24347,0.24342,0.24184,0.24183,0.23778,0.23658,0.23611,0.23589,0.23563,0.23543,0.23392,0.23318,0.23311,0.23276,0.23196,0.23185,0.23183,0.23116,0.23071,0.2304,0.23033,0.22759,0.2275,0.2263,0.22544,0.22428,0.22368,0.22262,0.22204,0.22117,0.22031,0.21929,0.21803,0.21798,0.21705,0.21552,0.21428,0.21355,0.21304,0.21262,0.21099,0.21047,0.2104,0.21016,0.20999,0.20889,0.20853,0.20846,0.20662,0.20576,0.20559,0.20539,0.20502,0.20477,0.20442,0.20405,0.2035,0.20239,0.20234,0.19946,0.19943,0.1991,0.19907,0.19723,0.19705,0.19694,0.19689,0.19674,0.19603,0.19562,0.19549,0.1953,0.19406,0.194,0.19288,0.1924,0.19201,0.19182,0.19075,0.18989,0.18825,0.18785,0.18681,0.18565,0.18441,0.18151,0.18138,0.18051,0.18031,0.17883,0.17844,0.178,0.17767,0.17757,0.17723,0.17645,0.17592,0.17553,0.17424,0.17316,0.17289,0.1718,0.17111,0.17079,0.17077,0.17053,0.16989,0.1687,0.16783,0.1662,0.16549,0.1653,0.16522,0.1648,0.16465,0.16425,0.16388,0.16377,0.16307,0.1627,0.16181,0.16022,0.1592,0.15904,0.15866,0.15854,0.15745,0.15728,0.15718,0.15667,0.15621,0.1552,0.15443,0.15424,0.15352,0.15331,0.15172,0.15154,0.15108,0.15094,0.14983,0.14939,0.14872,0.14851,0.14818,0.14817,0.14763,0.14644,0.14607,0.14579,0.14561,0.14512,0.14491,0.14484,0.14478,0.1446,0.14429,0.14429,0.14414,0.1435,0.14299,0.14161,0.14079,0.14076,0.14038,0.14036,0.13973,0.1393,0.13896,0.13879,0.13816,0.13793,0.13772,0.13741,0.13561,0.13549,0.13527,0.13505,0.135,0.13497,0.13464,0.13355,0.13342,0.13318,0.13285,0.13248,0.13197,0.13168,0.13134,0.13095,0.13093,0.13079,0.13077,0.12899,0.12673,0.12647,0.12616,0.12574,0.12524,0.12512,0.12419,0.12332,0.12291,0.12264,0.1226,0.12208,0.1216,0.12156,0.11986,0.11893,0.11866,0.11836,0.11826,0.11757,0.1173,0.11671,0.11618,0.11574,0.11565,0.11434,0.11421,0.11406,0.11374,0.11322,0.11309,0.11298,0.1129,0.11277,0.11247,0.11173,0.11166,0.1115,0.11135,0.11124,0.11115,0.1106,0.11016,0.10877,0.10823,0.10803,0.108,0.10785,0.10748,0.10716,0.10703,0.1066,0.10558,0.10519,0.10508,0.10496,0.10489,0.10474,0.10447,0.10442,0.10435,0.10359,0.10335,0.10284,0.10258,0.10183,0.10143,0.10128,0.10007,0.09995,0.09937,0.09918,0.09884,0.09812,0.098,0.09749,0.09743,0.09676,0.09666,0.09663,0.09608,0.09574,0.09572,0.09568,0.09566,0.09497,0.09491,0.09412,0.09409,0.09403,0.09342,0.09304,0.09225,0.09198,0.09197,0.09167,0.09144,0.091,0.0907,0.09057,0.08965,0.08942,0.0889,0.08847,0.08839,0.08813,0.0881,0.08787,0.08713,0.0863,0.08626,0.08582,0.08572,0.08515,0.08465,0.08447,0.08435,0.08421,0.0831,0.08309,0.08251,0.08178,0.08169,0.08134,0.08128,0.08126,0.08095,0.08081,0.08029,0.07997,0.0797,0.07949,0.07934,0.07923,0.07911,0.07896,0.07888,0.07884,0.07814,0.07806,0.07656,0.07654,0.07647,0.07637,0.07606,0.0756,0.07555,0.07529,0.07441,0.07439,0.07413,0.07409,0.07321,0.07238,0.0723,0.07217,0.07151,0.07132,0.07106,0.07103,0.07075,0.07052,0.06993,0.06992,0.06988,0.06987,0.06965,0.06952,0.06942,0.06927,0.06923,0.06916,0.0689,0.06887,0.06862,0.06848,0.06828,0.06764,0.06746,0.06705,0.06703,0.06695,0.06686,0.06631,0.06583,0.06582,0.06564,0.06531,0.06519,0.06517,0.06473,0.06437,0.06379,0.0635,0.06348,0.0634,0.06335,0.06316,0.06266,0.06249,0.06173,0.06158,0.06042,0.06037,0.06017,0.06006,0.06003,0.05945,0.05917,0.05915,0.059,0.05899,0.05895,0.05869,0.05858,0.05845,0.05829,0.05822,0.05821,0.05772,0.05749,0.05743,0.0567,0.05657,0.05655,0.0559,0.05568,0.05534,0.05516,0.05514,0.05505,0.05477,0.05475,0.05465,0.0545,0.05408,0.0538,0.05345,0.05345,0.05343,0.05289,0.05287,0.05286,0.05284,0.05275,0.05271,0.05261,0.05249,0.05219,0.05194,0.0517,0.05148,0.05147,0.0514,0.05128,0.05115,0.05083,0.05081,0.05061,0.05007,0.0497,0.04939,0.04936,0.04931,0.04921,0.04907,0.04904,0.04902,0.04854,0.04845,0.04844,0.04823,0.04809,0.04806,0.04801,0.0479,0.0475,0.0475,0.04729,0.04708,0.04683,0.04679,0.04673,0.04671,0.04649,0.04648,0.04647,0.04647,0.04638,0.04636,0.04635,0.04634,0.04633,0.04633,0.04633,0.04633,0.04633,0.04625,0.04593,0.04535,0.04487,0.04448,0.04433,0.04388,0.04377,0.04349,0.04301,0.04277,0.04274,0.04273,0.0427,0.04259,0.04223,0.0422,0.04192,0.04144,0.04128,0.04112,0.04101,0.04078,0.04076,0.04057,0.04032,0.04026,0.04025,0.03993,0.0391,0.03906,0.03883,0.03883,0.03866,0.03866,0.03858,0.03831,0.03828,0.038,0.03756,0.03723,0.03723,0.03714,0.03711,0.0371,0.03704,0.03671,0.03636,0.03609,0.03599,0.03537,0.03512,0.03498,0.03487,0.03455,0.0342,0.03369,0.03366,0.03363,0.03359,0.03354,0.03346,0.03338,0.03332,0.03328,0.03321,0.03321,0.03317,0.033,0.03293,0.03267,0.03249,0.03054,0.03051,0.03041,0.03039,0.03015,0.03015,0.03005,0.03003,0.02997,0.02995,0.0298,0.02966,0.02892,0.02876,0.02865,0.0286,0.02856,0.02853,0.0285,0.02839,0.02837,0.02832,0.02806,0.02803,0.02801,0.028,0.02764,0.02721,0.02721,0.02721,0.02716,0.02714,0.02695,0.02682,0.0264,0.0264,0.02637,0.02632,0.02627,0.02617,0.02588,0.02564,0.02538,0.02533,0.02522,0.02505,0.02464,0.02454,0.02447,0.02417,0.02408,0.02392,0.02373,0.0237,0.02326,0.02324,0.02319,0.02317,0.02313,0.02285,0.02267,0.02261,0.02243,0.02221,0.02216,0.02214,0.02209,0.02206,0.02194,0.02174,0.02171,0.02169,0.02154,0.02129,0.02126,0.0212,0.02111,0.02091,0.02082,0.02064,0.02064,0.02019,0.02014,0.02009,0.02005,0.01979,0.01979,0.0196,0.01959,0.01945,0.01935,0.01933,0.01925,0.01923,0.01922,0.01918,0.01915,0.01897,0.01879,0.01877,0.01876,0.01872,0.01868,0.0185,0.01838,0.0181,0.01808,0.01807,0.01804,0.01803,0.018,0.01781,0.01778,0.01758,0.01757,0.01756,0.01752,0.0175,0.01748,0.0173,0.01727,0.01725,0.01717,0.01717,0.01709,0.01703,0.01693,0.01686,0.01685,0.01685,0.01649,0.01637,0.01635,0.01633,0.0163,0.01625,0.01625,0.016,0.01597,0.01597,0.01592,0.01588,0.01586,0.01581,0.01576,0.01573,0.01572,0.01571,0.01561,0.01558,0.01549,0.01542,0.01542,0.0154,0.01536,0.01532,0.01522,0.01517,0.01512,0.01487,0.01479,0.01472,0.01456,0.01433,0.01424,0.0141,0.01389,0.01388,0.01385,0.0138,0.01364,0.01341,0.01339,0.01337,0.01334,0.01322,0.01309,0.01305,0.01303,0.01302,0.01296,0.01295,0.0128,0.01273,0.01266,0.01264,0.01262,0.01259,0.01256,0.01251,0.01251,0.01243,0.01237,0.01234,0.01233,0.01233,0.01233,0.01233,0.01233,0.01233,0.01233,0.01229,0.01211,0.01211,0.01209,0.01208,0.01207,0.01199,0.01194,0.01182,0.01182,0.01179,0.0117,0.01158,0.01154,0.01123,0.01123,0.01118,0.0111,0.01108,0.01096,0.01093,0.01092,0.01091,0.0108,0.01077,0.01074,0.01068,0.01067,0.01061,0.01061,0.01035,0.00979,0.00978,0.00974,0.0097,0.00968,0.00968,0.00965,0.00963,0.00962,0.00961,0.00959,0.00952,0.00951,0.00938,0.00935,0.00933,0.00926,0.00917,0.00911,0.00892,0.0088,0.00866,0.0086,0.00858,0.00851,0.00836,0.00834,0.00828,0.00825,0.00816,0.00811,0.00808,0.00805,0.0079,0.00788,0.00787,0.00776,0.00773,0.00768,0.00767,0.00766,0.00759,0.00759,0.00751,0.00748,0.00745,0.00744,0.00738,0.00719,0.00692,0.00674,0.00672,0.00663,0.00658,0.00655,0.00651,0.00649,0.00648,0.00646,0.00646,0.00645,0.00641,0.00639,0.00635,0.00615,0.00606,0.00606,0.00601,0.00601,0.00588,0.00586,0.00581,0.0058,0.00574,0.00557,0.00556,0.00548,0.00543,0.0054,0.0054,0.00533,0.00533,0.00527,0.00526,0.00516,0.00512,0.00509,0.00498,0.0049,0.00488,0.00479,0.00478,0.00476,0.00464,0.00464,0.00456,0.00453,0.0045,0.00446,0.00443,0.00442,0.00436,0.00435,0.0043,0.00422,0.00421,0.00419,0.00418,0.00415,0.00413,0.00402,0.00396,0.00394,0.00394,0.0039,0.00383,0.00376,0.00371,0.00366,0.00361,0.0036,0.00346,0.00345,0.00339,0.00339,0.00336,0.0033,0.00326,0.0032,0.00316,0.00314,0.00311,0.00311,0.00304,0.00299,0.00299,0.00294,0.00291,0.00288,0.00287,0.00282,0.00282,0.00279,0.00278,0.00276,0.00272,0.0027,0.00268,0.00265,0.00264,0.00258,0.00257,0.00254,0.00249,0.00249,0.00244,0.00244,0.00243,0.0024,0.00234,0.00232,0.00231,0.00227,0.00219,0.00216,0.00214,0.00214,0.0021,0.00207,0.00205,0.00202,0.00197,0.00193,0.00193,0.00192,0.00191,0.00185,0.00184,0.00183,0.00178,0.00177,0.00174,0.00169,0.00163,0.00162,0.00159,0.00158,0.00157,0.00155,0.00152,0.0015,0.00147,0.00144,0.00143,0.00141,0.00139,0.00136,0.00135,0.00133,0.00133,0.00131,0.00122,0.0012,0.00117,0.00114,0.00114,0.00113,0.00112,0.00111,0.00106,0.00106,0.00105,0.00103,0.00103,0.00101,0.001,0.00099,0.00099,0.00095,0.00094,0.00092,0.0009,0.0009,0.00088,0.00086,0.00084,0.00081,0.00081,0.00079,0.00074,0.00073,0.00072,0.00071,0.00066,0.00065,0.00064,0.00064,0.00061,0.0006,0.00044,0.0004,0.0004,0.0004,0.00038,0.00038,0.00037,0.00036,0.00035,0.00033,0.00032,0.0003,0.0003,0.0003,0.00028,0.00027,0.00027,0.00026,0.00025,0.00025,0.00024,0.00023,0.00022,0.00021,0.00019,0.00017,0.00017,0.00017,0.00015,0.00014,0.00014,0.00014,0.00013,0.00013,0.00013,0.00013,0.00012,0.00012,0.00011,0.00011,0.00011,0.00011,0.0001,0.0001,0.0001,0.00009,0.00009,0.00008,0.00008,0.00008,0.00008,0.00007,0.00006,0.00006,0.00005,0.00004,0.00004,0.00004,0.00004,0.00004,0.00004,0.00004,0.00004,0.00003,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"檜原村","values":[0.00711,0.00702,0.00617,0.00524,0.00511,0.00498,0.00451,0.00447,0.00436,0.00425,0.00413,0.00349,0.00339,0.00328,0.00323,0.00322,0.00319,0.00319,0.00317,0.00306,0.00296,0.00281,0.00278,0.00269,0.00266,0.00256,0.00253,0.00234,0.00224,0.00218,0.00215,0.00213,0.0021,0.00209,0.00208,0.00202,0.00187,0.00176,0.00174,0.00172,0.0017,0.0017,0.0017,0.00168,0.00166,0.00166,0.0016,0.00158,0.00157,0.00156,0.0015,0.00149,0.00148,0.00141,0.00139,0.00137,0.00137,0.00136,0.00135,0.00128,0.00126,0.00125,0.00125,0.00123,0.0012,0.00117,0.00117,0.00112,0.00111,0.00111,0.0011,0.00106,0.00105,0.00104,0.00104,0.00104,0.00095,0.00095,0.00094,0.0009,0.00088,0.00087,0.00087,0.00086,0.00084,0.00083,0.00082,0.00082,0.0008,0.0008,0.00079,0.00079,0.00078,0.00078,0.00078,0.00077,0.00077,0.00074,0.00074,0.00073,0.00072,0.00071,0.00071,0.0007,0.0007,0.00069,0.00069,0.00068,0.00067,0.00066,0.00065,0.00065,0.00063,0.00063,0.00063,0.00062,0.00061,0.00061,0.0006,0.0006,0.00059,0.00058,0.00057,0.00056,0.00053,0.00053,0.00053,0.0005,0.00049,0.00049,0.00049,0.00049,0.00048,0.00047,0.00047,0.00046,0.00045,0.00043,0.00041,0.0004,0.0004,0.00039,0.00039,0.00039,0.00039,0.00038,0.00038,0.00037,0.00036,0.00035,0.00035,0.00034,0.00034,0.00031,0.00031,0.0003,0.00029,0.00028,0.00028,0.00027,0.00027,0.00027,0.00024,0.00024,0.00023,0.00023,0.00023,0.00023,0.00023,0.00021,0.00021,0.0002,0.0002,0.0002,0.0002,0.00019,0.00019,0.00018,0.00018,0.00018,0.00017,0.00016,0.00015,0.00015,0.00014,0.00012,0.00012,0.00011,0.0001,0.0001,0.00009,0.00009,0.00008,0.00008,0.00007,0.00007,0.00006,0.00006,0.00006,0.00006,0.00006,0.00006,0.00005,0.00005,0.00004,0.00004,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"日野市","values":[2.73386,2.62089,2.50457,2.48406,2.18076,2.10958,2.0739,2.06574,1.92856,1.8858,1.8442,1.798,1.72016,1.71421,1.4929,1.44317,1.37594,1.34446,1.31775,1.29002,1.26078,1.22235,1.17087,1.16528,1.15702,1.15023,1.07502,1.07197,1.03682,1.02803,1.02274,1.00152,0.99357,0.98972,0.95512,0.94443,0.94254,0.9145,0.91123,0.8918,0.89053,0.88351,0.87458,0.8732,0.87136,0.84934,0.81316,0.80567,0.79911,0.79649,0.78418,0.76475,0.74753,0.72187,0.71578,0.7044,0.70339,0.70033,0.69561,0.69467,0.67829,0.67704,0.65815,0.65684,0.65484,0.65021,0.63115,0.60702,0.59434,0.59398,0.59127,0.57947,0.57479,0.57208,0.56725,0.56573,0.56434,0.55404,0.55224,0.53492,0.53437,0.53095,0.52592,0.51899,0.51523,0.50335,0.49746,0.49089,0.48992,0.48431,0.48105,0.48083,0.47146,0.47069,0.46972,0.4626,0.46251,0.45589,0.45581,0.45487,0.45192,0.44716,0.44484,0.43671,0.43379,0.43027,0.42913,0.4288,0.4284,0.42397,0.42331,0.42311,0.42119,0.4176,0.4171,0.41499,0.41059,0.406,0.40579,0.40086,0.39953,0.39804,0.39546,0.39476,0.38627,0.37174,0.37079,0.37027,0.36795,0.36617,0.36614,0.36502,0.3555,0.35101,0.34823,0.34676,0.34201,0.33941,0.33935,0.33829,0.33471,0.33259,0.33065,0.32918,0.32149,0.31932,0.31842,0.31706,0.31517,0.31303,0.31218,0.31203,0.30493,0.30362,0.30042,0.29707,0.29368,0.2928,0.29177,0.29135,0.29022,0.28822,0.28584,0.28188,0.27673,0.27124,0.27099,0.26903,0.26324,0.25981,0.25929,0.2585,0.25454,0.24856,0.24814,0.24805,0.24805,0.2473,0.2469,0.24472,0.24375,0.24291,0.23809,0.23805,0.23698,0.236,0.2358,0.23542,0.23146,0.23136,0.2242,0.22341,0.22339,0.22261,0.21881,0.21855,0.21805,0.21757,0.21408,0.21302,0.21247,0.21232,0.21193,0.20739,0.20637,0.20529,0.20416,0.20407,0.19947,0.1993,0.19695,0.19648,0.19598,0.19571,0.19551,0.19451,0.19281,0.19264,0.19215,0.19211,0.19165,0.19049,0.18791,0.1875,0.18457,0.18295,0.18072,0.18,0.17752,0.17634,0.17513,0.17457,0.16719,0.16694,0.16691,0.16605,0.16498,0.16191,0.16097,0.16041,0.15937,0.15794,0.15647,0.15644,0.1561,0.15602,0.1532,0.15096,0.14995,0.1495,0.14921,0.14638,0.1431,0.1423,0.1417,0.1411,0.14108,0.14034,0.13384,0.13318,0.13254,0.12857,0.12388,0.12386,0.12317,0.12247,0.1212,0.12009,0.11918,0.11838,0.11723,0.117,0.11614,0.11584,0.11239,0.11194,0.11193,0.11161,0.11129,0.10907,0.10574,0.10462,0.10447,0.10134,0.10082,0.09844,0.09834,0.09703,0.0959,0.09507,0.09457,0.09337,0.09266,0.09208,0.09183,0.08956,0.08868,0.08514,0.08457,0.0838,0.08244,0.08122,0.07952,0.07917,0.07907,0.07898,0.07831,0.07755,0.07713,0.0771,0.07577,0.0744,0.0742,0.07377,0.07367,0.07329,0.07227,0.07087,0.07079,0.06734,0.06691,0.06671,0.06589,0.06436,0.0643,0.06225,0.06196,0.06191,0.05968,0.05955,0.0593,0.05874,0.05799,0.05627,0.05574,0.0552,0.05254,0.05234,0.05155,0.05048,0.04855,0.04791,0.04784,0.04733,0.04704,0.04675,0.0463,0.04576,0.04456,0.04414,0.04302,0.04288,0.0426,0.04135,0.04126,0.03923,0.03888,0.03848,0.03811,0.03582,0.03488,0.03465,0.03302,0.03242,0.03168,0.03009,0.02801,0.028,0.02726,0.02652,0.02636,0.02578,0.02283,0.02216,0.02193,0.02125,0.02108,0.02029,0.02,0.01918,0.01864,0.01702,0.01698,0.01335,0.01096,0.00882,0.00847,0.00721,0.00705,0.00663,0.00484,0.00466,0.00398,0.00357,0.00286,0.00174,0.00119,0.00065,0.00029,0.00009,0.00007,0.00006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"多摩市","values":[0.60946,0.60345,0.51344,0.48852,0.47745,0.46316,0.46262,0.45623,0.45118,0.44391,0.42546,0.42107,0.41984,0.41563,0.40816,0.40482,0.39513,0.39482,0.39259,0.39084,0.38664,0.38536,0.37838,0.37304,0.37028,0.36148,0.3611,0.35636,0.34308,0.33835,0.33119,0.32961,0.32618,0.32314,0.3199,0.31585,0.31118,0.30721,0.30631,0.30232,0.29731,0.29698,0.29587,0.29517,0.2911,0.2908,0.29028,0.28991,0.28539,0.28063,0.27334,0.26907,0.26163,0.26073,0.25881,0.25761,0.24845,0.24778,0.24471,0.24443,0.24218,0.24,0.23731,0.23582,0.23408,0.23107,0.23024,0.22808,0.22636,0.22624,0.22617,0.22468,0.22422,0.21697,0.21065,0.20998,0.2094,0.20677,0.20531,0.2043,0.20382,0.20195,0.20117,0.20023,0.19802,0.19755,0.19347,0.19246,0.19145,0.18765,0.18741,0.18735,0.18661,0.18508,0.18422,0.18087,0.1794,0.178,0.17659,0.17304,0.17212,0.16969,0.16912,0.16639,0.16629,0.16393,0.1591,0.15863,0.1584,0.15558,0.15548,0.14918,0.14892,0.14717,0.14499,0.14477,0.14396,0.14193,0.14085,0.14037,0.13881,0.13849,0.13712,0.13607,0.13493,0.131,0.13002,0.12512,0.1162,0.11531,0.11443,0.11323,0.11265,0.11238,0.11024,0.10994,0.10962,0.10959,0.10809,0.10434,0.10423,0.10082,0.10053,0.09927,0.09894,0.09698,0.0957,0.09476,0.09433,0.09361,0.09333,0.09238,0.09221,0.09039,0.08883,0.08824,0.08779,0.08693,0.08553,0.08495,0.08227,0.08191,0.07944,0.07841,0.07726,0.07486,0.07455,0.07427,0.07378,0.07322,0.06976,0.06969,0.06959,0.06716,0.06506,0.06397,0.06384,0.06342,0.06201,0.06175,0.06107,0.0604,0.05993,0.05964,0.05632,0.05555,0.05502,0.05494,0.05388,0.05349,0.05336,0.05282,0.05252,0.05227,0.05189,0.05123,0.04979,0.04952,0.04877,0.04722,0.04179,0.04118,0.04103,0.03836,0.038,0.03767,0.0374,0.03721,0.03692,0.03658,0.03563,0.03525,0.03519,0.03485,0.03482,0.03435,0.03346,0.03323,0.03224,0.03189,0.0314,0.03035,0.03024,0.03013,0.02982,0.02962,0.02853,0.02765,0.02733,0.02662,0.02605,0.02585,0.02561,0.02512,0.02491,0.02304,0.02264,0.02252,0.02126,0.02098,0.02044,0.02037,0.02026,0.0199,0.01978,0.01968,0.01954,0.01937,0.01887,0.01766,0.01752,0.01699,0.01669,0.01602,0.01591,0.01575,0.01574,0.01574,0.01557,0.01549,0.01527,0.01474,0.01455,0.0145,0.01413,0.01329,0.01305,0.01295,0.01276,0.0113,0.00986,0.00941,0.00933,0.00892,0.00857,0.00756,0.00703,0.00699,0.00607,0.0057,0.00531,0.00528,0.0047,0.00407,0.00405,0.00395,0.00389,0.0037,0.00359,0.00273,0.00252,0.00242,0.00174,0.00124,0.00111,0.00106,0.001,0.00093,0.00074,0.00058,0.00045,0.00041,0.00038,0.00037,0.00022,0.00014,0.00014,0.00013,0.00007,0.00006,0.00003,0.00001,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"稲城市","values":[2.08228,1.95929,1.6592,1.48549,1.38079,1.31344,1.26993,1.19952,1.1588,1.09021,1.08568,1.06593,1.02714,1.01854,1.01366,1.01307,0.97411,0.93081,0.89207,0.88755,0.85301,0.83534,0.8285,0.78754,0.78067,0.75295,0.75224,0.75019,0.70739,0.67798,0.67472,0.67208,0.66653,0.65843,0.65573,0.64048,0.61272,0.58928,0.57386,0.5727,0.55837,0.54522,0.54251,0.53528,0.53499,0.52277,0.51442,0.47884,0.47668,0.4742,0.4673,0.45605,0.43809,0.42226,0.41777,0.41364,0.38573,0.38249,0.37382,0.36109,0.3597,0.34257,0.33913,0.3198,0.31191,0.30903,0.30734,0.30665,0.30344,0.30312,0.29683,0.29311,0.26987,0.26973,0.26938,0.26454,0.26054,0.23569,0.22632,0.22456,0.22363,0.22251,0.22236,0.21383,0.21189,0.21009,0.20667,0.20602,0.20245,0.19602,0.1915,0.18444,0.17789,0.17363,0.1654,0.1569,0.15576,0.15489,0.15077,0.13939,0.13793,0.13711,0.13457,0.13088,0.1297,0.12884,0.12746,0.12691,0.12574,0.1221,0.12054,0.11689,0.11544,0.11165,0.11092,0.10974,0.10803,0.1042,0.09911,0.09751,0.09656,0.09589,0.09497,0.09399,0.09296,0.09236,0.09225,0.08867,0.08529,0.08203,0.08192,0.07663,0.07608,0.0742,0.07253,0.07203,0.06947,0.06861,0.06814,0.0648,0.06339,0.06294,0.0625,0.06174,0.06145,0.06095,0.05808,0.05746,0.05459,0.05386,0.04395,0.04293,0.04222,0.04096,0.03991,0.03925,0.03824,0.03789,0.03751,0.03663,0.03644,0.03634,0.03589,0.03566,0.03386,0.03357,0.03306,0.02925,0.02835,0.0275,0.02678,0.02607,0.02579,0.02571,0.02551,0.02352,0.02291,0.0219,0.02149,0.02133,0.02126,0.02124,0.02106,0.02102,0.02086,0.02009,0.01984,0.01936,0.01906,0.01804,0.01709,0.01633,0.01542,0.01521,0.01503,0.0146,0.01409,0.01356,0.01275,0.01273,0.01269,0.01249,0.01248,0.01236,0.01224,0.01219,0.01203,0.01192,0.01173,0.01101,0.01082,0.0108,0.01074,0.01026,0.00867,0.00839,0.00765,0.00752,0.0073,0.00572,0.00566,0.00554,0.00484,0.00478,0.00458,0.00405,0.00405,0.00405,0.00403,0.00403,0.00374,0.00267,0.00246,0.00216,0.00209,0.00197,0.00175,0.00155,0.00136,0.00122,0.00105,0.00051,0.00041,0.00036,0.00032,0.00031,0.00018,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"府中市","values":[7.96863,7.92419,7.86007,6.93336,6.30164,5.48065,5.46477,4.60083,4.34408,4.33977,3.97476,3.78037,3.72609,3.56049,3.53019,3.48662,3.46066,3.35303,3.30586,3.23628,3.11451,3.10345,3.07472,3.03255,2.95316,2.93283,2.84539,2.79811,2.79136,2.73977,2.72864,2.70902,2.69258,2.5867,2.58667,2.57801,2.56586,2.52349,2.50288,2.48669,2.48554,2.44541,2.41065,2.4059,2.39294,2.35635,2.35465,2.33297,2.32248,2.31737,2.31497,2.28291,2.28011,2.27475,2.23567,2.22507,2.21251,2.20294,2.19873,2.1863,2.18582,2.18165,2.1799,2.17646,2.17062,2.15462,2.14686,2.14679,2.14625,2.12694,2.10346,2.10101,2.1,2.09929,2.09669,2.0962,2.07186,2.0717,2.04039,2.02711,2.01675,2.00149,1.9853,1.97816,1.97308,1.95283,1.95205,1.945,1.93988,1.93581,1.93017,1.92605,1.92574,1.91411,1.87088,1.86848,1.84369,1.84033,1.83954,1.83454,1.83439,1.8155,1.8147,1.81242,1.79939,1.79928,1.78991,1.78967,1.78567,1.77916,1.76321,1.76027,1.75472,1.74879,1.74873,1.74625,1.73345,1.73212,1.73149,1.72958,1.71471,1.71237,1.71207,1.68825,1.68731,1.67702,1.66254,1.6403,1.62727,1.62161,1.61286,1.60385,1.60093,1.58703,1.58402,1.58022,1.56678,1.54533,1.54317,1.53601,1.53505,1.53338,1.52362,1.51728,1.51289,1.50724,1.4964,1.48654,1.48083,1.47769,1.47699,1.47528,1.46666,1.45251,1.44665,1.44407,1.42992,1.42855,1.42668,1.41877,1.41593,1.41027,1.41005,1.40694,1.40032,1.39806,1.39314,1.3931,1.38967,1.37429,1.37389,1.37383,1.35937,1.35741,1.35481,1.34767,1.34718,1.34206,1.3397,1.32987,1.31995,1.31989,1.31728,1.31266,1.30303,1.29946,1.29245,1.28679,1.27556,1.27324,1.27015,1.26773,1.26549,1.25744,1.25035,1.24719,1.24654,1.24571,1.24445,1.24409,1.23829,1.22392,1.22307,1.22224,1.22109,1.21767,1.20758,1.20657,1.17082,1.15108,1.14551,1.14162,1.11398,1.11037,1.10823,1.10763,1.09915,1.09812,1.09799,1.08975,1.08924,1.07248,1.0706,1.05175,1.04429,1.03944,1.03008,1.02422,1.0196,1.016,1.01516,1.01259,1.00949,0.9994,0.97827,0.96869,0.96193,0.95692,0.94219,0.94054,0.93985,0.93007,0.92879,0.92535,0.92307,0.90631,0.90399,0.90304,0.89568,0.88957,0.87668,0.87657,0.87625,0.87561,0.87386,0.86971,0.86568,0.86336,0.86093,0.85575,0.84907,0.84865,0.84604,0.84305,0.84,0.83908,0.82962,0.82513,0.82027,0.80603,0.80259,0.79965,0.7945,0.79219,0.78863,0.78538,0.78245,0.77638,0.75312,0.74718,0.74324,0.73832,0.73704,0.71894,0.71473,0.71089,0.68776,0.68243,0.67951,0.66737,0.65082,0.64665,0.63762,0.62757,0.6228,0.62007,0.61237,0.61168,0.60304,0.59244,0.58871,0.57321,0.57321,0.57043,0.5691,0.54272,0.53042,0.52893,0.52015,0.51123,0.50633,0.5054,0.50499,0.49277,0.49195,0.48818,0.4852,0.48224,0.47829,0.47723,0.47104,0.46813,0.46729,0.46497,0.46221,0.4603,0.45636,0.45134,0.38354,0.37111,0.36538,0.35174,0.34835,0.34174,0.33594,0.32715,0.32212,0.3205,0.31929,0.30835,0.30796,0.30485,0.30459,0.30374,0.28495,0.28163,0.27845,0.27251,0.24469,0.24203,0.22134,0.21345,0.21147,0.20728,0.19493,0.19258,0.18339,0.17836,0.17047,0.14881,0.14791,0.1441,0.13878,0.13521,0.12522,0.11866,0.11861,0.11441,0.09431,0.09234,0.09222,0.09097,0.08986,0.0876,0.08378,0.07655,0.06591,0.06513,0.06417,0.06398,0.0629,0.06288,0.06285,0.06198,0.0617,0.06125,0.06056,0.05497,0.05359,0.05223,0.05132,0.05129,0.05105,0.04927,0.04591,0.04265,0.04109,0.03853,0.03847,0.03736,0.03195,0.02874,0.02683,0.0257,0.0239,0.0234,0.01768,0.01701,0.01648,0.01644,0.01388,0.01353,0.01148,0.01078,0.01073,0.0096,0.00943,0.0094,0.00894,0.00879,0.0078,0.00677,0.00428,0.0039,0.00281,0.00025,0.00006,0.00004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"狛江市","values":[40.95184,40.01701,39.93541,39.85663,38.56897,38.10226,36.54688,35.46226,34.34824,33.80666,32.149,31.2791,29.59753,29.58158,27.87313,24.27006,23.51582,22.2675,22.15716,21.88754,21.33781,21.23876,20.65634,19.31552,18.58765,18.32539,16.10788,15.78513,15.12498,14.89997,14.51633,14.48331,14.06259,13.56644,13.51377,12.99795,12.86822,12.72081,12.66305,12.43,11.07935,11.04449,10.8951,9.89195,9.55555,9.3524,8.989850000000002,8.91727,8.91334,8.58558,8.54763,8.54444,8.319000000000003,8.24134,8.22035,8.03576,7.82852,7.78284,7.75703,7.70338,7.61791,7.61465,7.5481,7.51333,7.26641,6.95962,6.91233,6.82781,6.74395,5.90145,5.89186,5.89112,5.87094,5.77269,5.75391,5.10308,5.03208,5.02207,4.89429,4.44613,4.41798,4.22953,3.95525,3.89192,3.89156,3.64178,3.51477,3.08422,2.55405,2.50405,2.26777,2.15023,1.96937,0.75465,0.63401,0.29627,0.00055,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"調布市","values":[35.94963,23.64106,23.33615,21.63037,20.17759,19.93949,19.23408,18.56875,18.53204,17.92284,17.01545,16.26879,16.13861,15.35205,14.28841,14.25917,13.92908,12.73072,11.69353,11.42289,10.77517,10.54996,10.01914,9.48928,8.44563,8.42065,8.38192,7.10659,7.08185,6.89235,6.72473,6.68549,6.51416,6.49206,6.39252,6.34839,6.33847,6.27243,5.84177,5.49886,5.49056,5.45713,5.36285,5.36164,5.31661,5.20088,5.14062,5.13451,5.0726,5.06688,5.00781,4.99535,4.90495,4.85834,4.80202,4.75036,4.74253,4.73354,4.72623,4.69297,4.61307,4.55703,4.38945,4.38154,4.37496,4.358170000000001,4.34853,4.27999,4.1991,4.14525,4.137870000000001,4.09936,4.06291,4.00059,3.92493,3.89978,3.89867,3.86878,3.78672,3.77627,3.7696,3.69996,3.68386,3.64405,3.56101,3.54764,3.54681,3.53118,3.40143,3.38359,3.36417,3.35888,3.33282,3.30933,3.25784,3.22427,3.22056,3.21488,3.18729,3.17918,3.11291,3.10151,3.0604,3.04307,3.02926,3.00955,2.99129,2.97614,2.97485,2.95595,2.95363,2.94937,2.92225,2.90364,2.85908,2.82673,2.80036,2.79609,2.78896,2.77796,2.75457,2.7446,2.71339,2.69681,2.67028,2.66413,2.63645,2.63379,2.62152,2.59896,2.58393,2.56591,2.50043,2.49637,2.49612,2.48233,2.45833,2.34949,2.34696,2.34632,2.33233,2.32787,2.26167,2.25522,2.23373,2.16367,2.13313,2.13096,2.09696,2.08835,2.08092,2.07482,2.05143,2.03613,2.02523,2.00416,2.00291,2.00261,1.96214,1.95768,1.95594,1.94226,1.94073,1.94003,1.91081,1.85443,1.83365,1.82366,1.81006,1.8022,1.79582,1.76667,1.74626,1.7239,1.71861,1.71548,1.70806,1.69861,1.69786,1.69123,1.67686,1.67185,1.64014,1.63361,1.63201,1.62493,1.62351,1.6169,1.61521,1.60643,1.5944,1.58905,1.58401,1.55802,1.5472,1.53537,1.51734,1.51361,1.50554,1.4983,1.45494,1.43104,1.426,1.41678,1.3964,1.37551,1.35894,1.34274,1.33355,1.28971,1.28796,1.27478,1.25851,1.24073,1.23175,1.21793,1.21102,1.20997,1.18615,1.16431,1.15968,1.1569,1.14435,1.14363,1.13219,1.09696,1.08158,1.06874,1.05782,1.05612,1.05566,1.04091,1.0334,1.03137,1.01411,1.01137,1.00692,0.99701,0.99331,0.97577,0.95277,0.94764,0.94315,0.94038,0.93667,0.90641,0.90259,0.90207,0.89725,0.8929,0.87586,0.86232,0.85381,0.83498,0.79231,0.77587,0.7714,0.75733,0.75337,0.74074,0.72855,0.71426,0.70939,0.69453,0.69074,0.68491,0.68203,0.66713,0.63571,0.61599,0.61378,0.5668,0.54275,0.52745,0.50783,0.50341,0.47107,0.4516,0.44859,0.44731,0.44522,0.43954,0.43395,0.41041,0.39454,0.39404,0.39353,0.39314,0.38802,0.35911,0.35819,0.31203,0.30522,0.29895,0.25496,0.232,0.19722,0.15708,0.14567,0.14246,0.11244,0.10063,0.07449,0.06733,0.0658,0.05358,0.05321,0.04857,0.04007,0.03684,0.03549,0.01531,0.00807,0.0034,0.00053,0.00041,0.0004,0.00039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"三鷹市","values":[29.54088,28.47853,24.52222,23.51848,23.22847,20.40682,17.74713,17.73225,17.44704,17.37892,17.30123,16.0036,15.31546,14.92258,14.78187,14.65323,14.59921,14.04997,13.96117,13.65516,12.81926,12.32512,12.21076,11.62353,11.50702,11.39153,11.1564,11.13062,10.86288,10.85287,10.31263,10.30934,10.06093,9.38537,9.36509,8.8661,8.09672,8.05681,7.36236,7.09317,7.07692,6.81508,6.75867,6.57855,6.3256,6.31047,5.93783,5.8953,5.79706,5.51873,5.3432,5.31441,5.28162,4.95633,4.9511,4.94168,4.85225,4.77362,4.63107,4.58749,4.57819,4.53552,4.51352,4.51111,4.37618,4.31103,4.25227,4.19895,4.13829,4.03297,3.98355,3.85332,3.79462,3.70097,3.61384,3.4659,3.42398,3.32158,3.30706,3.19176,3.19134,3.14752,3.13108,3.03122,2.98871,2.9754,2.93466,2.9216,2.88641,2.87265,2.78937,2.78722,2.70904,2.64774,2.63829,2.58673,2.56683,2.48266,2.46657,2.42802,2.39647,2.38327,2.35677,2.3206,2.29407,2.27851,2.23195,2.22476,2.17983,2.17143,2.1135,2.10222,2.05845,2.05359,2.0164,1.97393,1.96382,1.94867,1.94479,1.90459,1.8935,1.8192,1.81486,1.80414,1.77413,1.73889,1.73636,1.6846,1.68003,1.64379,1.64302,1.62478,1.60703,1.56763,1.56621,1.56477,1.53977,1.51916,1.4935,1.47531,1.4697,1.42743,1.41544,1.41076,1.41018,1.39867,1.37468,1.37432,1.36419,1.35342,1.31581,1.31489,1.30399,1.29589,1.29499,1.28394,1.27627,1.25509,1.23626,1.22897,1.21566,1.21408,1.2074,1.20027,1.16511,1.15842,1.13175,1.12147,1.09643,1.09478,1.06946,1.05265,1.0334,1.02665,1.00788,0.99248,0.97455,0.97163,0.97148,0.94888,0.93578,0.9344,0.91616,0.888,0.86915,0.84502,0.83683,0.83648,0.83392,0.83059,0.82954,0.82787,0.81546,0.81546,0.81221,0.80379,0.80049,0.78772,0.78419,0.78125,0.76412,0.75799,0.75616,0.75541,0.75405,0.73996,0.71862,0.70301,0.69861,0.69337,0.64626,0.6117,0.6111,0.59917,0.58689,0.5819,0.56774,0.56178,0.55218,0.54874,0.53975,0.51909,0.49302,0.47806,0.46791,0.46221,0.32998,0.31405,0.31323,0.25647,0.25254,0.25134,0.23756,0.21119,0.2023,0.19425,0.18174,0.17802,0.17359,0.1709,0.14687,0.14231,0.13989,0.1375,0.1322,0.09241,0.09047,0.06918,0.05441,0.04335,0.04065,0.03967,0.01169],"total":0},{"name":"所属未定地","values":[0.00144,0.0014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"あきる野市","values":[5.23282,4.93769,4.40939,3.91188,3.5934,3.31015,3.21368,3.18571,3.16009,3.15346,3.07115,2.9246,2.81148,2.6468,2.61376,2.57673,2.5178,2.42001,2.40522,2.33394,2.2845,2.2813,2.11845,1.95632,1.84733,1.80097,1.78325,1.70082,1.69844,1.67111,1.64356,1.62976,1.61243,1.60233,1.51375,1.47854,1.44348,1.43704,1.43502,1.43002,1.3631,1.35766,1.32764,1.30322,1.3008,1.14522,1.14214,1.13327,1.08646,1.08522,1.0742,1.05877,1.05711,1.02597,0.99661,0.99298,0.97068,0.95218,0.93706,0.93698,0.9197,0.91103,0.90398,0.88492,0.85889,0.85027,0.83652,0.83565,0.82607,0.81681,0.81665,0.80697,0.80536,0.79584,0.79114,0.78457,0.7819,0.77501,0.7739,0.77089,0.73698,0.72876,0.72284,0.71524,0.70425,0.69155,0.67237,0.65838,0.64405,0.642,0.64042,0.63917,0.62483,0.6169,0.61399,0.61142,0.60764,0.60565,0.59529,0.58295,0.58222,0.57847,0.5726,0.57222,0.56265,0.56168,0.5616,0.55646,0.5526,0.54896,0.54439,0.53964,0.5269,0.50702,0.49573,0.49017,0.48669,0.48144,0.48046,0.4682,0.45625,0.45507,0.44762,0.44447,0.4436,0.43969,0.42289,0.40946,0.40633,0.40497,0.40477,0.39958,0.3972,0.39615,0.37839,0.36837,0.36675,0.36437,0.36084,0.35569,0.35535,0.35457,0.34809,0.34776,0.34765,0.34734,0.32938,0.32902,0.32425,0.32413,0.32204,0.3198,0.31746,0.31517,0.31309,0.30803,0.30163,0.29896,0.2983,0.29185,0.27218,0.27204,0.26892,0.26447,0.24629,0.24099,0.23829,0.22809,0.2246,0.2222,0.22076,0.21598,0.19966,0.1937,0.1936,0.1926,0.18649,0.18166,0.18136,0.18135,0.17909,0.17773,0.17669,0.17195,0.17041,0.16984,0.16833,0.16802,0.1675,0.16724,0.16533,0.16496,0.16476,0.1645,0.15914,0.15902,0.15617,0.15613,0.15138,0.15118,0.14989,0.14934,0.14838,0.14268,0.14063,0.13944,0.1387,0.13755,0.13755,0.13472,0.13419,0.13399,0.13366,0.1328,0.13159,0.12878,0.12589,0.12588,0.12497,0.1242,0.12158,0.12052,0.11995,0.1184,0.1179,0.11753,0.11682,0.1161,0.11467,0.11444,0.11337,0.11307,0.11267,0.1122,0.10862,0.1053,0.105,0.10495,0.10264,0.10162,0.10076,0.09531,0.09439,0.09349,0.093,0.0887,0.08751,0.08704,0.08664,0.08642,0.08535,0.08146,0.08141,0.07946,0.07918,0.07696,0.07633,0.07573,0.07569,0.07538,0.07395,0.07361,0.07328,0.07324,0.07284,0.07238,0.07043,0.06877,0.06844,0.0683,0.06788,0.06678,0.06475,0.06437,0.06431,0.06332,0.06303,0.06299,0.06254,0.06166,0.06163,0.05968,0.05957,0.0553,0.05506,0.05393,0.05078,0.04805,0.04773,0.04628,0.04184,0.04146,0.04089,0.04045,0.038,0.03798,0.03765,0.03736,0.03736,0.03735,0.03734,0.03727,0.03674,0.03658,0.03631,0.03612,0.03581,0.03549,0.0352,0.03441,0.03372,0.03369,0.03361,0.03321,0.03315,0.03126,0.03126,0.03059,0.0304,0.02935,0.0293,0.02926,0.02895,0.02706,0.02704,0.02667,0.02661,0.02623,0.02611,0.02602,0.02578,0.02546,0.02536,0.02528,0.02524,0.02524,0.02472,0.02451,0.02393,0.02366,0.02351,0.02284,0.02265,0.02258,0.02252,0.02237,0.02215,0.02199,0.02169,0.02161,0.02125,0.02113,0.02101,0.02086,0.02084,0.01979,0.01964,0.01929,0.01924,0.0178,0.01739,0.01678,0.01559,0.01516,0.01511,0.01492,0.01458,0.01426,0.01422,0.01414,0.01392,0.01387,0.0131,0.01286,0.01252,0.01242,0.0123,0.01201,0.01186,0.0118,0.01168,0.01168,0.01167,0.01136,0.01121,0.01114,0.01111,0.01068,0.01042,0.01042,0.01014,0.01012,0.00935,0.00924,0.00883,0.00878,0.00851,0.0085,0.00767,0.00766,0.00699,0.00698,0.00681,0.00654,0.00587,0.00579,0.00573,0.00571,0.00553,0.00546,0.00544,0.0054,0.00518,0.00501,0.00498,0.00498,0.00498,0.00461,0.00437,0.00436,0.00436,0.00431,0.00422,0.00422,0.00422,0.0042,0.00419,0.00405,0.00396,0.00396,0.00371,0.00366,0.00342,0.00335,0.00332,0.00327,0.00326,0.00318,0.00294,0.00292,0.00276,0.00276,0.00271,0.00268,0.00265,0.00249,0.00249,0.00242,0.00236,0.00233,0.0023,0.0023,0.00212,0.0021,0.00207,0.00206,0.00206,0.00188,0.00185,0.0017,0.00169,0.00161,0.00157,0.00157,0.00156,0.00145,0.00145,0.00144,0.00142,0.0014,0.00134,0.0013,0.00128,0.00127,0.00126,0.00123,0.00114,0.00112,0.0011,0.00109,0.00107,0.001,0.00098,0.00092,0.0009,0.0009,0.00088,0.00083,0.00082,0.00081,0.0008,0.0008,0.0008,0.0008,0.00079,0.00079,0.00078,0.00074,0.00074,0.00073,0.00072,0.0007,0.00066,0.00062,0.00061,0.00061,0.00059,0.00057,0.00057,0.00043,0.00039,0.00036,0.00035,0.00035,0.00033,0.00032,0.00032,0.0003,0.00029,0.00028,0.00028,0.00027,0.00026,0.00026,0.00025,0.00022,0.00021,0.00019,0.00018,0.00018,0.00016,0.00015,0.00013,0.00012,0.00012,0.00012,0.00011,0.00008,0.00008,0.00007,0.00007,0.00007,0.00006,0.00006,0.00006,0.00006,0.00006,0.00005,0.00005,0.00004,0.00004,0.00004,0.00004,0.00003,0.00003,0.00003,0.00003,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"日の出町","values":[1.21885,1.02856,0.86044,0.70677,0.67224,0.63008,0.62183,0.49444,0.46855,0.46452,0.46089,0.39538,0.37584,0.32471,0.32432,0.31743,0.29837,0.28411,0.27141,0.27096,0.26986,0.25313,0.24339,0.23094,0.22742,0.20938,0.20747,0.16738,0.1599,0.13127,0.12922,0.12373,0.11511,0.10525,0.10503,0.10465,0.10185,0.09937,0.08689,0.0855,0.0769,0.07501,0.07264,0.0673,0.0673,0.06423,0.06389,0.05522,0.05095,0.04868,0.04716,0.04598,0.04482,0.04388,0.04109,0.03977,0.039,0.03856,0.03808,0.03598,0.0355,0.03496,0.03297,0.03149,0.03126,0.03062,0.03036,0.03005,0.02901,0.02765,0.0274,0.02689,0.0261,0.02557,0.02369,0.02233,0.02195,0.02176,0.02128,0.02011,0.02008,0.02001,0.01976,0.01973,0.01924,0.01881,0.01783,0.01783,0.01752,0.01746,0.0159,0.01571,0.01569,0.0152,0.01471,0.01437,0.01308,0.01246,0.0115,0.01142,0.01023,0.00991,0.00961,0.00931,0.00906,0.00886,0.00854,0.00818,0.0081,0.00799,0.00797,0.00788,0.0078,0.00758,0.00747,0.00747,0.00716,0.00711,0.00696,0.00674,0.00671,0.00617,0.00592,0.00585,0.00583,0.00572,0.00557,0.00546,0.00514,0.00476,0.00472,0.00464,0.00446,0.0043,0.0041,0.00406,0.00404,0.00397,0.00397,0.00394,0.00362,0.00357,0.00348,0.00341,0.00331,0.00325,0.00325,0.00313,0.00299,0.0029,0.00269,0.00263,0.00248,0.00235,0.00229,0.00224,0.00214,0.00201,0.00197,0.0019,0.00187,0.00186,0.00167,0.00162,0.00144,0.00136,0.00134,0.00132,0.00129,0.0011,0.00101,0.00093,0.00084,0.00073,0.00067,0.00066,0.00066,0.00063,0.00063,0.00062,0.0006,0.00059,0.0004,0.00033,0.00033,0.00033,0.00032,0.00028,0.00026,0.00022,0.00021,0.00016,0.00016,0.00015,0.00015,0.00014,0.00014,0.00014,0.00012,0.00011,0.00011,0.00009,0.00009,0.00009,0.00008,0.00007,0.00007,0.00007,0.00006,0.00006,0.00006,0.00005,0.00005,0.00005,0.00005,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"昭島市","values":[2.31459,1.62246,1.61904,1.4644,1.43256,1.35131,1.2974,1.24918,1.24844,1.22761,1.21481,1.12652,1.08303,1.04245,1.03727,1.02349,0.97229,0.96307,0.95482,0.9471,0.93435,0.84466,0.82093,0.80147,0.79995,0.78687,0.78101,0.76417,0.76044,0.76017,0.7574,0.75402,0.74855,0.74362,0.70978,0.6836,0.66002,0.65767,0.63558,0.60379,0.60185,0.59941,0.59443,0.58816,0.57379,0.56872,0.56428,0.54539,0.539,0.53277,0.53197,0.52166,0.5143,0.49567,0.4922,0.48299,0.47181,0.46219,0.46165,0.45183,0.44366,0.43032,0.42824,0.42595,0.40825,0.40031,0.36817,0.3632,0.36201,0.36135,0.35987,0.34014,0.33922,0.3343,0.33143,0.32834,0.32604,0.32584,0.32121,0.3155,0.30263,0.29861,0.29195,0.29053,0.28757,0.28703,0.28339,0.27479,0.27378,0.26613,0.26131,0.24661,0.24585,0.22798,0.22749,0.22693,0.22648,0.20616,0.20086,0.19598,0.193,0.19255,0.18851,0.18762,0.18562,0.18341,0.18123,0.1805,0.17931,0.17917,0.17845,0.17805,0.17356,0.17231,0.16988,0.16854,0.16748,0.15913,0.15685,0.15447,0.15414,0.15173,0.14919,0.14841,0.14799,0.14766,0.14688,0.14634,0.14397,0.14312,0.14042,0.14031,0.13858,0.13821,0.13308,0.13106,0.13004,0.12758,0.12481,0.12441,0.12284,0.11986,0.11908,0.11584,0.115,0.11324,0.1094,0.10336,0.10284,0.10081,0.0999,0.09873,0.09761,0.09577,0.09364,0.09283,0.09078,0.08812,0.08779,0.08651,0.08603,0.08588,0.0843,0.08352,0.08284,0.08197,0.0775,0.07631,0.0741,0.07397,0.06914,0.0689,0.06826,0.0681,0.06534,0.06299,0.06147,0.06128,0.06079,0.06055,0.05795,0.05668,0.05543,0.05018,0.05015,0.04768,0.04716,0.04306,0.04169,0.03858,0.0379,0.03731,0.03577,0.03479,0.03375,0.03207,0.02698,0.02686,0.02489,0.02451,0.02416,0.02209,0.02181,0.02174,0.02173,0.02097,0.02039,0.01947,0.01777,0.01716,0.01706,0.01513,0.01455,0.0139,0.01367,0.01023,0.01023,0.00993,0.00935,0.00935,0.00818,0.00742,0.00682,0.0065,0.00547,0.00487,0.00376,0.00281,0.00265,0.00217,0.00205,0.00174,0.00166,0.0008,0.00033,0.00029,0.00023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"福生市","values":[0.84958,0.83111,0.79698,0.78899,0.61078,0.5884,0.56607,0.53043,0.49578,0.46961,0.44309,0.39529,0.39014,0.38956,0.38811,0.38575,0.38085,0.35522,0.35058,0.34465,0.34118,0.33414,0.32804,0.3123,0.29516,0.28738,0.28136,0.26125,0.25757,0.24591,0.23558,0.2292,0.22042,0.22024,0.21295,0.21235,0.2123,0.20663,0.1993,0.19645,0.19609,0.19134,0.18252,0.1781,0.17744,0.17625,0.17503,0.17189,0.17078,0.16784,0.1643,0.14395,0.13588,0.13001,0.12841,0.12711,0.12673,0.11829,0.11712,0.11543,0.11538,0.11354,0.10887,0.10593,0.10342,0.10052,0.09892,0.09392,0.09388,0.09191,0.09031,0.08941,0.08799,0.08596,0.08334,0.08269,0.08142,0.07252,0.06974,0.06966,0.06857,0.0678,0.06558,0.06398,0.06349,0.06106,0.05945,0.05891,0.05685,0.05684,0.05459,0.05127,0.04962,0.04803,0.04566,0.04442,0.0426,0.04158,0.04069,0.03689,0.03674,0.03517,0.03459,0.03256,0.03126,0.0286,0.02827,0.02818,0.02538,0.02516,0.02435,0.024,0.02116,0.02067,0.01874,0.01808,0.01737,0.01707,0.0161,0.01521,0.01497,0.01497,0.01466,0.01345,0.01318,0.01294,0.01145,0.01125,0.00937,0.00838,0.00775,0.00751,0.00733,0.00668,0.00656,0.00569,0.00489,0.00482,0.00375,0.00324,0.00226,0.00188,0.00065,0.00048,0.0004,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"立川市","values":[4.91427,4.354510000000001,4.26352,3.8059,3.72068,3.58122,3.09123,2.36214,2.2275,2.14237,2.13766,2.13383,2.07221,2.01316,2.00494,1.97281,1.94717,1.94068,1.92395,1.91582,1.85223,1.80612,1.80161,1.62714,1.60891,1.58264,1.5797,1.55624,1.52147,1.46764,1.45982,1.42125,1.32257,1.31837,1.29506,1.2748,1.26252,1.20244,1.18835,1.17781,1.16258,1.13367,1.11681,1.08293,1.07508,1.06621,1.06186,1.04819,1.04564,1.02144,0.98609,0.95776,0.92502,0.92443,0.90699,0.90638,0.88451,0.88437,0.86694,0.82775,0.82672,0.82467,0.80637,0.80008,0.7929,0.77791,0.76029,0.75751,0.72368,0.71789,0.71099,0.70994,0.70333,0.69554,0.69278,0.67981,0.67911,0.67821,0.6755,0.667,0.65781,0.63863,0.62386,0.62252,0.59018,0.58909,0.58712,0.58534,0.58349,0.57725,0.56675,0.56385,0.56366,0.55935,0.55875,0.53639,0.5273,0.50831,0.50691,0.49707,0.49077,0.49064,0.4826,0.48,0.47281,0.46794,0.46589,0.45431,0.44794,0.44552,0.44271,0.4307,0.39858,0.39249,0.38961,0.38359,0.3775,0.3766,0.37305,0.37193,0.3713,0.36936,0.3637,0.36091,0.35751,0.35508,0.35066,0.34833,0.34653,0.34327,0.33168,0.33162,0.32982,0.3236,0.31931,0.31869,0.31042,0.2827,0.28117,0.27828,0.27473,0.27097,0.26692,0.2659,0.26271,0.25378,0.25135,0.24632,0.24497,0.24331,0.24214,0.2276,0.22424,0.22093,0.22068,0.21591,0.21392,0.21296,0.21234,0.21023,0.20989,0.2085,0.20756,0.20729,0.20644,0.20568,0.20477,0.20467,0.20374,0.20373,0.20092,0.19274,0.19199,0.18903,0.18574,0.18526,0.18499,0.18421,0.17931,0.17749,0.17619,0.17373,0.17273,0.16753,0.1666,0.16627,0.16443,0.15638,0.15464,0.14962,0.14848,0.14738,0.14422,0.1424,0.13604,0.13316,0.12964,0.12947,0.12588,0.12379,0.11712,0.11466,0.11288,0.11246,0.11125,0.1112,0.1084,0.10824,0.10503,0.10197,0.09918,0.09319,0.09298,0.09253,0.09249,0.09142,0.08947,0.08917,0.08859,0.08694,0.08537,0.08107,0.07989,0.07642,0.07606,0.07461,0.07353,0.07342,0.07199,0.07159,0.07149,0.07011,0.06812,0.06809,0.06734,0.06682,0.06448,0.06365,0.06199,0.0601,0.05906,0.05739,0.05717,0.05659,0.05598,0.05587,0.05551,0.05407,0.05319,0.05152,0.05143,0.05004,0.04925,0.04837,0.0478,0.04656,0.04555,0.04405,0.04297,0.0425,0.04208,0.04001,0.03986,0.03953,0.03934,0.03922,0.03858,0.03823,0.03772,0.0372,0.03654,0.03555,0.0349,0.03359,0.0334,0.033,0.03005,0.02906,0.02846,0.02805,0.02714,0.02689,0.02627,0.0259,0.02548,0.02431,0.02422,0.0239,0.02389,0.02355,0.02343,0.02226,0.02171,0.02085,0.01984,0.01982,0.01972,0.01928,0.01906,0.01855,0.01815,0.01779,0.01768,0.01733,0.01645,0.01588,0.0154,0.01472,0.01374,0.01364,0.01356,0.01353,0.01331,0.01253,0.01247,0.01195,0.0107,0.00977,0.00968,0.00919,0.00918,0.00883,0.00882,0.00852,0.00828,0.00759,0.00674,0.00673,0.00648,0.00612,0.00603,0.00597,0.00587,0.00568,0.00537,0.0053,0.00528,0.00479,0.00455,0.00448,0.00445,0.00441,0.00433,0.00431,0.00431,0.00303,0.00303,0.00279,0.00276,0.00268,0.00226,0.00208,0.00191,0.00156,0.00152,0.00111,0.00079,0.00073,0.00068,0.00058,0.00032,0.00018,0.00001,0.00001,0,0,0,0,0,0,0,0,0],"total":0},{"name":"武蔵村山市","values":[9.69893,5.69488,5.15888,3.98514,3.41485,3.28557,3.13673,3.12518,2.96846,2.45951,2.0132,1.97565,1.63115,1.59974,1.54723,1.47841,1.13527,1.10222,1.08815,1.05196,1.03841,1.00638,0.97666,0.95771,0.75502,0.75125,0.72664,0.61126,0.60514,0.60415,0.53178,0.5296,0.51413,0.50856,0.48559,0.4748,0.44979,0.44681,0.44627,0.4439,0.42723,0.40802,0.39316,0.39213,0.39187,0.34255,0.33051,0.32865,0.32572,0.31432,0.31385,0.31065,0.30284,0.29881,0.29276,0.29177,0.28059,0.27874,0.26885,0.26343,0.26242,0.25997,0.25591,0.25207,0.25085,0.24912,0.24362,0.23368,0.23003,0.22405,0.22404,0.22131,0.22121,0.21976,0.21937,0.21718,0.20985,0.20283,0.20161,0.20014,0.19769,0.1953,0.1939,0.19168,0.18449,0.18426,0.17778,0.17716,0.17467,0.17464,0.17161,0.16996,0.16829,0.15962,0.15835,0.15245,0.14019,0.1395,0.13632,0.13589,0.12884,0.12734,0.12573,0.12562,0.12422,0.12402,0.12312,0.12298,0.11169,0.10982,0.10643,0.10621,0.10573,0.10491,0.10473,0.10229,0.10163,0.10051,0.09883,0.09825,0.09464,0.09417,0.09102,0.08948,0.08644,0.08626,0.08622,0.08572,0.08414,0.08108,0.07567,0.07557,0.07511,0.07383,0.07362,0.07288,0.07136,0.0712,0.06984,0.06618,0.06589,0.06572,0.05749,0.05662,0.05532,0.05253,0.05242,0.05208,0.0517,0.0514,0.0513,0.05093,0.05029,0.0502,0.04971,0.04872,0.04753,0.04552,0.04543,0.04427,0.0428,0.04219,0.03879,0.03788,0.0378,0.03695,0.03514,0.03507,0.03471,0.03245,0.02913,0.02729,0.02717,0.02648,0.02399,0.02345,0.02329,0.02322,0.02168,0.01965,0.01938,0.01527,0.01475,0.01353,0.01218,0.01175,0.01137,0.01032,0.00876,0.00757,0.00738,0.00701,0.00655,0.0054,0.0051,0.00499,0.00475,0.00466,0.00361,0.00323,0.00316,0.0031,0.0029,0.00288,0.00275,0.00244,0.00239,0.00197,0.00171,0.00158,0.00147,0.00102,0.00098,0.00084,0.00061,0.00049,0.0004,0.00024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"羽村市","values":[3.30681,1.33462,1.33453,1.30768,1.29059,1.25266,1.23296,1.21808,1.12213,1.1152,1.11312,1.0724,1.04513,1.02252,1.00874,1.00051,0.9788,0.96838,0.81244,0.80704,0.8052,0.767,0.72245,0.71191,0.70644,0.70527,0.68138,0.64989,0.64803,0.63281,0.61704,0.6132,0.60259,0.58751,0.57443,0.55781,0.55156,0.55098,0.53088,0.52176,0.5086,0.45827,0.44543,0.43865,0.43414,0.41962,0.41654,0.41215,0.41209,0.38529,0.38221,0.3777,0.37471,0.36363,0.34751,0.33838,0.33566,0.3356,0.32033,0.31946,0.30562,0.28972,0.26987,0.25554,0.24236,0.24073,0.24067,0.23685,0.23287,0.21786,0.20419,0.19277,0.18565,0.18461,0.18324,0.17619,0.17304,0.16935,0.16498,0.16489,0.15794,0.1546,0.14899,0.14191,0.13187,0.12217,0.11336,0.10287,0.10285,0.09876,0.09795,0.09457,0.09273,0.08864,0.08819,0.08523,0.08098,0.07883,0.07809,0.07443,0.07387,0.06909,0.06502,0.06404,0.06341,0.06303,0.06204,0.05737,0.05661,0.05398,0.05204,0.0505,0.05044,0.04828,0.044,0.03977,0.03789,0.03675,0.03129,0.02929,0.02926,0.02915,0.02757,0.02748,0.02666,0.02643,0.02373,0.02371,0.02292,0.02279,0.01905,0.01802,0.01759,0.01754,0.01568,0.01241,0.0114,0.01121,0.0107,0.00952,0.00851,0.00803,0.00769,0.00574,0.00547,0.00389,0.00282,0.00255,0.00215,0.00036,0],"total":0},{"name":"瑞穂町","values":[0.68352,0.36835,0.36638,0.35933,0.34126,0.33776,0.32006,0.30315,0.29419,0.29283,0.28607,0.28455,0.26425,0.26394,0.25615,0.24275,0.21649,0.19858,0.19394,0.17811,0.17415,0.16764,0.16654,0.16048,0.15766,0.15746,0.15325,0.15081,0.14784,0.13967,0.13434,0.12846,0.12548,0.1221,0.12024,0.11892,0.11565,0.11545,0.11499,0.1123,0.11,0.10266,0.09427,0.09325,0.08603,0.0859,0.08539,0.08524,0.08499,0.08463,0.08314,0.08194,0.08142,0.07908,0.07727,0.07662,0.07639,0.07495,0.07339,0.06971,0.06881,0.06814,0.06798,0.06673,0.06426,0.06363,0.06352,0.06316,0.0603,0.05748,0.05542,0.05511,0.05391,0.05186,0.05173,0.05082,0.05049,0.04696,0.04692,0.04687,0.04396,0.04345,0.04242,0.04216,0.04024,0.03919,0.03748,0.03593,0.03456,0.034,0.03355,0.03332,0.03273,0.0318,0.02995,0.02975,0.02921,0.02886,0.02886,0.02667,0.02666,0.02587,0.02533,0.0249,0.02482,0.02469,0.02378,0.02271,0.02194,0.02158,0.02065,0.02064,0.02024,0.01994,0.01966,0.01949,0.01932,0.01926,0.01731,0.01697,0.01546,0.01525,0.01482,0.0148,0.01444,0.01441,0.01428,0.01359,0.01318,0.01295,0.01283,0.01283,0.01276,0.01251,0.01251,0.01245,0.01234,0.01218,0.01192,0.01188,0.01165,0.01105,0.01082,0.01054,0.01052,0.0101,0.00983,0.00967,0.00908,0.00888,0.00886,0.0076,0.00734,0.00724,0.00703,0.00655,0.00649,0.00635,0.00592,0.00575,0.00568,0.00548,0.0054,0.00503,0.0049,0.00479,0.00466,0.0045,0.00441,0.00424,0.00424,0.0041,0.00409,0.00399,0.00374,0.00346,0.00336,0.00316,0.00312,0.00293,0.00271,0.00253,0.00229,0.00165,0.00159,0.00158,0.00155,0.00146,0.00134,0.00132,0.00131,0.00108,0.00107,0.00104,0.0009,0.00089,0.00084,0.00081,0.00077,0.00074,0.00074,0.00067,0.00059,0.00049,0.00043,0.00037,0.00033,0.00032,0.00026,0.00026,0.00024,0.00022,0.00021,0.0002,0.00011,0.00011,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"国立市","values":[11.86729,11.48177,11.12616,10.05825,8.89199,8.458740000000002,8.273350000000002,7.80428,7.78337,7.33869,5.76815,5.72263,5.07288,5.03311,4.982,4.363450000000001,4.21408,4.07991,3.77338,3.77109,3.67046,3.56517,3.43379,3.33385,3.20948,2.93783,2.7294,2.59281,2.51333,2.51141,2.18304,2.17573,2.15447,2.11102,2.00858,1.9772,1.8005,1.63525,1.59446,1.55751,1.44825,1.42787,1.36951,1.3602,1.32513,1.18028,1.09787,1.09027,1.06707,1.06558,1.00557,0.80494,0.79979,0.67914,0.65647,0.65518,0.62471,0.61423,0.59373,0.49544,0.48996,0.48912,0.45148,0.4427,0.43998,0.41462,0.35619,0.34306,0.33597,0.31428,0.30935,0.29041,0.28973,0.28579,0.28428,0.28419,0.28254,0.27855,0.27242,0.26218,0.24963,0.24229,0.23159,0.23033,0.22521,0.22483,0.21009,0.20641,0.20514,0.20323,0.19407,0.19177,0.18827,0.18758,0.18229,0.17548,0.15187,0.1297,0.12591,0.12386,0.11923,0.11601,0.10491,0.10443,0.102,0.10157,0.09033,0.07925,0.07912,0.07836,0.07617,0.06883,0.05227,0.04273,0.03803,0.03626,0.03017,0.02852,0.02421,0.02288,0.01816,0.01373,0.01202,0.00988,0.00716,0.00552,0.00511],"total":0},{"name":"国分寺市","values":[14.20883,13.6877,12.80991,10.10719,9.04429,8.09034,7.69519,7.47666,6.60619,6.04046,6.01443,5.97006,5.93707,5.86855,5.84283,5.82401,5.50746,5.34887,5.20724,5.14548,5.04242,4.98153,4.639,4.41749,4.3035,4.28557,4.1899,4.01099,3.8856,3.84613,3.65901,3.5282,3.40861,3.29882,3.22197,3.14423,3.03468,2.97492,2.90783,2.88944,2.85868,2.85335,2.71847,2.67926,2.64809,2.6045,2.54985,2.43937,2.41644,2.38087,2.33188,2.27567,2.24549,2.19729,2.17147,2.12581,2.05125,2.04208,2.03685,1.98763,1.90633,1.78425,1.7276,1.63912,1.62879,1.61613,1.59678,1.57063,1.56286,1.55254,1.55148,1.53143,1.52829,1.51467,1.50699,1.50362,1.50294,1.47307,1.4139,1.38477,1.37719,1.35437,1.34599,1.3091,1.2919,1.26501,1.25907,1.21282,1.20971,1.17943,1.17212,1.17061,1.16782,1.16258,1.15447,1.12756,1.11089,1.10868,1.09043,1.06778,1.05991,1.0366,1.0212,1.01484,1.00503,1.00183,0.99639,0.96507,0.95414,0.93371,0.89399,0.88869,0.78835,0.78774,0.77664,0.7693,0.75429,0.75374,0.71318,0.69046,0.67524,0.65786,0.62597,0.62146,0.61619,0.60609,0.60025,0.56451,0.55371,0.55211,0.54307,0.5362,0.48792,0.47221,0.4578,0.45166,0.41989,0.41766,0.41138,0.40201,0.40174,0.39887,0.39873,0.36665,0.36571,0.3291,0.32677,0.31633,0.30473,0.2953,0.29342,0.29195,0.28554,0.27891,0.24465,0.23153,0.22167,0.20998,0.20919,0.20902,0.19798,0.19769,0.19524,0.19326,0.1921,0.1708,0.16693,0.16545,0.16072,0.14477,0.13183,0.08292,0.07126,0.02197],"total":0},{"name":"小金井市","values":[12.79818,12.54886,12.24668,12.07369,11.691,11.62944,11.20738,10.5947,10.36877,9.84156,9.74414,9.49134,9.45836,8.93135,8.816890000000003,8.58244,8.41869,8.22823,7.94765,7.6243,7.61129,7.58958,6.57605,6.42224,6.38401,6.27789,6.09186,5.95974,5.83747,5.79023,5.67319,5.65609,5.56339,5.42613,5.24229,5.18937,5.16358,5.08878,5.06997,4.94246,4.89063,4.84161,4.83638,4.25571,4.25273,4.20883,4.20005,4.15147,4.08432,3.79119,3.76194,3.66813,3.65516,3.6314,3.60864,3.55378,3.52313,3.52029,3.51636,3.4036,3.37147,3.34695,3.24022,3.178,3.15045,3.1405,3.12522,3.11211,3.01577,2.97986,2.90125,2.84712,2.83204,2.80481,2.79326,2.79273,2.73991,2.73127,2.62649,2.53697,2.4471,2.38103,2.37249,2.36338,2.35535,2.35324,2.31037,2.29604,2.16638,2.13114,2.08849,2.00449,2.00175,1.87909,1.79887,1.79449,1.767,1.74383,1.73838,1.71377,1.69219,1.69146,1.65136,1.5366,1.48806,1.47856,1.43585,1.42632,1.40975,1.40431,1.35359,1.32866,1.32624,1.31623,1.31612,1.28637,1.2782,1.23401,1.22226,1.21983,1.21372,1.20451,1.20349,1.10485,1.06104,0.93346,0.90264,0.89115,0.87292,0.84864,0.83721,0.82683,0.80205,0.76271,0.71402,0.7117,0.70542,0.67417,0.64019,0.6167,0.59554,0.50974,0.50703,0.50653,0.50421,0.49804,0.49408,0.48964,0.45013,0.40867,0.38806,0.31671,0.27203,0.2608,0.18967,0.15598,0.15026,0.14438,0.14411,0.13096,0.12748,0.11287,0.07874,0.06943,0.05171,0.03578,0.02723,0.02314,0.01587,0.00063,0,0,0,0],"total":0},{"name":"小平市","values":[7.40109,7.30099,6.87914,6.38033,6.06938,5.94797,5.55147,5.21688,4.96594,4.88842,4.83076,4.82734,4.79779,4.21892,4.132780000000001,4.09613,3.89334,3.88771,3.81511,3.76821,3.74504,3.72405,3.66886,3.41904,3.33015,3.28074,3.24369,3.22773,3.15487,3.11615,3.02412,3.01721,2.98081,2.97006,2.92465,2.90877,2.76431,2.73426,2.6579,2.59169,2.56224,2.5245,2.4585,2.45638,2.4189,2.40996,2.38352,2.37631,2.34913,2.2758,2.18817,2.1626,2.14617,2.08724,2.0693,1.99857,1.94881,1.88961,1.88064,1.87653,1.84082,1.83286,1.83188,1.83171,1.81936,1.71731,1.692,1.6565,1.65318,1.59881,1.58262,1.56155,1.54899,1.51593,1.5,1.48553,1.47764,1.46089,1.45803,1.45478,1.45015,1.4485,1.43727,1.4354,1.43449,1.40196,1.36635,1.36362,1.35356,1.34181,1.33783,1.33491,1.32588,1.31419,1.31177,1.3116,1.31042,1.30721,1.28915,1.27193,1.1999,1.19862,1.18716,1.18293,1.15571,1.13215,1.12931,1.12761,1.09492,1.0722,1.04898,1.04896,1.04818,1.02721,1.01473,1.01115,1.00903,0.99593,0.98122,0.97408,0.97378,0.9558,0.95253,0.9421,0.93666,0.91516,0.9087,0.9058,0.89286,0.88982,0.88832,0.8555,0.83442,0.82678,0.8134,0.79751,0.79534,0.79043,0.7884,0.77705,0.77647,0.77475,0.77378,0.7641,0.75443,0.74564,0.70616,0.70257,0.69352,0.68075,0.6724,0.66603,0.65622,0.65551,0.6552,0.64526,0.63176,0.63154,0.63152,0.63107,0.62809,0.62581,0.61561,0.61002,0.60357,0.60312,0.59773,0.59479,0.59229,0.59207,0.59132,0.58401,0.56697,0.56172,0.55904,0.55156,0.5487,0.54504,0.53811,0.53777,0.53645,0.53422,0.53368,0.52834,0.52334,0.51846,0.51583,0.51461,0.50518,0.50019,0.49997,0.48518,0.48426,0.48192,0.47999,0.47696,0.47682,0.47275,0.46754,0.45597,0.43914,0.43852,0.4249,0.41824,0.4146,0.41384,0.39513,0.39036,0.38934,0.38882,0.3864,0.38199,0.38093,0.37886,0.37261,0.37239,0.37228,0.37155,0.37035,0.363,0.35743,0.34812,0.34715,0.34552,0.34269,0.34043,0.33446,0.32906,0.32798,0.32572,0.32364,0.32161,0.32109,0.31721,0.31316,0.31251,0.31221,0.30147,0.29608,0.29604,0.29306,0.28081,0.27743,0.27207,0.25834,0.25477,0.23995,0.23638,0.23438,0.23405,0.233,0.23077,0.2296,0.22454,0.22222,0.22213,0.20376,0.19786,0.19783,0.19507,0.19264,0.18843,0.17723,0.16967,0.16864,0.16825,0.1638,0.1577,0.14948,0.1487,0.14388,0.14362,0.14287,0.1391,0.13635,0.13514,0.13136,0.12652,0.12514,0.12488,0.12147,0.11988,0.11493,0.11182,0.11093,0.10651,0.10547,0.10446,0.09328,0.09032,0.0867,0.08533,0.0836,0.07992,0.07865,0.07579,0.06389,0.06197,0.05544,0.05511,0.05387,0.04543,0.04134,0.04063,0.03775,0.03648,0.03585,0.03158,0.03055,0.02568,0.02206,0.02049,0.00661,0,0,0],"total":0},{"name":"東大和市","values":[2.26886,1.80575,1.66216,1.59121,1.31885,1.20062,1.09176,1.07199,1.01252,0.98167,0.9788,0.97651,0.96344,0.96214,0.89468,0.8925,0.87235,0.86906,0.8485,0.81552,0.78131,0.77861,0.76918,0.75327,0.70339,0.70311,0.67746,0.67204,0.65806,0.65734,0.64855,0.63647,0.6352,0.63388,0.63193,0.63013,0.62704,0.62425,0.61844,0.58835,0.58723,0.57689,0.57524,0.56267,0.54135,0.53806,0.53574,0.5285,0.52435,0.52354,0.51897,0.51253,0.49744,0.47437,0.46396,0.46395,0.44756,0.4472,0.44511,0.44488,0.44431,0.43784,0.43734,0.43633,0.43517,0.41473,0.40695,0.39576,0.38938,0.37959,0.37768,0.36221,0.36054,0.34652,0.34594,0.33474,0.32196,0.31406,0.31021,0.30602,0.29693,0.27948,0.27909,0.27643,0.27327,0.27319,0.26709,0.26222,0.26169,0.25033,0.24693,0.24246,0.23335,0.22946,0.22401,0.22368,0.22279,0.21782,0.2161,0.21516,0.21019,0.20943,0.20768,0.2061,0.20518,0.2036,0.19987,0.19679,0.1944,0.19269,0.19087,0.18647,0.17911,0.17705,0.16741,0.16452,0.16276,0.16114,0.15301,0.14846,0.14455,0.13338,0.13166,0.12393,0.12299,0.11616,0.10745,0.10315,0.09417,0.09179,0.08656,0.08177,0.0728,0.07225,0.06988,0.06695,0.06263,0.06187,0.05978,0.05635,0.05521,0.05439,0.05353,0.04544,0.04363,0.04226,0.04208,0.0393,0.0356,0.034,0.03374,0.03369,0.02743,0.0251,0.02466,0.02162,0.021,0.02057,0.01804,0.01504,0.01344,0.00969,0.00865,0.00801,0.00288,0.00275,0.00228,0.00023,0.00003,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"東村山市","values":[3.29261,3.25911,3.19806,3.01135,2.2414,2.11191,1.9997,1.94394,1.90139,1.8574,1.83497,1.80046,1.72394,1.66576,1.62576,1.55875,1.54463,1.53167,1.51399,1.4943,1.47463,1.43625,1.20902,1.20095,1.1952,1.19476,1.18055,1.15643,1.13684,1.12024,1.1188,1.1147,1.11082,1.09891,1.08779,1.03354,1.01721,0.99696,0.9816,0.97087,0.96328,0.95779,0.95434,0.93131,0.93101,0.90827,0.89553,0.89011,0.88046,0.87909,0.86788,0.85831,0.85741,0.83628,0.8354,0.83411,0.82228,0.82155,0.81908,0.80511,0.80125,0.78547,0.77587,0.76399,0.75544,0.74891,0.73955,0.73879,0.73807,0.73734,0.73036,0.72949,0.7158,0.70473,0.68929,0.65434,0.65255,0.65089,0.62795,0.62385,0.62265,0.61849,0.61249,0.60747,0.59125,0.57829,0.56777,0.56725,0.56375,0.55832,0.54955,0.54878,0.54667,0.54109,0.53957,0.53257,0.52577,0.52399,0.52381,0.51915,0.51407,0.50768,0.50421,0.49311,0.48682,0.48153,0.47782,0.47668,0.46337,0.46079,0.45865,0.45682,0.45612,0.45488,0.44729,0.44256,0.43698,0.43562,0.43419,0.42392,0.41869,0.4122,0.4092,0.40642,0.40511,0.40065,0.39488,0.38406,0.38225,0.3748,0.36898,0.35295,0.34882,0.34562,0.34375,0.34264,0.34241,0.3322,0.33033,0.32518,0.31891,0.31406,0.31018,0.30857,0.30408,0.30334,0.29901,0.29464,0.28875,0.28096,0.27943,0.27917,0.27897,0.27778,0.27644,0.27432,0.27106,0.27092,0.27081,0.26402,0.26236,0.25325,0.2522,0.2519,0.25013,0.24743,0.24008,0.23831,0.23322,0.22887,0.22374,0.22112,0.21691,0.21474,0.21468,0.2121,0.21076,0.20687,0.20461,0.20453,0.20312,0.20089,0.19375,0.19184,0.19171,0.18483,0.18327,0.17131,0.16843,0.16444,0.16187,0.16038,0.15891,0.1586,0.15758,0.15578,0.15416,0.15224,0.15192,0.15168,0.1471,0.14611,0.145,0.14477,0.14138,0.13942,0.13748,0.13466,0.13351,0.13278,0.1324,0.13035,0.12828,0.12504,0.12326,0.11842,0.11596,0.11294,0.11271,0.10827,0.10592,0.10138,0.10066,0.09803,0.09494,0.09261,0.09063,0.08692,0.08465,0.0822,0.07993,0.07386,0.07208,0.07172,0.07059,0.06699,0.06455,0.06393,0.06285,0.06265,0.06155,0.06129,0.06104,0.05944,0.05831,0.05589,0.05562,0.05009,0.04955,0.04868,0.04741,0.04408,0.04114,0.03942,0.03886,0.03758,0.03717,0.03516,0.0321,0.03178,0.01761,0.01507,0.01147,0.00546,0.0045,0.00272,0.0016,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"東久留米市","values":[4.1509,4.14781,3.81832,3.59507,3.58067,3.49658,3.36685,3.30808,3.28586,3.225,3.1367,3.12127,3.08271,3.07454,3.03675,2.98661,2.76617,2.72198,2.51074,2.45934,2.41931,2.4148,2.396,2.31204,2.17289,2.0104,1.99359,1.85259,1.77494,1.72914,1.69341,1.61074,1.58874,1.58547,1.56385,1.52748,1.51304,1.4906,1.48679,1.44124,1.41739,1.40408,1.3805,1.34438,1.3141,1.26875,1.24267,1.21457,1.18672,1.17355,1.14916,1.14824,1.141,1.13563,1.10753,1.04682,0.98602,0.95121,0.94641,0.94015,0.93968,0.9384,0.92576,0.92506,0.91928,0.87856,0.87438,0.86684,0.85934,0.85728,0.829,0.82447,0.79728,0.79373,0.78389,0.7786,0.76754,0.76442,0.75542,0.7536,0.73854,0.71095,0.70174,0.7005,0.68424,0.66746,0.66586,0.665,0.66218,0.65784,0.62821,0.61306,0.60469,0.60454,0.60089,0.58671,0.57047,0.56486,0.56363,0.56066,0.55464,0.54467,0.53637,0.51829,0.5125,0.51114,0.50784,0.50632,0.49404,0.49388,0.48776,0.48572,0.48557,0.48114,0.46238,0.46097,0.4561,0.45387,0.44809,0.44655,0.43433,0.43114,0.4227,0.42257,0.42191,0.42097,0.40671,0.39963,0.39661,0.39077,0.38786,0.38669,0.3843,0.38158,0.37756,0.37126,0.36812,0.36368,0.36226,0.35313,0.35155,0.34447,0.33967,0.33309,0.33184,0.32231,0.3179,0.31415,0.30962,0.30884,0.29998,0.29287,0.29192,0.28956,0.28317,0.28315,0.28199,0.28185,0.27837,0.27769,0.27516,0.27432,0.27385,0.26742,0.2672,0.26227,0.26022,0.25965,0.2556,0.24831,0.24476,0.24367,0.24,0.23719,0.22742,0.22473,0.22447,0.2179,0.21391,0.21012,0.20306,0.20202,0.19978,0.19441,0.18375,0.17824,0.17322,0.16783,0.16296,0.1472,0.14212,0.14091,0.13896,0.12943,0.12885,0.1273,0.11827,0.10584,0.07713,0.07072,0.06103,0.05273,0.04058,0.03946,0.03568,0.03554,0,0,0,0,0,0],"total":0},{"name":"武蔵野市","values":[25.53504,23.87638,22.7458,22.52874,21.6542,21.04046,20.98598,19.96388,19.44507,18.22577,17.63041,17.30106,16.97133,16.78747,16.11509,15.44378,14.14963,12.89458,12.63902,11.09371,11.0429,10.69465,9.9859,9.82376,9.36092,8.95092,8.0665,8.06579,7.91133,7.78767,7.53857,7.48508,6.73484,6.72105,6.38522,6.19144,6.13497,6.00787,5.87375,5.75333,5.60274,4.87169,4.86829,4.66925,4.229580000000001,4.02574,3.91874,3.89223,3.7959,3.79293,3.77906,3.63125,3.55636,3.40904,3.27997,3.27377,3.14944,3.08264,2.91444,2.91311,2.77477,2.48254,2.40576,2.32887,2.31399,2.30738,2.08992,2.06381,2.05827,2.05307,2.00091,1.8031,1.73369,1.54071,1.50042,1.48308,1.47031,1.38445,1.32357,1.22923,1.2268,1.18339,1.17804,1.16818,1.16652,1.14606,1.12656,1.12022,1.09435,1.08075,1.04053,1.02007,0.95584,0.93959,0.93865,0.9378,0.89764,0.86666,0.86635,0.86181,0.77605,0.76321,0.75432,0.74994,0.74718,0.74062,0.73226,0.7146,0.70154,0.68907,0.68568,0.67035,0.64953,0.64908,0.60352,0.57008,0.5186,0.51315,0.50983,0.49711,0.48486,0.47864,0.46435,0.46009,0.45128,0.44406,0.44077,0.44061,0.43384,0.43254,0.43202,0.42965,0.42943,0.41919,0.36305,0.36258,0.35422,0.35322,0.33909,0.33049,0.30948,0.30496,0.3033,0.27577,0.27549,0.25199,0.24784,0.24308,0.22936,0.22584,0.201,0.19993,0.18858,0.16961,0.15732,0.13302,0.13087,0.11835,0.10841,0.10349,0.08815,0.07114,0.04253,0.01927,0,0],"total":0},{"name":"西東京市","values":[17.60897,14.90114,14.71892,12.8625,11.5684,11.10444,10.47321,10.15303,9.92714,9.84943,9.6347,9.56091,9.38209,9.28427,8.96586,8.77742,8.049620000000003,7.68079,7.60197,7.23398,6.93225,6.84718,6.59784,6.09666,6.0251,5.92739,5.79614,5.765,5.52565,5.39947,5.38226,5.32009,5.20715,5.08592,5.08163,5.05012,5.04932,4.94901,4.87674,4.71493,4.39863,4.25413,4.2136,4.19029,4.17058,4.10295,3.88332,3.82519,3.77834,3.7352,3.70153,3.69654,3.54817,3.54081,3.47315,3.44884,3.38255,3.36924,3.35778,3.34257,3.28819,3.25883,3.2152,3.1786,3.12577,3.10533,3.07539,3.03366,3.0329,3.01614,3.01049,2.99973,2.91172,2.86877,2.77576,2.68762,2.68631,2.67325,2.63532,2.61864,2.61472,2.58106,2.56485,2.55718,2.54838,2.54572,2.54359,2.48132,2.42354,2.3785,2.36779,2.33032,2.27139,2.26803,2.23458,2.21733,2.21237,2.20532,2.19507,2.19475,2.19461,2.16094,2.11549,2.10159,2.09457,2.09106,1.9524,1.94786,1.89222,1.85149,1.81577,1.80705,1.77917,1.75237,1.74922,1.74419,1.74379,1.73599,1.7324,1.72473,1.72304,1.71874,1.7004,1.67028,1.6398,1.63347,1.605,1.60257,1.60163,1.58504,1.58072,1.55929,1.55204,1.53264,1.52863,1.5229,1.49557,1.46184,1.43727,1.43617,1.42169,1.40786,1.39686,1.38531,1.36721,1.36526,1.31565,1.27769,1.21295,1.21001,1.20698,1.19903,1.18176,1.17527,1.17473,1.14859,1.14781,1.14521,1.13781,1.11436,1.11276,1.09866,1.08974,1.07812,1.03067,1.02904,1.01214,0.95902,0.95169,0.94071,0.93868,0.93715,0.93268,0.91767,0.90763,0.90107,0.89734,0.89325,0.86759,0.86463,0.83935,0.80375,0.75875,0.75785,0.756,0.7444,0.73973,0.72022,0.70681,0.69751,0.67384,0.67214,0.66378,0.66099,0.66091,0.64866,0.647,0.64674,0.63722,0.62438,0.59903,0.58656,0.57886,0.56218,0.55761,0.52466,0.50034,0.49089,0.49055,0.47927,0.47373,0.4632,0.46003,0.43723,0.43425,0.43227,0.41881,0.41832,0.40934,0.40298,0.40111,0.38951,0.36729,0.35488,0.34554,0.32074,0.31417,0.30012,0.29429,0.26836,0.26604,0.22498,0.21968,0.21631,0.21301,0.20221,0.18923,0.15558,0.10471,0.05492,0.0484,0.02867,0.02291,0.00954,0.00822,0,0],"total":0},{"name":"千代田区","values":[0.09194,0.08455,0.04091,0.03866,0.03609,0.02461,0.02289,0.02088,0.01837,0.01734,0.01557,0.0146,0.01434,0.01425,0.01344,0.0132,0.01247,0.01246,0.01237,0.01088,0.01054,0.00978,0.00953,0.00923,0.00837,0.0083,0.0083,0.00807,0.00796,0.00725,0.00685,0.00628,0.00627,0.00611,0.00585,0.00556,0.00537,0.00531,0.0051,0.00493,0.00481,0.00475,0.00449,0.00437,0.00425,0.00423,0.00413,0.00412,0.00395,0.00384,0.00382,0.00376,0.00373,0.00361,0.00359,0.00358,0.0035,0.00338,0.00331,0.00328,0.00327,0.00326,0.00325,0.00317,0.00313,0.00308,0.00303,0.00299,0.00287,0.00285,0.00284,0.00268,0.00266,0.00265,0.00251,0.00236,0.00235,0.00225,0.00223,0.00221,0.00219,0.00209,0.00207,0.00202,0.00198,0.00187,0.00185,0.00183,0.00182,0.00175,0.00164,0.0016,0.00159,0.00158,0.00153,0.00147,0.0014,0.00132,0.00126,0.00124,0.00123,0.00122,0.00121,0.00103,0.00102,0.00099,0.00098,0.00097,0.00093,0.00092,0.00087,0.00086,0.00084,0.00082,0.0008,0.00077,0.00076,0.00074,0.00068,0.00067,0.00054,0.00054,0.00051,0.00046,0.00043,0.00042,0.00041,0.00039,0.00036,0.00035,0.00031,0.00031,0.00031,0.0003,0.0003,0.00029,0.00029,0.00027,0.00024,0.00023,0.00023,0.00023,0.00022,0.00018,0.00016,0.00011,0.00011,0.00009,0.00009,0.00008,0.00007,0.00007,0.00006,0.00005,0.00004,0.00003,0.00003,0.00003,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0,0,0,0,0,0],"total":0},{"name":"青梅市","values":[0.61093,0.47535,0.45971,0.45068,0.42859,0.42326,0.40357,0.38346,0.38088,0.3723,0.37052,0.3653,0.35859,0.34824,0.34399,0.34226,0.3395,0.33738,0.33734,0.33072,0.33044,0.32811,0.32668,0.32222,0.32022,0.31945,0.31294,0.3109,0.30737,0.30654,0.30361,0.29597,0.29569,0.29289,0.29232,0.28889,0.28842,0.28825,0.28444,0.28428,0.28388,0.28348,0.2814,0.27757,0.2767,0.27446,0.27445,0.27416,0.27312,0.2669,0.26479,0.26254,0.26252,0.26244,0.26021,0.2552,0.2522,0.24946,0.24829,0.2482,0.24764,0.24531,0.24352,0.2433,0.24299,0.24283,0.24263,0.24241,0.24136,0.24044,0.2403,0.24022,0.23921,0.23906,0.23699,0.23627,0.23239,0.2322,0.23154,0.23126,0.22924,0.22907,0.22906,0.22702,0.22563,0.22431,0.22383,0.22181,0.22143,0.2211,0.22014,0.21893,0.21799,0.21719,0.21657,0.2151,0.2143,0.21372,0.21264,0.21233,0.21105,0.21067,0.21044,0.20909,0.20879,0.20674,0.20648,0.20593,0.20574,0.20446,0.20385,0.2035,0.20191,0.20087,0.2007,0.20059,0.19842,0.19837,0.19705,0.19697,0.19637,0.19545,0.19412,0.19403,0.19346,0.19329,0.19297,0.18936,0.18864,0.18746,0.18734,0.18667,0.18594,0.18577,0.18414,0.18268,0.18185,0.18143,0.1804,0.17951,0.17903,0.17851,0.1777,0.17682,0.17644,0.17516,0.17425,0.174,0.1732,0.17228,0.17123,0.17056,0.16695,0.16591,0.16555,0.16415,0.16391,0.16271,0.16122,0.15994,0.15745,0.15698,0.15688,0.15659,0.15647,0.15632,0.15398,0.15356,0.15352,0.15332,0.15296,0.15217,0.15203,0.15202,0.15174,0.15008,0.14956,0.14949,0.14864,0.14844,0.14755,0.14714,0.14674,0.14619,0.14599,0.14557,0.14517,0.14504,0.14461,0.14431,0.14357,0.14324,0.14279,0.14251,0.14179,0.14067,0.13925,0.13913,0.13892,0.13793,0.13538,0.13523,0.13499,0.13407,0.13385,0.13313,0.13193,0.12967,0.12888,0.12886,0.12755,0.12653,0.12464,0.12432,0.12328,0.12297,0.12089,0.11954,0.11843,0.11779,0.11673,0.11639,0.11593,0.1152,0.1145,0.11351,0.11322,0.1127,0.11259,0.11242,0.11235,0.11212,0.11155,0.11085,0.11067,0.11062,0.11037,0.11002,0.10911,0.10886,0.10753,0.10721,0.10636,0.10365,0.10359,0.10299,0.10227,0.10135,0.10115,0.10114,0.10026,0.09958,0.09777,0.09734,0.09702,0.09688,0.09643,0.09554,0.09515,0.09447,0.09434,0.09343,0.09276,0.0916,0.09142,0.09134,0.08943,0.08871,0.08746,0.08727,0.08642,0.08593,0.08506,0.08315,0.08229,0.08163,0.08024,0.07947,0.07931,0.07894,0.07821,0.07759,0.07732,0.07697,0.07648,0.07613,0.07527,0.07476,0.07403,0.07383,0.07354,0.07297,0.0724,0.07226,0.07207,0.07199,0.07048,0.07021,0.07011,0.07006,0.06994,0.06991,0.06964,0.06951,0.0695,0.06885,0.06785,0.06765,0.06701,0.06585,0.06516,0.06478,0.06395,0.06324,0.06232,0.06208,0.06159,0.06148,0.06143,0.06064,0.06016,0.06015,0.05941,0.0593,0.05837,0.05789,0.05773,0.05772,0.05711,0.05685,0.05547,0.05478,0.05449,0.05423,0.05343,0.05321,0.05291,0.05227,0.052,0.05127,0.05056,0.05011,0.04996,0.04991,0.04949,0.04942,0.04932,0.04898,0.04892,0.04876,0.04826,0.04813,0.04608,0.04574,0.0456,0.04554,0.0454,0.04536,0.04453,0.0439,0.04384,0.04382,0.0438,0.04367,0.04311,0.04265,0.04255,0.04255,0.04187,0.04162,0.04117,0.04082,0.04049,0.03932,0.03912,0.03836,0.03804,0.03789,0.03785,0.03737,0.03726,0.03714,0.03705,0.03684,0.03681,0.03664,0.03655,0.03558,0.03552,0.03551,0.03509,0.03472,0.03461,0.03454,0.0345,0.03442,0.03391,0.03388,0.03379,0.0334,0.03338,0.03329,0.03277,0.03227,0.03192,0.03181,0.03143,0.03126,0.03108,0.03098,0.03064,0.02992,0.02942,0.02932,0.02904,0.02864,0.02818,0.0281,0.02781,0.02763,0.02738,0.02725,0.0272,0.02719,0.02707,0.02703,0.0268,0.02666,0.02652,0.02649,0.0264,0.02615,0.02604,0.02598,0.02572,0.0254,0.02537,0.02537,0.02454,0.0243,0.02422,0.02372,0.02354,0.02311,0.02252,0.02249,0.02242,0.02224,0.02214,0.02209,0.02148,0.02139,0.02121,0.02087,0.02068,0.02008,0.02006,0.02005,0.02004,0.02,0.01973,0.01954,0.01927,0.01924,0.01911,0.01892,0.01872,0.01845,0.01833,0.01829,0.01821,0.01819,0.01818,0.01796,0.01794,0.01787,0.01783,0.01776,0.01762,0.01756,0.01754,0.01715,0.01711,0.01697,0.01687,0.01687,0.01643,0.01631,0.01622,0.0162,0.01592,0.01589,0.01586,0.01571,0.01557,0.01541,0.0154,0.01534,0.01533,0.01527,0.01503,0.01495,0.01495,0.01491,0.01455,0.01453,0.01438,0.01404,0.01382,0.01378,0.0137,0.01362,0.01362,0.01347,0.01342,0.01293,0.01267,0.01254,0.01235,0.0123,0.01227,0.01224,0.01222,0.01209,0.01209,0.01197,0.01189,0.01187,0.01186,0.01183,0.01171,0.01147,0.01147,0.01145,0.01144,0.0114,0.01139,0.0107,0.0107,0.01069,0.01063,0.01061,0.01051,0.01049,0.01026,0.00994,0.00986,0.00984,0.00982,0.00976,0.00966,0.00965,0.0096,0.0096,0.00949,0.00941,0.00933,0.00927,0.00918,0.00914,0.00907,0.00898,0.00896,0.00884,0.00874,0.0087,0.00862,0.00862,0.00862,0.00861,0.00848,0.00835,0.00824,0.00813,0.00813,0.00808,0.00807,0.00802,0.00801,0.00776,0.00734,0.00727,0.00725,0.00719,0.00716,0.00706,0.00703,0.00702,0.00697,0.00689,0.00684,0.00678,0.00672,0.00669,0.00669,0.00669,0.00669,0.00669,0.00663,0.00662,0.00645,0.00636,0.00619,0.00618,0.00589,0.00582,0.00573,0.00571,0.00569,0.00568,0.0056,0.00541,0.00536,0.00533,0.00532,0.00524,0.00518,0.00518,0.0051,0.00507,0.00489,0.0048,0.00475,0.00474,0.00474,0.00468,0.00461,0.00454,0.00443,0.00443,0.00432,0.00425,0.00406,0.00404,0.00404,0.00399,0.00396,0.00395,0.00386,0.00357,0.00347,0.00333,0.00326,0.00317,0.00304,0.00299,0.00294,0.00291,0.00287,0.00286,0.00279,0.00276,0.00275,0.00271,0.00267,0.00267,0.00266,0.00252,0.00239,0.00237,0.00234,0.00232,0.00232,0.00232,0.00231,0.00231,0.00224,0.00224,0.00209,0.00208,0.00205,0.00204,0.00203,0.002,0.00199,0.00195,0.00191,0.0019,0.00179,0.00176,0.00169,0.00158,0.00156,0.00155,0.00147,0.00141,0.0014,0.00139,0.00138,0.00129,0.00127,0.00119,0.00116,0.00113,0.00112,0.00112,0.00111,0.00111,0.00105,0.00102,0.001,0.00096,0.00095,0.00095,0.00091,0.00085,0.00083,0.00078,0.00077,0.00077,0.00075,0.00074,0.00073,0.00066,0.00064,0.00063,0.00057,0.00053,0.00053,0.00052,0.00051,0.00048,0.00047,0.00047,0.00047,0.00044,0.00041,0.00041,0.00037,0.00035,0.00035,0.00035,0.00033,0.00033,0.00033,0.00032,0.0003,0.0003,0.0003,0.0003,0.00029,0.00028,0.00028,0.00027,0.00026,0.00024,0.00023,0.00023,0.00022,0.0002,0.0002,0.0002,0.0002,0.0002,0.00019,0.00018,0.00015,0.00015,0.00014,0.00014,0.00014,0.00014,0.00014,0.00013,0.00011,0.00011,0.00011,0.00011,0.0001,0.0001,0.0001,0.0001,0.00008,0.00008,0.00008,0.00007,0.00007,0.00007,0.00007,0.00006,0.00005,0.00005,0.00005,0.00005,0.00005,0.00004,0.00004,0.00004,0.00004,0.00003,0.00003,0.00003,0.00003,0.00003,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0},{"name":"清瀬市","values":[2.32539,2.14781,1.57051,1.52397,1.29447,1.04491,1.00324,0.9973,0.93025,0.85902,0.84769,0.83572,0.81307,0.76149,0.75059,0.74225,0.73157,0.73058,0.71098,0.70453,0.62117,0.62032,0.60742,0.59066,0.58648,0.57792,0.55287,0.55063,0.54338,0.52438,0.51528,0.51475,0.51196,0.50738,0.50237,0.49511,0.48358,0.47545,0.47347,0.46217,0.4246,0.42217,0.41742,0.41647,0.40603,0.39325,0.39076,0.38958,0.37293,0.36712,0.36363,0.3575,0.33238,0.32984,0.32667,0.31758,0.31609,0.31478,0.31458,0.31206,0.29654,0.29616,0.29465,0.28616,0.28372,0.2799,0.27687,0.27674,0.27631,0.25831,0.25181,0.25162,0.24494,0.24341,0.24249,0.23974,0.23955,0.23804,0.23404,0.22869,0.22305,0.22247,0.22003,0.21608,0.2158,0.21505,0.21419,0.20626,0.20563,0.20352,0.203,0.20119,0.20087,0.19779,0.19771,0.18943,0.18779,0.17707,0.17611,0.16563,0.16525,0.16362,0.16218,0.15495,0.15053,0.15042,0.14676,0.14593,0.14048,0.13992,0.13415,0.13291,0.13106,0.12916,0.12856,0.12096,0.12032,0.11972,0.11907,0.11589,0.11512,0.11371,0.10867,0.1083,0.10444,0.09323,0.09173,0.08762,0.08638,0.08485,0.08024,0.07885,0.07769,0.07451,0.07376,0.07243,0.05617,0.05579,0.05536,0.05508,0.05168,0.04938,0.04683,0.04581,0.04575,0.04523,0.0387,0.03713,0.03696,0.0334,0.03083,0.02932,0.02808,0.02519,0.02317,0.02276,0.02178,0.0215,0.02034,0.01957,0.01919,0.01501,0.01301,0.01279,0.00983,0.00939,0.00851,0.00628,0.00201,0.00099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"total":0}]}
\ No newline at end of file
diff --git a/app/src/layers/data/toshin-burned-area3.json b/app/src/layers/data/toshin-burned-area3.json
new file mode 100644
index 0000000..248d586
--- /dev/null
+++ b/app/src/layers/data/toshin-burned-area3.json
@@ -0,0 +1 @@
+{"list":[{"name":"世田谷区","values":[85.19305,81.78969,78.61838,77.97459,74.67166,73.38841,71.42017,70.09636,67.72995,67.37281,66.52998,66.0542,66.03805,65.64901,65.1698,64.96802,64.85604,64.8405,64.63462,62.7851,62.70494,62.52045,62.30215,60.70299,60.16423,60.09428,59.46144,58.96456,58.51547,58.41909,58.33468,57.75778,57.42823,56.7526,56.50146,56.44239,56.38296,56.29674,56.24815,56.17578,55.96,55.81443,55.78255,55.76115,55.47659,55.08959,54.82108,54.81784,54.62492,54.56133,54.52019,54.50769,54.38341,54.36945,54.26635,54.17252,53.18324,53.09576,52.89713,52.52774,52.40941,52.05123,51.9833,51.14945,51.10125,51.00202,50.95208,50.94168,50.75863,50.74689,50.1814,50.08818,49.86707,49.8283,49.76544,49.73849,49.45455,49.22973,49.21296,48.34193,48.10401,47.93488,47.71674,47.53753,47.48296,47.42687,47.40214,47.34585,47.18951,46.89431,46.44325,46.43613,46.32685,46.32338,46.08832,45.94316,45.38828,45.37865,45.2741,45.23348,45.20582,44.96462,44.95893,44.85447,44.75249,44.32734,44.21848,44.21246,44.08958,44.0157,43.87444,43.83235,43.35359,43.27068,43.15251,42.7796,42.46347,42.34554,42.25993,42.18898,42.15237,41.99341,41.9891,41.94342,41.93892,41.86097,41.64239,41.52526,41.50056,41.35881,41.30137,41.21556,41.03686,41.02873,40.97477,40.94989,40.81322,40.76134,40.47934,40.3782,40.15636,40.04659,39.98295,39.598,39.48413,39.2177,39.20744,39.17573,39.07772,38.97311,38.93202,38.90987,38.61092,38.56602,38.38035,38.33833,38.21054,38.16786,38.13501,38.12591,37.8079,37.61649,37.53126,37.46953,37.35812,37.24062,37.10731,36.99845,36.97777,36.93207,36.84766,36.52631,36.52474,36.44262,36.23756,36.15706,36.11222,36.05793,36.03233,35.89478,35.86421,35.76257,35.75956,35.62278,35.48211,35.43047,35.15415,35.08806,35.00961,34.98538,34.92052,34.82091,34.64701,34.56606,34.45945,34.45441,34.28752,34.28485,34.26235,34.25394,34.25052,34.19555,34.17286,34.16391,34.11184,34.0432,34.02845,33.8652,33.65021,33.63669,33.39894,33.31782,33.31624,33.16939,33.143,33.09528,33.0365,32.83527,32.7489,32.74728,32.66904,32.60442,32.58768,32.53555,32.46343,32.44381,32.35369,32.33387,32.33309,32.31303,32.23472,32.11102,31.94855,31.8901,31.8429,31.79375,31.70046,31.68728,31.56738,31.53162,31.46679,31.40729,31.40433,31.34015,31.32718,31.2408,31.21756,31.21093,31.07791,30.81568,30.74374,30.73973,30.70361,30.68543,30.65473,30.56577,30.38828,30.36656,30.09574,30.09159,30.01455,29.98705,29.86016,29.67254,29.54922,29.41325,29.31036,29.15545,29.07563,29.06446,29.04211,28.97805,28.89714,28.88251,28.84214,28.81367,28.5509,28.46602,28.46045,28.40841,28.33573,28.31331,28.28204,28.2694,28.09487,28.05323,27.7531,27.60985,27.42885,27.41572,27.35992,27.34676,27.1316,27.08162,27.06569,27.01005,26.99456,26.99134,26.90694,26.89481,26.86217,26.84211,26.82375,26.73995,26.65494,26.63739,26.49512,26.49371,26.33889,26.07025,25.8977,25.78753,25.7563,25.74129,25.6099,25.52323,25.51672,25.49802,25.48333,25.43675,25.41048,25.38875,25.38325,25.36521,25.26984,25.17778,25.16827,25.13788,25.01537,24.70476,24.70148,24.60678,24.4117,24.37737,24.30136,24.28879,24.17283,24.16707,24.16527,23.912,23.78529,23.78516,23.68747,23.59194,23.58858,23.39726,23.38417,23.36105,23.28217,23.2812,23.24432,23.22719,23.13126,23.12215,23.02964,22.99256,22.80336,22.58997,22.57456,22.48915,22.37206,22.33617,22.28736,22.27152,22.23083,22.19909,22.1988,22.02953,21.99398,21.94639,21.79508,21.70488,21.68511,21.65689,21.61806,21.37699,21.36983,21.15334,21.11138,21.0974,21.09357,21.02551,21.01021,20.99382,20.91095,20.87533,20.85163,20.80609,20.68164,20.44948,20.37676,20.37661,20.34406,20.30048,20.29613,20.18262,20.14083,20.13642,19.97225,19.932,19.85066,19.81278,19.76622,19.74107,19.72387,19.66513,19.58081,19.5789,19.55996,19.52151,19.50656,19.40897,19.38051,19.35795,19.3334,19.32927,19.23633,19.11969,19.11099,19.07066,18.8221,18.7179,18.66214,18.62216,18.6162,18.57162,18.53276,18.51351,18.47605,18.38828,18.30071,18.211,18.19088,18.18307,18.17444,18.08851,18.02695,17.99746,17.99291,17.94416,17.91162,17.8942,17.76377,17.74685,17.74677,17.74547,17.73447,17.68949,17.65097,17.64039,17.6312,17.59967,17.54861,17.53232,17.50735,17.48139,17.47488,17.27472,17.15146,17.14223,17.0289,16.95557,16.90325,16.84842,16.82992,16.8192,16.81107,16.78826,16.75635,16.73524,16.7313,16.56175,16.47406,16.37681,16.37058,16.32465,16.23664,16.12397,16.0935,16.08038,16.06961,16.05176,16.04497,16.01777,15.95419,15.89438,15.87264,15.84459,15.74711,15.72223,15.6292,15.60758,15.58105,15.57028,15.4243,15.34537,15.25443,15.20614,15.15497,15.05224,14.97013,14.96001,14.91262,14.86258,14.71789,14.70971,14.67196,14.66078,14.63593,14.61877,14.61522,14.57769,14.55989,14.53669,14.51409,14.40533,14.40244,14.37953,14.36384,14.3477,14.34067,14.32425,14.31086,14.28215,14.25819,14.21129,14.21046,14.16557,14.10066,13.99929,13.99577,13.95009,13.93851,13.90502,13.83103,13.81998,13.79768,13.69151,13.65845,13.63906,13.63289,13.63268,13.62167,13.5853,13.58088,13.57994,13.53048,13.50938,13.47991,13.4197,13.41879,13.41173,13.38489,13.37262,13.32153,13.24913,13.24406,13.21471,13.1843,13.14958,13.1281,13.1228,13.07598,13.06915,12.96012,12.94541,12.9045,12.89152,12.86647,12.85767,12.85089,12.78883,12.76046,12.75694,12.73593,12.72206,12.72116,12.69594,12.67385,12.67197,12.65953,12.65631,12.62176,12.59151,12.53379,12.52607,12.50097,12.47609,12.4665,12.4614,12.45604,12.28971,12.28218,12.26706,12.25736,12.24667,12.22908,12.13859,12.08207,11.95413,11.94319,11.91466,11.87325,11.83185,11.82649,11.81871,11.71734,11.70366,11.68967,11.65824,11.64805,11.4683,11.45277,11.40405,11.40338,11.34045,11.3346,11.29346,11.25423,11.16937,11.09734,11.09176,11.01934,10.90474,10.90463,10.89459,10.89456,10.87067,10.73431,10.72725,10.68537,10.68309,10.63803,10.61874,10.60401,10.59992,10.59227,10.58802,10.58583,10.57762,10.53329,10.52853,10.49983,10.44532,10.39251,10.37398,10.35019,10.23197,10.217,10.19635,10.19436,10.13683,10.13035,10.11221,10.1111,10.0813,10.03807,10.03578,9.96065,9.93585,9.93531,9.86249,9.85266,9.78047,9.7198,9.69602,9.68557,9.68219,9.68124,9.67011,9.66607,9.66271,9.6513,9.63199,9.60733,9.60124,9.58524,9.58025,9.57148,9.55879,9.55363,9.5461,9.45664,9.33157,9.32994,9.28196,9.25888,9.18112,9.17759,9.03967,9.01464,9.00038,8.928890000000003,8.892300000000002,8.88234,8.74239,8.71757,8.7095,8.70924,8.59634,8.57084,8.565810000000003,8.562950000000003,8.52019,8.50983,8.463620000000002,8.39585,8.39345,8.2788,8.250170000000002,8.24883,8.24132,8.23415,8.13226,8.13147,8.11368,8.08396,8.036,7.99539,7.97122,7.96857,7.94613,7.94462,7.94373,7.93305,7.92287,7.84185,7.80575,7.75096,7.75036,7.68564,7.67711,7.66504,7.62452,7.44438,7.44308,7.42941,7.40686,7.38905,7.33547,7.31448,7.29258,7.22219,7.1659,7.14142,7.14051,7.11482,7.10723,6.9846,6.95297,6.81653,6.81381,6.75927,6.63063,6.60279,6.55628,6.51194,6.49186,6.45346,6.44145,6.38322,6.3793,6.37015,6.34955,6.24935,6.21419,6.1989,6.14577,6.03809,6.02348,5.89931,5.87404,5.87207,5.81752,5.80177,5.77016,5.733,5.727,5.62447,5.60105,5.51063,5.48315,5.47509,5.43125,5.41078,5.37949,5.33276,5.25184,5.2123,5.13673,5.08693,5.05707,5.02621,5.0214,4.99247,4.92955,4.86384,4.82128,4.68398,4.68396,4.64182,4.46458,4.45915,4.27771,4.27538,4.172900000000001,4.057610000000001,4.04802,3.91292,3.86144,3.83034,3.73688,3.66793,3.64048,3.5898,3.53808,3.53536,3.52345,3.47153,3.42747,3.41231,3.3926,3.27922,3.25646,3.1869,3.15718,3.12012,3.08032,3.05536,2.99355,2.96421,2.82968,2.81183,2.8021,2.80181,2.55599,2.47516,2.19886,2.10988,1.9963,1.95335,1.87528,1.79611,1.77227,1.68686,1.60333,1.58523,1.45498,1.41653,1.39996,1.28602,1.21052,1.12198,1.09069,1.03525,0.99319,0.83144,0.79996,0.79076,0.57335,0.56746,0.54099,0.4667,0.45561,0.44575,0.44469,0.44244,0.35226,0.30892,0.28984,0.28255,0.25219,0.22762,0.13861,0.11585,0.08814,0.01415,0.00018,0.00001],"total":19989},{"name":"大田区","values":[137.12221,118.61903,115.66628,108.37461,107.83433,106.88353,103.19252,102.98473,99.72711,98.50618,97.54444,95.13133,94.42008,94.28688,93.55676,93.40821,93.37391,91.57963,91.4599,90.38557,88.99088,88.03017,87.44364,87.12226,86.87172,86.4565,84.37923,84.08426,83.43055,82.35996,82.08105,81.54939,81.12254,79.82687,79.51922,79.00898,78.27703,77.7918,77.77379,77.70315,77.07651,76.27607,75.28168,74.88225,74.63915,74.57076,73.20921,72.98333,72.28572,72.1213,72.02071,71.88973,71.87703,71.61654,71.17167,70.61803,70.36699,70.35437,69.81594,69.61187,69.30166,68.66574,68.15479,68.10763,66.97455,65.52737,65.32169,65.04277,64.75906,64.62877,63.82922,63.76919,63.70134,63.69928,63.2838,63.2624,62.9229,62.60786,62.52824,62.37683,62.09357,61.76326,61.75601,61.35447,61.25694,61.08905,60.64518,60.58551,60.47344,60.13886,59.78139,59.75797,59.73238,59.30724,59.25893,58.71431,58.39959,58.29177,58.04352,58.03807,57.13959,57.04233,56.6118,56.58445,55.7211,55.69326,55.33714,55.33003,55.28622,55.09973,54.75338,54.72861,54.72017,54.50879,54.13419,54.0851,53.94946,53.85378,53.44149,53.35566,53.17591,52.64339,52.39164,52.10442,51.8318,51.64556,51.54242,51.43872,51.37212,51.33846,51.32773,51.31914,51.29561,50.9265,50.58161,50.52855,50.2354,50.11335,49.92495,49.71656,49.70999,49.38247,49.29146,49.27475,48.84545,48.76681,48.42728,48.39413,48.044,48.00398,47.78164,47.67629,47.44594,47.11355,47.04487,46.82983,46.75669,46.58716,46.57357,46.54496,46.54343,46.4233,46.39988,46.17993,45.81886,45.55234,45.39523,44.98472,44.85273,44.7589,44.70137,44.58984,44.57905,44.513,44.26725,44.19283,43.98875,43.94326,43.4211,43.32729,43.20205,43.08382,42.96202,42.93269,42.87624,42.73822,42.57364,42.54154,42.36093,42.07519,41.99324,41.97611,41.86896,41.7298,41.44011,41.26083,41.14016,41.11446,40.96378,40.91468,40.90502,40.87028,40.61239,40.36771,40.16927,39.9195,39.84425,39.72195,39.4795,38.92882,38.86929,38.31549,37.73946,37.68761,37.66334,37.38865,37.09568,36.89151,36.87882,36.45359,36.44945,36.43467,35.43187,35.3654,35.03605,34.8344,34.67638,34.4238,34.41701,34.37772,34.01161,33.90164,33.52778,33.51621,33.41034,33.20474,33.1837,33.17022,32.939,32.87993,32.68934,32.4329,32.26064,32.20033,31.87699,31.86281,31.68711,31.48536,31.42704,31.37111,31.06251,31.04091,30.93202,30.8946,30.88431,30.80306,30.71542,30.69712,30.45693,30.33589,30.17677,30.09161,30.07899,29.78387,29.73756,29.50176,29.30825,29.07022,28.6748,28.60097,28.57668,28.57322,28.3914,28.32162,28.20971,27.9321,27.88677,27.8142,27.6125,27.6101,27.6054,27.58901,27.5875,27.4688,27.00559,27.00197,26.84293,26.55371,26.52353,26.52004,26.42787,26.28237,26.26497,26.25994,26.23846,26.14005,26.09566,25.79647,25.23436,25.20426,24.89288,24.73855,24.64925,24.53139,24.24146,23.95817,23.90648,23.7541,23.75089,23.31794,23.31434,22.957,22.82766,22.53281,22.36751,22.26486,22.09317,22.04986,21.93734,21.59278,21.34793,21.25972,21.21532,21.20803,21.204,21.2033,21.1303,21.10029,20.98139,20.97869,20.84758,20.74904,20.63716,20.4817,20.26491,20.17486,20.17079,19.9562,19.95569,19.85356,19.7852,19.63246,19.20849,19.12723,18.87851,18.74415,18.6817,18.4341,18.4196,18.29003,18.07577,18.00661,17.72759,17.66714,17.47944,17.42668,17.35476,17.32242,17.18874,17.08745,17.00404,16.83369,16.67674,16.48035,16.3307,16.15118,16.13634,16.00615,16.00498,15.99838,15.80019,15.70025,15.66481,15.62753,15.54348,15.40763,15.271,15.24873,15.24394,15.20891,15.10886,15.09392,14.99932,14.98176,14.93741,14.88579,14.79142,14.72738,14.64306,14.63034,14.5942,14.54987,14.40097,14.39173,14.2185,13.93964,13.92539,13.85337,13.79779,13.57717,13.48918,13.45788,13.43137,13.39265,13.17571,13.11197,13.08634,13.07791,13.00924,12.99071,12.90455,12.78832,12.7545,12.59075,12.5896,12.4777,12.4542,12.4005,12.37533,12.03875,12.00122,11.99184,11.97111,11.92009,11.63627,11.62949,11.55689,11.52489,11.44285,11.34339,11.12385,11.02871,10.86714,10.76309,10.73555,10.60135,10.58659,10.53348,10.51434,10.33322,10.27358,9.99705,9.95748,9.88746,9.83903,9.52563,9.48737,9.48629,8.92182,8.706440000000002,8.67813,8.66948,8.59545,8.57409,8.570080000000003,8.556520000000003,8.44465,7.97845,7.72904,7.41946,7.41042,7.36487,7.32231,7.2565,7.16009,7.15402,7.13308,7.03297,7.02045,6.88339,6.87425,6.82335,6.79058,6.73335,6.61377,6.52968,6.49416,6.45374,6.42843,6.41529,6.20469,6.03854,6.03137,6.01154,5.94856,5.94091,5.93207,5.9145,5.86526,5.75848,5.75307,5.6098,5.59301,5.52586,5.50109,5.49598,5.37875,5.37356,5.2015,5.09952,5.09287,4.86255,4.82123,4.81681,4.79961,4.73943,4.69734,4.68845,4.65938,4.61671,4.5582,4.55575,4.53914,4.49113,4.446290000000001,4.33383,4.230400000000001,4.181580000000001,4.08864,3.92611,3.91317,3.88549,3.81998,3.58126,3.55452,3.53616,3.53533,3.50555,3.49126,3.43306,3.39116,3.31685,3.26302,3.24932,3.2448,3.2445,3.06709,3.03139,3.00826,2.95999,2.94355,2.9423,2.94121,2.86644,2.85192,2.74805,2.73534,2.72487,2.68422,2.67468,2.67433,2.55829,2.53754,2.52639,2.52587,2.52587,2.48408,2.45567,2.34229,2.33741,2.29671,2.18364,2.16299,2.06661,2.05939,2.03233,1.99218,1.99103,1.97319,1.95136,1.93867,1.92119,1.90642,1.90273,1.85984,1.8236,1.81797,1.73547,1.72744,1.71292,1.70694,1.67468,1.67415,1.65804,1.65117,1.64465,1.64092,1.60404,1.56619,1.52908,1.52652,1.52046,1.51542,1.43309,1.41043,1.39523,1.39293,1.36721,1.35318,1.33254,1.32773,1.31238,1.31175,1.2884,1.23783,1.19298,1.17082,1.16837,1.1586,1.14317,1.13619,1.12187,1.07582,1.0542,1.03527,1.0243,1.01716,1.01097,1.01095,1.01028,0.99845,0.99163,0.98686,0.9794,0.97525,0.94475,0.93255,0.89108,0.89042,0.86609,0.83033,0.82793,0.81358,0.77521,0.76673,0.7269,0.7153,0.6855,0.68262,0.67373,0.67199,0.66043,0.65143,0.64958,0.64838,0.64827,0.63742,0.57234,0.56244,0.54292,0.50806,0.50616,0.50513,0.50513,0.49768,0.49575,0.49487,0.49479,0.48687,0.48684,0.47838,0.47478,0.46109,0.46056,0.44716,0.44289,0.41851,0.41307,0.41227,0.39056,0.38981,0.38078,0.3706,0.35242,0.34429,0.34364,0.34215,0.34144,0.34131,0.33684,0.33112,0.33051,0.32763,0.32018,0.31847,0.31635,0.3163,0.30895,0.3023,0.25851,0.22083,0.21219,0.21022,0.20735,0.20729,0.20603,0.20332,0.19712,0.19485,0.17471,0.17429,0.15808,0.15347,0.14194,0.14178,0.14132,0.12145,0.11514,0.11129,0.10918,0.10264,0.10225,0.10005,0.09718,0.09687,0.09448,0.07992,0.07231,0.07078,0.07074,0.07068,0.07065,0.07065,0.07065,0.05924,0.0557,0.05152,0.04666,0.0464,0.03518,0.03403,0.02491,0.02441,0.02139,0.0132,0.013,0.01287,0.01043,0.00929,0.00785,0.00737,0.00687,0.00574,0.00445,0.00438,0.00355,0.00303,0.00284,0.00271,0.00214,0.002,0.00176,0.00172,0.00123,0.00122,0.00114,0.00099,0.00091,0.00083,0.00066,0.00047,0.00036,0.00014,0.00004,0.00001],"total":18884},{"name":"江戸川区","values":[206.05823,196.5033,188.12188,172.93749,167.82685,151.3652,150.45391,148.54702,145.89311,140.02291,139.68547,138.92355,130.29928,130.11035,129.0649,120.91374,120.25059,119.77933,119.31732,119.06027,115.198,114.78989,111.77221,110.57322,108.96187,108.36694,108.32119,106.65219,106.22915,105.59884,101.93351,98.73752,98.51814,95.80762,94.8397,93.14601,91.08947,89.60209,89.52669,89.22303,88.10388,87.84955,82.83523,80.40995,80.33488,80.22908,79.58555,76.76852,76.74413,76.46251,75.33033,75.26057,75.18443,73.95847,73.39123,73.31405,71.12994,70.47363,70.37084,70.15614,70.08318,69.57828,69.40697,68.95036,67.93549,67.64992,67.36117,67.23804,65.38084,64.31759,63.45695,63.07884,63.01213,62.56659,62.55646,62.05883,61.82973,61.29672,61.11153,59.67715,59.46426,58.94814,58.51707,58.25679,58.10026,58.09994,57.2353,56.66103,55.09911,53.90146,53.14435,53.05758,52.50189,51.82435,51.76597,51.6316,50.89256,49.02841,49.01375,48.78082,48.42961,48.37359,48.03123,47.9979,47.24959,46.66576,46.29896,44.70691,44.59337,43.86933,43.82413,43.54683,43.31842,42.67265,42.64835,42.45604,42.26208,42.23936,42.22315,42.04828,42.02047,41.30604,41.2616,41.24653,41.09555,41.03397,40.63717,40.48025,40.16419,39.61553,39.33812,39.09315,38.61211,38.2491,38.10307,37.67506,36.73335,36.60007,36.56359,35.82117,35.76265,35.72364,35.6482,35.35382,35.10333,34.49371,34.15032,33.79793,33.4105,33.36808,32.22758,32.14982,31.83255,31.46107,31.33013,31.30042,30.90487,30.86788,30.86699,30.5503,30.40004,30.11023,30.06571,29.69293,29.57628,29.56222,29.51088,29.31506,29.29578,28.95638,28.77726,28.43948,28.35646,27.74155,27.41744,27.19468,26.90342,26.89848,26.80925,26.77152,26.047,25.98109,25.90289,25.88632,25.76622,25.75472,24.9641,24.91915,24.70212,24.11869,23.96558,23.60731,23.1912,23.09903,23.08216,22.04979,21.96295,21.95938,21.93372,21.66484,21.66272,21.50529,21.47102,21.16535,21.09826,21.03969,20.93476,20.62421,20.54275,20.49337,20.36855,20.34685,20.15438,20.05404,20.02799,19.80053,19.23279,19.13576,18.90321,18.89276,18.87763,18.79472,18.73317,18.63798,18.54537,18.31096,18.29364,18.24059,18.05849,17.9858,17.77163,17.48443,17.46767,17.39079,17.36898,17.27463,17.20885,17.12866,16.93266,16.67146,16.53643,16.05388,16.04348,15.98121,15.95425,15.77906,15.65976,15.59401,15.29481,15.15393,15.12137,15.08956,15.08418,15.06906,14.96282,14.80679,14.79581,14.74347,14.62877,14.56755,14.47944,14.27815,14.21197,14.17996,13.8359,13.82862,13.81279,13.6615,13.48367,13.42543,13.37775,13.09028,13.06464,13.06271,12.97383,12.76958,12.7249,12.66105,12.56921,12.48695,12.47072,12.44853,12.43231,12.11467,12.02759,12.01748,11.97141,11.90472,11.69613,11.57244,11.55062,11.06574,10.93838,10.82206,10.80878,10.73994,10.73349,10.72885,10.72781,10.68527,10.43028,10.37684,10.37428,10.37309,10.33534,10.26817,10.18719,10.08524,9.94223,9.92748,9.85581,9.79882,9.77866,9.70795,9.61037,9.5602,9.54057,9.37043,9.28641,9.18259,9.11674,9.0526,8.953060000000002,8.76031,8.7232,8.67393,8.57748,8.56188,8.5,8.4516,8.44073,8.393090000000003,8.39113,8.374980000000003,8.359830000000002,8.29461,8.23976,8.17703,8.16194,8.107620000000002,8.08574,8.0776,8.04182,7.9061,7.84943,7.72304,7.70433,7.66364,7.63006,7.56494,7.54777,7.52596,7.41003,7.37312,7.37163,7.3081,7.285,7.24049,7.1582,7.14245,7.11896,7.09677,7.05583,6.95369,6.93942,6.90059,6.88686,6.80796,6.75159,6.71538,6.71158,6.63063,6.61639,6.5694,6.47076,6.46507,6.46092,6.40728,6.38694,6.37832,6.37531,6.36271,5.99912,5.94872,5.8872,5.86423,5.745,5.69513,5.65862,5.65314,5.64672,5.61194,5.59324,5.56274,5.56212,5.55826,5.4697,5.46444,5.4578,5.40376,5.40116,5.24862,5.22451,5.21919,5.19524,5.1686,5.13567,5.02067,4.9828,4.97706,4.95008,4.9192,4.86633,4.7648,4.65656,4.63676,4.63523,4.51607,4.488000000000001,4.456800000000001,4.4487,4.43999,4.4325,4.371050000000001,4.28981,4.25235,4.23635,4.22906,4.151,3.84043,3.79644,3.78256,3.75612,3.73916,3.73583,3.73241,3.69826,3.66687,3.57388,3.5644,3.55272,3.46976,3.45334,3.42531,3.35798,3.30567,3.24248,3.21638,3.19717,3.12061,3.11582,3.01569,3.01225,2.99669,2.9941,2.96458,2.93475,2.92924,2.9098,2.90062,2.86378,2.85676,2.84658,2.84243,2.82348,2.82087,2.81553,2.80825,2.79113,2.76511,2.75117,2.7404,2.7184,2.70341,2.68056,2.65168,2.65032,2.64189,2.63955,2.63171,2.61762,2.55238,2.53478,2.46105,2.45488,2.4514,2.41988,2.4183,2.40277,2.39601,2.36709,2.36659,2.35892,2.34524,2.28355,2.27787,2.24991,2.21581,2.16974,2.15506,2.14366,2.12133,2.11936,2.06685,2.06474,2.016,1.97324,1.96998,1.96947,1.95784,1.94394,1.91664,1.9099,1.88668,1.85367,1.77115,1.72658,1.72385,1.68684,1.66953,1.66547,1.65341,1.61764,1.58286,1.57811,1.57471,1.55276,1.52957,1.51547,1.51302,1.45222,1.40843,1.39753,1.39525,1.38885,1.38709,1.32743,1.32717,1.32172,1.30096,1.2832,1.2814,1.27057,1.19882,1.18308,1.18048,1.17103,1.15998,1.11132,1.11031,1.05097,1.02858,1.01946,1.01895,0.99689,0.94735,0.90989,0.88899,0.88649,0.8638,0.85385,0.84522,0.844,0.81793,0.79908,0.79242,0.77669,0.73204,0.73164,0.70233,0.69299,0.69253,0.68714,0.68546,0.67234,0.67076,0.63576,0.63186,0.62507,0.61985,0.61477,0.61207,0.60081,0.59347,0.58731,0.57936,0.56498,0.56433,0.55365,0.52679,0.52201,0.51818,0.5108,0.50656,0.47985,0.47337,0.43437,0.42578,0.41856,0.41752,0.40257,0.39355,0.38244,0.36869,0.34674,0.34472,0.33469,0.31151,0.2898,0.25639,0.22057,0.21046,0.20344,0.2005,0.1834,0.17207,0.16483,0.15409,0.15288,0.14754,0.14746,0.14152,0.14108,0.13784,0.121,0.11914,0.11447,0.10848,0.10007,0.09908,0.09255,0.09046,0.08494,0.07114,0.07074,0.06669,0.05581,0.05194,0.05168,0.04946,0.04854,0.04746,0.04698,0.03556,0.03371,0.02781,0.02736,0.02599,0.02468,0.02261,0.02009,0.01916,0.01738,0.01733,0.01675,0.01477,0.01168,0.01149,0.01147,0.01139,0.01131,0.01116,0.00961,0.00931,0.00928,0.00883,0.00756,0.00718,0.00714,0.00556,0.00527,0.00477,0.00463,0.00433,0.00353,0.00336,0.00328,0.00284,0.00252,0.00221,0.00191,0.00186,0.00177,0.00156,0.00131,0.00101,0.00057,0.00028,0.00025,0.0002,0.00019,0.00019,0.00009,0.00003,0.00002,0.00002],"total":15194},{"name":"足立区","values":[256.64074,253.91971,247.7449,247.12828,246.5077,242.18262,221.80153,212.78588,200.81374,198.63022,196.62771,187.81659,186.65801,186.5899,184.12271,184.08027,180.49327,178.54889,178.0868,177.31273,177.13476,174.84201,169.94121,169.08877,166.19487,166.02952,165.60313,157.86456,156.94043,156.88796,156.40449,150.64323,147.00673,146.33021,134.55289,132.52823,131.00723,130.77106,130.36056,128.80612,123.86925,122.35289,121.13712,111.18779,110.04234,109.03455,88.54281,84.89562,84.02335,82.53657,82.31135,81.53443,80.61322,80.45712,76.30588,74.44032,72.58096,66.80789,61.29085,59.81891,59.22829,58.81571,58.45156,58.05693,56.22151,55.94762,54.44755,53.66115,52.51864,51.64977,49.3728,45.35392,45.23544,44.45962,44.34164,43.92229,43.34813,41.57211,41.02764,39.4237,38.86155,38.26198,37.42754,36.31667,35.87758,34.72518,33.54195,31.97528,31.95312,31.90425,31.89625,31.12558,30.55293,29.85474,29.29444,28.13636,27.88358,27.86073,27.78381,27.27776,27.26449,26.98077,26.63452,26.44425,26.13418,25.13624,24.59541,24.42047,23.7873,23.34247,23.18297,23.13576,22.86973,22.75284,22.45627,22.34997,22.20482,21.87077,21.26236,21.07405,20.92249,20.44041,20.22606,19.81568,19.72414,19.63947,19.55454,19.50572,19.46309,19.29439,19.12809,19.12103,19.00011,18.3184,18.10025,18.08774,17.87393,17.6397,17.58355,17.43341,16.29027,16.19295,16.17955,16.10138,16.00595,15.90898,15.77894,15.65829,15.00764,14.95973,14.89305,14.73487,14.70451,14.61818,14.50592,14.43892,14.26216,14.23689,14.09989,13.82117,13.62147,13.51517,13.4891,13.18486,13.17979,12.91883,12.8018,12.71848,12.44207,12.36856,12.26581,12.20912,12.18864,12.10276,12.06772,11.93819,11.76662,11.71735,11.69725,11.66557,11.59584,11.43683,11.41144,11.16382,11.15951,10.67651,10.56835,10.45173,10.35422,10.26815,10.13151,10.124,10.0667,9.94538,9.59729,9.54808,9.49744,9.36058,9.14788,9.1194,9.03653,8.9175,8.9057,8.88091,8.779170000000002,8.74708,8.732530000000002,8.68702,8.679600000000002,8.63557,8.60623,8.56697,8.50094,8.41014,8.3766,8.1752,8.10624,8.06654,8.065860000000002,8.05322,7.95637,7.79129,7.71888,7.6778,7.66792,7.61757,7.55717,7.43798,7.40032,7.33258,7.27081,7.19214,7.13228,7.09418,7.05154,7.00059,6.96909,6.95716,6.90563,6.85844,6.80902,6.79857,6.74237,6.74005,6.70771,6.66026,6.59537,6.57995,6.57761,6.39173,6.24327,6.1657,6.15796,6.15656,6.06779,6.05994,5.90508,5.88319,5.7653,5.75678,5.73298,5.71986,5.66955,5.65788,5.61158,5.57128,5.51822,5.4287,5.37342,5.3549,5.33261,5.19155,5.15718,5.12983,5.12282,5.12269,5.01735,4.99574,4.97251,4.96848,4.95812,4.94737,4.93659,4.92956,4.92251,4.89766,4.86898,4.86476,4.86054,4.85472,4.82754,4.81215,4.78901,4.75351,4.69765,4.66743,4.61107,4.60826,4.57935,4.54246,4.51611,4.486220000000001,4.45218,4.4268,4.39073,4.38317,4.29327,4.28907,4.24032,4.213440000000001,4.17321,4.109670000000001,4.09014,4.059020000000001,4.02924,4.00822,3.97004,3.9288,3.92257,3.90875,3.85849,3.84286,3.83012,3.80905,3.77207,3.76257,3.74005,3.73794,3.70867,3.70129,3.67227,3.62857,3.62747,3.60505,3.60406,3.57708,3.52618,3.49261,3.48917,3.4622,3.43224,3.35174,3.33971,3.32527,3.32335,3.32128,3.31336,3.30703,3.27648,3.27531,3.25463,3.24103,3.22443,3.21241,3.17704,3.16596,3.1618,3.13979,3.13632,3.13573,3.12089,3.11812,3.08733,3.05292,3.04827,3.03921,3.03916,3.0382,3.0343,2.97707,2.94409,2.89645,2.86709,2.8548,2.85209,2.82212,2.76216,2.75278,2.73007,2.71379,2.68661,2.68152,2.65857,2.65472,2.63529,2.62629,2.59788,2.57769,2.56767,2.56196,2.56184,2.54467,2.53096,2.44718,2.43313,2.42687,2.41958,2.40151,2.39991,2.36839,2.344,2.34052,2.31626,2.3095,2.25601,2.18819,2.18741,2.18381,2.17677,2.15193,2.15079,2.14856,2.13843,2.1343,2.12737,2.11091,2.10304,2.09287,2.09016,2.08535,2.08078,2.08005,2.05697,2.04532,2.03511,2.02714,2.01584,2.01307,1.99656,1.98687,1.97952,1.96969,1.96117,1.95156,1.94483,1.92015,1.91405,1.89823,1.88241,1.8821,1.86802,1.853,1.84892,1.83314,1.796,1.78948,1.78629,1.77025,1.75052,1.74452,1.72395,1.72006,1.69786,1.69564,1.69465,1.68969,1.67356,1.65239,1.65048,1.64619,1.63033,1.62976,1.62341,1.59496,1.59417,1.59039,1.58162,1.56346,1.56074,1.55243,1.54265,1.54225,1.54173,1.53778,1.52804,1.52742,1.51269,1.50993,1.50083,1.4847,1.47397,1.46813,1.46786,1.46761,1.46677,1.46319,1.46311,1.44457,1.43904,1.43706,1.43683,1.42005,1.41746,1.41204,1.37114,1.36597,1.36471,1.36095,1.35976,1.3596,1.35787,1.35628,1.3412,1.3309,1.31978,1.29214,1.29061,1.28124,1.27547,1.2718,1.27116,1.25075,1.25022,1.2356,1.20627,1.19844,1.19392,1.16772,1.16657,1.16146,1.16139,1.13873,1.13708,1.13226,1.10931,1.10665,1.10482,1.0794,1.07934,1.07678,1.07163,1.06761,1.06286,1.06172,1.06063,1.05035,1.04787,1.04055,1.02811,1.01912,1.01691,1.00559,1.00256,0.99261,0.99123,0.96848,0.96581,0.96028,0.95835,0.95002,0.94925,0.94844,0.94767,0.94571,0.91322,0.91026,0.90474,0.8915,0.86764,0.85478,0.84809,0.84494,0.83959,0.83364,0.83175,0.81524,0.81377,0.81211,0.80628,0.80457,0.80213,0.79181,0.78644,0.78629,0.77834,0.77786,0.77507,0.77386,0.76918,0.74107,0.72724,0.71046,0.69667,0.69569,0.69353,0.68287,0.66632,0.66034,0.65577,0.64544,0.6402,0.63326,0.63211,0.62712,0.62688,0.61825,0.61807,0.61779,0.61581,0.61211,0.60924,0.60894,0.60819,0.6045,0.60134,0.58295,0.57695,0.57133,0.57073,0.56739,0.56452,0.55438,0.54294,0.54168,0.53858,0.53449,0.53422,0.52838,0.5274,0.52701,0.52306,0.52191,0.51696,0.51678,0.51445,0.50676,0.50283,0.49524,0.4919,0.48796,0.48685,0.4867,0.48468,0.47925,0.4665,0.46588,0.45454,0.45343,0.44787,0.44677,0.44529,0.43118,0.427,0.40554,0.40342,0.39871,0.39871,0.39461,0.39386,0.3936,0.39358,0.38859,0.38635,0.3811,0.36871,0.36704,0.3637,0.36342,0.35977,0.35958,0.35341,0.34991,0.34533,0.33954,0.33879,0.33747,0.33715,0.33224,0.32572,0.32513,0.32087,0.32001,0.31282,0.30429,0.29996,0.29885,0.29676,0.28797,0.2859,0.26666,0.26568,0.25779,0.25678,0.25315,0.2483,0.24486,0.24192,0.24112,0.24085,0.23367,0.22911,0.229,0.22783,0.21836,0.2181,0.21795,0.21248,0.20742,0.20666,0.20578,0.20452,0.20103,0.19712,0.18755,0.18551,0.18299,0.17693,0.17576,0.17543,0.17414,0.17181,0.16757,0.16744,0.16535,0.16514,0.16205,0.15291,0.13944,0.13823,0.13397,0.13207,0.13163,0.13028,0.12952,0.12952,0.11912,0.11682,0.11325,0.11175,0.11122,0.10975,0.10876,0.10693,0.10422,0.09815,0.09591,0.09544,0.09398,0.0905,0.08959,0.08831,0.0882,0.08733,0.08655,0.08543,0.0843,0.08341,0.08328,0.08157,0.08123,0.07993,0.07944,0.0777,0.07422,0.07137,0.07102,0.06997,0.0681,0.06561,0.06537,0.0641,0.06364,0.06222,0.06014,0.05999,0.0581,0.05465,0.05211,0.05123,0.05039,0.04895,0.04664,0.04643,0.04424,0.0432,0.03923,0.03775,0.03451,0.03191,0.03164,0.02912,0.02531,0.02506,0.02249,0.02243,0.02214,0.02028,0.01933,0.01907,0.01811,0.01745,0.01727,0.01552,0.01539,0.01452,0.01424,0.01378,0.01331,0.01102,0.00982,0.00824,0.00808,0.008,0.0077,0.0062,0.00384,0.00365,0.00342,0.00339,0.00289,0.00286,0.00256,0.00241,0.00231,0.00186,0.00171,0.0017,0.00164,0.00108,0.00059],"total":13546},{"name":"杉並区","values":[38.65128,36.75194,36.04583,35.08407,34.97894,33.30036,33.29108,32.9736,32.013,31.91501,31.76116,31.38066,30.76936,30.65699,30.63188,30.56662,30.47525,30.45036,30.15509,29.93216,29.84576,29.82382,29.42302,29.10637,29.07341,29.01168,28.64295,28.6425,28.62378,28.59239,28.42065,28.22831,28.17366,27.86694,27.85644,27.71591,27.66296,27.64891,27.55064,27.39474,27.3345,27.08403,26.70199,26.60975,26.15576,26.04649,25.93616,25.74727,25.74353,25.65909,25.49631,25.33295,25.30691,25.29087,25.08137,25.03256,24.84208,24.8243,24.82223,24.8143,24.81252,24.80233,24.62969,24.38934,24.18535,24.13988,24.06431,23.94457,23.92283,23.90154,23.89998,23.79242,23.7903,23.77848,23.76811,23.75815,23.71219,23.7049,23.6922,23.67475,23.67133,23.54313,23.54286,23.51237,23.46764,23.42106,23.318,23.27063,23.20101,23.08244,23.07325,23.02103,23.01153,22.91242,22.87505,22.85215,22.82841,22.76434,22.68106,22.66511,22.46409,22.35766,22.35377,22.33263,22.27332,22.24963,22.2463,22.21968,22.15391,22.10638,22.08972,22.05321,22.0164,21.85693,21.83153,21.72834,21.66523,21.63686,21.40543,21.38326,21.35335,21.35236,21.29657,21.24789,21.17057,21.13969,21.11649,21.08801,21.00887,21.00531,20.98075,20.95412,20.91068,20.72315,20.68948,20.62516,20.5315,20.41568,20.29267,20.25453,20.12546,20.08695,20.06497,20.04487,20.02271,20.002,20.0016,19.92886,19.84089,19.75953,19.68329,19.67232,19.62564,19.6202,19.57601,19.55078,19.52602,19.48956,19.48893,19.47396,19.46901,19.41516,19.35955,19.34058,19.32515,19.27887,19.25914,19.19019,19.15425,19.11171,18.9846,18.97737,18.97127,18.80964,18.78811,18.75957,18.73806,18.72816,18.57139,18.38525,18.36897,18.26366,18.198,18.18851,18.18373,18.08793,18.00669,17.98168,17.95704,17.95202,17.87989,17.87827,17.85957,17.67128,17.55696,17.53365,17.49069,17.48486,17.4433,17.43479,17.31294,17.27877,17.25773,17.11716,16.94557,16.90374,16.87162,16.76778,16.67905,16.61591,16.54002,16.49274,16.46655,16.43709,16.37665,16.29733,16.27521,16.13319,16.0673,15.99289,15.95514,15.8946,15.8237,15.7948,15.73784,15.61994,15.59036,15.58325,15.57706,15.56778,15.5238,15.51146,15.45956,15.44687,15.44215,15.31683,15.27985,15.21851,15.18415,15.17761,15.14691,15.14248,15.06799,15.06756,14.99421,14.91919,14.86491,14.71528,14.70651,14.69821,14.60674,14.51332,14.46168,14.41972,14.41073,14.40084,14.39025,14.35801,14.33873,14.31093,14.27828,14.26911,14.24981,14.14205,14.08029,14.0022,13.96411,13.96102,13.91625,13.80359,13.7073,13.7053,13.7021,13.69938,13.6121,13.54461,13.51182,13.49599,13.48829,13.48422,13.44228,13.38795,13.3701,13.27331,13.24653,13.16944,13.11197,13.06135,12.98403,12.90695,12.88313,12.87338,12.86525,12.8294,12.82866,12.79039,12.74713,12.72863,12.69597,12.63518,12.56698,12.55978,12.5169,12.48446,12.38052,12.32608,12.32542,12.31398,12.2987,12.22137,12.14245,12.13407,12.04904,11.96046,11.92145,11.90341,11.9012,11.83524,11.80315,11.78258,11.77167,11.76527,11.7474,11.6695,11.66688,11.60013,11.46028,11.42527,11.40594,11.29612,11.25956,10.9101,10.90494,10.89828,10.84814,10.80961,10.78525,10.74633,10.68645,10.67262,10.66028,10.64345,10.63972,10.58606,10.57451,10.55714,10.54927,10.48938,10.45863,10.45295,10.43027,10.37765,10.32713,10.31312,10.2046,10.17595,10.12573,10.06684,9.94899,9.93226,9.92475,9.9213,9.861,9.79431,9.76679,9.73277,9.70781,9.68808,9.65346,9.57526,9.57128,9.51326,9.43969,9.36482,9.28828,9.25751,9.24588,9.23831,9.22393,9.16903,9.000870000000003,8.9046,8.88856,8.85409,8.85191,8.84904,8.81322,8.7828,8.760730000000002,8.717750000000002,8.68924,8.68196,8.67001,8.6482,8.64085,8.61051,8.58896,8.54427,8.53737,8.53559,8.50614,8.4752,8.41504,8.35764,8.33628,8.28736,8.255800000000002,8.25335,8.23368,8.22134,8.217040000000003,8.15005,8.12515,8.10351,8.066940000000002,8.053850000000002,7.94453,7.91565,7.88855,7.84573,7.70197,7.69262,7.6717,7.54623,7.39839,7.36368,7.3612,7.30015,7.25788,7.22689,7.20377,7.1671,7.16397,7.13744,7.12079,7.07238,7.03172,6.99234,6.87843,6.84893,6.82954,6.80745,6.79063,6.78255,6.77021,6.74398,6.63098,6.62007,6.61242,6.5989,6.57628,6.53923,6.48636,6.466,6.37049,6.33793,6.3126,6.30002,6.26295,6.19792,6.14875,5.97453,5.82874,5.80941,5.80576,5.80042,5.79774,5.77934,5.75394,5.71485,5.63623,5.63294,5.55007,5.50058,5.31086,5.30835,5.2933,5.14706,5.0788,5.05573,5.03701,5.01259,4.88594,4.87938,4.86316,4.85132,4.74278,4.73242,4.64833,4.491170000000001,4.46822,4.39798,4.32859,4.19526,4.1225,4.043180000000001,3.97275,3.84222,3.62636,3.59641,3.58869,3.53318,3.46806,3.3632,2.84813,2.82951,2.78006,2.58341,2.39246,2.01448,1.9779,1.897,1.80739,1.53387,1.46473,0.85364,0.77942,0.72969],"total":7900},{"name":"品川区","values":[153.25235,105.41173,102.91907,102.17582,98.51678,98.24986,95.5256,94.71195,86.53125,85.23096,83.57397,83.16409,82.03599,76.75122,76.18428,76.12326,76.03171,75.66974,74.40669,72.44098,70.79046,69.80249,68.85754,68.76476,68.3619,68.19586,68.09806,67.01312,66.91147,66.01887,65.39789,64.686,63.23196,62.85455,62.47706,62.26503,60.08079,58.00289,57.98017,57.58726,57.37926,52.67859,52.28002,52.03562,51.3395,49.97961,49.94733,46.32681,45.98386,45.76991,45.31418,45.28546,43.96769,43.51296,43.15797,42.64977,41.70318,40.91279,40.33471,39.86888,39.82459,39.80598,39.45022,38.9671,38.63974,38.2802,37.6703,37.36659,36.30285,35.76146,35.66094,35.62918,35.47259,34.40693,33.91064,33.5819,33.48591,32.86486,32.60376,32.53986,31.04437,30.47793,30.35009,30.11985,29.48404,29.15753,29.04403,28.9924,28.74631,28.19878,27.9153,26.48662,25.45837,25.39615,25.30297,24.71267,24.64221,24.53444,24.28315,23.78561,23.28146,22.5133,22.33497,21.84326,21.68086,21.39146,21.23723,21.10162,21.07971,19.66443,19.57338,19.47213,19.3563,18.4983,18.34399,18.1939,18.13555,18.12949,17.85406,17.75487,17.70509,17.54696,17.0999,16.94125,16.48763,16.34924,16.19006,16.02539,15.61005,15.02966,14.9686,14.62354,14.58248,14.40712,14.23214,13.78366,13.6197,13.59151,13.56639,13.1138,13.01367,12.89592,12.88155,12.58536,11.80432,11.79823,11.32976,11.07412,10.87717,10.46478,10.32795,10.26328,9.91084,9.88776,9.54204,9.28644,9.14959,8.97805,8.5663,8.54161,8.52713,8.23746,7.99904,7.97277,7.93845,7.81185,7.66146,7.5826,7.45847,7.39836,7.39823,7.21707,6.78068,6.62155,6.57922,6.43982,6.35555,6.17061,5.96359,5.91441,5.89709,5.81286,5.79544,5.34481,5.31509,5.16524,4.93769,4.78085,4.74282,4.438500000000001,4.23336,4.22234,4.1413,4.075910000000001,4.06042,4.012260000000001,3.95271,3.92726,3.90758,3.80611,3.75277,3.68206,3.6566,3.65447,3.61314,3.33251,3.32398,3.27456,3.24837,3.11198,3.02406,3.02005,2.65322,2.63506,2.58442,2.53931,2.5053,2.44707,2.32247,2.08304,2.01755,2.00194,1.91621,1.74652,1.6895,1.66633,1.6541,1.62417,1.61696,1.59207,1.58082,1.55655,1.42876,1.42619,1.38091,1.32608,1.32604,1.32101,1.22661,1.21856,1.15815,1.13073,1.11,1.10999,1.03964,1.03196,0.98515,0.98034,0.89638,0.89307,0.87309,0.85376,0.82073,0.81077,0.78829,0.72181,0.71381,0.64952,0.63498,0.60741,0.6055,0.59892,0.59834,0.58378,0.53417,0.52953,0.52851,0.52837,0.512,0.49664,0.49242,0.46469,0.4465,0.44581,0.44129,0.4153,0.41407,0.40911,0.40729,0.40604,0.37804,0.34403,0.34398,0.34054,0.33448,0.32483,0.31434,0.28811,0.26898,0.26428,0.25164,0.21188,0.20409,0.20012,0.18761,0.1663,0.12911,0.11901,0.11403,0.10787,0.10763,0.09547,0.08888,0.08247,0.0824,0.08054,0.07483,0.07055,0.07018,0.06813,0.06176,0.0604,0.05692,0.05624,0.04175,0.03947,0.02737,0.0227,0.0226,0.01862,0.01355,0.01299,0.00864,0.00767,0.00698,0.00653,0.00633,0.00622,0.00522,0.00463,0.00461,0.00249,0.00228,0.00226,0.00186,0.0018,0.0014,0.00123,0.00102,0.001,0.00094,0.0008,0.00075,0.0007,0.00065,0.00045,0.00045,0.00027,0.00017,0.00013,0.0001,0.00009,0.00005],"total":6590},{"name":"葛飾区","values":[108.06722,76.63799,50.526,46.59566,43.45498,42.02418,41.96377,41.67898,37.39085,36.32458,35.71235,33.97954,33.89653,33.36147,32.75238,31.58226,30.57806,30.48804,29.12244,28.91095,28.61091,28.4259,28.32406,28.15604,27.51991,27.24227,26.80599,26.74019,26.50403,26.29184,26.27587,26.12351,26.07715,25.96848,25.74205,25.66271,25.65978,25.60384,25.54892,25.42908,25.28862,24.49993,24.44264,24.33936,24.3112,24.25562,24.13294,23.72273,23.66895,23.57789,23.48246,23.04442,22.87318,22.79503,22.49697,22.35577,22.15184,22.12132,21.87767,21.62222,21.38423,21.30758,21.25895,21.15789,21.1436,21.0511,20.92408,20.84441,20.80464,20.59836,20.35108,19.92575,19.72299,19.5701,19.53878,19.47336,19.25259,18.90107,18.88853,18.75235,18.4404,18.30335,18.25848,18.20176,18.00613,17.9766,17.86974,17.84436,17.79252,17.57103,17.51814,17.50983,17.48254,17.42162,17.35565,17.3292,17.29339,17.26433,17.20089,17.059,17.05297,17.05203,17.05037,16.8274,16.74312,16.71172,16.70703,16.47383,16.33136,16.32492,16.31562,16.14402,16.12763,16.09843,15.93498,15.86124,15.807,15.77793,15.68171,15.66237,15.64683,15.59066,15.51065,15.43023,15.37512,15.34265,15.29856,15.27854,15.18442,15.15115,15.11392,15.05011,15.01821,14.892,14.82679,14.81499,14.79561,14.69906,14.65089,14.63092,14.43885,14.40277,14.32852,14.29806,14.27873,14.22938,14.18827,14.14502,13.98454,13.91887,13.88172,13.87068,13.85764,13.76151,13.70996,13.68867,13.66865,13.61815,13.54868,13.42924,13.39984,13.39085,13.31722,13.13236,13.10684,13.0092,12.9921,12.99007,12.98267,12.91284,12.89644,12.7184,12.66953,12.56513,12.46157,12.44877,12.41414,12.39275,12.33501,12.30379,12.28816,12.26248,12.16216,12.14798,12.12919,12.07814,12.07081,12.06173,11.94458,11.92261,11.75878,11.67327,11.59468,11.58481,11.57357,11.47027,11.41301,11.35787,11.33738,11.3248,11.22435,11.19476,11.15062,11.13624,11.06245,10.99923,10.87729,10.82731,10.81886,10.81587,10.76392,10.76081,10.63512,10.63253,10.5761,10.54744,10.52522,10.51352,10.51232,10.49927,10.31658,10.31099,10.27034,10.21644,10.14182,10.10061,10.01982,9.89174,9.86688,9.82383,9.78056,9.59517,9.5092,9.47488,9.46935,9.45264,9.44025,9.40411,9.34317,9.3179,9.29205,9.24551,9.20731,9.20323,9.19399,9.14278,9.05505,8.73843,8.69657,8.69575,8.66765,8.63081,8.61153,8.57652,8.56881,8.521190000000002,8.41676,8.3184,8.25095,8.197950000000002,8.173550000000002,8.11656,8.09283,8.08489,8.05301,8.03856,7.83627,7.758,7.74875,7.7138,7.70362,7.63318,7.6165,7.60657,7.51299,7.42306,7.30659,7.25533,7.09875,7.03157,7.00846,7.00376,6.89524,6.89374,6.87583,6.80966,6.73352,6.69974,6.60861,6.60007,6.51899,6.50306,6.46771,6.44169,6.40318,6.38217,6.36085,6.3219,6.28674,6.26212,6.25716,6.22013,6.1368,6.07433,6.06158,6.01318,5.89836,5.75718,5.72327,5.69322,5.67091,5.64619,5.58531,5.58177,5.55961,5.55335,5.48607,5.4456,5.44398,5.41592,5.38791,5.26114,5.25105,5.20391,5.18561,5.18054,5.16418,5.15445,5.15205,5.10109,5.10027,5.08985,4.93675,4.92523,4.90998,4.7905,4.75313,4.74813,4.74044,4.73975,4.73323,4.73106,4.65205,4.55017,4.53886,4.53158,4.52121,4.41888,4.40798,4.39879,4.39091,4.30929,4.28735,4.24398,4.23328,4.23215,4.1672,4.165510000000001,4.157250000000001,4.137260000000001,4.11242,4.11132,4.05731,4.04035,4.03393,4.02942,3.99684,3.99608,3.95169,3.92359,3.91659,3.90141,3.88442,3.86757,3.841,3.8324,3.77099,3.75479,3.73,3.71762,3.7072,3.70098,3.61629,3.59304,3.5488,3.51924,3.49379,3.48437,3.47175,3.46956,3.44291,3.43689,3.41363,3.39264,3.37336,3.3511,3.32713,3.30862,3.26469,3.26347,3.26332,3.24523,3.22552,3.14451,3.11896,3.1182,3.10806,3.10355,3.08565,3.05921,3.04166,2.96653,2.92781,2.88272,2.87986,2.87434,2.85285,2.82926,2.81388,2.7756,2.71583,2.63674,2.61212,2.60743,2.59751,2.59499,2.59116,2.57219,2.54714,2.53148,2.50231,2.48696,2.42692,2.36182,2.21832,2.15937,2.1442,2.06663,2.05637,2.03929,1.98316,1.90265,1.84259,1.8008,1.77286,1.76789,1.70277,1.68255,1.51318,1.413,1.40532,1.40324,1.30565,1.30042,1.24849,1.22701,1.22067,1.2169,1.13768,1.08819,1.03754,1.00119,0.99266,0.97384,0.91395,0.83688,0.83392,0.7691,0.72783,0.68325,0.61699,0.57314,0.54732,0.50385,0.38068,0.36796,0.30009,0.29366,0.29125,0.26724,0.24888,0.2089,0.20101,0.15551,0.10974,0.07667,0.0661,0.06595,0.03825,0.03594,0.01092,0.00969,0.00689,0.00676,0.00429,0.00405,0.00317,0.00316,0.0029,0.00262,0.00203,0.00069,0.00067,0.00047,0.00017,0.00014,0.00011,0.00006,0.00005],"total":5373},{"name":"目黒区","values":[125.3903,105.81415,100.68113,98.77495,97.63795,95.72342,95.05644,86.31553,82.58974,80.40873,77.72061,76.53015,74.563,73.77355,72.83647,70.66982,68.27912,66.80466,66.06169,65.77545,61.32765,58.4433,57.54798,55.83781,55.60193,47.32989,47.23593,46.35822,45.88857,45.02995,44.82896,44.64739,43.50624,40.16696,39.46661,38.53579,34.75258,34.56002,34.50692,34.46714,32.23199,31.99562,31.57395,31.51726,31.29478,31.12456,30.55532,30.26244,30.2378,30.19732,28.90924,28.65803,28.51471,28.05516,27.82182,27.6002,27.44511,27.35945,26.94107,26.69265,26.04209,25.83932,25.7194,25.229,24.89075,24.826,24.43641,24.35563,24.16947,24.09395,24.08553,23.18769,22.95019,22.27713,22.18032,22.11556,21.88257,21.69835,19.06357,18.47366,18.32689,17.09541,17.05222,16.88995,16.4262,16.05066,15.90543,15.5142,15.31685,15.18191,15.10955,14.90824,13.83552,13.56376,13.50274,13.11153,13.09258,12.9349,12.83456,12.66077,12.1538,11.7974,11.6581,11.6309,11.56879,11.53678,11.53041,10.76838,10.43229,10.3101,9.98768,9.88899,9.77539,9.73598,9.68381,9.63151,9.33903,9.18519,8.842320000000003,8.65795,8.48552,8.27592,8.2705,7.85662,7.75436,7.69013,7.41075,7.32177,7.18027,7.13393,7.02544,7.02313,6.75802,6.55613,6.2318,6.05065,5.98451,5.93829,5.93598,5.80145,5.74843,5.40824,5.36164,5.13676,5.09193,4.94596,4.92584,4.92209,4.92095,4.86278,4.80831,4.69569,4.66547,4.61444,4.54051,4.52957,4.5133,4.496800000000001,4.38779,4.23048,4.162340000000001,3.87287,3.4607,3.42987,3.2806,3.22321,3.12682,3.11436,3.1032,2.94825,2.83856,2.78624,2.69474,2.68745,2.60726,2.58768,2.47451,2.3586,2.32752,2.28171,2.15453,2.15228,2.10094,1.95978,1.87908,1.87016,1.79522,1.70406,1.5864,1.54414,1.52213,1.46277,1.43748,1.41295,1.35115,1.32085,1.19433,1.17795,1.17098,1.14963,1.14356,1.14194,1.10078,1.03972,0.95269,0.86694,0.86455,0.86066,0.83066,0.79229,0.77134,0.73804,0.73676,0.73599,0.7237,0.64602,0.6361,0.59182,0.58335,0.53442,0.33991,0.33617,0.32112,0.23458,0.15366,0.13343,0.13192,0.08325],"total":4426},{"name":"墨田区","values":[155.50716,146.10215,128.12686,126.01474,125.7988,116.44698,110.6458,97.25786,92.99452,87.66455,87.03163,83.49552,82.57758,78.64505,72.25579,71.51973,67.77156,65.77175,62.57838,52.66143,51.81718,50.38446,47.83365,46.7683,46.68915,46.3863,46.01651,45.99883,45.9891,45.8517,45.49877,44.4204,41.769,41.4841,41.18993,39.8152,39.64792,39.06817,38.75573,37.33898,36.86879,36.34377,35.52109,35.38159,34.47074,34.28163,32.32733,31.00681,30.39905,29.64456,29.02618,28.95611,27.20869,26.66554,25.72484,25.51644,25.42263,24.72725,24.65084,24.30117,23.89143,23.7498,22.77065,22.69699,22.15632,22.12635,21.93296,21.16773,20.13222,19.38956,19.26788,17.06513,16.90383,16.53376,16.06932,15.75035,15.67133,15.48945,14.95286,14.85678,14.69452,13.57899,13.57003,12.57748,12.3139,12.0416,11.01601,10.81838,10.17497,9.80873,9.70127,8.8691,8.82289,7.92266,7.87231,7.29927,7.07116,7.06948,7.02785,6.74356,6.51135,6.14511,5.60911,5.40171,5.16305,5.13865,4.85005,4.35869,4.150730000000001,4.11562,4.11522,3.95455,3.89276,3.77426,3.7064,3.60831,3.51677,3.16925,3.15397,3.10913,3.01443,2.88412,2.7519,2.7024,2.50254,2.48139,2.26536,2.19053,2.05514,2.01221,2.0066,1.86041,1.78763,1.764,1.65817,1.63015,1.58077,1.57467,1.52609,1.37172,1.36868,1.30688,1.27998,1.24292,1.21211,1.20037,1.12101,1.09462,1.06769,1.02473,1.01519,0.96356,0.9558,0.93505,0.93131,0.91995,0.87538,0.85393,0.8126,0.79504,0.79301,0.71243,0.69076,0.66656,0.63635,0.59726,0.58144,0.57616,0.5727,0.57083,0.53963,0.53693,0.53117,0.49755,0.4414,0.42913,0.41494,0.40772,0.40572,0.3733,0.36423,0.3399,0.33768,0.33046,0.32823,0.31494,0.30459,0.27672,0.23295,0.22573,0.13103,0.13083,0.12872,0.12721,0.10611,0.10309,0.10303,0.01784,0.01349,0.00822,0.00325,0.00062,0.00033],"total":4143},{"name":"練馬区","values":[31.3546,29.79338,29.0173,27.19452,27.1635,26.52632,26.25831,25.32063,23.51471,22.9504,20.90763,20.65972,20.08284,19.95962,19.42686,18.84909,17.82473,17.61192,16.7639,16.20355,15.72946,15.65261,15.17886,14.98452,14.82589,14.40673,14.25025,14.21715,13.8114,13.66439,13.66306,13.36799,13.34607,13.27958,13.27762,13.17891,12.98482,12.96515,12.82311,12.70298,12.69226,12.63674,12.60559,11.89402,11.87504,11.86629,11.84635,11.80369,11.71981,11.71474,11.61636,11.60748,11.59994,11.35475,11.33195,11.32817,11.0996,10.96668,10.90871,10.87016,10.86921,10.71905,10.6333,10.56975,10.48321,10.40324,10.3989,10.39844,10.33529,10.33297,10.22114,10.19463,10.15126,10.15066,10.05956,9.98159,9.86451,9.85732,9.76239,9.74391,9.72702,9.70722,9.69222,9.65119,9.59677,9.52466,9.51165,9.48934,9.4792,9.46845,9.44529,9.42323,9.42017,9.37436,9.30561,9.30455,9.18879,9.1415,9.04266,8.94333,8.91565,8.84759,8.76907,8.750030000000002,8.74879,8.73707,8.66902,8.53964,8.53654,8.48227,8.46863,8.427070000000002,8.42651,8.36333,8.30631,8.24587,8.17193,8.15607,8.129440000000002,8.12736,8.12011,8.08976,8.081250000000002,8.076320000000003,8.04847,8.02061,8.01685,7.99793,7.98976,7.94956,7.94165,7.8877,7.87782,7.84176,7.82426,7.82155,7.81742,7.81177,7.64375,7.56034,7.50052,7.49465,7.49114,7.45643,7.37247,7.33971,7.33675,7.33228,7.31675,7.2869,7.28464,7.28382,7.22862,7.22573,7.19094,7.16544,7.14643,7.04923,7.03866,7.01261,6.96297,6.92666,6.91821,6.87742,6.86331,6.82864,6.81342,6.81139,6.78638,6.77416,6.75725,6.73321,6.73032,6.69842,6.69772,6.69735,6.6841,6.67435,6.65361,6.64598,6.63125,6.61842,6.56966,6.55981,6.54257,6.54131,6.50096,6.488,6.48489,6.46725,6.46172,6.4556,6.4511,6.44746,6.42315,6.41314,6.40966,6.39742,6.39527,6.38956,6.38052,6.35709,6.33293,6.32355,6.30254,6.30251,6.3007,6.23773,6.20831,6.19562,6.17691,6.16418,6.15411,6.15094,6.14958,6.14705,6.14566,6.1391,6.13645,6.12061,6.11178,6.09593,6.08498,6.07829,6.04949,6.04291,6.02696,5.99658,5.99382,5.97002,5.94299,5.9238,5.9066,5.882,5.8628,5.82393,5.8214,5.80606,5.79979,5.79478,5.79268,5.77078,5.76933,5.76221,5.75167,5.74511,5.73732,5.71346,5.67792,5.65797,5.65292,5.64794,5.64483,5.61464,5.61279,5.60597,5.59338,5.57211,5.53226,5.51834,5.50911,5.50777,5.49845,5.49614,5.46644,5.46622,5.46108,5.45442,5.43685,5.4322,5.41746,5.39206,5.39021,5.37048,5.36641,5.34584,5.33738,5.31967,5.31198,5.30862,5.27719,5.27557,5.26649,5.26411,5.25748,5.24312,5.23237,5.22569,5.22073,5.19246,5.18707,5.18271,5.1801,5.16316,5.15304,5.1417,5.13481,5.13338,5.11981,5.11036,5.10165,5.09709,5.08821,5.07799,5.07314,5.06836,5.06035,5.05657,5.05478,5.04275,5.02529,5.01739,5.0068,5.0066,5.00154,5.00132,4.99768,4.98329,4.98147,4.97534,4.95579,4.95115,4.9467,4.93695,4.93543,4.90749,4.89167,4.89026,4.88131,4.8734,4.87164,4.85995,4.83746,4.83361,4.8286,4.81658,4.81303,4.80782,4.80223,4.8007,4.79491,4.78055,4.76568,4.7521,4.74338,4.73216,4.72674,4.72394,4.72059,4.71902,4.66775,4.65729,4.64709,4.64113,4.60402,4.5934,4.59095,4.54463,4.53476,4.53056,4.52401,4.52304,4.49744,4.49,4.48964,4.468860000000001,4.46831,4.45611,4.4445,4.43062,4.42647,4.41667,4.41446,4.40945,4.40855,4.39062,4.387400000000001,4.37498,4.3639,4.362390000000001,4.34183,4.337640000000001,4.31354,4.31164,4.306060000000001,4.304820000000001,4.30091,4.27945,4.26895,4.248840000000001,4.248770000000001,4.24782,4.20183,4.19688,4.17933,4.1677,4.14943,4.14884,4.14441,4.13764,4.12709,4.0762,4.0758,4.07062,4.0562,4.033260000000001,4.024250000000001,4.01913,4.01696,3.98861,3.98061,3.97661,3.95695,3.95445,3.92559,3.91697,3.91215,3.90304,3.89439,3.88389,3.88236,3.88209,3.85777,3.8533,3.84252,3.84234,3.83874,3.82687,3.82663,3.8164,3.79003,3.78428,3.76953,3.76358,3.75524,3.75112,3.74723,3.73454,3.7334,3.7159,3.71,3.70454,3.68105,3.65976,3.64794,3.64447,3.63867,3.60962,3.60508,3.60169,3.59817,3.57134,3.57067,3.55649,3.53267,3.52884,3.52785,3.4897,3.48086,3.48044,3.48021,3.45653,3.42415,3.41573,3.4155,3.40503,3.40321,3.39652,3.39308,3.38126,3.37493,3.37387,3.35774,3.35493,3.34763,3.34669,3.33311,3.32583,3.32582,3.31086,3.29523,3.28501,3.27071,3.24548,3.22988,3.22629,3.20478,3.20469,3.20339,3.17702,3.17576,3.1388,3.13635,3.13199,3.11281,3.11277,3.11132,3.10781,3.10346,3.08594,3.08501,3.08089,3.06208,3.05293,3.05088,3.04667,3.02872,3.02529,3.02332,2.98649,2.98564,2.98236,2.98225,2.98167,2.97815,2.96308,2.94485,2.94263,2.9413,2.93756,2.93631,2.93044,2.92657,2.92364,2.90863,2.90393,2.89431,2.89426,2.87418,2.86806,2.86686,2.86651,2.86381,2.86081,2.85711,2.83254,2.82196,2.81764,2.81481,2.79506,2.79318,2.77866,2.76087,2.76085,2.76033,2.75917,2.74815,2.74079,2.72182,2.71971,2.71823,2.71692,2.71348,2.7126,2.70792,2.69809,2.69159,2.68444,2.68002,2.67906,2.67617,2.67473,2.65554,2.64639,2.63684,2.63621,2.63156,2.62385,2.62309,2.62137,2.6064,2.6032,2.60283,2.60032,2.57373,2.56842,2.55464,2.54347,2.53529,2.53314,2.52319,2.52292,2.51576,2.50144,2.50142,2.48489,2.4765,2.47427,2.46822,2.45248,2.44948,2.44831,2.43407,2.42948,2.39336,2.38428,2.36467,2.3622,2.35456,2.32597,2.31309,2.30563,2.30422,2.30096,2.29971,2.29875,2.28287,2.26603,2.25669,2.24461,2.24132,2.22062,2.20703,2.19921,2.19037,2.1898,2.17153,2.16972,2.16916,2.16532,2.14212,2.13979,2.13193,2.12215,2.11286,2.0953,2.08119,2.05926,2.04571,2.03957,2.03881,2.03832,2.03333,2.01656,1.99595,1.96821,1.94412,1.94301,1.9406,1.93049,1.91137,1.90067,1.89425,1.89398,1.88545,1.88087,1.86863,1.84022,1.83101,1.76243,1.75291,1.752,1.72601,1.72469,1.72386,1.70257,1.702,1.6884,1.61795,1.61138,1.59779,1.5922,1.56591,1.53948,1.5343,1.52848,1.5068,1.49021,1.47195,1.43635,1.42496,1.40435,1.4043,1.40252,1.38202,1.37417,1.36519,1.36146,1.36025,1.30403,1.30146,1.2853,1.23194,1.22087,1.20589,1.19466,1.17295,1.15371,1.12078,1.11911,1.10155,1.09473,1.01964,1.00883,1.00624,0.9942,0.97737,0.97601,0.94868,0.94431,0.85382,0.84674,0.77648,0.75431,0.75188,0.74969,0.74825,0.7381,0.73402,0.69419,0.69259,0.67547,0.67341,0.65764,0.6416,0.64026,0.62769,0.62453,0.60986,0.5772,0.57461,0.56449,0.55205,0.54893,0.51734,0.48145,0.47846,0.45322,0.41409,0.40921,0.37041,0.34404,0.33335,0.32374,0.30449,0.26885,0.26631,0.25327,0.2349,0.21225,0.20806,0.17661,0.17107,0.15222,0.11388,0.11275,0.106,0.10469,0.09095,0.08733,0.0814,0.06954,0.05087,0.03809,0.0339,0.0339,0.01026,0.00001],"total":4005},{"name":"江東区","values":[207.28703,196.48173,182.03958,166.73997,158.6418,99.72293,91.40703,83.7066,78.18247,73.40849,70.57093,64.77373,62.31299,61.72299,60.40593,58.47981,53.17936,51.97096,50.91116,47.53897,45.04084,43.99481,40.44751,36.84547,36.54596,35.62444,35.25853,35.18103,33.97673,32.34752,30.95963,30.07975,27.21507,25.05606,24.67019,23.7673,22.553,22.05039,20.04083,19.70346,18.65889,16.16448,15.65515,15.38678,13.81525,13.57429,13.42539,13.12623,12.32374,11.99246,11.74848,11.55936,10.80589,10.62656,10.13,9.96301,9.05491,8.57666,8.32992,7.77563,7.74247,7.7184,7.33807,7.16966,7.15014,7.14052,6.6317,6.32993,5.81908,5.81831,5.75047,5.49785,5.38923,5.25648,5.19904,5.11295,5.10372,4.99334,4.65438,4.63031,4.46948,4.44911,4.42995,4.39597,4.18318,3.92524,3.91236,3.77763,3.66026,3.52754,3.50235,3.41274,3.36913,3.36077,3.29631,3.25154,3.11515,2.98515,2.94768,2.9135,2.84375,2.77896,2.5158,2.25129,2.20083,2.02454,1.91387,1.90027,1.8477,1.80739,1.75279,1.7171,1.70261,1.68971,1.68457,1.68278,1.66186,1.63862,1.60317,1.60061,1.53822,1.53297,1.51054,1.50473,1.46301,1.4592,1.38658,1.36471,1.33888,1.3232,1.31322,1.20967,1.20254,1.2003,1.19687,1.18964,1.15792,1.1447,1.14323,1.13477,1.12455,1.11664,1.11329,1.11025,1.09888,1.0143,0.98714,0.94984,0.94502,0.94191,0.93211,0.9118,0.90952,0.9019,0.87172,0.85916,0.81745,0.78175,0.77008,0.72753,0.7009,0.68465,0.66518,0.65434,0.6473,0.62497,0.61641,0.60835,0.60743,0.59931,0.58389,0.56695,0.56089,0.55903,0.55463,0.54633,0.54033,0.53438,0.52462,0.49453,0.48993,0.47083,0.45794,0.45156,0.44056,0.42766,0.41501,0.41132,0.40624,0.40286,0.38382,0.38074,0.37806,0.37585,0.37494,0.36301,0.34941,0.34707,0.33596,0.33187,0.32637,0.31941,0.3088,0.30565,0.29451,0.2931,0.28936,0.27693,0.2637,0.2558,0.25568,0.24787,0.2458,0.2384,0.23498,0.23441,0.23355,0.22888,0.2267,0.22604,0.22148,0.21559,0.20645,0.20362,0.19832,0.18792,0.18508,0.17878,0.17343,0.17228,0.17041,0.17,0.16899,0.16175,0.16041,0.15743,0.15665,0.15417,0.15254,0.15077,0.14893,0.14386,0.14326,0.14248,0.13629,0.13429,0.13383,0.13349,0.133,0.13181,0.13108,0.12904,0.11958,0.11885,0.11876,0.11867,0.11804,0.11651,0.11327,0.11317,0.11182,0.10989,0.10962,0.10806,0.10458,0.09869,0.09395,0.09201,0.09082,0.08685,0.08505,0.08475,0.08439,0.08398,0.08334,0.08027,0.08001,0.07926,0.07891,0.07763,0.07582,0.07493,0.07487,0.07254,0.07243,0.07232,0.07195,0.07112,0.06946,0.06884,0.0687,0.0683,0.06801,0.06793,0.06663,0.06649,0.066,0.06571,0.06554,0.06328,0.06313,0.06262,0.06147,0.06134,0.06121,0.06029,0.06,0.05852,0.05718,0.05627,0.0557,0.05494,0.05254,0.05235,0.05226,0.05146,0.04888,0.04779,0.04725,0.04696,0.04557,0.04524,0.04457,0.04411,0.04349,0.04344,0.04292,0.04286,0.04161,0.04137,0.04103,0.04087,0.04054,0.03789,0.03672,0.03631,0.03602,0.03437,0.03389,0.03373,0.03357,0.03261,0.03244,0.03244,0.03153,0.03128,0.03098,0.03098,0.0308,0.03027,0.02977,0.0288,0.02818,0.02794,0.02767,0.02736,0.02699,0.02694,0.02673,0.02655,0.02602,0.02572,0.02553,0.02534,0.02513,0.0251,0.02502,0.02471,0.02456,0.02453,0.02453,0.02367,0.02355,0.0234,0.02331,0.02298,0.02249,0.02245,0.02213,0.02125,0.0212,0.02105,0.02093,0.02047,0.02037,0.02031,0.02024,0.02021,0.01944,0.01921,0.01873,0.01851,0.01836,0.018,0.01781,0.01772,0.01738,0.01708,0.01645,0.01643,0.01615,0.01591,0.01583,0.01555,0.01526,0.01513,0.015,0.01467,0.01453,0.01436,0.01431,0.01396,0.01387,0.01369,0.01359,0.01354,0.01307,0.01257,0.01227,0.01219,0.0113,0.01123,0.01113,0.01085,0.01072,0.01037,0.01029,0.0102,0.00995,0.00995,0.00988,0.00953,0.00939,0.0091,0.00896,0.00891,0.00882,0.00878,0.00867,0.00867,0.00864,0.00809,0.00806,0.00804,0.00781,0.00777,0.00763,0.00758,0.00747,0.00744,0.00709,0.007,0.007,0.00693,0.00691,0.00686,0.00667,0.00665,0.00648,0.0061,0.00582,0.0058,0.00561,0.00553,0.00553,0.00539,0.00539,0.00537,0.00532,0.00529,0.00516,0.005,0.005,0.00495,0.00476,0.00444,0.00431,0.00426,0.00407,0.00403,0.00398,0.00388,0.00382,0.00365,0.00362,0.0036,0.00358,0.00355,0.00352,0.00338,0.00334,0.00333,0.0033,0.00329,0.00327,0.00326,0.00319,0.00318,0.00317,0.00316,0.00309,0.00285,0.00282,0.00277,0.00269,0.00268,0.00245,0.00242,0.00234,0.00232,0.00224,0.00218,0.00206,0.00199,0.00189,0.00188,0.00186,0.00183,0.00183,0.00178,0.00177,0.00173,0.0017,0.00169,0.00156,0.00154,0.00146,0.00143,0.00143,0.00141,0.00135,0.00129,0.00128,0.00126,0.00126,0.00124,0.00114,0.0011,0.00103,0.00102,0.00096,0.00092,0.0009,0.00089,0.00085,0.0008,0.0008,0.00075,0.00074,0.00073,0.00071,0.00071,0.00071,0.0007,0.0007,0.00067,0.00066,0.00064,0.00063,0.00062,0.00056,0.00055,0.00052,0.00052,0.0005,0.0005,0.00046,0.00035,0.00034,0.00032,0.00031,0.00028,0.00028,0.00027,0.00025,0.00025,0.00025,0.00024,0.00023,0.00023,0.00022,0.00022,0.0002,0.0002,0.00018,0.00015,0.00012,0.0001,0.00009,0.00009,0.00009,0.00008,0.00008,0.00007,0.00006,0.00006,0.00006,0.00004,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001],"total":3100},{"name":"荒川区","values":[71.82081,63.64013,52.5538,50.00041,48.88016,47.30094,45.15852,44.44659,44.28894,44.14387,43.82655,42.62381,41.92362,40.41607,39.04956,38.26607,37.89794,37.80211,37.39654,34.46617,34.25721,33.71036,33.51516,31.38808,30.99552,30.51934,28.50404,27.70596,26.92828,26.71863,26.31195,25.90004,25.74765,25.33618,25.1171,24.30964,22.52125,22.30162,21.06719,20.48488,18.97222,18.09681,17.97159,17.9579,17.76952,17.40628,16.78975,16.64981,15.92689,15.48071,15.47547,14.31668,13.95539,13.89922,12.58332,12.07131,11.83828,11.66673,11.217,10.87772,10.63521,10.42331,9.75163,9.41168,8.31991,8.24828,8.086220000000003,8.01709,7.83237,7.6505,7.42444,7.17729,6.79232,6.23084,5.89079,5.71457,5.14326,5.04018,4.71004,4.59816,4.45221,4.38051,4.34897,4.23979,4.23766,4.201170000000001,3.96699,3.77284,3.72919,3.61548,3.28878,3.26637,3.18517,3.16387,2.57942,2.55439,2.53625,2.08678,2.062,1.91873,1.84894,1.83829,1.70236,1.67565,1.49748,1.45451,0.98186,0.93751,0.87148,0.73647,0.60024,0.58673,0.56454,0.51663,0.48541,0.47811,0.4387,0.43068,0.41543,0.33975,0.3192,0.31567,0.29352,0.29297,0.27537,0.2571,0.25054,0.24731,0.22354,0.15987,0.11172,0.09591,0.08829,0.08205,0.06317,0.04796,0.04722,0.04208,0.03891,0.03452,0.02421,0.0231,0.0178,0.01221,0.01171,0.00847,0.00762,0.00395,0.00357,0.00236,0.0017,0.00146,0.00109,0.00096,0.00022],"total":1996},{"name":"中野区","values":[14.84078,12.07253,11.7442,10.72933,10.43039,9.61182,9.59891,9.31275,9.25115,9.11549,9.10957,9.0876,9.04406,8.961370000000002,8.84377,8.56241,7.83216,7.64464,7.64435,7.62907,7.5823,7.41718,7.40846,7.32301,7.27127,7.11638,7.10986,7.0907,7.07953,6.9812,6.97309,6.92649,6.82998,6.68166,6.6475,6.51633,6.44274,6.38272,6.33702,6.32095,6.31107,6.21384,6.2098,6.20903,6.19225,6.16898,6.10548,6.0951,6.04533,6.02359,5.99405,5.99142,5.98801,5.88302,5.86585,5.83663,5.73852,5.73,5.57966,5.56337,5.42919,5.42456,5.41758,5.40248,5.38904,5.37155,5.3357,5.31114,5.21643,5.21345,5.20711,5.16535,5.15074,5.06976,5.00108,4.98888,4.96757,4.95247,4.93189,4.87742,4.85845,4.8536,4.85287,4.84075,4.82806,4.80108,4.79754,4.73845,4.70057,4.63069,4.6229,4.56901,4.55075,4.53131,4.47102,4.45143,4.437890000000001,4.436930000000001,4.33877,4.32933,4.26655,4.25611,4.25041,4.21496,4.21115,4.21101,4.18152,4.155770000000001,4.13157,4.089870000000001,4.064390000000001,4.03716,4.00776,4.00443,4.00252,3.93265,3.8933,3.86941,3.84548,3.84265,3.77255,3.75679,3.67898,3.67264,3.66776,3.6637,3.61758,3.60277,3.60275,3.59191,3.58469,3.56633,3.55145,3.55056,3.50008,3.49699,3.45902,3.43081,3.41338,3.39307,3.34201,3.32771,3.28987,3.25311,3.24501,3.23773,3.18369,3.16785,3.15545,3.14387,3.09149,3.05236,3.02496,3.01239,2.9808,2.97453,2.96737,2.93727,2.93458,2.91999,2.89017,2.88163,2.87423,2.8637,2.86137,2.85945,2.85477,2.82598,2.7876,2.71548,2.69241,2.61805,2.60271,2.5822,2.50026,2.48276,2.44493,2.44484,2.42045,2.40308,2.38638,2.38276,2.37633,2.36045,2.35329,2.29469,2.29263,2.28414,2.27904,2.27095,2.22078,2.13794,2.1307,2.12742,2.1135,2.10125,2.0801,2.07526,2.06473,2.02718,1.95093,1.93674,1.92597,1.91326,1.89922,1.86163,1.82604,1.8067,1.79147,1.76906,1.73513,1.72578,1.70671,1.68898,1.68718,1.60343,1.57744,1.5716,1.55507,1.45612,1.45596,1.25108,1.23304,1.233,0.9413,0.85149,0.83912,0.69278,0.6815,0.66354,0.64435,0.64023,0.48231,0.32511,0.28077,0.13431],"total":983},{"name":"板橋区","values":[17.44625,16.02353,14.32143,14.12573,14.02988,13.49249,13.41028,12.80964,12.66056,12.21226,12.19155,11.99806,11.70316,11.0022,10.80987,10.55321,10.13471,10.12621,10.0954,10.09217,9.93072,9.4679,9.27334,9.20044,8.93153,8.92761,8.82597,8.78131,8.4461,8.158390000000002,8.13515,8.11667,8.1004,8.03632,7.65197,7.63691,7.60381,7.43039,7.38175,7.33947,7.25849,7.22947,7.22941,7.17294,7.15054,7.02864,6.98349,6.96568,6.85845,6.74178,6.59748,6.4393,5.99487,5.91248,5.901,5.83469,5.64762,5.64538,5.54334,5.40856,5.26434,5.20751,5.16026,5.14276,5.13138,4.9095,4.76844,4.7423,4.59801,4.54326,4.46207,4.361170000000001,4.351790000000001,4.2265,4.22316,4.087,4.07396,4.07182,4.06757,4.062350000000001,4.04456,4.00206,4.00015,3.95466,3.9518,3.88409,3.83463,3.80383,3.73822,3.69615,3.69204,3.53457,3.50652,3.46359,3.37276,3.28875,3.27641,3.21653,3.1625,3.15897,3.14496,3.11196,2.99896,2.99073,2.94538,2.92737,2.91752,2.90973,2.90092,2.86368,2.86312,2.85557,2.83968,2.77658,2.73951,2.67359,2.64418,2.62697,2.56751,2.54709,2.52686,2.50508,2.49164,2.41975,2.38927,2.34315,2.33802,2.31088,2.30109,2.28673,2.21583,2.19994,2.12142,2.11686,2.06504,2.04716,2.03518,2.01735,2.01465,2.00297,1.95953,1.95622,1.95068,1.8931,1.86873,1.84699,1.81685,1.80081,1.79357,1.76002,1.691,1.67351,1.61982,1.57075,1.48849,1.48543,1.47662,1.45141,1.45102,1.43917,1.41856,1.4144,1.3037,1.29209,1.26881,1.23902,1.2389,1.23875,1.20919,1.1944,1.19251,1.19142,1.16894,1.15855,1.15727,1.15218,1.10962,1.0898,1.07228,1.03248,0.98753,0.96774,0.96062,0.94721,0.93621,0.90646,0.88822,0.86003,0.84302,0.83831,0.80949,0.80753,0.79787,0.79347,0.79203,0.78628,0.77838,0.75725,0.7453,0.72922,0.72517,0.72218,0.71554,0.7121,0.70978,0.70521,0.70505,0.69926,0.69707,0.68795,0.67554,0.67293,0.65715,0.65453,0.65443,0.64738,0.63499,0.631,0.60677,0.60306,0.60027,0.58168,0.57531,0.57374,0.57119,0.54878,0.54561,0.54295,0.54102,0.53103,0.5299,0.52559,0.52302,0.52189,0.51836,0.51455,0.51312,0.50804,0.50076,0.49721,0.49348,0.48427,0.48273,0.48139,0.48078,0.46951,0.44729,0.44663,0.43635,0.43112,0.42952,0.41605,0.41408,0.41229,0.41045,0.40456,0.39688,0.39145,0.38918,0.388,0.38758,0.38698,0.3847,0.34414,0.3381,0.33367,0.32966,0.32427,0.32132,0.31507,0.31173,0.30972,0.30865,0.30329,0.29987,0.29243,0.29234,0.29223,0.29091,0.28987,0.28406,0.28281,0.28065,0.28014,0.27889,0.27399,0.26633,0.26101,0.25774,0.25595,0.24889,0.24857,0.24028,0.24015,0.24015,0.23819,0.23582,0.23301,0.23009,0.22331,0.21879,0.21808,0.21316,0.20464,0.19996,0.1996,0.19544,0.19443,0.19318,0.18886,0.18868,0.18841,0.18758,0.1871,0.1843,0.18054,0.17359,0.17356,0.17325,0.17129,0.16633,0.16192,0.15742,0.15669,0.15364,0.15222,0.15142,0.14803,0.14577,0.14397,0.14289,0.1423,0.14198,0.14008,0.13906,0.13858,0.13758,0.13626,0.13532,0.13462,0.12985,0.12858,0.12576,0.12547,0.12356,0.11928,0.11891,0.11802,0.11765,0.11602,0.11208,0.11045,0.10867,0.10769,0.10756,0.10607,0.10346,0.10122,0.09975,0.09643,0.09547,0.09537,0.09509,0.09461,0.09393,0.09104,0.08987,0.08965,0.08866,0.08768,0.08748,0.08665,0.08659,0.08507,0.08468,0.08367,0.08266,0.08187,0.08011,0.07878,0.07687,0.07329,0.07322,0.07116,0.07001,0.06789,0.06786,0.06584,0.06483,0.0639,0.06364,0.06124,0.05927,0.05893,0.05757,0.05546,0.05507,0.05506,0.05289,0.05113,0.05109,0.05094,0.04973,0.04954,0.04914,0.04876,0.04864,0.0477,0.04754,0.04687,0.04546,0.0452,0.04172,0.04023,0.04004,0.03951,0.0388,0.03788,0.03767,0.03733,0.03729,0.03656,0.03652,0.03535,0.03523,0.03485,0.03345,0.03279,0.03273,0.03218,0.03112,0.02927,0.02691,0.02688,0.02621,0.02497,0.02497,0.02478,0.02433,0.02426,0.02294,0.02252,0.02186,0.02178,0.02175,0.02087,0.02059,0.02043,0.02035,0.01949,0.01887,0.01878,0.01829,0.01732,0.01654,0.01649,0.01645,0.01549,0.01519,0.01487,0.01375,0.01263,0.01149,0.01048,0.00937,0.00876,0.00838,0.00785,0.00766,0.00692,0.0069,0.00686,0.00681,0.00582,0.00572,0.00558,0.00553,0.00501,0.0039,0.00297,0.00203,0.00177,0.00141,0.00121,0.00108,0.00069,0.00022,0.00002,0.00001],"total":934},{"name":"豊島区","values":[15.9213,15.36358,15.32963,14.93441,14.841,14.71754,14.26158,14.07292,13.94789,13.66444,13.46855,13.46799,13.19075,13.162,13.1544,12.88815,12.88621,12.86374,12.06894,11.96038,11.91068,11.86863,11.78723,11.77872,11.44932,10.84537,10.60869,10.47727,10.40346,10.25584,9.98196,9.96321,9.87126,9.76444,9.2818,9.24691,9.001580000000002,8.34915,8.12773,8.07911,7.94944,7.91264,7.74999,7.66401,7.45817,6.94085,6.79458,6.17917,5.27957,5.15071,4.56707,4.02198,3.89648,3.84476,3.76645,3.6196,3.53813,3.515,3.47171,3.38176,3.20694,2.9246,2.91404,2.89946,2.88134,2.86447,2.80704,2.76784,2.63834,2.63499,2.5876,2.56757,2.53649,2.52144,2.47672,2.43484,2.4323,2.42554,2.35248,2.24752,2.10177,2.08651,2.08559,2.07907,2.07177,2.06491,2.06207,2.0326,1.97472,1.89733,1.88876,1.87233,1.81193,1.77188,1.70835,1.61703,1.60622,1.57415,1.56326,1.54743,1.54104,1.53737,1.53558,1.48999,1.46179,1.46096,1.34805,1.34799,1.3282,1.28201,1.27643,1.25741,1.25198,1.22779,1.2152,1.21014,1.19446,1.18359,1.16906,1.15467,1.14901,1.13522,1.12309,1.12089,1.09967,1.09548,1.06924,1.06535,1.04615,1.01658,1.00866,0.99267,0.94059,0.90822,0.89636,0.89543,0.85819,0.83053,0.80659,0.788,0.78611,0.77786,0.76547,0.76083,0.73842,0.73637,0.72531,0.71451,0.71224,0.69367,0.69112,0.68722,0.6813,0.66657,0.66646,0.65622,0.64488,0.63373,0.61384,0.60665,0.58557,0.5588,0.54241,0.54224,0.53988,0.5135,0.50863,0.50316,0.44773,0.42664,0.41841,0.40603,0.39133,0.38916,0.38338,0.38194,0.3635,0.36239,0.36036,0.34928,0.34235,0.33794,0.3283,0.31581,0.29355,0.26177,0.22658,0.20959,0.20883,0.17868,0.14436,0.13394,0.13158,0.12721,0.12636,0.10127,0.06547,0.0505,0.04614],"total":745},{"name":"北区","values":[20.84001,19.69602,18.85042,18.65205,17.22409,14.72235,13.99927,13.74471,13.13137,12.57889,11.23364,10.64553,10.63042,10.61809,9.6231,9.05927,8.527810000000002,8.501390000000002,8.42531,8.36407,8.309340000000002,8.10342,7.95905,7.69202,7.24503,7.21877,6.88756,6.88545,6.77075,6.46663,6.37299,5.44744,5.25575,5.2353,5.12812,4.97019,4.95343,4.95087,4.81556,4.79936,4.77689,4.52284,4.50449,4.48178,4.26722,4.257030000000001,4.13768,3.89359,3.87969,3.76497,3.66807,3.65575,3.54256,3.53151,3.47925,3.39509,3.32062,3.28271,3.15585,3.15037,3.1435,3.06469,3.01493,2.98963,2.88963,2.76036,2.75044,2.62409,2.53727,2.32505,2.30335,2.23924,2.23069,2.18044,2.15573,1.92102,1.8459,1.78951,1.76536,1.76041,1.72666,1.70387,1.69502,1.65024,1.61241,1.57016,1.55297,1.54738,1.51589,1.50875,1.46278,1.40933,1.38196,1.32405,1.31772,1.27249,1.26627,1.25338,1.24333,1.21593,1.21258,1.19058,1.17288,1.07488,1.05526,1.04934,1.02251,1.01957,1.00351,0.99857,0.96363,0.95779,0.93198,0.92509,0.89583,0.88906,0.87198,0.86487,0.84485,0.84201,0.77679,0.7563,0.74136,0.70611,0.60181,0.58168,0.57848,0.57023,0.56193,0.55395,0.5459,0.54167,0.51343,0.51067,0.5012,0.47953,0.47504,0.46127,0.45026,0.44669,0.44401,0.44271,0.44025,0.43766,0.42072,0.41844,0.41336,0.411,0.40216,0.39974,0.39957,0.38099,0.37547,0.36319,0.35013,0.31799,0.31194,0.30849,0.30406,0.29778,0.29764,0.29557,0.28914,0.27807,0.27437,0.26409,0.25628,0.2415,0.24006,0.23595,0.21828,0.21747,0.21535,0.2135,0.20528,0.19547,0.19537,0.19152,0.1905,0.19038,0.18619,0.18545,0.17492,0.16518,0.15539,0.1519,0.14557,0.13211,0.132,0.13052,0.12503,0.12423,0.12324,0.12304,0.12035,0.11844,0.11675,0.1165,0.11353,0.10851,0.09781,0.09605,0.09444,0.09354,0.09142,0.08711,0.0865,0.08591,0.08408,0.08287,0.08211,0.08009,0.07503,0.07409,0.07381,0.06709,0.06647,0.06314,0.05337,0.05337,0.04706,0.04644,0.04579,0.04512,0.04493,0.04377,0.04093,0.03933,0.03809,0.03728,0.03656,0.03543,0.03469,0.03423,0.03291,0.0324,0.03212,0.03108,0.03026,0.03018,0.02897,0.02887,0.02859,0.0266,0.026,0.02586,0.0257,0.02553,0.02457,0.02279,0.02252,0.02136,0.02121,0.02067,0.02024,0.02019,0.01858,0.01758,0.01735,0.017,0.01679,0.01462,0.01319,0.01204,0.01201,0.01172,0.01167,0.01129,0.01104,0.00985,0.00974,0.00819,0.0078,0.0078,0.00752,0.00724,0.00702,0.00588,0.00566,0.00522,0.0036,0.00359,0.0035,0.00347,0.0033,0.00293,0.00252,0.00171,0.00116,0.00096,0.00044,0.0004,0.00021,0.00001],"total":570},{"name":"渋谷区","values":[13.18941,11.49263,8.58844,7.45468,4.77214,4.7317,4.64668,4.53411,4.52162,4.46531,3.95519,3.90035,3.88624,3.80611,3.65071,3.64891,3.45385,3.37781,3.31307,3.06861,2.99269,2.9507,2.90206,2.83955,2.81081,2.70078,2.64691,2.64064,2.6257,2.57514,2.5253,2.49009,2.47525,2.42179,2.4197,2.39078,2.3747,2.37095,2.35682,2.33683,2.3255,2.2354,2.18891,2.11738,2.10036,2.08571,2.04702,2.01712,1.988,1.98575,1.97729,1.95751,1.93531,1.9244,1.92159,1.91825,1.9175,1.8567,1.8479,1.82363,1.80271,1.76207,1.75591,1.69587,1.67134,1.67058,1.66091,1.65691,1.65609,1.64207,1.63504,1.61973,1.60273,1.5879,1.57698,1.56479,1.51464,1.49774,1.47547,1.43516,1.41949,1.38691,1.37238,1.35198,1.34357,1.34117,1.33795,1.33322,1.32967,1.32342,1.27358,1.24893,1.24138,1.22308,1.21829,1.20571,1.20434,1.2002,1.19704,1.19553,1.18702,1.16972,1.16641,1.1566,1.15204,1.13292,1.13058,1.12451,1.11194,1.10596,1.1028,1.09118,1.08973,1.08839,1.08631,1.08235,1.04372,1.02713,1.01621,1.01154,1.00908,1.00553,0.98187,0.96862,0.94321,0.94267,0.9382,0.92914,0.91943,0.90663,0.8938,0.88514,0.86236,0.86016,0.8585,0.84718,0.82709,0.8239,0.82057,0.81866,0.81225,0.80011,0.79853,0.79754,0.79296,0.77319,0.7536,0.74534,0.73904,0.7184,0.71132,0.71003,0.70942,0.70681,0.66229,0.64028,0.63802,0.63679,0.62546,0.61489,0.60964,0.6075,0.58769,0.58312,0.55699,0.5532,0.54339,0.54058,0.53653,0.53515,0.53392,0.5284,0.52805,0.528,0.50881,0.50738,0.50398,0.49991,0.49979,0.47274,0.46299,0.45884,0.4559,0.45022,0.42994,0.42973,0.4206,0.39335,0.36414,0.34137,0.34014,0.33835,0.33074,0.30537,0.29201,0.26991,0.23101,0.22603,0.19996,0.19703,0.18421,0.18241,0.17463,0.17068,0.15471,0.14303,0.12557,0.12401,0.10198,0.09914,0.08666,0.08011,0.0605,0.05862,0.04657,0.03898,0.02344,0.02247,0.0212,0.02096,0.01854,0.01072,0.01048,0.00671,0.00537,0.00224,0.00133,0.0006,0.0005,0.00013],"total":297},{"name":"台東区","values":[14.22594,11.87637,5.84461,5.39968,5.11599,4.150350000000001,4.11037,3.89655,3.79992,3.79672,3.78335,3.77804,3.60593,3.59927,3.35403,3.33223,3.14049,3.11857,3.07356,3.00421,2.88174,2.85234,2.84354,2.78885,2.75683,2.71171,2.59548,2.59211,2.582,2.58174,2.54811,2.31503,2.29961,2.21431,2.18787,2.13283,2.05261,2.01077,1.94784,1.7543,1.7306,1.7199,1.68288,1.61513,1.60902,1.49698,1.48852,1.48686,1.46049,1.46,1.43046,1.41731,1.40128,1.37092,1.33349,1.29851,1.27463,1.26747,1.14728,1.13764,1.13344,1.01578,0.96373,0.87523,0.78357,0.76951,0.75415,0.74607,0.73597,0.6979,0.68868,0.59748,0.58567,0.48232,0.47802,0.47307,0.4466,0.44409,0.36498,0.36025,0.35432,0.31568,0.29051,0.29046,0.28163,0.2775,0.25537,0.22262,0.21964,0.19164,0.18495,0.16979,0.16534,0.15692,0.14441,0.13837,0.13674,0.13319,0.13014,0.12694,0.1237,0.12343,0.11966,0.11671,0.11478,0.10896,0.10114,0.10017,0.08971,0.08511,0.08476,0.07945,0.07477,0.07085,0.06621,0.06513,0.06086,0.05923,0.05918,0.05831,0.05823,0.0565,0.05444,0.05394,0.04781,0.0473,0.04556,0.04503,0.04116,0.04073,0.03764,0.03368,0.03146,0.02984,0.02973,0.02893,0.02721,0.02639,0.01995,0.01954,0.01697,0.01686,0.01667,0.01542,0.01165,0.01148,0.01051,0.00833,0.00726,0.007,0.00459,0.00313,0.00176,0.00128,0.00065],"total":192},{"name":"文京区","values":[16.05674,12.94731,10.57107,10.2396,7.29224,3.95758,3.75767,2.86061,2.78216,2.56378,2.00219,1.94961,1.88755,1.8527,1.84578,1.84354,1.79849,1.6989,1.60351,1.56543,1.5449,1.47734,1.43021,1.41403,1.3574,1.26607,1.26333,1.23112,1.09688,0.98348,0.97252,0.94438,0.90023,0.87316,0.85516,0.83752,0.81708,0.75461,0.72107,0.71801,0.71718,0.60733,0.60596,0.58327,0.55035,0.50321,0.49452,0.49283,0.48691,0.44281,0.44122,0.43677,0.41432,0.4044,0.4001,0.39114,0.38917,0.38462,0.36624,0.36,0.35837,0.34474,0.34146,0.33825,0.33472,0.30758,0.30514,0.23959,0.2316,0.215,0.18728,0.18042,0.17764,0.17043,0.16172,0.16136,0.16,0.15077,0.14959,0.14912,0.13658,0.12893,0.1264,0.11872,0.11853,0.11055,0.09952,0.09714,0.08006,0.07792,0.07331,0.07249,0.07163,0.0712,0.06821,0.06323,0.06195,0.05847,0.05634,0.05243,0.04816,0.0476,0.04738,0.04698,0.04424,0.04114,0.03988,0.03937,0.0386,0.03541,0.03238,0.03097,0.02918,0.02697,0.02619,0.02538,0.0235,0.02316,0.0225,0.01934,0.0188,0.01871,0.01826,0.01811,0.01589,0.01574,0.01452,0.01382,0.01379,0.01309,0.01282,0.01186,0.01129,0.01118,0.01009,0.00998,0.00917,0.00888,0.00874,0.00851,0.00843,0.00787,0.0077,0.00737,0.00692,0.0066,0.00635,0.00568,0.00556,0.00551,0.00531,0.00523,0.00417,0.00414,0.0038,0.00317,0.00273,0.00261,0.00235,0.0022,0.00211,0.00205,0.00186,0.00158,0.00146,0.00143,0.00089,0.00088,0.00055,0.00049,0.00045,0.00025],"total":137},{"name":"新宿区","values":[2.3884,2.30082,2.25504,2.17663,2.02973,2.02601,2.02578,1.90062,1.89165,1.88684,1.77581,1.68307,1.60962,1.59893,1.53575,1.50069,1.47013,1.44072,1.3487,1.32404,1.30466,1.29294,1.28419,1.28054,1.2804,1.23325,1.21885,1.20642,1.18372,1.17527,1.08025,1.05539,1.0502,1.04742,1.02359,1.00734,0.97873,0.86382,0.86272,0.8622,0.8589,0.8487,0.8435,0.83428,0.81547,0.79065,0.74625,0.74292,0.74135,0.73706,0.71612,0.68595,0.67504,0.63979,0.63869,0.61927,0.61866,0.60589,0.5829,0.54075,0.5393,0.53141,0.5168,0.51351,0.50419,0.49905,0.49525,0.49388,0.47161,0.46871,0.4641,0.45901,0.43623,0.43384,0.43292,0.42988,0.3942,0.38564,0.38524,0.38366,0.37821,0.35609,0.35097,0.34033,0.32945,0.31668,0.31661,0.30834,0.29416,0.29376,0.28753,0.28414,0.27392,0.27279,0.27123,0.26529,0.2578,0.25754,0.2528,0.25208,0.24788,0.24522,0.24027,0.238,0.23754,0.23669,0.22709,0.22251,0.21741,0.20762,0.20729,0.20673,0.19493,0.19087,0.18906,0.18755,0.1848,0.183,0.17782,0.17093,0.16948,0.16716,0.16119,0.15652,0.14937,0.14529,0.14447,0.14103,0.13951,0.13361,0.13343,0.1329,0.13222,0.12931,0.12843,0.12019,0.11578,0.10898,0.1085,0.1079,0.10464,0.1004,0.09727,0.09579,0.09195,0.09148,0.08744,0.08674,0.08488,0.084,0.07745,0.0759,0.07352,0.07194,0.0717,0.06674,0.06659,0.06463,0.06405,0.06326,0.0607,0.05986,0.0561,0.04937,0.04912,0.04829,0.0465,0.04574,0.04525,0.04477,0.03887,0.03714,0.0371,0.03472,0.03293,0.0329,0.02951,0.02917,0.0276,0.0274,0.02711,0.02708,0.02644,0.02638,0.02595,0.02584,0.02494,0.0249,0.02476,0.02467,0.02316,0.02311,0.02293,0.02247,0.02167,0.02151,0.02098,0.01983,0.01964,0.0192,0.01894,0.01832,0.01832,0.01676,0.01499,0.01463,0.0141,0.01269,0.01245,0.01139,0.0099,0.00973,0.0095,0.00944,0.00877,0.00829,0.00793,0.00786,0.00772,0.00715,0.00705,0.00683,0.00664,0.00645,0.00613,0.0059,0.00548,0.00542,0.00527,0.00503,0.00502,0.00495,0.00485,0.00477,0.00473,0.0046,0.00456,0.00433,0.0043,0.00422,0.00414,0.00401,0.00379,0.00366,0.00364,0.00356,0.00346,0.00346,0.00341,0.0033,0.00322,0.00296,0.00275,0.00265,0.00258,0.00253,0.00239,0.00216,0.00216,0.00198,0.00188,0.00183,0.00174,0.00173,0.00168,0.00164,0.00157,0.00154,0.00154,0.00131,0.00117,0.00115,0.00113,0.00111,0.00104,0.00094,0.00093,0.00066,0.00049,0.00031,0.00027,0.00024,0.00006,0.00004],"total":86},{"name":"港区","values":[3.04773,1.85014,1.23759,1.07475,0.85196,0.68708,0.38477,0.34701,0.30991,0.29914,0.26208,0.23181,0.23079,0.21934,0.21813,0.21147,0.20401,0.19872,0.197,0.1956,0.19111,0.19034,0.18884,0.17821,0.1774,0.17458,0.17156,0.17114,0.16957,0.16736,0.1646,0.15868,0.1565,0.15018,0.1491,0.14903,0.14505,0.14063,0.1405,0.13898,0.13576,0.13527,0.1348,0.13429,0.13005,0.12923,0.12799,0.12771,0.12699,0.12677,0.1266,0.1266,0.12541,0.12521,0.12504,0.12247,0.12187,0.11981,0.11954,0.11823,0.11772,0.11696,0.11693,0.11654,0.11574,0.11551,0.1154,0.11435,0.11404,0.11305,0.11153,0.11063,0.11061,0.10994,0.10962,0.10962,0.10962,0.10925,0.10874,0.10851,0.10469,0.10337,0.102,0.10084,0.10067,0.10047,0.09821,0.09797,0.09756,0.09721,0.09679,0.0963,0.09563,0.09436,0.09416,0.09354,0.09288,0.09239,0.09224,0.09025,0.08995,0.08968,0.08842,0.08709,0.08657,0.0864,0.0849,0.08433,0.08375,0.08276,0.08112,0.07786,0.07782,0.07714,0.07373,0.07273,0.07263,0.07184,0.07177,0.07105,0.07085,0.07083,0.07016,0.06963,0.0694,0.06909,0.06819,0.06808,0.06757,0.06733,0.06673,0.06607,0.0657,0.06526,0.06288,0.06286,0.06279,0.06237,0.06168,0.06163,0.06051,0.06028,0.05811,0.05721,0.0571,0.05708,0.05683,0.05581,0.05539,0.0551,0.05404,0.05334,0.05322,0.05308,0.05287,0.05279,0.0525,0.05064,0.05037,0.0501,0.04937,0.04764,0.04757,0.04706,0.04693,0.04574,0.04527,0.04516,0.0451,0.04497,0.04465,0.04384,0.04184,0.04035,0.04027,0.04008,0.03973,0.03961,0.03838,0.03751,0.03708,0.03657,0.0359,0.03547,0.03512,0.03476,0.03421,0.03411,0.03397,0.03366,0.03318,0.03316,0.03283,0.03277,0.03265,0.03167,0.03161,0.03135,0.03129,0.03123,0.03081,0.03049,0.02977,0.02949,0.02946,0.02906,0.02798,0.0274,0.02709,0.02705,0.02694,0.0254,0.02445,0.02425,0.02407,0.0236,0.02322,0.02309,0.02286,0.02284,0.02279,0.02236,0.02235,0.02229,0.02163,0.02143,0.0213,0.02127,0.02123,0.02082,0.02039,0.02011,0.0196,0.01921,0.01908,0.01896,0.0189,0.01886,0.01884,0.01857,0.01855,0.01777,0.01741,0.0172,0.01688,0.01673,0.0165,0.01644,0.0158,0.01579,0.01539,0.0153,0.0152,0.01431,0.01388,0.01348,0.01311,0.01307,0.01282,0.01278,0.01264,0.01249,0.01235,0.01169,0.01164,0.01147,0.01144,0.01099,0.01053,0.0085,0.00844,0.00837,0.00778,0.00771,0.00756,0.00683,0.00682,0.00616,0.00576,0.00574,0.00569,0.00559,0.00557,0.00536,0.0053,0.00518,0.00518,0.00516,0.00504,0.00501,0.00495,0.00494,0.00489,0.00474,0.00465,0.00451,0.00427,0.00414,0.00407,0.00404,0.00389,0.00384,0.00378,0.00341,0.00341,0.00334,0.00303,0.00301,0.00284,0.0028,0.00266,0.00232,0.00213,0.00209,0.00203,0.00169,0.00155,0.00142,0.0013,0.00128,0.00108,0.00099,0.00089,0.00088,0.00088,0.00023,0.00006,0.00004],"total":18},{"name":"中央区","values":[4.6714,2.42023,2.02529,1.73193,1.62501,1.23919,1.08003,0.91935,0.87724,0.78922,0.76003,0.74781,0.7329,0.43511,0.42625,0.39206,0.36339,0.35663,0.35204,0.34937,0.3482,0.34776,0.34667,0.34553,0.33416,0.318,0.26504,0.24394,0.21009,0.20064,0.19338,0.1931,0.19195,0.18877,0.18589,0.18544,0.18497,0.1833,0.18231,0.18231,0.18199,0.18147,0.18087,0.17875,0.17763,0.17698,0.17096,0.16698,0.16651,0.16554,0.16466,0.16461,0.16457,0.14729,0.13755,0.1188,0.10775,0.10214,0.09901,0.07918,0.06724,0.05754,0.03801,0.03264,0.0261,0.02565,0.02524,0.02357,0.02307,0.02178,0.01976,0.01766,0.0159,0.01551,0.01347,0.01294,0.01258,0.01096,0.01087,0.0106,0.0104,0.01022,0.00996,0.00913,0.00887,0.00884,0.00861,0.00857,0.00815,0.00786,0.00754,0.00695,0.00682,0.0068,0.00667,0.00665,0.00663,0.00661,0.00657,0.00656,0.00634,0.00601,0.006,0.00592,0.00572,0.00566,0.0055,0.00528,0.00487,0.00474,0.00467,0.00462,0.00448,0.00419,0.00407,0.00389,0.00375,0.00367,0.00356,0.00352,0.00345,0.00326,0.00275,0.00262,0.00248,0.00234,0.00224,0.00223,0.00216,0.00208,0.00201,0.00195,0.0019,0.00163,0.00152,0.00149,0.00149,0.00147,0.00142,0.0012,0.00093,0.0009,0.00085,0.00081,0.00076,0.00063,0.00059,0.00041,0.00025,0.00007,0.00002,0.00001],"total":4},{"name":"奥多摩町","values":[0.04472,0.02981,0.0295,0.02387,0.02384,0.02344,0.01707,0.01671,0.01593,0.01474,0.01406,0.01186,0.01181,0.01166,0.01126,0.01015,0.0095,0.00947,0.00929,0.00921,0.00859,0.00857,0.00823,0.00819,0.00804,0.00788,0.00784,0.00782,0.00737,0.00733,0.00721,0.00684,0.0068,0.00601,0.00571,0.00568,0.00554,0.00517,0.00511,0.00511,0.00482,0.00466,0.00451,0.00448,0.00427,0.0041,0.00399,0.00398,0.00384,0.00367,0.00364,0.00354,0.00347,0.00329,0.00321,0.00319,0.00312,0.0031,0.00309,0.00296,0.00289,0.00282,0.00282,0.00279,0.00278,0.00273,0.00271,0.00267,0.00259,0.00259,0.00258,0.00257,0.00255,0.00254,0.00252,0.0025,0.00243,0.00235,0.00234,0.00233,0.00229,0.00229,0.00222,0.00221,0.00221,0.00217,0.00216,0.00214,0.00214,0.0021,0.00204,0.00204,0.00203,0.00203,0.00203,0.00199,0.00197,0.00183,0.00176,0.00172,0.00167,0.00164,0.00164,0.00155,0.00155,0.00153,0.00142,0.00132,0.00129,0.00129,0.00127,0.00124,0.00123,0.00122,0.0012,0.0012,0.00119,0.00119,0.00117,0.00115,0.00111,0.00108,0.00105,0.00103,0.001,0.00099,0.00097,0.00097,0.00094,0.00094,0.00094,0.00092,0.00092,0.00091,0.0009,0.0009,0.00085,0.00081,0.0008,0.0008,0.00079,0.00079,0.00078,0.00073,0.00071,0.00071,0.0007,0.0007,0.0007,0.00069,0.00067,0.00066,0.00066,0.00063,0.00062,0.0006,0.00057,0.00057,0.00057,0.00056,0.00056,0.00056,0.00056,0.00055,0.00055,0.00055,0.00054,0.00054,0.00054,0.00053,0.0005,0.00048,0.00047,0.00045,0.00045,0.00044,0.00044,0.00043,0.00042,0.00042,0.00042,0.00041,0.0004,0.0004,0.0004,0.0004,0.00039,0.00039,0.00038,0.00038,0.00038,0.00038,0.00036,0.00036,0.00036,0.00035,0.00035,0.00035,0.00034,0.00034,0.00033,0.00032,0.00031,0.00031,0.0003,0.0003,0.0003,0.0003,0.00029,0.00029,0.00029,0.00029,0.00027,0.00027,0.00027,0.00026,0.00026,0.00026,0.00025,0.00025,0.00025,0.00023,0.00022,0.00022,0.00022,0.00021,0.00021,0.0002,0.0002,0.0002,0.00019,0.00019,0.00019,0.00019,0.00018,0.00018,0.00017,0.00017,0.00017,0.00017,0.00016,0.00016,0.00016,0.00016,0.00015,0.00014,0.00014,0.00014,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00012,0.00012,0.00012,0.00011,0.0001,0.0001,0.0001,0.0001,0.0001,0.00009,0.00009,0.00009,0.00009,0.00009,0.00009,0.00009,0.00008,0.00008,0.00007,0.00007,0.00006,0.00006,0.00005,0.00005,0.00005,0.00005,0.00005,0.00005,0.00005,0.00005,0.00004,0.00004,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001],"total":0},{"name":"町田市","values":[9.26871,8.77733,8.07423,7.60433,7.12168,6.85877,6.73234,6.59219,6.33971,5.79027,5.75623,5.59896,5.31295,5.21389,5.20813,5.18256,5.12778,5.08657,5.02148,4.99364,4.92147,4.91083,4.9065,4.87583,4.78446,4.65756,4.48344,4.44827,4.39798,4.3651,4.30605,4.123630000000001,4.109530000000001,4.0535,4.033120000000001,3.91864,3.91469,3.86849,3.84195,3.83406,3.73196,3.61803,3.60197,3.59574,3.51781,3.51418,3.48406,3.45199,3.35487,3.34082,3.31966,3.30409,3.29939,3.23665,3.22895,3.20924,3.17788,3.13718,3.11262,3.10665,3.08233,3.0601,3.0303,2.99533,2.97743,2.97014,2.9575,2.95713,2.94563,2.93619,2.92374,2.91647,2.89785,2.87058,2.86577,2.83183,2.82092,2.79976,2.7834,2.76359,2.73202,2.72959,2.70671,2.70634,2.65694,2.63551,2.63115,2.60809,2.59275,2.58631,2.57494,2.56455,2.5591,2.50594,2.42914,2.42172,2.41469,2.40833,2.40419,2.37895,2.32375,2.32026,2.31497,2.30131,2.28534,2.27485,2.26952,2.26421,2.23182,2.21293,2.17407,2.13462,2.13172,2.12705,2.12134,2.09822,2.09587,2.09213,2.05867,2.0541,2.02706,2.02035,2.0151,2.0134,2.01005,2.00901,1.99714,1.99642,1.99014,1.9388,1.93387,1.9075,1.90679,1.90649,1.90186,1.89796,1.8943,1.89114,1.87636,1.86151,1.83242,1.81945,1.78364,1.77118,1.75248,1.74957,1.74908,1.74526,1.7411,1.73382,1.72791,1.70592,1.69698,1.6919,1.68149,1.66381,1.64631,1.62375,1.54749,1.53754,1.52221,1.5192,1.51772,1.50713,1.48687,1.48623,1.4837,1.48183,1.48151,1.47954,1.47279,1.47117,1.46415,1.46403,1.4578,1.4566,1.45291,1.44435,1.44095,1.42633,1.41412,1.40127,1.39613,1.3846,1.37629,1.37044,1.36198,1.35017,1.34729,1.33378,1.32691,1.32613,1.32451,1.32439,1.3212,1.32006,1.31249,1.30389,1.30334,1.26544,1.24874,1.2447,1.23989,1.22962,1.22607,1.2136,1.19429,1.19363,1.17963,1.17903,1.17844,1.1756,1.17359,1.17295,1.16887,1.16307,1.16027,1.15937,1.15899,1.15424,1.15259,1.14989,1.14899,1.1423,1.13798,1.12922,1.12729,1.1229,1.11021,1.09395,1.07611,1.06841,1.06716,1.06648,1.05162,1.04802,1.04546,1.02567,1.02237,1.01601,1.01001,0.99875,0.99477,0.98738,0.98562,0.98515,0.9804,0.96658,0.9578,0.95437,0.95302,0.95208,0.94918,0.94894,0.94362,0.94153,0.93779,0.93629,0.93349,0.93076,0.92103,0.91591,0.91507,0.91332,0.91146,0.91117,0.90978,0.90625,0.90585,0.90342,0.89858,0.89855,0.89813,0.89098,0.88929,0.88877,0.88415,0.87988,0.8784,0.87451,0.87446,0.87435,0.87262,0.8699,0.86727,0.85654,0.85474,0.85435,0.85299,0.84917,0.84859,0.84251,0.83742,0.82448,0.82245,0.81944,0.81943,0.81652,0.81562,0.81534,0.81368,0.8135,0.80628,0.80316,0.79947,0.79914,0.79771,0.79367,0.7927,0.78783,0.78771,0.7842,0.77997,0.77917,0.77633,0.77444,0.77255,0.77211,0.74659,0.74593,0.74589,0.7412,0.7359,0.73491,0.73453,0.73314,0.73039,0.72618,0.72574,0.71441,0.71214,0.70232,0.70018,0.70013,0.6975,0.69319,0.6917,0.68901,0.68162,0.68078,0.67792,0.67703,0.6757,0.66625,0.66612,0.666,0.65901,0.65706,0.65331,0.64811,0.64706,0.64548,0.63982,0.63894,0.6327,0.62454,0.6161,0.6148,0.61375,0.6124,0.61228,0.61124,0.61068,0.61052,0.60899,0.60853,0.60568,0.60355,0.60143,0.59781,0.5971,0.5969,0.59316,0.58967,0.58858,0.58431,0.58207,0.58024,0.57884,0.57759,0.57379,0.57112,0.57069,0.57057,0.56965,0.56764,0.56636,0.56341,0.56326,0.55617,0.55547,0.55535,0.55402,0.55058,0.54829,0.54346,0.54241,0.53968,0.53699,0.53323,0.53243,0.53075,0.52873,0.52735,0.52676,0.52538,0.52296,0.51887,0.51618,0.51605,0.51555,0.5146,0.51255,0.51237,0.51042,0.50863,0.50741,0.50691,0.50157,0.50129,0.50006,0.49998,0.49876,0.49181,0.49082,0.48885,0.48367,0.48163,0.47948,0.4791,0.4786,0.47656,0.47572,0.46995,0.46844,0.46654,0.46609,0.46574,0.46519,0.4644,0.4556,0.45323,0.45236,0.45057,0.44815,0.44799,0.44667,0.44516,0.44506,0.44135,0.43444,0.43384,0.43249,0.4314,0.43083,0.42907,0.42818,0.42634,0.42533,0.4226,0.41365,0.41018,0.40397,0.40177,0.40158,0.40081,0.40011,0.40009,0.39895,0.39636,0.39543,0.39499,0.39436,0.3938,0.38474,0.38195,0.38153,0.38046,0.37949,0.37876,0.37714,0.37705,0.37641,0.37103,0.3694,0.36871,0.36862,0.36742,0.36637,0.36373,0.36352,0.36108,0.36068,0.36038,0.3592,0.35672,0.35312,0.3502,0.35019,0.35009,0.34978,0.34852,0.34634,0.3423,0.341,0.34018,0.34006,0.33955,0.33797,0.33652,0.33538,0.33481,0.33296,0.32966,0.32914,0.32266,0.32218,0.32207,0.32131,0.31757,0.31723,0.31147,0.30986,0.30759,0.30534,0.30368,0.3036,0.30031,0.29962,0.2963,0.29394,0.29382,0.29287,0.29022,0.28847,0.28774,0.28559,0.28386,0.2834,0.2808,0.28073,0.27956,0.27679,0.27393,0.27378,0.27352,0.27316,0.27301,0.27287,0.27088,0.26762,0.26564,0.26478,0.26234,0.25976,0.25906,0.25893,0.2589,0.25786,0.25616,0.25541,0.25364,0.2534,0.25181,0.25062,0.24966,0.24902,0.24822,0.24506,0.24204,0.24185,0.24155,0.24127,0.23515,0.23461,0.23397,0.23212,0.23147,0.23092,0.23056,0.23047,0.23045,0.22984,0.22968,0.22793,0.2273,0.22708,0.2259,0.22584,0.22515,0.22414,0.22403,0.22118,0.2193,0.21883,0.21855,0.21821,0.21806,0.21795,0.21759,0.21484,0.21457,0.21299,0.21271,0.21251,0.21241,0.21002,0.20936,0.20912,0.20901,0.20782,0.20726,0.20635,0.20571,0.20536,0.20498,0.20356,0.20097,0.20072,0.1965,0.19323,0.19169,0.19125,0.19073,0.18978,0.1895,0.18807,0.18615,0.18519,0.18497,0.18148,0.18117,0.18079,0.18055,0.18038,0.18003,0.17995,0.17986,0.17937,0.1789,0.17764,0.17739,0.17703,0.17636,0.17607,0.176,0.17539,0.17316,0.17254,0.1722,0.17215,0.17184,0.17135,0.17122,0.17119,0.17075,0.17004,0.16996,0.16961,0.16832,0.16765,0.16669,0.16592,0.16516,0.16504,0.16309,0.16307,0.16298,0.16233,0.16067,0.15946,0.15826,0.15655,0.15584,0.15467,0.15409,0.15391,0.15265,0.15199,0.15134,0.15045,0.15014,0.14967,0.1494,0.14882,0.14861,0.14849,0.14683,0.14659,0.14644,0.14522,0.14478,0.14457,0.14429,0.14421,0.14305,0.1423,0.14215,0.14093,0.13954,0.1377,0.13457,0.13368,0.13329,0.13249,0.13225,0.13041,0.1297,0.12839,0.12779,0.12764,0.12762,0.12737,0.12521,0.12328,0.12282,0.12006,0.11992,0.11879,0.11844,0.11738,0.11619,0.11565,0.11387,0.11375,0.11374,0.11373,0.11114,0.11082,0.11047,0.11045,0.11031,0.1103,0.10857,0.1067,0.10558,0.10513,0.10492,0.1049,0.10408,0.10394,0.10388,0.10155,0.09771,0.09763,0.09751,0.09747,0.09673,0.09618,0.09459,0.09445,0.09284,0.09206,0.09033,0.0895,0.08834,0.08813,0.08533,0.08428,0.08425,0.08339,0.08254,0.08225,0.08144,0.08135,0.08124,0.08028,0.08018,0.07961,0.07935,0.07859,0.07848,0.07832,0.07771,0.07724,0.07681,0.07644,0.07616,0.07481,0.07431,0.0741,0.07406,0.07268,0.07003,0.06873,0.06853,0.06797,0.0671,0.06632,0.06577,0.06479,0.06475,0.06433,0.06427,0.06413,0.06396,0.06388,0.06331,0.06323,0.06147,0.06072,0.06003,0.05945,0.05897,0.05889,0.05805,0.05791,0.05769,0.05748,0.05688,0.05682,0.05613,0.05554,0.05529,0.05491,0.05484,0.05447,0.0538,0.05345,0.0534,0.05149,0.05123,0.05074,0.05063,0.05046,0.04882,0.04868,0.04815,0.04775,0.04722,0.04718,0.04718,0.04686,0.04668,0.04656,0.04605,0.04589,0.04571,0.04505,0.04468,0.04453,0.04411,0.04396,0.04385,0.04339,0.04327,0.04293,0.0428,0.04274,0.0426,0.04184,0.04181,0.04141,0.04131,0.04084,0.04071,0.04061,0.03941,0.03926,0.0392,0.03879,0.03811,0.03783,0.0378,0.03724,0.03719,0.03715,0.0367,0.03667,0.03639,0.03616,0.03571,0.03528,0.03511,0.03509,0.03467,0.0343,0.03421,0.03411,0.03386,0.03372,0.03359,0.03358,0.03313,0.03245,0.03244,0.03214,0.03197,0.03136,0.0307,0.03068,0.03057,0.03047,0.02992,0.02969,0.02967,0.02958,0.02933,0.02918,0.02854,0.028,0.02761,0.02753,0.02751,0.02713,0.02697,0.0268,0.02667,0.02641,0.02616,0.02581,0.02567,0.02521,0.02521,0.02504,0.02481,0.02453,0.02448,0.02439,0.02434,0.02434,0.02372,0.02371,0.02358,0.02316,0.02271,0.02262,0.02243,0.02175,0.02148,0.02133,0.02093,0.02064,0.02059,0.0204,0.01955,0.01942,0.01936,0.01919,0.01898,0.01895,0.0189,0.0189,0.0189,0.01835,0.01821,0.01803,0.01789,0.0178,0.01766,0.01766,0.01764,0.01763,0.0175,0.0169,0.01686,0.01667,0.0165,0.01635,0.0159,0.01587,0.01584,0.01572,0.01569,0.01533,0.01503,0.01459,0.01429,0.01424,0.01422,0.01416,0.01344,0.01327,0.01322,0.01313,0.01311,0.01277,0.01259,0.01192,0.01191,0.01156,0.01151,0.01141,0.01135,0.01133,0.01128,0.01116,0.01104,0.01056,0.01052,0.01001,0.00951,0.00932,0.00923,0.00915,0.00913,0.00905,0.00881,0.00877,0.00872,0.00871,0.00864,0.00854,0.00843,0.0084,0.00832,0.00822,0.00761,0.00749,0.00744,0.00716,0.00705,0.00703,0.00699,0.00692,0.00676,0.00674,0.00655,0.0065,0.00646,0.00646,0.00639,0.00627,0.00627,0.00625,0.00614,0.00594,0.00594,0.00587,0.00582,0.0057,0.00562,0.00555,0.0054,0.00539,0.00521,0.00518,0.00517,0.00509,0.00507,0.00501,0.0049,0.0048,0.00478,0.00453,0.00443,0.00436,0.00428,0.00427,0.00423,0.00421,0.00418,0.00417,0.00417,0.00412,0.00407,0.00407,0.004,0.00391,0.00386,0.00379,0.00372,0.00369,0.0036,0.00359,0.0035,0.00349,0.00348,0.00345,0.00333,0.00323,0.00319,0.00316,0.00315,0.00313,0.00305,0.00302,0.00301,0.00291,0.0029,0.00286,0.00286,0.00277,0.00271,0.00245,0.00239,0.00236,0.00228,0.00227,0.00219,0.00219,0.00214,0.00208,0.00206,0.00193,0.00163,0.00162,0.00152,0.00142,0.00141,0.0014,0.00139,0.00135,0.00134,0.00134,0.00128,0.00125,0.00123,0.0012,0.00115,0.00106,0.00105,0.00103,0.00098,0.00095,0.00095,0.00078,0.00076,0.00072,0.00072,0.00069,0.00066,0.00066,0.00066,0.0006,0.00059,0.00058,0.00055,0.00052,0.00051,0.00049,0.00049,0.00042,0.00041,0.00039,0.00036,0.00035,0.00035,0.00034,0.00029,0.00022,0.0002,0.0002,0.00019,0.00019,0.00018,0.00017,0.00017,0.00015,0.00013,0.00013,0.00012,0.00011,0.00008,0.00008,0.00006,0.00006,0.00006,0.00005,0.00005,0.00003,0.00002,0.00001,0.00001],"total":0},{"name":"八王子市","values":[6.50729,5.33059,4.96577,4.96555,4.94564,4.36851,4.30992,4.263080000000001,4.21708,4.190730000000001,4.096320000000001,4.030070000000001,3.90303,3.88227,3.76798,3.70302,3.69715,3.68004,3.6624,3.60832,3.49093,3.44018,3.28604,3.28237,3.26276,3.13915,3.09878,3.09664,3.07721,3.0704,3.06779,3.06495,3.04493,3.02514,3.00953,2.99295,2.97413,2.95261,2.88917,2.8754,2.84285,2.76579,2.74882,2.73211,2.71483,2.68503,2.64974,2.64313,2.63928,2.62936,2.57916,2.57211,2.56742,2.56608,2.55965,2.54149,2.50814,2.4998,2.49735,2.42049,2.4158,2.31374,2.30754,2.28309,2.23917,2.19513,2.15218,2.14713,2.08109,2.06821,2.06248,2.05306,2.04878,2.04483,1.99668,1.98814,1.92743,1.92682,1.91092,1.90649,1.80065,1.79341,1.77935,1.75976,1.75811,1.74222,1.71879,1.66853,1.63214,1.60731,1.58933,1.57092,1.55511,1.54849,1.54709,1.53359,1.5286,1.52403,1.44693,1.43646,1.38862,1.37964,1.31815,1.31341,1.27194,1.23467,1.21779,1.20351,1.18974,1.18279,1.18265,1.16966,1.15962,1.15576,1.15068,1.13983,1.13306,1.12445,1.12011,1.11912,1.11846,1.11637,1.11491,1.11471,1.11234,1.1008,1.10034,1.09525,1.08988,1.08385,1.06948,1.06611,1.0566,1.05588,1.05017,1.04961,1.04517,1.03919,1.03875,1.02403,1.01909,1.01874,1.01248,1.00666,0.99809,0.99243,0.99102,0.99077,0.98984,0.98923,0.98526,0.97641,0.97237,0.97169,0.96932,0.96685,0.9627,0.96096,0.9576,0.95532,0.95465,0.95412,0.95008,0.94989,0.94627,0.94366,0.94216,0.93791,0.93332,0.93148,0.931,0.92955,0.92865,0.92649,0.92239,0.92178,0.92175,0.92009,0.91975,0.91582,0.90924,0.90604,0.89992,0.8974,0.89592,0.89482,0.89199,0.89055,0.88045,0.8788,0.87803,0.87777,0.87768,0.86977,0.86899,0.86221,0.86177,0.86029,0.85544,0.85523,0.85446,0.85356,0.85351,0.85242,0.8474,0.84459,0.84303,0.84213,0.83891,0.83829,0.83722,0.83636,0.83577,0.83388,0.83193,0.82903,0.8273,0.82635,0.826,0.82598,0.82287,0.81884,0.81456,0.81321,0.80989,0.80912,0.80815,0.80784,0.80736,0.80172,0.80028,0.79964,0.79962,0.79955,0.79865,0.79099,0.7892,0.78825,0.78698,0.78343,0.78097,0.7801,0.77769,0.77058,0.76998,0.76822,0.76801,0.76785,0.76707,0.7646,0.76292,0.7626,0.76082,0.75811,0.75748,0.75425,0.75423,0.75344,0.75204,0.75166,0.75142,0.75086,0.74763,0.74744,0.74279,0.74248,0.74046,0.73863,0.7377,0.73766,0.73686,0.73535,0.7349,0.73367,0.73293,0.73259,0.73229,0.73175,0.72959,0.72897,0.7286,0.72804,0.72773,0.72615,0.72526,0.72485,0.72367,0.72359,0.7234,0.72234,0.72158,0.72116,0.72017,0.72009,0.71958,0.71955,0.71802,0.71752,0.71731,0.71681,0.71479,0.7142,0.71347,0.71161,0.71151,0.7113,0.70977,0.70926,0.70835,0.70829,0.7065,0.70551,0.70353,0.69976,0.69529,0.69475,0.69187,0.68978,0.68942,0.68851,0.68742,0.68613,0.68423,0.68214,0.68207,0.68005,0.6793,0.67715,0.67487,0.67065,0.6677,0.66688,0.66243,0.66096,0.66058,0.66028,0.66028,0.65969,0.65954,0.65771,0.65737,0.65686,0.65602,0.65471,0.65222,0.65122,0.65068,0.6501,0.64806,0.64788,0.64787,0.64483,0.64458,0.64452,0.64303,0.64277,0.64252,0.641,0.63952,0.63782,0.63524,0.6322,0.63215,0.6308,0.63039,0.62675,0.62427,0.62387,0.62315,0.62225,0.62082,0.62043,0.61995,0.61991,0.61916,0.61229,0.61226,0.61216,0.61182,0.61161,0.61158,0.61053,0.60982,0.60972,0.60952,0.60906,0.60887,0.60834,0.60645,0.60643,0.60555,0.60519,0.60399,0.60368,0.60316,0.6021,0.60147,0.60095,0.60094,0.59915,0.59828,0.59753,0.59712,0.5943,0.59238,0.58891,0.58684,0.58647,0.58584,0.58313,0.58209,0.57976,0.57956,0.57791,0.57779,0.57737,0.57558,0.57389,0.57202,0.57193,0.57062,0.56911,0.56709,0.56603,0.56536,0.56025,0.55988,0.55792,0.55735,0.55642,0.55593,0.5538,0.5524,0.55174,0.55105,0.5503,0.55026,0.55006,0.54616,0.54482,0.54479,0.54294,0.54209,0.54208,0.54104,0.541,0.53837,0.5381,0.53738,0.53603,0.5356,0.53495,0.53387,0.53274,0.53178,0.52976,0.5292,0.52847,0.5272,0.52666,0.52568,0.52252,0.52144,0.52109,0.52107,0.521,0.51948,0.51731,0.51509,0.51321,0.51215,0.50935,0.50876,0.50549,0.50419,0.50299,0.5025,0.50224,0.50177,0.50096,0.50068,0.50063,0.50041,0.49979,0.49811,0.49791,0.49711,0.49669,0.49636,0.49627,0.49589,0.49337,0.49173,0.49001,0.48966,0.48705,0.48678,0.4866,0.48485,0.4848,0.48429,0.47875,0.47777,0.47775,0.4777,0.47642,0.47549,0.47426,0.47402,0.47388,0.47347,0.47034,0.46918,0.46871,0.46812,0.46731,0.46686,0.4663,0.46563,0.46222,0.46187,0.46136,0.46033,0.45887,0.45852,0.45813,0.45752,0.45681,0.45596,0.45511,0.45335,0.45279,0.45092,0.45062,0.45021,0.44973,0.44948,0.44754,0.44678,0.44655,0.44634,0.44469,0.43997,0.43971,0.4391,0.43869,0.43759,0.43628,0.43552,0.4333,0.43068,0.43042,0.43031,0.42996,0.42879,0.42675,0.42298,0.42164,0.42127,0.42093,0.41979,0.41934,0.41818,0.41815,0.41559,0.41361,0.41336,0.41213,0.41208,0.41179,0.41126,0.41103,0.41099,0.40922,0.40436,0.40428,0.40246,0.40089,0.40014,0.39928,0.39681,0.39362,0.39344,0.39292,0.39259,0.39202,0.39171,0.39035,0.39025,0.39007,0.38907,0.38824,0.38802,0.38744,0.38687,0.38474,0.38468,0.38409,0.38252,0.38138,0.38066,0.38062,0.37941,0.37903,0.379,0.3754,0.37454,0.37284,0.37273,0.37258,0.37158,0.36887,0.36784,0.36768,0.36652,0.36618,0.3661,0.36597,0.36527,0.36407,0.36338,0.36201,0.36133,0.35846,0.35786,0.3572,0.35508,0.35304,0.35276,0.35262,0.35257,0.34866,0.34844,0.34687,0.34655,0.34607,0.3459,0.34483,0.34464,0.34407,0.34369,0.34325,0.34318,0.34292,0.34194,0.34065,0.34047,0.33987,0.33944,0.33792,0.33787,0.33776,0.33736,0.33729,0.33674,0.3363,0.3351,0.33474,0.33394,0.33357,0.33353,0.33269,0.33246,0.33225,0.33222,0.33213,0.33195,0.33171,0.33048,0.32869,0.32762,0.32756,0.32629,0.32461,0.32388,0.32366,0.32306,0.32285,0.32274,0.32169,0.32057,0.31887,0.31853,0.31833,0.31592,0.31541,0.31438,0.31355,0.31243,0.31197,0.31133,0.30994,0.30941,0.30861,0.30845,0.30817,0.30673,0.3067,0.306,0.30508,0.30475,0.30457,0.30393,0.30379,0.30311,0.30303,0.29895,0.29528,0.29432,0.29165,0.29129,0.2912,0.29113,0.29089,0.29022,0.28881,0.28828,0.2876,0.28721,0.28709,0.28662,0.28555,0.28531,0.28328,0.28307,0.28268,0.28246,0.282,0.28179,0.28122,0.28051,0.2802,0.2795,0.27909,0.27882,0.27818,0.27799,0.27753,0.27617,0.27598,0.27594,0.27548,0.27506,0.27469,0.27454,0.27449,0.2733,0.27315,0.272,0.2719,0.27114,0.27086,0.26824,0.26549,0.26548,0.26495,0.26311,0.263,0.26274,0.26223,0.26216,0.25968,0.25963,0.25927,0.25913,0.2589,0.25836,0.25812,0.25764,0.25677,0.25587,0.25365,0.25333,0.25284,0.25233,0.2513,0.25068,0.24896,0.24886,0.2486,0.24842,0.24755,0.24697,0.24562,0.24458,0.24383,0.24374,0.24364,0.24347,0.24342,0.24184,0.24183,0.23778,0.23658,0.23611,0.23589,0.23563,0.23543,0.23392,0.23318,0.23311,0.23276,0.23196,0.23185,0.23183,0.23116,0.23071,0.2304,0.23033,0.22759,0.2275,0.2263,0.22544,0.22428,0.22368,0.22262,0.22204,0.22117,0.22031,0.21929,0.21803,0.21798,0.21705,0.21552,0.21428,0.21355,0.21304,0.21262,0.21099,0.21047,0.2104,0.21016,0.20999,0.20889,0.20853,0.20846,0.20662,0.20576,0.20559,0.20539,0.20502,0.20477,0.20442,0.20405,0.2035,0.20239,0.20234,0.19946,0.19943,0.1991,0.19907,0.19723,0.19705,0.19694,0.19689,0.19674,0.19603,0.19562,0.19549,0.1953,0.19406,0.194,0.19288,0.1924,0.19201,0.19182,0.19075,0.18989,0.18825,0.18785,0.18681,0.18565,0.18441,0.18151,0.18138,0.18051,0.18031,0.17883,0.17844,0.178,0.17767,0.17757,0.17723,0.17645,0.17592,0.17553,0.17424,0.17316,0.17289,0.1718,0.17111,0.17079,0.17077,0.17053,0.16989,0.1687,0.16783,0.1662,0.16549,0.1653,0.16522,0.1648,0.16465,0.16425,0.16388,0.16377,0.16307,0.1627,0.16181,0.16022,0.1592,0.15904,0.15866,0.15854,0.15745,0.15728,0.15718,0.15667,0.15621,0.1552,0.15443,0.15424,0.15352,0.15331,0.15172,0.15154,0.15108,0.15094,0.14983,0.14939,0.14872,0.14851,0.14818,0.14817,0.14763,0.14644,0.14607,0.14579,0.14561,0.14512,0.14491,0.14484,0.14478,0.1446,0.14429,0.14429,0.14414,0.1435,0.14299,0.14161,0.14079,0.14076,0.14038,0.14036,0.13973,0.1393,0.13896,0.13879,0.13816,0.13793,0.13772,0.13741,0.13561,0.13549,0.13527,0.13505,0.135,0.13497,0.13464,0.13355,0.13342,0.13318,0.13285,0.13248,0.13197,0.13168,0.13134,0.13095,0.13093,0.13079,0.13077,0.12899,0.12673,0.12647,0.12616,0.12574,0.12524,0.12512,0.12419,0.12332,0.12291,0.12264,0.1226,0.12208,0.1216,0.12156,0.11986,0.11893,0.11866,0.11836,0.11826,0.11757,0.1173,0.11671,0.11618,0.11574,0.11565,0.11434,0.11421,0.11406,0.11374,0.11322,0.11309,0.11298,0.1129,0.11277,0.11247,0.11173,0.11166,0.1115,0.11135,0.11124,0.11115,0.1106,0.11016,0.10877,0.10823,0.10803,0.108,0.10785,0.10748,0.10716,0.10703,0.1066,0.10558,0.10519,0.10508,0.10496,0.10489,0.10474,0.10447,0.10442,0.10435,0.10359,0.10335,0.10284,0.10258,0.10183,0.10143,0.10128,0.10007,0.09995,0.09937,0.09918,0.09884,0.09812,0.098,0.09749,0.09743,0.09676,0.09666,0.09663,0.09608,0.09574,0.09572,0.09568,0.09566,0.09497,0.09491,0.09412,0.09409,0.09403,0.09342,0.09304,0.09225,0.09198,0.09197,0.09167,0.09144,0.091,0.0907,0.09057,0.08965,0.08942,0.0889,0.08847,0.08839,0.08813,0.0881,0.08787,0.08713,0.0863,0.08626,0.08582,0.08572,0.08515,0.08465,0.08447,0.08435,0.08421,0.0831,0.08309,0.08251,0.08178,0.08169,0.08134,0.08128,0.08126,0.08095,0.08081,0.08029,0.07997,0.0797,0.07949,0.07934,0.07923,0.07911,0.07896,0.07888,0.07884,0.07814,0.07806,0.07656,0.07654,0.07647,0.07637,0.07606,0.0756,0.07555,0.07529,0.07441,0.07439,0.07413,0.07409,0.07321,0.07238,0.0723,0.07217,0.07151,0.07132,0.07106,0.07103,0.07075,0.07052,0.06993,0.06992,0.06988,0.06987,0.06965,0.06952,0.06942,0.06927,0.06923,0.06916,0.0689,0.06887,0.06862,0.06848,0.06828,0.06764,0.06746,0.06705,0.06703,0.06695,0.06686,0.06631,0.06583,0.06582,0.06564,0.06531,0.06519,0.06517,0.06473,0.06437,0.06379,0.0635,0.06348,0.0634,0.06335,0.06316,0.06266,0.06249,0.06173,0.06158,0.06042,0.06037,0.06017,0.06006,0.06003,0.05945,0.05917,0.05915,0.059,0.05899,0.05895,0.05869,0.05858,0.05845,0.05829,0.05822,0.05821,0.05772,0.05749,0.05743,0.0567,0.05657,0.05655,0.0559,0.05568,0.05534,0.05516,0.05514,0.05505,0.05477,0.05475,0.05465,0.0545,0.05408,0.0538,0.05345,0.05345,0.05343,0.05289,0.05287,0.05286,0.05284,0.05275,0.05271,0.05261,0.05249,0.05219,0.05194,0.0517,0.05148,0.05147,0.0514,0.05128,0.05115,0.05083,0.05081,0.05061,0.05007,0.0497,0.04939,0.04936,0.04931,0.04921,0.04907,0.04904,0.04902,0.04854,0.04845,0.04844,0.04823,0.04809,0.04806,0.04801,0.0479,0.0475,0.0475,0.04729,0.04708,0.04683,0.04679,0.04673,0.04671,0.04649,0.04648,0.04647,0.04647,0.04638,0.04636,0.04635,0.04634,0.04633,0.04633,0.04633,0.04633,0.04633,0.04625,0.04593,0.04535,0.04487,0.04448,0.04433,0.04388,0.04377,0.04349,0.04301,0.04277,0.04274,0.04273,0.0427,0.04259,0.04223,0.0422,0.04192,0.04144,0.04128,0.04112,0.04101,0.04078,0.04076,0.04057,0.04032,0.04026,0.04025,0.03993,0.0391,0.03906,0.03883,0.03883,0.03866,0.03866,0.03858,0.03831,0.03828,0.038,0.03756,0.03723,0.03723,0.03714,0.03711,0.0371,0.03704,0.03671,0.03636,0.03609,0.03599,0.03537,0.03512,0.03498,0.03487,0.03455,0.0342,0.03369,0.03366,0.03363,0.03359,0.03354,0.03346,0.03338,0.03332,0.03328,0.03321,0.03321,0.03317,0.033,0.03293,0.03267,0.03249,0.03054,0.03051,0.03041,0.03039,0.03015,0.03015,0.03005,0.03003,0.02997,0.02995,0.0298,0.02966,0.02892,0.02876,0.02865,0.0286,0.02856,0.02853,0.0285,0.02839,0.02837,0.02832,0.02806,0.02803,0.02801,0.028,0.02764,0.02721,0.02721,0.02721,0.02716,0.02714,0.02695,0.02682,0.0264,0.0264,0.02637,0.02632,0.02627,0.02617,0.02588,0.02564,0.02538,0.02533,0.02522,0.02505,0.02464,0.02454,0.02447,0.02417,0.02408,0.02392,0.02373,0.0237,0.02326,0.02324,0.02319,0.02317,0.02313,0.02285,0.02267,0.02261,0.02243,0.02221,0.02216,0.02214,0.02209,0.02206,0.02194,0.02174,0.02171,0.02169,0.02154,0.02129,0.02126,0.0212,0.02111,0.02091,0.02082,0.02064,0.02064,0.02019,0.02014,0.02009,0.02005,0.01979,0.01979,0.0196,0.01959,0.01945,0.01935,0.01933,0.01925,0.01923,0.01922,0.01918,0.01915,0.01897,0.01879,0.01877,0.01876,0.01872,0.01868,0.0185,0.01838,0.0181,0.01808,0.01807,0.01804,0.01803,0.018,0.01781,0.01778,0.01758,0.01757,0.01756,0.01752,0.0175,0.01748,0.0173,0.01727,0.01725,0.01717,0.01717,0.01709,0.01703,0.01693,0.01686,0.01685,0.01685,0.01649,0.01637,0.01635,0.01633,0.0163,0.01625,0.01625,0.016,0.01597,0.01597,0.01592,0.01588,0.01586,0.01581,0.01576,0.01573,0.01572,0.01571,0.01561,0.01558,0.01549,0.01542,0.01542,0.0154,0.01536,0.01532,0.01522,0.01517,0.01512,0.01487,0.01479,0.01472,0.01456,0.01433,0.01424,0.0141,0.01389,0.01388,0.01385,0.0138,0.01364,0.01341,0.01339,0.01337,0.01334,0.01322,0.01309,0.01305,0.01303,0.01302,0.01296,0.01295,0.0128,0.01273,0.01266,0.01264,0.01262,0.01259,0.01256,0.01251,0.01251,0.01243,0.01237,0.01234,0.01233,0.01233,0.01233,0.01233,0.01233,0.01233,0.01233,0.01229,0.01211,0.01211,0.01209,0.01208,0.01207,0.01199,0.01194,0.01182,0.01182,0.01179,0.0117,0.01158,0.01154,0.01123,0.01123,0.01118,0.0111,0.01108,0.01096,0.01093,0.01092,0.01091,0.0108,0.01077,0.01074,0.01068,0.01067,0.01061,0.01061,0.01035,0.00979,0.00978,0.00974,0.0097,0.00968,0.00968,0.00965,0.00963,0.00962,0.00961,0.00959,0.00952,0.00951,0.00938,0.00935,0.00933,0.00926,0.00917,0.00911,0.00892,0.0088,0.00866,0.0086,0.00858,0.00851,0.00836,0.00834,0.00828,0.00825,0.00816,0.00811,0.00808,0.00805,0.0079,0.00788,0.00787,0.00776,0.00773,0.00768,0.00767,0.00766,0.00759,0.00759,0.00751,0.00748,0.00745,0.00744,0.00738,0.00719,0.00692,0.00674,0.00672,0.00663,0.00658,0.00655,0.00651,0.00649,0.00648,0.00646,0.00646,0.00645,0.00641,0.00639,0.00635,0.00615,0.00606,0.00606,0.00601,0.00601,0.00588,0.00586,0.00581,0.0058,0.00574,0.00557,0.00556,0.00548,0.00543,0.0054,0.0054,0.00533,0.00533,0.00527,0.00526,0.00516,0.00512,0.00509,0.00498,0.0049,0.00488,0.00479,0.00478,0.00476,0.00464,0.00464,0.00456,0.00453,0.0045,0.00446,0.00443,0.00442,0.00436,0.00435,0.0043,0.00422,0.00421,0.00419,0.00418,0.00415,0.00413,0.00402,0.00396,0.00394,0.00394,0.0039,0.00383,0.00376,0.00371,0.00366,0.00361,0.0036,0.00346,0.00345,0.00339,0.00339,0.00336,0.0033,0.00326,0.0032,0.00316,0.00314,0.00311,0.00311,0.00304,0.00299,0.00299,0.00294,0.00291,0.00288,0.00287,0.00282,0.00282,0.00279,0.00278,0.00276,0.00272,0.0027,0.00268,0.00265,0.00264,0.00258,0.00257,0.00254,0.00249,0.00249,0.00244,0.00244,0.00243,0.0024,0.00234,0.00232,0.00231,0.00227,0.00219,0.00216,0.00214,0.00214,0.0021,0.00207,0.00205,0.00202,0.00197,0.00193,0.00193,0.00192,0.00191,0.00185,0.00184,0.00183,0.00178,0.00177,0.00174,0.00169,0.00163,0.00162,0.00159,0.00158,0.00157,0.00155,0.00152,0.0015,0.00147,0.00144,0.00143,0.00141,0.00139,0.00136,0.00135,0.00133,0.00133,0.00131,0.00122,0.0012,0.00117,0.00114,0.00114,0.00113,0.00112,0.00111,0.00106,0.00106,0.00105,0.00103,0.00103,0.00101,0.001,0.00099,0.00099,0.00095,0.00094,0.00092,0.0009,0.0009,0.00088,0.00086,0.00084,0.00081,0.00081,0.00079,0.00074,0.00073,0.00072,0.00071,0.00066,0.00065,0.00064,0.00064,0.00061,0.0006,0.00044,0.0004,0.0004,0.0004,0.00038,0.00038,0.00037,0.00036,0.00035,0.00033,0.00032,0.0003,0.0003,0.0003,0.00028,0.00027,0.00027,0.00026,0.00025,0.00025,0.00024,0.00023,0.00022,0.00021,0.00019,0.00017,0.00017,0.00017,0.00015,0.00014,0.00014,0.00014,0.00013,0.00013,0.00013,0.00013,0.00012,0.00012,0.00011,0.00011,0.00011,0.00011,0.0001,0.0001,0.0001,0.00009,0.00009,0.00008,0.00008,0.00008,0.00008,0.00007,0.00006,0.00006,0.00005,0.00004,0.00004,0.00004,0.00004,0.00004,0.00004,0.00004,0.00004,0.00003,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001],"total":0},{"name":"檜原村","values":[0.00711,0.00702,0.00617,0.00524,0.00511,0.00498,0.00451,0.00447,0.00436,0.00425,0.00413,0.00349,0.00339,0.00328,0.00323,0.00322,0.00319,0.00319,0.00317,0.00306,0.00296,0.00281,0.00278,0.00269,0.00266,0.00256,0.00253,0.00234,0.00224,0.00218,0.00215,0.00213,0.0021,0.00209,0.00208,0.00202,0.00187,0.00176,0.00174,0.00172,0.0017,0.0017,0.0017,0.00168,0.00166,0.00166,0.0016,0.00158,0.00157,0.00156,0.0015,0.00149,0.00148,0.00141,0.00139,0.00137,0.00137,0.00136,0.00135,0.00128,0.00126,0.00125,0.00125,0.00123,0.0012,0.00117,0.00117,0.00112,0.00111,0.00111,0.0011,0.00106,0.00105,0.00104,0.00104,0.00104,0.00095,0.00095,0.00094,0.0009,0.00088,0.00087,0.00087,0.00086,0.00084,0.00083,0.00082,0.00082,0.0008,0.0008,0.00079,0.00079,0.00078,0.00078,0.00078,0.00077,0.00077,0.00074,0.00074,0.00073,0.00072,0.00071,0.00071,0.0007,0.0007,0.00069,0.00069,0.00068,0.00067,0.00066,0.00065,0.00065,0.00063,0.00063,0.00063,0.00062,0.00061,0.00061,0.0006,0.0006,0.00059,0.00058,0.00057,0.00056,0.00053,0.00053,0.00053,0.0005,0.00049,0.00049,0.00049,0.00049,0.00048,0.00047,0.00047,0.00046,0.00045,0.00043,0.00041,0.0004,0.0004,0.00039,0.00039,0.00039,0.00039,0.00038,0.00038,0.00037,0.00036,0.00035,0.00035,0.00034,0.00034,0.00031,0.00031,0.0003,0.00029,0.00028,0.00028,0.00027,0.00027,0.00027,0.00024,0.00024,0.00023,0.00023,0.00023,0.00023,0.00023,0.00021,0.00021,0.0002,0.0002,0.0002,0.0002,0.00019,0.00019,0.00018,0.00018,0.00018,0.00017,0.00016,0.00015,0.00015,0.00014,0.00012,0.00012,0.00011,0.0001,0.0001,0.00009,0.00009,0.00008,0.00008,0.00007,0.00007,0.00006,0.00006,0.00006,0.00006,0.00006,0.00006,0.00005,0.00005,0.00004,0.00004,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001],"total":0},{"name":"日野市","values":[2.73386,2.62089,2.50457,2.48406,2.18076,2.10958,2.0739,2.06574,1.92856,1.8858,1.8442,1.798,1.72016,1.71421,1.4929,1.44317,1.37594,1.34446,1.31775,1.29002,1.26078,1.22235,1.17087,1.16528,1.15702,1.15023,1.07502,1.07197,1.03682,1.02803,1.02274,1.00152,0.99357,0.98972,0.95512,0.94443,0.94254,0.9145,0.91123,0.8918,0.89053,0.88351,0.87458,0.8732,0.87136,0.84934,0.81316,0.80567,0.79911,0.79649,0.78418,0.76475,0.74753,0.72187,0.71578,0.7044,0.70339,0.70033,0.69561,0.69467,0.67829,0.67704,0.65815,0.65684,0.65484,0.65021,0.63115,0.60702,0.59434,0.59398,0.59127,0.57947,0.57479,0.57208,0.56725,0.56573,0.56434,0.55404,0.55224,0.53492,0.53437,0.53095,0.52592,0.51899,0.51523,0.50335,0.49746,0.49089,0.48992,0.48431,0.48105,0.48083,0.47146,0.47069,0.46972,0.4626,0.46251,0.45589,0.45581,0.45487,0.45192,0.44716,0.44484,0.43671,0.43379,0.43027,0.42913,0.4288,0.4284,0.42397,0.42331,0.42311,0.42119,0.4176,0.4171,0.41499,0.41059,0.406,0.40579,0.40086,0.39953,0.39804,0.39546,0.39476,0.38627,0.37174,0.37079,0.37027,0.36795,0.36617,0.36614,0.36502,0.3555,0.35101,0.34823,0.34676,0.34201,0.33941,0.33935,0.33829,0.33471,0.33259,0.33065,0.32918,0.32149,0.31932,0.31842,0.31706,0.31517,0.31303,0.31218,0.31203,0.30493,0.30362,0.30042,0.29707,0.29368,0.2928,0.29177,0.29135,0.29022,0.28822,0.28584,0.28188,0.27673,0.27124,0.27099,0.26903,0.26324,0.25981,0.25929,0.2585,0.25454,0.24856,0.24814,0.24805,0.24805,0.2473,0.2469,0.24472,0.24375,0.24291,0.23809,0.23805,0.23698,0.236,0.2358,0.23542,0.23146,0.23136,0.2242,0.22341,0.22339,0.22261,0.21881,0.21855,0.21805,0.21757,0.21408,0.21302,0.21247,0.21232,0.21193,0.20739,0.20637,0.20529,0.20416,0.20407,0.19947,0.1993,0.19695,0.19648,0.19598,0.19571,0.19551,0.19451,0.19281,0.19264,0.19215,0.19211,0.19165,0.19049,0.18791,0.1875,0.18457,0.18295,0.18072,0.18,0.17752,0.17634,0.17513,0.17457,0.16719,0.16694,0.16691,0.16605,0.16498,0.16191,0.16097,0.16041,0.15937,0.15794,0.15647,0.15644,0.1561,0.15602,0.1532,0.15096,0.14995,0.1495,0.14921,0.14638,0.1431,0.1423,0.1417,0.1411,0.14108,0.14034,0.13384,0.13318,0.13254,0.12857,0.12388,0.12386,0.12317,0.12247,0.1212,0.12009,0.11918,0.11838,0.11723,0.117,0.11614,0.11584,0.11239,0.11194,0.11193,0.11161,0.11129,0.10907,0.10574,0.10462,0.10447,0.10134,0.10082,0.09844,0.09834,0.09703,0.0959,0.09507,0.09457,0.09337,0.09266,0.09208,0.09183,0.08956,0.08868,0.08514,0.08457,0.0838,0.08244,0.08122,0.07952,0.07917,0.07907,0.07898,0.07831,0.07755,0.07713,0.0771,0.07577,0.0744,0.0742,0.07377,0.07367,0.07329,0.07227,0.07087,0.07079,0.06734,0.06691,0.06671,0.06589,0.06436,0.0643,0.06225,0.06196,0.06191,0.05968,0.05955,0.0593,0.05874,0.05799,0.05627,0.05574,0.0552,0.05254,0.05234,0.05155,0.05048,0.04855,0.04791,0.04784,0.04733,0.04704,0.04675,0.0463,0.04576,0.04456,0.04414,0.04302,0.04288,0.0426,0.04135,0.04126,0.03923,0.03888,0.03848,0.03811,0.03582,0.03488,0.03465,0.03302,0.03242,0.03168,0.03009,0.02801,0.028,0.02726,0.02652,0.02636,0.02578,0.02283,0.02216,0.02193,0.02125,0.02108,0.02029,0.02,0.01918,0.01864,0.01702,0.01698,0.01335,0.01096,0.00882,0.00847,0.00721,0.00705,0.00663,0.00484,0.00466,0.00398,0.00357,0.00286,0.00174,0.00119,0.00065,0.00029,0.00009,0.00007,0.00006],"total":0},{"name":"多摩市","values":[0.60946,0.60345,0.51344,0.48852,0.47745,0.46316,0.46262,0.45623,0.45118,0.44391,0.42546,0.42107,0.41984,0.41563,0.40816,0.40482,0.39513,0.39482,0.39259,0.39084,0.38664,0.38536,0.37838,0.37304,0.37028,0.36148,0.3611,0.35636,0.34308,0.33835,0.33119,0.32961,0.32618,0.32314,0.3199,0.31585,0.31118,0.30721,0.30631,0.30232,0.29731,0.29698,0.29587,0.29517,0.2911,0.2908,0.29028,0.28991,0.28539,0.28063,0.27334,0.26907,0.26163,0.26073,0.25881,0.25761,0.24845,0.24778,0.24471,0.24443,0.24218,0.24,0.23731,0.23582,0.23408,0.23107,0.23024,0.22808,0.22636,0.22624,0.22617,0.22468,0.22422,0.21697,0.21065,0.20998,0.2094,0.20677,0.20531,0.2043,0.20382,0.20195,0.20117,0.20023,0.19802,0.19755,0.19347,0.19246,0.19145,0.18765,0.18741,0.18735,0.18661,0.18508,0.18422,0.18087,0.1794,0.178,0.17659,0.17304,0.17212,0.16969,0.16912,0.16639,0.16629,0.16393,0.1591,0.15863,0.1584,0.15558,0.15548,0.14918,0.14892,0.14717,0.14499,0.14477,0.14396,0.14193,0.14085,0.14037,0.13881,0.13849,0.13712,0.13607,0.13493,0.131,0.13002,0.12512,0.1162,0.11531,0.11443,0.11323,0.11265,0.11238,0.11024,0.10994,0.10962,0.10959,0.10809,0.10434,0.10423,0.10082,0.10053,0.09927,0.09894,0.09698,0.0957,0.09476,0.09433,0.09361,0.09333,0.09238,0.09221,0.09039,0.08883,0.08824,0.08779,0.08693,0.08553,0.08495,0.08227,0.08191,0.07944,0.07841,0.07726,0.07486,0.07455,0.07427,0.07378,0.07322,0.06976,0.06969,0.06959,0.06716,0.06506,0.06397,0.06384,0.06342,0.06201,0.06175,0.06107,0.0604,0.05993,0.05964,0.05632,0.05555,0.05502,0.05494,0.05388,0.05349,0.05336,0.05282,0.05252,0.05227,0.05189,0.05123,0.04979,0.04952,0.04877,0.04722,0.04179,0.04118,0.04103,0.03836,0.038,0.03767,0.0374,0.03721,0.03692,0.03658,0.03563,0.03525,0.03519,0.03485,0.03482,0.03435,0.03346,0.03323,0.03224,0.03189,0.0314,0.03035,0.03024,0.03013,0.02982,0.02962,0.02853,0.02765,0.02733,0.02662,0.02605,0.02585,0.02561,0.02512,0.02491,0.02304,0.02264,0.02252,0.02126,0.02098,0.02044,0.02037,0.02026,0.0199,0.01978,0.01968,0.01954,0.01937,0.01887,0.01766,0.01752,0.01699,0.01669,0.01602,0.01591,0.01575,0.01574,0.01574,0.01557,0.01549,0.01527,0.01474,0.01455,0.0145,0.01413,0.01329,0.01305,0.01295,0.01276,0.0113,0.00986,0.00941,0.00933,0.00892,0.00857,0.00756,0.00703,0.00699,0.00607,0.0057,0.00531,0.00528,0.0047,0.00407,0.00405,0.00395,0.00389,0.0037,0.00359,0.00273,0.00252,0.00242,0.00174,0.00124,0.00111,0.00106,0.001,0.00093,0.00074,0.00058,0.00045,0.00041,0.00038,0.00037,0.00022,0.00014,0.00014,0.00013,0.00007,0.00006,0.00003,0.00001,0.00001],"total":0},{"name":"稲城市","values":[2.08228,1.95929,1.6592,1.48549,1.38079,1.31344,1.26993,1.19952,1.1588,1.09021,1.08568,1.06593,1.02714,1.01854,1.01366,1.01307,0.97411,0.93081,0.89207,0.88755,0.85301,0.83534,0.8285,0.78754,0.78067,0.75295,0.75224,0.75019,0.70739,0.67798,0.67472,0.67208,0.66653,0.65843,0.65573,0.64048,0.61272,0.58928,0.57386,0.5727,0.55837,0.54522,0.54251,0.53528,0.53499,0.52277,0.51442,0.47884,0.47668,0.4742,0.4673,0.45605,0.43809,0.42226,0.41777,0.41364,0.38573,0.38249,0.37382,0.36109,0.3597,0.34257,0.33913,0.3198,0.31191,0.30903,0.30734,0.30665,0.30344,0.30312,0.29683,0.29311,0.26987,0.26973,0.26938,0.26454,0.26054,0.23569,0.22632,0.22456,0.22363,0.22251,0.22236,0.21383,0.21189,0.21009,0.20667,0.20602,0.20245,0.19602,0.1915,0.18444,0.17789,0.17363,0.1654,0.1569,0.15576,0.15489,0.15077,0.13939,0.13793,0.13711,0.13457,0.13088,0.1297,0.12884,0.12746,0.12691,0.12574,0.1221,0.12054,0.11689,0.11544,0.11165,0.11092,0.10974,0.10803,0.1042,0.09911,0.09751,0.09656,0.09589,0.09497,0.09399,0.09296,0.09236,0.09225,0.08867,0.08529,0.08203,0.08192,0.07663,0.07608,0.0742,0.07253,0.07203,0.06947,0.06861,0.06814,0.0648,0.06339,0.06294,0.0625,0.06174,0.06145,0.06095,0.05808,0.05746,0.05459,0.05386,0.04395,0.04293,0.04222,0.04096,0.03991,0.03925,0.03824,0.03789,0.03751,0.03663,0.03644,0.03634,0.03589,0.03566,0.03386,0.03357,0.03306,0.02925,0.02835,0.0275,0.02678,0.02607,0.02579,0.02571,0.02551,0.02352,0.02291,0.0219,0.02149,0.02133,0.02126,0.02124,0.02106,0.02102,0.02086,0.02009,0.01984,0.01936,0.01906,0.01804,0.01709,0.01633,0.01542,0.01521,0.01503,0.0146,0.01409,0.01356,0.01275,0.01273,0.01269,0.01249,0.01248,0.01236,0.01224,0.01219,0.01203,0.01192,0.01173,0.01101,0.01082,0.0108,0.01074,0.01026,0.00867,0.00839,0.00765,0.00752,0.0073,0.00572,0.00566,0.00554,0.00484,0.00478,0.00458,0.00405,0.00405,0.00405,0.00403,0.00403,0.00374,0.00267,0.00246,0.00216,0.00209,0.00197,0.00175,0.00155,0.00136,0.00122,0.00105,0.00051,0.00041,0.00036,0.00032,0.00031,0.00018,0.00001],"total":0},{"name":"府中市","values":[7.96863,7.92419,7.86007,6.93336,6.30164,5.48065,5.46477,4.60083,4.34408,4.33977,3.97476,3.78037,3.72609,3.56049,3.53019,3.48662,3.46066,3.35303,3.30586,3.23628,3.11451,3.10345,3.07472,3.03255,2.95316,2.93283,2.84539,2.79811,2.79136,2.73977,2.72864,2.70902,2.69258,2.5867,2.58667,2.57801,2.56586,2.52349,2.50288,2.48669,2.48554,2.44541,2.41065,2.4059,2.39294,2.35635,2.35465,2.33297,2.32248,2.31737,2.31497,2.28291,2.28011,2.27475,2.23567,2.22507,2.21251,2.20294,2.19873,2.1863,2.18582,2.18165,2.1799,2.17646,2.17062,2.15462,2.14686,2.14679,2.14625,2.12694,2.10346,2.10101,2.1,2.09929,2.09669,2.0962,2.07186,2.0717,2.04039,2.02711,2.01675,2.00149,1.9853,1.97816,1.97308,1.95283,1.95205,1.945,1.93988,1.93581,1.93017,1.92605,1.92574,1.91411,1.87088,1.86848,1.84369,1.84033,1.83954,1.83454,1.83439,1.8155,1.8147,1.81242,1.79939,1.79928,1.78991,1.78967,1.78567,1.77916,1.76321,1.76027,1.75472,1.74879,1.74873,1.74625,1.73345,1.73212,1.73149,1.72958,1.71471,1.71237,1.71207,1.68825,1.68731,1.67702,1.66254,1.6403,1.62727,1.62161,1.61286,1.60385,1.60093,1.58703,1.58402,1.58022,1.56678,1.54533,1.54317,1.53601,1.53505,1.53338,1.52362,1.51728,1.51289,1.50724,1.4964,1.48654,1.48083,1.47769,1.47699,1.47528,1.46666,1.45251,1.44665,1.44407,1.42992,1.42855,1.42668,1.41877,1.41593,1.41027,1.41005,1.40694,1.40032,1.39806,1.39314,1.3931,1.38967,1.37429,1.37389,1.37383,1.35937,1.35741,1.35481,1.34767,1.34718,1.34206,1.3397,1.32987,1.31995,1.31989,1.31728,1.31266,1.30303,1.29946,1.29245,1.28679,1.27556,1.27324,1.27015,1.26773,1.26549,1.25744,1.25035,1.24719,1.24654,1.24571,1.24445,1.24409,1.23829,1.22392,1.22307,1.22224,1.22109,1.21767,1.20758,1.20657,1.17082,1.15108,1.14551,1.14162,1.11398,1.11037,1.10823,1.10763,1.09915,1.09812,1.09799,1.08975,1.08924,1.07248,1.0706,1.05175,1.04429,1.03944,1.03008,1.02422,1.0196,1.016,1.01516,1.01259,1.00949,0.9994,0.97827,0.96869,0.96193,0.95692,0.94219,0.94054,0.93985,0.93007,0.92879,0.92535,0.92307,0.90631,0.90399,0.90304,0.89568,0.88957,0.87668,0.87657,0.87625,0.87561,0.87386,0.86971,0.86568,0.86336,0.86093,0.85575,0.84907,0.84865,0.84604,0.84305,0.84,0.83908,0.82962,0.82513,0.82027,0.80603,0.80259,0.79965,0.7945,0.79219,0.78863,0.78538,0.78245,0.77638,0.75312,0.74718,0.74324,0.73832,0.73704,0.71894,0.71473,0.71089,0.68776,0.68243,0.67951,0.66737,0.65082,0.64665,0.63762,0.62757,0.6228,0.62007,0.61237,0.61168,0.60304,0.59244,0.58871,0.57321,0.57321,0.57043,0.5691,0.54272,0.53042,0.52893,0.52015,0.51123,0.50633,0.5054,0.50499,0.49277,0.49195,0.48818,0.4852,0.48224,0.47829,0.47723,0.47104,0.46813,0.46729,0.46497,0.46221,0.4603,0.45636,0.45134,0.38354,0.37111,0.36538,0.35174,0.34835,0.34174,0.33594,0.32715,0.32212,0.3205,0.31929,0.30835,0.30796,0.30485,0.30459,0.30374,0.28495,0.28163,0.27845,0.27251,0.24469,0.24203,0.22134,0.21345,0.21147,0.20728,0.19493,0.19258,0.18339,0.17836,0.17047,0.14881,0.14791,0.1441,0.13878,0.13521,0.12522,0.11866,0.11861,0.11441,0.09431,0.09234,0.09222,0.09097,0.08986,0.0876,0.08378,0.07655,0.06591,0.06513,0.06417,0.06398,0.0629,0.06288,0.06285,0.06198,0.0617,0.06125,0.06056,0.05497,0.05359,0.05223,0.05132,0.05129,0.05105,0.04927,0.04591,0.04265,0.04109,0.03853,0.03847,0.03736,0.03195,0.02874,0.02683,0.0257,0.0239,0.0234,0.01768,0.01701,0.01648,0.01644,0.01388,0.01353,0.01148,0.01078,0.01073,0.0096,0.00943,0.0094,0.00894,0.00879,0.0078,0.00677,0.00428,0.0039,0.00281,0.00025,0.00006,0.00004],"total":0},{"name":"狛江市","values":[40.95184,40.01701,39.93541,39.85663,38.56897,38.10226,36.54688,35.46226,34.34824,33.80666,32.149,31.2791,29.59753,29.58158,27.87313,24.27006,23.51582,22.2675,22.15716,21.88754,21.33781,21.23876,20.65634,19.31552,18.58765,18.32539,16.10788,15.78513,15.12498,14.89997,14.51633,14.48331,14.06259,13.56644,13.51377,12.99795,12.86822,12.72081,12.66305,12.43,11.07935,11.04449,10.8951,9.89195,9.55555,9.3524,8.989850000000002,8.91727,8.91334,8.58558,8.54763,8.54444,8.319000000000003,8.24134,8.22035,8.03576,7.82852,7.78284,7.75703,7.70338,7.61791,7.61465,7.5481,7.51333,7.26641,6.95962,6.91233,6.82781,6.74395,5.90145,5.89186,5.89112,5.87094,5.77269,5.75391,5.10308,5.03208,5.02207,4.89429,4.44613,4.41798,4.22953,3.95525,3.89192,3.89156,3.64178,3.51477,3.08422,2.55405,2.50405,2.26777,2.15023,1.96937,0.75465,0.63401,0.29627,0.00055],"total":0},{"name":"調布市","values":[35.94963,23.64106,23.33615,21.63037,20.17759,19.93949,19.23408,18.56875,18.53204,17.92284,17.01545,16.26879,16.13861,15.35205,14.28841,14.25917,13.92908,12.73072,11.69353,11.42289,10.77517,10.54996,10.01914,9.48928,8.44563,8.42065,8.38192,7.10659,7.08185,6.89235,6.72473,6.68549,6.51416,6.49206,6.39252,6.34839,6.33847,6.27243,5.84177,5.49886,5.49056,5.45713,5.36285,5.36164,5.31661,5.20088,5.14062,5.13451,5.0726,5.06688,5.00781,4.99535,4.90495,4.85834,4.80202,4.75036,4.74253,4.73354,4.72623,4.69297,4.61307,4.55703,4.38945,4.38154,4.37496,4.358170000000001,4.34853,4.27999,4.1991,4.14525,4.137870000000001,4.09936,4.06291,4.00059,3.92493,3.89978,3.89867,3.86878,3.78672,3.77627,3.7696,3.69996,3.68386,3.64405,3.56101,3.54764,3.54681,3.53118,3.40143,3.38359,3.36417,3.35888,3.33282,3.30933,3.25784,3.22427,3.22056,3.21488,3.18729,3.17918,3.11291,3.10151,3.0604,3.04307,3.02926,3.00955,2.99129,2.97614,2.97485,2.95595,2.95363,2.94937,2.92225,2.90364,2.85908,2.82673,2.80036,2.79609,2.78896,2.77796,2.75457,2.7446,2.71339,2.69681,2.67028,2.66413,2.63645,2.63379,2.62152,2.59896,2.58393,2.56591,2.50043,2.49637,2.49612,2.48233,2.45833,2.34949,2.34696,2.34632,2.33233,2.32787,2.26167,2.25522,2.23373,2.16367,2.13313,2.13096,2.09696,2.08835,2.08092,2.07482,2.05143,2.03613,2.02523,2.00416,2.00291,2.00261,1.96214,1.95768,1.95594,1.94226,1.94073,1.94003,1.91081,1.85443,1.83365,1.82366,1.81006,1.8022,1.79582,1.76667,1.74626,1.7239,1.71861,1.71548,1.70806,1.69861,1.69786,1.69123,1.67686,1.67185,1.64014,1.63361,1.63201,1.62493,1.62351,1.6169,1.61521,1.60643,1.5944,1.58905,1.58401,1.55802,1.5472,1.53537,1.51734,1.51361,1.50554,1.4983,1.45494,1.43104,1.426,1.41678,1.3964,1.37551,1.35894,1.34274,1.33355,1.28971,1.28796,1.27478,1.25851,1.24073,1.23175,1.21793,1.21102,1.20997,1.18615,1.16431,1.15968,1.1569,1.14435,1.14363,1.13219,1.09696,1.08158,1.06874,1.05782,1.05612,1.05566,1.04091,1.0334,1.03137,1.01411,1.01137,1.00692,0.99701,0.99331,0.97577,0.95277,0.94764,0.94315,0.94038,0.93667,0.90641,0.90259,0.90207,0.89725,0.8929,0.87586,0.86232,0.85381,0.83498,0.79231,0.77587,0.7714,0.75733,0.75337,0.74074,0.72855,0.71426,0.70939,0.69453,0.69074,0.68491,0.68203,0.66713,0.63571,0.61599,0.61378,0.5668,0.54275,0.52745,0.50783,0.50341,0.47107,0.4516,0.44859,0.44731,0.44522,0.43954,0.43395,0.41041,0.39454,0.39404,0.39353,0.39314,0.38802,0.35911,0.35819,0.31203,0.30522,0.29895,0.25496,0.232,0.19722,0.15708,0.14567,0.14246,0.11244,0.10063,0.07449,0.06733,0.0658,0.05358,0.05321,0.04857,0.04007,0.03684,0.03549,0.01531,0.00807,0.0034,0.00053,0.00041,0.0004,0.00039],"total":0},{"name":"三鷹市","values":[29.54088,28.47853,24.52222,23.51848,23.22847,20.40682,17.74713,17.73225,17.44704,17.37892,17.30123,16.0036,15.31546,14.92258,14.78187,14.65323,14.59921,14.04997,13.96117,13.65516,12.81926,12.32512,12.21076,11.62353,11.50702,11.39153,11.1564,11.13062,10.86288,10.85287,10.31263,10.30934,10.06093,9.38537,9.36509,8.8661,8.09672,8.05681,7.36236,7.09317,7.07692,6.81508,6.75867,6.57855,6.3256,6.31047,5.93783,5.8953,5.79706,5.51873,5.3432,5.31441,5.28162,4.95633,4.9511,4.94168,4.85225,4.77362,4.63107,4.58749,4.57819,4.53552,4.51352,4.51111,4.37618,4.31103,4.25227,4.19895,4.13829,4.03297,3.98355,3.85332,3.79462,3.70097,3.61384,3.4659,3.42398,3.32158,3.30706,3.19176,3.19134,3.14752,3.13108,3.03122,2.98871,2.9754,2.93466,2.9216,2.88641,2.87265,2.78937,2.78722,2.70904,2.64774,2.63829,2.58673,2.56683,2.48266,2.46657,2.42802,2.39647,2.38327,2.35677,2.3206,2.29407,2.27851,2.23195,2.22476,2.17983,2.17143,2.1135,2.10222,2.05845,2.05359,2.0164,1.97393,1.96382,1.94867,1.94479,1.90459,1.8935,1.8192,1.81486,1.80414,1.77413,1.73889,1.73636,1.6846,1.68003,1.64379,1.64302,1.62478,1.60703,1.56763,1.56621,1.56477,1.53977,1.51916,1.4935,1.47531,1.4697,1.42743,1.41544,1.41076,1.41018,1.39867,1.37468,1.37432,1.36419,1.35342,1.31581,1.31489,1.30399,1.29589,1.29499,1.28394,1.27627,1.25509,1.23626,1.22897,1.21566,1.21408,1.2074,1.20027,1.16511,1.15842,1.13175,1.12147,1.09643,1.09478,1.06946,1.05265,1.0334,1.02665,1.00788,0.99248,0.97455,0.97163,0.97148,0.94888,0.93578,0.9344,0.91616,0.888,0.86915,0.84502,0.83683,0.83648,0.83392,0.83059,0.82954,0.82787,0.81546,0.81546,0.81221,0.80379,0.80049,0.78772,0.78419,0.78125,0.76412,0.75799,0.75616,0.75541,0.75405,0.73996,0.71862,0.70301,0.69861,0.69337,0.64626,0.6117,0.6111,0.59917,0.58689,0.5819,0.56774,0.56178,0.55218,0.54874,0.53975,0.51909,0.49302,0.47806,0.46791,0.46221,0.32998,0.31405,0.31323,0.25647,0.25254,0.25134,0.23756,0.21119,0.2023,0.19425,0.18174,0.17802,0.17359,0.1709,0.14687,0.14231,0.13989,0.1375,0.1322,0.09241,0.09047,0.06918,0.05441,0.04335,0.04065,0.03967,0.01169],"total":0},{"name":"所属未定地","values":[0.00144,0.0014],"total":0},{"name":"あきる野市","values":[5.23282,4.93769,4.40939,3.91188,3.5934,3.31015,3.21368,3.18571,3.16009,3.15346,3.07115,2.9246,2.81148,2.6468,2.61376,2.57673,2.5178,2.42001,2.40522,2.33394,2.2845,2.2813,2.11845,1.95632,1.84733,1.80097,1.78325,1.70082,1.69844,1.67111,1.64356,1.62976,1.61243,1.60233,1.51375,1.47854,1.44348,1.43704,1.43502,1.43002,1.3631,1.35766,1.32764,1.30322,1.3008,1.14522,1.14214,1.13327,1.08646,1.08522,1.0742,1.05877,1.05711,1.02597,0.99661,0.99298,0.97068,0.95218,0.93706,0.93698,0.9197,0.91103,0.90398,0.88492,0.85889,0.85027,0.83652,0.83565,0.82607,0.81681,0.81665,0.80697,0.80536,0.79584,0.79114,0.78457,0.7819,0.77501,0.7739,0.77089,0.73698,0.72876,0.72284,0.71524,0.70425,0.69155,0.67237,0.65838,0.64405,0.642,0.64042,0.63917,0.62483,0.6169,0.61399,0.61142,0.60764,0.60565,0.59529,0.58295,0.58222,0.57847,0.5726,0.57222,0.56265,0.56168,0.5616,0.55646,0.5526,0.54896,0.54439,0.53964,0.5269,0.50702,0.49573,0.49017,0.48669,0.48144,0.48046,0.4682,0.45625,0.45507,0.44762,0.44447,0.4436,0.43969,0.42289,0.40946,0.40633,0.40497,0.40477,0.39958,0.3972,0.39615,0.37839,0.36837,0.36675,0.36437,0.36084,0.35569,0.35535,0.35457,0.34809,0.34776,0.34765,0.34734,0.32938,0.32902,0.32425,0.32413,0.32204,0.3198,0.31746,0.31517,0.31309,0.30803,0.30163,0.29896,0.2983,0.29185,0.27218,0.27204,0.26892,0.26447,0.24629,0.24099,0.23829,0.22809,0.2246,0.2222,0.22076,0.21598,0.19966,0.1937,0.1936,0.1926,0.18649,0.18166,0.18136,0.18135,0.17909,0.17773,0.17669,0.17195,0.17041,0.16984,0.16833,0.16802,0.1675,0.16724,0.16533,0.16496,0.16476,0.1645,0.15914,0.15902,0.15617,0.15613,0.15138,0.15118,0.14989,0.14934,0.14838,0.14268,0.14063,0.13944,0.1387,0.13755,0.13755,0.13472,0.13419,0.13399,0.13366,0.1328,0.13159,0.12878,0.12589,0.12588,0.12497,0.1242,0.12158,0.12052,0.11995,0.1184,0.1179,0.11753,0.11682,0.1161,0.11467,0.11444,0.11337,0.11307,0.11267,0.1122,0.10862,0.1053,0.105,0.10495,0.10264,0.10162,0.10076,0.09531,0.09439,0.09349,0.093,0.0887,0.08751,0.08704,0.08664,0.08642,0.08535,0.08146,0.08141,0.07946,0.07918,0.07696,0.07633,0.07573,0.07569,0.07538,0.07395,0.07361,0.07328,0.07324,0.07284,0.07238,0.07043,0.06877,0.06844,0.0683,0.06788,0.06678,0.06475,0.06437,0.06431,0.06332,0.06303,0.06299,0.06254,0.06166,0.06163,0.05968,0.05957,0.0553,0.05506,0.05393,0.05078,0.04805,0.04773,0.04628,0.04184,0.04146,0.04089,0.04045,0.038,0.03798,0.03765,0.03736,0.03736,0.03735,0.03734,0.03727,0.03674,0.03658,0.03631,0.03612,0.03581,0.03549,0.0352,0.03441,0.03372,0.03369,0.03361,0.03321,0.03315,0.03126,0.03126,0.03059,0.0304,0.02935,0.0293,0.02926,0.02895,0.02706,0.02704,0.02667,0.02661,0.02623,0.02611,0.02602,0.02578,0.02546,0.02536,0.02528,0.02524,0.02524,0.02472,0.02451,0.02393,0.02366,0.02351,0.02284,0.02265,0.02258,0.02252,0.02237,0.02215,0.02199,0.02169,0.02161,0.02125,0.02113,0.02101,0.02086,0.02084,0.01979,0.01964,0.01929,0.01924,0.0178,0.01739,0.01678,0.01559,0.01516,0.01511,0.01492,0.01458,0.01426,0.01422,0.01414,0.01392,0.01387,0.0131,0.01286,0.01252,0.01242,0.0123,0.01201,0.01186,0.0118,0.01168,0.01168,0.01167,0.01136,0.01121,0.01114,0.01111,0.01068,0.01042,0.01042,0.01014,0.01012,0.00935,0.00924,0.00883,0.00878,0.00851,0.0085,0.00767,0.00766,0.00699,0.00698,0.00681,0.00654,0.00587,0.00579,0.00573,0.00571,0.00553,0.00546,0.00544,0.0054,0.00518,0.00501,0.00498,0.00498,0.00498,0.00461,0.00437,0.00436,0.00436,0.00431,0.00422,0.00422,0.00422,0.0042,0.00419,0.00405,0.00396,0.00396,0.00371,0.00366,0.00342,0.00335,0.00332,0.00327,0.00326,0.00318,0.00294,0.00292,0.00276,0.00276,0.00271,0.00268,0.00265,0.00249,0.00249,0.00242,0.00236,0.00233,0.0023,0.0023,0.00212,0.0021,0.00207,0.00206,0.00206,0.00188,0.00185,0.0017,0.00169,0.00161,0.00157,0.00157,0.00156,0.00145,0.00145,0.00144,0.00142,0.0014,0.00134,0.0013,0.00128,0.00127,0.00126,0.00123,0.00114,0.00112,0.0011,0.00109,0.00107,0.001,0.00098,0.00092,0.0009,0.0009,0.00088,0.00083,0.00082,0.00081,0.0008,0.0008,0.0008,0.0008,0.00079,0.00079,0.00078,0.00074,0.00074,0.00073,0.00072,0.0007,0.00066,0.00062,0.00061,0.00061,0.00059,0.00057,0.00057,0.00043,0.00039,0.00036,0.00035,0.00035,0.00033,0.00032,0.00032,0.0003,0.00029,0.00028,0.00028,0.00027,0.00026,0.00026,0.00025,0.00022,0.00021,0.00019,0.00018,0.00018,0.00016,0.00015,0.00013,0.00012,0.00012,0.00012,0.00011,0.00008,0.00008,0.00007,0.00007,0.00007,0.00006,0.00006,0.00006,0.00006,0.00006,0.00005,0.00005,0.00004,0.00004,0.00004,0.00004,0.00003,0.00003,0.00003,0.00003,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001],"total":0},{"name":"日の出町","values":[1.21885,1.02856,0.86044,0.70677,0.67224,0.63008,0.62183,0.49444,0.46855,0.46452,0.46089,0.39538,0.37584,0.32471,0.32432,0.31743,0.29837,0.28411,0.27141,0.27096,0.26986,0.25313,0.24339,0.23094,0.22742,0.20938,0.20747,0.16738,0.1599,0.13127,0.12922,0.12373,0.11511,0.10525,0.10503,0.10465,0.10185,0.09937,0.08689,0.0855,0.0769,0.07501,0.07264,0.0673,0.0673,0.06423,0.06389,0.05522,0.05095,0.04868,0.04716,0.04598,0.04482,0.04388,0.04109,0.03977,0.039,0.03856,0.03808,0.03598,0.0355,0.03496,0.03297,0.03149,0.03126,0.03062,0.03036,0.03005,0.02901,0.02765,0.0274,0.02689,0.0261,0.02557,0.02369,0.02233,0.02195,0.02176,0.02128,0.02011,0.02008,0.02001,0.01976,0.01973,0.01924,0.01881,0.01783,0.01783,0.01752,0.01746,0.0159,0.01571,0.01569,0.0152,0.01471,0.01437,0.01308,0.01246,0.0115,0.01142,0.01023,0.00991,0.00961,0.00931,0.00906,0.00886,0.00854,0.00818,0.0081,0.00799,0.00797,0.00788,0.0078,0.00758,0.00747,0.00747,0.00716,0.00711,0.00696,0.00674,0.00671,0.00617,0.00592,0.00585,0.00583,0.00572,0.00557,0.00546,0.00514,0.00476,0.00472,0.00464,0.00446,0.0043,0.0041,0.00406,0.00404,0.00397,0.00397,0.00394,0.00362,0.00357,0.00348,0.00341,0.00331,0.00325,0.00325,0.00313,0.00299,0.0029,0.00269,0.00263,0.00248,0.00235,0.00229,0.00224,0.00214,0.00201,0.00197,0.0019,0.00187,0.00186,0.00167,0.00162,0.00144,0.00136,0.00134,0.00132,0.00129,0.0011,0.00101,0.00093,0.00084,0.00073,0.00067,0.00066,0.00066,0.00063,0.00063,0.00062,0.0006,0.00059,0.0004,0.00033,0.00033,0.00033,0.00032,0.00028,0.00026,0.00022,0.00021,0.00016,0.00016,0.00015,0.00015,0.00014,0.00014,0.00014,0.00012,0.00011,0.00011,0.00009,0.00009,0.00009,0.00008,0.00007,0.00007,0.00007,0.00006,0.00006,0.00006,0.00005,0.00005,0.00005,0.00005,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001],"total":0},{"name":"昭島市","values":[2.31459,1.62246,1.61904,1.4644,1.43256,1.35131,1.2974,1.24918,1.24844,1.22761,1.21481,1.12652,1.08303,1.04245,1.03727,1.02349,0.97229,0.96307,0.95482,0.9471,0.93435,0.84466,0.82093,0.80147,0.79995,0.78687,0.78101,0.76417,0.76044,0.76017,0.7574,0.75402,0.74855,0.74362,0.70978,0.6836,0.66002,0.65767,0.63558,0.60379,0.60185,0.59941,0.59443,0.58816,0.57379,0.56872,0.56428,0.54539,0.539,0.53277,0.53197,0.52166,0.5143,0.49567,0.4922,0.48299,0.47181,0.46219,0.46165,0.45183,0.44366,0.43032,0.42824,0.42595,0.40825,0.40031,0.36817,0.3632,0.36201,0.36135,0.35987,0.34014,0.33922,0.3343,0.33143,0.32834,0.32604,0.32584,0.32121,0.3155,0.30263,0.29861,0.29195,0.29053,0.28757,0.28703,0.28339,0.27479,0.27378,0.26613,0.26131,0.24661,0.24585,0.22798,0.22749,0.22693,0.22648,0.20616,0.20086,0.19598,0.193,0.19255,0.18851,0.18762,0.18562,0.18341,0.18123,0.1805,0.17931,0.17917,0.17845,0.17805,0.17356,0.17231,0.16988,0.16854,0.16748,0.15913,0.15685,0.15447,0.15414,0.15173,0.14919,0.14841,0.14799,0.14766,0.14688,0.14634,0.14397,0.14312,0.14042,0.14031,0.13858,0.13821,0.13308,0.13106,0.13004,0.12758,0.12481,0.12441,0.12284,0.11986,0.11908,0.11584,0.115,0.11324,0.1094,0.10336,0.10284,0.10081,0.0999,0.09873,0.09761,0.09577,0.09364,0.09283,0.09078,0.08812,0.08779,0.08651,0.08603,0.08588,0.0843,0.08352,0.08284,0.08197,0.0775,0.07631,0.0741,0.07397,0.06914,0.0689,0.06826,0.0681,0.06534,0.06299,0.06147,0.06128,0.06079,0.06055,0.05795,0.05668,0.05543,0.05018,0.05015,0.04768,0.04716,0.04306,0.04169,0.03858,0.0379,0.03731,0.03577,0.03479,0.03375,0.03207,0.02698,0.02686,0.02489,0.02451,0.02416,0.02209,0.02181,0.02174,0.02173,0.02097,0.02039,0.01947,0.01777,0.01716,0.01706,0.01513,0.01455,0.0139,0.01367,0.01023,0.01023,0.00993,0.00935,0.00935,0.00818,0.00742,0.00682,0.0065,0.00547,0.00487,0.00376,0.00281,0.00265,0.00217,0.00205,0.00174,0.00166,0.0008,0.00033,0.00029,0.00023],"total":0},{"name":"福生市","values":[0.84958,0.83111,0.79698,0.78899,0.61078,0.5884,0.56607,0.53043,0.49578,0.46961,0.44309,0.39529,0.39014,0.38956,0.38811,0.38575,0.38085,0.35522,0.35058,0.34465,0.34118,0.33414,0.32804,0.3123,0.29516,0.28738,0.28136,0.26125,0.25757,0.24591,0.23558,0.2292,0.22042,0.22024,0.21295,0.21235,0.2123,0.20663,0.1993,0.19645,0.19609,0.19134,0.18252,0.1781,0.17744,0.17625,0.17503,0.17189,0.17078,0.16784,0.1643,0.14395,0.13588,0.13001,0.12841,0.12711,0.12673,0.11829,0.11712,0.11543,0.11538,0.11354,0.10887,0.10593,0.10342,0.10052,0.09892,0.09392,0.09388,0.09191,0.09031,0.08941,0.08799,0.08596,0.08334,0.08269,0.08142,0.07252,0.06974,0.06966,0.06857,0.0678,0.06558,0.06398,0.06349,0.06106,0.05945,0.05891,0.05685,0.05684,0.05459,0.05127,0.04962,0.04803,0.04566,0.04442,0.0426,0.04158,0.04069,0.03689,0.03674,0.03517,0.03459,0.03256,0.03126,0.0286,0.02827,0.02818,0.02538,0.02516,0.02435,0.024,0.02116,0.02067,0.01874,0.01808,0.01737,0.01707,0.0161,0.01521,0.01497,0.01497,0.01466,0.01345,0.01318,0.01294,0.01145,0.01125,0.00937,0.00838,0.00775,0.00751,0.00733,0.00668,0.00656,0.00569,0.00489,0.00482,0.00375,0.00324,0.00226,0.00188,0.00065,0.00048,0.0004],"total":0},{"name":"立川市","values":[4.91427,4.354510000000001,4.26352,3.8059,3.72068,3.58122,3.09123,2.36214,2.2275,2.14237,2.13766,2.13383,2.07221,2.01316,2.00494,1.97281,1.94717,1.94068,1.92395,1.91582,1.85223,1.80612,1.80161,1.62714,1.60891,1.58264,1.5797,1.55624,1.52147,1.46764,1.45982,1.42125,1.32257,1.31837,1.29506,1.2748,1.26252,1.20244,1.18835,1.17781,1.16258,1.13367,1.11681,1.08293,1.07508,1.06621,1.06186,1.04819,1.04564,1.02144,0.98609,0.95776,0.92502,0.92443,0.90699,0.90638,0.88451,0.88437,0.86694,0.82775,0.82672,0.82467,0.80637,0.80008,0.7929,0.77791,0.76029,0.75751,0.72368,0.71789,0.71099,0.70994,0.70333,0.69554,0.69278,0.67981,0.67911,0.67821,0.6755,0.667,0.65781,0.63863,0.62386,0.62252,0.59018,0.58909,0.58712,0.58534,0.58349,0.57725,0.56675,0.56385,0.56366,0.55935,0.55875,0.53639,0.5273,0.50831,0.50691,0.49707,0.49077,0.49064,0.4826,0.48,0.47281,0.46794,0.46589,0.45431,0.44794,0.44552,0.44271,0.4307,0.39858,0.39249,0.38961,0.38359,0.3775,0.3766,0.37305,0.37193,0.3713,0.36936,0.3637,0.36091,0.35751,0.35508,0.35066,0.34833,0.34653,0.34327,0.33168,0.33162,0.32982,0.3236,0.31931,0.31869,0.31042,0.2827,0.28117,0.27828,0.27473,0.27097,0.26692,0.2659,0.26271,0.25378,0.25135,0.24632,0.24497,0.24331,0.24214,0.2276,0.22424,0.22093,0.22068,0.21591,0.21392,0.21296,0.21234,0.21023,0.20989,0.2085,0.20756,0.20729,0.20644,0.20568,0.20477,0.20467,0.20374,0.20373,0.20092,0.19274,0.19199,0.18903,0.18574,0.18526,0.18499,0.18421,0.17931,0.17749,0.17619,0.17373,0.17273,0.16753,0.1666,0.16627,0.16443,0.15638,0.15464,0.14962,0.14848,0.14738,0.14422,0.1424,0.13604,0.13316,0.12964,0.12947,0.12588,0.12379,0.11712,0.11466,0.11288,0.11246,0.11125,0.1112,0.1084,0.10824,0.10503,0.10197,0.09918,0.09319,0.09298,0.09253,0.09249,0.09142,0.08947,0.08917,0.08859,0.08694,0.08537,0.08107,0.07989,0.07642,0.07606,0.07461,0.07353,0.07342,0.07199,0.07159,0.07149,0.07011,0.06812,0.06809,0.06734,0.06682,0.06448,0.06365,0.06199,0.0601,0.05906,0.05739,0.05717,0.05659,0.05598,0.05587,0.05551,0.05407,0.05319,0.05152,0.05143,0.05004,0.04925,0.04837,0.0478,0.04656,0.04555,0.04405,0.04297,0.0425,0.04208,0.04001,0.03986,0.03953,0.03934,0.03922,0.03858,0.03823,0.03772,0.0372,0.03654,0.03555,0.0349,0.03359,0.0334,0.033,0.03005,0.02906,0.02846,0.02805,0.02714,0.02689,0.02627,0.0259,0.02548,0.02431,0.02422,0.0239,0.02389,0.02355,0.02343,0.02226,0.02171,0.02085,0.01984,0.01982,0.01972,0.01928,0.01906,0.01855,0.01815,0.01779,0.01768,0.01733,0.01645,0.01588,0.0154,0.01472,0.01374,0.01364,0.01356,0.01353,0.01331,0.01253,0.01247,0.01195,0.0107,0.00977,0.00968,0.00919,0.00918,0.00883,0.00882,0.00852,0.00828,0.00759,0.00674,0.00673,0.00648,0.00612,0.00603,0.00597,0.00587,0.00568,0.00537,0.0053,0.00528,0.00479,0.00455,0.00448,0.00445,0.00441,0.00433,0.00431,0.00431,0.00303,0.00303,0.00279,0.00276,0.00268,0.00226,0.00208,0.00191,0.00156,0.00152,0.00111,0.00079,0.00073,0.00068,0.00058,0.00032,0.00018,0.00001,0.00001],"total":0},{"name":"武蔵村山市","values":[9.69893,5.69488,5.15888,3.98514,3.41485,3.28557,3.13673,3.12518,2.96846,2.45951,2.0132,1.97565,1.63115,1.59974,1.54723,1.47841,1.13527,1.10222,1.08815,1.05196,1.03841,1.00638,0.97666,0.95771,0.75502,0.75125,0.72664,0.61126,0.60514,0.60415,0.53178,0.5296,0.51413,0.50856,0.48559,0.4748,0.44979,0.44681,0.44627,0.4439,0.42723,0.40802,0.39316,0.39213,0.39187,0.34255,0.33051,0.32865,0.32572,0.31432,0.31385,0.31065,0.30284,0.29881,0.29276,0.29177,0.28059,0.27874,0.26885,0.26343,0.26242,0.25997,0.25591,0.25207,0.25085,0.24912,0.24362,0.23368,0.23003,0.22405,0.22404,0.22131,0.22121,0.21976,0.21937,0.21718,0.20985,0.20283,0.20161,0.20014,0.19769,0.1953,0.1939,0.19168,0.18449,0.18426,0.17778,0.17716,0.17467,0.17464,0.17161,0.16996,0.16829,0.15962,0.15835,0.15245,0.14019,0.1395,0.13632,0.13589,0.12884,0.12734,0.12573,0.12562,0.12422,0.12402,0.12312,0.12298,0.11169,0.10982,0.10643,0.10621,0.10573,0.10491,0.10473,0.10229,0.10163,0.10051,0.09883,0.09825,0.09464,0.09417,0.09102,0.08948,0.08644,0.08626,0.08622,0.08572,0.08414,0.08108,0.07567,0.07557,0.07511,0.07383,0.07362,0.07288,0.07136,0.0712,0.06984,0.06618,0.06589,0.06572,0.05749,0.05662,0.05532,0.05253,0.05242,0.05208,0.0517,0.0514,0.0513,0.05093,0.05029,0.0502,0.04971,0.04872,0.04753,0.04552,0.04543,0.04427,0.0428,0.04219,0.03879,0.03788,0.0378,0.03695,0.03514,0.03507,0.03471,0.03245,0.02913,0.02729,0.02717,0.02648,0.02399,0.02345,0.02329,0.02322,0.02168,0.01965,0.01938,0.01527,0.01475,0.01353,0.01218,0.01175,0.01137,0.01032,0.00876,0.00757,0.00738,0.00701,0.00655,0.0054,0.0051,0.00499,0.00475,0.00466,0.00361,0.00323,0.00316,0.0031,0.0029,0.00288,0.00275,0.00244,0.00239,0.00197,0.00171,0.00158,0.00147,0.00102,0.00098,0.00084,0.00061,0.00049,0.0004,0.00024],"total":0},{"name":"羽村市","values":[3.30681,1.33462,1.33453,1.30768,1.29059,1.25266,1.23296,1.21808,1.12213,1.1152,1.11312,1.0724,1.04513,1.02252,1.00874,1.00051,0.9788,0.96838,0.81244,0.80704,0.8052,0.767,0.72245,0.71191,0.70644,0.70527,0.68138,0.64989,0.64803,0.63281,0.61704,0.6132,0.60259,0.58751,0.57443,0.55781,0.55156,0.55098,0.53088,0.52176,0.5086,0.45827,0.44543,0.43865,0.43414,0.41962,0.41654,0.41215,0.41209,0.38529,0.38221,0.3777,0.37471,0.36363,0.34751,0.33838,0.33566,0.3356,0.32033,0.31946,0.30562,0.28972,0.26987,0.25554,0.24236,0.24073,0.24067,0.23685,0.23287,0.21786,0.20419,0.19277,0.18565,0.18461,0.18324,0.17619,0.17304,0.16935,0.16498,0.16489,0.15794,0.1546,0.14899,0.14191,0.13187,0.12217,0.11336,0.10287,0.10285,0.09876,0.09795,0.09457,0.09273,0.08864,0.08819,0.08523,0.08098,0.07883,0.07809,0.07443,0.07387,0.06909,0.06502,0.06404,0.06341,0.06303,0.06204,0.05737,0.05661,0.05398,0.05204,0.0505,0.05044,0.04828,0.044,0.03977,0.03789,0.03675,0.03129,0.02929,0.02926,0.02915,0.02757,0.02748,0.02666,0.02643,0.02373,0.02371,0.02292,0.02279,0.01905,0.01802,0.01759,0.01754,0.01568,0.01241,0.0114,0.01121,0.0107,0.00952,0.00851,0.00803,0.00769,0.00574,0.00547,0.00389,0.00282,0.00255,0.00215,0.00036],"total":0},{"name":"瑞穂町","values":[0.68352,0.36835,0.36638,0.35933,0.34126,0.33776,0.32006,0.30315,0.29419,0.29283,0.28607,0.28455,0.26425,0.26394,0.25615,0.24275,0.21649,0.19858,0.19394,0.17811,0.17415,0.16764,0.16654,0.16048,0.15766,0.15746,0.15325,0.15081,0.14784,0.13967,0.13434,0.12846,0.12548,0.1221,0.12024,0.11892,0.11565,0.11545,0.11499,0.1123,0.11,0.10266,0.09427,0.09325,0.08603,0.0859,0.08539,0.08524,0.08499,0.08463,0.08314,0.08194,0.08142,0.07908,0.07727,0.07662,0.07639,0.07495,0.07339,0.06971,0.06881,0.06814,0.06798,0.06673,0.06426,0.06363,0.06352,0.06316,0.0603,0.05748,0.05542,0.05511,0.05391,0.05186,0.05173,0.05082,0.05049,0.04696,0.04692,0.04687,0.04396,0.04345,0.04242,0.04216,0.04024,0.03919,0.03748,0.03593,0.03456,0.034,0.03355,0.03332,0.03273,0.0318,0.02995,0.02975,0.02921,0.02886,0.02886,0.02667,0.02666,0.02587,0.02533,0.0249,0.02482,0.02469,0.02378,0.02271,0.02194,0.02158,0.02065,0.02064,0.02024,0.01994,0.01966,0.01949,0.01932,0.01926,0.01731,0.01697,0.01546,0.01525,0.01482,0.0148,0.01444,0.01441,0.01428,0.01359,0.01318,0.01295,0.01283,0.01283,0.01276,0.01251,0.01251,0.01245,0.01234,0.01218,0.01192,0.01188,0.01165,0.01105,0.01082,0.01054,0.01052,0.0101,0.00983,0.00967,0.00908,0.00888,0.00886,0.0076,0.00734,0.00724,0.00703,0.00655,0.00649,0.00635,0.00592,0.00575,0.00568,0.00548,0.0054,0.00503,0.0049,0.00479,0.00466,0.0045,0.00441,0.00424,0.00424,0.0041,0.00409,0.00399,0.00374,0.00346,0.00336,0.00316,0.00312,0.00293,0.00271,0.00253,0.00229,0.00165,0.00159,0.00158,0.00155,0.00146,0.00134,0.00132,0.00131,0.00108,0.00107,0.00104,0.0009,0.00089,0.00084,0.00081,0.00077,0.00074,0.00074,0.00067,0.00059,0.00049,0.00043,0.00037,0.00033,0.00032,0.00026,0.00026,0.00024,0.00022,0.00021,0.0002,0.00011,0.00011,0.00001],"total":0},{"name":"国立市","values":[11.86729,11.48177,11.12616,10.05825,8.89199,8.458740000000002,8.273350000000002,7.80428,7.78337,7.33869,5.76815,5.72263,5.07288,5.03311,4.982,4.363450000000001,4.21408,4.07991,3.77338,3.77109,3.67046,3.56517,3.43379,3.33385,3.20948,2.93783,2.7294,2.59281,2.51333,2.51141,2.18304,2.17573,2.15447,2.11102,2.00858,1.9772,1.8005,1.63525,1.59446,1.55751,1.44825,1.42787,1.36951,1.3602,1.32513,1.18028,1.09787,1.09027,1.06707,1.06558,1.00557,0.80494,0.79979,0.67914,0.65647,0.65518,0.62471,0.61423,0.59373,0.49544,0.48996,0.48912,0.45148,0.4427,0.43998,0.41462,0.35619,0.34306,0.33597,0.31428,0.30935,0.29041,0.28973,0.28579,0.28428,0.28419,0.28254,0.27855,0.27242,0.26218,0.24963,0.24229,0.23159,0.23033,0.22521,0.22483,0.21009,0.20641,0.20514,0.20323,0.19407,0.19177,0.18827,0.18758,0.18229,0.17548,0.15187,0.1297,0.12591,0.12386,0.11923,0.11601,0.10491,0.10443,0.102,0.10157,0.09033,0.07925,0.07912,0.07836,0.07617,0.06883,0.05227,0.04273,0.03803,0.03626,0.03017,0.02852,0.02421,0.02288,0.01816,0.01373,0.01202,0.00988,0.00716,0.00552,0.00511],"total":0},{"name":"国分寺市","values":[14.20883,13.6877,12.80991,10.10719,9.04429,8.09034,7.69519,7.47666,6.60619,6.04046,6.01443,5.97006,5.93707,5.86855,5.84283,5.82401,5.50746,5.34887,5.20724,5.14548,5.04242,4.98153,4.639,4.41749,4.3035,4.28557,4.1899,4.01099,3.8856,3.84613,3.65901,3.5282,3.40861,3.29882,3.22197,3.14423,3.03468,2.97492,2.90783,2.88944,2.85868,2.85335,2.71847,2.67926,2.64809,2.6045,2.54985,2.43937,2.41644,2.38087,2.33188,2.27567,2.24549,2.19729,2.17147,2.12581,2.05125,2.04208,2.03685,1.98763,1.90633,1.78425,1.7276,1.63912,1.62879,1.61613,1.59678,1.57063,1.56286,1.55254,1.55148,1.53143,1.52829,1.51467,1.50699,1.50362,1.50294,1.47307,1.4139,1.38477,1.37719,1.35437,1.34599,1.3091,1.2919,1.26501,1.25907,1.21282,1.20971,1.17943,1.17212,1.17061,1.16782,1.16258,1.15447,1.12756,1.11089,1.10868,1.09043,1.06778,1.05991,1.0366,1.0212,1.01484,1.00503,1.00183,0.99639,0.96507,0.95414,0.93371,0.89399,0.88869,0.78835,0.78774,0.77664,0.7693,0.75429,0.75374,0.71318,0.69046,0.67524,0.65786,0.62597,0.62146,0.61619,0.60609,0.60025,0.56451,0.55371,0.55211,0.54307,0.5362,0.48792,0.47221,0.4578,0.45166,0.41989,0.41766,0.41138,0.40201,0.40174,0.39887,0.39873,0.36665,0.36571,0.3291,0.32677,0.31633,0.30473,0.2953,0.29342,0.29195,0.28554,0.27891,0.24465,0.23153,0.22167,0.20998,0.20919,0.20902,0.19798,0.19769,0.19524,0.19326,0.1921,0.1708,0.16693,0.16545,0.16072,0.14477,0.13183,0.08292,0.07126,0.02197],"total":0},{"name":"小金井市","values":[12.79818,12.54886,12.24668,12.07369,11.691,11.62944,11.20738,10.5947,10.36877,9.84156,9.74414,9.49134,9.45836,8.93135,8.816890000000003,8.58244,8.41869,8.22823,7.94765,7.6243,7.61129,7.58958,6.57605,6.42224,6.38401,6.27789,6.09186,5.95974,5.83747,5.79023,5.67319,5.65609,5.56339,5.42613,5.24229,5.18937,5.16358,5.08878,5.06997,4.94246,4.89063,4.84161,4.83638,4.25571,4.25273,4.20883,4.20005,4.15147,4.08432,3.79119,3.76194,3.66813,3.65516,3.6314,3.60864,3.55378,3.52313,3.52029,3.51636,3.4036,3.37147,3.34695,3.24022,3.178,3.15045,3.1405,3.12522,3.11211,3.01577,2.97986,2.90125,2.84712,2.83204,2.80481,2.79326,2.79273,2.73991,2.73127,2.62649,2.53697,2.4471,2.38103,2.37249,2.36338,2.35535,2.35324,2.31037,2.29604,2.16638,2.13114,2.08849,2.00449,2.00175,1.87909,1.79887,1.79449,1.767,1.74383,1.73838,1.71377,1.69219,1.69146,1.65136,1.5366,1.48806,1.47856,1.43585,1.42632,1.40975,1.40431,1.35359,1.32866,1.32624,1.31623,1.31612,1.28637,1.2782,1.23401,1.22226,1.21983,1.21372,1.20451,1.20349,1.10485,1.06104,0.93346,0.90264,0.89115,0.87292,0.84864,0.83721,0.82683,0.80205,0.76271,0.71402,0.7117,0.70542,0.67417,0.64019,0.6167,0.59554,0.50974,0.50703,0.50653,0.50421,0.49804,0.49408,0.48964,0.45013,0.40867,0.38806,0.31671,0.27203,0.2608,0.18967,0.15598,0.15026,0.14438,0.14411,0.13096,0.12748,0.11287,0.07874,0.06943,0.05171,0.03578,0.02723,0.02314,0.01587,0.00063],"total":0},{"name":"小平市","values":[7.40109,7.30099,6.87914,6.38033,6.06938,5.94797,5.55147,5.21688,4.96594,4.88842,4.83076,4.82734,4.79779,4.21892,4.132780000000001,4.09613,3.89334,3.88771,3.81511,3.76821,3.74504,3.72405,3.66886,3.41904,3.33015,3.28074,3.24369,3.22773,3.15487,3.11615,3.02412,3.01721,2.98081,2.97006,2.92465,2.90877,2.76431,2.73426,2.6579,2.59169,2.56224,2.5245,2.4585,2.45638,2.4189,2.40996,2.38352,2.37631,2.34913,2.2758,2.18817,2.1626,2.14617,2.08724,2.0693,1.99857,1.94881,1.88961,1.88064,1.87653,1.84082,1.83286,1.83188,1.83171,1.81936,1.71731,1.692,1.6565,1.65318,1.59881,1.58262,1.56155,1.54899,1.51593,1.5,1.48553,1.47764,1.46089,1.45803,1.45478,1.45015,1.4485,1.43727,1.4354,1.43449,1.40196,1.36635,1.36362,1.35356,1.34181,1.33783,1.33491,1.32588,1.31419,1.31177,1.3116,1.31042,1.30721,1.28915,1.27193,1.1999,1.19862,1.18716,1.18293,1.15571,1.13215,1.12931,1.12761,1.09492,1.0722,1.04898,1.04896,1.04818,1.02721,1.01473,1.01115,1.00903,0.99593,0.98122,0.97408,0.97378,0.9558,0.95253,0.9421,0.93666,0.91516,0.9087,0.9058,0.89286,0.88982,0.88832,0.8555,0.83442,0.82678,0.8134,0.79751,0.79534,0.79043,0.7884,0.77705,0.77647,0.77475,0.77378,0.7641,0.75443,0.74564,0.70616,0.70257,0.69352,0.68075,0.6724,0.66603,0.65622,0.65551,0.6552,0.64526,0.63176,0.63154,0.63152,0.63107,0.62809,0.62581,0.61561,0.61002,0.60357,0.60312,0.59773,0.59479,0.59229,0.59207,0.59132,0.58401,0.56697,0.56172,0.55904,0.55156,0.5487,0.54504,0.53811,0.53777,0.53645,0.53422,0.53368,0.52834,0.52334,0.51846,0.51583,0.51461,0.50518,0.50019,0.49997,0.48518,0.48426,0.48192,0.47999,0.47696,0.47682,0.47275,0.46754,0.45597,0.43914,0.43852,0.4249,0.41824,0.4146,0.41384,0.39513,0.39036,0.38934,0.38882,0.3864,0.38199,0.38093,0.37886,0.37261,0.37239,0.37228,0.37155,0.37035,0.363,0.35743,0.34812,0.34715,0.34552,0.34269,0.34043,0.33446,0.32906,0.32798,0.32572,0.32364,0.32161,0.32109,0.31721,0.31316,0.31251,0.31221,0.30147,0.29608,0.29604,0.29306,0.28081,0.27743,0.27207,0.25834,0.25477,0.23995,0.23638,0.23438,0.23405,0.233,0.23077,0.2296,0.22454,0.22222,0.22213,0.20376,0.19786,0.19783,0.19507,0.19264,0.18843,0.17723,0.16967,0.16864,0.16825,0.1638,0.1577,0.14948,0.1487,0.14388,0.14362,0.14287,0.1391,0.13635,0.13514,0.13136,0.12652,0.12514,0.12488,0.12147,0.11988,0.11493,0.11182,0.11093,0.10651,0.10547,0.10446,0.09328,0.09032,0.0867,0.08533,0.0836,0.07992,0.07865,0.07579,0.06389,0.06197,0.05544,0.05511,0.05387,0.04543,0.04134,0.04063,0.03775,0.03648,0.03585,0.03158,0.03055,0.02568,0.02206,0.02049,0.00661],"total":0},{"name":"東大和市","values":[2.26886,1.80575,1.66216,1.59121,1.31885,1.20062,1.09176,1.07199,1.01252,0.98167,0.9788,0.97651,0.96344,0.96214,0.89468,0.8925,0.87235,0.86906,0.8485,0.81552,0.78131,0.77861,0.76918,0.75327,0.70339,0.70311,0.67746,0.67204,0.65806,0.65734,0.64855,0.63647,0.6352,0.63388,0.63193,0.63013,0.62704,0.62425,0.61844,0.58835,0.58723,0.57689,0.57524,0.56267,0.54135,0.53806,0.53574,0.5285,0.52435,0.52354,0.51897,0.51253,0.49744,0.47437,0.46396,0.46395,0.44756,0.4472,0.44511,0.44488,0.44431,0.43784,0.43734,0.43633,0.43517,0.41473,0.40695,0.39576,0.38938,0.37959,0.37768,0.36221,0.36054,0.34652,0.34594,0.33474,0.32196,0.31406,0.31021,0.30602,0.29693,0.27948,0.27909,0.27643,0.27327,0.27319,0.26709,0.26222,0.26169,0.25033,0.24693,0.24246,0.23335,0.22946,0.22401,0.22368,0.22279,0.21782,0.2161,0.21516,0.21019,0.20943,0.20768,0.2061,0.20518,0.2036,0.19987,0.19679,0.1944,0.19269,0.19087,0.18647,0.17911,0.17705,0.16741,0.16452,0.16276,0.16114,0.15301,0.14846,0.14455,0.13338,0.13166,0.12393,0.12299,0.11616,0.10745,0.10315,0.09417,0.09179,0.08656,0.08177,0.0728,0.07225,0.06988,0.06695,0.06263,0.06187,0.05978,0.05635,0.05521,0.05439,0.05353,0.04544,0.04363,0.04226,0.04208,0.0393,0.0356,0.034,0.03374,0.03369,0.02743,0.0251,0.02466,0.02162,0.021,0.02057,0.01804,0.01504,0.01344,0.00969,0.00865,0.00801,0.00288,0.00275,0.00228,0.00023,0.00003,0.00001],"total":0},{"name":"東村山市","values":[3.29261,3.25911,3.19806,3.01135,2.2414,2.11191,1.9997,1.94394,1.90139,1.8574,1.83497,1.80046,1.72394,1.66576,1.62576,1.55875,1.54463,1.53167,1.51399,1.4943,1.47463,1.43625,1.20902,1.20095,1.1952,1.19476,1.18055,1.15643,1.13684,1.12024,1.1188,1.1147,1.11082,1.09891,1.08779,1.03354,1.01721,0.99696,0.9816,0.97087,0.96328,0.95779,0.95434,0.93131,0.93101,0.90827,0.89553,0.89011,0.88046,0.87909,0.86788,0.85831,0.85741,0.83628,0.8354,0.83411,0.82228,0.82155,0.81908,0.80511,0.80125,0.78547,0.77587,0.76399,0.75544,0.74891,0.73955,0.73879,0.73807,0.73734,0.73036,0.72949,0.7158,0.70473,0.68929,0.65434,0.65255,0.65089,0.62795,0.62385,0.62265,0.61849,0.61249,0.60747,0.59125,0.57829,0.56777,0.56725,0.56375,0.55832,0.54955,0.54878,0.54667,0.54109,0.53957,0.53257,0.52577,0.52399,0.52381,0.51915,0.51407,0.50768,0.50421,0.49311,0.48682,0.48153,0.47782,0.47668,0.46337,0.46079,0.45865,0.45682,0.45612,0.45488,0.44729,0.44256,0.43698,0.43562,0.43419,0.42392,0.41869,0.4122,0.4092,0.40642,0.40511,0.40065,0.39488,0.38406,0.38225,0.3748,0.36898,0.35295,0.34882,0.34562,0.34375,0.34264,0.34241,0.3322,0.33033,0.32518,0.31891,0.31406,0.31018,0.30857,0.30408,0.30334,0.29901,0.29464,0.28875,0.28096,0.27943,0.27917,0.27897,0.27778,0.27644,0.27432,0.27106,0.27092,0.27081,0.26402,0.26236,0.25325,0.2522,0.2519,0.25013,0.24743,0.24008,0.23831,0.23322,0.22887,0.22374,0.22112,0.21691,0.21474,0.21468,0.2121,0.21076,0.20687,0.20461,0.20453,0.20312,0.20089,0.19375,0.19184,0.19171,0.18483,0.18327,0.17131,0.16843,0.16444,0.16187,0.16038,0.15891,0.1586,0.15758,0.15578,0.15416,0.15224,0.15192,0.15168,0.1471,0.14611,0.145,0.14477,0.14138,0.13942,0.13748,0.13466,0.13351,0.13278,0.1324,0.13035,0.12828,0.12504,0.12326,0.11842,0.11596,0.11294,0.11271,0.10827,0.10592,0.10138,0.10066,0.09803,0.09494,0.09261,0.09063,0.08692,0.08465,0.0822,0.07993,0.07386,0.07208,0.07172,0.07059,0.06699,0.06455,0.06393,0.06285,0.06265,0.06155,0.06129,0.06104,0.05944,0.05831,0.05589,0.05562,0.05009,0.04955,0.04868,0.04741,0.04408,0.04114,0.03942,0.03886,0.03758,0.03717,0.03516,0.0321,0.03178,0.01761,0.01507,0.01147,0.00546,0.0045,0.00272,0.0016],"total":0},{"name":"東久留米市","values":[4.1509,4.14781,3.81832,3.59507,3.58067,3.49658,3.36685,3.30808,3.28586,3.225,3.1367,3.12127,3.08271,3.07454,3.03675,2.98661,2.76617,2.72198,2.51074,2.45934,2.41931,2.4148,2.396,2.31204,2.17289,2.0104,1.99359,1.85259,1.77494,1.72914,1.69341,1.61074,1.58874,1.58547,1.56385,1.52748,1.51304,1.4906,1.48679,1.44124,1.41739,1.40408,1.3805,1.34438,1.3141,1.26875,1.24267,1.21457,1.18672,1.17355,1.14916,1.14824,1.141,1.13563,1.10753,1.04682,0.98602,0.95121,0.94641,0.94015,0.93968,0.9384,0.92576,0.92506,0.91928,0.87856,0.87438,0.86684,0.85934,0.85728,0.829,0.82447,0.79728,0.79373,0.78389,0.7786,0.76754,0.76442,0.75542,0.7536,0.73854,0.71095,0.70174,0.7005,0.68424,0.66746,0.66586,0.665,0.66218,0.65784,0.62821,0.61306,0.60469,0.60454,0.60089,0.58671,0.57047,0.56486,0.56363,0.56066,0.55464,0.54467,0.53637,0.51829,0.5125,0.51114,0.50784,0.50632,0.49404,0.49388,0.48776,0.48572,0.48557,0.48114,0.46238,0.46097,0.4561,0.45387,0.44809,0.44655,0.43433,0.43114,0.4227,0.42257,0.42191,0.42097,0.40671,0.39963,0.39661,0.39077,0.38786,0.38669,0.3843,0.38158,0.37756,0.37126,0.36812,0.36368,0.36226,0.35313,0.35155,0.34447,0.33967,0.33309,0.33184,0.32231,0.3179,0.31415,0.30962,0.30884,0.29998,0.29287,0.29192,0.28956,0.28317,0.28315,0.28199,0.28185,0.27837,0.27769,0.27516,0.27432,0.27385,0.26742,0.2672,0.26227,0.26022,0.25965,0.2556,0.24831,0.24476,0.24367,0.24,0.23719,0.22742,0.22473,0.22447,0.2179,0.21391,0.21012,0.20306,0.20202,0.19978,0.19441,0.18375,0.17824,0.17322,0.16783,0.16296,0.1472,0.14212,0.14091,0.13896,0.12943,0.12885,0.1273,0.11827,0.10584,0.07713,0.07072,0.06103,0.05273,0.04058,0.03946,0.03568,0.03554],"total":0},{"name":"武蔵野市","values":[25.53504,23.87638,22.7458,22.52874,21.6542,21.04046,20.98598,19.96388,19.44507,18.22577,17.63041,17.30106,16.97133,16.78747,16.11509,15.44378,14.14963,12.89458,12.63902,11.09371,11.0429,10.69465,9.9859,9.82376,9.36092,8.95092,8.0665,8.06579,7.91133,7.78767,7.53857,7.48508,6.73484,6.72105,6.38522,6.19144,6.13497,6.00787,5.87375,5.75333,5.60274,4.87169,4.86829,4.66925,4.229580000000001,4.02574,3.91874,3.89223,3.7959,3.79293,3.77906,3.63125,3.55636,3.40904,3.27997,3.27377,3.14944,3.08264,2.91444,2.91311,2.77477,2.48254,2.40576,2.32887,2.31399,2.30738,2.08992,2.06381,2.05827,2.05307,2.00091,1.8031,1.73369,1.54071,1.50042,1.48308,1.47031,1.38445,1.32357,1.22923,1.2268,1.18339,1.17804,1.16818,1.16652,1.14606,1.12656,1.12022,1.09435,1.08075,1.04053,1.02007,0.95584,0.93959,0.93865,0.9378,0.89764,0.86666,0.86635,0.86181,0.77605,0.76321,0.75432,0.74994,0.74718,0.74062,0.73226,0.7146,0.70154,0.68907,0.68568,0.67035,0.64953,0.64908,0.60352,0.57008,0.5186,0.51315,0.50983,0.49711,0.48486,0.47864,0.46435,0.46009,0.45128,0.44406,0.44077,0.44061,0.43384,0.43254,0.43202,0.42965,0.42943,0.41919,0.36305,0.36258,0.35422,0.35322,0.33909,0.33049,0.30948,0.30496,0.3033,0.27577,0.27549,0.25199,0.24784,0.24308,0.22936,0.22584,0.201,0.19993,0.18858,0.16961,0.15732,0.13302,0.13087,0.11835,0.10841,0.10349,0.08815,0.07114,0.04253,0.01927],"total":0},{"name":"西東京市","values":[17.60897,14.90114,14.71892,12.8625,11.5684,11.10444,10.47321,10.15303,9.92714,9.84943,9.6347,9.56091,9.38209,9.28427,8.96586,8.77742,8.049620000000003,7.68079,7.60197,7.23398,6.93225,6.84718,6.59784,6.09666,6.0251,5.92739,5.79614,5.765,5.52565,5.39947,5.38226,5.32009,5.20715,5.08592,5.08163,5.05012,5.04932,4.94901,4.87674,4.71493,4.39863,4.25413,4.2136,4.19029,4.17058,4.10295,3.88332,3.82519,3.77834,3.7352,3.70153,3.69654,3.54817,3.54081,3.47315,3.44884,3.38255,3.36924,3.35778,3.34257,3.28819,3.25883,3.2152,3.1786,3.12577,3.10533,3.07539,3.03366,3.0329,3.01614,3.01049,2.99973,2.91172,2.86877,2.77576,2.68762,2.68631,2.67325,2.63532,2.61864,2.61472,2.58106,2.56485,2.55718,2.54838,2.54572,2.54359,2.48132,2.42354,2.3785,2.36779,2.33032,2.27139,2.26803,2.23458,2.21733,2.21237,2.20532,2.19507,2.19475,2.19461,2.16094,2.11549,2.10159,2.09457,2.09106,1.9524,1.94786,1.89222,1.85149,1.81577,1.80705,1.77917,1.75237,1.74922,1.74419,1.74379,1.73599,1.7324,1.72473,1.72304,1.71874,1.7004,1.67028,1.6398,1.63347,1.605,1.60257,1.60163,1.58504,1.58072,1.55929,1.55204,1.53264,1.52863,1.5229,1.49557,1.46184,1.43727,1.43617,1.42169,1.40786,1.39686,1.38531,1.36721,1.36526,1.31565,1.27769,1.21295,1.21001,1.20698,1.19903,1.18176,1.17527,1.17473,1.14859,1.14781,1.14521,1.13781,1.11436,1.11276,1.09866,1.08974,1.07812,1.03067,1.02904,1.01214,0.95902,0.95169,0.94071,0.93868,0.93715,0.93268,0.91767,0.90763,0.90107,0.89734,0.89325,0.86759,0.86463,0.83935,0.80375,0.75875,0.75785,0.756,0.7444,0.73973,0.72022,0.70681,0.69751,0.67384,0.67214,0.66378,0.66099,0.66091,0.64866,0.647,0.64674,0.63722,0.62438,0.59903,0.58656,0.57886,0.56218,0.55761,0.52466,0.50034,0.49089,0.49055,0.47927,0.47373,0.4632,0.46003,0.43723,0.43425,0.43227,0.41881,0.41832,0.40934,0.40298,0.40111,0.38951,0.36729,0.35488,0.34554,0.32074,0.31417,0.30012,0.29429,0.26836,0.26604,0.22498,0.21968,0.21631,0.21301,0.20221,0.18923,0.15558,0.10471,0.05492,0.0484,0.02867,0.02291,0.00954,0.00822],"total":0},{"name":"千代田区","values":[0.09194,0.08455,0.04091,0.03866,0.03609,0.02461,0.02289,0.02088,0.01837,0.01734,0.01557,0.0146,0.01434,0.01425,0.01344,0.0132,0.01247,0.01246,0.01237,0.01088,0.01054,0.00978,0.00953,0.00923,0.00837,0.0083,0.0083,0.00807,0.00796,0.00725,0.00685,0.00628,0.00627,0.00611,0.00585,0.00556,0.00537,0.00531,0.0051,0.00493,0.00481,0.00475,0.00449,0.00437,0.00425,0.00423,0.00413,0.00412,0.00395,0.00384,0.00382,0.00376,0.00373,0.00361,0.00359,0.00358,0.0035,0.00338,0.00331,0.00328,0.00327,0.00326,0.00325,0.00317,0.00313,0.00308,0.00303,0.00299,0.00287,0.00285,0.00284,0.00268,0.00266,0.00265,0.00251,0.00236,0.00235,0.00225,0.00223,0.00221,0.00219,0.00209,0.00207,0.00202,0.00198,0.00187,0.00185,0.00183,0.00182,0.00175,0.00164,0.0016,0.00159,0.00158,0.00153,0.00147,0.0014,0.00132,0.00126,0.00124,0.00123,0.00122,0.00121,0.00103,0.00102,0.00099,0.00098,0.00097,0.00093,0.00092,0.00087,0.00086,0.00084,0.00082,0.0008,0.00077,0.00076,0.00074,0.00068,0.00067,0.00054,0.00054,0.00051,0.00046,0.00043,0.00042,0.00041,0.00039,0.00036,0.00035,0.00031,0.00031,0.00031,0.0003,0.0003,0.00029,0.00029,0.00027,0.00024,0.00023,0.00023,0.00023,0.00022,0.00018,0.00016,0.00011,0.00011,0.00009,0.00009,0.00008,0.00007,0.00007,0.00006,0.00005,0.00004,0.00003,0.00003,0.00003,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001,0.00001],"total":0},{"name":"青梅市","values":[0.61093,0.47535,0.45971,0.45068,0.42859,0.42326,0.40357,0.38346,0.38088,0.3723,0.37052,0.3653,0.35859,0.34824,0.34399,0.34226,0.3395,0.33738,0.33734,0.33072,0.33044,0.32811,0.32668,0.32222,0.32022,0.31945,0.31294,0.3109,0.30737,0.30654,0.30361,0.29597,0.29569,0.29289,0.29232,0.28889,0.28842,0.28825,0.28444,0.28428,0.28388,0.28348,0.2814,0.27757,0.2767,0.27446,0.27445,0.27416,0.27312,0.2669,0.26479,0.26254,0.26252,0.26244,0.26021,0.2552,0.2522,0.24946,0.24829,0.2482,0.24764,0.24531,0.24352,0.2433,0.24299,0.24283,0.24263,0.24241,0.24136,0.24044,0.2403,0.24022,0.23921,0.23906,0.23699,0.23627,0.23239,0.2322,0.23154,0.23126,0.22924,0.22907,0.22906,0.22702,0.22563,0.22431,0.22383,0.22181,0.22143,0.2211,0.22014,0.21893,0.21799,0.21719,0.21657,0.2151,0.2143,0.21372,0.21264,0.21233,0.21105,0.21067,0.21044,0.20909,0.20879,0.20674,0.20648,0.20593,0.20574,0.20446,0.20385,0.2035,0.20191,0.20087,0.2007,0.20059,0.19842,0.19837,0.19705,0.19697,0.19637,0.19545,0.19412,0.19403,0.19346,0.19329,0.19297,0.18936,0.18864,0.18746,0.18734,0.18667,0.18594,0.18577,0.18414,0.18268,0.18185,0.18143,0.1804,0.17951,0.17903,0.17851,0.1777,0.17682,0.17644,0.17516,0.17425,0.174,0.1732,0.17228,0.17123,0.17056,0.16695,0.16591,0.16555,0.16415,0.16391,0.16271,0.16122,0.15994,0.15745,0.15698,0.15688,0.15659,0.15647,0.15632,0.15398,0.15356,0.15352,0.15332,0.15296,0.15217,0.15203,0.15202,0.15174,0.15008,0.14956,0.14949,0.14864,0.14844,0.14755,0.14714,0.14674,0.14619,0.14599,0.14557,0.14517,0.14504,0.14461,0.14431,0.14357,0.14324,0.14279,0.14251,0.14179,0.14067,0.13925,0.13913,0.13892,0.13793,0.13538,0.13523,0.13499,0.13407,0.13385,0.13313,0.13193,0.12967,0.12888,0.12886,0.12755,0.12653,0.12464,0.12432,0.12328,0.12297,0.12089,0.11954,0.11843,0.11779,0.11673,0.11639,0.11593,0.1152,0.1145,0.11351,0.11322,0.1127,0.11259,0.11242,0.11235,0.11212,0.11155,0.11085,0.11067,0.11062,0.11037,0.11002,0.10911,0.10886,0.10753,0.10721,0.10636,0.10365,0.10359,0.10299,0.10227,0.10135,0.10115,0.10114,0.10026,0.09958,0.09777,0.09734,0.09702,0.09688,0.09643,0.09554,0.09515,0.09447,0.09434,0.09343,0.09276,0.0916,0.09142,0.09134,0.08943,0.08871,0.08746,0.08727,0.08642,0.08593,0.08506,0.08315,0.08229,0.08163,0.08024,0.07947,0.07931,0.07894,0.07821,0.07759,0.07732,0.07697,0.07648,0.07613,0.07527,0.07476,0.07403,0.07383,0.07354,0.07297,0.0724,0.07226,0.07207,0.07199,0.07048,0.07021,0.07011,0.07006,0.06994,0.06991,0.06964,0.06951,0.0695,0.06885,0.06785,0.06765,0.06701,0.06585,0.06516,0.06478,0.06395,0.06324,0.06232,0.06208,0.06159,0.06148,0.06143,0.06064,0.06016,0.06015,0.05941,0.0593,0.05837,0.05789,0.05773,0.05772,0.05711,0.05685,0.05547,0.05478,0.05449,0.05423,0.05343,0.05321,0.05291,0.05227,0.052,0.05127,0.05056,0.05011,0.04996,0.04991,0.04949,0.04942,0.04932,0.04898,0.04892,0.04876,0.04826,0.04813,0.04608,0.04574,0.0456,0.04554,0.0454,0.04536,0.04453,0.0439,0.04384,0.04382,0.0438,0.04367,0.04311,0.04265,0.04255,0.04255,0.04187,0.04162,0.04117,0.04082,0.04049,0.03932,0.03912,0.03836,0.03804,0.03789,0.03785,0.03737,0.03726,0.03714,0.03705,0.03684,0.03681,0.03664,0.03655,0.03558,0.03552,0.03551,0.03509,0.03472,0.03461,0.03454,0.0345,0.03442,0.03391,0.03388,0.03379,0.0334,0.03338,0.03329,0.03277,0.03227,0.03192,0.03181,0.03143,0.03126,0.03108,0.03098,0.03064,0.02992,0.02942,0.02932,0.02904,0.02864,0.02818,0.0281,0.02781,0.02763,0.02738,0.02725,0.0272,0.02719,0.02707,0.02703,0.0268,0.02666,0.02652,0.02649,0.0264,0.02615,0.02604,0.02598,0.02572,0.0254,0.02537,0.02537,0.02454,0.0243,0.02422,0.02372,0.02354,0.02311,0.02252,0.02249,0.02242,0.02224,0.02214,0.02209,0.02148,0.02139,0.02121,0.02087,0.02068,0.02008,0.02006,0.02005,0.02004,0.02,0.01973,0.01954,0.01927,0.01924,0.01911,0.01892,0.01872,0.01845,0.01833,0.01829,0.01821,0.01819,0.01818,0.01796,0.01794,0.01787,0.01783,0.01776,0.01762,0.01756,0.01754,0.01715,0.01711,0.01697,0.01687,0.01687,0.01643,0.01631,0.01622,0.0162,0.01592,0.01589,0.01586,0.01571,0.01557,0.01541,0.0154,0.01534,0.01533,0.01527,0.01503,0.01495,0.01495,0.01491,0.01455,0.01453,0.01438,0.01404,0.01382,0.01378,0.0137,0.01362,0.01362,0.01347,0.01342,0.01293,0.01267,0.01254,0.01235,0.0123,0.01227,0.01224,0.01222,0.01209,0.01209,0.01197,0.01189,0.01187,0.01186,0.01183,0.01171,0.01147,0.01147,0.01145,0.01144,0.0114,0.01139,0.0107,0.0107,0.01069,0.01063,0.01061,0.01051,0.01049,0.01026,0.00994,0.00986,0.00984,0.00982,0.00976,0.00966,0.00965,0.0096,0.0096,0.00949,0.00941,0.00933,0.00927,0.00918,0.00914,0.00907,0.00898,0.00896,0.00884,0.00874,0.0087,0.00862,0.00862,0.00862,0.00861,0.00848,0.00835,0.00824,0.00813,0.00813,0.00808,0.00807,0.00802,0.00801,0.00776,0.00734,0.00727,0.00725,0.00719,0.00716,0.00706,0.00703,0.00702,0.00697,0.00689,0.00684,0.00678,0.00672,0.00669,0.00669,0.00669,0.00669,0.00669,0.00663,0.00662,0.00645,0.00636,0.00619,0.00618,0.00589,0.00582,0.00573,0.00571,0.00569,0.00568,0.0056,0.00541,0.00536,0.00533,0.00532,0.00524,0.00518,0.00518,0.0051,0.00507,0.00489,0.0048,0.00475,0.00474,0.00474,0.00468,0.00461,0.00454,0.00443,0.00443,0.00432,0.00425,0.00406,0.00404,0.00404,0.00399,0.00396,0.00395,0.00386,0.00357,0.00347,0.00333,0.00326,0.00317,0.00304,0.00299,0.00294,0.00291,0.00287,0.00286,0.00279,0.00276,0.00275,0.00271,0.00267,0.00267,0.00266,0.00252,0.00239,0.00237,0.00234,0.00232,0.00232,0.00232,0.00231,0.00231,0.00224,0.00224,0.00209,0.00208,0.00205,0.00204,0.00203,0.002,0.00199,0.00195,0.00191,0.0019,0.00179,0.00176,0.00169,0.00158,0.00156,0.00155,0.00147,0.00141,0.0014,0.00139,0.00138,0.00129,0.00127,0.00119,0.00116,0.00113,0.00112,0.00112,0.00111,0.00111,0.00105,0.00102,0.001,0.00096,0.00095,0.00095,0.00091,0.00085,0.00083,0.00078,0.00077,0.00077,0.00075,0.00074,0.00073,0.00066,0.00064,0.00063,0.00057,0.00053,0.00053,0.00052,0.00051,0.00048,0.00047,0.00047,0.00047,0.00044,0.00041,0.00041,0.00037,0.00035,0.00035,0.00035,0.00033,0.00033,0.00033,0.00032,0.0003,0.0003,0.0003,0.0003,0.00029,0.00028,0.00028,0.00027,0.00026,0.00024,0.00023,0.00023,0.00022,0.0002,0.0002,0.0002,0.0002,0.0002,0.00019,0.00018,0.00015,0.00015,0.00014,0.00014,0.00014,0.00014,0.00014,0.00013,0.00011,0.00011,0.00011,0.00011,0.0001,0.0001,0.0001,0.0001,0.00008,0.00008,0.00008,0.00007,0.00007,0.00007,0.00007,0.00006,0.00005,0.00005,0.00005,0.00005,0.00005,0.00004,0.00004,0.00004,0.00004,0.00003,0.00003,0.00003,0.00003,0.00003,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0.00001,0.00001,0.00001,0.00001],"total":0},{"name":"清瀬市","values":[2.32539,2.14781,1.57051,1.52397,1.29447,1.04491,1.00324,0.9973,0.93025,0.85902,0.84769,0.83572,0.81307,0.76149,0.75059,0.74225,0.73157,0.73058,0.71098,0.70453,0.62117,0.62032,0.60742,0.59066,0.58648,0.57792,0.55287,0.55063,0.54338,0.52438,0.51528,0.51475,0.51196,0.50738,0.50237,0.49511,0.48358,0.47545,0.47347,0.46217,0.4246,0.42217,0.41742,0.41647,0.40603,0.39325,0.39076,0.38958,0.37293,0.36712,0.36363,0.3575,0.33238,0.32984,0.32667,0.31758,0.31609,0.31478,0.31458,0.31206,0.29654,0.29616,0.29465,0.28616,0.28372,0.2799,0.27687,0.27674,0.27631,0.25831,0.25181,0.25162,0.24494,0.24341,0.24249,0.23974,0.23955,0.23804,0.23404,0.22869,0.22305,0.22247,0.22003,0.21608,0.2158,0.21505,0.21419,0.20626,0.20563,0.20352,0.203,0.20119,0.20087,0.19779,0.19771,0.18943,0.18779,0.17707,0.17611,0.16563,0.16525,0.16362,0.16218,0.15495,0.15053,0.15042,0.14676,0.14593,0.14048,0.13992,0.13415,0.13291,0.13106,0.12916,0.12856,0.12096,0.12032,0.11972,0.11907,0.11589,0.11512,0.11371,0.10867,0.1083,0.10444,0.09323,0.09173,0.08762,0.08638,0.08485,0.08024,0.07885,0.07769,0.07451,0.07376,0.07243,0.05617,0.05579,0.05536,0.05508,0.05168,0.04938,0.04683,0.04581,0.04575,0.04523,0.0387,0.03713,0.03696,0.0334,0.03083,0.02932,0.02808,0.02519,0.02317,0.02276,0.02178,0.0215,0.02034,0.01957,0.01919,0.01501,0.01301,0.01279,0.00983,0.00939,0.00851,0.00628,0.00201,0.00099],"total":0}]}
\ No newline at end of file
diff --git a/app/src/layers/index.ts b/app/src/layers/index.ts
new file mode 100644
index 0000000..add0926
--- /dev/null
+++ b/app/src/layers/index.ts
@@ -0,0 +1,2 @@
+export * from "./types";
+export * from "./contents";
diff --git a/app/src/layers/overlays/BurnedBuildingOverlay.stories.tsx b/app/src/layers/overlays/BurnedBuildingOverlay.stories.tsx
new file mode 100644
index 0000000..1bdd357
--- /dev/null
+++ b/app/src/layers/overlays/BurnedBuildingOverlay.stories.tsx
@@ -0,0 +1,29 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import ToshinBurnedAreaJSON from "../data/toshin-burned-area3-zero.json";
+
+import { BurnedBuildingOverlay } from ".";
+
+const meta: Meta = {
+ component: BurnedBuildingOverlay,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ show: true,
+ data: ToshinBurnedAreaJSON.list,
+ getColor: (value: number) => {
+ if (100 < value) return "rgb(235, 51, 35)";
+ if (50 < value) return "rgb(222, 130, 68)";
+ if (20 < value) return "rgb(255, 254, 85)";
+ if (10 < value) return "rgb(117, 250, 76)";
+ if (1 < value) return "rgb(116, 252, 253)";
+ if (0 < value) return "rgb(144, 138, 212)";
+ return "rgb(160, 179, 206)";
+ },
+ },
+};
diff --git a/app/src/layers/overlays/BurnedBuildingOverlay.tsx b/app/src/layers/overlays/BurnedBuildingOverlay.tsx
new file mode 100644
index 0000000..f33042b
--- /dev/null
+++ b/app/src/layers/overlays/BurnedBuildingOverlay.tsx
@@ -0,0 +1,443 @@
+import { styled } from "@linaria/react";
+import { FC, memo, useEffect, useLayoutEffect, useMemo, useRef, useState } from "react";
+import { useTranslation } from "react-i18next";
+
+import { MINMIZED_REPORT_WIDTH } from "../../components/MinimizedReport";
+import { breakPoint, breakpointMediaQueries, GOTHIC_FONT_FAMILY } from "../../constants";
+import { useMediaQuery } from "../../hooks";
+import { OverlayContentProps } from "../../map/layers";
+import { splitN } from "../../utils";
+
+type Props = OverlayContentProps & {
+ isToshin: boolean;
+ data: { name: string; values: number[]; total?: number }[];
+ getColor: (v: number) => string;
+};
+
+export const BurnedBuildingOverlay: FC = memo(
+ function BurnedBuildingOverlayPresenter({ show, data, getColor, isToshin }) {
+ const {
+ t,
+ i18n: { language },
+ } = useTranslation();
+ const isBreakpointMd = useMediaQuery(`(max-width: ${breakPoint.md}px)`);
+ const gridRef = useRef(null);
+ const imageURL = useMemo(() => {
+ if (isToshin) {
+ return language === "en"
+ ? "img/burned-overlay/toshin-en-sp.png"
+ : "img/burned-overlay/toshin-ja-sp.png";
+ } else {
+ return language === "en"
+ ? "img/burned-overlay/tama-en-sp.png"
+ : "img/burned-overlay/tama-ja-sp.png";
+ }
+ }, [isToshin, language]);
+
+ if (import.meta.env.DEV) {
+ // eslint-disable-next-line react-hooks/rules-of-hooks
+ useEffect(() => {
+ if (!show || !isBreakpointMd) return;
+ if (!gridRef.current) return;
+ const timer = window.setTimeout(() => {
+ import("html-to-image").then(({ toPng }) => {
+ if (!gridRef.current) return;
+ toPng(gridRef.current).then(blob => {
+ console.log("BURNED OVERLAY IMAGE: ", blob);
+ return;
+ });
+ });
+ }, 10000);
+ return () => window.clearTimeout(timer);
+ }, [show, isBreakpointMd]);
+ }
+
+ if (!show) return;
+ return (
+
+ {!isBreakpointMd && (
+
+
+ {splitN(
+ t(
+ "Let's take a look at the distribution of burned buildings by municipalities on a map.",
+ ),
+ )}
+
+
+ {splitN(
+ t(
+ "Have you identified any areas where you live or where your school/workplace is located? This data could be a starting point for researching fireproofing measures for nearby locations.",
+ ),
+ )}
+
+
+ )}
+
+ {isBreakpointMd && (
+
+ {splitN(
+ t(
+ "Let's take a look at the distribution of burned buildings by municipalities on a map. Have you identified any areas where you live or where your school/workplace is located? This data could be a starting point for researching fireproofing measures for nearby locations.",
+ ),
+ )}
+
+ )}
+ {isBreakpointMd ? (
+
+
+
+ ) : (
+
+ {data.map(({ name, values }) =>
+ name.endsWith("区") ? (
+
+ ) : null,
+ )}
+
+ )}
+
+
+ );
+ },
+ (prev, next) =>
+ prev.data === next.data && prev.getColor === next.getColor && prev.show === next.show,
+);
+
+const GridItem = ({
+ originalName,
+ name,
+ values,
+ getColor,
+}: { originalName: string; name: string; values: number[] } & Pick) => {
+ return (
+ -
+
{name}
+
+
+ );
+};
+
+const RectList: FC<{ originalName: string; values: number[] } & Pick> = memo(
+ function RectListPresenter({ originalName, values, getColor }) {
+ return (
+
+ {values.map((v, i) =>
+ Math.floor(Math.random() * 10) % 3 === 0 ? (
+
+ ) : (
+
+ ),
+ )}
+
+ );
+ },
+ (prev, next) =>
+ prev.originalName === next.originalName &&
+ prev.values === next.values &&
+ prev.getColor === next.getColor,
+);
+
+const RectWrapper = ({ color }: { color: string }) => {
+ const ref = useRef(null);
+ const [initialized, setInitialized] = useState(false);
+ const [position, setPosition] = useState({ x: 0, y: 0, overX: 0, overY: 0 });
+
+ useLayoutEffect(() => {
+ const minX = window.innerWidth / 3;
+ const minY = window.innerHeight / 2.3;
+ const boundingBox = {
+ minX,
+ minY,
+ maxX: window.innerWidth - minX,
+ maxY: window.innerHeight - minY,
+ };
+ const rect = ref.current?.getBoundingClientRect();
+ if (!rect) return;
+
+ const centerX = (boundingBox.minX + boundingBox.maxX) / 2;
+ const centerY = (boundingBox.minY + boundingBox.maxY) / 2;
+ const baseX = centerX - rect.left;
+ const baseY = centerY - rect.top;
+
+ const lengthX = boundingBox.maxX - boundingBox.minX;
+ const lengthY = boundingBox.maxY - boundingBox.minY;
+
+ const randomX = Math.random() * lengthX - lengthX / 2;
+ const randomY = Math.random() * lengthY - lengthY / 2;
+
+ const x = baseX + randomX;
+ const y = baseY + randomY;
+
+ const overX = Math.random() * 20 - Math.random() * 15;
+ const overY = Math.random() * 20 - Math.random() * 15;
+
+ setPosition({
+ x,
+ y,
+ overX,
+ overY,
+ });
+ setInitialized(true);
+ }, []);
+
+ return (
+
+ );
+};
+
+const NonTransformRectWrapper = ({ color }: { color: string }) => {
+ const ref = useRef(null);
+ const [initialized, setInitialized] = useState(false);
+
+ useLayoutEffect(() => {
+ setInitialized(true);
+ }, []);
+
+ return ;
+};
+
+const Root = styled.div`
+ z-index: 0;
+ position: absolute;
+ inset: 0;
+ width: 100%;
+ height: 100%;
+ background-color: rgba(230, 230, 251, 0);
+ padding-left: 80px;
+ padding-right: ${MINMIZED_REPORT_WIDTH + 32 + 30}px;
+ box-sizing: border-box;
+ will-change: transform, opacity;
+ background-color: rgba(230, 230, 251, 0.9);
+ opacity: 0;
+
+ animation: 1s ease-out 0.5s fadein;
+ animation-fill-mode: forwards;
+ @keyframes fadein {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+
+ ${breakpointMediaQueries.md} {
+ padding: 10px;
+ z-index: 1;
+ }
+`;
+
+const Container = styled.div`
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-direction: column;
+ height: 100%;
+ width: 100%;
+ margin-top: 60px;
+
+ ${breakpointMediaQueries.md} {
+ margin-top: -40px;
+ }
+`;
+
+const TextContainer = styled.div`
+ display: flex;
+ margin-bottom: 10px;
+ gap: 0 35px;
+ position: absolute;
+ margin-top: 130px;
+ margin-left: 50px;
+ margin-right: 100px;
+`;
+
+const Title = styled.div`
+ font-size: 25px;
+ color: #463c64;
+ font-weight: 700;
+ line-height: 1.4;
+ white-space: nowrap;
+`;
+
+const Description = styled.div`
+ font-size: 18px;
+ margin-bottom: 25px;
+ color: #463c64;
+ max-width: 1000px;
+
+ opacity: 0;
+
+ animation: 1s ease-out 0s fadein;
+ animation-fill-mode: forwards;
+ @keyframes fadein {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+
+ ${breakpointMediaQueries.md} {
+ font-size: 10px;
+ margin-bottom: 10px;
+ max-width: 100%;
+ }
+`;
+
+const GridImageContainer = styled.div`
+ width: 90%;
+`;
+
+const GridImage = styled.img`
+ width: 100%;
+ height: auto;
+`;
+
+const GridRoot = styled.div`
+ display: grid;
+ grid-template-columns: repeat(12, 1fr);
+ gap: 30px 1%;
+ width: 100%;
+ max-width: 65vw;
+ background: transparent;
+
+ ${breakpointMediaQueries.md} {
+ max-width: 100%;
+ grid-template-columns: repeat(7, 1fr);
+ gap: 5px 3%;
+ }
+`;
+
+const Item = styled.div`
+ display: flex;
+ gap: 10px 0;
+ flex-direction: column;
+ align-items: center;
+ width: 100%;
+
+ ${breakpointMediaQueries.md} {
+ gap: 5px 0;
+ }
+`;
+
+const Label = styled.div`
+ flex: 0;
+ font-size: 14px;
+ color: #463c64;
+ opacity: 0;
+ height: 100%;
+ font-family: ${GOTHIC_FONT_FAMILY};
+
+ animation: 1s ease-out 2s fadein;
+ animation-fill-mode: forwards;
+ @keyframes fadein {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+
+ ${breakpointMediaQueries.md} {
+ font-size: 8px;
+ }
+`;
+
+const Grid = styled.div`
+ display: grid;
+ grid-template-columns: repeat(18, minmax(0px, 1fr));
+ grid-template-rows: auto;
+ gap: 1px;
+ width: 100%;
+
+ ${breakpointMediaQueries.md} {
+ grid-template-columns: repeat(20, minmax(0px, 1fr));
+ }
+`;
+
+const Rect = styled.div<{
+ color: string;
+ x: number;
+ y: number;
+ overX: number;
+ overY: number;
+}>`
+ --transformX: ${({ x }) => `${x}px`};
+ --transformY: ${({ y }) => `${y}px`};
+ --transformOverX: ${({ overX }) => `${overX}px`};
+ --transformOverY: ${({ overY }) => `${overY}px`};
+
+ width: 100%;
+ height: 100%;
+ aspect-ratio: 1;
+ background-color: ${({ color }) => color};
+ transform: translate(var(--transformX), var(--transformY));
+
+ &.play {
+ opacity: 0;
+ animation:
+ 2s ease-out 0s slidein,
+ 1s ease-in-out 0s fadein;
+ animation-fill-mode: forwards;
+ @keyframes slidein {
+ 0% {
+ transform: translate(var(--transformX), var(--transformY));
+ }
+ 70% {
+ transform: translate(var(--transformOverX), var(--transformOverY));
+ }
+ 100% {
+ transform: translate(0%, 0%);
+ }
+ }
+ @keyframes fadein {
+ 0% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+ }
+ }
+`;
+
+const NonTransformRect = styled.div<{
+ color: string;
+}>`
+ width: 100%;
+ height: 100%;
+ aspect-ratio: 1;
+ background-color: ${({ color }) => color};
+
+ &.play {
+ opacity: 0;
+ animation: 1s ease-in-out 2s fadein;
+ animation-fill-mode: forwards;
+ @keyframes fadein {
+ 0% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+ }
+ }
+`;
diff --git a/app/src/layers/overlays/DisclaimerOverlay.tsx b/app/src/layers/overlays/DisclaimerOverlay.tsx
new file mode 100644
index 0000000..7627228
--- /dev/null
+++ b/app/src/layers/overlays/DisclaimerOverlay.tsx
@@ -0,0 +1,200 @@
+import { styled } from "@linaria/react";
+import { FC, useEffect, useState } from "react";
+import { useTranslation } from "react-i18next";
+
+import { Button } from "../../components/Button";
+import { breakpointMediaQueries, TITLE_FONT_FAMILY } from "../../constants";
+import { OverlayContentProps } from "../../map/layers";
+import { splitN } from "../../utils";
+
+type Props = OverlayContentProps & {
+ onClick?: () => void;
+};
+
+const FADE_DURATION = 1000;
+
+export const DisclaimerOverlay: FC = ({ show, onClick }) => {
+ const { t } = useTranslation();
+ const [animatedShow, setAnimatedShow] = useState(show);
+ const [checked, setChecked] = useState(false);
+
+ const handleHide = () => {
+ if (checked && onClick) onClick();
+
+ setAnimatedShow(false);
+ };
+
+ useEffect(() => {
+ if (animatedShow) return;
+ const timer = window.setTimeout(() => {
+ onClick;
+ }, FADE_DURATION);
+ return () => window.clearTimeout(timer);
+ }, [animatedShow, onClick]);
+
+ if (!show) return;
+
+ return (
+
+ {t("Disclaimer")}
+
+ {splitN(
+ t(
+ "Please be aware that we cannot accept any responsibility for any loss or damage to life, body, or property that may occur in activities based on information provided on this site. Our site may experience temporary delays or interruptions without prior notice to users due to reasons such as communication network equipment, system failures, maintenance, or other unavoidable circumstances.Even in the event of delays, interruptions, or other issues with the display, we cannot accept any responsibility for damages incurred by users or other third parties resulting from these issues.Please understand these conditions in advance.",
+ ),
+ )}
+
+
+ setChecked(!checked)}
+ />
+
+ {t("Not to be displayed in the future")}
+
+
+ OK
+
+ );
+};
+
+const Root = styled.div`
+ position: absolute;
+ inset: 0;
+ background-color: rgba(0, 0, 0, 0.9);
+ opacity: 0;
+ box-sizing: border-box;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ box-sizing: border-box;
+ z-index: 1;
+
+ animation: ${FADE_DURATION}ms ease-out 5s fadein;
+ animation-fill-mode: forwards;
+ @keyframes fadein {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+
+ &.hide {
+ opacity: 1;
+ animation: ${FADE_DURATION}ms ease-out 0s fadeout;
+ animation-fill-mode: forwards;
+ @keyframes fadeout {
+ from {
+ opacity: 1;
+ }
+ to {
+ opacity: 0;
+ display: none;
+ visibility: hidden;
+ }
+ }
+ }
+
+ ${breakpointMediaQueries.md} {
+ padding: 0 10px;
+ }
+`;
+
+const Title = styled.h2`
+ font-family: ${TITLE_FONT_FAMILY};
+ font-weight: lighter;
+ display: inline-block;
+ box-sizing: border-box;
+ padding: 10px;
+ padding-top: 0;
+ font-size: 45px;
+ margin: 0;
+ margin-bottom: 20px;
+ color: #ffffff;
+
+ ${breakpointMediaQueries.md} {
+ font-size: 30px;
+ margin-bottom: 15px;
+ }
+`;
+
+const Description = styled.div`
+ box-sizing: border-box;
+ padding: 5px 10px;
+ margin: 5px 0;
+ color: #ffffff;
+ font-size: 20px;
+ margin: 0;
+ margin-bottom: 60px;
+ line-height: 1.5;
+
+ width: 70%;
+
+ ${breakpointMediaQueries.md} {
+ font-size: 12px;
+ margin-bottom: 15px;
+ }
+`;
+
+const RoundButton = styled(Button)`
+ pointer-events: auto;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: auto;
+ padding: 1rem 8rem;
+ border: 1px solid #ffffff;
+ border-radius: 100vh;
+ font-size: 20px;
+
+ ${breakpointMediaQueries.md} {
+ font-size: 16px;
+ padding: 0.5rem 4rem;
+ }
+`;
+
+const CheckboxWrapper = styled.div`
+ display: flex;
+ align-items: center;
+ margin-bottom: 20px;
+`;
+
+const Checkbox = styled.input`
+ appearance: none;
+ width: 20px;
+ height: 20px;
+ border: 2px solid #ffffff;
+ border-radius: 4px;
+ margin-right: 10px;
+ cursor: pointer;
+ position: relative;
+
+ &:checked {
+ background-color: #463c64;
+ border-color: #463c64;
+
+ &:after {
+ content: "";
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ width: 6px;
+ height: 12px;
+ border: solid #ffffff;
+ border-width: 0 3px 3px 0;
+ transform: translate(-50%, -65%) rotate(45deg);
+ }
+ }
+`;
+
+const CheckboxLabel = styled.label`
+ color: #ffffff;
+ font-size: 16px;
+ cursor: pointer;
+`;
diff --git a/app/src/layers/overlays/SceneDescriptionOverlay.stories.tsx b/app/src/layers/overlays/SceneDescriptionOverlay.stories.tsx
new file mode 100644
index 0000000..6a653e3
--- /dev/null
+++ b/app/src/layers/overlays/SceneDescriptionOverlay.stories.tsx
@@ -0,0 +1,30 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { MainScenes } from "../../utils";
+
+import { SceneDescriptionOverlay } from ".";
+
+const meta: Meta = {
+ component: SceneDescriptionOverlay,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ show: true,
+ sceneName: MainScenes.Scene2,
+ timeout: Infinity,
+ },
+};
+
+export const WithoutSubtitle: Story = {
+ args: {
+ show: true,
+ sceneName: MainScenes.Scene1,
+ backgroundColor: "#E6E6FA",
+ color: "#463C64",
+ },
+};
diff --git a/app/src/layers/overlays/SceneDescriptionOverlay.tsx b/app/src/layers/overlays/SceneDescriptionOverlay.tsx
new file mode 100644
index 0000000..62af55a
--- /dev/null
+++ b/app/src/layers/overlays/SceneDescriptionOverlay.tsx
@@ -0,0 +1,257 @@
+import { styled } from "@linaria/react";
+import { FC, useEffect, useMemo, useState } from "react";
+import { useTranslation } from "react-i18next";
+
+import { Button } from "../../components/Button";
+import { breakpointMediaQueries, TITLE_FONT_FAMILY } from "../../constants";
+import { SCENE_NAVIGATION_WIDTH } from "../../containers/SceneNavigationContainer";
+import { useNavigationContext } from "../../contexts/NavigationContexts";
+import { useEffectSound, useRefValue } from "../../hooks";
+import { OverlayContentProps } from "../../map/layers";
+import { MainScenes, splitN } from "../../utils";
+
+type Props = OverlayContentProps & {
+ sceneName: MainScenes;
+ color?: string;
+ backgroundColor?: string;
+ timeout?: number;
+};
+
+export const SCENE_DESCRIPTION_TIMEOUT = 8000;
+
+const FADE_DURATION = 500;
+
+export const SceneDescriptionOverlay: FC = ({
+ show,
+ sceneName,
+ color = "#ffffff",
+ backgroundColor = "#16A2A2",
+}) => {
+ const { t } = useTranslation();
+ const [animatedShow, setAnimatedShow] = useState(show);
+ const { play } = useEffectSound();
+
+ const subtitle = useMemo(() => {
+ const translated = t(`${sceneName}_overlay_subtitle`, {
+ defaultValue: "NONE",
+ });
+ return translated !== "NONE" ? translated : undefined;
+ }, [sceneName, t]);
+ const title = useMemo(() => t(`${sceneName}_overlay_title`), [sceneName, t]);
+
+ const brDescription = useMemo(
+ () => splitN(t(`${sceneName}_overlay_description`)),
+ [sceneName, t],
+ );
+
+ useEffect(() => {
+ setAnimatedShow(show);
+ }, [show]);
+
+ const { navigationState, setCurrentSceneContentIndex } = useNavigationContext();
+ const currentSceneContentIndexRef = useRefValue(navigationState.currentSceneContentIndex);
+ const handleSkipDescription = () => {
+ play("on");
+ setCurrentSceneContentIndex(currentSceneContentIndexRef.current + 1);
+ setAnimatedShow(false);
+ };
+
+ return (
+
+
+
+
+ {sceneName}
+
+ {subtitle && (
+
+ {subtitle}
+
+ )}
+
+
{title}
+
+ {brDescription.map((desc, i) => (
+
+
+ {desc}
+
+
+ ))}
+ {sceneName === "SCENE_03" && (
+
+ {t("Source: ")}
+
+ {t("Tokyo earthquake-resistant portal site")}
+
+
+ )}
+ {sceneName === "SCENE_04" && (
+
+ {t("Source: ")}
+
+ {t(
+ 'Report on "Estimation of damage in the event of an earthquake directly hitting Tokyo"',
+ )}
+
+
+ )}
+
+
+ OK
+
+
+ );
+};
+
+const Root = styled.div<{ backgroundColor: string }>`
+ position: absolute;
+ inset: 0;
+ background-color: ${({ backgroundColor }) => backgroundColor + "aa"};
+ opacity: 0;
+ box-sizing: border-box;
+ display: grid;
+ align-content: center;
+ justify-content: center;
+ box-sizing: border-box;
+
+ padding-left: ${SCENE_NAVIGATION_WIDTH + 10}px;
+ padding-right: 100px;
+
+ animation: ${FADE_DURATION}ms ease-out 0s fadein;
+ animation-fill-mode: forwards;
+ @keyframes fadein {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+
+ &.hide {
+ opacity: 1;
+ animation: ${FADE_DURATION}ms ease-out 0s fadeout;
+ animation-fill-mode: forwards;
+ @keyframes fadeout {
+ from {
+ opacity: 1;
+ }
+ to {
+ opacity: 0;
+ display: none;
+ visibility: hidden;
+ }
+ }
+ }
+
+ ${breakpointMediaQueries.md} {
+ z-index: 2;
+ align-content: start;
+ padding: 50px 10px;
+ }
+`;
+
+const Container = styled.div<{ color: string }>`
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ gap: 25px;
+ color: ${({ color }) => color};
+
+ ${breakpointMediaQueries.md} {
+ margin-top: 15px;
+ gap: 10px;
+ }
+`;
+
+const SceneName = styled.span<{ backgroundColor: string }>`
+ display: inline-block;
+ box-sizing: border-box;
+ font-size: 14px;
+ margin-bottom: 7.5px;
+ padding: 5px 10px;
+ background-color: ${({ backgroundColor }) => backgroundColor};
+
+ ${breakpointMediaQueries.md} {
+ margin-bottom: 2px;
+ font-size: 7px;
+ }
+`;
+
+const SubTitle = styled.span<{ backgroundColor: string }>`
+ font-family: ${TITLE_FONT_FAMILY};
+ display: inline-block;
+ box-sizing: border-box;
+ font-size: 20px;
+ padding: 5px 10px;
+ padding-bottom: 0;
+ background-color: ${({ backgroundColor }) => backgroundColor};
+
+ ${breakpointMediaQueries.md} {
+ font-size: 12px;
+ padding: 3px 7px;
+ }
+`;
+
+const Title = styled.h2<{ backgroundColor: string }>`
+ font-family: ${TITLE_FONT_FAMILY};
+ font-weight: lighter;
+ display: inline-block;
+ box-sizing: border-box;
+ padding: 3px 5px;
+ padding-top: 0;
+ font-size: 35px;
+ margin: 0;
+ margin-bottom: 12px;
+ background-color: ${({ backgroundColor }) => backgroundColor};
+
+ ${breakpointMediaQueries.md} {
+ font-size: 18px;
+ margin-bottom: 5px;
+ padding: 3px 7px;
+ }
+`;
+const Description = styled.p<{ backgroundColor: string }>`
+ display: inline-block;
+ box-sizing: border-box;
+ font-size: 18px;
+ padding: 2.5px 7.5px;
+ margin: 2.5px 0;
+ background-color: ${({ backgroundColor }) => backgroundColor};
+
+ ${breakpointMediaQueries.md} {
+ font-size: 12px;
+ margin: 2px 0;
+ padding: 3px 7px;
+ }
+`;
+
+const StyledLink = styled.a`
+ color: #ffffff
+ text-decoration: underline;
+`;
+
+const RoundButton = styled(Button)`
+ pointer-events: auto;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 30%;
+ padding: 0.6rem 6rem;
+ border: 1px solid #463c64;
+ border-radius: 100vh;
+ font-size: 20px;
+
+ ${breakpointMediaQueries.md} {
+ font-size: 15px;
+ margin-bottom: 5px;
+ padding: 0.3rem 4rem;
+ }
+`;
diff --git a/app/src/layers/overlays/TutorialOverlay.tsx b/app/src/layers/overlays/TutorialOverlay.tsx
new file mode 100644
index 0000000..e6c7f9d
--- /dev/null
+++ b/app/src/layers/overlays/TutorialOverlay.tsx
@@ -0,0 +1,131 @@
+import { styled } from "@linaria/react";
+import { FC } from "react";
+import { useTranslation } from "react-i18next";
+
+import { Close } from "../../components/icons/Close";
+import { breakpointMediaQueries, breakPoint, TITLE_FONT_FAMILY } from "../../constants";
+import { SCENE_NAVIGATION_WIDTH } from "../../containers/SceneNavigationContainer";
+import { useMediaQuery } from "../../hooks";
+import { OverlayContentProps } from "../../map/layers";
+
+type Props = OverlayContentProps & {
+ onSkip: () => void;
+};
+
+const FADE_DURATION = 500;
+
+export const TutorialOverlay: FC = ({ onSkip }) => {
+ const { t, i18n } = useTranslation();
+ const isEn = i18n.language === "en";
+
+ const isBreakpointMd = useMediaQuery(`(max-width: ${breakPoint.md}px)`);
+
+ return (
+
+
+
+
+
+
+ {t("Tutorial text")}
+ {!isBreakpointMd ? (
+
+ ) : (
+
+ )}
+
+
+
+ );
+};
+
+const Root = styled.div<{ backgroundColor: string }>`
+ position: absolute;
+ inset: 0;
+ background-color: ${({ backgroundColor }) => backgroundColor + "aa"};
+ opacity: 0;
+ box-sizing: border-box;
+ display: grid;
+ align-content: center;
+ justify-content: center;
+ box-sizing: border-box;
+
+ padding-left: ${SCENE_NAVIGATION_WIDTH + 10}px;
+ padding-right: 100px;
+
+ animation: ${FADE_DURATION}ms ease-out 0s fadein;
+ animation-fill-mode: forwards;
+ @keyframes fadein {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+
+ ${breakpointMediaQueries.md} {
+ padding: 0 10px;
+ }
+`;
+
+const Container = styled.div<{ color: string }>`
+ display: block;
+ color: ${({ color }) => color};
+`;
+
+const ImageContainer = styled.div`
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ text-align: center;
+ min-width: 80%;
+
+ ${breakpointMediaQueries.md} {
+ top: 40%;
+ }
+`;
+
+const ImageText = styled.p<{ isEn: boolean }>`
+ font-family: ${TITLE_FONT_FAMILY};
+ margin-bottom: 40px;
+ color: #ffffff;
+ font-size: 40px;
+ ${breakpointMediaQueries.md} {
+ font-size: ${({ isEn }) => (isEn ? "20px" : "25px")};
+ margin-bottom: 20px;
+ }
+`;
+
+const SkipButton = styled.div`
+ position: absolute;
+ top: 150px;
+ left: 30px;
+ display: flex;
+ align-items: center;
+ gap: 10px;
+ cursor: pointer;
+ z-index: 1;
+ color: white;
+
+ ${breakpointMediaQueries.md} {
+ top: 20px;
+ }
+`;
diff --git a/app/src/layers/overlays/TutorialSwitcher.tsx b/app/src/layers/overlays/TutorialSwitcher.tsx
new file mode 100644
index 0000000..5aa21ab
--- /dev/null
+++ b/app/src/layers/overlays/TutorialSwitcher.tsx
@@ -0,0 +1,54 @@
+import { FC, useCallback, useEffect, useState } from "react";
+
+import { CircleTextContainer } from "../../containers/CircleTextContainer";
+import { useFirstVisitContext } from "../../contexts/FirstVisitContexts";
+import { OverlayContentProps } from "../../map/layers";
+import { MainScenes } from "../../utils";
+
+import { SceneDescriptionOverlay } from "./SceneDescriptionOverlay";
+import { TutorialOverlay } from "./TutorialOverlay";
+
+type Props = OverlayContentProps;
+
+export const TUTORIAL_TIMEOUT = 10000;
+
+export const TutorialSwitcher: FC = ({ show }) => {
+ const { firstVisit, setFirstVisit } = useFirstVisitContext();
+ const { isTutorialCompleted } = firstVisit;
+ const [showTutorialOverlay, setShowTutorialOverlay] = useState(!isTutorialCompleted);
+
+ const handleTutorialSkip = useCallback(() => {
+ setFirstVisit(currentFirstVisit => ({
+ ...currentFirstVisit,
+ isTutorialCompleted: true,
+ }));
+ setShowTutorialOverlay(false);
+ }, [setFirstVisit]);
+
+ useEffect(() => {
+ if (!isTutorialCompleted) {
+ const timer = setTimeout(() => {
+ handleTutorialSkip();
+ }, TUTORIAL_TIMEOUT);
+ return () => clearTimeout(timer);
+ }
+ }, [isTutorialCompleted, handleTutorialSkip]);
+
+ if (showTutorialOverlay) {
+ return (
+ <>
+
+
+ >
+ );
+ } else {
+ return (
+
+ );
+ }
+};
diff --git a/app/src/layers/overlays/index.ts b/app/src/layers/overlays/index.ts
new file mode 100644
index 0000000..ce5c64d
--- /dev/null
+++ b/app/src/layers/overlays/index.ts
@@ -0,0 +1,4 @@
+export * from "./BurnedBuildingOverlay";
+export * from "./SceneDescriptionOverlay";
+export * from "./TutorialSwitcher";
+export * from "./DisclaimerOverlay";
diff --git a/app/src/layers/types.ts b/app/src/layers/types.ts
new file mode 100644
index 0000000..8d3989d
--- /dev/null
+++ b/app/src/layers/types.ts
@@ -0,0 +1,11 @@
+import { Layer } from "../map";
+import { MainScenes, OpeningScenes, SubScenes } from "../utils";
+
+export type LayerData = Layer & {
+ scene: (OpeningScenes | MainScenes)[];
+ subScene?: SubScenes[];
+ isMain?: boolean;
+ contentIndex?: number;
+ contentDuration?: number;
+ contentIndexToDisableAnimation?: number;
+};
diff --git a/app/src/main.tsx b/app/src/main.tsx
new file mode 100644
index 0000000..ee0a8ea
--- /dev/null
+++ b/app/src/main.tsx
@@ -0,0 +1,17 @@
+import React from "react";
+import ReactDOM from "react-dom/client";
+import { RouterProvider } from "react-router-dom";
+
+import "./requestIdleCallbackShim.ts";
+import "./index.css";
+
+import { App } from "./App.tsx";
+import { router } from "./router.tsx";
+
+ReactDOM.createRoot(document.getElementById("root")!).render(
+
+
+
+
+ ,
+);
diff --git a/app/src/map/LayerList.tsx b/app/src/map/LayerList.tsx
new file mode 100644
index 0000000..597112f
--- /dev/null
+++ b/app/src/map/LayerList.tsx
@@ -0,0 +1,119 @@
+import { FC } from "react";
+
+import {
+ MVTContainer,
+ TilesetContainer,
+ AnimationGradientPointContainer,
+ TerrainContainer,
+ WaterContainer,
+ GridContainer,
+ PolygonContainer,
+ ParticleContainer,
+ TilesetListLayer,
+ TilesetListProps,
+ TilesetListContainer,
+ CameraContainer,
+ MarkerContainer,
+ OverlayContainer,
+ LiquidContainer,
+} from "./layer-containers";
+import {
+ TilesetProps,
+ TilesetLayer,
+ BaseLayerProps,
+ MVTLayer,
+ MVTProps,
+ AnimationGradientPointLayer,
+ AnimationGradientPointProps,
+ PolygonLayer,
+ PolygonProps,
+ TerrainLayer,
+ TerrainProps,
+ WaterProps,
+ WaterLayer,
+ GridProps,
+ GridLayer,
+ ParticleLayer,
+ ParticleProps,
+ CameraProps,
+ CameraLayer,
+ MarkerLayer,
+ MarkerProps,
+ OverlayProps,
+ OverlayLayer,
+ LiquidLayer,
+ LiquidProps,
+} from "./layers";
+
+export type Layer =
+ | TilesetLayer
+ | TilesetListLayer
+ | MVTLayer
+ | AnimationGradientPointLayer
+ | PolygonLayer
+ | GridLayer
+ | TerrainLayer
+ | LiquidLayer
+ | ParticleLayer
+ | WaterLayer
+ | CameraLayer
+ | MarkerLayer
+ | OverlayLayer;
+
+export type LayerProps =
+ | TilesetProps
+ | TilesetListProps
+ | MVTProps
+ | AnimationGradientPointProps
+ | PolygonProps
+ | GridProps
+ | TerrainProps
+ | LiquidProps
+ | ParticleProps
+ | WaterProps
+ | CameraProps
+ | MarkerProps
+ | OverlayProps;
+
+export type LayerItemProps = LayerProps;
+
+const LayerItem: FC = props => {
+ switch (props.type) {
+ case "tileset":
+ return ;
+ case "tilesetList":
+ return ;
+ case "mvt":
+ return ;
+ case "animationGradientPoint":
+ return ;
+ case "polygon":
+ return ;
+ case "grid":
+ return ;
+ case "terrain":
+ return ;
+ case "liquid":
+ return ;
+ case "water":
+ return ;
+ case "particle":
+ return ;
+ case "camera":
+ return ;
+ case "marker":
+ return ;
+ case "overlay":
+ return ;
+ default:
+ return null;
+ }
+};
+
+type LayersProps = BaseLayerProps<{
+ layers: LayerProps[];
+}>;
+
+export const LayerList: FC = ({ layers, ...props }) => {
+ return layers.map(l => );
+};
diff --git a/app/src/map/Map.stories.tsx b/app/src/map/Map.stories.tsx
new file mode 100644
index 0000000..733cc55
--- /dev/null
+++ b/app/src/map/Map.stories.tsx
@@ -0,0 +1,61 @@
+import { Meta, StoryObj } from "@storybook/react";
+
+import { Map } from ".";
+
+const meta: Meta = {
+ component: Map,
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ layers: [
+ {
+ id: "marker",
+ type: "marker",
+ data: {
+ type: "FeatureCollection",
+ features: [
+ {
+ id: "1",
+ type: "Feature",
+ properties: {},
+ geometry: {
+ coordinates: [139.7946595372241, 35.70050511377363],
+ type: "Point",
+ },
+ },
+ {
+ id: "2",
+ type: "Feature",
+ properties: {},
+ geometry: {
+ coordinates: [139.79698837711567, 35.70203967315213],
+ type: "Point",
+ },
+ },
+ {
+ id: "3",
+ type: "Feature",
+ properties: {},
+ geometry: {
+ coordinates: [139.79911760215828, 35.7000566278154],
+ type: "Point",
+ },
+ },
+ ],
+ },
+ },
+ ],
+ },
+};
+
+export const Opening: Story = {
+ args: {
+ layers: [],
+ isOpening: true,
+ },
+};
diff --git a/app/src/map/Map.tsx b/app/src/map/Map.tsx
new file mode 100644
index 0000000..2ffe1a6
--- /dev/null
+++ b/app/src/map/Map.tsx
@@ -0,0 +1,256 @@
+import {
+ AmbientLight,
+ Layer as DeckLayer,
+ FlyToInterpolator,
+ LightingEffect,
+ MapViewState,
+ PickingInfo,
+ _SunLight,
+ DeckProps,
+} from "@deck.gl/core/typed";
+import { ViewStateChangeParameters } from "@deck.gl/core/typed/controllers/controller";
+import DeckGl from "@deck.gl/react/typed";
+import {
+ forwardRef,
+ useCallback,
+ useImperativeHandle,
+ useMemo,
+ useState,
+ useEffect,
+ useRef,
+} from "react";
+import Maplibre from "react-map-gl/maplibre";
+
+import { useMarkerDataContext } from "../contexts/MarkerContexts";
+import { Feature, Cursor } from "../utils";
+
+import { CameraChangeEvent } from "./events";
+import { Layer, LayerList } from "./LayerList";
+import { RenderLayer } from "./RenderLayers";
+
+const INITIAL_VIEW_STATE: Partial = {
+ longitude: 139.788877,
+ latitude: 35.6943181,
+ bearing: 360 * 0.2,
+ pitch: 360 * 0.2,
+ zoom: 12,
+};
+const MAP_STYLE = { width: "100vw", height: "100vh" };
+
+type Props = {
+ layers: Layer[];
+ initialViewState?: Partial;
+ isOpening: boolean;
+ isReportOpen: boolean;
+ isBreakpointMd: boolean;
+ pickable?: boolean;
+ onViewStateChange?: (viewState: MapViewState) => void;
+ onSelectFeature?: () => void;
+ onClick?: DeckProps["onClick"];
+};
+
+export type MapRef = {
+ zoom: (z: number) => void;
+};
+
+export const Map = forwardRef(function MapPresenter(
+ {
+ layers,
+ initialViewState = INITIAL_VIEW_STATE,
+ isReportOpen,
+ isBreakpointMd,
+ isOpening,
+ pickable,
+ onViewStateChange,
+ onSelectFeature,
+ onClick,
+ },
+ ref,
+) {
+ const [viewState, setViewState] = useState>(initialViewState);
+ const [displayedLayers, setDisplayedLayers] = useState([]);
+ const [ready, setReady] = useState(false);
+ const [onCameraChangeEvent] = useState(() => new CameraChangeEvent());
+
+ const [selectedFeature, setSelectedFeature] = useState();
+ const handleSelectFeature = useCallback(
+ (f?: Feature) => {
+ onSelectFeature?.();
+ setSelectedFeature(f);
+ },
+ [onSelectFeature],
+ );
+
+ const [cursor, setCursor] = useState("grab");
+ const handleChangeCursor = useCallback((c: Cursor) => {
+ setCursor(c);
+ }, []);
+
+ const { resetMarkerData } = useMarkerDataContext();
+
+ const handleResetMarkerData = useCallback(
+ (info?: PickingInfo) => {
+ if (!info?.object) {
+ setSelectedFeature(undefined);
+ resetMarkerData();
+ }
+ },
+ [resetMarkerData],
+ );
+
+ const handleLayerAdd = useCallback((l: RenderLayer) => setDisplayedLayers(v => [...v, l]), []);
+ const handleLayerRemove = useCallback(
+ (l: RenderLayer) =>
+ setDisplayedLayers(v => {
+ // TODO: Support nested layers
+ const idx = v.findIndex(i =>
+ i instanceof DeckLayer && l instanceof DeckLayer ? i.id === l.id : false,
+ );
+ return [...v.slice(0, idx), ...v.slice(idx + 1)];
+ }),
+ [],
+ );
+
+ const isCameraMovingRef = useRef(false);
+
+ useEffect(() => {
+ let timer: number;
+ if (initialViewState.transitionDuration) {
+ isCameraMovingRef.current = true;
+ timer = window.setTimeout(() => {
+ isCameraMovingRef.current = false;
+ }, Number(initialViewState.transitionDuration));
+ }
+ return () => window.clearTimeout(timer);
+ }, [initialViewState]);
+
+ const handleUpdateViewState = useCallback(
+ (
+ nextViewState: Partial | ((v: Partial) => Partial),
+ ) => {
+ if (isCameraMovingRef.current) return;
+ setViewState(prev => {
+ const next = typeof nextViewState === "function" ? nextViewState(prev) : nextViewState;
+ return { ...prev, ...next };
+ });
+ },
+ [],
+ );
+
+ const onReady = useCallback(() => {
+ setReady(true);
+ }, []);
+
+ const handleViewStateChange = useCallback(
+ ({ viewState }: ViewStateChangeParameters) => {
+ const next = {
+ ...viewState,
+ transitionInterpolator: undefined,
+ } as MapViewState;
+ setViewState(next);
+ onViewStateChange?.(next);
+ },
+ [onViewStateChange],
+ );
+
+ const effects = useMemo(() => {
+ const now = new Date();
+ const sunTime = new Date(now.getFullYear(), now.getMonth(), now.getDay(), 15);
+ const sun = new _SunLight({
+ timestamp: sunTime,
+ color: [255, 255, 255],
+ intensity: 1.5,
+ });
+ const ambient = new AmbientLight({
+ color: [255, 255, 255],
+ intensity: 7,
+ });
+ return [new LightingEffect({ ambient, sun })];
+ }, []);
+
+ const zoomingTimer = useRef();
+ const zoom = useCallback((z: number) => {
+ const ZOOM_DURATION = 300;
+ if (zoomingTimer.current) {
+ window.clearTimeout(zoomingTimer.current);
+ }
+ isCameraMovingRef.current = true;
+ setViewState(v => ({
+ ...v,
+ zoom: (v.zoom ?? INITIAL_VIEW_STATE.zoom ?? 0) + z,
+ transitionDuration: ZOOM_DURATION,
+ transitionInterpolator: new FlyToInterpolator({ curve: 1 }),
+ }));
+ zoomingTimer.current = window.setTimeout(() => {
+ isCameraMovingRef.current = false;
+ }, ZOOM_DURATION);
+ }, []);
+
+ useImperativeHandle(
+ ref,
+ () => ({
+ zoom,
+ }),
+ [zoom],
+ );
+
+ useEffect(() => {
+ setViewState(currentViewState => ({
+ ...currentViewState,
+ ...initialViewState,
+ }));
+ }, [initialViewState]);
+
+ useEffect(() => {
+ onCameraChangeEvent.viewState = viewState;
+ window.dispatchEvent(onCameraChangeEvent);
+ }, [onCameraChangeEvent, viewState]);
+
+ return (
+ {
+ handleViewStateChange(params);
+ handleResetMarkerData();
+ }}
+ layers={displayedLayers}
+ effects={effects}
+ onClick={(i, e) => {
+ onClick?.(i, e);
+ handleResetMarkerData(i);
+ }}
+ onDragStart={handleResetMarkerData}
+ controller={
+ isReportOpen && isBreakpointMd
+ ? {
+ scrollZoom: false,
+ touchZoom: false,
+ touchRotate: false,
+ keyboard: false,
+ }
+ : {}
+ }
+ getCursor={() => cursor}>
+
+ {ready && (
+
+ )}
+
+
+ );
+});
diff --git a/app/src/map/RenderLayers.tsx b/app/src/map/RenderLayers.tsx
new file mode 100644
index 0000000..514d9cc
--- /dev/null
+++ b/app/src/map/RenderLayers.tsx
@@ -0,0 +1,3 @@
+import { LayersList } from "@deck.gl/core/typed";
+
+export type RenderLayer = LayersList;
diff --git a/app/src/map/events.ts b/app/src/map/events.ts
new file mode 100644
index 0000000..b32a826
--- /dev/null
+++ b/app/src/map/events.ts
@@ -0,0 +1,8 @@
+import { MapViewState } from "@deck.gl/core/typed";
+
+export class CameraChangeEvent extends Event {
+ viewState?: Partial;
+ constructor() {
+ super("camerachange");
+ }
+}
diff --git a/app/src/map/index.ts b/app/src/map/index.ts
new file mode 100644
index 0000000..e83cac2
--- /dev/null
+++ b/app/src/map/index.ts
@@ -0,0 +1,3 @@
+export * from "./Map";
+export * from "./LayerList";
+export * from "./lib/regional-mesh";
diff --git a/app/src/map/layer-containers/AnimationGradientPointContainer.tsx b/app/src/map/layer-containers/AnimationGradientPointContainer.tsx
new file mode 100644
index 0000000..79c7846
--- /dev/null
+++ b/app/src/map/layer-containers/AnimationGradientPointContainer.tsx
@@ -0,0 +1,55 @@
+import { FC, useEffect, useMemo, useState } from "react";
+
+import { Point as PointGeometry, Feature, FeatureCollection } from "../../utils/types/common";
+import { AnimationGradientPoint, AnimationGradientPointProps } from "../layers";
+
+type Props = AnimationGradientPointProps;
+
+const NUM_GROUPS = 12;
+
+export const AnimationGradientPointContainer: FC = ({ ...props }) => {
+ const [time, setTime] = useState(0);
+ const [data, setData] = useState>>({
+ type: "FeatureCollection",
+ features: [],
+ });
+ const { url, altitude = 200 } = props;
+
+ useEffect(() => {
+ const fetchData = async () => {
+ try {
+ const response = await fetch(url);
+ const jsonData = await response.json();
+ setData(jsonData);
+ } catch (error) {
+ console.error("Error fetching data:", error);
+ }
+ };
+
+ fetchData();
+ }, [url]);
+
+ useEffect(() => {
+ const time = setInterval(() => {
+ setTime(prev => prev + 0.01);
+ }, 10);
+ return () => clearInterval(time);
+ }, []);
+
+ const splitData = useMemo(
+ () =>
+ Array.from({ length: NUM_GROUPS }).map((_, i) =>
+ data.features.filter(d => (d.properties.OBJECTID as number) % NUM_GROUPS === i),
+ ),
+ [data.features],
+ );
+
+ return (
+ <>
+ {splitData.map((d, i) => {
+ props = { ...props, time, data: d, delay: i, altitude };
+ return ;
+ })}
+ >
+ );
+};
diff --git a/app/src/map/layer-containers/CameraContainer.tsx b/app/src/map/layer-containers/CameraContainer.tsx
new file mode 100644
index 0000000..c38c5dd
--- /dev/null
+++ b/app/src/map/layer-containers/CameraContainer.tsx
@@ -0,0 +1,9 @@
+import { FC } from "react";
+
+import { CameraProps, Camera } from "../layers";
+
+type Props = CameraProps;
+
+export const CameraContainer: FC = ({ ...props }) => {
+ return ;
+};
diff --git a/app/src/map/layer-containers/GridContainer.tsx b/app/src/map/layer-containers/GridContainer.tsx
new file mode 100644
index 0000000..c60eb89
--- /dev/null
+++ b/app/src/map/layer-containers/GridContainer.tsx
@@ -0,0 +1,9 @@
+import { FC } from "react";
+
+import { Grid, GridProps } from "../layers";
+
+type Props = GridProps;
+
+export const GridContainer: FC = ({ ...props }) => {
+ return ;
+};
diff --git a/app/src/map/layer-containers/LiquidContainer.tsx b/app/src/map/layer-containers/LiquidContainer.tsx
new file mode 100644
index 0000000..7aaf54d
--- /dev/null
+++ b/app/src/map/layer-containers/LiquidContainer.tsx
@@ -0,0 +1,9 @@
+import { FC } from "react";
+
+import { Liquid, LiquidProps } from "../layers";
+
+type Props = LiquidProps;
+
+export const LiquidContainer: FC = ({ ...props }) => {
+ return ;
+};
diff --git a/app/src/map/layer-containers/MVTContainer.tsx b/app/src/map/layer-containers/MVTContainer.tsx
new file mode 100644
index 0000000..b4eed82
--- /dev/null
+++ b/app/src/map/layer-containers/MVTContainer.tsx
@@ -0,0 +1,9 @@
+import { FC } from "react";
+
+import { MVT, MVTProps } from "../layers";
+
+type Props = MVTProps;
+
+export const MVTContainer: FC = ({ ...props }) => {
+ return ;
+};
diff --git a/app/src/map/layer-containers/MarkerContainer.tsx b/app/src/map/layer-containers/MarkerContainer.tsx
new file mode 100644
index 0000000..efba4a9
--- /dev/null
+++ b/app/src/map/layer-containers/MarkerContainer.tsx
@@ -0,0 +1,66 @@
+import { FC, useEffect, useState } from "react";
+
+import { useMarkerDataContext } from "../../contexts/MarkerContexts";
+import { Point as PointGeometry, Feature, FeatureCollection } from "../../utils/types/common";
+import { Marker, MarkerProps } from "../layers";
+
+export const MarkerContainer: FC = ({ ...props }) => {
+ const [data, setData] = useState>>({
+ type: "FeatureCollection",
+ features: [],
+ });
+
+ const [selectedPinPosition, setSelectedPinPosition] = useState<{
+ x: number;
+ y: number;
+ } | null>(null);
+ const { setMarkerData } = useMarkerDataContext();
+
+ const { url, onChangeCursor, data: defaultData } = props;
+ useEffect(() => {
+ if (!url) return;
+ const fetchData = async () => {
+ try {
+ const response = await fetch(url);
+ const jsonData = await response.json();
+ setData(jsonData);
+ } catch (error) {
+ console.error("Error fetching data:", error);
+ }
+ };
+ fetchData();
+ }, [url]);
+
+ useEffect(() => {
+ if (props.selectedFeature && selectedPinPosition) {
+ const attributes = [
+ {
+ name: "名称",
+ value: props.selectedFeature.properties.P20_002 as string,
+ },
+ {
+ name: "住所",
+ value: props.selectedFeature.properties.P20_003 as string,
+ },
+ {
+ name: "施設の種類",
+ value: props.selectedFeature.properties.P20_004 as string,
+ },
+ {
+ name: "収容人数",
+ value: props.selectedFeature.properties.P20_001 as string,
+ },
+ ];
+ setMarkerData({ attributes, screenPosition: selectedPinPosition });
+ }
+ }, [props.selectedFeature, selectedPinPosition, setMarkerData]);
+
+ return (
+
+ );
+};
diff --git a/app/src/map/layer-containers/OverlayContainer.tsx b/app/src/map/layer-containers/OverlayContainer.tsx
new file mode 100644
index 0000000..3db72de
--- /dev/null
+++ b/app/src/map/layer-containers/OverlayContainer.tsx
@@ -0,0 +1,9 @@
+import { FC } from "react";
+
+import { Overlay, OverlayProps } from "../layers/Overlay";
+
+type Props = OverlayProps;
+
+export const OverlayContainer: FC = ({ ...props }) => {
+ return ;
+};
diff --git a/app/src/map/layer-containers/ParticleContainer.tsx b/app/src/map/layer-containers/ParticleContainer.tsx
new file mode 100644
index 0000000..1a509fd
--- /dev/null
+++ b/app/src/map/layer-containers/ParticleContainer.tsx
@@ -0,0 +1,9 @@
+import { FC } from "react";
+
+import { Particle, ParticleProps } from "../layers";
+
+type Props = ParticleProps;
+
+export const ParticleContainer: FC = ({ ...props }) => {
+ return ;
+};
diff --git a/app/src/map/layer-containers/PolygonContainer.tsx b/app/src/map/layer-containers/PolygonContainer.tsx
new file mode 100644
index 0000000..4181a5a
--- /dev/null
+++ b/app/src/map/layer-containers/PolygonContainer.tsx
@@ -0,0 +1,9 @@
+import { FC } from "react";
+
+import { Polygon, PolygonProps } from "../layers";
+
+type Props = PolygonProps;
+
+export const PolygonContainer: FC = ({ ...props }) => {
+ return ;
+};
diff --git a/app/src/map/layer-containers/TerrainContainer.tsx b/app/src/map/layer-containers/TerrainContainer.tsx
new file mode 100644
index 0000000..ce59d98
--- /dev/null
+++ b/app/src/map/layer-containers/TerrainContainer.tsx
@@ -0,0 +1,9 @@
+import { FC } from "react";
+
+import { Terrain, TerrainProps } from "../layers";
+
+type Props = TerrainProps;
+
+export const TerrainContainer: FC = ({ ...props }) => {
+ return ;
+};
diff --git a/app/src/map/layer-containers/TilesetContainer.tsx b/app/src/map/layer-containers/TilesetContainer.tsx
new file mode 100644
index 0000000..628475b
--- /dev/null
+++ b/app/src/map/layer-containers/TilesetContainer.tsx
@@ -0,0 +1,9 @@
+import { FC } from "react";
+
+import { Tileset, TilesetProps } from "../layers";
+
+type Props = TilesetProps;
+
+export const TilesetContainer: FC = ({ ...props }) => {
+ return ;
+};
diff --git a/app/src/map/layer-containers/TilesetListContainer.tsx b/app/src/map/layer-containers/TilesetListContainer.tsx
new file mode 100644
index 0000000..cbd4d1c
--- /dev/null
+++ b/app/src/map/layer-containers/TilesetListContainer.tsx
@@ -0,0 +1,15 @@
+import { FC } from "react";
+
+import { BaseLayer, BaseLayerProps, Tileset, TilesetProps } from "../layers";
+
+export type TilesetListLayer = BaseLayer<{
+ id: string;
+ type: "tilesetList";
+ list: TilesetProps[];
+}>;
+
+export type TilesetListProps = BaseLayerProps;
+
+export const TilesetListContainer: FC = ({ id, type: _type, list, ...rest }) => {
+ return list.map(props => );
+};
diff --git a/app/src/map/layer-containers/WaterContainer.tsx b/app/src/map/layer-containers/WaterContainer.tsx
new file mode 100644
index 0000000..1c9a7e4
--- /dev/null
+++ b/app/src/map/layer-containers/WaterContainer.tsx
@@ -0,0 +1,9 @@
+import { FC } from "react";
+
+import { Water, WaterProps } from "../layers";
+
+type Props = WaterProps;
+
+export const WaterContainer: FC = ({ ...props }) => {
+ return ;
+};
diff --git a/app/src/map/layer-containers/index.ts b/app/src/map/layer-containers/index.ts
new file mode 100644
index 0000000..6333c60
--- /dev/null
+++ b/app/src/map/layer-containers/index.ts
@@ -0,0 +1,13 @@
+export * from "./TilesetContainer";
+export * from "./TilesetListContainer";
+export * from "./MVTContainer";
+export * from "./AnimationGradientPointContainer";
+export * from "./PolygonContainer";
+export * from "./GridContainer";
+export * from "./TerrainContainer";
+export * from "./LiquidContainer";
+export * from "./WaterContainer";
+export * from "./ParticleContainer";
+export * from "./CameraContainer";
+export * from "./MarkerContainer";
+export * from "./OverlayContainer";
diff --git a/app/src/map/layers/AnimationGradientPoint.tsx b/app/src/map/layers/AnimationGradientPoint.tsx
new file mode 100644
index 0000000..9c8d616
--- /dev/null
+++ b/app/src/map/layers/AnimationGradientPoint.tsx
@@ -0,0 +1,103 @@
+import { ScatterplotLayer } from "@deck.gl/layers/typed";
+import { FC, useEffect } from "react";
+
+import { Point as PointGeometry, Feature, Coordinates } from "../../utils/types/common";
+import { RenderLayer } from "../RenderLayers";
+
+import { BaseLayer, BaseLayerProps } from "./BaseLayer";
+
+export type AnimationGradientPointLayer = BaseLayer<{
+ id: string;
+ type: "animationGradientPoint";
+ url: string;
+ getRadiusProperty: (props: { properties: any }) => string;
+ getPosition?: (props: { properties: any }) => number[];
+ getFillColor?: (props: { properties: any }) => number[];
+ getRadius?: (props: { properties: any }) => number;
+}>;
+
+export type AnimationGradientPointProps = BaseLayerProps & {
+ time?: number;
+ data?: Feature[];
+ delay?: number;
+ altitude?: number;
+};
+
+const NUM_CIRCLES = 10;
+const CYCLIC_SEC = 3; // > 1
+
+const easeInOutQuart = (x: number): number =>
+ x < 0.5 ? 8 * x * x * x * x : 1 - 8 * --x * x * x * x;
+const sawWave = (t: number) => (t % CYCLIC_SEC) / CYCLIC_SEC;
+const easingWave = (t: number): number => easeInOutQuart(sawWave(t));
+
+export const AnimationGradientPoint: FC = ({
+ id,
+ getFillColor,
+ onLayerAdd,
+ onLayerRemove,
+ getRadiusProperty,
+ time = 0,
+ data = [],
+ delay = 0,
+ altitude = 200,
+}) => {
+ const saw = sawWave(Math.max(time - delay, 0)) + 0.5;
+ const easing = easingWave(Math.max(time - delay, 0)) + 0.5;
+
+ useEffect(() => {
+ const layers: RenderLayer[] = [];
+
+ // central circle
+ layers.push(
+ new ScatterplotLayer>({
+ id: `${id}-central-circle`,
+ data: data,
+ getPosition: d => {
+ const [longitude, latitude] =
+ typeof d.geometry.coordinates[0] === "number"
+ ? (d.geometry.coordinates as Coordinates)
+ : d.geometry.coordinates[0];
+ return [longitude, latitude, altitude];
+ },
+ getFillColor: () => [255, 10, 10, Math.max(0, 1 - saw + 0.25) * 225],
+ getRadius: d => Number(getRadiusProperty(d)) * 0.2 * saw,
+ updateTriggers: {
+ getRadius: [saw],
+ getFillColor: [saw],
+ },
+ }) as unknown as RenderLayer,
+ );
+
+ // outer circles
+ layers.push(
+ ...Array.from({ length: NUM_CIRCLES }).map((_, i) => {
+ const scale = i / NUM_CIRCLES;
+ return new ScatterplotLayer>({
+ id: `${id}-${i}`,
+ data: data,
+ getPosition: d => {
+ const [longitude, latitude] =
+ typeof d.geometry.coordinates[0] === "number"
+ ? (d.geometry.coordinates as Coordinates)
+ : d.geometry.coordinates[0];
+ return [longitude, latitude, altitude];
+ },
+ getFillColor: () => [255, 10, 10, 50 * Math.max(0, 1 - easing)],
+ getRadius: d =>
+ easing > 0.7 ? Number(getRadiusProperty(d)) * 0.2 * Math.max(0, easing - scale) : 0,
+ updateTriggers: {
+ getRadius: [easing],
+ getFillColor: [easing, easing],
+ },
+ }) as unknown as RenderLayer;
+ }),
+ );
+
+ layers.forEach(layer => onLayerAdd?.(layer));
+
+ return () => layers.forEach(layer => onLayerRemove?.(layer));
+ }, [id, data, onLayerAdd, onLayerRemove, getFillColor, easing, getRadiusProperty, altitude, saw]);
+
+ return null;
+};
diff --git a/app/src/map/layers/BaseLayer.ts b/app/src/map/layers/BaseLayer.ts
new file mode 100644
index 0000000..27db640
--- /dev/null
+++ b/app/src/map/layers/BaseLayer.ts
@@ -0,0 +1,28 @@
+import { MapViewState } from "@deck.gl/core/typed";
+
+import { Feature, Cursor } from "../../utils";
+import { RenderLayer } from "../RenderLayers";
+
+export type BaseLayer = T & {
+ show?: boolean;
+ hide?: boolean;
+ pickable?: boolean;
+ animation?: {
+ startDuration?: number;
+ endDuration?: number;
+ };
+ delayForNextSubScene?: number;
+ inHiddenAnimation?: boolean;
+};
+export type BaseLayerProps = T & LayerEventProps;
+
+export type LayerEventProps = {
+ onLayerAdd?: (l: RenderLayer) => void;
+ onLayerRemove?: (l: RenderLayer) => void;
+ onUpdateViewState?: (
+ viewState: Partial