diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a0dddc6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +.DS_Store +node_modules +/dist + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/README.md b/README.md index 00f8cd6..c5ee4c3 100644 --- a/README.md +++ b/README.md @@ -1,39 +1,29 @@ -# 颐居大型机构养老大数据平台-前端 +# datav -#### 介绍 -{**以下是 Gitee 平台说明,您可以替换此简介** -Gitee 是 OSCHINA 推出的基于 Git 的代码托管平台(同时支持 SVN)。专为开发者提供稳定、高效、安全的云端软件开发协作平台 -无论是个人、团队、或是企业,都能够用 Gitee 实现代码托管、项目管理、协作开发。企业项目请看 [https://gitee.com/enterprises](https://gitee.com/enterprises)} +## Project setup +``` +npm install +``` -#### 软件架构 -软件架构说明 +### Compiles and hot-reloads for development +``` +npm run serve +``` +### Compiles and minifies for production +``` +npm run build +``` -#### 安装教程 +### Run your tests +``` +npm run test +``` -1. xxxx -2. xxxx -3. xxxx +### Lints and fixes files +``` +npm run lint +``` -#### 使用说明 - -1. xxxx -2. xxxx -3. xxxx - -#### 参与贡献 - -1. Fork 本仓库 -2. 新建 Feat_xxx 分支 -3. 提交代码 -4. 新建 Pull Request - - -#### 特技 - -1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md -2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com) -3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目 -4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目 -5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) -6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) +### Customize configuration +See [Configuration Reference](https://cli.vuejs.org/config/). diff --git a/babel.config.js b/babel.config.js new file mode 100644 index 0000000..af565ce --- /dev/null +++ b/babel.config.js @@ -0,0 +1,16 @@ +module.exports = { + presets: [ + // '@vue/cli-plugin-babel/preset', + [ + "@vue/app", + { + "useBuiltIns": "entry", + corejs: 3 + // "polyfills": [ //默认的 + // "es.promise", + // "es.symbol", + // ], + } + ] + ], +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..1cfc371 --- /dev/null +++ b/package.json @@ -0,0 +1,66 @@ +{ + "name": "bigScreen", + "version": "0.1.0", + "private": true, + "scripts": { + "serve": "vue-cli-service serve --open", + "build": "vue-cli-service build", + "lint": "vue-cli-service lint" + }, + "dependencies": { + "@antv/data-set": "^0.11.2", + "@babel/polyfill": "^7.12.1", + "ant-design-vue": "1.5.2", + "axios": "^0.19.2", + "babel-polyfill": "^6.26.0", + "compression-webpack-plugin": "^5.0.1", + "core-js": "^3.7.0", + "echarts": "^4.9.0", + "echarts-liquidfill": "^2.0.6", + "echarts-wordcloud": "^1.1.3", + "element-ui": "^2.14.1", + "es6-promise": "^4.2.8", + "highcharts": "^8.2.2", + "less-loader": "^7.3.0", + "svg-sprite-loader": "^6.0.11", + "swiper": "^5.4.5", + "vue": "^2.6.12", + "vue-awesome-swiper": "^4.1.1", + "vue-cookies": "^1.7.4", + "vue-router": "^3.4.9", + "vuex": "^3.6.2" + }, + "devDependencies": { + "@jiaminghi/data-view": "^2.10.0", + "@vue/cli-plugin-babel": "^4.5.9", + "@vue/cli-plugin-eslint": "^4.5.9", + "@vue/cli-service": "^4.5.9", + "babel-eslint": "^10.0.3", + "eslint": "^6.7.2", + "eslint-plugin-vue": "^6.2.2", + "less": "^3.12.2", + "vue-template-compiler": "^2.6.12" + }, + "eslintConfig": { + "root": true, + "env": { + "node": true + }, + "extends": [ + "plugin:vue/essential", + "eslint:recommended" + ], + "parserOptions": { + "parser": "babel-eslint" + }, + "rules": { + "no-unused-vars": "off", + "vue/no-unused-components": "off" + } + }, + "browserslist": [ + "last 1 version", + "> 1%", + "IE 10" + ] +} diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..df36fcf Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..4123528 --- /dev/null +++ b/public/index.html @@ -0,0 +1,17 @@ + + + + + + + + <%= htmlWebpackPlugin.options.title %> + + + +
+ + + diff --git a/src/App.vue b/src/App.vue new file mode 100644 index 0000000..84a722b --- /dev/null +++ b/src/App.vue @@ -0,0 +1,128 @@ + + + + \ No newline at end of file diff --git a/src/api/api.js b/src/api/api.js new file mode 100644 index 0000000..d54be5e --- /dev/null +++ b/src/api/api.js @@ -0,0 +1,144 @@ +import Vue from 'vue' +import { postAction, postLogin } from './request' +// 社会治安专题接口 + +//登录 +let loginUser = (params) => postLogin("/bd/rest/ap-system/loginUser", params); + + +// 退出 +let casLoginOut = (params) => postAction("/bd/ap-system/casLoginOut", params); + +// 首页 +let secuIndex = (params) => postAction("/bd/rest/society/secuIndex/1", params); + +// 110接报警 +let getNumLeftOne = (params) => postAction("/bd/rest/society/getNumLeftOne/1", params); +let getNumRightTwo = (params) => postAction("/bd/rest/society/getNumRightTwo/1", params); +let GetNumRightOne = (params) => postAction("/bd/rest/society/GetNumRightOne/1", params); + +//社会可防性案件 +let communityPreventableCaseFil = (params) => postAction("/bd/rest/society/communityPreventableCaseFil/1", params); +let communityPreventableCaseType = (params) => postAction("/bd/rest/society/communityPreventableCaseType/1", params); +let communityPreventableCaseTypee = (params) => postAction("/bd/rest/society/communityPreventableCaseTypee/1", params); +let communityPreventablePopulati = (params) => postAction("/bd/rest/society/communityPreventablePopulati/1", params); +let communityPreventablePopulatiMap = (params) => postAction("/bd/rest/society/communityPreventablePopulatiMap/1", params); + +// 治安案件 +let publicSecurityCaseType = (params) => postAction("/bd/rest/society/publicSecurityCaseType/1", params); +let publicSecurityCaseTrend = (params) => postAction("/bd/rest/society/publicSecurityCaseTrend/1", params); +let publicSecurityCaseTrendMap = (params) => postAction("/bd/rest/society/publicSecurityCaseTrendMap/1", params); +let publicSecurityCaseTrendcc = (params) => postAction("/bd/rest/society/publicSecurityCaseTrendcc/1", params); + +// 八类严重刑事案件 +let criminalCaseMap = (params) => postAction("/bd/rest/society/criminalCaseMap/1", params); +let criminalCase8Num = (params) => postAction("/bd/rest/society/criminalCase8Num/1", params); +let criminalCase8Trend = (params) => postAction("/bd/rest/society/criminalCase8Trend/1", params); +let criminalCase8NumTrend = (params) => postAction("/bd/rest/society/criminalCase8NumTrend/1", params); + +// 刑事案件 +let criminalcrownCaseMap = (params) => postAction("/bd/rest/society/criminalcrownCaseMap/1", params); +let criminalCaseNum = (params) => postAction("/bd/rest/society/criminalCaseNum/1", params); +let criminalCaseTrend2 = (params) => postAction("/bd/rest/society/criminalCaseTrend2/1", params); +let criminalCaseTrend = (params) => postAction("/bd/rest/society/criminalCaseTrend/1", params); +let criminalcrownCaseClass = (params) => postAction("/bd/rest/society/criminalcrownCaseClass/1", params); + +//群防群治布控点 +let groupPreventionCureSpot = (params) => postAction("/bd/rest/society/groupPreventionCureSpot/1", params); +let groupPreventionCureSpotMap = (params) => postAction("/bd/rest/society/groupPreventionCureSpotMap/1", params); +let groupPreventionCureSpotTrend = (params) => postAction("/bd/rest/society/groupPreventionCureSpotTrend/1", params); + +// 重点组织 +let keyOrg = (params) => postAction("/bd/rest/society/keyOrg/1", params); +let keyOrgByYearMonth = (params) => postAction("/bd/rest/society/keyOrgByYearMonth/1", params); +let keyOrgByType = (params) => postAction("/bd/rest/society/keyOrgByType/1", params); +let keyOrgByYearManage = (params) => postAction("/bd/rest/society/keyOrgByYearManage/1", params); +let keyOrgByYearMonthActiv = (params) => postAction("/bd/rest/society/keyOrgByYearMonthActiv/1", params); +let baseYearMonthQuarter = (params) => postAction("/bd/rest/society/baseYearMonthQuarter/1", params); + + +// 敏感事件 +let sensitiveCase = (params) => postAction("/bd/rest/society/sensitiveCase/1", params); +let sensitiveCaseType = (params) => postAction("/bd/rest/society/sensitiveCaseType/1", params); + + +// 情报报送 +let infomation = (params) => postAction("/bd/rest/society/infomation/1", params); + +// 上访 +let petition = (params) => postAction("/bd/rest/society/petition/1", params); + +// 重大决策分析 +let majorDecisions = (params) => postAction("/bd/rest/society/majorDecisions/1", params); + + +// 重大事项报备统计 +let majorDecisionsReport = (params) => postAction("/bd/rest/society/majorDecisionsReport/1", params); + +// 重点地区整治 +let keyAreas = (params) => postAction("/bd/rest/society/keyAreas/1", params); + +// 平安北京 +let safety = (params) => postAction("/bd/rest/society/safety/1", params); + +// 城乡结合 +let townAndCountry = (params) => postAction("/bd/rest/society/townAndCountry/1", params); +let townAndCountryEatOther = (params) => postAction("/bd/rest/society/townAndCountryEatOther/1", params); + +// 矛盾分析 +let contradiction = (params) => postAction("/bd/rest/society/contradiction/1", params); + +//埋点 +let createOperationLog = (params) => postAction("http://51.31.219.28:6893/ap-system/outer/log-audit/createOperationLog",params) + + + + +export { + getNumLeftOne, + getNumRightTwo, + GetNumRightOne, + communityPreventableCaseFil, + communityPreventableCaseType, + communityPreventableCaseTypee, + communityPreventablePopulati, + communityPreventablePopulatiMap, + publicSecurityCaseType, + publicSecurityCaseTrend, + publicSecurityCaseTrendMap, + publicSecurityCaseTrendcc, + criminalCaseMap, + criminalCase8Num, + criminalCase8Trend, + criminalCase8NumTrend, + criminalcrownCaseMap, + criminalCaseNum, + criminalCaseTrend2, + criminalCaseTrend, + criminalcrownCaseClass, + groupPreventionCureSpot, + groupPreventionCureSpotMap, + groupPreventionCureSpotTrend, + keyOrg, + keyOrgByYearMonth, + keyOrgByType, + keyOrgByYearManage, + keyOrgByYearMonthActiv, + sensitiveCase, + sensitiveCaseType, + infomation, + petition, + majorDecisions, + majorDecisionsReport, + keyAreas, + safety, + townAndCountry, + townAndCountryEatOther, + contradiction, + secuIndex, + baseYearMonthQuarter, + loginUser, + casLoginOut, + createOperationLog + +} \ No newline at end of file diff --git a/src/api/cultApi.js b/src/api/cultApi.js new file mode 100644 index 0000000..2173987 --- /dev/null +++ b/src/api/cultApi.js @@ -0,0 +1,26 @@ +import Vue from 'vue' +import { postAction } from './request' +// 反邪教专题接口 + +// 首页 +let fxjIndex = (params) => postAction("/bd/rest/heresy/fxjIndex/1", params); + +// 邪教人员 +let fxjPersion = (params) => postAction("/bd/rest/heresy/fxjPersion/1", params); + +// 邪教组织、案(事)件 +let fxjCase = (params) => postAction("/bd/rest/heresy/fxjCase/1", params); + +// 涉外斗争 +let fxjForgeign = (params) => postAction("/bd/rest/heresy/fxjForgeign/1", params); +let fxjForgeignMedia = (params) => postAction("/bd/rest/heresy/fxjForgeignMedia/1", params); + +export { + fxjIndex, + fxjPersion, + fxjCase, + fxjForgeign, + fxjForgeignMedia + + +} \ No newline at end of file diff --git a/src/api/index.js b/src/api/index.js new file mode 100644 index 0000000..498842e --- /dev/null +++ b/src/api/index.js @@ -0,0 +1,14 @@ +import Vue from 'vue' +import { postAction } from './request' +// + +// 首页 +let Index = (params) => postAction("/bd/rest/index/login/1", params); + + + +export { + Index, + + +} \ No newline at end of file diff --git a/src/api/intelligentApi.js b/src/api/intelligentApi.js new file mode 100644 index 0000000..17b489d --- /dev/null +++ b/src/api/intelligentApi.js @@ -0,0 +1,113 @@ +import Vue from 'vue' +import { postAction } from './request' + +// 智能办案 + +// 首页 +let intelligentHomePage = (params) => postAction("/bd/rest/smartCase/intelligentHomePage/1", params); + +// 公安 +let areRequestArrestNum = (params) => postAction("/bd/rest/smartCase/areRequestArrestNum/1", params); +let causeActionNumTop10 = (params) => postAction("/bd/rest/smartCase/causeActionNumTop10/1", params); +let coerciveMeasures = (params) => postAction("/bd/rest/smartCase/coerciveMeasures/1", params); +let intelligentCaseHandingCriminaCaseTrend = (params) => postAction("/bd/rest/smartCase/intelligentCaseHandingCriminaCaseTrend/1", params); +let townshipCaseTop10 = (params) => postAction("/bd/rest/smartCase/townshipCaseTop10/1", params); + +// 检察院 +let approvalArrestPersonCase = (params) => postAction("/bd/rest/smartCase/approvalArrestPersonCase/1", params); +let procuratorateArrestProsecutionNum = (params) => postAction("/bd/rest/smartCase/procuratorateArrestProsecutionNum/1", params); +let procuratorateUnArrestReason = (params) => postAction("/bd/rest/smartCase/procuratorateUnArrestReason/1", params); +let procuratorateUnProsecutionReason = (params) => postAction("/bd/rest/smartCase/procuratorateUnProsecutionReason/1", params); +let prosecutionPersonCase = (params) => postAction("/bd/rest/smartCase/prosecutionPersonCase/1", params); +let unApprovalArrestPerson = (params) => postAction("/bd/rest/smartCase/unApprovalArrestPerson/1", params); +let unProsecutionPserson = (params) => postAction("/bd/rest/smartCase/unProsecutionPserson/1", params); + +// 法院 +let additionalPenalty = (params) => postAction("/bd/rest/smartCase/additionalPenalty/1", params); +let collectCloseCase = (params) => postAction("/bd/rest/smartCase/collectCloseCase/1", params); +let courtFilingCompleteInvolving = (params) => postAction("/bd/rest/smartCase/courtFilingCompleteInvolving/1", params); +let courtFirstSecondRetrialRatio = (params) => postAction("/bd/rest/smartCase/courtFirstSecondRetrialRatio/1", params); +let courtLawyerPartake = (params) => postAction("/bd/rest/smartCase/courtLawyerPartake/1", params); +let courtTrialsLimitTime = (params) => postAction("/bd/rest/smartCase/courtTrialsLimitTime/1", params); +let fixedTermImprisonment = (params) => postAction("/bd/rest/smartCase/fixedTermImprisonment/1", params); +let principalPunishmentData = (params) => postAction("/bd/rest/smartCase/principalPunishmentData/1", params); +let principalPunishmentResult = (params) => postAction("/bd/rest/smartCase/principalPunishmentResult/1", params); +let retrialVerdictResult = (params) => postAction("/bd/rest/smartCase/retrialVerdictResult/1", params); +let secondInstanceSentence = (params) => postAction("/bd/rest/smartCase/secondInstanceSentence/1", params); + +// 司法 +let judicialSummary = (params) => postAction("/bd/rest/smarktCase/judicialSummary/1", params); +let datainingCriminalsTend = (params) => postAction("/bd/rest/smarktCase/datainingCriminalsTend/1", params); +let commutationParoleRatio = (params) => postAction("/bd/rest/smarktCase/commutationParoleRatio/1", params); +let legalAidNum = (params) => postAction("/bd/rest/smarktCase/legalAidNum/1", params); + +// 涉案财物 +let involvedFinanceTotalNum = (params) => postAction("/bd/rest/smarktCase/involvedFinanceTotalNum/1", params); +let involvedFinanceDisposalMode = (params) => postAction("/bd/rest/smarktCase/involvedFinanceDisposalMode/1", params); +let involvedFinanceFondsList = (params) => postAction("/bd/rest/smarktCase/involvedFinanceFondsList/1", params); +let involvedFinanceItemsList = (params) => postAction("/bd/rest/smarktCase/involvedFinanceItemsList/1", params); +let involvedFinanceItem = (params) => postAction("/bd/rest/smarktCase/involvedFinanceItem/1", params); +let involvedFinanceFunds = (params) => postAction("/bd/rest/smarktCase/involvedFinanceFunds/1", params); +let involvedFinanceSource = (params) => postAction("/bd/rest/smarktCase/involvedFinanceSource/1", params); +let involvedFinanceParty = (params) => postAction("/bd/rest/smarktCase/involvedFinanceParty/1", params); +let involvedFinanceCurrency = (params) => postAction("/bd/rest/smarktCase/involvedFinanceCurrency/1", params); + +// 减刑假释 +let commutationParole = (params) => postAction("/bd/rest/smarktCase/commutationParole/1", params); +let commutationParoleAnalyse = (params) => postAction("/bd/rest/smarktCase/commutationParoleAnalyse/1", params); +let commutationActionCaseRatio = (params) => postAction("/bd/rest/smarktCase/commutationActionCaseRatio/1", params); +let paroleActionCaseRatio = (params) => postAction("/bd/rest/smarktCase/paroleActionCaseRatio/1", params); +let prisonCommutationParole = (params) => postAction("/bd/rest/smarktCase/prisonCommutationParole/1", params); + +// 犯罪嫌疑人 +let criminalSuspectGender = (params) => postAction("/bd/rest/smarktCase/criminalSuspectGender/1", params); +let criminalSuspectEdu = (params) => postAction("/bd/rest/smarktCase/criminalSuspectEdu/1", params); +let criminalSuspectFixedTermImprisonment = (params) => postAction("/bd/rest/smarktCase/criminalSuspectFixedTermImprisonment/1", params); +let criminalSuspectActionCause = (params) => postAction("/bd/rest/smarktCase/criminalSuspectActionCause/1", params); +let criminalSuspectIdentity = (params) => postAction("/bd/rest/smarktCase/criminalSuspectIdentity/1", params); +let criminalSuspectAge = (params) => postAction("/bd/rest/smarktCase/criminalSuspectAge/1", params); + + +export { + intelligentHomePage, + areRequestArrestNum, + causeActionNumTop10, + coerciveMeasures, + intelligentCaseHandingCriminaCaseTrend, + townshipCaseTop10, + judicialSummary, + datainingCriminalsTend, + commutationParoleRatio, + legalAidNum, + involvedFinanceTotalNum, + involvedFinanceDisposalMode, + involvedFinanceFondsList, + involvedFinanceItemsList, + involvedFinanceItem, + involvedFinanceFunds, + involvedFinanceSource, + involvedFinanceParty, + involvedFinanceCurrency, criminalSuspectGender, criminalSuspectEdu, + criminalSuspectFixedTermImprisonment, criminalSuspectActionCause, criminalSuspectIdentity, criminalSuspectAge, + commutationParole, commutationParoleAnalyse, commutationActionCaseRatio, paroleActionCaseRatio, prisonCommutationParole, + + approvalArrestPersonCase, + procuratorateArrestProsecutionNum, + procuratorateUnArrestReason, + procuratorateUnProsecutionReason, + prosecutionPersonCase, + unApprovalArrestPerson, + unProsecutionPserson, + + additionalPenalty, + collectCloseCase, + courtFilingCompleteInvolving, + courtFirstSecondRetrialRatio, + courtLawyerPartake, + courtTrialsLimitTime, + fixedTermImprisonment, + principalPunishmentData, + principalPunishmentResult, + retrialVerdictResult, + secondInstanceSentence +} \ No newline at end of file diff --git a/src/api/officeApi.js b/src/api/officeApi.js new file mode 100644 index 0000000..ec38961 --- /dev/null +++ b/src/api/officeApi.js @@ -0,0 +1,24 @@ +import Vue from 'vue' +import { postAction } from './request' + +// 日常办公接口 + +// 首页 +let WorkIndex = (params) => postAction("/bd/rest/dailyOffice/WorkIndex/1", params); +// 项目预算 +let projectBudget = (params) => postAction("/bd/rest/dailyOffice/projectBudget/1", params); +// 收发文情况 +let transceiverSituation = (params) => postAction("/bd/rest/dailyOffice/transceiverSituation/1", params); +// 资产 +let property = (params) => postAction("/bd/rest/dailyOffice/property/1", params); +// 车辆情况 +let vehicleCondition = (params) => postAction("/bd/rest/dailyOffice/vehicleCondition/1", params); + + +export{ + WorkIndex, + projectBudget, + transceiverSituation, + property, + vehicleCondition +} \ No newline at end of file diff --git a/src/api/politicalAndLawApi.js b/src/api/politicalAndLawApi.js new file mode 100644 index 0000000..aaed52f --- /dev/null +++ b/src/api/politicalAndLawApi.js @@ -0,0 +1,31 @@ +import Vue from 'vue' +import { postAction } from './request' +//政法队伍专题接口 + +// 员额检察官 +let prosecution = (params) => postAction("/bd/rest/politicalteam/prosecution/1", params); +let prosecutionInfo = (params) => postAction("/bd/rest/politicalteam/prosecutionInfo/1", params); +let prosecutionInfomore = (params) => postAction("/bd/rest/politicalteam/prosecutionInfomore/1", params); + +// 员额法官 +let judge = (params) => postAction("/bd/rest/politicalteam/judge/1", params); +let judgeInfo = (params) => postAction("/bd/rest/politicalteam/judgeInfo/1", params); +let judgeInfoMore = (params) => postAction("/bd/rest/politicalteam/judgeInfoMore/1", params); +// 离退休干部 +let retiredCadres = (params) => postAction("/bd/rest/politicalteam/retiredCadres/1", params); + +// 综治中心人员 +let retiredPersion = (params) => postAction("/bd/rest/politicalteam/retiredPersion/1", params); + +export { + prosecution, + judge, + retiredCadres, + retiredPersion, + prosecutionInfo, + prosecutionInfomore, + judgeInfo, + judgeInfoMore + + +} \ No newline at end of file diff --git a/src/api/populationApi.js b/src/api/populationApi.js new file mode 100644 index 0000000..b80a667 --- /dev/null +++ b/src/api/populationApi.js @@ -0,0 +1,39 @@ +import Vue from 'vue' +import { postAction } from './request' + +// 人口专题 + +// 首页 +let populationIndex = (params) => postAction("/bd/rest/population/index/1", params); + +// 户籍人口 +let registeredPopulation = (params) => postAction("/bd/rest/population/registeredPopulation/1", params); +// 流动人口 +let floatingPopulation = (params) => postAction("/bd/rest/population/floatingPopulation/1", params); +// 重点人 +let keyPerson = (params) => postAction("/bd/rest/population/keyPerson/1", params); +let keyPersonInfo = (params) => postAction("/bd/rest/population/keyPersonInfo/1", params); +let keyPersonInfoMore = (params) => postAction("/bd/rest/population/keyPersonInfoMore/1", params); +let keyPersonInfoMoreActive = (params) => postAction("/bd/rest/population/keyPersonInfoMoreActive/1", params); +// 志愿者 +let volunteer = (params) => postAction("/bd/rest/population/volunteer/1", params); +// 出租房屋 +let houseForRent = (params) => postAction("/bd/rest/population/houseForRent/1", params); +// 社区信息 +let community = (params) => postAction("/bd/rest/population/community/1", params); +let communityValue = (params) => postAction("/bd/rest/population/communityValue/1", params); + +export { + populationIndex, + registeredPopulation, + floatingPopulation, + keyPerson, + keyPersonInfo, + keyPersonInfoMore, + keyPersonInfoMoreActive, + volunteer, + houseForRent, + community, + communityValue + +} \ No newline at end of file diff --git a/src/api/request.js b/src/api/request.js new file mode 100644 index 0000000..09836e7 --- /dev/null +++ b/src/api/request.js @@ -0,0 +1,154 @@ +import Vue from 'vue' +import axios from 'axios' +import { Message } from 'element-ui' + +axios.defaults.withCredentials = true +axios.defaults.crossDomain = true + + +//Vue.prototype.$loginURL = 'http://51.31.219.28:6892/cas/login?service=http://51.31.219.42:6896/bd/ap-system/casLogin' +//正式环境 +//Vue.prototype.$loginURL = 'http://172.16.16.110:6889/cas/login?service=http://172.16.16.110:6971/bd/ap-system/casLogin' +//test +//Vue.prototype.$loginURL = 'http://127.0.0.1:8088/cas/login?service=http://127.0.0.1:8089/bd/ap-system/casLogin' + +// 创建 axios 实例 +const service = axios.create({ + //正式环境 + baseURL: 'http://51.31.219.42:6896', + // baseURL: 'http://192.168.1.40:6888', + // baseURL: 'http://192.168.200.221:8080/', + // baseURL: 'http://127.0.0.1:8089/', // 李 + // baseURL: 'http://192.168.1.34:8089/', // 耿 + // baseURL: 'http://192.168.1.40:8089/', // 樊 + timeout: 120000 // 请求超时时间 +}) + + +// request interceptor +service.interceptors.request.use(config => { + // config.headers['authorization'] = "eyJhbGciOiJIUzI1NiJ9.eyIkaW50X3Blcm1zIjpbXSwic3ViIjoib3JnLnBhYzRqLmNvcmUucHJvZmlsZS5Db21tb25Qcm9maWxlIzQwMjg4MWE5NzZhN2ZiOTkwMTc2YTgxNWViZWUwMTZiIiwiJGludF9yb2xlcyI6W10sImlhdCI6MTYwOTEzNzgxNSwidXNlcm5hbWUiOiLns7vnu5SINOnlKjmiLcifQ.JjDNVw23KUKPit6bL3BnGxPUfxt5gShcmK1ZtvMlKl0" + return config +}, (error) => { + return Promise.reject(error) +}) + +// response interceptor +service.interceptors.response.use( + (response) => { + if( !response.data.body ){ + return response.data + }else{ + if (response.data && response.data.body && response.data.body.rtnCode === '0000') { + return response.data.body.dataSet + } else { + if (!response.data) { + return response; + } + let error = { + code: response.data.body.rtnCode, + message: response.data.body.rtnMessage + } + return Promise.reject(error) + } + } + + + + }, error => { + if (error && error.response) { + switch (error.response.status) { + case 400: + Message.error('错误请求') + break; + case 401: + // Message.error('请重新登录') + //跳转到登录页面 + window.location.href = Vue.prototype.$loginURL; + break; + case 403: + Message.error('拒绝访问') + break; + case 404: + Message.error('请求错误,未找到该资源') + break; + case 405: + Message.error('请求方法未允许') + break; + case 408: + Message.error('请求超时') + break; + case 500: + Message.error('服务器端出错') + break; + case 501: + Message.error('网络未实现') + break; + case 502: + Message.error('网络错误') + break; + case 503: + Message.error('服务不可用') + break; + case 504: + Message.error('网络超时') + break; + case 505: + Message.error('http版本不支持该请求') + break; + default: + Message.error(`连接错误${error.response.status}`) + } + } else { + // 超时处理 + if (JSON.stringify(error).includes('timeout')) { + Message.error('服务器响应超时,请刷新当前页') + } + Message.error('连接服务器失败') + } + }) + +const installer = { + vm: {}, + install(Vue, router = {}) { + Vue.use( router, service) + } +} + +function postLogin(url, parameter) { + return service({ + url: url, + method: 'post', + data: parameter + }) +} +function postAction(url, parameter) { + return service({ + url: url, + method: 'post', + data: parameter + }) +} +function getAction(url, parameter) { + return service({ + url: url, + method: 'get', + data: parameter + }) +} +function postActionTimeout(url, parameter, timeout = 90000) { + return service({ + url: url, + method: 'post', + data: parameter, + timeout, // 请求超时时间 + }) +} +export { + installer as VueAxios, + service as axios, + postAction, + postActionTimeout, + postLogin, + getAction +} \ No newline at end of file diff --git a/src/api/socialStabilityIndexApi.js b/src/api/socialStabilityIndexApi.js new file mode 100644 index 0000000..4b4741a --- /dev/null +++ b/src/api/socialStabilityIndexApi.js @@ -0,0 +1,58 @@ +import Vue from 'vue' +import { postAction } from './request' + +// 社会稳定指数专题 + +// 社会稳定指数首页 +let ssiSubIndex = (params) => postAction("/bd/rest/socialStability/ssiSubIndex/1", params); +let ssiTrendMonth = (params) => postAction("/bd/rest/socialStability/ssiTrendMonth/1", params); +let ssiWarning = (params) => postAction("/bd/rest/socialStability/ssiWarning/1", params); +let ssiValueMap = (params) => postAction("/bd/rest/socialStability/ssiValueMap/1", params); + +// 社会稳定指数预警 +let ssiWarningInfo = (params) => postAction("/bd/rest/socialStability/ssiWarningInfo/1", params); +let ssiAlalyseRanking = (params) => postAction("/bd/rest/socialStability/ssiAlalyseRanking/1", params); + + +// 北京市社会稳定指数分析 +let ssiTrendAll = (params) => postAction("/bd/rest/socialStability/ssiTrendAll/1", params); + +// 社会稳定指数分项指标专题 +// 政治 +let minorityNationalityPopulationNum = (params) => postAction("/bd/rest/socialStability/minorityNationalityPopulationNum/1", params); +// 社会 +let publicSentimentNum = (params) => postAction("/bd/rest/socialStability/publicSentimentNum/1", params); +let CriminalCaseNum = (params) => postAction("/bd/rest/socialStability/CriminalCaseNum/1", params); +let call110PoliceSituation = (params) => postAction("/bd/rest/socialStability/call110PoliceSituation/1", params); +let petitionNum = (params) => postAction("/bd/rest/socialStability/petitionNum/1", params); + +// 公共卫生 +let infectiousDiseasesIndexInputYear = (params) => postAction("/bd/rest/socialStability/infectiousDiseasesIndexInputYear/1", params); +let infectiousDiseasesIndexInputMonth = (params) => postAction("/bd/rest/socialStability/infectiousDiseasesIndexInputMonth/1", params); +let infectiousDiseasesMap = (params) => postAction("/bd/rest/socialStability/infectiousDiseasesMap/1", params); + +// 人口 +let beijingPopulationNum = (params) => postAction("/bd/rest/socialStability/beijingPopulationNum/1", params); +let demographicStatistics = (params) => postAction("/bd/rest/socialStability/demographicStatistics/1", params); +let politicsKeyPsersonType = (params) => postAction("/bd/rest/socialStability/politicsKeyPsersonType/1", params); + +export { + ssiSubIndex, + ssiTrendMonth, + ssiWarning, + ssiWarningInfo, + ssiTrendAll, + minorityNationalityPopulationNum, + publicSentimentNum, + infectiousDiseasesIndexInputYear, + infectiousDiseasesIndexInputMonth, + beijingPopulationNum, + demographicStatistics, + politicsKeyPsersonType, + CriminalCaseNum, + call110PoliceSituation, + petitionNum, + infectiousDiseasesMap, + ssiValueMap, + ssiAlalyseRanking +} \ No newline at end of file diff --git a/src/assets/css/common.css b/src/assets/css/common.css new file mode 100644 index 0000000..d9cfa87 --- /dev/null +++ b/src/assets/css/common.css @@ -0,0 +1,242 @@ +#app > .page { + background: url(../../assets/img/body.jpg) no-repeat; + background-size: 100% 100%; +} +#app > .page ::-webkit-scrollbar { + width: 10px; +} +#app > .page ::-webkit-scrollbar-thumb { + border-radius: 10px; + -webkit-box-shadow: inset 0 0 5px #eaeef1; + background: #eaeef1; +} +#app > .page ::-webkit-scrollbar-track { + -webkit-box-shadow: inset 0 0 5px #7d96a8; + border-radius: 10px; + background: #7d96a8; +} +.page { + height: 100%; + display: flex; + flex-direction: column; +} +.page .menuSearch { + position: fixed; + top: 100px; + right: 20px; +} +.page .menuSearch > .el-button { + margin-left: 10px; +} +.page ul.menu { + justify-content: flex-start; +} +.page ul.menu > li { + font-size: 16px; + cursor: pointer; + color: #57c9fc; + margin-left: 40px; +} +.page ul.menu > li > i { + font-weight: 400; + font-size: 30px; + display: block; + width: 100%; + text-align: center; +} +.page ul.menu > li > a { + font-weight: 600; + display: block; + height: 100%; + color: #57c9fc; +} +.page ul.menu > li.active { + color: #27d0fb; + color: #fff; +} +.page ul.menu > li.active > a { + color: #fff; +} +.page .menu { + margin: 10px 20px; + height: 70px; + border-top: 1px solid #1a3dac; + border-bottom: 1px solid #1a3dac; + display: flex; + justify-content: space-between; +} +.page .menu ul { + display: flex; +} +.page .menu ul > li { + font-size: 16px; + cursor: pointer; + color: #57c9fc; + margin-left: 40px; +} +.page .menu ul > li > i { + font-weight: 400; + font-size: 30px; + display: block; + width: 100%; + text-align: center; +} +.page .menu ul > li > a { + font-weight: 600; + display: block; + height: 100%; + color: #57c9fc; +} +.page .menu ul > li.active { + color: #27d0fb; + color: #fff; +} +.page .menu ul > li.active > a { + color: #fff; +} +.page .menu > div { + margin-top: 19px; + margin-top: 15px; + height: 40px; +} +.page .menu > div .btn { + width: 100px; + height: 40px; + margin-left: 10px; +} +.page .menu > div .el-button { + margin-left: 15px; + width: 120px; +} +.page .menu > div .el-button .iconfont { + margin-right: 5px; +} +.page .main { + flex: 1; + overflow: hidden; + height: 100%; +} +.page .main .title span.detail, +.page .main .echart_title span.detail, +.page .main .icon_title span.detail { + font-size: 14px; + color: #2092c1; + cursor: pointer; +} +.page .main ul > li > p.title, +.page .main p.echart_title { + font-size: 16px; + color: #fff; + padding-left: 18px; + height: 40px; + line-height: 40px; + background: url(../../assets/img/title.png) no-repeat; + margin: 10px 0; + justify-content: space-between; +} +.page .main p.echart_title { + display: flex; +} +.page .main p.echart_title ul { + width: 120px; + display: flex; + box-sizing: border-box; +} +.page .main p.echart_title ul li { + flex: 1; + color: #fff; + border: 1px solid #00b7f5; + cursor: pointer; + text-align: center; +} +.page .main p.echart_title ul .public_tab { + background-color: #00a4ef; +} +.page .main p.echart_title ul li:nth-child(1) { + border-radius: 45% 0 0 45%; +} +.page .main p.echart_title ul li:nth-child(2) { + border-left: 0 none; + border-right: 0 none; +} +.page .main p.echart_title ul li:nth-child(3) { + border-radius: 0 45% 45% 0; +} +.page .main ul.map_t { + display: flex; + flex-direction: row; + justify-content: space-around; +} +.page .main ul.map_t > li { + height: auto; + flex: 1; + background: #32a3fc; + margin-right: 10px; + padding-left: 24px; + padding-top: 5px; + position: relative; +} +.page .main ul.map_t > li:after { + content: ""; + display: block; + width: 8px; + height: 100%; + position: absolute; + top: 0px; + left: 0px; + background: #1488e4; +} +.page .main ul.map_t > li:nth-child(2) { + margin-left: 10px; + margin-right: 0px; + background: #f89c40; +} +.page .main ul.map_t > li:nth-child(2):after { + background: #ea834a; +} +.page .main ul.map_t > li:nth-child(3) { + margin-left: 10px; + margin-right: 0px; + background: #19b7ca; +} +.page .main ul.map_t > li:nth-child(3):after { + background: #0ea1b3; +} +.page .main ul.map_t > li > div:nth-child(2) { + font-weight: 600; + font-size: 36px; +} +.page .main ul.map_t > li > div:nth-child(2) span { + font-size: 16px; +} +/* 统计信息 */ +.statistics { + width: 100%; + height: 100%; + padding: 20px 20px; + box-sizing: border-box; +} +.statistics ul { + display: flex; + flex-wrap: wrap; +} +/* */ +span.digital_flop { + font-size: 30px; + text-align: center; + line-height: 58px; + font-weight: 600; +} +span.digital_flop i { + display: inline-block; + width: 43px; + height: 58px; + background: url(../img/sy_04.png) no-repeat; +} +span.digital_flop i + i { + margin-left: 5px; +} + +.zongzhi .off .el-table__body{ + height: 100%; +} diff --git a/src/assets/css/common.less b/src/assets/css/common.less new file mode 100644 index 0000000..e6b7fe6 --- /dev/null +++ b/src/assets/css/common.less @@ -0,0 +1,246 @@ +#app>.page{ + background: url(../../assets/img/body.jpg) no-repeat; + background-size: 100% 100%; + // 滚动条 + ::-webkit-scrollbar { + width: 10px; + } + ::-webkit-scrollbar-thumb { + border-radius: 10px; + -webkit-box-shadow: inset 0 0 5px#eaeef1; + background: #eaeef1; + } + ::-webkit-scrollbar-track { + -webkit-box-shadow: inset 0 0 5px #7d96a8; + border-radius: 10px; + background: #7d96a8; + } +} +// #app .page{ +.page{ + height: 100%; + display: flex; + flex-direction: column; + .menuSearch{ + position: fixed; + top: 100px; + right: 20px; + &>.el-button{ + margin-left: 10px; + } + } + + ul.menu{ + justify-content: flex-start; + &>li{ + font-size: 16px; + cursor: pointer; + color: #57c9fc; + margin-left: 40px; + >i{ + font-weight: 400; + font-size: 30px; + display: block; + width: 100%; + text-align: center; + } + >a{ + font-weight: 600; + display: block; + height: 100%; + color: #57c9fc; + } + } + &>li.active{ + &>a{ + color: #fff; + } + color: #27d0fb; + color: #fff; + } + } + .menu{ + margin: 10px 20px; + height: 70px; + border-top: 1px solid #1a3dac; + border-bottom: 1px solid #1a3dac; + display: flex; + justify-content: space-between; + ul{ + display: flex; + >li{ + font-size: 16px; + cursor: pointer; + color: #57c9fc; + margin-left: 40px; + >i{ + font-weight: 400; + font-size: 30px; + display: block; + width: 100%; + text-align: center; + } + >a{ + font-weight: 600; + display: block; + height: 100%; + color: #57c9fc; + } + } + >li.active{ + &>a{ + color: #fff; + } + color: #27d0fb; + color: #fff; + } + } + >div{ + margin-top: 19px; + margin-top: 15px; + height: 40px; + .btn{ + width: 100px; + height: 40px; + margin-left: 10px; + } + .el-button { + margin-left: 15px; + width: 120px; + + .iconfont { + margin-right: 5px; + } + } + } + } + .main{ + // display: flex; + flex: 1; + overflow: hidden; + height: 100%; + + .title span.detail, + .echart_title span.detail, + .icon_title span.detail{ + font-size: 14px; + color: #2092c1; + cursor: pointer; + } + ul>li>p.title, + p.echart_title{ + font-size: 16px; + color: #fff; + padding-left: 18px; + height: 40px; + line-height: 40px; + background: url(../../assets/img/title.png) no-repeat; + margin: 10px 0; + justify-content: space-between; + } + p.echart_title { + display: flex; + ul { + width: 120px; + display: flex; + box-sizing: border-box; + li { + flex: 1; + color: #fff; + border: 1px solid #00b7f5; + cursor: pointer; + text-align: center; + } + .public_tab{ + background-color: #00a4ef; + } + li:nth-child(1) { + border-radius: 45% 0 0 45%; + } + li:nth-child(2) { + border-left: 0 none; + border-right: 0 none; + } + li:nth-child(3) { + border-radius: 0 45% 45% 0; + } + } + } + + + ul.map_t{ + display: flex; + flex-direction: row; + justify-content: space-around; + >li{ + height: auto; + flex:1; + background: #32a3fc; + margin-right: 10px; + padding-left: 24px; + padding-top: 5px; + position: relative; + &:after{ + content: ""; + display: block; + width: 8px; + height: 100%; + position: absolute; + top: 0px; + left: 0px; + background: #1488e4; + } + &:nth-child(2){ + margin-left: 10px; + margin-right: 0px; + background: #f89c40; + &:after{ + background: #ea834a; + } + } + &:nth-child(3){ + margin-left: 10px; + margin-right: 0px; + background: #19b7ca; + &:after{ + background: #0ea1b3; + } + } + >div:nth-child(2){ + font-weight: 600; + font-size: 36px; + span{ + font-size: 16px; + } + } + } + } + } +} +/* 统计信息 */ +.statistics{ + width: 100%; + height: 100%; + padding: 20px 20px; + box-sizing: border-box; + ul{ + display: flex; + flex-wrap: wrap; + } +} +/* */ +span.digital_flop{ + font-size: 30px; + text-align: center; + line-height: 58px; + font-weight: 600; + i{ + display: inline-block; + width: 43px; + height: 58px; + background: url(../img/sy_04.png) no-repeat; + } + i+i{ + margin-left: 5px; + } +} \ No newline at end of file diff --git a/src/assets/css/element.css b/src/assets/css/element.css new file mode 100644 index 0000000..2fd3ce7 --- /dev/null +++ b/src/assets/css/element.css @@ -0,0 +1,250 @@ +/* element样式重构 */ + +/*.page .main .search input, +.page .menu .el-input__inner input{*/ + +.page input { + background: transparent; + color: #fff; +} + +.page .el-date-editor input::-webkit-input-placeholder, .page input::-webkit-input-placeholder { + color: #fff; +} + +/* 修改 element ui 时间选择器 */ + +.page .el-date-editor .el-range-input, .page .el-date-editor .el-range-separator, .page .el-date-editor .el-range__icon { + color: #fff; +} + +.page .el-input__inner, .page .el-input__inner .el-range-input { + background: #255d99; +} + +.page .el-input__inner { + border: 1px solid #3baeec; + color: #fff; +} + +/* 修改 element ui 级联选择器 */ + +.page .search input, .page .el-cascader input { + background: #2c6998; + color: #fff; + border-color: #52bdef; +} + +/* 修改 element ui tab标签页 */ + +.page .main .el-tabs__item { + color: #20b5f1; +} + +.page .main .el-tabs__item.is-active { + color: #fff; + background: #1c7db6; +} + +.page .main .table.el-tabs--card>.el-tabs__header .el-tabs__item, .page .main .table.el-tabs--card>.el-tabs__header .el-tabs__nav { + border-color: #1d80bf; +} + +.page .main .table.el-tabs--card>.el-tabs__header { + border-bottom: 1px solid #1d80bf; +} + +/* 修改 element ui 表格 */ + +.page .el-table { + color: #20b5f1; +} + +.page .el-tabs__header { + margin: 0; +} + +.page .el-table td, .page .el-table th { + padding: 0; +} + +.page .el-table thead { + color: #fff; +} + +.page .el-table, .page .el-table__expanded-cell, .page .el-table th, .page .el-table tr { + background: transparent; +} + +.page .el-table td, .page .el-table th.is-leaf { + border-width: 0; +} + +.page .el-table__row { + background: #153667; +} + +.page .el-table__row:nth-child(odd) { + background: #153667; +} + +.page .el-table--border::after, .page .el-table--group::after, .page .el-table::before { + background: #1d80bf; +} + +/* */ + +.page .el-table .has-gutter { + background: #2093db; +} + +.page .el-table.lh40 .cell { + line-height: 40px; +} + +.page .el-table.lh32 .cell { + line-height: 32px; +} + +.page .el-table.table_header .el-table__header { + background: #1d81c2; +} + +/* 人口-重点人 */ + +.page .zdr.el-table .has-gutter { + background: #1873a0; +} + +/* 政法队伍-检察官详情 */ + +.page .el-table.jcgxq .el-table__header { + background: #1d81c2; +} + +.page .el-table.jcgxq .cell { + line-height: 44px; +} + +/* 社会治安-敏感案事件详情 */ + +.page .el-table.mgasj .el-table__header { + background: #1d81c2; +} + +.page .el-table.mgasj .el-table__row:nth-child(odd) { + background: #1e5fad; +} + +.page .el-table.mgasj .el-table__row:nth-child(even) { + background: #1d4b9f; +} + +.page .el-table.mgasj td, .page .el-table.mgasj.el-table--border, .page .el-table.mgasj th.is-leaf { + border-width: 1px; + border-color: #21C1FF; + border-bottom: 0; +} + +/* 社会稳定指数排名 */ + +.page .el-table.shwdzspm .el-table__row { + cursor: pointer; +} + +.page .el-table.shwdzspm .el-table__row .el-table_1_column_1 .cell { + padding: 0; +} + +/* 办公系统-预算金额 */ + +/* 合计 */ + +.page .summary .el-table__footer-wrapper tbody td { + color: #c2a353; + background: #1b508e; +} + +/* 办公系统-预算 多级表头背景色 */ + +.page .el-table.bg thead.is-group th { + background: #1B508E; +} + +.page .el-table.bg td, .page .el-table.bg th.is-leaf { + border-width: 1px; +} + +/* 面包屑修改 */ + +.el-breadcrumb .el-breadcrumb__inner a, .el-breadcrumb .el-breadcrumb__inner, .el-breadcrumb .el-breadcrumb__item:last-child .el-breadcrumb__inner, .el-breadcrumb .el-breadcrumb__item:last-child .el-breadcrumb__inner a, .el-breadcrumb .el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover, .el-breadcrumb .el-breadcrumb__item:last-child .el-breadcrumb__inner:hover, .el-breadcrumb .el-breadcrumb__inner.is-link { + color: #fff; +} + +.menuSearch .el-button.is-round { + padding: 11px 24px; +} + +/* 员额法官 */ + +.page .table1.ewfg .el-table .el-table__row { + font-size: 12px; + color: #0098d6; +} + +.page .table1.ewfg .el-table .el-table__row:nth-child(odd) { + background: #154a7f; +} + +.page .table1.ewfg .el-table .el-table__row:nth-child(even) { + background: #183c76; +} + +.page .table1.ewfg .el-table .el-table__header, .page .table1.ewfg .el-table .has-gutter { + background-color: #007196; +} + +.page .table1.ewfg .el-table .el-table__row .el-button.is-round { + padding: 9px 15px; + font-size: 12px; +} + +/* 重点人 */ + +.page .table1.zdr .el-table .el-table__row { + color: #7ddaff; +} + +.page .table1.zdr .el-table td, .page .table1.zdr .el-table th { + text-align: center; +} + +.page .table1.zdr .el-table .el-table__header, .page .table1.zdr .el-table .has-gutter { + background-color: #1b7cb3; + color: #fff; + font-weight: normal; +} + +.page .table1.zdr .el-table .el-table__row:nth-child(odd) { + background: #154a7f; +} + +.page .table1.zdr .el-table .el-table__row:nth-child(even) { + background: #183c76; +} + +.page .table1.zdr .el-table .el-table__row .el-button.is-round { + padding: 8px 16px; +} + +.page .table1.zdr .el-table .el-table__row td { + border-right: 1px solid #1379bf; +} + +.page .table1.zdr .el-table .el-table__row td:first-child { + border-left: 1px solid #1379bf; +} + +.page .table1.zdr .el-table table { + border-bottom: 1px solid #1379bf; +} diff --git a/src/assets/css/font/digifaw.ttf b/src/assets/css/font/digifaw.ttf new file mode 100644 index 0000000..59d1fb1 Binary files /dev/null and b/src/assets/css/font/digifaw.ttf differ diff --git a/src/assets/css/iconfont/demo.css b/src/assets/css/iconfont/demo.css new file mode 100644 index 0000000..a67054a --- /dev/null +++ b/src/assets/css/iconfont/demo.css @@ -0,0 +1,539 @@ +/* Logo 字体 */ +@font-face { + font-family: "iconfont logo"; + src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834'); + src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834#iefix') format('embedded-opentype'), + url('https://at.alicdn.com/t/font_985780_km7mi63cihi.woff?t=1545807318834') format('woff'), + url('https://at.alicdn.com/t/font_985780_km7mi63cihi.ttf?t=1545807318834') format('truetype'), + url('https://at.alicdn.com/t/font_985780_km7mi63cihi.svg?t=1545807318834#iconfont') format('svg'); +} + +.logo { + font-family: "iconfont logo"; + font-size: 160px; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +/* tabs */ +.nav-tabs { + position: relative; +} + +.nav-tabs .nav-more { + position: absolute; + right: 0; + bottom: 0; + height: 42px; + line-height: 42px; + color: #666; +} + +#tabs { + border-bottom: 1px solid #eee; +} + +#tabs li { + cursor: pointer; + width: 100px; + height: 40px; + line-height: 40px; + text-align: center; + font-size: 16px; + border-bottom: 2px solid transparent; + position: relative; + z-index: 1; + margin-bottom: -1px; + color: #666; +} + + +#tabs .active { + border-bottom-color: #f00; + color: #222; +} + +.tab-container .content { + display: none; +} + +/* 页面布局 */ +.main { + padding: 30px 100px; + width: 960px; + margin: 0 auto; +} + +.main .logo { + color: #333; + text-align: left; + margin-bottom: 30px; + line-height: 1; + height: 110px; + margin-top: -50px; + overflow: hidden; + *zoom: 1; +} + +.main .logo a { + font-size: 160px; + color: #333; +} + +.helps { + margin-top: 40px; +} + +.helps pre { + padding: 20px; + margin: 10px 0; + border: solid 1px #e7e1cd; + background-color: #fffdef; + overflow: auto; +} + +.icon_lists { + width: 100% !important; + overflow: hidden; + *zoom: 1; +} + +.icon_lists li { + width: 100px; + margin-bottom: 10px; + margin-right: 20px; + text-align: center; + list-style: none !important; + cursor: default; +} + +.icon_lists li .code-name { + line-height: 1.2; +} + +.icon_lists .icon { + display: block; + height: 100px; + line-height: 100px; + font-size: 42px; + margin: 10px auto; + color: #333; + -webkit-transition: font-size 0.25s linear, width 0.25s linear; + -moz-transition: font-size 0.25s linear, width 0.25s linear; + transition: font-size 0.25s linear, width 0.25s linear; +} + +.icon_lists .icon:hover { + font-size: 100px; +} + +.icon_lists .svg-icon { + /* 通过设置 font-size 来改变图标大小 */ + width: 1em; + /* 图标和文字相邻时,垂直对齐 */ + vertical-align: -0.15em; + /* 通过设置 color 来改变 SVG 的颜色/fill */ + fill: currentColor; + /* path 和 stroke 溢出 viewBox 部分在 IE 下会显示 + normalize.css 中也包含这行 */ + overflow: hidden; +} + +.icon_lists li .name, +.icon_lists li .code-name { + color: #666; +} + +/* markdown 样式 */ +.markdown { + color: #666; + font-size: 14px; + line-height: 1.8; +} + +.highlight { + line-height: 1.5; +} + +.markdown img { + vertical-align: middle; + max-width: 100%; +} + +.markdown h1 { + color: #404040; + font-weight: 500; + line-height: 40px; + margin-bottom: 24px; +} + +.markdown h2, +.markdown h3, +.markdown h4, +.markdown h5, +.markdown h6 { + color: #404040; + margin: 1.6em 0 0.6em 0; + font-weight: 500; + clear: both; +} + +.markdown h1 { + font-size: 28px; +} + +.markdown h2 { + font-size: 22px; +} + +.markdown h3 { + font-size: 16px; +} + +.markdown h4 { + font-size: 14px; +} + +.markdown h5 { + font-size: 12px; +} + +.markdown h6 { + font-size: 12px; +} + +.markdown hr { + height: 1px; + border: 0; + background: #e9e9e9; + margin: 16px 0; + clear: both; +} + +.markdown p { + margin: 1em 0; +} + +.markdown>p, +.markdown>blockquote, +.markdown>.highlight, +.markdown>ol, +.markdown>ul { + width: 80%; +} + +.markdown ul>li { + list-style: circle; +} + +.markdown>ul li, +.markdown blockquote ul>li { + margin-left: 20px; + padding-left: 4px; +} + +.markdown>ul li p, +.markdown>ol li p { + margin: 0.6em 0; +} + +.markdown ol>li { + list-style: decimal; +} + +.markdown>ol li, +.markdown blockquote ol>li { + margin-left: 20px; + padding-left: 4px; +} + +.markdown code { + margin: 0 3px; + padding: 0 5px; + background: #eee; + border-radius: 3px; +} + +.markdown strong, +.markdown b { + font-weight: 600; +} + +.markdown>table { + border-collapse: collapse; + border-spacing: 0px; + empty-cells: show; + border: 1px solid #e9e9e9; + width: 95%; + margin-bottom: 24px; +} + +.markdown>table th { + white-space: nowrap; + color: #333; + font-weight: 600; +} + +.markdown>table th, +.markdown>table td { + border: 1px solid #e9e9e9; + padding: 8px 16px; + text-align: left; +} + +.markdown>table th { + background: #F7F7F7; +} + +.markdown blockquote { + font-size: 90%; + color: #999; + border-left: 4px solid #e9e9e9; + padding-left: 0.8em; + margin: 1em 0; +} + +.markdown blockquote p { + margin: 0; +} + +.markdown .anchor { + opacity: 0; + transition: opacity 0.3s ease; + margin-left: 8px; +} + +.markdown .waiting { + color: #ccc; +} + +.markdown h1:hover .anchor, +.markdown h2:hover .anchor, +.markdown h3:hover .anchor, +.markdown h4:hover .anchor, +.markdown h5:hover .anchor, +.markdown h6:hover .anchor { + opacity: 1; + display: inline-block; +} + +.markdown>br, +.markdown>p>br { + clear: both; +} + + +.hljs { + display: block; + background: white; + padding: 0.5em; + color: #333333; + overflow-x: auto; +} + +.hljs-comment, +.hljs-meta { + color: #969896; +} + +.hljs-string, +.hljs-variable, +.hljs-template-variable, +.hljs-strong, +.hljs-emphasis, +.hljs-quote { + color: #df5000; +} + +.hljs-keyword, +.hljs-selector-tag, +.hljs-type { + color: #a71d5d; +} + +.hljs-literal, +.hljs-symbol, +.hljs-bullet, +.hljs-attribute { + color: #0086b3; +} + +.hljs-section, +.hljs-name { + color: #63a35c; +} + +.hljs-tag { + color: #333333; +} + +.hljs-title, +.hljs-attr, +.hljs-selector-id, +.hljs-selector-class, +.hljs-selector-attr, +.hljs-selector-pseudo { + color: #795da3; +} + +.hljs-addition { + color: #55a532; + background-color: #eaffea; +} + +.hljs-deletion { + color: #bd2c00; + background-color: #ffecec; +} + +.hljs-link { + text-decoration: underline; +} + +/* 代码高亮 */ +/* PrismJS 1.15.0 +https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */ +/** + * prism.js default theme for JavaScript, CSS and HTML + * Based on dabblet (http://dabblet.com) + * @author Lea Verou + */ +code[class*="language-"], +pre[class*="language-"] { + color: black; + background: none; + text-shadow: 0 1px white; + font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; + text-align: left; + white-space: pre; + word-spacing: normal; + word-break: normal; + word-wrap: normal; + line-height: 1.5; + + -moz-tab-size: 4; + -o-tab-size: 4; + tab-size: 4; + + -webkit-hyphens: none; + -moz-hyphens: none; + -ms-hyphens: none; + hyphens: none; +} + +pre[class*="language-"]::-moz-selection, +pre[class*="language-"] ::-moz-selection, +code[class*="language-"]::-moz-selection, +code[class*="language-"] ::-moz-selection { + text-shadow: none; + background: #b3d4fc; +} + +pre[class*="language-"]::selection, +pre[class*="language-"] ::selection, +code[class*="language-"]::selection, +code[class*="language-"] ::selection { + text-shadow: none; + background: #b3d4fc; +} + +@media print { + + code[class*="language-"], + pre[class*="language-"] { + text-shadow: none; + } +} + +/* Code blocks */ +pre[class*="language-"] { + padding: 1em; + margin: .5em 0; + overflow: auto; +} + +:not(pre)>code[class*="language-"], +pre[class*="language-"] { + background: #f5f2f0; +} + +/* Inline code */ +:not(pre)>code[class*="language-"] { + padding: .1em; + border-radius: .3em; + white-space: normal; +} + +.token.comment, +.token.prolog, +.token.doctype, +.token.cdata { + color: slategray; +} + +.token.punctuation { + color: #999; +} + +.namespace { + opacity: .7; +} + +.token.property, +.token.tag, +.token.boolean, +.token.number, +.token.constant, +.token.symbol, +.token.deleted { + color: #905; +} + +.token.selector, +.token.attr-name, +.token.string, +.token.char, +.token.builtin, +.token.inserted { + color: #690; +} + +.token.operator, +.token.entity, +.token.url, +.language-css .token.string, +.style .token.string { + color: #9a6e3a; + background: hsla(0, 0%, 100%, .5); +} + +.token.atrule, +.token.attr-value, +.token.keyword { + color: #07a; +} + +.token.function, +.token.class-name { + color: #DD4A68; +} + +.token.regex, +.token.important, +.token.variable { + color: #e90; +} + +.token.important, +.token.bold { + font-weight: bold; +} + +.token.italic { + font-style: italic; +} + +.token.entity { + cursor: help; +} diff --git a/src/assets/css/iconfont/demo_index.html b/src/assets/css/iconfont/demo_index.html new file mode 100644 index 0000000..298e033 --- /dev/null +++ b/src/assets/css/iconfont/demo_index.html @@ -0,0 +1,1711 @@ + + + + + IconFont Demo + + + + + + + + + + + +
+

+ +
+
+
    + +
  • + +
    重点区域整治
    +
    &#xe63c;
    +
  • + +
  • + +
    矛盾分析
    +
    &#xe63d;
    +
  • + +
  • + +
    司法行政工作
    +
    &#xe63e;
    +
  • + +
  • + +
    重大事项报备统计
    +
    &#xe63f;
    +
  • + +
  • + +
    城乡结合部整治
    +
    &#xe640;
    +
  • + +
  • + +
    情报处置分析
    +
    &#xe641;
    +
  • + +
  • + +
    平安北京
    +
    &#xe63b;
    +
  • + +
  • + +
    双箭头 左
    +
    &#xe714;
    +
  • + +
  • + +
    综治中心
    +
    &#xe639;
    +
  • + +
  • + +
    正常上访
    +
    &#xe63a;
    +
  • + +
  • + +
    重大决策分析
    +
    &#xe638;
    +
  • + +
  • + +
    报纸
    +
    &#xe634;
    +
  • + +
  • + +
    新媒体
    +
    &#xe635;
    +
  • + +
  • + +
    电视台
    +
    &#xe636;
    +
  • + +
  • + +
    电台
    +
    &#xe637;
    +
  • + +
  • + +
    涉外斗争
    +
    &#xe630;
    +
  • + +
  • + +
    邪教组织案件
    +
    &#xe631;
    +
  • + +
  • + +
    教育转化
    +
    &#xe632;
    +
  • + +
  • + +
    邪教人员
    +
    &#xe633;
    +
  • + +
  • + +
    涉案财物
    +
    &#xe62d;
    +
  • + +
  • + +
    减刑
    +
    &#xe62e;
    +
  • + +
  • + +
    嫌疑人
    +
    &#xe62f;
    +
  • + +
  • + +
    收发文
    +
    &#xe629;
    +
  • + +
  • + +
    办公用品
    +
    &#xe62a;
    +
  • + +
  • + +
    车辆
    +
    &#xe62b;
    +
  • + +
  • + +
    预算
    +
    &#xe62c;
    +
  • + +
  • + +
    指数-卫生
    +
    &#xe622;
    +
  • + +
  • + +
    指数-政治
    +
    &#xe623;
    +
  • + +
  • + +
    指数-自然灾害
    +
    &#xe624;
    +
  • + +
  • + +
    指数-人口
    +
    &#xe625;
    +
  • + +
  • + +
    指数-经济
    +
    &#xe626;
    +
  • + +
  • + +
    指数-社会
    +
    &#xe627;
    +
  • + +
  • + +
    指数-环境
    +
    &#xe628;
    +
  • + +
  • + +
    闪电
    +
    &#xe621;
    +
  • + +
  • + +
    稳定指数分析
    +
    &#xe61d;
    +
  • + +
  • + +
    稳定指数专题分析
    +
    &#xe61e;
    +
  • + +
  • + +
    北京市稳定指数分析
    +
    &#xe61f;
    +
  • + +
  • + +
    稳定指数预警
    +
    &#xe620;
    +
  • + +
  • + +
    员额检察官
    +
    &#xe60a;
    +
  • + +
  • + +
    员额法官
    +
    &#xe60c;
    +
  • + +
  • + +
    法院工作
    +
    &#xe616;
    +
  • + +
  • + +
    检察院工作
    +
    &#xe617;
    +
  • + +
  • + +
    离退休干部
    +
    &#xe618;
    +
  • + +
  • + +
    司法工作
    +
    &#xe61a;
    +
  • + +
  • + +
    公安工作
    +
    &#xe61b;
    +
  • + +
  • + +
    风清廉香
    +
    &#xe61c;
    +
  • + +
  • + +
    下载
    +
    &#xe619;
    +
  • + +
  • + +
    户籍
    +
    &#xe602;
    +
  • + +
  • + +
    志愿者
    +
    &#xe601;
    +
  • + +
  • + +
    流动人口
    +
    &#xe604;
    +
  • + +
  • + +
    重点人
    +
    &#xe605;
    +
  • + +
  • + +
    社区
    +
    &#xe606;
    +
  • + +
  • + +
    重点上访
    +
    &#xe607;
    +
  • + +
  • + +
    综治队伍
    +
    &#xe608;
    +
  • + +
  • + +
    租房
    +
    &#xe609;
    +
  • + +
  • + +
    首页
    +
    &#xe613;
    +
  • + +
  • + +
    非正常上访
    +
    &#xe611;
    +
  • + +
  • + +
    重点组织
    +
    &#xe612;
    +
  • + +
  • + +
    敏感案
    +
    &#xe610;
    +
  • + +
  • + +
    情报报送
    +
    &#xe615;
    +
  • + +
  • + +
    查询
    +
    &#xe614;
    +
  • + +
  • + +
    shehuikeyufang
    +
    &#xe600;
    +
  • + +
  • + +
    xingshianjian
    +
    &#xe603;
    +
  • + +
  • + +
    zhiananjian
    +
    &#xe60d;
    +
  • + +
  • + +
    yanzhongxingshiannjian
    +
    &#xe60e;
    +
  • + +
  • + +
    jiebaojing
    +
    &#xe60f;
    +
  • + +
  • + +
    bukongdian
    +
    &#xe60b;
    +
  • + +
+
+

Unicode 引用

+
+ +

Unicode 是字体在网页端最原始的应用方式,特点是:

+
    +
  • 兼容性最好,支持 IE6+,及所有现代浏览器。
  • +
  • 支持按字体的方式去动态调整图标大小,颜色等等。
  • +
  • 但是因为是字体,所以不支持多色。只能使用平台里单色的图标,就算项目里有多色图标也会自动去色。
  • +
+
+

注意:新版 iconfont 支持多色图标,这些多色图标在 Unicode 模式下将不能使用,如果有需求建议使用symbol 的引用方式

+
+

Unicode 使用步骤如下:

+

第一步:拷贝项目下面生成的 @font-face

+
@font-face {
+  font-family: 'iconfont';
+  src: url('iconfont.eot');
+  src: url('iconfont.eot?#iefix') format('embedded-opentype'),
+      url('iconfont.woff2') format('woff2'),
+      url('iconfont.woff') format('woff'),
+      url('iconfont.ttf') format('truetype'),
+      url('iconfont.svg#iconfont') format('svg');
+}
+
+

第二步:定义使用 iconfont 的样式

+
.iconfont {
+  font-family: "iconfont" !important;
+  font-size: 16px;
+  font-style: normal;
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale;
+}
+
+

第三步:挑选相应图标并获取字体编码,应用于页面

+
+<span class="iconfont">&#x33;</span>
+
+
+

"iconfont" 是你项目下的 font-family。可以通过编辑项目查看,默认是 "iconfont"。

+
+
+
+
+
    + +
  • + +
    + 重点区域整治 +
    +
    .iconzhongdianquyuzhengzhi +
    +
  • + +
  • + +
    + 矛盾分析 +
    +
    .iconmaodunfenxi +
    +
  • + +
  • + +
    + 司法行政工作 +
    +
    .iconsifahangzhenggongzuo +
    +
  • + +
  • + +
    + 重大事项报备统计 +
    +
    .iconzhongdashixiangbaobeitongji +
    +
  • + +
  • + +
    + 城乡结合部整治 +
    +
    .iconchengxiangjiehebuzhengzhi +
    +
  • + +
  • + +
    + 情报处置分析 +
    +
    .iconqingbaochuzhifenxi +
    +
  • + +
  • + +
    + 平安北京 +
    +
    .iconpinganbeijing +
    +
  • + +
  • + +
    + 双箭头 左 +
    +
    .iconshuangjiantouzuo +
    +
  • + +
  • + +
    + 综治中心 +
    +
    .iconzongzhizhongxin +
    +
  • + +
  • + +
    + 正常上访 +
    +
    .iconzhengchangshangfang +
    +
  • + +
  • + +
    + 重大决策分析 +
    +
    .iconzhongdajuecefenxi +
    +
  • + +
  • + +
    + 报纸 +
    +
    .iconbaozhi +
    +
  • + +
  • + +
    + 新媒体 +
    +
    .iconxinmeiti +
    +
  • + +
  • + +
    + 电视台 +
    +
    .icondianshitai +
    +
  • + +
  • + +
    + 电台 +
    +
    .icondiantai +
    +
  • + +
  • + +
    + 涉外斗争 +
    +
    .iconshewaidouzheng +
    +
  • + +
  • + +
    + 邪教组织案件 +
    +
    .iconxiejiaozuzhianjian +
    +
  • + +
  • + +
    + 教育转化 +
    +
    .iconjiaoyuzhuanhua +
    +
  • + +
  • + +
    + 邪教人员 +
    +
    .iconxiejiaorenyuan +
    +
  • + +
  • + +
    + 涉案财物 +
    +
    .iconsheancaiwu +
    +
  • + +
  • + +
    + 减刑 +
    +
    .iconjianxing +
    +
  • + +
  • + +
    + 嫌疑人 +
    +
    .iconxianyiren +
    +
  • + +
  • + +
    + 收发文 +
    +
    .iconshoufawen +
    +
  • + +
  • + +
    + 办公用品 +
    +
    .iconbangongyongpin +
    +
  • + +
  • + +
    + 车辆 +
    +
    .iconcheliang +
    +
  • + +
  • + +
    + 预算 +
    +
    .iconyusuan +
    +
  • + +
  • + +
    + 指数-卫生 +
    +
    .iconzhishu-weisheng +
    +
  • + +
  • + +
    + 指数-政治 +
    +
    .iconzhishu-zhengzhi +
    +
  • + +
  • + +
    + 指数-自然灾害 +
    +
    .iconzhishu-ziranzaihai +
    +
  • + +
  • + +
    + 指数-人口 +
    +
    .iconzhishu-renkou +
    +
  • + +
  • + +
    + 指数-经济 +
    +
    .iconzhishu-jingji +
    +
  • + +
  • + +
    + 指数-社会 +
    +
    .iconzhishu-shehui +
    +
  • + +
  • + +
    + 指数-环境 +
    +
    .iconzhishu-huanjing +
    +
  • + +
  • + +
    + 闪电 +
    +
    .iconshandian +
    +
  • + +
  • + +
    + 稳定指数分析 +
    +
    .iconwendingzhishufenxi +
    +
  • + +
  • + +
    + 稳定指数专题分析 +
    +
    .iconwendingzhishuzhuantifenxi +
    +
  • + +
  • + +
    + 北京市稳定指数分析 +
    +
    .iconbeijingshiwendingzhishufenxi +
    +
  • + +
  • + +
    + 稳定指数预警 +
    +
    .iconwendingzhishuyujing +
    +
  • + +
  • + +
    + 员额检察官 +
    +
    .iconyuanejianchaguan +
    +
  • + +
  • + +
    + 员额法官 +
    +
    .iconyuanefaguan +
    +
  • + +
  • + +
    + 法院工作 +
    +
    .iconfayuangongzuo +
    +
  • + +
  • + +
    + 检察院工作 +
    +
    .iconjianchayuangongzuo +
    +
  • + +
  • + +
    + 离退休干部 +
    +
    .iconlituixiuganbu +
    +
  • + +
  • + +
    + 司法工作 +
    +
    .iconsifagongzuo +
    +
  • + +
  • + +
    + 公安工作 +
    +
    .icongongangongzuo +
    +
  • + +
  • + +
    + 风清廉香 +
    +
    .iconfengqinglianxiang +
    +
  • + +
  • + +
    + 下载 +
    +
    .iconxiazai +
    +
  • + +
  • + +
    + 户籍 +
    +
    .iconhuji +
    +
  • + +
  • + +
    + 志愿者 +
    +
    .iconzhiyuanzhe +
    +
  • + +
  • + +
    + 流动人口 +
    +
    .iconliudongrenkou +
    +
  • + +
  • + +
    + 重点人 +
    +
    .iconzhongdianren +
    +
  • + +
  • + +
    + 社区 +
    +
    .iconshequ +
    +
  • + +
  • + +
    + 重点上访 +
    +
    .iconzhongdianshangfang +
    +
  • + +
  • + +
    + 综治队伍 +
    +
    .iconzongzhiduiwu +
    +
  • + +
  • + +
    + 租房 +
    +
    .iconzufang +
    +
  • + +
  • + +
    + 首页 +
    +
    .iconshouye +
    +
  • + +
  • + +
    + 非正常上访 +
    +
    .iconfeizhengchangshangfang +
    +
  • + +
  • + +
    + 重点组织 +
    +
    .iconzhongdianzuzhi +
    +
  • + +
  • + +
    + 敏感案 +
    +
    .iconminganan +
    +
  • + +
  • + +
    + 情报报送 +
    +
    .iconqingbaobaosong +
    +
  • + +
  • + +
    + 查询 +
    +
    .iconchaxun +
    +
  • + +
  • + +
    + shehuikeyufang +
    +
    .iconshehuikeyufang +
    +
  • + +
  • + +
    + xingshianjian +
    +
    .iconxingshianjian +
    +
  • + +
  • + +
    + zhiananjian +
    +
    .iconzhiananjian +
    +
  • + +
  • + +
    + yanzhongxingshiannjian +
    +
    .iconyanzhongxingshianjian +
    +
  • + +
  • + +
    + jiebaojing +
    +
    .iconjiebaojing +
    +
  • + +
  • + +
    + bukongdian +
    +
    .iconbukongdian +
    +
  • + +
+
+

font-class 引用

+
+ +

font-class 是 Unicode 使用方式的一种变种,主要是解决 Unicode 书写不直观,语意不明确的问题。

+

与 Unicode 使用方式相比,具有如下特点:

+
    +
  • 兼容性良好,支持 IE8+,及所有现代浏览器。
  • +
  • 相比于 Unicode 语意明确,书写更直观。可以很容易分辨这个 icon 是什么。
  • +
  • 因为使用 class 来定义图标,所以当要替换图标时,只需要修改 class 里面的 Unicode 引用。
  • +
  • 不过因为本质上还是使用的字体,所以多色图标还是不支持的。
  • +
+

使用步骤如下:

+

第一步:引入项目下面生成的 fontclass 代码:

+
<link rel="stylesheet" href="./iconfont.css">
+
+

第二步:挑选相应图标并获取类名,应用于页面:

+
<span class="iconfont iconxxx"></span>
+
+
+

" + iconfont" 是你项目下的 font-family。可以通过编辑项目查看,默认是 "iconfont"。

+
+
+
+
+
    + +
  • + +
    重点区域整治
    +
    #iconzhongdianquyuzhengzhi
    +
  • + +
  • + +
    矛盾分析
    +
    #iconmaodunfenxi
    +
  • + +
  • + +
    司法行政工作
    +
    #iconsifahangzhenggongzuo
    +
  • + +
  • + +
    重大事项报备统计
    +
    #iconzhongdashixiangbaobeitongji
    +
  • + +
  • + +
    城乡结合部整治
    +
    #iconchengxiangjiehebuzhengzhi
    +
  • + +
  • + +
    情报处置分析
    +
    #iconqingbaochuzhifenxi
    +
  • + +
  • + +
    平安北京
    +
    #iconpinganbeijing
    +
  • + +
  • + +
    双箭头 左
    +
    #iconshuangjiantouzuo
    +
  • + +
  • + +
    综治中心
    +
    #iconzongzhizhongxin
    +
  • + +
  • + +
    正常上访
    +
    #iconzhengchangshangfang
    +
  • + +
  • + +
    重大决策分析
    +
    #iconzhongdajuecefenxi
    +
  • + +
  • + +
    报纸
    +
    #iconbaozhi
    +
  • + +
  • + +
    新媒体
    +
    #iconxinmeiti
    +
  • + +
  • + +
    电视台
    +
    #icondianshitai
    +
  • + +
  • + +
    电台
    +
    #icondiantai
    +
  • + +
  • + +
    涉外斗争
    +
    #iconshewaidouzheng
    +
  • + +
  • + +
    邪教组织案件
    +
    #iconxiejiaozuzhianjian
    +
  • + +
  • + +
    教育转化
    +
    #iconjiaoyuzhuanhua
    +
  • + +
  • + +
    邪教人员
    +
    #iconxiejiaorenyuan
    +
  • + +
  • + +
    涉案财物
    +
    #iconsheancaiwu
    +
  • + +
  • + +
    减刑
    +
    #iconjianxing
    +
  • + +
  • + +
    嫌疑人
    +
    #iconxianyiren
    +
  • + +
  • + +
    收发文
    +
    #iconshoufawen
    +
  • + +
  • + +
    办公用品
    +
    #iconbangongyongpin
    +
  • + +
  • + +
    车辆
    +
    #iconcheliang
    +
  • + +
  • + +
    预算
    +
    #iconyusuan
    +
  • + +
  • + +
    指数-卫生
    +
    #iconzhishu-weisheng
    +
  • + +
  • + +
    指数-政治
    +
    #iconzhishu-zhengzhi
    +
  • + +
  • + +
    指数-自然灾害
    +
    #iconzhishu-ziranzaihai
    +
  • + +
  • + +
    指数-人口
    +
    #iconzhishu-renkou
    +
  • + +
  • + +
    指数-经济
    +
    #iconzhishu-jingji
    +
  • + +
  • + +
    指数-社会
    +
    #iconzhishu-shehui
    +
  • + +
  • + +
    指数-环境
    +
    #iconzhishu-huanjing
    +
  • + +
  • + +
    闪电
    +
    #iconshandian
    +
  • + +
  • + +
    稳定指数分析
    +
    #iconwendingzhishufenxi
    +
  • + +
  • + +
    稳定指数专题分析
    +
    #iconwendingzhishuzhuantifenxi
    +
  • + +
  • + +
    北京市稳定指数分析
    +
    #iconbeijingshiwendingzhishufenxi
    +
  • + +
  • + +
    稳定指数预警
    +
    #iconwendingzhishuyujing
    +
  • + +
  • + +
    员额检察官
    +
    #iconyuanejianchaguan
    +
  • + +
  • + +
    员额法官
    +
    #iconyuanefaguan
    +
  • + +
  • + +
    法院工作
    +
    #iconfayuangongzuo
    +
  • + +
  • + +
    检察院工作
    +
    #iconjianchayuangongzuo
    +
  • + +
  • + +
    离退休干部
    +
    #iconlituixiuganbu
    +
  • + +
  • + +
    司法工作
    +
    #iconsifagongzuo
    +
  • + +
  • + +
    公安工作
    +
    #icongongangongzuo
    +
  • + +
  • + +
    风清廉香
    +
    #iconfengqinglianxiang
    +
  • + +
  • + +
    下载
    +
    #iconxiazai
    +
  • + +
  • + +
    户籍
    +
    #iconhuji
    +
  • + +
  • + +
    志愿者
    +
    #iconzhiyuanzhe
    +
  • + +
  • + +
    流动人口
    +
    #iconliudongrenkou
    +
  • + +
  • + +
    重点人
    +
    #iconzhongdianren
    +
  • + +
  • + +
    社区
    +
    #iconshequ
    +
  • + +
  • + +
    重点上访
    +
    #iconzhongdianshangfang
    +
  • + +
  • + +
    综治队伍
    +
    #iconzongzhiduiwu
    +
  • + +
  • + +
    租房
    +
    #iconzufang
    +
  • + +
  • + +
    首页
    +
    #iconshouye
    +
  • + +
  • + +
    非正常上访
    +
    #iconfeizhengchangshangfang
    +
  • + +
  • + +
    重点组织
    +
    #iconzhongdianzuzhi
    +
  • + +
  • + +
    敏感案
    +
    #iconminganan
    +
  • + +
  • + +
    情报报送
    +
    #iconqingbaobaosong
    +
  • + +
  • + +
    查询
    +
    #iconchaxun
    +
  • + +
  • + +
    shehuikeyufang
    +
    #iconshehuikeyufang
    +
  • + +
  • + +
    xingshianjian
    +
    #iconxingshianjian
    +
  • + +
  • + +
    zhiananjian
    +
    #iconzhiananjian
    +
  • + +
  • + +
    yanzhongxingshiannjian
    +
    #iconyanzhongxingshianjian
    +
  • + +
  • + +
    jiebaojing
    +
    #iconjiebaojing
    +
  • + +
  • + +
    bukongdian
    +
    #iconbukongdian
    +
  • + +
+
+

Symbol 引用

+
+ +

这是一种全新的使用方式,应该说这才是未来的主流,也是平台目前推荐的用法。相关介绍可以参考这篇文章 + 这种用法其实是做了一个 SVG 的集合,与另外两种相比具有如下特点:

+
    +
  • 支持多色图标了,不再受单色限制。
  • +
  • 通过一些技巧,支持像字体那样,通过 font-size, color 来调整样式。
  • +
  • 兼容性较差,支持 IE9+,及现代浏览器。
  • +
  • 浏览器渲染 SVG 的性能一般,还不如 png。
  • +
+

使用步骤如下:

+

第一步:引入项目下面生成的 symbol 代码:

+
<script src="./iconfont.js"></script>
+
+

第二步:加入通用 CSS 代码(引入一次就行):

+
<style>
+.icon {
+  width: 1em;
+  height: 1em;
+  vertical-align: -0.15em;
+  fill: currentColor;
+  overflow: hidden;
+}
+</style>
+
+

第三步:挑选相应图标并获取类名,应用于页面:

+
<svg class="icon" aria-hidden="true">
+  <use xlink:href="#icon-xxx"></use>
+</svg>
+
+
+
+ +
+
+ + + diff --git a/src/assets/css/iconfont/iconfont.css b/src/assets/css/iconfont/iconfont.css new file mode 100644 index 0000000..82b9f72 --- /dev/null +++ b/src/assets/css/iconfont/iconfont.css @@ -0,0 +1,285 @@ +@font-face {font-family: "iconfont"; + src: url('iconfont.eot?t=1594801234442'); /* IE9 */ + src: url('iconfont.eot?t=1594801234442#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAADXoAAsAAAAAUtQAADWYAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCKFAqBhmjxeQE2AiQDghALgQoABCAFhG0HiHgbE0dFpOO0l6Rk/58OuDFUcpjvJSAI3KJ37rQ7T6IVHbBMOPEdacKK+vWJE+Nk/VNj6ZouHyRIUBvNxE2kx23Rz8osv7qhlPBPvzd33rZSf9texseoBJQLCuWQgvE3BMSpnykYoQAmpdJYA6Fq+7y0BTo8v83eD6IkLGyMiM2ppESLKCCCipFYMQPdzJVr13nLuuUtMm7hxe52seD//6bajJ3YPTNx4mwFASIHCwAPWk54kfUj7f5pdv8EBhlYFEdgGQgvlCAC/P73s4rON2ZgSe7xAwBVrwYw3W7JDoFLe7Nw4YMJNKilQHbs3uhmU7IQSVFqetGqObYfL3aKP4GvMjELeaHV5Tj78DcLLRRVJqhEELGI776FiEHO7Z/V6euTw2n6Y2ZPA/IjgWHZPB38LJ+kc+zTS/blLfMyXIQKYAtYGyCAQO/Pz/mvTcZsKcMzFmrW9d6bwr03+W36Mc0jStMHeZx+JDkgYab/hGnyqemoeZw3ajpq3xDkJtzcpiYn5ZwEdoDeTig9SF2iL2m1PTFkKarYIZvZS+0dfjylhi0OBIgB9c3nhgExLRZTVKoNEQEhMzDpsF1PRVKrBTDnG5FVoZJHjXujIBEJ/8ALwN/kkzc/lgEefIIR4bw+PsuFu/gpIDa7zcDfAY7y5gcQBH5ggQDMo9T4j39nWfxib7cO+AchgWLf83FUsP+RiRMi7X+HF/INVwuem6WVtY2tnbEXE3cePDk5ONq7OJuamXNZbI6+gaGRnrqGppa2jq6yiqqagqKSjKycvISklLS4qJgww8cvICgkApMSTkwA/DkUXiAiwBUygAXkA3iQH3CDAoAlFASsoBBgDYUBGygC2EJRwA6KAcZQnKiiJAAwgZKAOygFeIDSgCcoAzhBWcABygGOUB6whwqAC1QEnKESYAqVATOoAphDVYAL1QAWVAfYUAPgQE1AH2oBBlAbMIQ6gBHUlehBDLlKHxigDIAByhAYoIyAAcoYGKBMgAHKFABlaMbomjIHBigWMECxAVCAHEARcgElyANkoAUgCy0BOWgFyENrQALaAJLQFpCCdoA0tAfEoQMgCh0BMegECENngIEuAB90BfihGyAA3QFB6AEI4aewEREA7/gRvjE1FDronIRrzD3RYPN5GuJ8MuQODASnbQO5mGOKR7rWQEoNj3AU3ijHnJEBKEfDSsYYgUoziMowMuHCdBwk18Bnh3K3rnsJeJCf8CFQjhpS9DFeK2TJ7GVR7/Mpfyb+yqgBUbH3SlOVCoZCW3J5hZN5anzCtzjCOG+1hF0kBkIgkZ/f9Um7xHGtKEstC8EIXdY2c4+Ims9re4OzcwK0H85nPLEtrriW5sm+ivhOOBKpq4FCTTvRmRw+HOs71pwOsK9ZxoNMGXt91NphvWUeCCLp6E+cMaUyxisZ+nm++VZ1klzmIV8THfDbNI5HSnMsn3p35JLnRe93ta3nvGytIwaBSj1LS5cQPHm/oUTpNNLcaiwzhJXCVr4hiiirbZKJMJ21YJ+NBzRgHxY1jRaPRisAQRJvySYIABZXHFdeIwEro4lN3Di8FeTwmkYGjG0sy0ATYxCxpH5Aj3t3TmPCMNks6q4MPikhBwDNXGimyBDdsE9HkYVBrH8WirAxX4prmL1YBSycByQ7yF5i1sYVOYH6KtJ/UeKrFJdqgamzGikjPpKM7ZbWEHUPWyzjP5GcNAFGGoXP7sUQ9kDYDwuQvnpKlsOYAWBADEe4XbFCi5eBOzYRD7qt510mMjAegGZyqb7QMvfTxfvr1YP//735+bVsZkrg4kFz/4zcBP0JDBu0SPZb3gpnAKw7HPALepA5V6FHk9TqR9jFFEFLrxSajk2RV+xXzHq632jiNUu8lixxbRrmrWmKmsmpg2qsYZkEIyi8fTtSTxFu0YI3ZDGJYmIo5z1ZLxacwxUwy97dM2rzS7ZwhlbG0iDWChUSZvjdse37eRrvqcwy6B8/iAaSQdfdkN99L+ykAh59P7dSv+HCxIyvJGPopQbBtfYgxfPa3Q6P5HSHMyxbE0W6r+g9IFzFzEIQtAzRfvTlmuaj05z4MBv3S4t2MCWWvC3YzAKuAmzhHCsutkGkivuu91CebKq6TlBysV8JNYyTnE9iKEG5skcX1X/vSHFdSu5EAv9F7hewBEFt5d6zGsGexijE5DGhFN4lmeAUVoA23+AaMx3pq83O0S2mUPwmNR1zftRuWjlbHyv/HLeiDXCvlgQ/grsACV6vUOtyHj9eAoC0NDX5XqlUx489Ad/i5/8XSlONnbcMbykhBWwg+Hv9ClNs0spnC0wubUsIJjeUb2RzTV9+3OHJfnoFwzl3tyBvBhUXJPuU3pN9UX9+veGHxVdPuf7JNuACqTFglANatnH3QOC9HNEgHnFoJh/NEFhMtfZAT6negbucKgJELitmc0LdSY+YIoyfu9laId+REE+yeT5I9REdYfbA9Eku+WSvBtGc6nroKU1tmHdJNnFJDtTVDVAjWlYd1DQJAEw5w8b01QYcTp3UD8o98hX6nQtT4FpsTSKpwGWHpu7MAkNY5muP7nCXPQ8MWmZgJOHnFeiE9RHsYVrqxVNSPVG9Q1hNHFGq7kTbZWWypTmwkmPlKSwxxy9CxJUa9s17pBv3d/MWNTnf0HqvRAfVAfPQtl3S/GjyMubT1F6N4cbAKyoNG33X33/p7ODFId8WiaAI2KEBPbEzBCvFXLyfWi+lTwkZmygahVmfEC+ZKi/3tM2ldQfdB5gPsWWIcTq050DHoIrJWc+NPvLD+zLDZImr3FPKpijZWvrboRrtURYxJqShSS6sSQvYn3WE5diPWfy18biwYYDFNpoW+Zn/O3ry5JeP3ntAkxDnOIB2wsePl7zzlVYRUSAVeNCNtQ8heFqyB/gl/jL6OiN6315/FEsDkByLA2wH+4jKCO2es8TgcfY9ZwK9AMRgvFmRzOzHSfPBG0w9unkczWs4snyu/29T0LduFtCH5uwjBkCAxkKQLECqG68wPS8jtaYnSCZGS4XxDFvCL39r/15R+WzcEnP2epFoAJtTmFbWAE2rg1yiOM8FtuQIsrwWtZ92VyjWywwOhqnesuDwWcHaaIQpsDHWuHuodTpzWOnOhWRyaR5YAklj0q+gquOnL8mjCeekmyqOO+8drnXaxJ9zIkibsySdB5u6oJysb4CYZa+yZ5NXXlmCml7fJZ9iCgNzZ+3uS4cGnljTa65VYv/KLTH0ltqrzT9ewZm7gK54N3F8BEcWhbWmk/ELQqgfFiYXG1h9VIfdPE4AtFia5mhXoMZaLBF0vuG1LpFTDFjZMI+BTQG2V3F10iWRuP0E9rz9ijaiRym2s8wW9MezpeIiLYZ5HwFMDJLxeHNh8waSq+QPC938PJO4Oz53ievfnlI56Fv8ndcNt+LDD1KO6+uUXazX8InZ07KS2YYUQikupel99OgN7LmaJDVQB7WPaeSvLGEPetYjQCtLCHA7TjsWS1HPAkhxU006TGH2c0etP1T6RfmGfFaQ2rIH1rgHn6zet4wuoPT8TamlkIaQQgmr77qeU0Tn5AhP1/WYtwIAE1Z44QunznZx+ak1xy9qajolFontbq4+ausT8Dg+PTK2Vlg3eTLazMiTQQz1rPkh5m6MnFN57kgu3+OjtzfEV4ogGI69f/PBMpNgwbX0xvZxhlwuyA+5qx1mF9mGyA2bl9MsxcD7Xg+0O2cTuBKTld8zATAygWK9JReyeDdJ74y5pF18X7bdWwQKA0Dt61oml8asMKX5lWv4LRR9X9TxNcwYi1rrZOxMb3nRhKFdveXYjbgy51dNL/cef/ed95K/G+ZRFpo3eU0EC5gtH3OFRwJRRu4mOn3PDqPg7M/AVA0/HaS7bq4Y1HwTrlJ0umDoTjOHWTuSLE+OBbjy7BnTApuPXGGEW0K8ilvazo2PaA5B0tQlBD6C39hsaAjkcRZDrzVTO3lZAY4UtR5IpiGoboKqmbdIjG97JntezTObv5h7TrO3ieUN4Kwmf1JyNh8sYGzyslHu6q5QJtgArCtoDfuYbISsmsJ0lhNFVsRoFDWYY8/CbGrzQU12dVCHS/y4QzLABXY8Chr2i2cHoLrqzuhlweej2tlYZWbb1JXchen3W/pPz0IFv70qu/0XNXmTejpX4F//Lyvd/B/oN180WWr54lkkovnL6ncN52XDC2K6i2UUEPLrJ1N/8sXRjGd2t1GxPieXuR5tc5r3cWyoydYs316GeLubdz5f9i5yf5T4DTRgvklTw9k8QNKKWz83JtQeonDfdQIfvnWgesfQSyoNbMS/TX6EBEBy+Y1pmsY3Di/bCnsGkx4Oy76BgewBT+p6Zk4crvaULOzOwkEHbTrgLG2fQgJALdXLfqEgqJYlRV5qo1ZdiEHx2Zysi/yoQj7iycPTsoC1lXuYtqxY5KIH/YxFZrXM8aEmQ2bA2ZJYXMUv8QrZTtAGGQxiTzTPgZAzQJORyeu018oE03MeZL87nT9pWJfTDIlNydzeeq7oDlIPTqY1O3ikE+F3GdcqdX/HmUgfgXbhdSPs3hr1mhFPeehOOGw73gdRz1MRl9gY8Vgh1wYVcT0Rcvu8JSIMpmFdcz6JQO1CGQSy6pYrXE2UX9PRAASBGAzFcfQi2UDl21ZamI6Ix594OYbcaBmPQ1kTsX38gGTsIEfAlvQ2xXFnNFHp2o0MtbSZ7Nu2R6q96+yN5pbbVl3jZW92dIpwa7TGs4buCBlur6n2kLYeFRRF57U8AnxRLY2kUCY4CroNysZ2iU03IkFCOH1/agnWevga14EpMeTahqkVvA4mzWDI6xkiVxM3oOWQqfXSEo771DwUtkzSBzpfJ+GPH5pAsBFHTqI2fmTxVfLHpaxKf4hGnbABvoSCEc9pJ5wcpjqqg/DnN/9W+nLGsymFm3kyyVBlZmDmuolHP7+eZvDD9tYJBJtSpJgKBsjaa2g2U4HpocnqqAwb/K1yl7ho3vIKefwGzOJ9jdpryNRUg6fz3BpF0+q63MF+9QGTp0BgauPtbHUGDaw/3tLmuR+5B4rtAEmzNDB8vuRByjl+r/Su7SRczuhZOeMORgJRb7dXW3btqfNy5dxtT2RHJNXqrqp12+FO2Syr8nYk8DJWhv3xoEdQcFtERN5oa1WlS7Qkd/4uWO3VKlLj1TrquKUMV7mEDMc9SoR0OqsiGPyGix7qEjp63/fSZ5ofJH0JRoyjhSvVl13S8If+UqHso2RPmAoMevpIlUAO7ofDlaE7bUM7iq1gX0e913untZvecodr0z2WFVGXRh3VebsteOhmqLIqnC6EDTic6CD72HrH9rJd0XA45AoBJAPCrL61qQJWdkCLLrM4EOVz+EM64hk7Ewls7tHz4UqhAQ+uaHvCBRG6RUMtvEwr13Rff0iJVIW2ceWG77Zn3DOXWjNs9XqNqsHDtmkGUk5iu2G3D+803eMs9QGfgWXWrT387TWsiKdYy0/o0PhIeEDYH8QOZ0vJUxD/Lc75zm8al1jPaw9xA3NEw8fMJ90A2ZaJqBLgtTxHFD9+eJod6Vx51LuaEg375A32MoSph8ixIbRIn3s1FrxkptYDc6dM/itvz8C67IEhSXBe2BgSYBBm/w0tWQO/AVKL2L9TwrDNB45dNLG8kuNdfyr/Qc3Os6/epKIp+KkdmLZmuWG8QG/YlBMY9mAN99IiveYLA5k2hZtx8vQpgN2Yxu8FRVN2HHzPqx0ur0bpLvZScvI61yCOMpCV3jVXZsnP34TGD8tVcd2E4h8zPIIYPlu3Q2Q4Mx3OVsRKkO+fPL54jJ2klZV+OOW7Ncn0DFydWl65NZPrXDfqOqIOs2buYA5QugHRxOH4yh1zIqaWb4MedQg2RtPPoUwcsE2ad99/+/jyHPvH18bEJSBiC8XNbUt+sinz5wi7DyOu7KyTLL1uyP1534NGt0fRK1TlJWX7NvsoPYk4FZ/jLnCb02xP1XjBsIotiPe4lKmbDmjDNrVdZJWWraZTVqS+Y06gldtnrMuuARscSRKb5l0/jmbsL1vNFCGgsLzVuFjpgY0hqGqfPcssnjfSUJ/Tlkhxppn45ASqvejzpfs0YtYiVDegs+vHGpnxmWh6sZRnDuDuMN2cwck9KvlZz5FTq95a2Olgdo8me87h297na0Aa0ltreHTq5+n2Ifr2IvHiNoKd0GTt5nhVvCi0erRX8a8TlZPZzyeP7gJ64WYgZzm6WklcU/xad5viXCNUY+grVFRlLndReuoGnPCqC3ekYumau6k+jjaP03gPLOO0mHiGST7p4FNOL/ZSJrUx/ojWmG0zQ9uWWTfUdzfLD4VXx732qE1QJh+kFjL30/4ifBIkbyVlUwNVK1FuYAGP/E4nN0rfJsTUUP36zJLAKD3twoScnL4kb6u1tMIlYNtmuYH/q8SpqD1EkZx/JRo4flbdMS66lvHoh4w7Igpyz8wYgeWQQb4imbco2/gr1AV1W3ML8Fy+Lq9+BVh2rSjvSpU18RUb28X6+EeX58EHr19t0mjBYrDkJ3UFhxJtyNqtgLt94sR80jasjD1Sci2mOHbSocvSk+5i4oxgITy5LOS/+yGlP9wfAeZN7RuZa+KpxuPtZ0h5FwxpR2qNE6ThM5T/CaMWa5K5s/T8sw0Rq9opZ6eVpYTIyWKmmlLicLU07WqHUZ78u7+zJMvVUSwVTuIHuqRaYrKRZbHBfA9RuUEFyOIT4bhgjNJ7UYPjKo84nDp8Fi9WRNiW0u/2aGV7Yn2b2ZUbwV/OFycUZ1xuN0pA+Jqu/X9lc5mYbVAetBWRVZdIoEyspylQSw2Q4gTv1zpgi8q5hDgbgSA6vJyEZqGzYF8wGulaOGkm0RszA1K1ESPwG2E1tIGQdx0tUkqc1kEiJpnbQTS3kyifrS7FMTKv1gZveU61Y2aBVFC/fwYQl5RISCGitsa720dpC0YEQQpjTII0ZA+byqEC/nJSBrwc8W8EFWh8K/Q70krY0dQKpdaC5yjw/2wjLHH7cCF6ga652U9YXSPynXTZYy/4fy8TdHWLWDXVLPG35ZUyJ+dMKePw/HmVr+v3DF/tnP1TIE+FrialrbstFPoKqUISpjI726lgkzGMLEw1b/FraVUEDZw+MxCkAB+FrKqqP/hdcLevsKZa6NvcwlsdcPsLGCVi8hwvijhnSNNxZ5BJvG1bLovSdI9PTce7ZFaAcrgrHzZCMKesFMwKZI+C2dCkRvArXBOh8FnNjJwlVR+1IBeQQtd2M+E4di2M5/XDOJ4USmgQeI5sej2N0e9wYz1tKrmu7WBJxEOVd33nnuoOEXCfLKxPfVrn3Elf8HljSqMDJxYWidhp1MgmWbYaMoOxgRKwtjCTBzZu3AAi4BDQgs2IdodSftw8VY2DtNq1IGJi8dI6oX/gzhmSvYhNBk8Gk/+VoCt3kUBIjytziElfA5GRbcy2IoeB24DpyvyYTLrrWEQuNZR0rKgZ4Oe1gaJorj+HxVOQ5YzJgdOTKWqc0EvgJwwQe2HlFGk87ouM0Ak/OpbaiizzM7DijPGBkcJjUmwY1NKBZ/Fh7yboA9yMmHhkvkMCtlkoc1yJVWDc4eb2X5/9sfB1bVktYgGE3UQ2wkZHT7gW1HmVFlqEQIQSTRa4CCCVvgBYE6vgiZE00QqCEBolC3s6Cc9Dc3KBf5Fi2FAvYKuBGoGLs3fEaU7ufV6Ca8ToMLsQXSYJKtchGm9sAXwcLhAER/AnjlFUWCOU1wYT1GvaCa0FIOBm/giA+6A+TUZqFpj+yT8TCAFohBqmiUKYmwSZAhiy4oJbSOUmnDBUFJxmaD2QoW+vyl1YoyFZxSQJWpdVk0NNdRV0irOYL3AVIjG0ElL5iSOVMUoZhBjnA1TCpz9XBaxQ5jhSKycK5ClgYEYMId9zj79K67QEN/dxgFIOR4jKftKAmksGkbOUBsbnAGg4hvZC23PjzlZwB8r4E36FA5g1NhmQma8MUmhgkNEfExAueuLKvejKKRiBUk9mQ+tA1hqwPhtZn0yDordVF7bz46rhbQDyt+lyEmsxd9IqWcsV+13O9OJ6MURzK3bcqTrJqwnxPfAAu15OXccMFGVQCyVJ6gTMV9zX6kmvGZfR19hAcYrx10TcV8xXdcInxkOHj861xdR1cuz6HUd7Mb04lzMF/dE4HqCess1voncaqqoladJJfiY+TqPMUWfrISuEJf25/FeD8yHECJW21+NuNs8EMwBYDfjw6ulgGsDupiePboW26QH4x6X00LatMPTl+7rDZb0BBTEDpbN6CwHVYlPF6vJMRtMKZCXmwT+Uf0loEVo4b+G8BWBNYk2S5+3+4IV06p9rTvE8lgKe9/AdEPRCehcs4nkt402X3AHDPO+lQDBN4H7+7PNadBcAb4uNc5hBwDAOZ9EPY3CHnbKO0HEYp8Maxgk6cUuut8nhXHJ2sm5fYRkezd43hMsdMnKfUpEa4L3GFinT3p9oBSsDF53+tiAlc2nU+R9hi1bV4B6kJK2zdeDdzVbmTDF9nosQ58seIJ8MImx4c1BMT6n3LsAWEGLz0YOB+W5r44voKz4s9yrIx5swy/LCwEBJqD6dmI9zGGrqlPK9nQsSvx4ivflbTMrx1LLmlwXEqLArsSpSRYk04U8FDMFDAPhZbMITNLwD9bgS4zhBkMbhitKkRXTmlv/f7kC6wanpwsIQZ3EHJ+9cqcPFHTshuO3Xu6Q/Y8MDSBCJzQaJFmzjEDnlCuluuyjv9zm04PaM8PImyLmEYzhTYsWLj8suTTuuwJQ3lYFSFKeG/LN8zc2b73/EUnJh/epdHKqDLWnvfCnwjLfJpH5hc3GSLO66IZk4booGNzHamvecaqYUzMebmvMK4djCKz+e+i2x0QnFda2R7qKbtf/j2QwxW7Ssmc9nzaaKsaYWUqvjyLc0x2SZ7ByHzCMJsj0EXnyWzE86WV7eca0HfMJYLz44zkvd7cBx4EYJjt2XcBf1qVK3RgkTYrlEDW/j1A/bfVyCxEDjdWF0lKGD8/juMrqS30Tng2UdpNm7XRX3rj55JD5y9OdjADfXVhklJNZgngArG34KPQnEBGGgm2A95uYMzAy2CdwmRRUr+bRDe2ZyLr7cfeBNmtSKy/mJHgbtmFqCA6WxpRZ0hQTj+nK2R5vjP1I5OtN6gqhy7IjVqoXydLhgNlmCZfs45nN9+CAtUS6K5roKoxw1AodMh6FwbiI+ijOUSQEuGluSUQ4WozL8zLbp92bLcIshOfgnLTgoOPLYJN11cqzJnxvWz1iVWy/wmSfslEHbUnKZfG9dw2iz/7y5nJ+h4d3dNWkKlGeVAfJLGwdQO+0WnJawCcmmbeKgdmDH2GMhC3QWLcIvoU5AlrABO+rl6Yv0T6hdjXjw2hecSNLiCbhqcD83YRUT0a9yJJ9c8uaw78fhh6h9+iZzlbuS+iEyMsC1OIxD1NHzZxwbnNWQswlIL4AvhaA81hQxXjIGpMsmyqIHIFG2H7wQuE1htdqbL5hLmuqKZnqOoAIe/nqQco7W4LElyzl/qo+oiLKom2XWJkodFrhKsUSu0wCF6+/hHyCeWs7nrkPXo+F4nopR6H2aWrQ0UjnP+QjDw+Bz1M1IflQBx/KbV6jQVbASWHJXrK4Fz6BapIOu9l7vqqKXBl0hlq4ikpKBa2PG4dWInLDdT1yugbeTpCHUGtxjyNqIvqU0QVGeKoEoAuQ2Qx8ozWgBdAwy03c6CrDTEOFGHjoI8cj6rcilvHr8C3w9KsiEfNuC69Fv3etwYKEMlq2PuRJI5kbhRUAMGBobdYOXjrHJkbc0ZZWX+4pCmOjcK4HC0JrYzZflX08gDLOUlHjZuSSxDq1aZ5bpvUQTFkqCGfmjQbbO02AYOYWPbYhsDiCurLnGGVG4SWMUK6osPlbJrUsx5ks/9QKKf36Zxy18ccAOeUrEQVG2U0Psf7jm4HpT5leSqF010/WyRzFmThAbh61IkSUa8qoMdV+irXcKtGLPklp47ipSVTB29ustM3yG/Xr+v99xI+KHCKd6qIxbdA9fEqs74aGb3NkeXWJEJ/U7aAxdKKw+rpFe41hBoKzxpbFYwj/AKSK5S1qhP7UlKtEv6RWkSEkv5KDCFOR8ntSNFqV2OP6gVPO1LDnw3G1juYk8RazCssqLX+XSZnDtI7gulPHlxbXB034BhgUNR1QyheIWeFcIFcL5O+dcPPvXl/RYTecvCoVKdnRRAyYvEmOtMr9GhS4Dt8CvwOcixpDfBDUbMcajkmXWw+WValaA0FHowy+ucbkAvONtqdbc711NSoMdm28KdW6GOUEZOJabdXg3YQ9uRV78G2NMLIky5jHHT03dhuZ2QUpo1d8VlhrY4qvB7YL1SliF4HLp27212dWIlqXB7nx0/rcFite7bA/hbyebsduBQCMVOX4H/4PvSJlID7xO2dhlpLEprEKhc3khTZLuNPBK2+aQ30th9XlN2WOGclyErLl0US3tfK5bSwZJUVkmdvY1z5kSOf/VHRnJs5dl62CkZdVsm5jt083q6gVO2aGbAfFUzqIO1tOiKoK7pL2CsjdfoIYHwGClb3loWm7o9f8mfmzzW5RqDr6RllMWXukPBtB+gWJPQbmDpIPMNPIcS867x+qCS2IvpuVwguZECD1ptFlEzhpoLUTv6sFlhqwOEUQmylN2AvDZZlwJxl9+Mu4AT14uWRAljAmHn2F3KALbFzeM5EV0Bq4IPeQEX5xJKC9Bm4tKM+uWsq/5EcpjCysW+YkonDrEuJrvHiQIFOhlWQQNuiaz35Fhk3S0uYnSzcStxDxVmAQguwX3lSnes5CJjRV/KCjOuQsbQXYRumqyIgXTjPmItMylzqUFtM25yC2ntSJfeLERni3gf14VezJwIw7yKuZdCuyYR51LbYE/ODVyhJvMWdGe5lVdrFwp2qwFrN22kHCutUk2G5hK8kqHYKd2nvrf9K4pSB/AAkgam+XmowU5EO24UpLThjlwgI83VrWlZ7P4abllQnImPdlgWDXzfGnFko8dly6t1Xwph8vGeNU13GxeTjk71GL1aihn+ZfUJk9UcVW0C0cY2pIYzYR6z/h8zY+KspNp1ZUg4sS24tzrO8zZxSuvaYpnaKdadugLf9qeJzdt2KU29Jh3xRawT3aXTAhj50/+buDpBPm8022Fk+ibD+oa9Gla7h3zo9OT57Xmc8RoRm4KvwVczc0oSZVelCYFMBHg5W/THqMTyNRjmbQjGMIhJ80RGh7jdEhLP4Tis7RjE5f4BK2M2BpzcFvo1sgD0aHbYg+q99K6WMLl3jXrndrvDsau5zdklc3o/vaRzfpLXHTPlDEpNyMbYOba8EGaQZ94TSPtV2wT1L1xo3Q8Vd9dD17A9Wh4pXn+l/pkYc7QU/wYNIbE/A1/RP4meMLWJKgIOYsvOl0HJZ2Ae9Gketjo8vQMU/pZX67w8Jyu9eIbIs3+025638LnBIyVI/mEkv0yZVpmKnO3KiRN1NUjSeaJewcuCyQMxsKKl3CzPr8Zp5V+wdYdafMFDfkEHQhFbMaY3/U5XqR5FLlqxXKNpMva3qDJXLay1kmardFL9y6aXN3c2NVr6/5jIWFT8OU+wtJU8lI1lrJ40kNqdK5PKcnuLvReufO/r5dZkLRBW8UJgllGLwYX30XqLSSAycFsWx9gKUOL7ACsz7bUOsQSlwUsVbUdK8PHnxw8/6nIRyXIESQbZa7foM7JOknyRmoT9j3U/EbtqxMRcjzfwQtIaW04zzrCR7jpNFSHfcawJo0EktCo8xrziWCxIo5r8r1cUnjZjb1iRXgObvf8QwbcdbMB1ZMmFij0XSvyhEMG7M/Aa40tTU+e2kHMI3CTW1aBSqxAdHzSqVNf5vHWfLmVeuqoWUI5LmZlUguBS9B1teksUaxbSolR8ULl2E5qOTqS8JvohvgGvARJiZ9nUFHc3jnrFLAqYE7QXJyQMttNsGefl5A2DydWRIsAcL8e3vY1zSKRN6W7GIpFvksS/lxDatp4TYUvwf0ZLfDyVtb1LbN2J7G9FQVZ3k+iMWVxUcLVNCvlt6lxbA+xnH3pzuewb3h1nZPQWxqz1SXhXkIxxfdklLyzochZ43lq58+1wyeBdRwahzmFgVj5XU3xRGtaPBuweDa35rx/N5ZWomzpeafSfMiI8cmoTXlU6dVyz686IE5qa8AVeNYhjQul3qv9ZaGT2c7MdilB4SoxYk2u/XgqPMh7utGLZcUi7fDfHWFa7j+V2bWqsdO9kN/IBuXpaQWiQuHp6cG7dJABGSG7+AxUoOUoeQh2fLz1FF7FWcHVdp2GBGEtwvDIzGdXfUeWnXf2TIyD6ccB1d/20Ar3ZGhwc4bwS7GpyFKqZOu8D4d8oeVwGo3WYXRIL6IRZ6Qv6Lq44yS0OnNNJx8MojxzwIMjvbyIgL5z+ClvoPB5XMdrKuYUTuLIKi+OvwhdCZStABIQ+LnLINtZF8J2pGQwvnJgEjefNDpsSyT8dGXJdVkcz08OA5ewVLPbn9H9oQMIgsIh/VF9ucBV55aL6+8OXQykBKoeMddZBiRPs0qU0/nQCEtGSuimc4ZKF0chW9QzoBke0C4ekeMAFRdPk8BziKJ/K/yhSi7Hx78cM/uEd5nGYvlYz3yWUefJfGzd9my41vmzKINpKIzWV3jmxH8ZCf+tSCRbMjs9m6TM4HI58+c/eQLgtaNRcW9RNXFdMluSQNjxkPOHWlb+Vx8j1+f7rWf/mZ3z3JZWJMuLRtLk8IZmpw+ceBv07sCxDxq+W7fsV0uPaCKyosbplrggxTzhpqiXxlRoevh+2z1l1NbNHmZ+HN9F0xeQa1ppcTb5gSNZcYXM8mL3nP0T9BmSx8yJs5XiLDFYMNUGeqZWc5N4iaARNGD4WuB9yhZiCric4Vulo/t9uXp23MQeN1876/+3nu5TdZU9wzaexvvBuHm69YLqvOpkM/WmPZ1v7z5skT2RrO+DQVUsS2CQ9I98Wsf4D0oBVKQN0YQsyA1+RzRSjJz030ZMVKZA41umKEspTbYGlAta2/bempTNA5jdtoP1bhl403GC6QhqQX8hFHVuwKjAevwA2k6EF+ESHRZV+o0zGkj/FBBOQ4XI7xMzyehiJBFaDEvxSzpOjFICwCjpfxsGgWwE5qiV9AiuJVeSb4NKlFnmljkb78uZFZ2zPlj+Upd8dQJ7qPzKya96bLO/0hIpr0h5yciLkzuWOlETq287Zy1xI1E9CuAzZENAXsBpUgh5JnUWXfLwrx5sD14M/krH1VnrcPE33Ko83m089aC/Az9zWXb2s6s0bEFGHZb2+kZx9nKBFlA1yRbJH4Lg1tu02mCHpKxz5zElsIXqiJeDpbACXUprQt4jTWi6EHsU0nv8kHKz40y/0Jr6g5e7nbA6N0+AFE0dFOVPvRFLt4MsFylpzEFCTcjHZ9UQq5jnMR2vwwcDqi6qBmlKHDd4ylcikMGLidJW/O9oK8AsRZaO4pqI0iyY62RdbL7bSciMc820EXvxLtyZhH3gVmoxNDAAl8DF0OJljMugYqikREmMEqqogJSQQugLH2KklHwJJNDzoM03lrqvWoObRlna40BYfuDomb7WmO9IebAZSL1k0yuV/XEnApqNAk6VlvdMElh+kXx6hZj3TSjg/Q7ovDB55nUntuqrS3kxo7BxhSSJwhWLGg8yWvtT2IfI8dIWatOBCH0bVSTrD51a5AiLxKT5NDG+uRDPqSFVubbhWvdETff3ZcfwSrfgZD5LDyyf4r3/uH9fcOfXDFNeXiH/B+gM++mCxEFKCL4zGVM+SKS6KwkKiipGGS0nAryAVkoDk3sv1CbMbfmSUJ0O189eUA1b4Vnz4QZoGC1R6Lt2iX8MfhjefwSeQdU7f54ghUorIDkkKymRQfYqLYFkAKMsLl/wRMp/Oyssm3SRjaWxgfo4qLhtqh6ia32zwTxZjgNVqllF14JSUAnPXAI3OYsv6Kv1/7GCcNnpMTGX+MjpEmGINO6CSmDGSbcjpWER8twZ6xEn+JDBCFUJviGPH2yTSt2Yi9qSMkxiTA4Ckm9NlGh2xKP++j6lzpoEAWDD9PDy1i2Ta5rBB7QJNxZVmKAFmwUXsZsQLbQZiLAFVbj7aBXEhOsTwtljQAhNQfH4vgc6wB6FfNFRHDwalozlZsml2YlK6AibnTKl7tJUYMgrpFxFCgjmXLlWmSc1yCnVkLUZGMSkJux5sjXwGyXfPFzw+1+ItXiLPSZU5UfedCgB7/NxRyFDtjRqn0MOdESBX4ECnL/NkwmYM+ikT58vCEjfQr5luQufP5HoM5igbYaA9J/qPz03M/iOFWSY7LgGZWwqCyfbmfYdXyW1W+EwXRj7yyPaeXY4fCyiyP0OMl9ShH62XjmJM+zIuJLnAEdRmysoGExnb2rtOkRWR5LtbnayioJ6MlvPDxS+CBoQTyS99Ad9PaQ/PFyHLQVbpv857JjWWePTlbFd8sXSLZYC12HvvjuT2Q7AtbVj1fpouoU8LMy0UE4aImbVGU4WU0SZw540iz5arV5RCg0Nw6XShobQADw8BJUyfXi4dIcKqq6GOF9dXXU+VFUVtaqq2nu3lDROQvf//Xc3Wgp25mSodP7k2LJk4VKZAaxG791FVpPG3y0ifXIZJ3ETjkx1NRuTxp3HSaXw0FA1Gw/Xs3GaR2VeSTRLSWv2jbGY2eeBG+Faq0N4pmsyftjuV/JuJ3dnVetnH96TXXJshxiHCDnEX+t8cyxv3cPc1cAc37pfiQb8YTybDCi2zYzNhG494SB9i03uIHGHGv/qVhbTVF5Z1I3GI3WH6IfxRwhb6JvhH16Ew8fpBC+XLVb8YUIp4RD9UBzJYUHbSh32qJZ2hK79I0y8Zl8qea0+RedjCW9FpL4VqUZdexqpYaow8dLGw8BswmF84zKI/8yqWZtFiFfjO5bcli0N4ns/BNyMjVUR2Rzf3bANSbca199/Q2m5NubQRi/1zwEDY9daKK8PrG98mdyC4m15UsLCnEGiJM+GZ5yffWHOxep7KIuFVurejWCbw4jcnciHDwipnYkgOY8AOH22NbZ0dxs68/un9hXYLEPwCAPMvBazBcAcJSuMzfit0G9y+MnTCB+36emHKJTOsCv2v4KUE4SZjCTtbytpNS0N0RKPVIKLlu2EaWn6ciww0P/3X5E2zzwFVSHOyUB51AE8V+7Db6b6pysAdootKMAQZBjNSjQuK7Ata5jKehl/PXN3QHSRwBToWxhQOFiYkFD0Se9wqMCDEKqIlhbBiXWF2c/ASejnzBQjeoKijhcxhM7+e08aApwKXargh5/obqFdAGi6pzDcI3pAbteAvtuQnzi5EzvaOC8S7gOarLlrj4rqN3v51abok7HGuTqvh81VVp9TUufUHDOBGqVLXqVKUh8j6ohE0fkO7CUllG8VU9aQjR+MHvLNUypdFGvJfIItnoqxRX8k1X3w9y/Al59Hrkxocp2MfMbTrzZjP4AmInCbYvt1XsSDG1HzjvsvffRoQeyHsagnjwOWHY2Yd+/6Rr8xn/PjYCm09eOXzbTTjAg7cg69mw2lgsJqWkEftRQOqnPpUDMUZJWxNKh3ZlCPNZYfJqJ8p/D9xpxl2G3nDUgehBQSz8WhLpnufFexo1StcORwHR25T3tyoyFqJaZqwjfbsVcx5pzYgqgsAI62IP983LkiNgBqsEoZE+SqoJ1g5xnobDqnDyU6dAefPuz0CtV5+ivE5sGtMvwSVP7zj5MdZ/Id+4ZMZYEHVPSioYECZ/kO917uuzm1qU7/lsjKxL8a3Dqdpz9fu5M2q0xzXxO+59r4yR8iHWYJ3CuhJuK+9ktBLtwpuJWAx60Ck1YWEkrs9refwlhPa0t5Jz6utrm5No7YWd5q9Ywp6PvbblfrJT/NvPnIubPIAmT+uXPzkUOos+dAgKONGfiR9Tn07C1QiJzGFCZf9Pz/uDuCWbqDwgZCmNdfw7daDkRjHtveAMTmo1AnOIocRGsxz7C1/Ia8F0cbjNXGB4eW3M2UTFso51EFQdPogoFgXmb/bFm6AzdwKoUrYAAUsdm2PIFPA/+qZXvWwwzxJ619uwRthf8gtnyWI/FyNp77atP+ETACBWcFYNhQ+h929pBKsCU1HQ7RuZpEcDobQoO4DBvbtsKHXcAGNv73SRw7YJv9f3epXDCvIBz3o0sgAjYA0F4UKWBLwRiQOJxfS5R3rfz4AfgbcCfggiLGL77FlO/qHDbUO6mpWK25WWv05P0LmgnV3g8Bft6XywTGids6H+7SZAlxIlMJYhxt6RKm5Xcx4aKgURixOgVX4S0CtzkB1T5teIyQn5Cb9LJAHpWRE1ukHqf15HsYRluMNGkdY2wltY5PrhxaZGEVRBS6zcrzLUlTlvTl+1579Jv391GnxILhi/1paoIuVb02ju0bOUVE5ftGD/NeTRESgrtUHYLxAeIwdtbbtSnDP3iNqWTrTU/EwjxL0i8yRImBD2Lzqnd4HlbrfNJzz9d/Wtg+69K//71v9zmr87Mwu20cwXsLO5MM2xvyog3R2xoTDZmdeC9oxEw7HliILcAeC3RWTCFpJ15SBwUvwWWd8CmHbmHLiJ9l+PimCluSFfgYm8WsgITlL0g6SQsbcWxeNMbGR//6J76HizMB4fyy1HuFlQnF0edNRXEKlmB+8LUv2Sv6A2xtTx1TNju7dUrInmceihZ0Luh6KnE5a4k8ay6KssT8kl/sa89eYs7qwkKweHngT9utM7OasHLx+TaRe3k8rAmc+WR9XuRpMNne9f9mt//uAwDYv9ltAcS2G1Hud2S7ffj9IxbSb/9h7/QDmWr/F3e+P9Ib7if1SCIAACAs+BIA9rs2IbEA2McNIcTZ4R7FQPIBsNusl9Viqzc50zW1p44NNttB0OJvYdmZbrdOdQzHb4DV6Q+kRwbXJ0ZPJ0CsO7GDf00b6/2rWuton+s80d9a6hWiQ/sfrru1pzykfqzr/P3ISGtbrrwnrrtihr1I3VovadRnuBNTr3vZCYRk/37+e6Tv8guWI+7U2hWxgR5SScy0ptiNlNd14i+5ztBkDADIcfiLzMtPIr32zxSAaOesubHcC55WmxMqn8y67ytkUEeDPS4jlf94fiQQcmSDk5k66W886f/T+x4mPFYnSP7Y8ukdsh2Af1HEYQsEwD+Va5i3GOFb8j0xp/wPC6DA/i3RWXb74cQfLX72f8u3jVQ2OpCtDANbwLczRHPhYCfABABg3kaMVM+2SD0E+xry+/qgBKxKn9+5/XudO0Z99s8oq3sI1JVlB2Ahop0r+eCa9bLpGKOffcb8F7Yv/ulQ3alxTDklrySHnEoeuxHDyU8kEL2REPsuqcfeHztaBX12Yox55NdMsprfklP8o77s5D80wMl/JTD8TyFn55fU3w6fQXTX743ngFBjlqQxIeVYO643tpM/0EgBARKLY/3EUJHj5G6+DIbekTHI8Km+zH1d60QHVyZvszJYFC5ZBZejqueWwdXDYqGffOfKlZ0NvwUI1PF1M4lUvD1RHKYfuLaR+/g/IEMUQMDs8O32P6GgQoeeuDO3pBDfOVPtUBVn5Ytxr0a6lkRm4JQ79W2uo+LTchKr8sPlkFKbsxzmyoMFOpCm5fP61XIIc+N8Ow2/jf/Us94GCxYtWbZi1UabbLbFVtuyuXyhWCpXqrV6o9lqd7q9/mA4Gk+ms7llO663WK7Wm+1ufziezpfr7d597D51n7sv3dfO8a1jkxGwlyitRTatpc0SXCaskRs6qkiDhTL0HWooe1pxlyw2qCw1VG5PwaVI9bwrp3NFRIqm5IQWU5HGgScyTdksJ8na9go0YEaab7v3KisslwHXzhK327pnUlV3Q3wohqmmsOqL6kjdV8PKBRUKpKMAMdAJ8agSqaaNro2uLNVA4z1KNt2pLK6BMtewzoOGsEbNtcc6Ae+zvPMqRkFQpO5gOwNyzNEN3iJgBbSWCWWMHJtpd7VI2ArTyjrRsEbeSYH1RWOE2pmfKIuFVjpHUSro3G0tdVefrXHThmzSSW0lYDoF4BbIAvEAVdH26SSFNZfOy5GcNiu0xMpjHJv0F+46PWjU6oyEIxzpr/3Ps6TFSm0d9couD1JZYrnj4eooBqRxcQJ2KgvmwDczXENuW8M67kLqAcW22eLtgmqhhsQjsrLpeIlS/JKkye9rZONLvNA87k/06tkCDazktNFaEqi3FoUVJHNsdJXe8nWUzgwr2r0cBEl3UrdcrigTWsuolTwb2fNhRTzRSA6Y3hFA3Gf1pHRpFMTdHT1rlROAOHoa4R3jGJ8Yxa7ZbnQrOx3fdD95nT2O6st+vw22cyMnFIZ7uncjlc9Ks50O') format('woff2'), + url('iconfont.woff?t=1594801234442') format('woff'), + url('iconfont.ttf?t=1594801234442') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */ + url('iconfont.svg?t=1594801234442#iconfont') format('svg'); /* iOS 4.1- */ +} + +.iconfont { + font-family: "iconfont" !important; + font-size: 16px; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.iconzhongdianquyuzhengzhi:before { + content: "\e63c"; +} + +.iconmaodunfenxi:before { + content: "\e63d"; +} + +.iconsifahangzhenggongzuo:before { + content: "\e63e"; +} + +.iconzhongdashixiangbaobeitongji:before { + content: "\e63f"; +} + +.iconchengxiangjiehebuzhengzhi:before { + content: "\e640"; +} + +.iconqingbaochuzhifenxi:before { + content: "\e641"; +} + +.iconpinganbeijing:before { + content: "\e63b"; +} + +.iconshuangjiantouzuo:before { + content: "\e714"; +} + +.iconzongzhizhongxin:before { + content: "\e639"; +} + +.iconzhengchangshangfang:before { + content: "\e63a"; +} + +.iconzhongdajuecefenxi:before { + content: "\e638"; +} + +.iconbaozhi:before { + content: "\e634"; +} + +.iconxinmeiti:before { + content: "\e635"; +} + +.icondianshitai:before { + content: "\e636"; +} + +.icondiantai:before { + content: "\e637"; +} + +.iconshewaidouzheng:before { + content: "\e630"; +} + +.iconxiejiaozuzhianjian:before { + content: "\e631"; +} + +.iconjiaoyuzhuanhua:before { + content: "\e632"; +} + +.iconxiejiaorenyuan:before { + content: "\e633"; +} + +.iconsheancaiwu:before { + content: "\e62d"; +} + +.iconjianxing:before { + content: "\e62e"; +} + +.iconxianyiren:before { + content: "\e62f"; +} + +.iconshoufawen:before { + content: "\e629"; +} + +.iconbangongyongpin:before { + content: "\e62a"; +} + +.iconcheliang:before { + content: "\e62b"; +} + +.iconyusuan:before { + content: "\e62c"; +} + +.iconzhishu-weisheng:before { + content: "\e622"; +} + +.iconzhishu-zhengzhi:before { + content: "\e623"; +} + +.iconzhishu-ziranzaihai:before { + content: "\e624"; +} + +.iconzhishu-renkou:before { + content: "\e625"; +} + +.iconzhishu-jingji:before { + content: "\e626"; +} + +.iconzhishu-shehui:before { + content: "\e627"; +} + +.iconzhishu-huanjing:before { + content: "\e628"; +} + +.iconshandian:before { + content: "\e621"; +} + +.iconwendingzhishufenxi:before { + content: "\e61d"; +} + +.iconwendingzhishuzhuantifenxi:before { + content: "\e61e"; +} + +.iconbeijingshiwendingzhishufenxi:before { + content: "\e61f"; +} + +.iconwendingzhishuyujing:before { + content: "\e620"; +} + +.iconyuanejianchaguan:before { + content: "\e60a"; +} + +.iconyuanefaguan:before { + content: "\e60c"; +} + +.iconfayuangongzuo:before { + content: "\e616"; +} + +.iconjianchayuangongzuo:before { + content: "\e617"; +} + +.iconlituixiuganbu:before { + content: "\e618"; +} + +.iconsifagongzuo:before { + content: "\e61a"; +} + +.icongongangongzuo:before { + content: "\e61b"; +} + +.iconfengqinglianxiang:before { + content: "\e61c"; +} + +.iconxiazai:before { + content: "\e619"; +} + +.iconhuji:before { + content: "\e602"; +} + +.iconzhiyuanzhe:before { + content: "\e601"; +} + +.iconliudongrenkou:before { + content: "\e604"; +} + +.iconzhongdianren:before { + content: "\e605"; +} + +.iconshequ:before { + content: "\e606"; +} + +.iconzhongdianshangfang:before { + content: "\e607"; +} + +.iconzongzhiduiwu:before { + content: "\e608"; +} + +.iconzufang:before { + content: "\e609"; +} + +.iconshouye:before { + content: "\e613"; +} + +.iconfeizhengchangshangfang:before { + content: "\e611"; +} + +.iconzhongdianzuzhi:before { + content: "\e612"; +} + +.iconminganan:before { + content: "\e610"; +} + +.iconqingbaobaosong:before { + content: "\e615"; +} + +.iconchaxun:before { + content: "\e614"; +} + +.iconshehuikeyufang:before { + content: "\e600"; +} + +.iconxingshianjian:before { + content: "\e603"; +} + +.iconzhiananjian:before { + content: "\e60d"; +} + +.iconyanzhongxingshianjian:before { + content: "\e60e"; +} + +.iconjiebaojing:before { + content: "\e60f"; +} + +.iconbukongdian:before { + content: "\e60b"; +} + diff --git a/src/assets/css/iconfont/iconfont.eot b/src/assets/css/iconfont/iconfont.eot new file mode 100644 index 0000000..c59bc92 Binary files /dev/null and b/src/assets/css/iconfont/iconfont.eot differ diff --git a/src/assets/css/iconfont/iconfont.js b/src/assets/css/iconfont/iconfont.js new file mode 100644 index 0000000..2aaac9b --- /dev/null +++ b/src/assets/css/iconfont/iconfont.js @@ -0,0 +1 @@ +!function(c){var l,a,i,h,t,o,p,z='',d=(l=document.getElementsByTagName("script"))[l.length-1].getAttribute("data-injectcss");if(d&&!c.__iconfont__svg__cssinject__){c.__iconfont__svg__cssinject__=!0;try{document.write("")}catch(c){console&&console.log(c)}}function n(){o||(o=!0,h())}a=function(){var c,l,a,i,h,t=document.createElement("div");t.innerHTML=z,z=null,(c=t.getElementsByTagName("svg")[0])&&(c.setAttribute("aria-hidden","true"),c.style.position="absolute",c.style.width=0,c.style.height=0,c.style.overflow="hidden",l=c,(a=document.body).firstChild?(i=l,(h=a.firstChild).parentNode.insertBefore(i,h)):a.appendChild(l))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(a,0):(i=function(){document.removeEventListener("DOMContentLoaded",i,!1),a()},document.addEventListener("DOMContentLoaded",i,!1)):document.attachEvent&&(h=a,t=c.document,o=!1,(p=function(){try{t.documentElement.doScroll("left")}catch(c){return void setTimeout(p,50)}n()})(),t.onreadystatechange=function(){"complete"==t.readyState&&(t.onreadystatechange=null,n())})}(window); \ No newline at end of file diff --git a/src/assets/css/iconfont/iconfont.json b/src/assets/css/iconfont/iconfont.json new file mode 100644 index 0000000..5462a7d --- /dev/null +++ b/src/assets/css/iconfont/iconfont.json @@ -0,0 +1,478 @@ +{ + "id": "1692903", + "name": "政法", + "font_family": "iconfont", + "css_prefix_text": "icon", + "description": "", + "glyphs": [ + { + "icon_id": "15934038", + "name": "重点区域整治", + "font_class": "zhongdianquyuzhengzhi", + "unicode": "e63c", + "unicode_decimal": 58940 + }, + { + "icon_id": "15934039", + "name": "矛盾分析", + "font_class": "maodunfenxi", + "unicode": "e63d", + "unicode_decimal": 58941 + }, + { + "icon_id": "15934040", + "name": "司法行政工作", + "font_class": "sifahangzhenggongzuo", + "unicode": "e63e", + "unicode_decimal": 58942 + }, + { + "icon_id": "15934041", + "name": "重大事项报备统计", + "font_class": "zhongdashixiangbaobeitongji", + "unicode": "e63f", + "unicode_decimal": 58943 + }, + { + "icon_id": "15934042", + "name": "城乡结合部整治", + "font_class": "chengxiangjiehebuzhengzhi", + "unicode": "e640", + "unicode_decimal": 58944 + }, + { + "icon_id": "15934043", + "name": "情报处置分析", + "font_class": "qingbaochuzhifenxi", + "unicode": "e641", + "unicode_decimal": 58945 + }, + { + "icon_id": "14357235", + "name": "平安北京", + "font_class": "pinganbeijing", + "unicode": "e63b", + "unicode_decimal": 58939 + }, + { + "icon_id": "7090066", + "name": "双箭头 左", + "font_class": "shuangjiantouzuo", + "unicode": "e714", + "unicode_decimal": 59156 + }, + { + "icon_id": "14330053", + "name": "综治中心", + "font_class": "zongzhizhongxin", + "unicode": "e639", + "unicode_decimal": 58937 + }, + { + "icon_id": "14330054", + "name": "正常上访", + "font_class": "zhengchangshangfang", + "unicode": "e63a", + "unicode_decimal": 58938 + }, + { + "icon_id": "14235863", + "name": "重大决策分析", + "font_class": "zhongdajuecefenxi", + "unicode": "e638", + "unicode_decimal": 58936 + }, + { + "icon_id": "13886029", + "name": "报纸", + "font_class": "baozhi", + "unicode": "e634", + "unicode_decimal": 58932 + }, + { + "icon_id": "13886030", + "name": "新媒体", + "font_class": "xinmeiti", + "unicode": "e635", + "unicode_decimal": 58933 + }, + { + "icon_id": "13886031", + "name": "电视台", + "font_class": "dianshitai", + "unicode": "e636", + "unicode_decimal": 58934 + }, + { + "icon_id": "13886032", + "name": "电台", + "font_class": "diantai", + "unicode": "e637", + "unicode_decimal": 58935 + }, + { + "icon_id": "13834754", + "name": "涉外斗争", + "font_class": "shewaidouzheng", + "unicode": "e630", + "unicode_decimal": 58928 + }, + { + "icon_id": "13834755", + "name": "邪教组织案件", + "font_class": "xiejiaozuzhianjian", + "unicode": "e631", + "unicode_decimal": 58929 + }, + { + "icon_id": "13834756", + "name": "教育转化", + "font_class": "jiaoyuzhuanhua", + "unicode": "e632", + "unicode_decimal": 58930 + }, + { + "icon_id": "13834757", + "name": "邪教人员", + "font_class": "xiejiaorenyuan", + "unicode": "e633", + "unicode_decimal": 58931 + }, + { + "icon_id": "13822931", + "name": "涉案财物", + "font_class": "sheancaiwu", + "unicode": "e62d", + "unicode_decimal": 58925 + }, + { + "icon_id": "13822932", + "name": "减刑", + "font_class": "jianxing", + "unicode": "e62e", + "unicode_decimal": 58926 + }, + { + "icon_id": "13822933", + "name": "嫌疑人", + "font_class": "xianyiren", + "unicode": "e62f", + "unicode_decimal": 58927 + }, + { + "icon_id": "13771983", + "name": "收发文", + "font_class": "shoufawen", + "unicode": "e629", + "unicode_decimal": 58921 + }, + { + "icon_id": "13771984", + "name": "办公用品", + "font_class": "bangongyongpin", + "unicode": "e62a", + "unicode_decimal": 58922 + }, + { + "icon_id": "13771985", + "name": "车辆", + "font_class": "cheliang", + "unicode": "e62b", + "unicode_decimal": 58923 + }, + { + "icon_id": "13771986", + "name": "预算", + "font_class": "yusuan", + "unicode": "e62c", + "unicode_decimal": 58924 + }, + { + "icon_id": "13662919", + "name": "指数-卫生", + "font_class": "zhishu-weisheng", + "unicode": "e622", + "unicode_decimal": 58914 + }, + { + "icon_id": "13662920", + "name": "指数-政治", + "font_class": "zhishu-zhengzhi", + "unicode": "e623", + "unicode_decimal": 58915 + }, + { + "icon_id": "13662921", + "name": "指数-自然灾害", + "font_class": "zhishu-ziranzaihai", + "unicode": "e624", + "unicode_decimal": 58916 + }, + { + "icon_id": "13662922", + "name": "指数-人口", + "font_class": "zhishu-renkou", + "unicode": "e625", + "unicode_decimal": 58917 + }, + { + "icon_id": "13662923", + "name": "指数-经济", + "font_class": "zhishu-jingji", + "unicode": "e626", + "unicode_decimal": 58918 + }, + { + "icon_id": "13662924", + "name": "指数-社会", + "font_class": "zhishu-shehui", + "unicode": "e627", + "unicode_decimal": 58919 + }, + { + "icon_id": "13662925", + "name": "指数-环境", + "font_class": "zhishu-huanjing", + "unicode": "e628", + "unicode_decimal": 58920 + }, + { + "icon_id": "13655731", + "name": "闪电", + "font_class": "shandian", + "unicode": "e621", + "unicode_decimal": 58913 + }, + { + "icon_id": "13649807", + "name": "稳定指数分析", + "font_class": "wendingzhishufenxi", + "unicode": "e61d", + "unicode_decimal": 58909 + }, + { + "icon_id": "13649808", + "name": "稳定指数专题分析", + "font_class": "wendingzhishuzhuantifenxi", + "unicode": "e61e", + "unicode_decimal": 58910 + }, + { + "icon_id": "13649809", + "name": "北京市稳定指数分析", + "font_class": "beijingshiwendingzhishufenxi", + "unicode": "e61f", + "unicode_decimal": 58911 + }, + { + "icon_id": "13649810", + "name": "稳定指数预警", + "font_class": "wendingzhishuyujing", + "unicode": "e620", + "unicode_decimal": 58912 + }, + { + "icon_id": "13622636", + "name": "员额检察官", + "font_class": "yuanejianchaguan", + "unicode": "e60a", + "unicode_decimal": 58890 + }, + { + "icon_id": "13622637", + "name": "员额法官", + "font_class": "yuanefaguan", + "unicode": "e60c", + "unicode_decimal": 58892 + }, + { + "icon_id": "13622638", + "name": "法院工作", + "font_class": "fayuangongzuo", + "unicode": "e616", + "unicode_decimal": 58902 + }, + { + "icon_id": "13622639", + "name": "检察院工作", + "font_class": "jianchayuangongzuo", + "unicode": "e617", + "unicode_decimal": 58903 + }, + { + "icon_id": "13622640", + "name": "离退休干部", + "font_class": "lituixiuganbu", + "unicode": "e618", + "unicode_decimal": 58904 + }, + { + "icon_id": "13622641", + "name": "司法工作", + "font_class": "sifagongzuo", + "unicode": "e61a", + "unicode_decimal": 58906 + }, + { + "icon_id": "13622642", + "name": "公安工作", + "font_class": "gongangongzuo", + "unicode": "e61b", + "unicode_decimal": 58907 + }, + { + "icon_id": "13622643", + "name": "风清廉香", + "font_class": "fengqinglianxiang", + "unicode": "e61c", + "unicode_decimal": 58908 + }, + { + "icon_id": "12771494", + "name": "下载", + "font_class": "xiazai", + "unicode": "e619", + "unicode_decimal": 58905 + }, + { + "icon_id": "13612822", + "name": "户籍", + "font_class": "huji", + "unicode": "e602", + "unicode_decimal": 58882 + }, + { + "icon_id": "13612769", + "name": "志愿者", + "font_class": "zhiyuanzhe", + "unicode": "e601", + "unicode_decimal": 58881 + }, + { + "icon_id": "13612771", + "name": "流动人口", + "font_class": "liudongrenkou", + "unicode": "e604", + "unicode_decimal": 58884 + }, + { + "icon_id": "13612772", + "name": "重点人", + "font_class": "zhongdianren", + "unicode": "e605", + "unicode_decimal": 58885 + }, + { + "icon_id": "13612773", + "name": "社区", + "font_class": "shequ", + "unicode": "e606", + "unicode_decimal": 58886 + }, + { + "icon_id": "13612774", + "name": "重点上访", + "font_class": "zhongdianshangfang", + "unicode": "e607", + "unicode_decimal": 58887 + }, + { + "icon_id": "13612775", + "name": "综治队伍", + "font_class": "zongzhiduiwu", + "unicode": "e608", + "unicode_decimal": 58888 + }, + { + "icon_id": "13612776", + "name": "租房", + "font_class": "zufang", + "unicode": "e609", + "unicode_decimal": 58889 + }, + { + "icon_id": "13612731", + "name": "首页", + "font_class": "shouye", + "unicode": "e613", + "unicode_decimal": 58899 + }, + { + "icon_id": "13612715", + "name": "非正常上访", + "font_class": "feizhengchangshangfang", + "unicode": "e611", + "unicode_decimal": 58897 + }, + { + "icon_id": "13612716", + "name": "重点组织", + "font_class": "zhongdianzuzhi", + "unicode": "e612", + "unicode_decimal": 58898 + }, + { + "icon_id": "13612705", + "name": "敏感案", + "font_class": "minganan", + "unicode": "e610", + "unicode_decimal": 58896 + }, + { + "icon_id": "13612695", + "name": "情报报送", + "font_class": "qingbaobaosong", + "unicode": "e615", + "unicode_decimal": 58901 + }, + { + "icon_id": "13504216", + "name": "查询", + "font_class": "chaxun", + "unicode": "e614", + "unicode_decimal": 58900 + }, + { + "icon_id": "13602521", + "name": "shehuikeyufang", + "font_class": "shehuikeyufang", + "unicode": "e600", + "unicode_decimal": 58880 + }, + { + "icon_id": "13602522", + "name": "xingshianjian", + "font_class": "xingshianjian", + "unicode": "e603", + "unicode_decimal": 58883 + }, + { + "icon_id": "13602523", + "name": "zhiananjian", + "font_class": "zhiananjian", + "unicode": "e60d", + "unicode_decimal": 58893 + }, + { + "icon_id": "13602524", + "name": "yanzhongxingshiannjian", + "font_class": "yanzhongxingshianjian", + "unicode": "e60e", + "unicode_decimal": 58894 + }, + { + "icon_id": "13602525", + "name": "jiebaojing", + "font_class": "jiebaojing", + "unicode": "e60f", + "unicode_decimal": 58895 + }, + { + "icon_id": "13489983", + "name": "bukongdian", + "font_class": "bukongdian", + "unicode": "e60b", + "unicode_decimal": 58891 + } + ] +} diff --git a/src/assets/css/iconfont/iconfont.svg b/src/assets/css/iconfont/iconfont.svg new file mode 100644 index 0000000..775bda2 --- /dev/null +++ b/src/assets/css/iconfont/iconfont.svg @@ -0,0 +1,227 @@ + + + + + +Created by iconfont + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/css/iconfont/iconfont.ttf b/src/assets/css/iconfont/iconfont.ttf new file mode 100644 index 0000000..69b5038 Binary files /dev/null and b/src/assets/css/iconfont/iconfont.ttf differ diff --git a/src/assets/css/iconfont/iconfont.woff b/src/assets/css/iconfont/iconfont.woff new file mode 100644 index 0000000..7cea921 Binary files /dev/null and b/src/assets/css/iconfont/iconfont.woff differ diff --git a/src/assets/css/iconfont/iconfont.woff2 b/src/assets/css/iconfont/iconfont.woff2 new file mode 100644 index 0000000..67d5fcf Binary files /dev/null and b/src/assets/css/iconfont/iconfont.woff2 differ diff --git a/src/assets/css/reset.less b/src/assets/css/reset.less new file mode 100644 index 0000000..a0e4a17 --- /dev/null +++ b/src/assets/css/reset.less @@ -0,0 +1,240 @@ +html{margin:0 auto;} +article,aside,dialog,footer,header,section,footer,nav,figure,menu{display:block} +body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, figure, section, legend, textarea, p, blockquote, th, td, input, select, textarea, button { margin: 0; padding: 0 } +body{font:14px/1.4 "Microsoft Yahei",Arial,Helvetica,sans-serif;background-color: #fff;color:#424242;margin: 0 auto;} +h1,h2,h3,h4,h5,h6{font-size:100%;font-weight: normal;} +table{border-collapse:collapse;border-spacing:0} +ul,ol,dd,dt,dl{list-style-type:none;} +a{color:#333;text-decoration: none;-webkit-touch-callout: none;-webkit-user-select: none;} +a,input,select{-webkit-tap-highlight-color: transparent;-webkit-appearance: none;-moz-appearance: none;-webkit-border-radius: 0;} + +input,img{border:none;padding:0;font-size:14px;} + +i,em{font-style:normal;} +:focus{outline: none} + +/*原子类*/ +.clear { clear: both; } +.clear:after { display: block; clear: both; visibility: hidden; height: 0; overflow: hidden; content: "."; } +.fl { float: left; } +.fr { float: right; } +.mt10{margin-top: 10px;} +.mb10{margin-bottom: 10px;} +/*placeholder css*/ +::-moz-placeholder{ font-family: "Microsoft YaHei"} +::-webkit-input-placeholder{ font-family: "Microsoft YaHei"} +::-ms-input-placeholder{ font-family: "Microsoft YaHei"} + +.page{ + color:#fff; +} + + +/* swiper 分页器样式修改 */ +.main .swiper-pagination-bullet{ + right: 30px; + opacity: 0.6; + background: #fff; + width: 5px; + height: 30px; + border-radius: 30px; +} +.main .swiper-pagination-bullet-active{ + opacity: 1; + background: #3983e5; +} +/*首页样式修改*/ +.main_box { + color: #FFFFFF; + width: 100%; + height: calc(100vh - 5vw); + overflow: auto; + display: flex; + .home_left{ + display:flex; + padding: 10px; + width: 33%; + flex-wrap: wrap; + //place-content: flex-start; + .inner_box { + display: flex; + flex-direction: column; + width: 49%; + height: 24%; + border: 1px solid ; + border-image: linear-gradient(180deg, rgba(31,125,175,0.34) 0%, rgba(31,125,175,0.53) 100%) 1; + margin-left: 1%; + margin-top: 1%; + .inner_header { + display: flex; + flex-shrink: 0; + width: 100%; + height: 42px; + background: #001e3d; + border-bottom: 1px solid #1B7EF2; + .header_icon{ + width: 24px; + height: 100%; + background: #023046; + border-bottom: 1px solid #1F7DAF; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + } + .header_left{ + background: #1e76a6; + width: 3px; + height: 100% + } + .header_title{ + display: flex; + align-items: center; + font-weight: 400; + font-size: 18px; + color: rgba(255, 255, 255, 0.87); + text-shadow: 0px 2px 24px 0px rgba(27, 126, 242, 0.91); + .little_font { + font-weight: 400; + font-size: 14px; + } + } + } + .box_content { + flex: 1; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + } + .chart_box { + width: 100%; + height: 100%; + .echarts { + width: 100%; + height: 100%; + } + } + } + } + .home_center{ + display:flex; + flex-wrap: wrap; + padding: 10px; + width: 34%; + .inner_box { + /* 数据概况 */ + width: 100%; + height: 35%; + opacity: 1; + box-sizing: border-box; + /* 描边/中间 */ + border: 1px solid ; + border-image: linear-gradient(180deg, rgba(1,105,178,0.20) 0%, #0169B2 100%) 1; + background-image: url(../../assets/img/bigScreen/box-bottom.png); + background-repeat: no-repeat; + background-size: 100% 60px; + background-position: bottom; + background-position-y: calc(100% + 30px); + .inner_header { + display: flex; + justify-content: center; + align-items: center; + flex-shrink: 0; + height: 60px; + background: url(../../assets/img/bigScreen/title-bg.png) no-repeat; + background-size: 100% 100%; + .header_title { + font-size: 1.1rem; + color: #FFFFFF; + .little_font { + font-weight: 400; + font-size: 14px; + } + } + } + .box_content { + flex: 1; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + } + .chart_box { + width: 100%; + height: 100%; + .echarts { + width: 100%; + height: 100%; + } + } + } + } + .home_right{ + display:flex; + padding: 10px; + width: 33%; + flex-wrap: wrap; + //place-content: flex-start; + .inner_box { + display: flex; + flex-direction: column; + width: 49%; + height: 24%; + border: 1px solid ; + border-image: linear-gradient(180deg, rgba(31,125,175,0.34) 0%, rgba(31,125,175,0.53) 100%) 1; + //margin-left: 1%; + margin-top: 1%; + .inner_header { + display: flex; + flex-shrink: 0; + width: 100%; + height: 42px; + background: #001e3d; + border-bottom: 1px solid #1B7EF2; + .header_icon{ + width: 24px; + height: 100%; + background: #023046; + border-bottom: 1px solid #1F7DAF; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + } + .header_left{ + background: #1e76a6; + width: 3px; + height: 100% + } + .header_title{ + display: flex; + align-items: center; + font-weight: 400; + font-size: 18px; + color: rgba(255, 255, 255, 0.87); + text-shadow: 0px 2px 24px 0px rgba(27, 126, 242, 0.91); + .little_font { + font-weight: 400; + font-size: 14px; + } + } + } + .box_content { + flex: 1; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + } + .chart_box { + width: 100%; + height: 100%; + .echarts { + width: 100%; + height: 100%; + } + } + } + } +} diff --git a/src/assets/icons/index.js b/src/assets/icons/index.js new file mode 100644 index 0000000..2340e6a --- /dev/null +++ b/src/assets/icons/index.js @@ -0,0 +1,9 @@ +import Vue from 'vue' +import SvgIcon from '@/components/svg'// svg component + +// register globally +Vue.component('svg-icon', SvgIcon) + +const req = require.context('./svg', false, /\.svg$/) +const requireAll = requireContext => requireContext.keys().map(requireContext) +requireAll(req) diff --git a/src/assets/icons/svg/laifang.svg b/src/assets/icons/svg/laifang.svg new file mode 100644 index 0000000..d072a38 --- /dev/null +++ b/src/assets/icons/svg/laifang.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/svg/smile.svg b/src/assets/icons/svg/smile.svg new file mode 100644 index 0000000..1c1b5e0 --- /dev/null +++ b/src/assets/icons/svg/smile.svg @@ -0,0 +1 @@ + diff --git a/src/assets/icons/svg/xiaoshou.svg b/src/assets/icons/svg/xiaoshou.svg new file mode 100644 index 0000000..3f87721 --- /dev/null +++ b/src/assets/icons/svg/xiaoshou.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/svg/yxcb.svg b/src/assets/icons/svg/yxcb.svg new file mode 100644 index 0000000..f3e4bff --- /dev/null +++ b/src/assets/icons/svg/yxcb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/svg/yxcyrs.svg b/src/assets/icons/svg/yxcyrs.svg new file mode 100644 index 0000000..a92a8b3 --- /dev/null +++ b/src/assets/icons/svg/yxcyrs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/svg/yxhd.svg b/src/assets/icons/svg/yxhd.svg new file mode 100644 index 0000000..4e3d442 --- /dev/null +++ b/src/assets/icons/svg/yxhd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/svg/yxzhl.svg b/src/assets/icons/svg/yxzhl.svg new file mode 100644 index 0000000..36504e6 --- /dev/null +++ b/src/assets/icons/svg/yxzhl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/img/1.jpg b/src/assets/img/1.jpg new file mode 100644 index 0000000..f4e5689 Binary files /dev/null and b/src/assets/img/1.jpg differ diff --git a/src/assets/img/1.png b/src/assets/img/1.png new file mode 100644 index 0000000..b248917 Binary files /dev/null and b/src/assets/img/1.png differ diff --git a/src/assets/img/bigScreen/background.jpg b/src/assets/img/bigScreen/background.jpg new file mode 100644 index 0000000..0e7c629 Binary files /dev/null and b/src/assets/img/bigScreen/background.jpg differ diff --git a/src/assets/img/bigScreen/block-bg.png b/src/assets/img/bigScreen/block-bg.png new file mode 100644 index 0000000..c72f71d Binary files /dev/null and b/src/assets/img/bigScreen/block-bg.png differ diff --git a/src/assets/img/bigScreen/box-bottom.png b/src/assets/img/bigScreen/box-bottom.png new file mode 100644 index 0000000..931e65e Binary files /dev/null and b/src/assets/img/bigScreen/box-bottom.png differ diff --git a/src/assets/img/bigScreen/cyclebg.png b/src/assets/img/bigScreen/cyclebg.png new file mode 100644 index 0000000..68cece2 Binary files /dev/null and b/src/assets/img/bigScreen/cyclebg.png differ diff --git a/src/assets/img/bigScreen/header-left.png b/src/assets/img/bigScreen/header-left.png new file mode 100644 index 0000000..5a7a4c5 Binary files /dev/null and b/src/assets/img/bigScreen/header-left.png differ diff --git a/src/assets/img/bigScreen/header-right.png b/src/assets/img/bigScreen/header-right.png new file mode 100644 index 0000000..393c728 Binary files /dev/null and b/src/assets/img/bigScreen/header-right.png differ diff --git a/src/assets/img/bigScreen/icon/bed.png b/src/assets/img/bigScreen/icon/bed.png new file mode 100644 index 0000000..984dd11 Binary files /dev/null and b/src/assets/img/bigScreen/icon/bed.png differ diff --git a/src/assets/img/bigScreen/icon/boy.png b/src/assets/img/bigScreen/icon/boy.png new file mode 100644 index 0000000..c0e4f37 Binary files /dev/null and b/src/assets/img/bigScreen/icon/boy.png differ diff --git a/src/assets/img/bigScreen/icon/fangjian.png b/src/assets/img/bigScreen/icon/fangjian.png new file mode 100644 index 0000000..17cc2e0 Binary files /dev/null and b/src/assets/img/bigScreen/icon/fangjian.png differ diff --git a/src/assets/img/bigScreen/icon/girl.png b/src/assets/img/bigScreen/icon/girl.png new file mode 100644 index 0000000..9e96d2c Binary files /dev/null and b/src/assets/img/bigScreen/icon/girl.png differ diff --git a/src/assets/img/bigScreen/icon/hospitol.png b/src/assets/img/bigScreen/icon/hospitol.png new file mode 100644 index 0000000..b81e0ed Binary files /dev/null and b/src/assets/img/bigScreen/icon/hospitol.png differ diff --git a/src/assets/img/bigScreen/icon/huiyuan.png b/src/assets/img/bigScreen/icon/huiyuan.png new file mode 100644 index 0000000..a11c065 Binary files /dev/null and b/src/assets/img/bigScreen/icon/huiyuan.png differ diff --git a/src/assets/img/bigScreen/icon/jigou.png b/src/assets/img/bigScreen/icon/jigou.png new file mode 100644 index 0000000..eac1801 Binary files /dev/null and b/src/assets/img/bigScreen/icon/jigou.png differ diff --git a/src/assets/img/bigScreen/icon/ranking.png b/src/assets/img/bigScreen/icon/ranking.png new file mode 100644 index 0000000..2cd81d4 Binary files /dev/null and b/src/assets/img/bigScreen/icon/ranking.png differ diff --git a/src/assets/img/bigScreen/icon/rankinglast.png b/src/assets/img/bigScreen/icon/rankinglast.png new file mode 100644 index 0000000..5491d7e Binary files /dev/null and b/src/assets/img/bigScreen/icon/rankinglast.png differ diff --git a/src/assets/img/bigScreen/icon/ruzhu.png b/src/assets/img/bigScreen/icon/ruzhu.png new file mode 100644 index 0000000..8121a98 Binary files /dev/null and b/src/assets/img/bigScreen/icon/ruzhu.png differ diff --git a/src/assets/img/bigScreen/icon/shebei.png b/src/assets/img/bigScreen/icon/shebei.png new file mode 100644 index 0000000..564c6e4 Binary files /dev/null and b/src/assets/img/bigScreen/icon/shebei.png differ diff --git a/src/assets/img/bigScreen/icon/title2icon.png b/src/assets/img/bigScreen/icon/title2icon.png new file mode 100644 index 0000000..1b10cd1 Binary files /dev/null and b/src/assets/img/bigScreen/icon/title2icon.png differ diff --git a/src/assets/img/bigScreen/icon/tuizhu.png b/src/assets/img/bigScreen/icon/tuizhu.png new file mode 100644 index 0000000..c7fb46d Binary files /dev/null and b/src/assets/img/bigScreen/icon/tuizhu.png differ diff --git a/src/assets/img/bigScreen/icon/warning.png b/src/assets/img/bigScreen/icon/warning.png new file mode 100644 index 0000000..0f02107 Binary files /dev/null and b/src/assets/img/bigScreen/icon/warning.png differ diff --git a/src/assets/img/bigScreen/icon/yihu.png b/src/assets/img/bigScreen/icon/yihu.png new file mode 100644 index 0000000..182d3ec Binary files /dev/null and b/src/assets/img/bigScreen/icon/yihu.png differ diff --git a/src/assets/img/bigScreen/icon/zhiyuan.png b/src/assets/img/bigScreen/icon/zhiyuan.png new file mode 100644 index 0000000..651fdcd Binary files /dev/null and b/src/assets/img/bigScreen/icon/zhiyuan.png differ diff --git a/src/assets/img/bigScreen/menu-no.png b/src/assets/img/bigScreen/menu-no.png new file mode 100644 index 0000000..4dc6645 Binary files /dev/null and b/src/assets/img/bigScreen/menu-no.png differ diff --git a/src/assets/img/bigScreen/menu-selected.png b/src/assets/img/bigScreen/menu-selected.png new file mode 100644 index 0000000..7d37de1 Binary files /dev/null and b/src/assets/img/bigScreen/menu-selected.png differ diff --git a/src/assets/img/bigScreen/number-bg.png b/src/assets/img/bigScreen/number-bg.png new file mode 100644 index 0000000..aa9ad32 Binary files /dev/null and b/src/assets/img/bigScreen/number-bg.png differ diff --git a/src/assets/img/bigScreen/polygon1.png b/src/assets/img/bigScreen/polygon1.png new file mode 100644 index 0000000..d23824f Binary files /dev/null and b/src/assets/img/bigScreen/polygon1.png differ diff --git a/src/assets/img/bigScreen/polygon2.png b/src/assets/img/bigScreen/polygon2.png new file mode 100644 index 0000000..40b026f Binary files /dev/null and b/src/assets/img/bigScreen/polygon2.png differ diff --git a/src/assets/img/bigScreen/title-bg.png b/src/assets/img/bigScreen/title-bg.png new file mode 100644 index 0000000..aa37b3c Binary files /dev/null and b/src/assets/img/bigScreen/title-bg.png differ diff --git a/src/assets/img/bigScreen/title2-bottom.png b/src/assets/img/bigScreen/title2-bottom.png new file mode 100644 index 0000000..ffa02f7 Binary files /dev/null and b/src/assets/img/bigScreen/title2-bottom.png differ diff --git a/src/assets/img/bigScreen/topnav.png b/src/assets/img/bigScreen/topnav.png new file mode 100644 index 0000000..6671393 Binary files /dev/null and b/src/assets/img/bigScreen/topnav.png differ diff --git a/src/assets/img/bigScreen/yx-bottom.png b/src/assets/img/bigScreen/yx-bottom.png new file mode 100644 index 0000000..c46297d Binary files /dev/null and b/src/assets/img/bigScreen/yx-bottom.png differ diff --git a/src/assets/img/bigScreen/yx-title1.png b/src/assets/img/bigScreen/yx-title1.png new file mode 100644 index 0000000..de88d80 Binary files /dev/null and b/src/assets/img/bigScreen/yx-title1.png differ diff --git a/src/assets/img/body.jpg b/src/assets/img/body.jpg new file mode 100644 index 0000000..6d9114d Binary files /dev/null and b/src/assets/img/body.jpg differ diff --git a/src/assets/img/bubble1.png b/src/assets/img/bubble1.png new file mode 100644 index 0000000..56aa9bc Binary files /dev/null and b/src/assets/img/bubble1.png differ diff --git a/src/assets/img/bubble2.png b/src/assets/img/bubble2.png new file mode 100644 index 0000000..edabc8c Binary files /dev/null and b/src/assets/img/bubble2.png differ diff --git a/src/assets/img/bubble3.png b/src/assets/img/bubble3.png new file mode 100644 index 0000000..a0fbc64 Binary files /dev/null and b/src/assets/img/bubble3.png differ diff --git a/src/assets/img/bubble4.png b/src/assets/img/bubble4.png new file mode 100644 index 0000000..977f044 Binary files /dev/null and b/src/assets/img/bubble4.png differ diff --git a/src/assets/img/cult/bg1.png b/src/assets/img/cult/bg1.png new file mode 100644 index 0000000..84a1865 Binary files /dev/null and b/src/assets/img/cult/bg1.png differ diff --git a/src/assets/img/cult/bg2.png b/src/assets/img/cult/bg2.png new file mode 100644 index 0000000..8161727 Binary files /dev/null and b/src/assets/img/cult/bg2.png differ diff --git a/src/assets/img/cult/bg3.png b/src/assets/img/cult/bg3.png new file mode 100644 index 0000000..66f0718 Binary files /dev/null and b/src/assets/img/cult/bg3.png differ diff --git a/src/assets/img/cult/bg4.png b/src/assets/img/cult/bg4.png new file mode 100644 index 0000000..0b40009 Binary files /dev/null and b/src/assets/img/cult/bg4.png differ diff --git a/src/assets/img/cult/bg5.png b/src/assets/img/cult/bg5.png new file mode 100644 index 0000000..1e46fb9 Binary files /dev/null and b/src/assets/img/cult/bg5.png differ diff --git a/src/assets/img/cult/bg6.png b/src/assets/img/cult/bg6.png new file mode 100644 index 0000000..b374e3f Binary files /dev/null and b/src/assets/img/cult/bg6.png differ diff --git a/src/assets/img/cult/bg7.png b/src/assets/img/cult/bg7.png new file mode 100644 index 0000000..78e5b2a Binary files /dev/null and b/src/assets/img/cult/bg7.png differ diff --git a/src/assets/img/cult/bg8.png b/src/assets/img/cult/bg8.png new file mode 100644 index 0000000..c836a16 Binary files /dev/null and b/src/assets/img/cult/bg8.png differ diff --git a/src/assets/img/cult/bg9.png b/src/assets/img/cult/bg9.png new file mode 100644 index 0000000..d990c23 Binary files /dev/null and b/src/assets/img/cult/bg9.png differ diff --git a/src/assets/img/cult/icon1.png b/src/assets/img/cult/icon1.png new file mode 100644 index 0000000..d2cfc83 Binary files /dev/null and b/src/assets/img/cult/icon1.png differ diff --git a/src/assets/img/cult/icon2.png b/src/assets/img/cult/icon2.png new file mode 100644 index 0000000..0602913 Binary files /dev/null and b/src/assets/img/cult/icon2.png differ diff --git a/src/assets/img/cult/icon3.png b/src/assets/img/cult/icon3.png new file mode 100644 index 0000000..2915d80 Binary files /dev/null and b/src/assets/img/cult/icon3.png differ diff --git a/src/assets/img/cult/icon4.png b/src/assets/img/cult/icon4.png new file mode 100644 index 0000000..ac865a3 Binary files /dev/null and b/src/assets/img/cult/icon4.png differ diff --git a/src/assets/img/cult/img1.png b/src/assets/img/cult/img1.png new file mode 100644 index 0000000..373e57f Binary files /dev/null and b/src/assets/img/cult/img1.png differ diff --git a/src/assets/img/cult/img2.png b/src/assets/img/cult/img2.png new file mode 100644 index 0000000..7333419 Binary files /dev/null and b/src/assets/img/cult/img2.png differ diff --git a/src/assets/img/cult/img3.png b/src/assets/img/cult/img3.png new file mode 100644 index 0000000..571aa19 Binary files /dev/null and b/src/assets/img/cult/img3.png differ diff --git a/src/assets/img/cult/img4.png b/src/assets/img/cult/img4.png new file mode 100644 index 0000000..10ac462 Binary files /dev/null and b/src/assets/img/cult/img4.png differ diff --git a/src/assets/img/cult/img5.png b/src/assets/img/cult/img5.png new file mode 100644 index 0000000..9740a82 Binary files /dev/null and b/src/assets/img/cult/img5.png differ diff --git a/src/assets/img/cult/img6.png b/src/assets/img/cult/img6.png new file mode 100644 index 0000000..cc5f08d Binary files /dev/null and b/src/assets/img/cult/img6.png differ diff --git a/src/assets/img/cult/img7.png b/src/assets/img/cult/img7.png new file mode 100644 index 0000000..21260f8 Binary files /dev/null and b/src/assets/img/cult/img7.png differ diff --git a/src/assets/img/cxjh/cxjh.png b/src/assets/img/cxjh/cxjh.png new file mode 100644 index 0000000..65e5562 Binary files /dev/null and b/src/assets/img/cxjh/cxjh.png differ diff --git a/src/assets/img/cxjh/icon1.png b/src/assets/img/cxjh/icon1.png new file mode 100644 index 0000000..d060a7d Binary files /dev/null and b/src/assets/img/cxjh/icon1.png differ diff --git a/src/assets/img/cxjh/icon2.png b/src/assets/img/cxjh/icon2.png new file mode 100644 index 0000000..a6378f0 Binary files /dev/null and b/src/assets/img/cxjh/icon2.png differ diff --git a/src/assets/img/cxjh/icon3.png b/src/assets/img/cxjh/icon3.png new file mode 100644 index 0000000..689e9d1 Binary files /dev/null and b/src/assets/img/cxjh/icon3.png differ diff --git a/src/assets/img/cxjh/lineIcon.png b/src/assets/img/cxjh/lineIcon.png new file mode 100644 index 0000000..0592deb Binary files /dev/null and b/src/assets/img/cxjh/lineIcon.png differ diff --git a/src/assets/img/cxjh/pro.png b/src/assets/img/cxjh/pro.png new file mode 100644 index 0000000..ae84843 Binary files /dev/null and b/src/assets/img/cxjh/pro.png differ diff --git a/src/assets/img/cxjh/proIcon1.png b/src/assets/img/cxjh/proIcon1.png new file mode 100644 index 0000000..6e1d390 Binary files /dev/null and b/src/assets/img/cxjh/proIcon1.png differ diff --git a/src/assets/img/cxjh/proIcon10.png b/src/assets/img/cxjh/proIcon10.png new file mode 100644 index 0000000..11cceb6 Binary files /dev/null and b/src/assets/img/cxjh/proIcon10.png differ diff --git a/src/assets/img/cxjh/proIcon2.png b/src/assets/img/cxjh/proIcon2.png new file mode 100644 index 0000000..aca2151 Binary files /dev/null and b/src/assets/img/cxjh/proIcon2.png differ diff --git a/src/assets/img/cxjh/proIcon3.png b/src/assets/img/cxjh/proIcon3.png new file mode 100644 index 0000000..98ee3d4 Binary files /dev/null and b/src/assets/img/cxjh/proIcon3.png differ diff --git a/src/assets/img/cxjh/proIcon4.png b/src/assets/img/cxjh/proIcon4.png new file mode 100644 index 0000000..c1a9570 Binary files /dev/null and b/src/assets/img/cxjh/proIcon4.png differ diff --git a/src/assets/img/cxjh/proIcon5.png b/src/assets/img/cxjh/proIcon5.png new file mode 100644 index 0000000..9e06cc7 Binary files /dev/null and b/src/assets/img/cxjh/proIcon5.png differ diff --git a/src/assets/img/cxjh/proIcon6.png b/src/assets/img/cxjh/proIcon6.png new file mode 100644 index 0000000..c9168ed Binary files /dev/null and b/src/assets/img/cxjh/proIcon6.png differ diff --git a/src/assets/img/cxjh/proIcon7.png b/src/assets/img/cxjh/proIcon7.png new file mode 100644 index 0000000..f3fe220 Binary files /dev/null and b/src/assets/img/cxjh/proIcon7.png differ diff --git a/src/assets/img/cxjh/proIcon8.png b/src/assets/img/cxjh/proIcon8.png new file mode 100644 index 0000000..79cdeed Binary files /dev/null and b/src/assets/img/cxjh/proIcon8.png differ diff --git a/src/assets/img/cxjh/proIcon9.png b/src/assets/img/cxjh/proIcon9.png new file mode 100644 index 0000000..f508026 Binary files /dev/null and b/src/assets/img/cxjh/proIcon9.png differ diff --git a/src/assets/img/dot.png b/src/assets/img/dot.png new file mode 100644 index 0000000..aa6c83b Binary files /dev/null and b/src/assets/img/dot.png differ diff --git a/src/assets/img/down.png b/src/assets/img/down.png new file mode 100644 index 0000000..9658394 Binary files /dev/null and b/src/assets/img/down.png differ diff --git a/src/assets/img/dykts.png b/src/assets/img/dykts.png new file mode 100644 index 0000000..570aa96 Binary files /dev/null and b/src/assets/img/dykts.png differ diff --git a/src/assets/img/echarts/1.png b/src/assets/img/echarts/1.png new file mode 100644 index 0000000..4c84de9 Binary files /dev/null and b/src/assets/img/echarts/1.png differ diff --git a/src/assets/img/echarts/2.png b/src/assets/img/echarts/2.png new file mode 100644 index 0000000..5c21b0c Binary files /dev/null and b/src/assets/img/echarts/2.png differ diff --git a/src/assets/img/echarts/3.png b/src/assets/img/echarts/3.png new file mode 100644 index 0000000..232f4ec Binary files /dev/null and b/src/assets/img/echarts/3.png differ diff --git a/src/assets/img/echarts/4.png b/src/assets/img/echarts/4.png new file mode 100644 index 0000000..803d875 Binary files /dev/null and b/src/assets/img/echarts/4.png differ diff --git a/src/assets/img/echarts/5.png b/src/assets/img/echarts/5.png new file mode 100644 index 0000000..2e5c9e6 Binary files /dev/null and b/src/assets/img/echarts/5.png differ diff --git a/src/assets/img/echarts/6.png b/src/assets/img/echarts/6.png new file mode 100644 index 0000000..f7159b4 Binary files /dev/null and b/src/assets/img/echarts/6.png differ diff --git a/src/assets/img/echarts/7.png b/src/assets/img/echarts/7.png new file mode 100644 index 0000000..ad0de9f Binary files /dev/null and b/src/assets/img/echarts/7.png differ diff --git a/src/assets/img/echarts/8.png b/src/assets/img/echarts/8.png new file mode 100644 index 0000000..a56ff25 Binary files /dev/null and b/src/assets/img/echarts/8.png differ diff --git a/src/assets/img/echarts/9.png b/src/assets/img/echarts/9.png new file mode 100644 index 0000000..0c7552e Binary files /dev/null and b/src/assets/img/echarts/9.png differ diff --git a/src/assets/img/echarts/bar1.png b/src/assets/img/echarts/bar1.png new file mode 100644 index 0000000..d1bf743 Binary files /dev/null and b/src/assets/img/echarts/bar1.png differ diff --git a/src/assets/img/echarts/bar2.png b/src/assets/img/echarts/bar2.png new file mode 100644 index 0000000..149bc80 Binary files /dev/null and b/src/assets/img/echarts/bar2.png differ diff --git a/src/assets/img/echarts/bar3.png b/src/assets/img/echarts/bar3.png new file mode 100644 index 0000000..7cd8725 Binary files /dev/null and b/src/assets/img/echarts/bar3.png differ diff --git a/src/assets/img/echarts/bar4.png b/src/assets/img/echarts/bar4.png new file mode 100644 index 0000000..c9cfdd4 Binary files /dev/null and b/src/assets/img/echarts/bar4.png differ diff --git a/src/assets/img/echarts/bar5.png b/src/assets/img/echarts/bar5.png new file mode 100644 index 0000000..883c9af Binary files /dev/null and b/src/assets/img/echarts/bar5.png differ diff --git a/src/assets/img/fws.png b/src/assets/img/fws.png new file mode 100644 index 0000000..d204554 Binary files /dev/null and b/src/assets/img/fws.png differ diff --git a/src/assets/img/h1.png b/src/assets/img/h1.png new file mode 100644 index 0000000..7170594 Binary files /dev/null and b/src/assets/img/h1.png differ diff --git a/src/assets/img/head.png b/src/assets/img/head.png new file mode 100644 index 0000000..9d623d6 Binary files /dev/null and b/src/assets/img/head.png differ diff --git a/src/assets/img/icon1.png b/src/assets/img/icon1.png new file mode 100644 index 0000000..15a6694 Binary files /dev/null and b/src/assets/img/icon1.png differ diff --git a/src/assets/img/icon2.png b/src/assets/img/icon2.png new file mode 100644 index 0000000..20e2480 Binary files /dev/null and b/src/assets/img/icon2.png differ diff --git a/src/assets/img/icon3.png b/src/assets/img/icon3.png new file mode 100644 index 0000000..b3eea81 Binary files /dev/null and b/src/assets/img/icon3.png differ diff --git a/src/assets/img/icon4.png b/src/assets/img/icon4.png new file mode 100644 index 0000000..5d71131 Binary files /dev/null and b/src/assets/img/icon4.png differ diff --git a/src/assets/img/index0.png b/src/assets/img/index0.png new file mode 100644 index 0000000..b21f3ff Binary files /dev/null and b/src/assets/img/index0.png differ diff --git a/src/assets/img/index1.png b/src/assets/img/index1.png new file mode 100644 index 0000000..bcb50a5 Binary files /dev/null and b/src/assets/img/index1.png differ diff --git a/src/assets/img/index2.png b/src/assets/img/index2.png new file mode 100644 index 0000000..4cf4297 Binary files /dev/null and b/src/assets/img/index2.png differ diff --git a/src/assets/img/index3.png b/src/assets/img/index3.png new file mode 100644 index 0000000..bdee23f Binary files /dev/null and b/src/assets/img/index3.png differ diff --git a/src/assets/img/index4.png b/src/assets/img/index4.png new file mode 100644 index 0000000..abf3a27 Binary files /dev/null and b/src/assets/img/index4.png differ diff --git a/src/assets/img/index5.png b/src/assets/img/index5.png new file mode 100644 index 0000000..e647723 Binary files /dev/null and b/src/assets/img/index5.png differ diff --git a/src/assets/img/index6.png b/src/assets/img/index6.png new file mode 100644 index 0000000..9a80b26 Binary files /dev/null and b/src/assets/img/index6.png differ diff --git a/src/assets/img/index7.png b/src/assets/img/index7.png new file mode 100644 index 0000000..75e33a5 Binary files /dev/null and b/src/assets/img/index7.png differ diff --git a/src/assets/img/intelligent/1.jpg b/src/assets/img/intelligent/1.jpg new file mode 100644 index 0000000..3554a84 Binary files /dev/null and b/src/assets/img/intelligent/1.jpg differ diff --git a/src/assets/img/intelligent/1.png b/src/assets/img/intelligent/1.png new file mode 100644 index 0000000..a7c0ded Binary files /dev/null and b/src/assets/img/intelligent/1.png differ diff --git a/src/assets/img/intelligent/10.png b/src/assets/img/intelligent/10.png new file mode 100644 index 0000000..1a848f2 Binary files /dev/null and b/src/assets/img/intelligent/10.png differ diff --git a/src/assets/img/intelligent/11.png b/src/assets/img/intelligent/11.png new file mode 100644 index 0000000..a6494be Binary files /dev/null and b/src/assets/img/intelligent/11.png differ diff --git a/src/assets/img/intelligent/12.png b/src/assets/img/intelligent/12.png new file mode 100644 index 0000000..be0ef4e Binary files /dev/null and b/src/assets/img/intelligent/12.png differ diff --git a/src/assets/img/intelligent/13.png b/src/assets/img/intelligent/13.png new file mode 100644 index 0000000..7ad8dff Binary files /dev/null and b/src/assets/img/intelligent/13.png differ diff --git a/src/assets/img/intelligent/14.png b/src/assets/img/intelligent/14.png new file mode 100644 index 0000000..93dfc40 Binary files /dev/null and b/src/assets/img/intelligent/14.png differ diff --git a/src/assets/img/intelligent/15.png b/src/assets/img/intelligent/15.png new file mode 100644 index 0000000..b0d3881 Binary files /dev/null and b/src/assets/img/intelligent/15.png differ diff --git a/src/assets/img/intelligent/16.png b/src/assets/img/intelligent/16.png new file mode 100644 index 0000000..199a53a Binary files /dev/null and b/src/assets/img/intelligent/16.png differ diff --git a/src/assets/img/intelligent/17.png b/src/assets/img/intelligent/17.png new file mode 100644 index 0000000..e36e556 Binary files /dev/null and b/src/assets/img/intelligent/17.png differ diff --git a/src/assets/img/intelligent/18.png b/src/assets/img/intelligent/18.png new file mode 100644 index 0000000..7925657 Binary files /dev/null and b/src/assets/img/intelligent/18.png differ diff --git a/src/assets/img/intelligent/19.png b/src/assets/img/intelligent/19.png new file mode 100644 index 0000000..3cf0523 Binary files /dev/null and b/src/assets/img/intelligent/19.png differ diff --git a/src/assets/img/intelligent/2.png b/src/assets/img/intelligent/2.png new file mode 100644 index 0000000..676dd20 Binary files /dev/null and b/src/assets/img/intelligent/2.png differ diff --git a/src/assets/img/intelligent/20.png b/src/assets/img/intelligent/20.png new file mode 100644 index 0000000..e0c0ec8 Binary files /dev/null and b/src/assets/img/intelligent/20.png differ diff --git a/src/assets/img/intelligent/21.png b/src/assets/img/intelligent/21.png new file mode 100644 index 0000000..27cac9c Binary files /dev/null and b/src/assets/img/intelligent/21.png differ diff --git a/src/assets/img/intelligent/22.png b/src/assets/img/intelligent/22.png new file mode 100644 index 0000000..3717024 Binary files /dev/null and b/src/assets/img/intelligent/22.png differ diff --git a/src/assets/img/intelligent/23.png b/src/assets/img/intelligent/23.png new file mode 100644 index 0000000..38af31e Binary files /dev/null and b/src/assets/img/intelligent/23.png differ diff --git a/src/assets/img/intelligent/24.png b/src/assets/img/intelligent/24.png new file mode 100644 index 0000000..4dbd85d Binary files /dev/null and b/src/assets/img/intelligent/24.png differ diff --git a/src/assets/img/intelligent/25.png b/src/assets/img/intelligent/25.png new file mode 100644 index 0000000..678e27c Binary files /dev/null and b/src/assets/img/intelligent/25.png differ diff --git a/src/assets/img/intelligent/26.png b/src/assets/img/intelligent/26.png new file mode 100644 index 0000000..9ff6d3a Binary files /dev/null and b/src/assets/img/intelligent/26.png differ diff --git a/src/assets/img/intelligent/27.png b/src/assets/img/intelligent/27.png new file mode 100644 index 0000000..40e58ed Binary files /dev/null and b/src/assets/img/intelligent/27.png differ diff --git a/src/assets/img/intelligent/28.png b/src/assets/img/intelligent/28.png new file mode 100644 index 0000000..858fae7 Binary files /dev/null and b/src/assets/img/intelligent/28.png differ diff --git a/src/assets/img/intelligent/29.png b/src/assets/img/intelligent/29.png new file mode 100644 index 0000000..c82a632 Binary files /dev/null and b/src/assets/img/intelligent/29.png differ diff --git a/src/assets/img/intelligent/3.png b/src/assets/img/intelligent/3.png new file mode 100644 index 0000000..c0e82cf Binary files /dev/null and b/src/assets/img/intelligent/3.png differ diff --git a/src/assets/img/intelligent/30.png b/src/assets/img/intelligent/30.png new file mode 100644 index 0000000..b0e9546 Binary files /dev/null and b/src/assets/img/intelligent/30.png differ diff --git a/src/assets/img/intelligent/31.png b/src/assets/img/intelligent/31.png new file mode 100644 index 0000000..8bdd55c Binary files /dev/null and b/src/assets/img/intelligent/31.png differ diff --git a/src/assets/img/intelligent/32.png b/src/assets/img/intelligent/32.png new file mode 100644 index 0000000..b740ba9 Binary files /dev/null and b/src/assets/img/intelligent/32.png differ diff --git a/src/assets/img/intelligent/33.png b/src/assets/img/intelligent/33.png new file mode 100644 index 0000000..f41bf43 Binary files /dev/null and b/src/assets/img/intelligent/33.png differ diff --git a/src/assets/img/intelligent/34.png b/src/assets/img/intelligent/34.png new file mode 100644 index 0000000..e7a2dfb Binary files /dev/null and b/src/assets/img/intelligent/34.png differ diff --git a/src/assets/img/intelligent/35.png b/src/assets/img/intelligent/35.png new file mode 100644 index 0000000..9bf3b65 Binary files /dev/null and b/src/assets/img/intelligent/35.png differ diff --git a/src/assets/img/intelligent/36.png b/src/assets/img/intelligent/36.png new file mode 100644 index 0000000..e433ccc Binary files /dev/null and b/src/assets/img/intelligent/36.png differ diff --git a/src/assets/img/intelligent/37.png b/src/assets/img/intelligent/37.png new file mode 100644 index 0000000..6806350 Binary files /dev/null and b/src/assets/img/intelligent/37.png differ diff --git a/src/assets/img/intelligent/38.png b/src/assets/img/intelligent/38.png new file mode 100644 index 0000000..cdc1781 Binary files /dev/null and b/src/assets/img/intelligent/38.png differ diff --git a/src/assets/img/intelligent/39.png b/src/assets/img/intelligent/39.png new file mode 100644 index 0000000..47bf6d8 Binary files /dev/null and b/src/assets/img/intelligent/39.png differ diff --git a/src/assets/img/intelligent/4.png b/src/assets/img/intelligent/4.png new file mode 100644 index 0000000..7e4bfff Binary files /dev/null and b/src/assets/img/intelligent/4.png differ diff --git a/src/assets/img/intelligent/40.png b/src/assets/img/intelligent/40.png new file mode 100644 index 0000000..342735b Binary files /dev/null and b/src/assets/img/intelligent/40.png differ diff --git a/src/assets/img/intelligent/41.png b/src/assets/img/intelligent/41.png new file mode 100644 index 0000000..11a3941 Binary files /dev/null and b/src/assets/img/intelligent/41.png differ diff --git a/src/assets/img/intelligent/42.png b/src/assets/img/intelligent/42.png new file mode 100644 index 0000000..7529c5e Binary files /dev/null and b/src/assets/img/intelligent/42.png differ diff --git a/src/assets/img/intelligent/43.png b/src/assets/img/intelligent/43.png new file mode 100644 index 0000000..8694e06 Binary files /dev/null and b/src/assets/img/intelligent/43.png differ diff --git a/src/assets/img/intelligent/44.png b/src/assets/img/intelligent/44.png new file mode 100644 index 0000000..36b3a9c Binary files /dev/null and b/src/assets/img/intelligent/44.png differ diff --git a/src/assets/img/intelligent/45.png b/src/assets/img/intelligent/45.png new file mode 100644 index 0000000..adacebe Binary files /dev/null and b/src/assets/img/intelligent/45.png differ diff --git a/src/assets/img/intelligent/5.png b/src/assets/img/intelligent/5.png new file mode 100644 index 0000000..e099c72 Binary files /dev/null and b/src/assets/img/intelligent/5.png differ diff --git a/src/assets/img/intelligent/6.png b/src/assets/img/intelligent/6.png new file mode 100644 index 0000000..68a64e5 Binary files /dev/null and b/src/assets/img/intelligent/6.png differ diff --git a/src/assets/img/intelligent/66.png b/src/assets/img/intelligent/66.png new file mode 100644 index 0000000..8499cd2 Binary files /dev/null and b/src/assets/img/intelligent/66.png differ diff --git a/src/assets/img/intelligent/7.png b/src/assets/img/intelligent/7.png new file mode 100644 index 0000000..e22dd13 Binary files /dev/null and b/src/assets/img/intelligent/7.png differ diff --git a/src/assets/img/intelligent/8.png b/src/assets/img/intelligent/8.png new file mode 100644 index 0000000..f9368ef Binary files /dev/null and b/src/assets/img/intelligent/8.png differ diff --git a/src/assets/img/intelligent/9.png b/src/assets/img/intelligent/9.png new file mode 100644 index 0000000..bd3df73 Binary files /dev/null and b/src/assets/img/intelligent/9.png differ diff --git a/src/assets/img/intelligent/99.png b/src/assets/img/intelligent/99.png new file mode 100644 index 0000000..093fdbd Binary files /dev/null and b/src/assets/img/intelligent/99.png differ diff --git a/src/assets/img/line.png b/src/assets/img/line.png new file mode 100644 index 0000000..c79df51 Binary files /dev/null and b/src/assets/img/line.png differ diff --git a/src/assets/img/nav.png b/src/assets/img/nav.png new file mode 100644 index 0000000..146ac2b Binary files /dev/null and b/src/assets/img/nav.png differ diff --git a/src/assets/img/nav/1.png b/src/assets/img/nav/1.png new file mode 100644 index 0000000..7bb429a Binary files /dev/null and b/src/assets/img/nav/1.png differ diff --git a/src/assets/img/nav/2.png b/src/assets/img/nav/2.png new file mode 100644 index 0000000..0c385cc Binary files /dev/null and b/src/assets/img/nav/2.png differ diff --git a/src/assets/img/nav/3.png b/src/assets/img/nav/3.png new file mode 100644 index 0000000..0ad9c28 Binary files /dev/null and b/src/assets/img/nav/3.png differ diff --git a/src/assets/img/nav/4.png b/src/assets/img/nav/4.png new file mode 100644 index 0000000..180cf2b Binary files /dev/null and b/src/assets/img/nav/4.png differ diff --git a/src/assets/img/nav/5.png b/src/assets/img/nav/5.png new file mode 100644 index 0000000..9cc0925 Binary files /dev/null and b/src/assets/img/nav/5.png differ diff --git a/src/assets/img/nav/6.png b/src/assets/img/nav/6.png new file mode 100644 index 0000000..f8f0d98 Binary files /dev/null and b/src/assets/img/nav/6.png differ diff --git a/src/assets/img/nav/7.png b/src/assets/img/nav/7.png new file mode 100644 index 0000000..668f345 Binary files /dev/null and b/src/assets/img/nav/7.png differ diff --git a/src/assets/img/nav/8.png b/src/assets/img/nav/8.png new file mode 100644 index 0000000..37e522c Binary files /dev/null and b/src/assets/img/nav/8.png differ diff --git a/src/assets/img/nav2.png b/src/assets/img/nav2.png new file mode 100644 index 0000000..03fef71 Binary files /dev/null and b/src/assets/img/nav2.png differ diff --git a/src/assets/img/nbqktbs.png b/src/assets/img/nbqktbs.png new file mode 100644 index 0000000..62670ae Binary files /dev/null and b/src/assets/img/nbqktbs.png differ diff --git a/src/assets/img/office/1.png b/src/assets/img/office/1.png new file mode 100644 index 0000000..05233f5 Binary files /dev/null and b/src/assets/img/office/1.png differ diff --git a/src/assets/img/office/2.png b/src/assets/img/office/2.png new file mode 100644 index 0000000..e0f3947 Binary files /dev/null and b/src/assets/img/office/2.png differ diff --git a/src/assets/img/office/3.png b/src/assets/img/office/3.png new file mode 100644 index 0000000..5f2e9d5 Binary files /dev/null and b/src/assets/img/office/3.png differ diff --git a/src/assets/img/office/4.png b/src/assets/img/office/4.png new file mode 100644 index 0000000..6d7bdff Binary files /dev/null and b/src/assets/img/office/4.png differ diff --git a/src/assets/img/office/5.png b/src/assets/img/office/5.png new file mode 100644 index 0000000..b29bd63 Binary files /dev/null and b/src/assets/img/office/5.png differ diff --git a/src/assets/img/office/6.png b/src/assets/img/office/6.png new file mode 100644 index 0000000..363d363 Binary files /dev/null and b/src/assets/img/office/6.png differ diff --git a/src/assets/img/office/7-1.png b/src/assets/img/office/7-1.png new file mode 100644 index 0000000..62836b1 Binary files /dev/null and b/src/assets/img/office/7-1.png differ diff --git a/src/assets/img/office/7.png b/src/assets/img/office/7.png new file mode 100644 index 0000000..1161934 Binary files /dev/null and b/src/assets/img/office/7.png differ diff --git a/src/assets/img/office/8.png b/src/assets/img/office/8.png new file mode 100644 index 0000000..7b86158 Binary files /dev/null and b/src/assets/img/office/8.png differ diff --git a/src/assets/img/page/刑事案件-历史事件处置浏览.jpg b/src/assets/img/page/刑事案件-历史事件处置浏览.jpg new file mode 100644 index 0000000..3d7c260 Binary files /dev/null and b/src/assets/img/page/刑事案件-历史事件处置浏览.jpg differ diff --git a/src/assets/img/page/司法行政工作.jpg b/src/assets/img/page/司法行政工作.jpg new file mode 100644 index 0000000..adfd057 Binary files /dev/null and b/src/assets/img/page/司法行政工作.jpg differ diff --git a/src/assets/img/page/员额动态管理业务分析.jpg b/src/assets/img/page/员额动态管理业务分析.jpg new file mode 100644 index 0000000..543e668 Binary files /dev/null and b/src/assets/img/page/员额动态管理业务分析.jpg differ diff --git a/src/assets/img/page/城乡结合部整治.jpg b/src/assets/img/page/城乡结合部整治.jpg new file mode 100644 index 0000000..80b3d4f Binary files /dev/null and b/src/assets/img/page/城乡结合部整治.jpg differ diff --git a/src/assets/img/page/城乡结合部整治2.jpg b/src/assets/img/page/城乡结合部整治2.jpg new file mode 100644 index 0000000..2d35c2a Binary files /dev/null and b/src/assets/img/page/城乡结合部整治2.jpg differ diff --git a/src/assets/img/page/城乡结合部整治3.jpg b/src/assets/img/page/城乡结合部整治3.jpg new file mode 100644 index 0000000..2d9c422 Binary files /dev/null and b/src/assets/img/page/城乡结合部整治3.jpg differ diff --git a/src/assets/img/page/情报处置分析.jpg b/src/assets/img/page/情报处置分析.jpg new file mode 100644 index 0000000..d18bad5 Binary files /dev/null and b/src/assets/img/page/情报处置分析.jpg differ diff --git a/src/assets/img/page/矛盾分析.jpg b/src/assets/img/page/矛盾分析.jpg new file mode 100644 index 0000000..138d296 Binary files /dev/null and b/src/assets/img/page/矛盾分析.jpg differ diff --git a/src/assets/img/page/重点区域整治.jpg b/src/assets/img/page/重点区域整治.jpg new file mode 100644 index 0000000..3294d94 Binary files /dev/null and b/src/assets/img/page/重点区域整治.jpg differ diff --git a/src/assets/img/page/重点区域整治2.jpg b/src/assets/img/page/重点区域整治2.jpg new file mode 100644 index 0000000..226e194 Binary files /dev/null and b/src/assets/img/page/重点区域整治2.jpg differ diff --git a/src/assets/img/photo.jpg b/src/assets/img/photo.jpg new file mode 100644 index 0000000..1058e84 Binary files /dev/null and b/src/assets/img/photo.jpg differ diff --git a/src/assets/img/policeIcon1.png b/src/assets/img/policeIcon1.png new file mode 100644 index 0000000..5ab24e1 Binary files /dev/null and b/src/assets/img/policeIcon1.png differ diff --git a/src/assets/img/policeIcon2.png b/src/assets/img/policeIcon2.png new file mode 100644 index 0000000..a421411 Binary files /dev/null and b/src/assets/img/policeIcon2.png differ diff --git a/src/assets/img/policeIcon3.png b/src/assets/img/policeIcon3.png new file mode 100644 index 0000000..ff2b73b Binary files /dev/null and b/src/assets/img/policeIcon3.png differ diff --git a/src/assets/img/policeIcon4.png b/src/assets/img/policeIcon4.png new file mode 100644 index 0000000..c69b64f Binary files /dev/null and b/src/assets/img/policeIcon4.png differ diff --git a/src/assets/img/policeIcon5.png b/src/assets/img/policeIcon5.png new file mode 100644 index 0000000..4f2c25e Binary files /dev/null and b/src/assets/img/policeIcon5.png differ diff --git a/src/assets/img/policeIcon6.png b/src/assets/img/policeIcon6.png new file mode 100644 index 0000000..524d2bb Binary files /dev/null and b/src/assets/img/policeIcon6.png differ diff --git a/src/assets/img/politics/Criminal.png b/src/assets/img/politics/Criminal.png new file mode 100644 index 0000000..668d34a Binary files /dev/null and b/src/assets/img/politics/Criminal.png differ diff --git a/src/assets/img/politics/Homicide.png b/src/assets/img/politics/Homicide.png new file mode 100644 index 0000000..ccf12d7 Binary files /dev/null and b/src/assets/img/politics/Homicide.png differ diff --git a/src/assets/img/politics/Unbroken.png b/src/assets/img/politics/Unbroken.png new file mode 100644 index 0000000..7cb530f Binary files /dev/null and b/src/assets/img/politics/Unbroken.png differ diff --git a/src/assets/img/politics/car.png b/src/assets/img/politics/car.png new file mode 100644 index 0000000..90f6143 Binary files /dev/null and b/src/assets/img/politics/car.png differ diff --git a/src/assets/img/politics/car2.png b/src/assets/img/politics/car2.png new file mode 100644 index 0000000..eb8aaff Binary files /dev/null and b/src/assets/img/politics/car2.png differ diff --git a/src/assets/img/politics/down.png b/src/assets/img/politics/down.png new file mode 100644 index 0000000..000bba9 Binary files /dev/null and b/src/assets/img/politics/down.png differ diff --git a/src/assets/img/politics/iconDown.png b/src/assets/img/politics/iconDown.png new file mode 100644 index 0000000..80b56ba Binary files /dev/null and b/src/assets/img/politics/iconDown.png differ diff --git a/src/assets/img/politics/iconUp.png b/src/assets/img/politics/iconUp.png new file mode 100644 index 0000000..6d0ec30 Binary files /dev/null and b/src/assets/img/politics/iconUp.png differ diff --git a/src/assets/img/politics/img1.png b/src/assets/img/politics/img1.png new file mode 100644 index 0000000..c335763 Binary files /dev/null and b/src/assets/img/politics/img1.png differ diff --git a/src/assets/img/politics/img10.png b/src/assets/img/politics/img10.png new file mode 100644 index 0000000..2f34d7c Binary files /dev/null and b/src/assets/img/politics/img10.png differ diff --git a/src/assets/img/politics/img11.png b/src/assets/img/politics/img11.png new file mode 100644 index 0000000..0266391 Binary files /dev/null and b/src/assets/img/politics/img11.png differ diff --git a/src/assets/img/politics/img12.png b/src/assets/img/politics/img12.png new file mode 100644 index 0000000..feb577e Binary files /dev/null and b/src/assets/img/politics/img12.png differ diff --git a/src/assets/img/politics/img13.png b/src/assets/img/politics/img13.png new file mode 100644 index 0000000..9f742ca Binary files /dev/null and b/src/assets/img/politics/img13.png differ diff --git a/src/assets/img/politics/img14.png b/src/assets/img/politics/img14.png new file mode 100644 index 0000000..ab2d68e Binary files /dev/null and b/src/assets/img/politics/img14.png differ diff --git a/src/assets/img/politics/img15.png b/src/assets/img/politics/img15.png new file mode 100644 index 0000000..2a8d472 Binary files /dev/null and b/src/assets/img/politics/img15.png differ diff --git a/src/assets/img/politics/img16.png b/src/assets/img/politics/img16.png new file mode 100644 index 0000000..b29d1e9 Binary files /dev/null and b/src/assets/img/politics/img16.png differ diff --git a/src/assets/img/politics/img17.png b/src/assets/img/politics/img17.png new file mode 100644 index 0000000..6ec4155 Binary files /dev/null and b/src/assets/img/politics/img17.png differ diff --git a/src/assets/img/politics/img18.png b/src/assets/img/politics/img18.png new file mode 100644 index 0000000..31d8a24 Binary files /dev/null and b/src/assets/img/politics/img18.png differ diff --git a/src/assets/img/politics/img19.png b/src/assets/img/politics/img19.png new file mode 100644 index 0000000..854001e Binary files /dev/null and b/src/assets/img/politics/img19.png differ diff --git a/src/assets/img/politics/img2.png b/src/assets/img/politics/img2.png new file mode 100644 index 0000000..79c9875 Binary files /dev/null and b/src/assets/img/politics/img2.png differ diff --git a/src/assets/img/politics/img20.png b/src/assets/img/politics/img20.png new file mode 100644 index 0000000..03b80de Binary files /dev/null and b/src/assets/img/politics/img20.png differ diff --git a/src/assets/img/politics/img21.png b/src/assets/img/politics/img21.png new file mode 100644 index 0000000..8d8a155 Binary files /dev/null and b/src/assets/img/politics/img21.png differ diff --git a/src/assets/img/politics/img22.png b/src/assets/img/politics/img22.png new file mode 100644 index 0000000..d152898 Binary files /dev/null and b/src/assets/img/politics/img22.png differ diff --git a/src/assets/img/politics/img23.png b/src/assets/img/politics/img23.png new file mode 100644 index 0000000..058e173 Binary files /dev/null and b/src/assets/img/politics/img23.png differ diff --git a/src/assets/img/politics/img24.png b/src/assets/img/politics/img24.png new file mode 100644 index 0000000..9cbf67d Binary files /dev/null and b/src/assets/img/politics/img24.png differ diff --git a/src/assets/img/politics/img25.png b/src/assets/img/politics/img25.png new file mode 100644 index 0000000..f163dfc Binary files /dev/null and b/src/assets/img/politics/img25.png differ diff --git a/src/assets/img/politics/img3.png b/src/assets/img/politics/img3.png new file mode 100644 index 0000000..d5a7407 Binary files /dev/null and b/src/assets/img/politics/img3.png differ diff --git a/src/assets/img/politics/img4.png b/src/assets/img/politics/img4.png new file mode 100644 index 0000000..7ed9e19 Binary files /dev/null and b/src/assets/img/politics/img4.png differ diff --git a/src/assets/img/politics/img5.png b/src/assets/img/politics/img5.png new file mode 100644 index 0000000..6c2a01e Binary files /dev/null and b/src/assets/img/politics/img5.png differ diff --git a/src/assets/img/politics/img6.png b/src/assets/img/politics/img6.png new file mode 100644 index 0000000..bf4ffad Binary files /dev/null and b/src/assets/img/politics/img6.png differ diff --git a/src/assets/img/politics/img7.png b/src/assets/img/politics/img7.png new file mode 100644 index 0000000..2f8703a Binary files /dev/null and b/src/assets/img/politics/img7.png differ diff --git a/src/assets/img/politics/img8.png b/src/assets/img/politics/img8.png new file mode 100644 index 0000000..880b583 Binary files /dev/null and b/src/assets/img/politics/img8.png differ diff --git a/src/assets/img/politics/img9.png b/src/assets/img/politics/img9.png new file mode 100644 index 0000000..21f367f Binary files /dev/null and b/src/assets/img/politics/img9.png differ diff --git a/src/assets/img/politics/paln.png b/src/assets/img/politics/paln.png new file mode 100644 index 0000000..37db980 Binary files /dev/null and b/src/assets/img/politics/paln.png differ diff --git a/src/assets/img/politics/up.png b/src/assets/img/politics/up.png new file mode 100644 index 0000000..c53d06f Binary files /dev/null and b/src/assets/img/politics/up.png differ diff --git a/src/assets/img/politics/wei.png b/src/assets/img/politics/wei.png new file mode 100644 index 0000000..526f2bb Binary files /dev/null and b/src/assets/img/politics/wei.png differ diff --git a/src/assets/img/population/1.png b/src/assets/img/population/1.png new file mode 100644 index 0000000..57a503f Binary files /dev/null and b/src/assets/img/population/1.png differ diff --git a/src/assets/img/population/10.png b/src/assets/img/population/10.png new file mode 100644 index 0000000..2b0232e Binary files /dev/null and b/src/assets/img/population/10.png differ diff --git a/src/assets/img/population/2.png b/src/assets/img/population/2.png new file mode 100644 index 0000000..47aceab Binary files /dev/null and b/src/assets/img/population/2.png differ diff --git a/src/assets/img/population/3.png b/src/assets/img/population/3.png new file mode 100644 index 0000000..2eaacdb Binary files /dev/null and b/src/assets/img/population/3.png differ diff --git a/src/assets/img/population/4.png b/src/assets/img/population/4.png new file mode 100644 index 0000000..c4ad89f Binary files /dev/null and b/src/assets/img/population/4.png differ diff --git a/src/assets/img/population/5.png b/src/assets/img/population/5.png new file mode 100644 index 0000000..2a9baf0 Binary files /dev/null and b/src/assets/img/population/5.png differ diff --git a/src/assets/img/population/6.png b/src/assets/img/population/6.png new file mode 100644 index 0000000..082095a Binary files /dev/null and b/src/assets/img/population/6.png differ diff --git a/src/assets/img/population/7.png b/src/assets/img/population/7.png new file mode 100644 index 0000000..7d78c19 Binary files /dev/null and b/src/assets/img/population/7.png differ diff --git a/src/assets/img/population/8.png b/src/assets/img/population/8.png new file mode 100644 index 0000000..91ca0e0 Binary files /dev/null and b/src/assets/img/population/8.png differ diff --git a/src/assets/img/population/9.png b/src/assets/img/population/9.png new file mode 100644 index 0000000..9e6691b Binary files /dev/null and b/src/assets/img/population/9.png differ diff --git a/src/assets/img/redWarning.png b/src/assets/img/redWarning.png new file mode 100644 index 0000000..07e24f2 Binary files /dev/null and b/src/assets/img/redWarning.png differ diff --git a/src/assets/img/shehuizhian/1.png b/src/assets/img/shehuizhian/1.png new file mode 100644 index 0000000..ba8f123 Binary files /dev/null and b/src/assets/img/shehuizhian/1.png differ diff --git a/src/assets/img/shehuizhian/2.png b/src/assets/img/shehuizhian/2.png new file mode 100644 index 0000000..db4849a Binary files /dev/null and b/src/assets/img/shehuizhian/2.png differ diff --git a/src/assets/img/shehuizhian/3.png b/src/assets/img/shehuizhian/3.png new file mode 100644 index 0000000..7376533 Binary files /dev/null and b/src/assets/img/shehuizhian/3.png differ diff --git a/src/assets/img/shehuizhian/4.png b/src/assets/img/shehuizhian/4.png new file mode 100644 index 0000000..95221bc Binary files /dev/null and b/src/assets/img/shehuizhian/4.png differ diff --git a/src/assets/img/shehuizhian/bg1.png b/src/assets/img/shehuizhian/bg1.png new file mode 100644 index 0000000..e20faf8 Binary files /dev/null and b/src/assets/img/shehuizhian/bg1.png differ diff --git a/src/assets/img/shehuizhian/mybgi1.png b/src/assets/img/shehuizhian/mybgi1.png new file mode 100644 index 0000000..6b4b400 Binary files /dev/null and b/src/assets/img/shehuizhian/mybgi1.png differ diff --git a/src/assets/img/shehuizhian/mybgi2.png b/src/assets/img/shehuizhian/mybgi2.png new file mode 100644 index 0000000..5ba265b Binary files /dev/null and b/src/assets/img/shehuizhian/mybgi2.png differ diff --git a/src/assets/img/shehuizhian/mybgi3.png b/src/assets/img/shehuizhian/mybgi3.png new file mode 100644 index 0000000..24a53fa Binary files /dev/null and b/src/assets/img/shehuizhian/mybgi3.png differ diff --git a/src/assets/img/shehuizhian/mybgi4.png b/src/assets/img/shehuizhian/mybgi4.png new file mode 100644 index 0000000..e4b897c Binary files /dev/null and b/src/assets/img/shehuizhian/mybgi4.png differ diff --git a/src/assets/img/stabilizing/activeBg.png b/src/assets/img/stabilizing/activeBg.png new file mode 100644 index 0000000..4dcb61d Binary files /dev/null and b/src/assets/img/stabilizing/activeBg.png differ diff --git a/src/assets/img/stabilizing/bg1.png b/src/assets/img/stabilizing/bg1.png new file mode 100644 index 0000000..7c6e811 Binary files /dev/null and b/src/assets/img/stabilizing/bg1.png differ diff --git a/src/assets/img/stabilizing/bg2.png b/src/assets/img/stabilizing/bg2.png new file mode 100644 index 0000000..a8d692d Binary files /dev/null and b/src/assets/img/stabilizing/bg2.png differ diff --git a/src/assets/img/stabilizing/down.png b/src/assets/img/stabilizing/down.png new file mode 100644 index 0000000..7451b05 Binary files /dev/null and b/src/assets/img/stabilizing/down.png differ diff --git a/src/assets/img/stabilizing/img1.png b/src/assets/img/stabilizing/img1.png new file mode 100644 index 0000000..c705e54 Binary files /dev/null and b/src/assets/img/stabilizing/img1.png differ diff --git a/src/assets/img/stabilizing/img2.png b/src/assets/img/stabilizing/img2.png new file mode 100644 index 0000000..08c9ba1 Binary files /dev/null and b/src/assets/img/stabilizing/img2.png differ diff --git a/src/assets/img/stabilizing/left_nav1-1.png b/src/assets/img/stabilizing/left_nav1-1.png new file mode 100644 index 0000000..7781c2f Binary files /dev/null and b/src/assets/img/stabilizing/left_nav1-1.png differ diff --git a/src/assets/img/stabilizing/left_nav1.png b/src/assets/img/stabilizing/left_nav1.png new file mode 100644 index 0000000..50f5d9f Binary files /dev/null and b/src/assets/img/stabilizing/left_nav1.png differ diff --git a/src/assets/img/stabilizing/left_nav2-2.png b/src/assets/img/stabilizing/left_nav2-2.png new file mode 100644 index 0000000..43cb00b Binary files /dev/null and b/src/assets/img/stabilizing/left_nav2-2.png differ diff --git a/src/assets/img/stabilizing/left_nav2.png b/src/assets/img/stabilizing/left_nav2.png new file mode 100644 index 0000000..e31912b Binary files /dev/null and b/src/assets/img/stabilizing/left_nav2.png differ diff --git a/src/assets/img/stabilizing/left_nav3-3.png b/src/assets/img/stabilizing/left_nav3-3.png new file mode 100644 index 0000000..0eec8b1 Binary files /dev/null and b/src/assets/img/stabilizing/left_nav3-3.png differ diff --git a/src/assets/img/stabilizing/left_nav3.png b/src/assets/img/stabilizing/left_nav3.png new file mode 100644 index 0000000..e7f3cd8 Binary files /dev/null and b/src/assets/img/stabilizing/left_nav3.png differ diff --git a/src/assets/img/stabilizing/left_nav4-4.png b/src/assets/img/stabilizing/left_nav4-4.png new file mode 100644 index 0000000..6d64ba6 Binary files /dev/null and b/src/assets/img/stabilizing/left_nav4-4.png differ diff --git a/src/assets/img/stabilizing/left_nav4.png b/src/assets/img/stabilizing/left_nav4.png new file mode 100644 index 0000000..80b6360 Binary files /dev/null and b/src/assets/img/stabilizing/left_nav4.png differ diff --git a/src/assets/img/stabilizing/left_nav5-5.png b/src/assets/img/stabilizing/left_nav5-5.png new file mode 100644 index 0000000..912bee0 Binary files /dev/null and b/src/assets/img/stabilizing/left_nav5-5.png differ diff --git a/src/assets/img/stabilizing/left_nav5.png b/src/assets/img/stabilizing/left_nav5.png new file mode 100644 index 0000000..14fd227 Binary files /dev/null and b/src/assets/img/stabilizing/left_nav5.png differ diff --git a/src/assets/img/stabilizing/left_nav6-6.png b/src/assets/img/stabilizing/left_nav6-6.png new file mode 100644 index 0000000..b9c4378 Binary files /dev/null and b/src/assets/img/stabilizing/left_nav6-6.png differ diff --git a/src/assets/img/stabilizing/left_nav6.png b/src/assets/img/stabilizing/left_nav6.png new file mode 100644 index 0000000..4b3c82c Binary files /dev/null and b/src/assets/img/stabilizing/left_nav6.png differ diff --git a/src/assets/img/stabilizing/left_nav7-7.png b/src/assets/img/stabilizing/left_nav7-7.png new file mode 100644 index 0000000..894c6f2 Binary files /dev/null and b/src/assets/img/stabilizing/left_nav7-7.png differ diff --git a/src/assets/img/stabilizing/left_nav7.png b/src/assets/img/stabilizing/left_nav7.png new file mode 100644 index 0000000..da81f03 Binary files /dev/null and b/src/assets/img/stabilizing/left_nav7.png differ diff --git a/src/assets/img/stabilizing/mybg1.png b/src/assets/img/stabilizing/mybg1.png new file mode 100644 index 0000000..b952f9b Binary files /dev/null and b/src/assets/img/stabilizing/mybg1.png differ diff --git a/src/assets/img/stabilizing/mybg2.png b/src/assets/img/stabilizing/mybg2.png new file mode 100644 index 0000000..c471c05 Binary files /dev/null and b/src/assets/img/stabilizing/mybg2.png differ diff --git a/src/assets/img/stabilizing/navbg.png b/src/assets/img/stabilizing/navbg.png new file mode 100644 index 0000000..d9e85d1 Binary files /dev/null and b/src/assets/img/stabilizing/navbg.png differ diff --git a/src/assets/img/stabilizing/photo1.png b/src/assets/img/stabilizing/photo1.png new file mode 100644 index 0000000..fff3cdb Binary files /dev/null and b/src/assets/img/stabilizing/photo1.png differ diff --git a/src/assets/img/stabilizing/photo2.png b/src/assets/img/stabilizing/photo2.png new file mode 100644 index 0000000..b5ded8e Binary files /dev/null and b/src/assets/img/stabilizing/photo2.png differ diff --git a/src/assets/img/stabilizing/sd.png b/src/assets/img/stabilizing/sd.png new file mode 100644 index 0000000..5391ab8 Binary files /dev/null and b/src/assets/img/stabilizing/sd.png differ diff --git a/src/assets/img/stabilizing/sd2.png b/src/assets/img/stabilizing/sd2.png new file mode 100644 index 0000000..44f9f88 Binary files /dev/null and b/src/assets/img/stabilizing/sd2.png differ diff --git a/src/assets/img/stabilizing/sd3.png b/src/assets/img/stabilizing/sd3.png new file mode 100644 index 0000000..dfcb3f4 Binary files /dev/null and b/src/assets/img/stabilizing/sd3.png differ diff --git a/src/assets/img/stabilizing/sd4.png b/src/assets/img/stabilizing/sd4.png new file mode 100644 index 0000000..a3dd76a Binary files /dev/null and b/src/assets/img/stabilizing/sd4.png differ diff --git a/src/assets/img/sws.png b/src/assets/img/sws.png new file mode 100644 index 0000000..0425433 Binary files /dev/null and b/src/assets/img/sws.png differ diff --git a/src/assets/img/sy_01.png b/src/assets/img/sy_01.png new file mode 100644 index 0000000..2325180 Binary files /dev/null and b/src/assets/img/sy_01.png differ diff --git a/src/assets/img/sy_03.png b/src/assets/img/sy_03.png new file mode 100644 index 0000000..8ceec24 Binary files /dev/null and b/src/assets/img/sy_03.png differ diff --git a/src/assets/img/sy_04.png b/src/assets/img/sy_04.png new file mode 100644 index 0000000..7591dcb Binary files /dev/null and b/src/assets/img/sy_04.png differ diff --git a/src/assets/img/title.png b/src/assets/img/title.png new file mode 100644 index 0000000..b1d4bf2 Binary files /dev/null and b/src/assets/img/title.png differ diff --git a/src/assets/img/title2.png b/src/assets/img/title2.png new file mode 100644 index 0000000..5fd6b44 Binary files /dev/null and b/src/assets/img/title2.png differ diff --git a/src/assets/img/tzggs.png b/src/assets/img/tzggs.png new file mode 100644 index 0000000..23996ab Binary files /dev/null and b/src/assets/img/tzggs.png differ diff --git a/src/assets/img/up.png b/src/assets/img/up.png new file mode 100644 index 0000000..7cc6244 Binary files /dev/null and b/src/assets/img/up.png differ diff --git a/src/assets/img/yellowWarning.png b/src/assets/img/yellowWarning.png new file mode 100644 index 0000000..ce432b9 Binary files /dev/null and b/src/assets/img/yellowWarning.png differ diff --git a/src/assets/img/zhengfa/1.png b/src/assets/img/zhengfa/1.png new file mode 100644 index 0000000..89abfc8 Binary files /dev/null and b/src/assets/img/zhengfa/1.png differ diff --git a/src/assets/img/zhengfa/icon1.png b/src/assets/img/zhengfa/icon1.png new file mode 100644 index 0000000..02639ce Binary files /dev/null and b/src/assets/img/zhengfa/icon1.png differ diff --git a/src/assets/img/zhengfa/icon2.png b/src/assets/img/zhengfa/icon2.png new file mode 100644 index 0000000..3f374d8 Binary files /dev/null and b/src/assets/img/zhengfa/icon2.png differ diff --git a/src/assets/img/zhengfa/icon3.png b/src/assets/img/zhengfa/icon3.png new file mode 100644 index 0000000..a8f3c06 Binary files /dev/null and b/src/assets/img/zhengfa/icon3.png differ diff --git a/src/assets/img/zhengfa/icon4.png b/src/assets/img/zhengfa/icon4.png new file mode 100644 index 0000000..ea7e469 Binary files /dev/null and b/src/assets/img/zhengfa/icon4.png differ diff --git a/src/assets/img/zhengfa/icon5.png b/src/assets/img/zhengfa/icon5.png new file mode 100644 index 0000000..52c62dc Binary files /dev/null and b/src/assets/img/zhengfa/icon5.png differ diff --git a/src/assets/img/zhengfa/icon6.png b/src/assets/img/zhengfa/icon6.png new file mode 100644 index 0000000..33a8e0c Binary files /dev/null and b/src/assets/img/zhengfa/icon6.png differ diff --git a/src/assets/img/zhengfa/icon7.png b/src/assets/img/zhengfa/icon7.png new file mode 100644 index 0000000..468d462 Binary files /dev/null and b/src/assets/img/zhengfa/icon7.png differ diff --git a/src/assets/img/zhengfa/icon8.png b/src/assets/img/zhengfa/icon8.png new file mode 100644 index 0000000..5be6dfb Binary files /dev/null and b/src/assets/img/zhengfa/icon8.png differ diff --git a/src/assets/img/zhengfa/icon9.png b/src/assets/img/zhengfa/icon9.png new file mode 100644 index 0000000..232efee Binary files /dev/null and b/src/assets/img/zhengfa/icon9.png differ diff --git a/src/assets/img/zhengfa/sifa1.png b/src/assets/img/zhengfa/sifa1.png new file mode 100644 index 0000000..a510ce5 Binary files /dev/null and b/src/assets/img/zhengfa/sifa1.png differ diff --git a/src/assets/img/zhengfa/sifa2.png b/src/assets/img/zhengfa/sifa2.png new file mode 100644 index 0000000..33bc46b Binary files /dev/null and b/src/assets/img/zhengfa/sifa2.png differ diff --git a/src/assets/img/zhengfa/sifa3.png b/src/assets/img/zhengfa/sifa3.png new file mode 100644 index 0000000..82b0c3e Binary files /dev/null and b/src/assets/img/zhengfa/sifa3.png differ diff --git a/src/assets/img/zhengfa/sifa4.png b/src/assets/img/zhengfa/sifa4.png new file mode 100644 index 0000000..6353e19 Binary files /dev/null and b/src/assets/img/zhengfa/sifa4.png differ diff --git a/src/assets/img/zhengfa/sifa5.png b/src/assets/img/zhengfa/sifa5.png new file mode 100644 index 0000000..7dd2297 Binary files /dev/null and b/src/assets/img/zhengfa/sifa5.png differ diff --git a/src/assets/img/zhengfa/sifa6.png b/src/assets/img/zhengfa/sifa6.png new file mode 100644 index 0000000..34d0a15 Binary files /dev/null and b/src/assets/img/zhengfa/sifa6.png differ diff --git a/src/assets/img/zhengfa/sifa7.png b/src/assets/img/zhengfa/sifa7.png new file mode 100644 index 0000000..30d0460 Binary files /dev/null and b/src/assets/img/zhengfa/sifa7.png differ diff --git a/src/assets/img/zhengfa/sifa8.png b/src/assets/img/zhengfa/sifa8.png new file mode 100644 index 0000000..b4d7e77 Binary files /dev/null and b/src/assets/img/zhengfa/sifa8.png differ diff --git a/src/assets/img/zhengfa/tab.png b/src/assets/img/zhengfa/tab.png new file mode 100644 index 0000000..b63e36b Binary files /dev/null and b/src/assets/img/zhengfa/tab.png differ diff --git a/src/assets/img/zhishu/1.png b/src/assets/img/zhishu/1.png new file mode 100644 index 0000000..7bd0183 Binary files /dev/null and b/src/assets/img/zhishu/1.png differ diff --git a/src/assets/img/zhishu/2.png b/src/assets/img/zhishu/2.png new file mode 100644 index 0000000..7982d3c Binary files /dev/null and b/src/assets/img/zhishu/2.png differ diff --git a/src/assets/img/zhishu/3.png b/src/assets/img/zhishu/3.png new file mode 100644 index 0000000..874e0b6 Binary files /dev/null and b/src/assets/img/zhishu/3.png differ diff --git a/src/assets/img/zhishu/4.png b/src/assets/img/zhishu/4.png new file mode 100644 index 0000000..0fafb4b Binary files /dev/null and b/src/assets/img/zhishu/4.png differ diff --git a/src/assets/img/zlkwjs.png b/src/assets/img/zlkwjs.png new file mode 100644 index 0000000..6e427d0 Binary files /dev/null and b/src/assets/img/zlkwjs.png differ diff --git a/src/assets/js/beijing.js b/src/assets/js/beijing.js new file mode 100644 index 0000000..4c2a222 --- /dev/null +++ b/src/assets/js/beijing.js @@ -0,0 +1,356 @@ +(function(root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module. + define(['exports', 'echarts'], factory); + } else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') { + // CommonJS + factory(exports, require('echarts')); + } else { + // Browser globals + factory({}, root.echarts); + } +}(this, function(exports, echarts) { + var log = function(msg) { + if (typeof console !== 'undefined') { + console && console.error && console.error(msg); + } + } + if (!echarts) { + log('ECharts is not Loaded'); + return; + } + if (!echarts.registerMap) { + log('ECharts Map is not loaded') + return; + } + echarts.registerMap('北京', { + "type": "FeatureCollection", + "features": [ + { + "id": "110101", + "type": "Feature", + "geometry": + { + "type": "Polygon", + "coordinates": ["@@DB@DP@NCHB@XD@AED@BKB@@CD@@AV@@EJ@@EAB@KB@AA@AP@CDJ@@CD@@EACB@FBD@BAACCCAG@QI@CB@A@@@BE@B_BWLBN@@CE@@AB@@KH@@AD@@AC@@CIB@AC@DWCKi@MAE@@CD@@@@EB@@AA@@CC@BGC@@AG@CBM@@AI@@HC@@BC@@DE@@DKCIBFB@HfBAvCB@PG@BHA@@BB@ATJ@@BF@AJC@AXCB@bMA@H"], + "encodeOffsets": [ + [119181, 40920] + ] + }, + "properties": + { + "cp": [116.43726800000002, 39.87083700000005], + "name": "东城区", + "childNum": 1 + } + }, + { + "id": "110102", + "type": "Feature", + "geometry": + { + "type": "Polygon", + "coordinates": ["@@}EAB@HI@@DCBOAOBIC@NB@BLB@AFF@AB@LX@@DC@BJCBBHAF@VAbE@@BA@CDJDLABA@BDADBFBHADBAF@HHBBC@IJ@VHAhT@BJZ@@GGA@CCABCA@AMNB@aDABWD@BIE@@AI@BSA@@AB@AGH@@ODABueA"], + "encodeOffsets": [ + [119174, 40829] + ] + }, + "properties": + { + "cp": [116.366794, 39.915309], + "name": "西城区", + "childNum": 1 + } + }, + { + "id": "110105", + "type": "Feature", + "geometry": + { + "type": "MultiPolygon", + "coordinates": [ + ["@@@B@@@HCCA@BDBHAHA@A@BBC\\IA@KA@AJA@GpARB@AFD@BGB@BAD]`D@FF@ALB@AH@BDIB@@ID@BKB@@CC@FYB@@AA@BWB@@@BKCEA@@BOABCFEE@BIC@@AGDC@AH"], + ["@@@JI^s†xHZBHBADGD@FBDD@DIVFDBBFA@@BA@AJF@AFDB@DLBdLJ@@AJ@NCD@@DFBBAD@@AD@BFB@ABBDBDC@@DCB@JHBADBBABJDADDB@B@HFAFGTC@AD@DCZ@HEJIHCVBJAJELKJEJJBA@CBCBBDAAAA@DECC@AIC@ADE`MFCHID@JEB@IFJ@BECCp[HAZAHANGEGNGJFLMBKG@AEKA@ABELB@CBAAEDQB_DMMHKBCIFI@CG@BCAKGBACLQSDBAA@BECAF@@IC@BGCABAD@@AC@BCDAEKEAG@DC@IZ@BQI@@GIQBAD@BCFGAAD@[US@BGF@KKAKBEE@@KAA@BMB@EOBHHSAAFGD@FE@@CC@SBS@EDCCAGAAEDE@ABC@@ALEACE@@CE@@DK@AFUBAEE@BGC@@CMED@BAE@@AGAABCA@FC@AD@CE@@CG@AGQEC@IJKAAFQL@AABQCADBFDBGFACG@@FM@@BI@@BN@BJFBBBA@BDDCD@BD@DD@AAB@@DF@AHJB@BB@ADF@FCBBBCDABFDA@DD@@BD@BFABGACD@BA@@AGF@AC@MH@AA@@CCD@DA@@BA@@JD@@DA@DLCXD@@BJA@DD@@BC@@BG@@LA@@BF@@DM@KAAXA`F@@A@@@BDAJ@@RBHDDBDABC@EAA@BD@FC@@DI@DCO@@BBBA@@LBA@FI@@FU@@BC@@DA@ALC@BFC@@WGAMDO@@CCABFB@ADDB@DHB@HY@"] + ], + "encodeOffsets": [ + [ + [119390, 41009] + ], + [ + [119175, 40933] + ] + ] + }, + "properties": + { + "cp": [116.53282700000007, 39.959595959595], + "name": "朝阳区", + "childNum": 2 + } + }, + { + "id": "110106", + "type": "Feature", + "geometry": + { + "type": "Polygon", + "coordinates": ["@@@KBAE@BEA@AKA@@MJDPAPBDA@CJ@@GBA~F@GEAJALD@CF@@CD@@AD@@GJ@@BN@DAH@@BD@AHD@@DB@@BA@@F@@C@@DF@NBhABBB@@CC@@IB@@AB@@CDC@DB@@BNGD@@BHE@BB@@ADCJ@AEC@@AC@@CCBAECBADAAEDE@BCA@@AIABGE@@CA@BBC@@CACC@CDACB@AAEAAIM@@EG@@EA@IFAIHC@CBA@AA@BGE@EB@AAB@BC@AKB@JDDEBCB@@DF@DC@AB@@CA@@CJ@@QCA@BK@@IA@@CqA@CB@BGB]MAA`KA@AKBALO@@AE@@LCHF@CLS@AJSBBBK@AIWACEG@@EAG@OG@MW@CG@CDCBCDDBADC@IZBBA@EAAFJDCDICCH[CSIC@AFCDE@@EIABFALDF@DAJONCNEBUBA@BCCAY@@IDEKIEABICA@CEAACAA@[AOKB@DG@EBACG@BDC@BDKBO@ACCOGKABCECBAAKA@BE@ADAABA@AC@CCCDCCABBDA@AAG@EEC@@AG@AFA@@GA@AHCBBDCDBBB@BA@FA@@AC@@BFLD@BA@AB@BBD@@BBA@BH@B@C@@BFBGBBDE@ABI@AB@AA@AB@HE@CBAEABM@BEGACB@EAFAAC@BAACI@AFACA@BHCLBBADBD@DA@@B@DADANBHDBADC@F@ARB@@FGFAA@EA@CHA@CAAB@DAFKDEDMBMHDF@DHDDARDANEJHFPDRIHBJDLADB@DBDNBPHLBLFTFNBFAFD@FD@PCHDBCBBDEBBRGVAHDH@LGDEBCDBDACHF@DCH@@JH@@FJ@@LB@FABBDAAD@BH@@DB@BBB@DALDP@@AD@BDŠ@@SBAFFHB@AADH@BBEBFDJBBBZ@"], + "encodeOffsets": [ + [119118, 40855] + ] + }, + "properties": + { + // "cp": [116.286968, 39.843642], + "cp": [116.156968, 39.823642], + "name": "丰台区", + "childNum": 1 + } + }, + { + "id": "110107", + "type": "Feature", + "geometry": + { + "type": "Polygon", + "coordinates": ["@@HIDCACBAHBJFBADODCNJBD@JJEFC@GCCBEAEBCDCF@@ELEHABGHCHIFCBCDA@CF@@EE@BIA@BA@AC@A@@AFCC@AC@@FAAAOA@CA@@KD@DCND@AD@R@HAJ@@BBDRABDJB@AAADCG@@A@AH@@eN@C@@CC@@BO@KCCBA@AAA@@CG@@ABCCBAAEBA@@KI@@EG@@IG@CDE@DGCBCAADCFKHG@KCUBMHAACFAACDKPKFABALKFEHENCDGBMDAB@HEJICADED@BGJDLB@B@JDEFBBEH@DDABDD@DL@BCB@BGDETJHbDNDFANJ"], + "encodeOffsets": [ + [118940, 40954] + ] + }, + "properties": + { + "cp": [116.195445, 39.914601], + "name": "石景山区", + "childNum": 1 + } + }, + { + "id": "110108", + "type": "Feature", + "geometry": + { + "type": "Polygon", + "coordinates": ["@@AC@EHCBCGAYAwGt…HYBGAOS@@ABeUGI@@JADGA@GBECAGBEACACB@AABKBICDCB@@AF@Ba@UBEAGDAAID@@Cq@AAIAECFA@@A@@AG@BC@BGAEEAB@T{AYB@fG@@B@BH@CDBB@BIAACQBAC@AI@GBQ@C@@BMCCDC@@LB@@DPBBBEB@@BDD@ED@BB@D@@BABB@AJF@@FE@@DCBADEDGJGDAHGBKF@FE@CDADBFAFDD@HEDIF@IACMICDCPABIEGAABBDCDGJDB@DDBLDVDBFDDCB@DC@ADEDA@CBAFIDADC@GDEAGFCDQHI@KAC@@BMDQAIDE@ECUAGDC@GH@FADGN@DCDHN@FKHAD@FADGFCA@BCBEHCHCB@BDJFB@DDDLFBHNDBFDBBNHAFDDDDDJA@@HBFBDEB@BCDAHDFAHC^DDCF@BNh@bF@DCDH@AHCFANNDLF@HFF@F@BPCB@DHRBBMDG@KHEFAFFB@dMZ@A]A@@EE@DIEG@CHCNBJEDBBDCFBDJA@ABAACBA@C@CFA@CIABCDB@EPBBCAANYVHZmFDFCHB@CJDPMDBBAHFLBDGF@AJJ@AHF@BCDBADLBL@@FP@D@ACB@BAJ@FA@DBABGICBAEA@BAAABCA@GIADKD@@CJ@@EFBBAH@JAD@"], + "encodeOffsets": [ + [119185, 41003] + ] + }, + "properties": + { + // "cp": [116.288888, 40.000000], + "cp": [116.188888, 40.050000], + "name": "海淀区", + "childNum": 1 + } + }, + { + "id": "110109", + "type": "Feature", + "geometry": + { + "type": "Polygon", + "coordinates": ["@@GCODC@@EECEBMASEKEKAOGMAAC@CCAKBICGAQJOCGEFIBMQCCBGC@CCEG@IBGA@AIAGDCEE@CCMAAB@HAHMBgSCB@B@FIHFPBFAJLFDDFLOB[KBC@@QABDBDC@MGMAEBCHEBG@_HCBGNBBPNLLRHAFDLINI@OESAI@CBOA[HWCIEEICCOIMAGCIAIFCBEAQVOFO@GLKDGBICe@CBEHKCCCWGACcOSACCO@C@GCK@OEEGMEAIECM@GCYCKMG@IGQ@ECIECGIIG]MGCEBA@AKIEOIEEIUAQ@CFGBIDEBOF@FCBKDGDIAGLSDE@CLADJFNV@HAJLDBLE@QJMBAFBFHDBFDBFHFDADSPEDCFGDC@EDGBADMH@FEFELQFE@CBGBEDMFADKBGFIBCCE@C@CAEB@DEFDH@DDHEDAFDJBHB@DHABFDDFHFNFD@BCH@EPBDEFEBAHFHDDJJDHBJDBF@BBP@THDFHBHHBD@BBBRJD@BFH@@DJLADLDDFTLVDH@BCB@FDLDBDDBBFCLDBBFF@HFF@BCFBBBDDDBBADGFAF@LBDHAFDHAFDA@NJHV@NEJDDADAH@DBJCL@DBCHFH@DTJFC@AbBHDFBF@FCFDD@FE@ADCLDTC@DABK@KFJ@LDLAPIJDLALFBBHDDDDBHJBF@DGFADHL@FBDFBJCFDFBJVLDHAHD@QFCXSBCHG`@LEB@NIBDCFXELBBBFCLDF@LIFABBHCFEh@FEFDLABBFELAFEDAFGHCNQD@DGDA@CBCEACEB@NCD@AAJG@DBFD@HB@AAE@GCCDGHGBEAABA@CBCLFF@@DFBPDLADBDANEFBDANC@CJATPFEHJLAHDD@DADGFGDA@ADBHEBC@EBCLG@EGMDC@CHMBC@EHGD@HCVBFDF@JCRBNC@AD@LBJ@JCDCD@DCHEFBHCD@BCJCBEDAB@FCBCD@@CDACCAEUCKCCA@CQKEBMCaCIGFSHC@ADA@ACKC@ACCB@CFGAAFEICA@A@CKHI@AFCBCJDFI@GBANCHADCFMFGLEBKBALENO"], + "encodeOffsets": [ + [118956, 40847] + ] + }, + "properties": + { + // "cp": [115.889999, 39.997183], + "cp": [115.789999, 39.997183], + "name": "门头沟区", + "childNum": 1 + } + }, + { + "id": "110111", + "type": "Feature", + "geometry": + { + "type": "Polygon", + "coordinates": ["@@NGNAFCLCBE@CBADBB@DGB@@FBBHE@EA@BQE@D@BCCAAGBMBC@C@AB@@CACBCAADKAGB@BDBEJ@BDABD@BBBE@FDAHBAFN@BABFDAF@@GBAB@@BBAJ@BAF@ACHAEA@AD@A@G@@AAB@AC@AAA@@BABC@EK@AD@@BB@@EABA@AADCACDABGB@@HB@BEH@@BD@FFH@BBB@ACBADDDCDDD@@BABBBBCF@@ALBBBDADFBAHLDPBDP@LAACD@ACH@BDFAH@@CLABP@\\BBBDFB@DDBAJFBLJCF@JZ@DBADB@ZABCDMPKBI@CEGDIAG@K@GDEAEBCAEDQCIBGAIGCAEEAACFI@EDCACBCEGBCCGIGECACGGBADACG@ECKS[@AHCBCIIDKKU@GCIH]AMBCAK@KFMBCBCAEHEAMGKYAAHA@@DE@@JCB@E@F@EA@@FAE@@@FA@@EC@@FE@@CE@@DK@@DOA@II@@@MCI@@BKABDCBCE@IA@@CA@@GC@@AA@@HA@CGAAGBAEA@G@EA@DQB@HIAEEO@@JIHBGED@E¿EGB@DCBC@AAEBBFA@DNA@@DIAIDC@AGB@@AG@AICAEA@BI@GABNE@CFA@BHA@@HGA@DKAADCA@GA@@QB@@ECEDEBAE@@EA@ABI@ACA@@GGB@CG@@EC@@FE@@DG@AFA@@JAACDE@@FI@@HE@ANCA@DCB@FKBAB@DKBCBE@CDAKCA@AAEFCAGNACCB@AEEIDACEB@CAG@DA@AGBAAABBBC@@BCAEBKABIBB@CBA@KK@DAA@AAD@CGGB@ESB@CA@@AK@AHGCKN@AE@@CC@@CGB@AAMC@CC[@@KGACGG@BKB@BCC@HABEIABAD@C@BED@@CFDFA@CC@@AFACCODK@SDBADA@AE@BD[BKAQHAAIDIBDCAAFCCC@@EFAFE@EACDCA@AACC@@@@B@@@DAB@BEDB@ADEDADEXGFB@BBCFABD@@DC@@AID@ACBCAADE@DABGEBD@E@@AC@DBC@D@A@AF@HA@FBID@BD@EJBBC@BAC@@BIDCCCBC@BBM@GBEDFB@D@BDBFAAB@H@@BDEBD@A@@DEA@BABBH@DABIL@LGJQFIFGLAABCAABCCGMGACG@@BG@CCG@A@AHIBEABCCCBAC@MBEHGBKEIAOBCCBAMCGCCIEBGAODBFBDKFCH@@EHODEJKJA@KCKG@C@CEEAABCMGKC@ABC@ACCE@BFEV@JDHJHHFAD@JCBDBADADDFADBDKB@DIBCJEFSBAAAEA@MBEDICAD@DBBBHDDBDRN@BIFBB@FDBAB@DFBDDABBBF@@BDBCBB@DBBBEDDDADCBGHE@FHBFCLALAHBFEFBFHF@FE@GFGBW@EEGHE@CBKHE@GDKDGL@FCFBLGDGCCHLDFLTHRGLBdRFJHDPEDB@CFADCFCJIDAB@NJlHB@DDHBPAHB@BJHDFJDAJFFR@VBFJJFFPLJ@BABDFNHH^JJDHJFFDR@JHH@LNZDHDN@FDBJNFFHPFL@HDD@P@DDTBdPBDXHDDLDFGDAf@JDHALCHKP@PERUFBDAJEJBHDNBPJDDFJJFXD\\GPBDAJ@TBPFJ@JMCKBEQGKKOMAAHMDA`GH@FADGFANBNHD@ACACRB@@AD\\LPAEKCCKEBIAEEOJG@IF@bRDBNABG@GBANBDDF@DFHCJB@BHBJAH@"], + "encodeOffsets": [ + [118840, 40803] + ] + }, + "properties": + { + "cp": [115.889999, 39.705535], + "name": "房山区", + "childNum": 1 + } + }, + { + "id": "110112", + "type": "Feature", + "geometry": + { + "type": "Polygon", + "coordinates": ["@@DDH@DJ@JJB@BLB@GH@@AD@@GJB@AD@BAH@ABFBFGD@ABNDJDDBBGHEHFBABCF@BGD@@CB@@BJBDAFBBAJ@@ADA@GDBCNDB@AHBBCHBNHFLBADDNEBGF@AFJCBFF@@AHA@FD@@BF@@DL@@AF@@CBB@GF@@CD@DGX@NCCEBCJK@KAIOUAKEGIGAMBCJGdKDCBWAO@QAQFQ@UDGPKNEF@@NH@@HHBBQF@BEP@FAJOHIFBJIFCL@BGB@DKRC@ELCD@@BJA@FJ@DANKBEDAJEJADBBB@DCHEFAHBFLB@BDBNGNQDEBMDSAKDCRKFCBCO@DIA@@AB@BCZCDCBGCBGADMGA@BE@GFI@YAIIJMOGDCCA@AEBCJCCICBGEADELB@E@@@CD@@EB@@AB@DCCAFEGA@ED@@CH@@IIBSEBAEA@AKAM@@CC@AECCDCD@BCA@BCAKB@BGCAFAB@HICADCKCDEB@ABDBBATD@AD@JMIADISCBACAADGACBK@SGDCAAEFOAACC@@AU@AIDA@QACQCCABGC@E@ABAABCIE@BECFEECJGNMGABC@EG@CAICAFGDKA@AGCQABCYABCBCA@DIEB@KB@@AI@@AAA@AI@C@@FEFALGB@DCBEDEFIFQFAAEBAA@CE@@AE@@DI@@DC@AFE@CD@DGFDDA@@HD@AHUBC@@CGHAHEJ@PDRANI@IB@BABM@AAGACBG@GAAAC@@DC@@FDDBFEFGA@FI@@EG@EDBNI@ALF@AFJ@@JIBE@MPANKA@DEFM@@CIAAEA@@DC@@CGA@CGAAGCCWA@DQAA@ACKA@JwBUGIDDDKDFFJCDFBNKD@RBBJCBBB@@FEAGB@BIBHJQB@JDPGHDFDCFIZAAJE@@DRBAFEAB@MAIRNFIJ@B@BCBDBCBJDCDHBCDADF@@DHB@BAPCFCBAHBBFB@DG@AFF@BDKF@BD@BAF@FCBBBHDDFCT@TAD@@DF@@EHCBETBGGPA@FNA@ABB@LF@AFBLLLE@AHT@\\VC@BBEHADC@ABJR@HJ@ARY@@JCDH@FBFLCBADD@@BC@ABDBAHD@@JE@DBAFB@ABTCKRBDHABLADH@@DEJDJLANGCNA`CRBFAB@DKAAF@BLBBFH@@FAHKLIEMHFHMHGB]BOH"], + "encodeOffsets": [ + [119394, 40978] + ] + }, + "properties": + { + "cp": [116.728603, 39.802486], + "name": "通州区", + "childNum": 1 + } + }, + { + "id": "110113", + "type": "Feature", + "geometry": + { + "type": "MultiPolygon", + "coordinates": [ + ["@@C@@AIA@ICIG@CCcVDDAFI@JEA@IFC@ILGFWHEFAB@BJD@BDDCFB@BBABvb@GB@BIB@@LJBD[AAB@B@BGAGACB@DDBQD@HC@BD@AJF@EFADLBLm"], + ["@@MDW@CHC@@DE@@HAA@DE@@BK@@CE@@AC@@EGB@BE@AEIDBEE@AHOFACABEKMGGAADGA@BCADMCA@HCB@BI@ABEACBIA@AA@@DC@AHE@ADABGEGFAHCAICMCBAC@EHEABAG@ABC@@BIA@HC@@BG@@HGAKnD@@ADBBDAL@@A@AXB@@BA@EZD@@DA@ALC@@JA@CJ@ABGA@BKE@@E_CC^ABA@AHC@BEA@BQHguaA@AAAD@DABIIIFKLIFIBUAGDIJGFY@CDC@@BSDEHEBEFDDH@FDD@FBFAD@NJBLD@ALEJ@HCDC`EBCHBDH@DFHADPKD@BCBMACDJVDADJJLCF@NEJYRD`FHN@@FEPBTJBLJJAD@FJBHB@@DJ@@EX@@AF@@FBBV@JLAHABCJHCLB@ABBH@BCJDL@FD@EACL@AGLA@BNAFC@DB@DBFIJ@@FHCACDA@EHEAIDAJDVCBDB@@PF@@BH@J@DEB@@BF@@AD@@ALB@DPB@BLAJB@CDEA@BGFCBIC@@C@EEGD@@EHB@FBB@AB@DI@BLANNB@JFCDDFHDDADD@LLAzzDCCGB@BBB@ACB@BBZG@ALGBB@@@CDAAAB@BBD@DDDACCFADFRH@FB@@HDABFB@BFA@@BBLB@BEFCBB@BHAFDJC@AHA@HB@AIDA@AN@FA@@@BGBND@B@D@DDFBJFB@BCHHFDDFBXBDCHKACHQDCX@@QFKDCAA@EACFEFABE@CJG@GDCDEDADKLABABAIAACC@@CJADCL@BIBCJCDDPCDF@FBBDBFFHADCBCFCAE@CAABAACBECCGDIA@ADEDE@CDEDEAABADBBGB@@DF@FAFE@GG@@G@ADGH@@EL@@BJ@AENQHMLIGKAEEECG@MECLECKFIHEEMC@ACCANE@ACB@ADA@AJA@EDB@EG@FE@GBAM@FCD@DDBAF@CCD@CGAGC@CKKBCADCE@@BEBACGBAC@@AED@@OC@_S@N@@@GA@AHA@ECABBBE@@BF@@DEAADE@CFC@BGA@ADA@BCC@AGIA@AAACJAAAHK@@BMKSA@CCDMAEBIGIA@@E@MPIBDDOFAEcA@EQC@MC@@MBECB@CI@@DE@@DACOBEEUHBDS@EC@KCA@A@ECICE"] + ], + "encodeOffsets": [ + [ + [119409, 40992] + ], + [ + [119575, 40975] + ] + ] + }, + "properties": + { + "cp": [116.73046400000006, 40.145085], + "name": "顺义区", + "childNum": 2 + } + }, + { + "id": "110114", + "type": "Feature", + "geometry": + { + "type": "Polygon", + "coordinates": ["@@@G@ACABCICBAAABCGA@IDA@CD@ACACBAA@AEC@@BC@ABEA@CC@MDI@@BI@cKKA@CCABEE@BIB@@AB@AEECSCCJG@IBG@ABEA@FI@@DC@CLJB@HDBBABB@AFBABJDAHAB@CEBI@ABA@BDC@O@@EK@KABCCAADE@BGI@BIE@CHKAGEABCAONIC@DGAEDECYnUGMZBBADOA@FCAADJB@DEB@D@DABBDAB@BIBACDEACCAIFMAGD@DFHCJF@@FB@B^Y@cNA@EEEBGF@LCHANQACGA@OD@A@EEE@GKEMCBMDEBGG@DC@CaEg@AME@CD]CGDEBGCCBADA@CFEAGA@@IBCCCCECGBAMCAAEMCAGKECC@CEACG@CC@GCKBGIEFSOIB@DMDCBEAMFCBCAKBOCEA@CE@KEAD@DABBBAFGHCHDD@HBF@BGAC@AE@CIHBBC@MDA@DFFBAD@DCBCHC@MRGDEHCBGFIBEFAAKBECEFg@EFGDAAEBKJE@KAEBBJGJ@BCB@BFBABABCACBAFFDFHDHDFKHLFBDTEL@DD@DBB@DFBBNDDF@HHEF@DDBCJB@B@FJFFBFLJBDADHAJCJBDBBJDDAD@BLJD@BBD@HFHBD@NCDBH@B@@DF@P@FBDDBFFDCBDFDABDB@BFFADB@DFFADCB@JF@EJ@DADB@@DD@FFD@B@HBEJC@CDA@CBE@EDBFALCBDBHBHFFBBBB@FFF@B@DCFADBBFF@DHD@BBHAFBLKBED@@IJQF@J@DBDHJ@DAJD@DD@BDAFC@ADJFABDD@DFDJ@FBHDF@B@@ABAD@FCFILBNCNDJA@ED@HG@EBAJMHAFBHADB@BF@HF@BCF@DCDBHADDFHFGBEAADDFFBCDABBBDDD@D@BADMCAAEBAJBDB@FFBADBBCFEDIDDJBDCBBFNDF@DFD@DADBF@DFFBBAFBFEHDBBH@BDBBDAFBJ@DDL@BBABDDBDDBB@FAJBJADCBCDEJFJ@DDHC@EBAHF@FDBABDBFBBADCD@DBH@DBXMNJBBABBBAD@DAFDFBAD@@AD@AED@AGHBFDVDPCF@BAFAJCFGD@LG@ADAD@FCJ@DEFCAAC@DAAAEBG@DAGE@INBBBHD@CFBLEEKCADEBA@CDAAC@CACBCCCC@@CLFJ@AFBBHBBAHDDCFBD@LGFDBAFAFBB@BCLCFCJBDBHCL@HHFCAEFGBCF@BABADCJE@AACEACIEAAECABAHABEACDCAABCAIDAFBBADDF@FCBBJE@ADAPABCHC@OHELEH@HBJA@AC@@CA@AGEIC@IBKIIAASFO@EM@EGC_ZQFI@MDEIKCICBIUDCNBDA@ALCCOGBCEG@ACDGFAD_DC@GFIBI@AC@@ICCOGEBEAC@ECG@CCFE"], + "encodeOffsets": [ + [119263, 41053] + ] + }, + "properties": + { + "cp": [116.235906, 40.218085], + "name": "昌平区", + "childNum": 1 + } + }, + { + "id": "110115", + "type": "Feature", + "geometry": + { + "type": "Polygon", + "coordinates": ["@@BAH@@CEAAABGDADEBO@AGA@CE@BCDCGADCICDACADA@A@AJIMEJQNBA@FBBEQA@CF@BIYBEJCDCEHGCO@IRAGIJA@AHAFB@EA@AAIDAA@QLCAMCEIDEELCCCJCVHxA@ILBBDB@RB@CXBDDBHHB@DHB@DD@@CB@BFJB@DN@FE@CLBBMNOF@JA@II@BEE@BKJ@AMFCH@@FJ@@EHBFEAECC@ED@@CD@BBHBH@DAHBBBN@BA@AJAJ@BMCQ@QFGBGHG@DD@VABGC@@GB@CCHE@CEA@CK@ACICCDEA@FIADMB@BEC@@@HEF@HCBEB@@BDAB@@CFA@@E@HA@AD@BEAFDE@F@@BICAAFA@BEAB@AEABAA@CBEA@AGA@@K@EBADA@CHC@ENIG@DG@@ACAAFA@@AA@@BSD@DI@E@AAGAA@BCEAAA@BG@@HA@BGEAAFE@AF@AGA@DE@@IMA@BIB@BE@@JG@@NG@AJGB@JK@@CE@BEGAB@CA@BC@AFBCADECADKDF@K@@GUB@AE@@GD@@CB@@ABAGADEC@BEA@BAIA@AIA@AGABAIA@AG@A@AFD@@DAFCABAEABA@@BEA@@GABIB@BIB@DE@@CEA@CEABEC@BGB@@EAACA@GL@DIOABCE@BEOABEC@@EC@@GA@BIIAEBIA@AC@@BG@@FOA@BQ@@BC@DID@BAAA@CB@DCBGEADEAA@BG@@@A@@AE@AA@CG@@GIA@DK@@CY@GABED@BECABEF@@EBEUEAFOAANDB@BA@@JC@ADS@@BM@DBABG@BE@UFA@AD@ACD@@CJ@BEHBJSG@CACOCB@CCABAA@BETDJHFME@@BCA@A@AD@BEB@@BJBABD@ADB@@BB@@BF@BAH@@GD@CBF@DE@KA@BIJOFB@CCEC@CA@GKA@AE@@AI@EESHUDIDQAGDGBGC]BK@@BI@@FAAUBAEIBADE@IBOHEFAFGDAD@FKHAHKH@DCFE@SDMBABBBC@AGE@GJM@OHEBAJCFCDOJADDFED@DFB@DDFABCABHC@BDBHCN@BADDBEFFDBDABE@CLK@DF@DOEA@CDIVHLBNGFBFADADEN@LBLADBNG^DJ@HLVCLJJADGD@BT\\DL@FDHCBABHHBDFDJHDHADFHADBDCD@FEJBDFBBFHDBJAHDJCRBFADBDCH@VJB@FF@DCBED@TJ\\DDGJDDCICBEFBB@AAHSA@DED@BCCADCDADCH@@DNXH@@PBH@FH@DFXBBJL@AATABIT@DKE@DG@KF@@BP@BKLA@BLBB_NBA^AHA@@DrB@DB@@JL@@ADB@RI@@DB@@DA@@BCDE@@CA@ADCFICA@BLD@@ABA@BFAF@AHB@@BAB@DGDBJJEB@@FH@@DJ@@AN@@EH@BDHECAAEBCRDBA@BRKBELBJIVFBHH@@DF@@DBCD@@EDBBAHB@BF@ABC@NF@DD@AHF@BFVABEL@@CF@"], + "encodeOffsets": [ + [119332, 40781] + ] + }, + "properties": + { + "cp": [116.388033, 39.639999], + "name": "大兴区", + "childNum": 1 + } + }, + { + "id": "110116", + "type": "Feature", + "geometry": + { + "type": "Polygon", + "coordinates": ["@@A@@BABGBDBFF@DBDA@ADFDBDEJBDEBF@@DDCFBDF@D@BCF@FED@FADDDADCBDD@DDDADDBAFHD@FDCDB@DBDBDBBFFKDCFIJAF@DCB@FLDNAJLH@DHD@LJJAFBLCLDFABAVFL@FCHBLCDCACFGAACBDCCA@CD@@ADAD@DAJBEA@AB@BGEB@CDCF@AADBBCDADDA@BBFBABJB@DJDF@DAHDDAB@DCD@JCN@PHP@AAD@@AHB@DDDAD@BBBPCFCTALBBAD@BCHARDP@HJFBDDD@@LMJCFEBAFKFAFABAFK@IEIAEBCACBADA@EDG@CBEHLLHLFDDDHDBHHJ@FRBFBDHBDLDDJ@DDFH@FHBFJDCFFEDBBFHJDBAJJF@DABA@DDEFB@ADBFD@BDADDB@DBB@DBD@DHDPCJBB@D@DDFADAFAFDDH@JSBABC@GFC@ADE@@DAD@BIDAHIFG@@GA@ADG@@BE@@FQDDD@DEBAF@FGBKBADGGABE@GDEAABE@GJLZHBHHH@DBBDCDAFBDFBDFEJAFDB@BF@BDBDBDATDBBFDDODCDEB@HB@@LCJICGHKDCDADEFCAEBGAEDE@BDKPBLCD@LEDG@CBBDABGFKFADBB@FABCBAJUDG@KHADKDEFANCDCJEFMJCH@FGBIBADEDEHEBIHAHCDCBADMFIFCFC@EH@DCDKF@DBH@DARHFDJDDLFDDT@DHFB@DLBLGDEDAAEDEFCBKLOJEBEDEL@RKLFJANDLIXBDBTADADET@@DDDDFCDBDENALILALKBBJMRAHMHDHDJDDCLDD@FDD@HB@DBLFFCBAHADCBAFBFDD@FDPIF@PCH@HAH@FFBHJAFBLHDFNDJEP@HBDJD@LCJGBAHCHGFAFEF@PC^PDH@HDPED@DDJ@DDD@DFF@FBDCDBB@J@BABEHGB@D@FBHBBDH@FCBRDLLLABBHEFDHABAD@HCDE@CHCJELADBHGLAFDHBDGAEHGBEAEBEFGGMEACADEACIICAAA@KA@BIAGFEGCAECCAILKHC@IDABIACHAHKJEBIJCJBAEFEF@JCIKCICC@GH@NG@CDA@EHEL@DCDBHEF@HEJ@HAAG@GBAFANFFIJ@FABEJIHABELEBEAGDA@ABCFAAKBEDAD@FFDFDBP@BCDC@CDAD@HBHABBHEP@BENALM@AACLCFCH@D@BEHCDEAABEAGACDAHABACACCEAC@@BGBCECCEA@BC@ECBABA@EDABCMCABCAAEKAAGAASECBA@CCBABCBGD@BEE@BCCA@AECCECCE@E@EACDI@GAEEM@OFABEBAFGFCIAABCBCDKDC@GDADKAOBCAC@C@EECBCAC@CAECAG@ABEAEFIAIHMACEKCAGIAMGKAGC@CACC@IE@CE@CE@ABC@A@CACBEECCEFSAAAMDEEA@CAAMG@AACBCHCA@BE@EC@EBCCAADED@BEFADEBCEGDCD@DA@CEEFEECHIACBCDABSICAECCO@EDECCBK@KCACFGQBCAE@@ABAC@CCBCBADB@DFBJ@DDCGFCDA@@R@VGDCCCBEHI@AFCFAJIIEAKC@EACEGC@ECK@EBCAA@CIEAEBCFABCNGKBEDC@@KDCA@BCAGBCFDDGHCDEFAPAABBBDBHCAA@E@@ABC@DCCABEAAFAB@@CD@BEGCHAACGFIBDEF@BEBAAUFKPDF@ECNEBBB@AA@AWII@AGGA@CAAEAGFCABAF@@CACB@MGDA@AD@@HF@@GACB@CEDAAAHAEEKGAGHCHEL@CMRAAIF@CSA@@CC@AIP@@E@AZHBKNDD@BAA@JA@GD@AEH@@CJ@E@@CHIACJ@@ABB@CA@@BSIKOEBQUAAB@EGA@EG@ByyKB@KCCCBGCCEDCIEA@MMKB@ACJA@@BAA@EGA@FC@FH@F@DD@AJEDAHB@CF@DIAKB@AOA@CKA@BC@@BE@@AA@CFI@G@@AE@@OA@ACUDICCBBJGF@FCBBDGD@EI@EJCAA@@CEDMB@AKBBHK@BD@FECK@ICADG@AA@BKAGDDIBABGIKU@AA@EE@@BW@@FE@@BIBGAG@KFGF@PGDADOBCB@BIFAAEDE@CCABEACBBJADBBCDBDAFGBABDBBFFBDJFBBD@BIFCDABABE@ADEHBFEDGGK@GDCAIAEDKDADA@EAEBABECKHC@EACDGCABGAAABEI@KE@DD@DDADBD@DBDCB@DABCFDBFLKFEA@DGCAAMA@JHFCBH@FABBCBD@BBEDCFI@EDC@CB@BKHC@EHIDEBABE@ODUCECGABHC@BFC@@BC@ABAA"], + "encodeOffsets": [ + [119081, 41362] + ] + }, + "properties": + { + "cp": [116.607122, 40.524272], + "name": "怀柔区", + "childNum": 1 + } + }, + { + "id": "110117", + "type": "Feature", + "geometry": + { + "type": "Polygon", + "coordinates": ["@@@GDEH@DDFADBLABEFABCDIF@DAAEBA@EDKBEHGACDAL@DAHABAAEAACEDEAE@CFGAKVKF@DEHE@EBA@CAA@CAA@EDCBEPBBCJBDBF@DFBA@FF@@@H@FBDFFBFG@GDI@ODEAEDC@CFECSFGDK@CF@FEBEHBLFL@DBFCDBDCFAD@HEJBDCBA@CBCKAK@CCE@B@AADCAIF@@CBCD@BBD@DCHA@AEAEBICBB@BABAACE@CBA@ABCF@B@@AAAACBEH@BDDBDA@AJHDCD@FEFAAACA@CGBIGICFCAAO@ABCACDDGAACBEFC@E@AACA@AAA@BAB@CE@BDD@CBBBCB@CCA@AB@@AAAEDA@G@C@ACDA@CJI@EFGAAC@AAIGCCH@B@CCCAAAN@AGACADC@EICAEAIBCAMA@FCBC@EHIEGBABCAIC@IAAAECEKG@EA@CBC@EDG@CACEC@AEEABIEEGBADCFMDIA@DC@@BGBGGGBGCCGMGAGGCBCACKDM@@KFC@AAADAGACCC@GE@EJ@ACCC@EIACCABBDIBCDAHCH@BBBIF@A@AGEBCHC@ACA@EGC@BIB@BC@ABEBID@AEBIDHEGKQGI@GCG@MDEFKHCCEDOAEDBBECDFEBEAAAW@@KC@AGC@@HQAC@BGMABAE@ACKB@CEB@ID@ACCA@AMAABICKMKGDII@BGE@AFEA@AG@@DE@@CUA@FOHMDO@MCCDBB@HD@@BA@CHGAAHC@@PC@BF@@BDHABDFA@AF@CDDBLADLD@BHDHC@DDE@ABCCC@EDN@AB@HEFH@@FCA@FIB@BCB@BDA@BMFDBBDD@FNGFEJDLKFFD@NDHFFBFHLKJGNMRBFI@@AK@@FG@CH@B@HH@@HEFEBE@@CA@AHCAABBBCFCF@DCFCF@BJBHCDDAFBDABBB@DBFEDADCBDFJ@BBB@DBBDJBDAFEF@LJ@BFBBBJHBDBFGFEDOCEFGDEDADJJB@HHDB@DJFFBDDAFHFH@JFP@ABD@CDDBBABDBCBBF@D@BDD@@HC@@DBBDDDBBFFBAHCDAD@JFBDLFBBHDBDDDFLBJADBH@BDJ@F@BBFAFGHBD@FHFDN@@DHFD@NDFDBDHBBFFDHBDCNCBCDADBFADBLBFFF@DDRDBDD@DF@DNB@FDC@BB@ADB@VEDBBDDAJDF@DBABH@RAH@NEN@NHHCD@"], + "encodeOffsets": [ + [120038, 41345] + ] + }, + "properties": + { + "cp": [117.152335, 40.204783], + "name": "平谷区", + "childNum": 1 + } + }, + { + "id": "110118", + "type": "Feature", + "geometry": + { + "type": "Polygon", + "coordinates": ["@@DENABAAIAABGAG@ACDC@BEF@HGL@bEHA@AEC@ALYCEE@@AFK@CJ@HEBAJABE@IBCRKH@BCHA@CFAHGCI@@FABCPABCDAPBFCZIFCNALDBAP@HEHFBFJBFDVAFDL@FALBHCJFJAPFBBNBFBF@FBBABEFC@ABCJBF@H@HCF@FCH@NDHCLADDD@DDFAD@PKHBBFBBDCPBHCLBFAD@FEN@BC^KDGNG^FFDD@NIJKJCBAACBAFAJEvCF@DAFBLDJBFDD@BBAFDDFDBDdBJDFBHFNALFFDJADBF@ZFHAJBFCJ@NGHFFC@EDEH@DBL@@AJ@PEHBDBD@DBJBBDFCVEHEBADANIJG@IGAOCFKEECCBC@EAAS@IEADM@EJBHGBAFGD@AE@EDDB@BA@Q@IABANC@AEBCCDIA@ACBEAIGCBC@AMBACCAO@BDEBFBGFBDADBBCBC@GEAKHI@IAAGCEKCA@CCEDGFCBGFCAEFQFAHA@GQMGBCBCACDG@GFCCAEOEEEAEC@ABE@CDG@CD@DE@ABBBE@@DEBAFG@KD@BE@CDADCCCBE@MECCIAGFMC@BABE@AAC@IGCAACGCACCBGCMAOIE@CBIAGCKIECC@CCEA@CBA@C@ACAAAJGDIBGFEFKFCAGE@IDOEEFIDCAACE@GEIBMDICAID@KM@GHCJ@VYCE@EDEHEJAAGA@CCFKHCH@FELC@ILEJAB@ECEGMIAEGAEICBCEKEBEBA@EDGCEBEFEBGG@AGOGAE@AACBAEGC@GDMGM@MFG@QBG@BACAE@ICCBACCAUFA@BCA@@ACD@EMA@CCEC@ACQCCCE@EEKACAEBCACBADMDCDGAECAEGAACECMCC@GE@CM@ECEGC@GAEHEBAAE@I@ACG@CAIBKACECCCAAGEACKEA@IBCDCBGEAAECACCAA@CD@@GC@ACC@E@AAADACABCADCC@BAO@IEG@GEBECCEAIE@CCAGGA@IIBCFCHCFEPDJEDCCIIGAAEA@AKIE@EFM@ACEACAG@CCGBEECAAA@ECEODCCIDADAJK@CDIB@DD@BDJBABABKBCLCBCFCD@HIH@DAFEBEFBD@FBBCDEL@RW@CDGRBDGLCDWAEACCGEDG@AEAAICE@C@C@AMCHA@A@@EBM@@BCBBJA@@GGB@BIDECGB@AAAEDAFA@AK@AB@AEA@AECB@GA@@EQGCEEBDDCBCCC@AAA@BBCB@D@@AAKH@BYHAAA@BDA@AAA@DHCBFHB@FHA@BBRVFALPTJ@AB@@DK@BDGJ@DF@I@@DG@BFC@@HIBB@ABC@MCALYG@B@FO@BJD@@DB@DTE@BJQBDNK@GFGDBHLHFFGBBBCBDFA@BD@HE@@GC@@BCBNHA@BD@DE@ABDBHEFBBB@DHBBHJ@XJ@BBBA@AAMFFDE@OCELBVABAFE@CFJAHEBDGBHDAFC@@DA@EBBBAFDBCDD@BA@@@FBBGDCAAABAOBEBCFGDCHECADBHADB@CD@LD@FCLAMHADEBADBFJF@DBBAD@FDL@FHDDFFBD@BLJFIJEBED@BGJAFDDCDCBEBKDQ@@@CBEDDHCCI@EA@CCAABABDFD@AB@BF@DBRAEHBDLDL@DAFDFCP@DDBFJDATCBADBDGJFDEFFF@DCBC@CDFHADCFEBAFC@CFBBDDFAD@@FAFB@GDADBD@BNHBB@DFBCFBNBBETDFFDAFBD@D@BAD@BDFF@@DJFD@BD@DHDLBNHJBBHLDDFNBJGJBFEFBBAH@DBBF@DBDADFD@F@DBDADBPCLCB@HCDCLADADBBDJHEBEFABAPEN@FFHBJ@DCFBF@F@DDDFFD@BDBADF@AFC@AHADABDDB@DATFBBBHLBBFDBBANDADCB@FABABFDD@@AFBDDDFHA@AD@FBDDDB"], + "encodeOffsets": [ + [119693, 41781] + ] + }, + "properties": + { + "cp": [116.943352, 40.477362], + "name": "密云区", + "childNum": 1 + } + }, + { + "id": "110119", + "type": "Feature", + "geometry": + { + "type": "Polygon", + "coordinates": ["@@F@FCHBFADBFEBCDCLCHGJDDI@KA@@GFADCPCCCAECABSACACACE@@ACABEFICEEAACBEDCACCAG@GGGACKEG@AACBCFEF@BAFBHCF@BAHHBCNABAD@AEDEFA@CCCRC@EF@@AH@BC@@BHH@JEBGJC@ABC@CF@BCD@HED@BATA@ICGECEBCBEBCCC@A@IAODGC@CAC@CAA@CCABCACC@AEBCA@FECCB@BA@CIEBICAGIAECAEFDEICAEEGG@CE@CCIKCACCGEAQA@EGIAGGCCCECGKKKFGDAH@FCB@BCDADBFAJBJFL@BEBABELEBEFADENI@KC@CCEAGIO@QCGBADC@ABKASBEDODAA@ABCCC@CGA@BC@BBO@OGM@IDC@CDA@CBGCCBE@IC@CIABAEAAAB@CCCBADCABBE@CD@DFAAHA@@BFBIACBC@CB@BC@@DDBCDDABBEHBDCDKDGAEDK@UEABEBKCKDEAIBKIC@CGG@IKMBIAAA@EDA@CBEJIDELCEEAAACAC@CCACD@EGCBECABCCC@CCCDABCCCBC@EFC@EDE@A@CCEEACD@CE@FAACFIACECBCB@AC@CEECAHABA@AB@ACBE@CBCAABAAAMIWNCAG@CAC@EFICBACA@EGEAB@FGDCCI@IECFADCDIBIAEBA@CAACCCBAAAK@CCI@EACBAAACG@AAGCEFEAABEACEE@CACBC@CEE@MCAEDAACCIJCFCDEAABCEA@ECAIAABBFDBCNABC@C@CCAABADCEACEBCFBHAGECEBCAGDC@CDE@AGEE@@AEAEBEAGBINAB@FGHC@@FIBMCMDKAEJEDC@AB@B@@G@GCEAI@CCACCCBAIEBCD@BEACA@ACCAEACBI@CGMAE@AFADEH@JC@AFCBEHABEAGBAAC@CGE@AECAEBCDA@E@EEA@AAEAGEGACADABKAEFCF@DAB@DCD@FIGAA@C@EEC@@CA@BC@CFIE@@IDABCEE@CCAEBAEA@AAC@CECBCFC@CJBBID@FGD@DCFBBADGA@FABBB@FGHAFA@@BDDBB@DBDMDAHEBADEBEA@BGH@BHDBDCDCBAFAFFFGLAHAB@DMDCDaCCDKA@BC@@DIA@DC@@BGC@@EBICCD@BD@@DCCE@ABF@@BG@@@H@GBH@@DE@@BF@@BG@HB@HA@@E@JI@@DMA@AC@CBA@@DEAAHE@AH‘–C@@BB@FBAFO@EJCBGF@ACFA@@AC@CDEA@@BBC@@BBB@BFB@@ADBBADFACFB@CFBBD@FC@BA@ADDFD@@BABGCE@EF@HDHDBFF@HADDHHF@FGDGAKJGBgAAAAEMRJPADFBBHJPJJD@@FEFBDDBHAJDBBBDHJJBDHPJLFJ@HELBLCF@LDDHAJDF@FBDDPDHVFJBFDFCLADBH@HBDBBFJADBLADBFAHFDHDDBDJFHHDBBDDDDAR@RGNBHCNAHCDBJ@HCH@HC@CCENB@ADIDMHIBIFABBL@DBFABD@D@BRABHDDD@FJHF@BCBBBFBHHB@DDBCDDBC@ECEDCHFBBBARDLHPBJFL@HBBBBLDDTJFFTFB@BEF@^BFBBBCFONALABDDLDDDJBBDFFFJB@ABFFD@LADANCTAFB@FFLBLFH@FDH@JCDBDHFDJ@DFF@DJDADLJBHLDPL@DAD@FH@DDFCJFDD@JFHVLADEBBF@F@B@DJH@JAFJDDFHBDFLCDCF@@CDABCF@BEDCFA@KBCFE@ED@DCHFD@FAHBHIJELAHGDB@FCF@FAFJLHDD@DBL@HBFAL@BAJBNELBFDNCFBR@FBBDH@HDDDJAHDDAHDNEDQL@FCNBLAFDH@REHFHBHF"], + "encodeOffsets": [ + [119261, 41752] + ] + }, + "properties": + { + "cp": [116.100000, 40.485325], + "name": "延庆区", + "childNum": 1 + } + } + ], + "UTF8Encoding": true + }); + + echarts.registerMap('怀柔区', {"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.28988,40.39168],[116.28725,40.39453],[116.28382,40.39541],[116.28601,40.39603],[116.28841,40.39934],[116.28974,40.40253],[116.28796,40.40507],[116.29161,40.40845],[116.28852,40.41344],[116.28996,40.41566],[116.28701,40.41629],[116.28949,40.41665],[116.28929,40.41802],[116.29194,40.41661],[116.29471,40.41769],[116.29688,40.4233],[116.29463,40.42638],[116.29446,40.4293],[116.29184,40.43161],[116.29067,40.43586],[116.292,40.43828],[116.28979,40.44091],[116.29186,40.44238],[116.29104,40.44474],[116.29313,40.44668],[116.29292,40.44886],[116.29489,40.45002],[116.29383,40.45284],[116.2971,40.45477],[116.29784,40.45705],[116.29932,40.45547],[116.30103,40.45628],[116.30089,40.45896],[116.30293,40.4628],[116.30685,40.4661],[116.30165,40.46811],[116.29952,40.47159],[116.29447,40.47569],[116.29314,40.47874],[116.29387,40.48068],[116.29185,40.4823],[116.2917,40.48531],[116.29716,40.48677],[116.30377,40.48582],[116.30934,40.49133],[116.31322,40.4918],[116.31447,40.49532],[116.32322,40.50015],[116.32776,40.49954],[116.33057,40.50075],[116.33665,40.49864],[116.34255,40.50046],[116.34605,40.49879],[116.35704,40.50194],[116.37374,40.49893],[116.37754,40.49683],[116.37626,40.49429],[116.37895,40.49071],[116.37636,40.49029],[116.3787,40.48866],[116.37639,40.48756],[116.37683,40.48574],[116.38025,40.48376],[116.38272,40.48436],[116.38411,40.4825],[116.38874,40.48413],[116.38575,40.4826],[116.38734,40.48204],[116.38835,40.47849],[116.38523,40.47877],[116.3854,40.47732],[116.38725,40.47511],[116.3899,40.47557],[116.38905,40.47392],[116.39103,40.47472],[116.3937,40.47256],[116.39844,40.47572],[116.39798,40.47675],[116.40305,40.47796],[116.40329,40.47991],[116.40736,40.48218],[116.41288,40.48136],[116.41666,40.48301],[116.41967,40.48211],[116.42097,40.4803],[116.42847,40.47813],[116.43483,40.47851],[116.44321,40.48181],[116.45031,40.48178],[116.44983,40.48092],[116.4519,40.4802],[116.45594,40.48091],[116.45597,40.48301],[116.45765,40.48488],[116.45662,40.48772],[116.4579,40.48844],[116.46557,40.48701],[116.46821,40.48493],[116.48353,40.48499],[116.48692,40.48352],[116.48734,40.48174],[116.49215,40.48102],[116.50832,40.48317],[116.5124,40.48764],[116.51875,40.49102],[116.51914,40.49661],[116.51195,40.50113],[116.51064,40.50393],[116.50707,40.50578],[116.50639,40.50821],[116.50046,40.51091],[116.49777,40.51809],[116.49207,40.51809],[116.48654,40.51522],[116.47659,40.51408],[116.47467,40.51523],[116.47435,40.51706],[116.47054,40.51895],[116.46407,40.51982],[116.46095,40.52437],[116.46758,40.53017],[116.47116,40.536],[116.47951,40.54122],[116.48082,40.54571],[116.48447,40.55028],[116.48452,40.55283],[116.49637,40.55517],[116.49993,40.56086],[116.50515,40.56258],[116.50767,40.56815],[116.50718,40.56962],[116.50944,40.57275],[116.51314,40.5728],[116.5175,40.57951],[116.52181,40.58117],[116.51968,40.58493],[116.52303,40.58164],[116.53158,40.59131],[116.53093,40.59589],[116.53596,40.59943],[116.5358,40.60142],[116.53398,40.60254],[116.53547,40.60422],[116.53291,40.60645],[116.53271,40.60848],[116.53347,40.61151],[116.53579,40.61205],[116.5365,40.61412],[116.53564,40.6157],[116.53894,40.61968],[116.53929,40.62561],[116.54391,40.62713],[116.55168,40.62522],[116.55904,40.6266],[116.56123,40.62856],[116.56898,40.62548],[116.57409,40.63167],[116.57391,40.63629],[116.56389,40.63692],[116.56293,40.63829],[116.55518,40.64088],[116.55389,40.64288],[116.55115,40.64283],[116.55033,40.6476],[116.54503,40.65011],[116.54411,40.65377],[116.54004,40.65669],[116.5354,40.65661],[116.53471,40.653],[116.5337,40.65493],[116.52721,40.65537],[116.52698,40.65854],[116.51838,40.66093],[116.52009,40.66411],[116.51565,40.66817],[116.51583,40.67121],[116.50607,40.67292],[116.50563,40.67482],[116.50172,40.67115],[116.49375,40.67407],[116.49094,40.67302],[116.48635,40.67479],[116.48337,40.6794],[116.48871,40.69182],[116.493,40.69325],[116.49666,40.69688],[116.50268,40.69731],[116.50296,40.70004],[116.50117,40.70202],[116.50088,40.70498],[116.50192,40.70679],[116.50454,40.70748],[116.50609,40.71082],[116.50274,40.71827],[116.50414,40.72017],[116.50733,40.72024],[116.51071,40.72616],[116.50952,40.73559],[116.51369,40.74146],[116.50666,40.74329],[116.50473,40.7459],[116.50164,40.74668],[116.5029,40.75663],[116.50026,40.76081],[116.49548,40.75974],[116.49141,40.76331],[116.48561,40.76488],[116.4804,40.77158],[116.47757,40.77062],[116.47495,40.77224],[116.47136,40.77121],[116.46545,40.77274],[116.46584,40.77452],[116.4607,40.78227],[116.46142,40.78855],[116.45947,40.79038],[116.45904,40.79594],[116.45657,40.79866],[116.45215,40.79807],[116.45033,40.80264],[116.44087,40.80793],[116.43991,40.80957],[116.44052,40.81371],[116.43824,40.81596],[116.4374,40.82039],[116.42215,40.8229],[116.41549,40.82907],[116.40766,40.83225],[116.40646,40.83335],[116.40548,40.84015],[116.40186,40.8468],[116.39931,40.85049],[116.39178,40.85484],[116.3897,40.86181],[116.38173,40.86346],[116.37488,40.87154],[116.36661,40.87664],[116.36597,40.88019],[116.36416,40.88217],[116.34494,40.89442],[116.34223,40.89988],[116.33444,40.90463],[116.33545,40.9129],[116.33421,40.92125],[116.33831,40.92479],[116.3399,40.92942],[116.34193,40.93133],[116.35013,40.93605],[116.35966,40.93628],[116.36508,40.94323],[116.37034,40.94366],[116.37608,40.94001],[116.37795,40.93657],[116.37993,40.93578],[116.3809,40.9305],[116.38413,40.92834],[116.38489,40.92285],[116.39127,40.91459],[116.39631,40.91127],[116.39853,40.90602],[116.40476,40.90573],[116.41372,40.89976],[116.41947,40.90247],[116.42472,40.90202],[116.43072,40.90345],[116.43661,40.89939],[116.44849,40.89993],[116.45074,40.90134],[116.46034,40.90019],[116.46434,40.89633],[116.47418,40.89606],[116.47761,40.90239],[116.47419,40.91332],[116.4736,40.91974],[116.46843,40.9251],[116.46721,40.93133],[116.46164,40.93243],[116.46195,40.93665],[116.45537,40.94543],[116.45482,40.94953],[116.44745,40.95384],[116.45329,40.96458],[116.45167,40.96973],[116.45353,40.97178],[116.45355,40.97515],[116.45595,40.97725],[116.45619,40.98132],[116.46413,40.9845],[116.47554,40.97841],[116.48561,40.98246],[116.49346,40.97792],[116.49674,40.97843],[116.50452,40.97592],[116.51628,40.9752],[116.51896,40.9778],[116.51957,40.98157],[116.52472,40.98107],[116.5282,40.98241],[116.53364,40.98584],[116.53563,40.98868],[116.54251,40.99029],[116.54722,40.98808],[116.5556,40.9875],[116.55927,40.98917],[116.56122,40.99345],[116.56332,40.99365],[116.56917,40.99164],[116.58804,40.97722],[116.59878,40.97473],[116.61406,40.98265],[116.61586,40.98702],[116.61533,40.99047],[116.61722,40.99809],[116.61451,41.00051],[116.61469,41.00285],[116.61702,41.00961],[116.61869,41.01118],[116.61864,41.01359],[116.62191,41.01576],[116.62168,41.0189],[116.62297,41.02087],[116.62078,41.02294],[116.62199,41.02438],[116.62202,41.03023],[116.61362,41.03721],[116.61442,41.04399],[116.61609,41.04496],[116.61788,41.04904],[116.61741,41.0518],[116.6157,41.05308],[116.62481,41.05475],[116.63086,41.0608],[116.63756,41.0607],[116.64094,41.05829],[116.64364,41.05973],[116.65114,41.05778],[116.65461,41.05579],[116.65702,41.05131],[116.66049,41.04921],[116.66521,41.04668],[116.67327,41.04637],[116.67699,41.04274],[116.68288,41.04178],[116.68963,41.04451],[116.69226,41.04082],[116.69135,41.0375],[116.69605,41.03075],[116.69574,41.02539],[116.69882,41.02082],[116.69453,41.0141],[116.69011,41.01187],[116.69169,41.0093],[116.69095,41.00725],[116.68307,41.00049],[116.68256,40.98602],[116.68531,40.98265],[116.68146,40.98091],[116.67793,40.97598],[116.67768,40.97145],[116.68292,40.9652],[116.68693,40.96321],[116.68938,40.95081],[116.69256,40.9494],[116.6965,40.94423],[116.70198,40.9412],[116.70279,40.93651],[116.70722,40.93404],[116.71228,40.93482],[116.71149,40.93183],[116.71389,40.92941],[116.72243,40.92728],[116.71711,40.9217],[116.71384,40.91479],[116.71342,40.91031],[116.71687,40.91017],[116.72368,40.90631],[116.72597,40.90371],[116.72615,40.90118],[116.73044,40.89776],[116.73631,40.89758],[116.74328,40.89438],[116.74645,40.89424],[116.75056,40.89155],[116.75926,40.89025],[116.75815,40.88587],[116.75833,40.88231],[116.75955,40.88146],[116.76213,40.88077],[116.76932,40.88299],[116.77235,40.87853],[116.77956,40.87712],[116.78553,40.87007],[116.78942,40.8683],[116.79067,40.86544],[116.79652,40.86236],[116.79657,40.8556],[116.79978,40.85213],[116.80241,40.85119],[116.8016,40.84521],[116.80249,40.84239],[116.80465,40.84093],[116.80662,40.84132],[116.81326,40.84831],[116.82073,40.84827],[116.82132,40.84616],[116.82376,40.8447],[116.82347,40.84269],[116.82601,40.84121],[116.83126,40.84258],[116.83688,40.84202],[116.84003,40.83889],[116.84819,40.83931],[116.84908,40.83672],[116.85633,40.83512],[116.86203,40.8284],[116.86119,40.82552],[116.86973,40.82166],[116.87588,40.82136],[116.87642,40.81873],[116.88066,40.81646],[116.88217,40.81418],[116.88215,40.80977],[116.88014,40.80452],[116.88695,40.80136],[116.88008,40.79734],[116.87409,40.79932],[116.87081,40.79446],[116.86535,40.79462],[116.86257,40.79219],[116.86499,40.79031],[116.8651,40.78762],[116.86747,40.78455],[116.85804,40.78305],[116.8568,40.77955],[116.85127,40.77892],[116.85042,40.77492],[116.84895,40.77428],[116.83934,40.77137],[116.83613,40.77201],[116.835,40.76882],[116.83738,40.76346],[116.83939,40.76304],[116.84008,40.76069],[116.83767,40.75979],[116.83669,40.75604],[116.83351,40.75451],[116.83179,40.7513],[116.82946,40.74992],[116.82112,40.74899],[116.81901,40.75045],[116.81427,40.75037],[116.80667,40.74651],[116.8003,40.74618],[116.79228,40.74907],[116.78376,40.75763],[116.78073,40.75151],[116.78629,40.73987],[116.78634,40.73603],[116.78855,40.73449],[116.79047,40.72926],[116.78918,40.72084],[116.78977,40.71538],[116.78909,40.71245],[116.78668,40.7103],[116.7871,40.70448],[116.7853,40.70153],[116.77956,40.70052],[116.77261,40.70354],[116.7684,40.70293],[116.76287,40.70643],[116.75616,40.70569],[116.75484,40.70276],[116.74867,40.70054],[116.74771,40.69713],[116.74252,40.69593],[116.7358,40.69167],[116.73032,40.69137],[116.72559,40.68911],[116.7254,40.68466],[116.7187,40.68245],[116.71834,40.68048],[116.71491,40.68001],[116.71324,40.67762],[116.71484,40.67466],[116.71323,40.66988],[116.71436,40.66618],[116.71164,40.66498],[116.70951,40.66137],[116.71289,40.65226],[116.71087,40.64413],[116.71219,40.64127],[116.70149,40.63292],[116.70184,40.62864],[116.70519,40.62687],[116.70596,40.62377],[116.7051,40.6205],[116.70105,40.62136],[116.69795,40.6184],[116.69939,40.61583],[116.70176,40.61544],[116.7026,40.61279],[116.70525,40.61207],[116.70777,40.60907],[116.70814,40.60685],[116.70572,40.60273],[116.70747,40.60095],[116.71123,40.60021],[116.71094,40.59775],[116.70845,40.59526],[116.71162,40.59189],[116.70896,40.59005],[116.71224,40.58509],[116.71277,40.58135],[116.71435,40.58029],[116.71488,40.57111],[116.71049,40.56869],[116.70985,40.56551],[116.70741,40.56426],[116.69934,40.56356],[116.69662,40.56588],[116.69411,40.56406],[116.68635,40.5645],[116.68059,40.56279],[116.67966,40.56129],[116.68237,40.5567],[116.66873,40.5575],[116.6697,40.55487],[116.66739,40.55485],[116.6658,40.55275],[116.66604,40.55117],[116.66771,40.55057],[116.66932,40.55154],[116.66922,40.5534],[116.6724,40.55464],[116.67685,40.55438],[116.67887,40.55659],[116.67768,40.55239],[116.68009,40.54989],[116.68226,40.5489],[116.69071,40.54946],[116.70214,40.54546],[116.70361,40.54331],[116.70147,40.54197],[116.70241,40.53814],[116.70695,40.53258],[116.71257,40.52996],[116.7172,40.52506],[116.71224,40.52205],[116.71141,40.51647],[116.70626,40.51471],[116.70457,40.512],[116.701,40.51038],[116.70089,40.50718],[116.69828,40.50158],[116.69827,40.49833],[116.69984,40.49621],[116.69836,40.49327],[116.69338,40.49078],[116.6927,40.48783],[116.69416,40.48547],[116.70453,40.47908],[116.69348,40.4817],[116.69341,40.47611],[116.69563,40.4745],[116.69454,40.47417],[116.69489,40.46836],[116.69556,40.46672],[116.6987,40.46805],[116.70617,40.45993],[116.70972,40.45802],[116.71681,40.45704],[116.71767,40.45972],[116.71934,40.46041],[116.7236,40.45854],[116.72207,40.45707],[116.72251,40.45455],[116.71963,40.45593],[116.7211,40.4534],[116.71926,40.45228],[116.71926,40.44864],[116.72347,40.44736],[116.72304,40.44626],[116.72585,40.44315],[116.72254,40.44088],[116.72601,40.4398],[116.72482,40.43835],[116.72098,40.44099],[116.71643,40.44171],[116.71809,40.43937],[116.72092,40.43884],[116.72354,40.43507],[116.72235,40.42384],[116.72556,40.41806],[116.73553,40.4206],[116.73323,40.41831],[116.7393,40.41527],[116.74156,40.41624],[116.74081,40.41444],[116.72439,40.4092],[116.72343,40.40532],[116.71955,40.40502],[116.71796,40.40178],[116.7158,40.40115],[116.71136,40.40411],[116.70994,40.40287],[116.71324,40.40157],[116.71323,40.39752],[116.70788,40.39488],[116.70669,40.39373],[116.70864,40.39349],[116.70812,40.39173],[116.71032,40.39177],[116.71022,40.39585],[116.71385,40.39581],[116.71172,40.38692],[116.71301,40.3867],[116.71245,40.38506],[116.71625,40.38412],[116.70711,40.37701],[116.70651,40.3738],[116.71408,40.36861],[116.71987,40.36904],[116.71809,40.36134],[116.72677,40.36118],[116.72577,40.35561],[116.72904,40.35562],[116.72749,40.34652],[116.72631,40.34665],[116.72569,40.34387],[116.72388,40.34404],[116.72297,40.33916],[116.73119,40.33902],[116.73129,40.33503],[116.74406,40.33914],[116.74465,40.33371],[116.75148,40.33575],[116.75381,40.33577],[116.75485,40.33441],[116.75346,40.33426],[116.75855,40.33388],[116.75801,40.32981],[116.75983,40.32953],[116.75969,40.32686],[116.76284,40.32671],[116.76276,40.3243],[116.76818,40.32494],[116.76519,40.3243],[116.76864,40.31781],[116.76833,40.31581],[116.77332,40.31598],[116.7736,40.31371],[116.77299,40.31507],[116.76288,40.31043],[116.75684,40.30259],[116.75445,40.30368],[116.74562,40.29289],[116.74488,40.2918],[116.74574,40.2914],[116.7428,40.28755],[116.73842,40.28439],[116.71084,40.25623],[116.70467,40.25711],[116.70458,40.25154],[116.70297,40.24972],[116.70058,40.25005],[116.69655,40.24808],[116.69506,40.24521],[116.69726,40.24321],[116.69071,40.24089],[116.68402,40.23428],[116.67782,40.23369],[116.67518,40.23951],[116.67419,40.2355],[116.67024,40.23486],[116.67021,40.23814],[116.66848,40.23749],[116.67154,40.24124],[116.6709,40.24498],[116.67333,40.24678],[116.67192,40.25113],[116.66918,40.2538],[116.66839,40.25716],[116.66948,40.25752],[116.66736,40.26028],[116.66715,40.26269],[116.66238,40.26135],[116.65706,40.26237],[116.65711,40.26078],[116.64852,40.26015],[116.64856,40.25827],[116.64308,40.25715],[116.64149,40.25947],[116.63704,40.25845],[116.63526,40.26146],[116.62366,40.26058],[116.6238,40.25266],[116.62242,40.2527],[116.62204,40.25046],[116.61067,40.252],[116.60591,40.25073],[116.60378,40.25132],[116.60462,40.25615],[116.60075,40.25897],[116.59965,40.26539],[116.59602,40.26674],[116.59577,40.26447],[116.59084,40.26414],[116.5884,40.26946],[116.58571,40.26851],[116.58515,40.26619],[116.58253,40.26837],[116.57021,40.26887],[116.57052,40.2731],[116.56536,40.27338],[116.56618,40.27802],[116.56294,40.27616],[116.55707,40.2759],[116.55217,40.27383],[116.55151,40.27569],[116.54627,40.27498],[116.54623,40.27622],[116.54091,40.27494],[116.53694,40.27717],[116.54009,40.26717],[116.53571,40.26137],[116.52501,40.2612],[116.52397,40.25752],[116.5092,40.25806],[116.50926,40.2611],[116.50183,40.26298],[116.49325,40.26249],[116.48796,40.26468],[116.48428,40.26763],[116.48401,40.27591],[116.4788,40.28003],[116.47153,40.2803],[116.46957,40.28141],[116.46963,40.283],[116.46484,40.28551],[116.46319,40.28482],[116.46031,40.2871],[116.45728,40.28707],[116.45533,40.28485],[116.44956,40.28562],[116.45096,40.29305],[116.44882,40.29543],[116.44955,40.29726],[116.44858,40.29997],[116.44376,40.30246],[116.44923,40.30693],[116.45199,40.31197],[116.45575,40.31449],[116.45518,40.31634],[116.45024,40.3185],[116.44918,40.32112],[116.44368,40.32272],[116.43992,40.32905],[116.44061,40.33139],[116.43843,40.33318],[116.43422,40.32912],[116.42791,40.32921],[116.42437,40.33127],[116.41706,40.32984],[116.40899,40.33321],[116.40803,40.33523],[116.40377,40.33471],[116.39951,40.33595],[116.3965,40.33482],[116.39143,40.33839],[116.38654,40.33765],[116.38457,40.33905],[116.37544,40.33785],[116.37476,40.33611],[116.3759,40.33384],[116.37012,40.33322],[116.36518,40.33095],[116.36503,40.33236],[116.36828,40.3349],[116.36841,40.34009],[116.36991,40.34241],[116.36451,40.34911],[116.36711,40.35035],[116.36968,40.35636],[116.36392,40.35902],[116.36106,40.35782],[116.36039,40.35961],[116.35564,40.35682],[116.34886,40.35643],[116.34946,40.36045],[116.3528,40.36426],[116.35156,40.36519],[116.35754,40.36407],[116.35851,40.36463],[116.35724,40.36564],[116.35925,40.36551],[116.36004,40.36682],[116.35689,40.36868],[116.35537,40.37137],[116.34507,40.37316],[116.33781,40.37955],[116.33517,40.37973],[116.33263,40.38287],[116.32398,40.3873],[116.32078,40.38685],[116.31299,40.38945],[116.30268,40.38748],[116.29969,40.38508],[116.29558,40.38444],[116.29524,40.39082],[116.29376,40.39242],[116.29043,40.39286],[116.28988,40.39168]]]},"properties":{"name":"怀柔区","adcode":"110116","telecode":"010","level":"district","parent":{"name":"北京市市辖区","level":"city","adcode":"110100","center":{"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG:6.3:4326"}},"type":"Point","coordinates":[116.405285,39.904989]}},"center":{"lng":116.637122,"lat":40.324272}}}]}); + echarts.registerMap('东城区', {"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.44364,39.87285],[116.44258,39.87188],[116.42321,39.87283],[116.41366,39.87114],[116.41367,39.86982],[116.41583,39.86982],[116.41523,39.86706],[116.41676,39.86689],[116.41668,39.86574],[116.41583,39.86577],[116.41582,39.8635],[116.41396,39.86404],[116.41414,39.86014],[116.41243,39.86011],[116.41245,39.85894],[116.40686,39.85996],[116.3955,39.85868],[116.39496,39.86273],[116.39299,39.86231],[116.39298,39.86374],[116.39124,39.86374],[116.39127,39.86544],[116.3877,39.86539],[116.38789,39.86738],[116.38257,39.86607],[116.37713,39.86669],[116.38056,39.86794],[116.38059,39.87115],[116.3991,39.8722],[116.3977,39.89858],[116.39602,39.89971],[116.39556,39.90799],[116.39225,39.90788],[116.39268,39.91122],[116.39184,39.91123],[116.39218,39.92243],[116.39946,39.92357],[116.39923,39.92813],[116.3967,39.92831],[116.39617,39.94006],[116.39427,39.94063],[116.39373,39.95737],[116.38678,39.95702],[116.38766,39.96092],[116.38948,39.96104],[116.38951,39.96315],[116.40787,39.96218],[116.40751,39.974],[116.40936,39.97404],[116.40879,39.97146],[116.4111,39.97145],[116.41142,39.96493],[116.41414,39.96381],[116.4142,39.96218],[116.42487,39.96229],[116.42543,39.95916],[116.43051,39.95925],[116.43062,39.95656],[116.42901,39.95727],[116.4302,39.95179],[116.42948,39.95016],[116.4367,39.94925],[116.43542,39.95212],[116.43909,39.95219],[116.43926,39.94954],[116.44025,39.94973],[116.44046,39.94848],[116.44216,39.94911],[116.44133,39.94711],[116.43865,39.94652],[116.44128,39.94511],[116.44433,39.94625],[116.44727,39.94516],[116.44469,39.94124],[116.44368,39.92867],[116.43427,39.92954],[116.43648,39.90205],[116.44872,39.90324],[116.44907,39.90125],[116.44588,39.90103],[116.44716,39.89419],[116.45087,39.89409],[116.45087,39.89287],[116.45239,39.89287],[116.45094,39.89024],[116.4459,39.89152],[116.44596,39.89015],[116.44407,39.89004],[116.44564,39.8789],[116.44364,39.87285]]]},"properties":{"name":"东城区","adcode":"110101","telecode":"010","level":"district","parent":{"name":"北京市市辖区","level":"city","adcode":"110100","center":{"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG:6.3:4326"}},"type":"Point","coordinates":[116.405285,39.904989]}},"center":{"lng":116.418757,"lat":39.917544}}}]}); + echarts.registerMap('丰台区', {"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.16703,39.88876],[116.16887,39.88718],[116.1699,39.88821],[116.17093,39.88549],[116.18085,39.88238],[116.1917,39.88152],[116.19552,39.88343],[116.19943,39.88328],[116.20569,39.87892],[116.20812,39.87413],[116.21209,39.87467],[116.2109,39.87808],[116.2191,39.87671],[116.21953,39.88134],[116.22278,39.88139],[116.22295,39.88399],[116.22773,39.88384],[116.22783,39.88977],[116.2349,39.88962],[116.23367,39.89217],[116.23788,39.89198],[116.23782,39.89383],[116.23925,39.89386],[116.23981,39.89533],[116.2423,39.8936],[116.24809,39.89589],[116.25656,39.89614],[116.25828,39.89516],[116.25909,39.89667],[116.29498,39.89649],[116.295,39.88674],[116.29634,39.88664],[116.29923,39.88957],[116.30344,39.88905],[116.30259,39.8909],[116.30657,39.89089],[116.30724,39.89241],[116.3045,39.89259],[116.31319,39.89678],[116.32581,39.89679],[116.32669,39.88973],[116.32419,39.88968],[116.32442,39.88705],[116.32345,39.88705],[116.32265,39.8816],[116.32169,39.88159],[116.32134,39.875],[116.32636,39.87685],[116.33453,39.87513],[116.34223,39.87613],[116.34428,39.87365],[116.34948,39.8736],[116.34904,39.87001],[116.35057,39.8687],[116.38059,39.87115],[116.38056,39.86794],[116.37713,39.86669],[116.38257,39.86607],[116.38789,39.86738],[116.3877,39.86539],[116.39127,39.86544],[116.39124,39.86374],[116.39298,39.86374],[116.39299,39.86231],[116.39496,39.86273],[116.3955,39.85868],[116.40686,39.85996],[116.41245,39.85894],[116.41243,39.86011],[116.41414,39.86014],[116.41396,39.86404],[116.41582,39.8635],[116.41583,39.86577],[116.41668,39.86574],[116.41676,39.86689],[116.41523,39.86706],[116.41583,39.86982],[116.41367,39.86982],[116.41366,39.87114],[116.42321,39.87283],[116.44258,39.87188],[116.44405,39.87283],[116.44478,39.87054],[116.44298,39.87036],[116.44296,39.86609],[116.44425,39.86609],[116.44636,39.86086],[116.4466,39.86278],[116.44819,39.86364],[116.45422,39.85938],[116.45607,39.85968],[116.45607,39.86122],[116.46056,39.85777],[116.46156,39.85899],[116.46331,39.85623],[116.46779,39.85601],[116.46772,39.85259],[116.46568,39.85342],[116.46309,39.85023],[116.46097,39.85085],[116.46031,39.84862],[116.45801,39.84914],[116.45796,39.8507],[116.45613,39.85014],[116.45114,39.85202],[116.4518,39.85009],[116.45023,39.85],[116.45049,39.8487],[116.44598,39.84833],[116.4467,39.84426],[116.44404,39.84428],[116.44381,39.84249],[116.44355,39.84373],[116.44232,39.84368],[116.44233,39.84127],[116.44059,39.83965],[116.43856,39.83935],[116.43673,39.84133],[116.43597,39.83968],[116.43679,39.83923],[116.43324,39.83721],[116.43206,39.83293],[116.42518,39.83272],[116.42522,39.83005],[116.42101,39.82978],[116.42114,39.82697],[116.42008,39.82662],[116.41578,39.82943],[116.41443,39.82428],[116.41843,39.82291],[116.418,39.82043],[116.41931,39.82012],[116.41975,39.81537],[116.41625,39.81489],[116.41374,39.81615],[116.41315,39.81527],[116.41294,39.81647],[116.41016,39.81706],[116.41001,39.81134],[116.41527,39.81253],[116.41843,39.80837],[116.41973,39.80839],[116.41929,39.80985],[116.42245,39.81043],[116.42423,39.80669],[116.42572,39.80666],[116.42572,39.80536],[116.42409,39.80537],[116.4241,39.80356],[116.42939,39.80359],[116.42928,39.79409],[116.42104,39.79413],[116.42178,39.7896],[116.4206,39.78953],[116.42025,39.78744],[116.39602,39.78674],[116.3979,39.78107],[116.39889,39.76586],[116.39189,39.76527],[116.39065,39.78046],[116.38555,39.78021],[116.38561,39.77885],[116.37922,39.7794],[116.37849,39.78564],[116.36758,39.78497],[116.36575,39.79415],[116.36819,39.79482],[116.36703,39.79982],[116.35683,39.80047],[116.35571,39.80566],[116.34175,39.80759],[116.34013,39.80216],[116.32823,39.80142],[116.32683,39.79838],[116.32288,39.79839],[116.32178,39.78363],[116.31797,39.78344],[116.31069,39.77206],[116.31087,39.76997],[116.30706,39.77008],[116.30155,39.77494],[116.30309,39.77565],[116.30198,39.77781],[116.30019,39.77736],[116.29571,39.7918],[116.29275,39.79086],[116.29116,39.79328],[116.29608,39.79557],[116.29482,39.79713],[116.28918,39.79589],[116.28724,39.79911],[116.27423,39.79693],[116.26219,39.79277],[116.26168,39.79542],[116.25929,39.79763],[116.2568,39.79733],[116.25639,39.79413],[116.25153,39.79306],[116.2523,39.79638],[116.251,39.80196],[116.2536,39.80724],[116.25254,39.81222],[116.2443,39.81856],[116.24259,39.8258],[116.22891,39.82736],[116.22721,39.82505],[116.21413,39.8247],[116.21417,39.81963],[116.21676,39.81691],[116.21044,39.8116],[116.20746,39.81105],[116.20805,39.80635],[116.20642,39.80554],[116.20656,39.80315],[116.20356,39.80201],[116.20173,39.79939],[116.2017,39.78531],[116.20039,39.77815],[116.19445,39.7785],[116.1944,39.78059],[116.19073,39.78039],[116.18801,39.78178],[116.18662,39.78023],[116.18336,39.7802],[116.18385,39.78138],[116.18234,39.78151],[116.18287,39.78388],[116.16972,39.78428],[116.16612,39.77504],[116.1627,39.7692],[116.16127,39.76965],[116.15992,39.76749],[116.15786,39.7685],[116.15636,39.76683],[116.15055,39.76656],[116.15067,39.76754],[116.14782,39.76738],[116.14672,39.76865],[116.14717,39.76575],[116.14469,39.7657],[116.14344,39.76438],[116.14078,39.76564],[116.13956,39.76435],[116.13781,39.7673],[116.13684,39.76582],[116.13343,39.76633],[116.12847,39.76241],[116.12434,39.76173],[116.12366,39.76555],[116.12225,39.7654],[116.12301,39.76159],[116.12146,39.76162],[116.12099,39.76537],[116.1189,39.76616],[116.11934,39.76832],[116.1179,39.76998],[116.11956,39.77131],[116.12049,39.76969],[116.12046,39.77322],[116.11981,39.77186],[116.11728,39.77272],[116.12079,39.77836],[116.12278,39.77928],[116.12309,39.77686],[116.12436,39.77675],[116.12746,39.77905],[116.13257,39.77862],[116.13099,39.78008],[116.13448,39.78042],[116.13053,39.78143],[116.13122,39.7835],[116.128,39.78385],[116.12789,39.78481],[116.12218,39.78489],[116.12179,39.78601],[116.12075,39.78486],[116.11965,39.78993],[116.11672,39.78951],[116.11454,39.7907],[116.11357,39.78805],[116.11308,39.78889],[116.10636,39.78862],[116.10701,39.78533],[116.10137,39.78577],[116.10146,39.78287],[116.1001,39.7857],[116.09754,39.7843],[116.09843,39.78323],[116.09729,39.78209],[116.09219,39.78174],[116.09117,39.78444],[116.0898,39.78257],[116.09015,39.78709],[116.0882,39.79519],[116.08979,39.79777],[116.0882,39.79999],[116.08874,39.80273],[116.08721,39.80459],[116.08681,39.81114],[116.08694,39.81487],[116.08976,39.81571],[116.08691,39.81793],[116.089,39.81821],[116.08822,39.82692],[116.08973,39.82705],[116.08974,39.82973],[116.08575,39.83217],[116.08347,39.82824],[116.08166,39.83217],[116.07784,39.83238],[116.07811,39.83409],[116.0762,39.83701],[116.06777,39.8413],[116.0615,39.8419],[116.05464,39.84596],[116.05656,39.85096],[116.06032,39.85332],[116.06233,39.85236],[116.07099,39.85371],[116.07019,39.86042],[116.06735,39.86576],[116.07045,39.86845],[116.07833,39.87031],[116.08718,39.86616],[116.09101,39.86647],[116.09583,39.86904],[116.10177,39.86769],[116.10415,39.86884],[116.10359,39.87047],[116.10543,39.87254],[116.11225,39.87324],[116.11974,39.87748],[116.12591,39.87795],[116.13168,39.88127],[116.14074,39.88424],[116.14761,39.88528],[116.15098,39.88405],[116.1541,39.88666],[116.15364,39.88877],[116.16336,39.88689],[116.16703,39.88876]]]},"properties":{"name":"丰台区","adcode":"110106","telecode":"010","level":"district","parent":{"name":"北京市市辖区","level":"city","adcode":"110100","center":{"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG:6.3:4326"}},"type":"Point","coordinates":[116.405285,39.904989]}},"center":{"lng":116.286968,"lat":39.863642}}}]}); + echarts.registerMap('大兴区',{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.53493,39.82482],[116.53974,39.82371],[116.53959,39.82156],[116.53573,39.82017],[116.53618,39.81552],[116.53838,39.81514],[116.54063,39.81184],[116.54177,39.80415],[116.54141,39.80303],[116.53751,39.80255],[116.53756,39.80029],[116.53511,39.80019],[116.53758,39.79669],[116.53402,39.79577],[116.53548,39.79352],[116.53099,39.79174],[116.53252,39.79029],[116.53123,39.79001],[116.53293,39.78833],[116.53286,39.78635],[116.53795,39.78131],[116.5305,39.77867],[116.53578,39.76998],[116.54248,39.77071],[116.54194,39.77141],[116.54452,39.77224],[116.54575,39.7687],[116.53647,39.76853],[116.53704,39.76608],[116.53992,39.76604],[116.5406,39.76103],[116.52775,39.76207],[116.52285,39.7692],[116.52054,39.76564],[116.52516,39.7624],[116.52266,39.7497],[116.53204,39.74863],[116.52755,39.74331],[116.53232,39.74304],[116.53248,39.74175],[116.53624,39.74066],[116.53995,39.74158],[116.53799,39.73807],[116.53241,39.73962],[116.53215,39.73871],[116.53184,39.73002],[116.53782,39.72805],[116.53697,39.72152],[116.53461,39.71807],[116.52936,39.71981],[116.52677,39.7172],[116.53256,39.71528],[116.53055,39.71327],[116.53567,39.71188],[116.5459,39.71513],[116.57327,39.7145],[116.57347,39.70912],[116.57989,39.71024],[116.5812,39.71252],[116.59015,39.71334],[116.5902,39.71152],[116.60181,39.71285],[116.60402,39.71475],[116.60456,39.71873],[116.60915,39.71937],[116.60885,39.72128],[116.61266,39.72202],[116.61299,39.72386],[116.61478,39.7239],[116.61481,39.72188],[116.61573,39.72196],[116.61625,39.72558],[116.62187,39.72583],[116.62164,39.72807],[116.62812,39.72775],[116.63137,39.72481],[116.6312,39.72297],[116.63763,39.72394],[116.6385,39.71716],[116.64459,39.70964],[116.653,39.70862],[116.6531,39.70383],[116.64792,39.70358],[116.64866,39.70087],[116.64625,39.70045],[116.64709,39.69479],[116.65152,39.69447],[116.65133,39.68787],[116.6535,39.68629],[116.6581,39.68615],[116.65817,39.68857],[116.6624,39.68855],[116.66288,39.68647],[116.66656,39.68711],[116.66957,39.68364],[116.66602,39.67968],[116.6662,39.67643],[116.66834,39.67656],[116.66857,39.6746],[116.67521,39.67624],[116.67912,39.67623],[116.68078,39.6749],[116.68556,39.67688],[116.6927,39.6768],[116.69373,39.67651],[116.69354,39.67494],[116.70377,39.67415],[116.70494,39.66789],[116.70227,39.659],[116.70288,39.64992],[116.70668,39.64178],[116.71053,39.63793],[116.71042,39.63969],[116.71264,39.64025],[116.7235,39.63903],[116.72438,39.6349],[116.72193,39.63478],[116.72278,39.63114],[116.72139,39.62942],[116.72517,39.6269],[116.72552,39.62407],[116.72178,39.62372],[116.72186,39.62176],[116.71616,39.62156],[116.71534,39.61996],[116.71006,39.61806],[116.70847,39.61936],[116.70599,39.61902],[116.70534,39.62146],[116.70059,39.62102],[116.7022,39.61417],[116.7039,39.61367],[116.70432,39.61098],[116.70257,39.61042],[116.71348,39.60551],[116.71397,39.60288],[116.71549,39.60283],[116.71541,39.60403],[116.718,39.60327],[116.71832,39.60108],[116.72105,39.60058],[116.71851,39.60025],[116.72262,39.5994],[116.72471,39.59521],[116.7246,39.59804],[116.72609,39.59542],[116.72632,39.59781],[116.72706,39.59305],[116.72473,39.59241],[116.72354,39.59505],[116.72391,39.59209],[116.72294,39.59278],[116.72003,39.59035],[116.7154,39.59026],[116.7116,39.58799],[116.7051,39.58798],[116.70269,39.58905],[116.70146,39.59155],[116.70069,39.59096],[116.69913,39.59546],[116.69642,39.5954],[116.69395,39.60171],[116.68891,39.5984],[116.6887,39.59983],[116.68467,39.60058],[116.68494,39.59942],[116.6828,39.5984],[116.68237,39.60072],[116.68023,39.59963],[116.68021,39.60122],[116.67013,39.60333],[116.67003,39.60491],[116.66509,39.60539],[116.6577,39.60344],[116.6568,39.60277],[116.65767,39.60075],[116.65526,39.59968],[116.6503,39.59994],[116.64961,39.6038],[116.64953,39.59985],[116.64653,39.59912],[116.64554,39.60208],[116.643,39.60173],[116.64232,39.60468],[116.64208,39.60364],[116.63836,39.60339],[116.63837,39.60493],[116.63559,39.60482],[116.63541,39.59993],[116.62834,39.59956],[116.62383,39.60169],[116.62052,39.60167],[116.62019,39.6069],[116.61686,39.6073],[116.61666,39.61409],[116.61318,39.6138],[116.61176,39.61888],[116.60779,39.6197],[116.60789,39.6247],[116.60217,39.62454],[116.60215,39.62268],[116.5994,39.62261],[116.60012,39.61966],[116.59531,39.61805],[116.59357,39.61859],[116.59267,39.62157],[116.59288,39.61939],[116.59199,39.6213],[116.58952,39.61944],[116.58862,39.62196],[116.58289,39.62312],[116.58559,39.62368],[116.57921,39.62349],[116.57939,39.61966],[116.56593,39.61978],[116.56599,39.61614],[116.56791,39.61568],[116.56963,39.61176],[116.5661,39.61113],[116.56793,39.60833],[116.56631,39.6079],[116.56703,39.60533],[116.56168,39.60316],[116.56229,39.60172],[116.55713,39.6015],[116.5576,39.59969],[116.55349,39.59949],[116.5539,39.59804],[116.54579,39.59574],[116.54418,39.59652],[116.54377,39.59923],[116.54545,39.59947],[116.54523,39.6011],[116.54412,39.60361],[116.54293,39.60338],[116.5435,39.60181],[116.54087,39.60142],[116.54248,39.5973],[116.54122,39.59741],[116.54181,39.59348],[116.53592,39.59473],[116.5359,39.59641],[116.53086,39.59672],[116.53061,39.59877],[116.52766,39.59897],[116.52804,39.59714],[116.52445,39.59654],[116.52504,39.59381],[116.52215,39.59313],[116.52299,39.59003],[116.52126,39.59024],[116.52212,39.58628],[116.52318,39.58618],[116.52272,39.58313],[116.5197,39.58173],[116.52039,39.57715],[116.52614,39.57728],[116.52735,39.57319],[116.52038,39.57191],[116.52099,39.56993],[116.5183,39.56943],[116.51939,39.56649],[116.51156,39.5655],[116.51184,39.56316],[116.51008,39.56294],[116.51057,39.5605],[116.50806,39.56025],[116.50845,39.55106],[116.50353,39.54999],[116.49555,39.55074],[116.49536,39.54963],[116.4936,39.54962],[116.49341,39.55066],[116.48977,39.55026],[116.48947,39.55347],[116.48237,39.55196],[116.48176,39.5535],[116.47337,39.55309],[116.47295,39.55443],[116.47094,39.5546],[116.473,39.54963],[116.47531,39.54955],[116.47611,39.54802],[116.47514,39.54577],[116.47802,39.5432],[116.47888,39.53922],[116.47643,39.53836],[116.47818,39.53549],[116.47716,39.53441],[116.47314,39.5361],[116.47218,39.5347],[116.46882,39.53436],[116.46805,39.53155],[116.46459,39.53162],[116.46455,39.52763],[116.45995,39.52676],[116.4596,39.52833],[116.45384,39.52866],[116.45372,39.52648],[116.44099,39.52731],[116.43681,39.52635],[116.43816,39.52305],[116.43987,39.52336],[116.44088,39.52001],[116.43923,39.51948],[116.44037,39.51628],[116.44274,39.51618],[116.44383,39.50988],[116.43301,39.50743],[116.4317,39.51054],[116.42463,39.50973],[116.42312,39.51634],[116.42494,39.51676],[116.42509,39.51818],[116.42386,39.51847],[116.42405,39.52273],[116.42213,39.52266],[116.42147,39.52511],[116.41125,39.52467],[116.41125,39.52553],[116.40462,39.52605],[116.40689,39.52657],[116.40554,39.52795],[116.4017,39.52802],[116.40283,39.52537],[116.40282,39.51439],[116.40737,39.51204],[116.40857,39.50801],[116.41378,39.50801],[116.41485,39.50577],[116.41873,39.50639],[116.4229,39.4966],[116.41792,39.49598],[116.41582,39.48823],[116.41353,39.48844],[116.41399,39.48654],[116.41159,39.4851],[116.41254,39.48172],[116.42219,39.48408],[116.42727,39.48795],[116.42996,39.48133],[116.42542,39.48139],[116.42541,39.48029],[116.42834,39.47623],[116.42954,39.47628],[116.4295,39.47751],[116.43364,39.47818],[116.43625,39.48292],[116.44415,39.4822],[116.4438,39.47794],[116.44594,39.47785],[116.44407,39.47887],[116.44699,39.47929],[116.44876,39.47629],[116.44865,39.46512],[116.45398,39.45752],[116.45609,39.45894],[116.45468,39.45331],[116.45063,39.45259],[116.45035,39.44853],[116.44445,39.44786],[116.44441,39.4467],[116.44152,39.44578],[116.43724,39.44595],[116.43439,39.44276],[116.42475,39.44714],[116.40895,39.45026],[116.39978,39.45005],[116.3919,39.4529],[116.38778,39.45053],[116.3678,39.45164],[116.36726,39.45283],[116.36303,39.4531],[116.36297,39.45566],[116.36205,39.45484],[116.35113,39.45553],[116.35017,39.45291],[116.34553,39.45367],[116.34447,39.45577],[116.33666,39.45609],[116.3285,39.46048],[116.3256,39.46296],[116.32509,39.46616],[116.32055,39.46794],[116.31994,39.47343],[116.31417,39.47668],[116.31271,39.48056],[116.30696,39.48502],[116.3075,39.48695],[116.30563,39.4895],[116.28608,39.49237],[116.28543,39.49417],[116.28338,39.49453],[116.28251,39.49096],[116.28003,39.49111],[116.27563,39.49519],[116.26932,39.4955],[116.25794,39.50053],[116.25522,39.50843],[116.24582,39.51489],[116.24463,39.51754],[116.24677,39.51998],[116.24398,39.52189],[116.24352,39.52423],[116.24648,39.5253],[116.24623,39.5273],[116.24835,39.52971],[116.24561,39.53014],[116.24635,39.53398],[116.24485,39.53411],[116.24652,39.53978],[116.24415,39.54633],[116.24511,39.54721],[116.24356,39.54912],[116.24571,39.55046],[116.2425,39.55297],[116.24563,39.55515],[116.24618,39.55716],[116.24515,39.55842],[116.24301,39.55837],[116.24065,39.56409],[116.23468,39.56394],[116.23646,39.56839],[116.22937,39.56547],[116.22787,39.56606],[116.22581,39.56815],[116.22117,39.57881],[116.22508,39.58409],[116.22636,39.59169],[116.2226,39.59393],[116.22263,39.59916],[116.21807,39.60811],[116.21803,39.61404],[116.21963,39.61966],[116.21549,39.64305],[116.2175,39.64772],[116.21699,39.65158],[116.22316,39.66306],[116.22156,39.66842],[116.22565,39.67358],[116.22545,39.67502],[116.22154,39.67706],[116.22123,39.67845],[116.23094,39.69236],[116.23444,39.7044],[116.232,39.70669],[116.23663,39.71287],[116.24503,39.71841],[116.24577,39.72408],[116.24846,39.72803],[116.24733,39.73019],[116.24826,39.73213],[116.24625,39.73435],[116.24394,39.74166],[116.25223,39.74961],[116.25248,39.75868],[116.25442,39.76324],[116.25248,39.77175],[116.25341,39.77477],[116.25256,39.77685],[116.25381,39.77907],[116.2516,39.78252],[116.25153,39.79306],[116.25639,39.79413],[116.2568,39.79733],[116.25929,39.79763],[116.26168,39.79542],[116.26219,39.79277],[116.27423,39.79693],[116.28724,39.79911],[116.28918,39.79589],[116.29482,39.79713],[116.29608,39.79557],[116.29116,39.79328],[116.29275,39.79086],[116.29571,39.7918],[116.2987,39.78028],[116.30019,39.77736],[116.30198,39.77781],[116.30309,39.77565],[116.30155,39.77494],[116.30706,39.77008],[116.31087,39.76997],[116.31069,39.77206],[116.31797,39.78344],[116.32178,39.78363],[116.32288,39.79839],[116.32683,39.79838],[116.32823,39.80142],[116.34013,39.80216],[116.34175,39.80759],[116.35571,39.80566],[116.35683,39.80047],[116.36703,39.79982],[116.36819,39.79482],[116.36575,39.79415],[116.36758,39.78497],[116.37849,39.78564],[116.37922,39.7794],[116.38561,39.77885],[116.38555,39.78021],[116.39065,39.78046],[116.39189,39.76527],[116.39889,39.76586],[116.3979,39.78107],[116.39602,39.78674],[116.42025,39.78744],[116.4206,39.78953],[116.42178,39.7896],[116.42104,39.79413],[116.42928,39.79409],[116.42939,39.80359],[116.4241,39.80356],[116.42409,39.80537],[116.42572,39.80536],[116.42572,39.80666],[116.42423,39.80669],[116.42245,39.81043],[116.41929,39.80985],[116.41973,39.80839],[116.41843,39.80837],[116.41527,39.81253],[116.41001,39.81134],[116.41016,39.81706],[116.41294,39.81647],[116.41315,39.81527],[116.41374,39.81615],[116.41625,39.81489],[116.41975,39.81537],[116.41931,39.82012],[116.418,39.82043],[116.41843,39.82291],[116.41443,39.82428],[116.41578,39.82943],[116.42008,39.82662],[116.42114,39.82697],[116.42101,39.82978],[116.42522,39.83005],[116.42522,39.8319],[116.43049,39.83187],[116.43006,39.83012],[116.43698,39.83066],[116.43668,39.82743],[116.44134,39.82742],[116.44151,39.82913],[116.44591,39.82669],[116.44285,39.82317],[116.44391,39.82095],[116.45399,39.82264],[116.4623,39.81647],[116.46332,39.81435],[116.46876,39.81446],[116.47425,39.80977],[116.48525,39.81273],[116.48563,39.81688],[116.48974,39.81665],[116.48995,39.81884],[116.49267,39.81854],[116.49296,39.82032],[116.49335,39.81908],[116.49536,39.8188],[116.49523,39.81617],[116.49772,39.81707],[116.49821,39.8157],[116.5058,39.81786],[116.50279,39.819],[116.50947,39.82156],[116.50944,39.82336],[116.51122,39.82351],[116.51061,39.82764],[116.51366,39.82773],[116.51463,39.83042],[116.52536,39.82975],[116.5255,39.82702],[116.5316,39.82664],[116.53166,39.8251],[116.53493,39.82482]]]},"properties":{"name":"大兴区","adcode":"110115","telecode":"010","level":"district","parent":{"name":"北京市市辖区","level":"city","adcode":"110100","center":{"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG:6.3:4326"}},"type":"Point","coordinates":[116.405285,39.904989]}},"center":{"lng":116.338033,"lat":39.728908}}}]}); + echarts.registerMap('密云区', {"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.88697,40.80107],[116.88908,40.79835],[116.89578,40.79749],[116.89669,40.79643],[116.89495,40.79068],[116.89606,40.78666],[116.8953,40.78235],[116.89465,40.78157],[116.89321,40.78398],[116.89135,40.78379],[116.89245,40.78032],[116.8952,40.78037],[116.8986,40.77674],[116.90456,40.77729],[116.92514,40.77285],[116.92244,40.7704],[116.92257,40.76875],[116.92807,40.75653],[116.92304,40.75207],[116.92655,40.74489],[116.93078,40.74429],[116.93571,40.74077],[116.9407,40.73978],[116.94271,40.72986],[116.95203,40.72424],[116.95543,40.72445],[116.95613,40.72258],[116.96312,40.71854],[116.967,40.71453],[116.96551,40.70918],[116.96962,40.70636],[116.97711,40.70577],[116.97994,40.70283],[116.98818,40.70316],[116.99067,40.70111],[117.00387,40.69673],[117.00604,40.69458],[117.01342,40.69408],[117.01894,40.69606],[117.02009,40.69499],[117.02785,40.69435],[117.03134,40.69214],[117.03594,40.69483],[117.03622,40.69753],[117.04449,40.70036],[117.0549,40.6998],[117.05835,40.70153],[117.06431,40.70155],[117.06656,40.70045],[117.07274,40.70129],[117.0768,40.70003],[117.08116,40.70262],[117.08605,40.70205],[117.09556,40.70572],[117.11065,40.70824],[117.11698,40.70017],[117.12879,40.70091],[117.13823,40.69716],[117.14875,40.69899],[117.15332,40.69682],[117.15915,40.69626],[117.1645,40.69966],[117.16976,40.69892],[117.17723,40.69335],[117.18094,40.69409],[117.1835,40.69762],[117.18553,40.69597],[117.19309,40.69651],[117.19692,40.69435],[117.20237,40.69558],[117.20713,40.695],[117.21007,40.69218],[117.21733,40.69197],[117.21871,40.68948],[117.23288,40.68378],[117.23526,40.67972],[117.24163,40.67666],[117.2614,40.68115],[117.2679,40.67654],[117.27317,40.67022],[117.27796,40.66843],[117.27861,40.66447],[117.28625,40.66093],[117.31564,40.65887],[117.31795,40.65776],[117.33672,40.66328],[117.33763,40.66445],[117.33687,40.66728],[117.34266,40.67364],[117.35976,40.67393],[117.37149,40.67995],[117.37878,40.67893],[117.387,40.68418],[117.39721,40.68378],[117.40923,40.68729],[117.41406,40.68591],[117.41863,40.68705],[117.42164,40.68546],[117.42644,40.6853],[117.43271,40.68163],[117.43734,40.68359],[117.43974,40.68176],[117.44223,40.67661],[117.44557,40.67612],[117.45382,40.67773],[117.45376,40.67667],[117.45809,40.67673],[117.466,40.67341],[117.4805,40.67726],[117.4824,40.67903],[117.48473,40.67709],[117.49583,40.67421],[117.50032,40.67018],[117.50293,40.66968],[117.51428,40.66107],[117.51391,40.6562],[117.50282,40.65308],[117.5051,40.64662],[117.50198,40.64451],[117.50095,40.64225],[117.50174,40.63981],[117.50043,40.63621],[117.4908,40.6362],[117.48615,40.6335],[117.48464,40.6349],[117.47848,40.6351],[117.47558,40.6399],[117.4757,40.64434],[117.47249,40.64464],[117.46767,40.65023],[117.46405,40.64868],[117.46168,40.65058],[117.46375,40.6527],[117.46201,40.65307],[117.44891,40.65148],[117.45647,40.64916],[117.45145,40.64657],[117.45402,40.64254],[117.45161,40.64043],[117.45265,40.63741],[117.45148,40.63218],[117.44767,40.63054],[117.44824,40.62781],[117.44228,40.62797],[117.4387,40.62585],[117.43156,40.6256],[117.43176,40.62754],[117.42962,40.62869],[117.43178,40.62968],[117.42834,40.63237],[117.42888,40.63764],[117.42526,40.63807],[117.42119,40.63543],[117.42054,40.62923],[117.42404,40.62437],[117.42453,40.62009],[117.42298,40.6183],[117.41919,40.61711],[117.41274,40.60513],[117.41475,40.60072],[117.42178,40.59356],[117.42063,40.59037],[117.42321,40.58145],[117.4298,40.5793],[117.42998,40.57613],[117.42123,40.56911],[117.41517,40.57088],[117.4133,40.56989],[117.4118,40.57214],[117.40798,40.5722],[117.40359,40.57425],[117.40059,40.56934],[117.39317,40.56719],[117.38962,40.5615],[117.38765,40.56078],[117.38285,40.56154],[117.38177,40.56353],[117.37769,40.56374],[117.37544,40.56781],[117.37261,40.56832],[117.37209,40.57023],[117.36936,40.57013],[117.36943,40.57209],[117.3671,40.57296],[117.36591,40.57596],[117.36223,40.57588],[117.35556,40.57894],[117.35301,40.57883],[117.3502,40.58219],[117.34861,40.58091],[117.34315,40.58174],[117.33462,40.57647],[117.32986,40.57564],[117.32545,40.57815],[117.31891,40.57672],[117.31786,40.57826],[117.31183,40.57802],[117.29955,40.5668],[117.29746,40.56766],[117.2933,40.5659],[117.28616,40.56535],[117.27925,40.56034],[117.27347,40.56149],[117.26946,40.56045],[117.25964,40.55287],[117.24955,40.54819],[117.2508,40.54225],[117.24742,40.54024],[117.25201,40.53633],[117.25513,40.52797],[117.26147,40.51906],[117.26412,40.51727],[117.26312,40.51315],[117.26008,40.51272],[117.25557,40.51493],[117.24714,40.51178],[117.24436,40.51518],[117.23928,40.51674],[117.23025,40.51111],[117.21873,40.51434],[117.21352,40.51222],[117.21252,40.5078],[117.21446,40.50693],[117.20849,40.50094],[117.20896,40.49697],[117.21206,40.49469],[117.21746,40.49497],[117.2283,40.48162],[117.2263,40.47942],[117.22569,40.47636],[117.22818,40.47286],[117.23155,40.47016],[117.23716,40.46915],[117.23629,40.46545],[117.23321,40.4632],[117.23536,40.45746],[117.23975,40.45544],[117.2433,40.45542],[117.2469,40.45223],[117.25228,40.45035],[117.25287,40.44586],[117.26405,40.44147],[117.26105,40.44013],[117.25819,40.43577],[117.25182,40.43083],[117.25026,40.42811],[117.24673,40.42688],[117.24388,40.42284],[117.24141,40.42286],[117.23946,40.42003],[117.23408,40.41716],[117.23761,40.40721],[117.2364,40.40126],[117.24018,40.39838],[117.2407,40.39442],[117.23715,40.39425],[117.23576,40.38989],[117.22849,40.38641],[117.22695,40.38361],[117.22695,40.37892],[117.22389,40.37554],[117.21834,40.37774],[117.21112,40.37383],[117.20468,40.37308],[117.19804,40.37636],[117.19339,40.37604],[117.18517,40.37779],[117.18137,40.37701],[117.18196,40.37642],[117.17961,40.37494],[117.17253,40.37362],[117.17049,40.37434],[117.16702,40.37136],[117.15665,40.37492],[117.15555,40.37136],[117.15393,40.37308],[117.15354,40.37107],[117.14731,40.36986],[117.14744,40.36808],[117.14229,40.36274],[117.13362,40.36044],[117.13106,40.35864],[117.12825,40.35895],[117.1252,40.35632],[117.11945,40.35529],[117.11746,40.35374],[117.11279,40.35419],[117.10983,40.35718],[117.10092,40.36054],[117.09686,40.3596],[117.09449,40.35822],[117.0929,40.35515],[117.08892,40.35412],[117.08524,40.35043],[117.07849,40.34806],[117.07631,40.34839],[117.0727,40.34558],[117.07229,40.343],[117.06612,40.34283],[117.06006,40.33736],[117.05428,40.33687],[117.04827,40.34153],[117.04421,40.33991],[117.03943,40.34014],[117.03853,40.3388],[117.03277,40.33753],[117.02768,40.33865],[117.02223,40.337],[117.01617,40.33109],[117.01512,40.32755],[117.01259,40.32668],[117.01051,40.32089],[117.0071,40.31969],[117.00757,40.3146],[117.01067,40.31132],[117.01149,40.30754],[117.00868,40.30589],[117.00766,40.30331],[117.00199,40.29978],[117.00451,40.2971],[117.00408,40.29392],[116.9995,40.29109],[116.99684,40.29165],[116.9959,40.2905],[116.99493,40.29208],[116.99405,40.29078],[116.99098,40.29071],[116.99309,40.28892],[116.99084,40.2885],[116.99123,40.28778],[116.98377,40.28789],[116.97866,40.28448],[116.97522,40.28442],[116.97133,40.28173],[116.97197,40.27929],[116.97052,40.27653],[116.962,40.27344],[116.96215,40.27113],[116.95095,40.26107],[116.95171,40.25892],[116.95847,40.25581],[116.96166,40.25268],[116.9691,40.25401],[116.97384,40.25165],[116.97589,40.24945],[116.97409,40.24457],[116.96565,40.239],[116.95992,40.23268],[116.95629,40.23262],[116.95357,40.23608],[116.9469,40.2361],[116.94565,40.23344],[116.93685,40.23225],[116.93521,40.22984],[116.93106,40.23063],[116.92645,40.2273],[116.92568,40.22292],[116.92298,40.22033],[116.91584,40.2223],[116.91383,40.22013],[116.90745,40.22375],[116.90659,40.22868],[116.90071,40.22876],[116.89939,40.23114],[116.89418,40.23231],[116.89395,40.23346],[116.89681,40.23591],[116.90174,40.23683],[116.9013,40.23802],[116.89435,40.24003],[116.89225,40.24571],[116.88975,40.24701],[116.88659,40.25191],[116.8862,40.25512],[116.88127,40.25922],[116.88153,40.26153],[116.87988,40.26414],[116.87734,40.26489],[116.87426,40.26828],[116.87588,40.27027],[116.87634,40.27434],[116.87174,40.28148],[116.87162,40.29081],[116.85946,40.29087],[116.85788,40.29226],[116.85402,40.30109],[116.85455,40.30316],[116.84898,40.3112],[116.83737,40.30995],[116.829,40.30441],[116.8301,40.2992],[116.82717,40.29821],[116.82693,40.29353],[116.82458,40.291],[116.82512,40.28535],[116.81796,40.28413],[116.82157,40.28128],[116.81883,40.28274],[116.81182,40.28239],[116.81191,40.28415],[116.81015,40.28423],[116.81098,40.28914],[116.80961,40.28602],[116.80115,40.28918],[116.79788,40.28781],[116.7943,40.28839],[116.79364,40.2869],[116.79017,40.28894],[116.78985,40.29144],[116.78889,40.29143],[116.7878,40.28144],[116.78629,40.28166],[116.78558,40.27928],[116.78407,40.27944],[116.78296,40.27325],[116.77351,40.26953],[116.77165,40.2665],[116.76909,40.26693],[116.77072,40.26873],[116.76861,40.2701],[116.76688,40.26809],[116.76361,40.26719],[116.76426,40.26843],[116.76267,40.26906],[116.76269,40.27131],[116.76148,40.27003],[116.75575,40.2739],[116.75578,40.27494],[116.74299,40.27909],[116.74214,40.27793],[116.74054,40.27828],[116.74097,40.27983],[116.73834,40.27876],[116.74109,40.28299],[116.73896,40.2841],[116.7428,40.28755],[116.74574,40.2914],[116.74488,40.2918],[116.74562,40.29289],[116.75445,40.30368],[116.75684,40.30259],[116.76288,40.31043],[116.77299,40.31507],[116.7736,40.31371],[116.77406,40.31548],[116.76833,40.31581],[116.76864,40.31781],[116.76519,40.3243],[116.76818,40.32494],[116.76276,40.3243],[116.76284,40.32671],[116.75969,40.32686],[116.75983,40.32953],[116.75801,40.32981],[116.75855,40.33388],[116.75346,40.33426],[116.75485,40.33441],[116.75381,40.33577],[116.75148,40.33575],[116.74465,40.33371],[116.74406,40.33914],[116.73129,40.33503],[116.73119,40.33902],[116.72297,40.33916],[116.72388,40.34404],[116.72569,40.34387],[116.72631,40.34665],[116.72749,40.34652],[116.72904,40.35562],[116.72577,40.35561],[116.72677,40.36118],[116.71809,40.36134],[116.71987,40.36904],[116.71408,40.36861],[116.70651,40.3738],[116.70711,40.37701],[116.71625,40.38412],[116.71245,40.38506],[116.71301,40.3867],[116.71172,40.38692],[116.71385,40.39581],[116.71022,40.39585],[116.71032,40.39177],[116.70812,40.39173],[116.70864,40.39349],[116.70669,40.39373],[116.70788,40.39488],[116.71323,40.39752],[116.71324,40.40157],[116.70994,40.40287],[116.71136,40.40411],[116.7158,40.40115],[116.71796,40.40178],[116.71955,40.40502],[116.72343,40.40532],[116.72439,40.4092],[116.74081,40.41444],[116.74156,40.41624],[116.7393,40.41527],[116.73323,40.41831],[116.73553,40.4206],[116.72556,40.41806],[116.72235,40.42384],[116.72354,40.43507],[116.72092,40.43884],[116.71809,40.43937],[116.71643,40.44171],[116.72098,40.44099],[116.72482,40.43835],[116.72601,40.4398],[116.72254,40.44088],[116.72585,40.44315],[116.72304,40.44626],[116.72347,40.44736],[116.71926,40.44864],[116.71926,40.45228],[116.7211,40.4534],[116.71963,40.45593],[116.72251,40.45455],[116.72207,40.45707],[116.7236,40.45854],[116.71934,40.46041],[116.71767,40.45972],[116.71681,40.45704],[116.70972,40.45802],[116.70617,40.45993],[116.6987,40.46805],[116.69556,40.46672],[116.69489,40.46836],[116.69454,40.47417],[116.69563,40.4745],[116.69341,40.47611],[116.69348,40.4817],[116.70453,40.47908],[116.69416,40.48547],[116.6927,40.48783],[116.69338,40.49078],[116.69836,40.49327],[116.69984,40.49621],[116.69827,40.49833],[116.69828,40.50158],[116.70089,40.50718],[116.701,40.51038],[116.70457,40.512],[116.70626,40.51471],[116.71141,40.51647],[116.71224,40.52205],[116.7172,40.52506],[116.71257,40.52996],[116.70695,40.53258],[116.70241,40.53814],[116.70147,40.54197],[116.70361,40.54331],[116.69975,40.54675],[116.69071,40.54946],[116.68226,40.5489],[116.68009,40.54989],[116.67768,40.55239],[116.67887,40.55659],[116.67685,40.55438],[116.6724,40.55464],[116.66922,40.5534],[116.66932,40.55154],[116.66771,40.55057],[116.66577,40.55244],[116.66739,40.55485],[116.6697,40.55487],[116.66873,40.5575],[116.68237,40.5567],[116.67966,40.56129],[116.68059,40.56279],[116.68635,40.5645],[116.69411,40.56406],[116.69662,40.56588],[116.69934,40.56356],[116.70741,40.56426],[116.70985,40.56551],[116.71049,40.56869],[116.71488,40.57111],[116.71435,40.58029],[116.71277,40.58135],[116.71224,40.58509],[116.70896,40.59005],[116.71162,40.59189],[116.70845,40.59526],[116.71094,40.59775],[116.71123,40.60021],[116.70747,40.60095],[116.70572,40.60273],[116.70814,40.60685],[116.70777,40.60907],[116.70525,40.61207],[116.7026,40.61279],[116.70176,40.61544],[116.69939,40.61583],[116.69795,40.6184],[116.70105,40.62136],[116.7051,40.6205],[116.70596,40.62377],[116.70519,40.62687],[116.70184,40.62864],[116.70149,40.63292],[116.71219,40.64127],[116.71087,40.64413],[116.71289,40.65226],[116.70951,40.66137],[116.71164,40.66498],[116.71436,40.66618],[116.71323,40.66988],[116.71484,40.67466],[116.71324,40.67762],[116.71491,40.68001],[116.71834,40.68048],[116.7187,40.68245],[116.7254,40.68466],[116.72559,40.68911],[116.73032,40.69137],[116.7358,40.69167],[116.74252,40.69593],[116.74771,40.69713],[116.74867,40.70054],[116.75484,40.70276],[116.75616,40.70569],[116.76287,40.70643],[116.7684,40.70293],[116.77261,40.70354],[116.77956,40.70052],[116.7853,40.70153],[116.7871,40.70448],[116.78668,40.7103],[116.78909,40.71245],[116.78977,40.71538],[116.78918,40.72084],[116.79047,40.72926],[116.78855,40.73449],[116.78634,40.73603],[116.78629,40.73987],[116.78073,40.75151],[116.78376,40.75763],[116.79228,40.74907],[116.8003,40.74618],[116.80667,40.74651],[116.81427,40.75037],[116.81901,40.75045],[116.82112,40.74899],[116.82946,40.74992],[116.83179,40.7513],[116.83351,40.75451],[116.83669,40.75604],[116.83767,40.75979],[116.84008,40.76069],[116.83939,40.76304],[116.83738,40.76346],[116.835,40.76882],[116.83613,40.77201],[116.83934,40.77137],[116.84895,40.77428],[116.85042,40.77492],[116.85127,40.77892],[116.8568,40.77955],[116.85804,40.78305],[116.86747,40.78455],[116.8651,40.78762],[116.86499,40.79031],[116.86257,40.79219],[116.86535,40.79462],[116.87081,40.79446],[116.87409,40.79932],[116.88008,40.79734],[116.88697,40.80107]]]},"properties":{"name":"密云区","adcode":"110128","telecode":"010","level":"district","parent":{"name":"北京市市辖区","level":"city","adcode":"110100","center":{"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG:6.3:4326"}},"type":"Point","coordinates":[116.405285,39.904989]}},"center":{"lng":116.843352,"lat":40.377362}}}]}); + echarts.registerMap('平谷区', {"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[117.22389,40.37554],[117.22412,40.37123],[117.22619,40.36904],[117.23706,40.37063],[117.24275,40.3698],[117.24374,40.36643],[117.24776,40.36411],[117.24985,40.3587],[117.2542,40.35756],[117.25359,40.35512],[117.25473,40.35401],[117.25443,40.35073],[117.2568,40.3453],[117.25687,40.34197],[117.26113,40.33878],[117.25995,40.33603],[117.26794,40.33563],[117.27488,40.3326],[117.27129,40.32528],[117.27277,40.32268],[117.27226,40.31743],[117.27469,40.31441],[117.27435,40.30855],[117.28721,40.30212],[117.29332,40.29674],[117.29318,40.29361],[117.29465,40.29089],[117.29241,40.28641],[117.29255,40.28415],[117.29466,40.28202],[117.29533,40.27835],[117.30303,40.27954],[117.30432,40.27819],[117.31401,40.28004],[117.31558,40.28227],[117.31688,40.28202],[117.3168,40.28511],[117.32373,40.28455],[117.33175,40.28966],[117.33615,40.2772],[117.3375,40.26365],[117.34221,40.2565],[117.33987,40.2462],[117.34346,40.2429],[117.34547,40.23494],[117.34824,40.23458],[117.35161,40.22945],[117.356,40.22965],[117.36136,40.23281],[117.36769,40.23243],[117.36978,40.23355],[117.37426,40.23273],[117.379,40.22973],[117.38125,40.23012],[117.38536,40.22737],[117.39002,40.22797],[117.39321,40.2253],[117.39373,40.22166],[117.37759,40.21861],[117.37905,40.21569],[117.37844,40.2103],[117.38114,40.21006],[117.38094,40.20816],[117.38269,40.20693],[117.38708,40.20756],[117.39329,40.20365],[117.38712,40.20346],[117.3826,40.20176],[117.38318,40.20377],[117.38135,40.20405],[117.37947,40.20066],[117.38046,40.19635],[117.38183,40.1947],[117.38558,40.19447],[117.38343,40.19107],[117.3841,40.18783],[117.38835,40.18825],[117.38886,40.19024],[117.39083,40.19073],[117.39275,40.19031],[117.39305,40.18893],[117.39771,40.19291],[117.4077,40.1875],[117.40687,40.1858],[117.40474,40.18324],[117.40123,40.18362],[117.39142,40.17814],[117.39367,40.17638],[117.39319,40.1749],[117.38434,40.17673],[117.38219,40.17568],[117.38039,40.17693],[117.38213,40.17308],[117.38122,40.17246],[117.3763,40.17665],[117.37461,40.17579],[117.37203,40.17653],[117.36854,40.17469],[117.36884,40.173],[117.36736,40.17256],[117.36635,40.17395],[117.36662,40.17227],[117.36415,40.17281],[117.36628,40.1744],[117.36422,40.17684],[117.3636,40.17496],[117.36144,40.17441],[117.36293,40.17235],[117.36188,40.17166],[117.35876,40.17357],[117.35169,40.17318],[117.35103,40.17178],[117.35291,40.17022],[117.35298,40.16807],[117.35758,40.16406],[117.35769,40.16087],[117.36063,40.15697],[117.36023,40.15587],[117.35744,40.15594],[117.35037,40.14861],[117.35528,40.14859],[117.35052,40.14482],[117.35689,40.14504],[117.35635,40.14091],[117.35455,40.13909],[117.35384,40.1409],[117.35245,40.14085],[117.34734,40.13559],[117.33065,40.13361],[117.33093,40.13576],[117.32711,40.13718],[117.32327,40.14071],[117.31856,40.13852],[117.31171,40.13945],[117.30761,40.13697],[117.30713,40.13248],[117.30299,40.12593],[117.29707,40.12127],[117.29782,40.11914],[117.28948,40.12121],[117.28329,40.12052],[117.28179,40.11809],[117.27985,40.11798],[117.27861,40.11486],[117.27543,40.11347],[117.27665,40.10931],[117.27436,40.10581],[117.26992,40.1072],[117.26682,40.11218],[117.2604,40.11416],[117.25553,40.11328],[117.25543,40.11456],[117.25305,40.11476],[117.25341,40.11571],[117.24926,40.11648],[117.2455,40.11326],[117.24167,40.11329],[117.23822,40.11175],[117.23596,40.10834],[117.22909,40.10367],[117.22843,40.10004],[117.22441,40.09861],[117.2245,40.09466],[117.21846,40.09634],[117.21118,40.09658],[117.21107,40.09066],[117.2142,40.08865],[117.2138,40.08646],[117.21538,40.08528],[117.21181,40.08483],[117.20978,40.08224],[117.2078,40.08249],[117.20391,40.07926],[117.20361,40.07671],[117.20818,40.07683],[117.20762,40.07456],[117.20524,40.07029],[117.20041,40.06897],[117.19919,40.06726],[117.19757,40.06774],[117.19858,40.0701],[117.19185,40.07298],[117.18877,40.08042],[117.1904,40.0824],[117.18552,40.08501],[117.18154,40.0801],[117.18636,40.07545],[117.18393,40.07457],[117.18359,40.07208],[117.18025,40.0695],[117.18026,40.07083],[117.17559,40.07165],[117.17555,40.07309],[117.17358,40.07268],[117.17212,40.07422],[117.16501,40.07668],[117.16128,40.07636],[117.15639,40.07867],[117.16017,40.07579],[117.15626,40.06934],[117.14768,40.06629],[117.14274,40.066],[117.13922,40.06405],[117.12847,40.06558],[117.12586,40.0688],[117.11952,40.07243],[117.11743,40.07094],[117.11472,40.07232],[117.10696,40.07194],[117.10401,40.07338],[117.10532,40.07477],[117.10215,40.07285],[117.10392,40.07558],[117.10124,40.07628],[117.09829,40.07611],[117.09745,40.07483],[117.08561,40.07513],[117.08522,40.06868],[117.08319,40.06857],[117.08289,40.06518],[117.08098,40.06509],[117.08105,40.06882],[117.0717,40.06793],[117.06965,40.06756],[117.07064,40.06418],[117.06438,40.06278],[117.06465,40.06171],[117.06224,40.06189],[117.06119,40.0601],[117.05543,40.06074],[117.05531,40.0592],[117.05198,40.05973],[117.05357,40.05303],[117.05115,40.05235],[117.05139,40.05109],[117.04336,40.05115],[117.03864,40.04937],[117.03315,40.04236],[117.02704,40.03883],[117.02851,40.03396],[117.02381,40.03372],[117.02491,40.03013],[117.02177,40.02963],[117.02089,40.03245],[117.01798,40.03177],[117.01807,40.03047],[117.0146,40.03076],[117.01408,40.03289],[117.01112,40.03257],[117.0113,40.03122],[117.00011,40.02986],[117.00015,40.03225],[116.98619,40.03878],[116.97835,40.0384],[116.97074,40.03629],[116.96884,40.03868],[116.97061,40.03985],[116.96986,40.04319],[116.97241,40.04452],[116.97086,40.04437],[116.96929,40.04859],[116.96491,40.04783],[116.96428,40.05083],[116.96198,40.05079],[116.96219,40.05884],[116.9609,40.0589],[116.96102,40.06203],[116.9623,40.06353],[116.96666,40.0629],[116.96711,40.06464],[116.97066,40.0638],[116.97064,40.06252],[116.97284,40.06268],[116.97165,40.0645],[116.97348,40.0663],[116.9786,40.0649],[116.98083,40.07119],[116.98285,40.07068],[116.98628,40.07835],[116.98421,40.07866],[116.98542,40.08028],[116.98339,40.08095],[116.98169,40.08137],[116.98032,40.07964],[116.97808,40.07963],[116.97503,40.08142],[116.98179,40.08196],[116.98077,40.0865],[116.97817,40.08925],[116.98186,40.08983],[116.9819,40.09202],[116.97966,40.09154],[116.97991,40.09407],[116.97527,40.09509],[116.9734,40.09708],[116.97325,40.09821],[116.97533,40.09827],[116.96797,40.10121],[116.97009,40.10184],[116.97078,40.10441],[116.97333,40.10372],[116.97607,40.1112],[116.9717,40.11336],[116.96932,40.11841],[116.97159,40.12422],[116.96578,40.12781],[116.96784,40.12985],[116.97004,40.14031],[116.97338,40.14288],[116.9737,40.14578],[116.97776,40.15138],[116.97206,40.15629],[116.96875,40.16349],[116.96125,40.17194],[116.96204,40.17554],[116.95138,40.1748],[116.95138,40.17769],[116.94773,40.17754],[116.94534,40.1813],[116.9458,40.18622],[116.94997,40.18635],[116.94941,40.19017],[116.94418,40.19361],[116.93955,40.19235],[116.93901,40.19563],[116.93727,40.19507],[116.93613,40.19617],[116.93722,40.19681],[116.92946,40.21092],[116.93374,40.21243],[116.93803,40.21055],[116.93949,40.21273],[116.93848,40.2153],[116.94098,40.22393],[116.93545,40.22925],[116.93685,40.23225],[116.94411,40.23292],[116.94565,40.23344],[116.94664,40.23602],[116.95125,40.23636],[116.95357,40.23608],[116.95629,40.23262],[116.95992,40.23268],[116.96565,40.239],[116.96824,40.23986],[116.97487,40.24624],[116.97577,40.24976],[116.97216,40.25273],[116.9691,40.25401],[116.96166,40.25268],[116.95847,40.25581],[116.95171,40.25892],[116.95095,40.26107],[116.96215,40.27113],[116.962,40.27344],[116.97052,40.27653],[116.97197,40.27929],[116.97133,40.28173],[116.97522,40.28442],[116.97866,40.28448],[116.98377,40.28789],[116.99123,40.28778],[116.99084,40.2885],[116.99309,40.28892],[116.99098,40.29071],[116.99405,40.29078],[116.99493,40.29208],[116.9959,40.2905],[116.99684,40.29165],[116.9995,40.29109],[117.00408,40.29392],[117.00451,40.2971],[117.00199,40.29978],[117.00766,40.30331],[117.00868,40.30589],[117.01149,40.30754],[117.01067,40.31132],[117.00757,40.3146],[117.0071,40.31969],[117.01051,40.32089],[117.01259,40.32668],[117.01512,40.32755],[117.01617,40.33109],[117.02223,40.337],[117.02768,40.33865],[117.03277,40.33753],[117.03853,40.3388],[117.03943,40.34014],[117.04421,40.33991],[117.04827,40.34153],[117.05428,40.33687],[117.06006,40.33736],[117.06612,40.34283],[117.07229,40.343],[117.0727,40.34558],[117.07631,40.34839],[117.07849,40.34806],[117.08524,40.35043],[117.08892,40.35412],[117.0929,40.35515],[117.09449,40.35822],[117.09686,40.3596],[117.10092,40.36054],[117.10983,40.35718],[117.11279,40.35419],[117.11746,40.35374],[117.11945,40.35529],[117.1252,40.35632],[117.12825,40.35895],[117.13106,40.35864],[117.13362,40.36044],[117.14229,40.36274],[117.14744,40.36808],[117.14731,40.36986],[117.15354,40.37107],[117.15393,40.37308],[117.15555,40.37136],[117.15665,40.37492],[117.16702,40.37136],[117.17049,40.37434],[117.17253,40.37362],[117.17961,40.37494],[117.18196,40.37642],[117.18137,40.37701],[117.18517,40.37779],[117.19339,40.37604],[117.19804,40.37636],[117.20468,40.37308],[117.21112,40.37383],[117.21834,40.37774],[117.22389,40.37554]]]},"properties":{"name":"平谷区","adcode":"110117","telecode":"010","level":"district","parent":{"name":"北京市市辖区","level":"city","adcode":"110100","center":{"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG:6.3:4326"}},"type":"Point","coordinates":[116.405285,39.904989]}},"center":{"lng":117.112335,"lat":40.144783}}}]}); + echarts.registerMap('延庆区', {"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.46545,40.77274],[116.47136,40.77121],[116.47495,40.77224],[116.47757,40.77062],[116.4804,40.77158],[116.48561,40.76488],[116.49141,40.76331],[116.49548,40.75974],[116.50026,40.76081],[116.5029,40.75663],[116.50164,40.74668],[116.50473,40.7459],[116.50666,40.74329],[116.51372,40.7414],[116.50952,40.73559],[116.51071,40.72616],[116.50733,40.72024],[116.50414,40.72017],[116.50274,40.71827],[116.50609,40.71082],[116.50454,40.70748],[116.50192,40.70679],[116.50088,40.70498],[116.50117,40.70202],[116.50296,40.70004],[116.50268,40.69731],[116.49666,40.69688],[116.493,40.69325],[116.48881,40.69195],[116.48428,40.68243],[116.48337,40.6794],[116.48427,40.67739],[116.48713,40.67434],[116.49094,40.67302],[116.49375,40.67407],[116.50172,40.67115],[116.50553,40.67482],[116.50607,40.67292],[116.5135,40.67235],[116.51595,40.67115],[116.51528,40.66885],[116.51728,40.66573],[116.52009,40.66411],[116.51838,40.66093],[116.52698,40.65854],[116.52721,40.65537],[116.5337,40.65493],[116.53506,40.65295],[116.5354,40.65661],[116.54004,40.65669],[116.54411,40.65377],[116.54503,40.65011],[116.55033,40.6476],[116.55115,40.64283],[116.55389,40.64288],[116.55518,40.64088],[116.56293,40.63829],[116.56389,40.63692],[116.57391,40.63629],[116.57379,40.63094],[116.56898,40.62548],[116.56123,40.62856],[116.55904,40.6266],[116.55168,40.62522],[116.54391,40.62713],[116.53929,40.62561],[116.53894,40.61968],[116.53564,40.6157],[116.5365,40.61412],[116.53579,40.61205],[116.53347,40.61151],[116.53271,40.60848],[116.53291,40.60645],[116.53547,40.60422],[116.53398,40.60254],[116.5358,40.60142],[116.53596,40.59943],[116.53093,40.59589],[116.53158,40.59131],[116.52303,40.58164],[116.51968,40.58493],[116.52181,40.58117],[116.5175,40.57951],[116.51314,40.5728],[116.50944,40.57275],[116.50718,40.56962],[116.50767,40.56815],[116.50515,40.56258],[116.49993,40.56086],[116.49637,40.55517],[116.48452,40.55283],[116.48447,40.55028],[116.48082,40.54571],[116.47951,40.54122],[116.47116,40.536],[116.46758,40.53017],[116.46095,40.52437],[116.46407,40.51982],[116.47054,40.51895],[116.47435,40.51706],[116.47467,40.51523],[116.47659,40.51408],[116.48654,40.51522],[116.49207,40.51809],[116.49777,40.51809],[116.50046,40.51091],[116.50639,40.50821],[116.50707,40.50578],[116.51064,40.50393],[116.51195,40.50113],[116.51914,40.49661],[116.51875,40.49102],[116.5124,40.48764],[116.50832,40.48317],[116.49215,40.48102],[116.48734,40.48174],[116.48692,40.48352],[116.48353,40.48499],[116.46821,40.48493],[116.46557,40.48701],[116.4579,40.48844],[116.45662,40.48772],[116.45765,40.48488],[116.45597,40.48301],[116.45594,40.48091],[116.4519,40.4802],[116.44983,40.48092],[116.45031,40.48178],[116.44321,40.48181],[116.43483,40.47851],[116.42847,40.47813],[116.42097,40.4803],[116.41967,40.48211],[116.41666,40.48301],[116.41288,40.48136],[116.40736,40.48218],[116.40329,40.47991],[116.40305,40.47796],[116.39798,40.47675],[116.39844,40.47572],[116.3937,40.47256],[116.39103,40.47472],[116.38905,40.47392],[116.3899,40.47557],[116.38725,40.47511],[116.3854,40.47732],[116.38523,40.47877],[116.38835,40.47849],[116.38734,40.48204],[116.38575,40.4826],[116.38874,40.48413],[116.38411,40.4825],[116.38272,40.48436],[116.38025,40.48376],[116.37683,40.48574],[116.37639,40.48756],[116.3787,40.48866],[116.37636,40.49029],[116.37895,40.49071],[116.37626,40.49429],[116.37754,40.49683],[116.37374,40.49893],[116.35704,40.50194],[116.34605,40.49879],[116.34255,40.50046],[116.33665,40.49864],[116.33057,40.50075],[116.32776,40.49954],[116.32322,40.50015],[116.31447,40.49532],[116.31322,40.4918],[116.30934,40.49133],[116.30377,40.48582],[116.29716,40.48677],[116.29265,40.48591],[116.29143,40.48438],[116.29387,40.48068],[116.29314,40.47874],[116.29447,40.47569],[116.29952,40.47159],[116.30165,40.46811],[116.30685,40.4661],[116.30293,40.4628],[116.30089,40.45896],[116.30103,40.45628],[116.29932,40.45547],[116.29784,40.45705],[116.2971,40.45477],[116.29383,40.45284],[116.29489,40.45002],[116.29292,40.44886],[116.29313,40.44668],[116.29104,40.44474],[116.29186,40.44238],[116.28979,40.44091],[116.292,40.43828],[116.29067,40.43586],[116.29184,40.43161],[116.29446,40.4293],[116.29463,40.42638],[116.29688,40.4233],[116.29471,40.41769],[116.29194,40.41661],[116.28929,40.41802],[116.28949,40.41665],[116.28701,40.41629],[116.28996,40.41566],[116.28852,40.41344],[116.29161,40.40845],[116.28796,40.40507],[116.28974,40.40253],[116.28841,40.39934],[116.28601,40.39603],[116.28382,40.39541],[116.28725,40.39453],[116.28988,40.39168],[116.28881,40.38966],[116.29074,40.38317],[116.2895,40.38195],[116.28973,40.37992],[116.28284,40.37527],[116.27086,40.38269],[116.26911,40.38141],[116.26542,40.38183],[116.26126,40.38056],[116.25795,40.38333],[116.25342,40.38135],[116.25416,40.38022],[116.2529,40.37975],[116.2521,40.3763],[116.24902,40.37378],[116.24779,40.37447],[116.24708,40.37792],[116.24352,40.37982],[116.24196,40.3775],[116.23664,40.37743],[116.23185,40.37499],[116.22674,40.38127],[116.22222,40.38212],[116.21755,40.38127],[116.21407,40.38268],[116.21145,40.38176],[116.2081,40.37762],[116.20913,40.37623],[116.20823,40.37572],[116.19603,40.37316],[116.19125,40.37349],[116.18856,40.37036],[116.18498,40.37025],[116.18036,40.36769],[116.17687,40.37104],[116.1729,40.37022],[116.16879,40.36672],[116.1639,40.36563],[116.1593,40.36626],[116.15748,40.36356],[116.14838,40.36194],[116.14738,40.35848],[116.1484,40.35603],[116.14552,40.35105],[116.15385,40.34677],[116.15588,40.34453],[116.15477,40.34329],[116.15532,40.34177],[116.15312,40.34059],[116.1526,40.33772],[116.15054,40.33618],[116.14645,40.33593],[116.14473,40.33663],[116.14753,40.34065],[116.14607,40.34724],[116.14479,40.34855],[116.14262,40.34836],[116.13905,40.34628],[116.13886,40.34386],[116.14081,40.34262],[116.13775,40.34096],[116.1365,40.3385],[116.13764,40.33654],[116.14396,40.33621],[116.13806,40.33085],[116.13847,40.32428],[116.14225,40.31806],[116.13831,40.31403],[116.13485,40.31258],[116.1224,40.31281],[116.11811,40.32029],[116.11666,40.32091],[116.11664,40.32367],[116.11283,40.32748],[116.11046,40.32801],[116.11038,40.33082],[116.10591,40.33172],[116.09866,40.33],[116.09217,40.33116],[116.08664,40.33063],[116.08324,40.33582],[116.07849,40.33733],[116.07717,40.33977],[116.07344,40.33982],[116.06707,40.33658],[116.06173,40.33679],[116.05957,40.33476],[116.05742,40.33094],[116.05786,40.32941],[116.05336,40.32685],[116.05418,40.32519],[116.05608,40.32504],[116.05697,40.32217],[116.05273,40.31666],[116.04975,40.31543],[116.04751,40.31705],[116.04248,40.31684],[116.0401,40.31272],[116.03364,40.31155],[116.03114,40.31236],[116.02962,40.31451],[116.02617,40.32049],[116.02599,40.32536],[116.024,40.32614],[116.01829,40.33393],[116.01072,40.33432],[116.00759,40.33314],[116.00491,40.33001],[116.00213,40.32954],[116.00128,40.32696],[115.99907,40.32546],[115.99341,40.32899],[115.98271,40.3242],[115.97947,40.32041],[115.97317,40.31918],[115.97628,40.31244],[115.97554,40.30869],[115.97822,40.307],[115.9809,40.30751],[115.98288,40.30577],[115.98436,40.30602],[115.98606,40.30384],[115.98791,40.3038],[115.99033,40.2995],[115.98712,40.29792],[115.98343,40.2985],[115.97816,40.29312],[115.9792,40.29186],[115.97868,40.28963],[115.98197,40.28457],[115.97935,40.28459],[115.97926,40.28027],[115.98181,40.2769],[115.9788,40.27228],[115.97684,40.27097],[115.97426,40.27192],[115.97132,40.26771],[115.96572,40.26595],[115.96162,40.26922],[115.95936,40.27394],[115.96023,40.27492],[115.95522,40.27698],[115.95512,40.27942],[115.95171,40.28201],[115.95008,40.28922],[115.94611,40.28904],[115.94598,40.29129],[115.94471,40.29216],[115.94588,40.29619],[115.93959,40.3036],[115.94214,40.30575],[115.94381,40.31095],[115.93658,40.31337],[115.93571,40.31672],[115.93291,40.31785],[115.93256,40.31962],[115.92924,40.32105],[115.92639,40.31959],[115.92275,40.32474],[115.92267,40.32589],[115.9267,40.32771],[115.92722,40.3296],[115.92288,40.3329],[115.92142,40.33866],[115.92426,40.34175],[115.92003,40.34746],[115.91831,40.35389],[115.90954,40.35762],[115.893,40.35555],[115.89092,40.35789],[115.88526,40.35702],[115.8834,40.35798],[115.88318,40.35955],[115.87807,40.35936],[115.87622,40.36215],[115.87275,40.3596],[115.86979,40.36039],[115.86445,40.35933],[115.86253,40.36085],[115.86441,40.36192],[115.86457,40.36392],[115.86326,40.3622],[115.8591,40.36277],[115.8619,40.36342],[115.85803,40.36337],[115.86204,40.36398],[115.85807,40.36439],[115.86191,40.36481],[115.86188,40.36705],[115.85909,40.36776],[115.86205,40.36839],[115.85825,40.36844],[115.86228,40.36928],[115.86042,40.37567],[115.85605,40.3758],[115.85597,40.37712],[115.84919,40.37687],[115.84901,40.37524],[115.84687,40.37509],[115.84414,40.3782],[115.84143,40.37787],[115.84063,40.3811],[115.83745,40.38126],[115.83655,40.38569],[115.79488,40.42737],[115.79481,40.42871],[115.79804,40.42886],[115.79688,40.43253],[115.78993,40.43248],[115.78667,40.43707],[115.78058,40.44025],[115.77926,40.44263],[115.77569,40.44183],[115.77428,40.44423],[115.77084,40.4426],[115.77176,40.4438],[115.77016,40.44499],[115.77086,40.44714],[115.77429,40.44751],[115.77247,40.45283],[115.77546,40.45204],[115.7734,40.4574],[115.77596,40.45816],[115.77896,40.45668],[115.77677,40.45983],[115.78041,40.46335],[115.77954,40.46407],[115.77612,40.46229],[115.77286,40.46231],[115.77037,40.46494],[115.76995,40.46914],[115.77155,40.47285],[115.77668,40.47751],[115.77619,40.4827],[115.77807,40.48683],[115.78199,40.48977],[115.78177,40.49276],[115.77811,40.49456],[115.77379,40.49406],[115.76809,40.49835],[115.76432,40.49924],[115.74472,40.49869],[115.74308,40.49496],[115.73604,40.50383],[115.74098,40.51083],[115.73944,40.51281],[115.74309,40.51385],[115.74379,40.51846],[115.7487,40.52608],[115.75322,40.53042],[115.75563,40.53102],[115.75288,40.5368],[115.75321,40.53875],[115.75505,40.54004],[115.75957,40.53892],[115.76389,40.54057],[115.77018,40.548],[115.77487,40.54898],[115.77701,40.5529],[115.78471,40.55837],[115.79065,40.56094],[115.79498,40.56094],[115.79909,40.5577],[115.80525,40.55864],[115.81415,40.55725],[115.8198,40.55935],[115.82153,40.5633],[115.82054,40.56793],[115.82267,40.57092],[115.82572,40.58392],[115.82774,40.58734],[115.84338,40.59087],[115.84618,40.59305],[115.85489,40.59016],[115.86433,40.59216],[115.86805,40.59595],[115.87274,40.59481],[115.87495,40.59576],[115.8854,40.59523],[115.88892,40.59783],[115.89378,40.60617],[115.89877,40.60867],[115.9078,40.6173],[115.9188,40.61707],[115.92764,40.6127],[115.93428,40.61346],[115.93756,40.61181],[115.94467,40.61109],[115.94832,40.60881],[115.9551,40.60954],[115.96682,40.60629],[115.96772,40.60441],[115.96569,40.60107],[115.97199,40.60236],[115.9757,40.58911],[115.98143,40.57963],[115.98344,40.57877],[115.99258,40.58055],[115.99524,40.57987],[115.99707,40.58426],[116.00499,40.58392],[116.00597,40.58709],[116.00995,40.58921],[116.01667,40.59684],[116.01567,40.60048],[116.01945,40.6014],[116.02556,40.60672],[116.02655,40.6048],[116.0285,40.60732],[116.03005,40.60539],[116.03013,40.60203],[116.0283,40.59927],[116.03004,40.59737],[116.03321,40.60037],[116.03576,40.59983],[116.04458,40.60202],[116.05019,40.6059],[116.05828,40.60701],[116.06272,40.61031],[116.07254,40.61126],[116.07446,40.61765],[116.07669,40.61989],[116.08661,40.6242],[116.08965,40.62728],[116.09887,40.63058],[116.10043,40.6301],[116.10103,40.62778],[116.10439,40.62699],[116.12172,40.62915],[116.12041,40.63328],[116.11322,40.64012],[116.1106,40.64693],[116.1202,40.65263],[116.12523,40.65409],[116.13339,40.66375],[116.13276,40.66487],[116.13486,40.66709],[116.14318,40.6669],[116.15204,40.66322],[116.162,40.6624],[116.16464,40.66337],[116.16819,40.67864],[116.17148,40.68167],[116.17156,40.6851],[116.17369,40.68904],[116.17357,40.6934],[116.17134,40.69599],[116.17621,40.70055],[116.17791,40.7079],[116.18093,40.71042],[116.18112,40.71244],[116.18561,40.71418],[116.18493,40.71585],[116.19078,40.7212],[116.19228,40.72477],[116.19809,40.72707],[116.20569,40.73304],[116.20471,40.73994],[116.20866,40.74022],[116.21056,40.74171],[116.21325,40.74014],[116.21816,40.74232],[116.22027,40.74427],[116.22048,40.74918],[116.22331,40.7538],[116.23381,40.75909],[116.22997,40.76241],[116.23128,40.76505],[116.23133,40.77087],[116.23562,40.77514],[116.23503,40.78313],[116.23941,40.78461],[116.24165,40.78798],[116.24522,40.78839],[116.24764,40.7918],[116.25826,40.78774],[116.26101,40.78294],[116.2641,40.78295],[116.26495,40.7797],[116.26958,40.77716],[116.26989,40.77071],[116.27416,40.76634],[116.27345,40.76289],[116.27737,40.76162],[116.28141,40.76393],[116.28694,40.76276],[116.29021,40.7643],[116.29465,40.75886],[116.29924,40.75631],[116.30476,40.75565],[116.3089,40.75192],[116.31063,40.75196],[116.31112,40.75511],[116.30795,40.76374],[116.31318,40.7702],[116.31701,40.77223],[116.31875,40.77149],[116.33016,40.77376],[116.34076,40.77228],[116.3454,40.77295],[116.35204,40.77027],[116.3612,40.77265],[116.36769,40.77087],[116.37097,40.77245],[116.37983,40.77233],[116.38341,40.77495],[116.38713,40.775],[116.39344,40.77859],[116.40416,40.7787],[116.40785,40.78042],[116.4143,40.77791],[116.41649,40.76937],[116.42485,40.76745],[116.43184,40.76825],[116.43773,40.76687],[116.44442,40.76921],[116.45396,40.76588],[116.46545,40.77274]]]},"properties":{"name":"延庆区","adcode":"110129","telecode":"010","level":"district","parent":{"name":"北京市市辖区","level":"city","adcode":"110100","center":{"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG:6.3:4326"}},"type":"Point","coordinates":[116.405285,39.904989]}},"center":{"lng":115.985006,"lat":40.465325}}}]}); + echarts.registerMap('房山区', {"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.05464,39.84596],[116.0615,39.8419],[116.06777,39.8413],[116.0762,39.83701],[116.07811,39.83409],[116.07784,39.83238],[116.08166,39.83217],[116.08347,39.82824],[116.08575,39.83217],[116.08974,39.82973],[116.08973,39.82705],[116.08822,39.82692],[116.089,39.81821],[116.08691,39.81793],[116.08976,39.81571],[116.08694,39.81487],[116.08681,39.81114],[116.08721,39.80459],[116.08874,39.80273],[116.0882,39.79999],[116.08979,39.79777],[116.0882,39.79519],[116.09015,39.78709],[116.0898,39.78257],[116.09117,39.78444],[116.09219,39.78174],[116.09729,39.78209],[116.09843,39.78323],[116.09754,39.7843],[116.1001,39.7857],[116.10146,39.78287],[116.10137,39.78577],[116.10701,39.78533],[116.10636,39.78862],[116.11308,39.78889],[116.11357,39.78805],[116.11454,39.7907],[116.11672,39.78951],[116.11965,39.78993],[116.12075,39.78486],[116.12179,39.78601],[116.12218,39.78489],[116.12789,39.78481],[116.128,39.78385],[116.13122,39.7835],[116.13053,39.78143],[116.13448,39.78042],[116.13099,39.78008],[116.13257,39.77862],[116.12746,39.77905],[116.12436,39.77675],[116.12309,39.77686],[116.12278,39.77928],[116.12079,39.77836],[116.11728,39.77272],[116.11981,39.77186],[116.12046,39.77322],[116.12049,39.76969],[116.11956,39.77131],[116.1179,39.76998],[116.11934,39.76832],[116.1189,39.76616],[116.12099,39.76537],[116.12146,39.76162],[116.12301,39.76159],[116.12225,39.7654],[116.12366,39.76555],[116.12434,39.76173],[116.12847,39.76241],[116.13343,39.76633],[116.13684,39.76582],[116.13781,39.7673],[116.13956,39.76435],[116.14078,39.76564],[116.14344,39.76438],[116.14469,39.7657],[116.14717,39.76575],[116.14672,39.76865],[116.14782,39.76738],[116.15067,39.76754],[116.15055,39.76656],[116.15636,39.76683],[116.15786,39.7685],[116.15992,39.76749],[116.16127,39.76965],[116.1627,39.7692],[116.16612,39.77504],[116.16972,39.78428],[116.18287,39.78388],[116.18234,39.78151],[116.18385,39.78138],[116.18336,39.7802],[116.18662,39.78023],[116.18801,39.78178],[116.19073,39.78039],[116.1944,39.78059],[116.19445,39.7785],[116.20039,39.77815],[116.2017,39.78531],[116.20173,39.79939],[116.20356,39.80201],[116.20656,39.80315],[116.20642,39.80554],[116.20805,39.80635],[116.20746,39.81105],[116.21044,39.8116],[116.21676,39.81691],[116.21417,39.81963],[116.21413,39.8247],[116.22721,39.82505],[116.22891,39.82736],[116.24134,39.82651],[116.243,39.82515],[116.24483,39.81785],[116.25254,39.81222],[116.2536,39.80724],[116.25094,39.80143],[116.2523,39.79638],[116.25132,39.78629],[116.2516,39.78252],[116.25378,39.77951],[116.25248,39.77175],[116.25442,39.76324],[116.25248,39.75868],[116.25223,39.74961],[116.24394,39.74166],[116.24625,39.73435],[116.24826,39.73213],[116.24733,39.73019],[116.24846,39.72803],[116.24577,39.72408],[116.24503,39.71841],[116.23663,39.71287],[116.232,39.70669],[116.23444,39.7044],[116.23094,39.69236],[116.22123,39.67845],[116.22154,39.67706],[116.22545,39.67502],[116.22565,39.67358],[116.22156,39.66842],[116.22316,39.66306],[116.21699,39.65158],[116.2175,39.64772],[116.21549,39.64305],[116.21963,39.61966],[116.21803,39.61404],[116.21807,39.60811],[116.22263,39.59916],[116.2226,39.59393],[116.22636,39.59169],[116.22508,39.58409],[116.22118,39.57893],[116.20829,39.57764],[116.20624,39.58322],[116.20319,39.58377],[116.20405,39.58881],[116.20214,39.58891],[116.20151,39.58637],[116.20155,39.5889],[116.20042,39.5864],[116.20057,39.58902],[116.19933,39.58635],[116.19976,39.58914],[116.19891,39.58919],[116.19849,39.58605],[116.1964,39.58609],[116.19686,39.58898],[116.19399,39.58919],[116.19401,39.58718],[116.19058,39.58738],[116.19078,39.58943],[116.18488,39.58965],[116.18492,39.59093],[116.17706,39.59001],[116.17692,39.5859],[116.17256,39.58591],[116.16553,39.58356],[116.15519,39.58367],[116.15579,39.5855],[116.15412,39.58602],[116.1518,39.58341],[116.15183,39.57888],[116.15102,39.57708],[116.14962,39.57708],[116.14961,39.57308],[116.14671,39.57194],[116.14701,39.57527],[116.1458,39.57543],[116.14436,39.57147],[116.14261,39.57061],[116.13911,39.57133],[116.13841,39.56888],[116.13705,39.56857],[116.13038,39.56775],[116.13031,39.56945],[116.12153,39.57056],[116.12146,39.57493],[116.11683,39.5742],[116.11378,39.57067],[116.10604,39.57099],[116.10603,39.57615],[116.10137,39.58006],[116.10201,39.57614],[116.09958,39.57728],[116.09907,39.57517],[116.03618,39.57167],[116.03273,39.57239],[116.03287,39.57461],[116.03063,39.57545],[116.02477,39.57561],[116.02613,39.57845],[116.02475,39.57891],[116.02622,39.58741],[116.02067,39.58598],[116.01419,39.58813],[116.0137,39.58304],[116.01058,39.58302],[116.00966,39.57863],[116.00761,39.57721],[115.99975,39.57806],[115.99519,39.57707],[115.99695,39.58321],[115.99336,39.58352],[115.99071,39.58647],[115.99188,39.58991],[115.99082,39.5899],[115.991,39.59379],[115.98103,39.59443],[115.97989,39.59582],[115.97844,39.59569],[115.97828,39.59095],[115.97708,39.59093],[115.97722,39.5825],[115.97806,39.58248],[115.97636,39.57685],[115.97926,39.57243],[115.97566,39.57286],[115.97617,39.57002],[115.97473,39.56959],[115.97457,39.57084],[115.96891,39.57099],[115.96752,39.56921],[115.96759,39.5646],[115.96341,39.56549],[115.96347,39.56364],[115.95988,39.56359],[115.95958,39.56085],[115.95755,39.56092],[115.95729,39.5637],[115.95483,39.56391],[115.95499,39.5661],[115.95041,39.56636],[115.95008,39.56931],[115.94892,39.56927],[115.94915,39.57329],[115.94308,39.57468],[115.94318,39.57738],[115.93795,39.57747],[115.9381,39.5817],[115.93497,39.58182],[115.93417,39.58807],[115.93243,39.58727],[115.93259,39.58981],[115.92999,39.58994],[115.93021,39.59338],[115.92418,39.59385],[115.92375,39.59729],[115.91217,39.59918],[115.91019,39.60083],[115.9093,39.59519],[115.90737,39.5947],[115.90797,39.59283],[115.9068,39.59002],[115.90966,39.58829],[115.90874,39.58403],[115.91563,39.58306],[115.91392,39.58179],[115.91346,39.57824],[115.9107,39.57326],[115.91275,39.57283],[115.91081,39.56959],[115.91166,39.5695],[115.90624,39.5685],[115.90814,39.5681],[115.90786,39.56688],[115.90211,39.56739],[115.90247,39.56877],[115.90081,39.56892],[115.90104,39.5703],[115.89931,39.56878],[115.89602,39.56991],[115.89044,39.56861],[115.89067,39.56394],[115.89232,39.56467],[115.89203,39.56276],[115.89341,39.56187],[115.89306,39.55622],[115.88717,39.5562],[115.88882,39.5556],[115.88773,39.5552],[115.88868,39.55403],[115.88769,39.55067],[115.88359,39.55111],[115.88296,39.54812],[115.8733,39.54883],[115.87231,39.5461],[115.86635,39.54636],[115.86604,39.54985],[115.86202,39.54855],[115.85549,39.55499],[115.8555,39.55389],[115.85293,39.55375],[115.85137,39.55045],[115.84688,39.55125],[115.84604,39.54329],[115.84215,39.54157],[115.8287,39.54131],[115.8284,39.53546],[115.82432,39.53422],[115.82275,39.53054],[115.81923,39.53076],[115.81981,39.52493],[115.82099,39.52496],[115.8213,39.52314],[115.81972,39.52317],[115.82411,39.5224],[115.82444,39.51877],[115.81976,39.51853],[115.82265,39.51738],[115.82104,39.51708],[115.82215,39.51414],[115.82412,39.51383],[115.82356,39.51214],[115.82627,39.51419],[115.82948,39.51288],[115.82941,39.51145],[115.82776,39.51158],[115.82784,39.51023],[115.83025,39.50935],[115.82869,39.50705],[115.82032,39.50972],[115.80491,39.51147],[115.80845,39.50974],[115.80781,39.50782],[115.80562,39.50835],[115.80603,39.51007],[115.7865,39.51003],[115.77792,39.51383],[115.77654,39.51272],[115.76742,39.51587],[115.77083,39.51097],[115.76907,39.5089],[115.76532,39.51485],[115.75959,39.51389],[115.75755,39.51591],[115.75511,39.5154],[115.75413,39.5122],[115.75207,39.51172],[115.75187,39.5168],[115.74891,39.51879],[115.74863,39.52081],[115.74442,39.52535],[115.74189,39.53632],[115.73764,39.53984],[115.73928,39.54029],[115.73689,39.54402],[115.73909,39.5445],[115.73852,39.54633],[115.73678,39.54561],[115.73027,39.54757],[115.72823,39.54664],[115.72677,39.54814],[115.72407,39.54869],[115.72625,39.54754],[115.72696,39.54393],[115.72347,39.54489],[115.72314,39.54388],[115.72151,39.5435],[115.72271,39.54474],[115.721,39.54699],[115.7206,39.55132],[115.72271,39.55232],[115.71851,39.55381],[115.72022,39.55475],[115.71714,39.56021],[115.71835,39.56105],[115.71556,39.56037],[115.71538,39.56139],[115.71016,39.56302],[115.70852,39.56146],[115.70645,39.56171],[115.70482,39.56211],[115.70512,39.56324],[115.69873,39.56325],[115.69208,39.56579],[115.69498,39.56725],[115.69448,39.57022],[115.69644,39.5711],[115.69924,39.5698],[115.69856,39.57475],[115.69954,39.57696],[115.69726,39.57751],[115.69913,39.57781],[115.69786,39.57932],[115.69463,39.57871],[115.69529,39.57947],[115.69343,39.58033],[115.6947,39.58627],[115.68927,39.59295],[115.68929,39.59904],[115.68531,39.60368],[115.67101,39.61017],[115.66717,39.61557],[115.66635,39.61518],[115.66759,39.60964],[115.66557,39.60569],[115.65895,39.60239],[115.65727,39.60008],[115.65401,39.59966],[115.65376,39.6008],[115.65027,39.60099],[115.64834,39.59891],[115.64421,39.59878],[115.64182,39.60322],[115.63724,39.60424],[115.63404,39.60337],[115.63507,39.60137],[115.6335,39.59958],[115.63442,39.59817],[115.63256,39.5977],[115.62595,39.5994],[115.6223,39.60277],[115.61844,39.60406],[115.60803,39.60013],[115.60046,39.60114],[115.59872,39.59776],[115.59244,39.59664],[115.58886,39.59401],[115.58661,39.58957],[115.57988,39.58949],[115.57186,39.59157],[115.5741,39.59639],[115.56752,39.59934],[115.56324,39.60706],[115.55532,39.60868],[115.55188,39.61407],[115.54524,39.61865],[115.534,39.61321],[115.53388,39.60861],[115.53102,39.60628],[115.5306,39.60287],[115.52422,39.59894],[115.51831,39.59715],[115.51883,39.59307],[115.51668,39.59132],[115.51449,39.59179],[115.51547,39.59467],[115.51213,39.60513],[115.51244,39.60983],[115.51437,39.61351],[115.5234,39.62038],[115.5217,39.6223],[115.52178,39.6274],[115.5204,39.62846],[115.52187,39.62953],[115.52034,39.63318],[115.52222,39.636],[115.52103,39.6383],[115.52245,39.63997],[115.51586,39.64124],[115.51564,39.64278],[115.5115,39.64439],[115.50969,39.6494],[115.5067,39.65213],[115.49677,39.65255],[115.4936,39.64889],[115.48659,39.64976],[115.48416,39.6514],[115.47852,39.65032],[115.47819,39.65231],[115.47965,39.65906],[115.4826,39.66303],[115.49152,39.66909],[115.48664,39.67359],[115.48807,39.67446],[115.48784,39.67731],[115.49,39.67792],[115.48875,39.68138],[115.49319,39.68365],[115.49368,39.68618],[115.49647,39.6857],[115.49815,39.68769],[115.49724,39.68929],[115.50007,39.6909],[115.49751,39.69309],[115.49958,39.69448],[115.49901,39.69664],[115.49309,39.70162],[115.49006,39.70179],[115.4934,39.70828],[115.49129,39.71413],[115.49029,39.72735],[115.48818,39.73004],[115.48888,39.73317],[115.49221,39.73573],[115.49243,39.73871],[115.48937,39.73877],[115.48633,39.74167],[115.48195,39.74251],[115.47057,39.7424],[115.46732,39.74021],[115.45267,39.74875],[115.44942,39.74839],[115.43989,39.75209],[115.43588,39.75801],[115.43441,39.76385],[115.43541,39.76993],[115.43092,39.77208],[115.42724,39.7696],[115.42484,39.77436],[115.43084,39.77551],[115.43382,39.78214],[115.44349,39.78569],[115.45275,39.78196],[115.45854,39.78244],[115.47561,39.79167],[115.47904,39.79603],[115.48324,39.79868],[115.49237,39.79606],[115.49262,39.79472],[115.49578,39.79344],[115.50711,39.78367],[115.51473,39.78902],[115.53629,39.79213],[115.53942,39.79475],[115.54363,39.79563],[115.55106,39.7946],[115.55487,39.79561],[115.5603,39.80026],[115.56229,39.80371],[115.56678,39.80478],[115.56638,39.80978],[115.56927,39.81327],[115.57736,39.81254],[115.58824,39.81404],[115.59117,39.81854],[115.59665,39.82149],[115.59934,39.82915],[115.60454,39.83444],[115.60394,39.83633],[115.6055,39.83908],[115.6131,39.84375],[115.61636,39.85753],[115.62197,39.86327],[115.6231,39.86695],[115.63098,39.87198],[115.64002,39.87155],[115.64471,39.87597],[115.64886,39.87541],[115.65486,39.8825],[115.66753,39.88388],[115.67105,39.88598],[115.67815,39.88655],[115.68102,39.88862],[115.68256,39.89305],[115.68928,39.89618],[115.69177,39.8997],[115.69951,39.90271],[115.70555,39.90318],[115.70917,39.90512],[115.71959,39.90462],[115.72161,39.90683],[115.73126,39.90786],[115.74889,39.91521],[115.74962,39.91766],[115.76149,39.92099],[115.76359,39.92328],[115.76939,39.92524],[115.77426,39.92059],[115.80173,39.92169],[115.80684,39.91966],[115.81108,39.91379],[115.8188,39.91395],[115.82691,39.91057],[115.83511,39.89959],[115.84024,39.90029],[115.84526,39.89705],[115.86089,39.90136],[115.86833,39.90557],[115.87311,39.91248],[115.87883,39.91596],[115.89012,39.91729],[115.90394,39.91403],[115.91157,39.91487],[115.9181,39.91394],[115.92785,39.91426],[115.93588,39.91776],[115.94116,39.91751],[115.94571,39.91097],[115.94433,39.90508],[115.94497,39.90184],[115.93581,39.89824],[115.92276,39.88552],[115.92186,39.88417],[115.92533,39.87748],[115.94709,39.87263],[115.95414,39.86679],[115.96132,39.86787],[115.96782,39.87206],[115.97016,39.87169],[115.96875,39.86772],[115.97656,39.86825],[115.97737,39.86893],[115.97627,39.8705],[115.99018,39.87635],[115.99724,39.87517],[115.99287,39.86736],[115.98679,39.86471],[115.98817,39.85984],[115.98428,39.84911],[115.98851,39.84513],[115.98901,39.84055],[115.99129,39.84022],[116.01034,39.85015],[116.01752,39.84871],[116.01907,39.84062],[116.02613,39.84178],[116.03309,39.84591],[116.03644,39.84441],[116.04181,39.84488],[116.0418,39.84593],[116.04583,39.84732],[116.05464,39.84596]]]},"properties":{"name":"房山区","adcode":"110111","telecode":"010","level":"district","parent":{"name":"北京市市辖区","level":"city","adcode":"110100","center":{"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG:6.3:4326"}},"type":"Point","coordinates":[116.405285,39.904989]}},"center":{"lng":116.139157,"lat":39.735535}}}]}); + echarts.registerMap('昌平区', {"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.46684,40.09019],[116.46744,40.08676],[116.46576,40.08496],[116.46624,40.08235],[116.46186,40.08083],[116.46247,40.0766],[116.45881,40.07579],[116.45864,40.07038],[116.46215,40.06741],[116.46004,40.06396],[116.4617,40.06331],[116.45986,40.06021],[116.45415,40.06195],[116.45143,40.0613],[116.45163,40.05876],[116.4495,40.05877],[116.44286,40.06133],[116.42812,40.06218],[116.42395,40.0662],[116.42485,40.06432],[116.42323,40.06307],[116.42668,40.06028],[116.41561,40.05601],[116.40959,40.05562],[116.4098,40.05362],[116.40778,40.05268],[116.40845,40.04962],[116.40613,40.04976],[116.40661,40.04464],[116.40889,40.04328],[116.40747,40.04066],[116.40526,40.03898],[116.39533,40.03677],[116.39297,40.04174],[116.38927,40.04105],[116.38472,40.04294],[116.3769,40.04275],[116.37626,40.04542],[116.37203,40.045],[116.3715,40.04713],[116.3696,40.04696],[116.36739,40.05344],[116.373,40.05434],[116.37226,40.05786],[116.37927,40.059],[116.37877,40.0603],[116.38285,40.06158],[116.38193,40.0664],[116.3811,40.06534],[116.37838,40.06628],[116.37336,40.06562],[116.37175,40.06723],[116.37254,40.06843],[116.37036,40.06932],[116.36315,40.06897],[116.36303,40.06594],[116.35142,40.06481],[116.3516,40.06286],[116.34974,40.06247],[116.34918,40.06422],[116.34668,40.06366],[116.34696,40.06043],[116.34268,40.05963],[116.34336,40.05546],[116.34027,40.05508],[116.33883,40.05893],[116.32595,40.0548],[116.3183,40.06167],[116.31332,40.06043],[116.31326,40.06229],[116.30945,40.06061],[116.30599,40.06305],[116.30294,40.06081],[116.29035,40.08314],[116.27989,40.07975],[116.2731,40.0927],[116.27433,40.09307],[116.27332,40.09556],[116.26524,40.0947],[116.26493,40.09686],[116.26272,40.09663],[116.26248,40.09847],[116.26708,40.09873],[116.26695,40.10136],[116.26408,40.10171],[116.26465,40.10558],[116.26328,40.10733],[116.26334,40.11058],[116.25802,40.11194],[116.25735,40.1103],[116.25957,40.1069],[116.25839,40.10511],[116.25587,40.10448],[116.25189,40.10663],[116.2446,40.1056],[116.2405,40.10801],[116.24054,40.10979],[116.24335,40.11328],[116.24183,40.1184],[116.24504,40.11883],[116.24563,40.12127],[116.24705,40.13621],[116.2338,40.13658],[116.21629,40.1431],[116.21223,40.14055],[116.20954,40.14063],[116.20587,40.14394],[116.20567,40.15018],[116.20322,40.15376],[116.20216,40.16099],[116.19428,40.16008],[116.19206,40.15567],[116.19066,40.15534],[116.18269,40.1581],[116.1831,40.15334],[116.18049,40.15046],[116.18042,40.14729],[116.17413,40.14359],[116.16769,40.14184],[116.16863,40.13544],[116.17065,40.13279],[116.17178,40.12794],[116.1674,40.12845],[116.16957,40.12456],[116.1527,40.12177],[116.13292,40.12136],[116.1322,40.11509],[116.12941,40.11474],[116.12768,40.11639],[116.11308,40.11517],[116.10586,40.11801],[116.10225,40.11599],[116.10022,40.11629],[116.09922,40.11883],[116.09606,40.12125],[116.08904,40.11918],[116.08444,40.12025],[116.07809,40.11512],[116.07386,40.11544],[116.07267,40.10926],[116.06946,40.10492],[116.06293,40.10282],[116.06188,40.09939],[116.0559,40.09643],[116.05383,40.09241],[116.05145,40.09118],[116.04887,40.0853],[116.04363,40.08349],[116.0379,40.08452],[116.03393,40.07966],[116.03091,40.08219],[116.02086,40.07457],[116.00893,40.0792],[116.00779,40.08062],[116.00475,40.07982],[115.99594,40.08324],[115.99361,40.08244],[115.98752,40.08353],[115.98023,40.0818],[115.97722,40.08012],[115.97719,40.07896],[115.96858,40.07549],[115.96699,40.07792],[115.96658,40.08456],[115.96047,40.09245],[115.96209,40.09442],[115.96299,40.10212],[115.95727,40.10061],[115.9566,40.09604],[115.9521,40.0997],[115.95267,40.10103],[115.94379,40.10278],[115.94523,40.10559],[115.94794,40.10732],[115.94651,40.1104],[115.92705,40.13074],[115.92177,40.13436],[115.91604,40.1353],[115.91337,40.13849],[115.91275,40.1372],[115.9072,40.13847],[115.90386,40.13599],[115.90044,40.13871],[115.8816,40.13907],[115.87457,40.14378],[115.87078,40.14428],[115.86519,40.14864],[115.85633,40.14748],[115.85334,40.14933],[115.85357,40.15416],[115.84836,40.16103],[115.85058,40.16359],[115.84944,40.16429],[115.84676,40.16318],[115.84479,40.16503],[115.8443,40.1676],[115.84687,40.16946],[115.85421,40.17994],[115.84808,40.18398],[115.85515,40.18887],[115.86479,40.18579],[115.87032,40.18608],[115.87239,40.18751],[115.8737,40.19268],[115.87647,40.19407],[115.87721,40.20076],[115.88275,40.20302],[115.88628,40.2063],[115.88317,40.2096],[115.88309,40.21105],[115.88506,40.21205],[115.8833,40.21707],[115.88487,40.21717],[115.8879,40.22232],[115.89136,40.22539],[115.89199,40.22815],[115.89764,40.23339],[115.89809,40.23642],[115.90669,40.23412],[115.91197,40.23448],[115.91359,40.23578],[115.91412,40.24026],[115.91662,40.24239],[115.91525,40.24495],[115.91588,40.24595],[115.92447,40.25172],[115.93367,40.25534],[115.94271,40.25356],[115.9488,40.25408],[115.94983,40.25598],[115.9523,40.25664],[115.96339,40.25771],[115.96894,40.26394],[115.96701,40.26561],[115.97337,40.26928],[115.97426,40.27192],[115.97684,40.27097],[115.9788,40.27228],[115.98181,40.2769],[115.97926,40.28027],[115.97935,40.28459],[115.98197,40.28457],[115.97868,40.28963],[115.9792,40.29186],[115.97816,40.29312],[115.98343,40.2985],[115.98712,40.29792],[115.99033,40.2995],[115.98791,40.3038],[115.98606,40.30384],[115.9809,40.30751],[115.97822,40.307],[115.97539,40.30911],[115.97628,40.31244],[115.97317,40.31918],[115.97947,40.32041],[115.98271,40.3242],[115.99341,40.32899],[115.99907,40.32546],[116.00128,40.32696],[116.00213,40.32954],[116.00491,40.33001],[116.00759,40.33314],[116.0169,40.33467],[116.02341,40.32818],[116.024,40.32614],[116.02599,40.32536],[116.02617,40.32049],[116.03114,40.31236],[116.03888,40.31218],[116.04248,40.31684],[116.04751,40.31705],[116.04975,40.31543],[116.05407,40.31769],[116.05697,40.32217],[116.05608,40.32504],[116.05418,40.32519],[116.05336,40.32685],[116.05786,40.32941],[116.05742,40.33094],[116.06165,40.33674],[116.06707,40.33658],[116.0734,40.33982],[116.07697,40.33982],[116.07849,40.33733],[116.08327,40.3358],[116.08664,40.33063],[116.09217,40.33116],[116.09866,40.33],[116.10591,40.33172],[116.11038,40.33082],[116.11046,40.32801],[116.11283,40.32748],[116.11664,40.32367],[116.11666,40.32091],[116.11811,40.32029],[116.1224,40.31281],[116.13324,40.31206],[116.13831,40.31403],[116.14225,40.31806],[116.13847,40.32428],[116.13806,40.33085],[116.14396,40.33621],[116.13764,40.33654],[116.1365,40.3385],[116.13775,40.34096],[116.14081,40.34262],[116.13886,40.34386],[116.13905,40.34628],[116.14262,40.34836],[116.14479,40.34855],[116.14607,40.34724],[116.14753,40.34065],[116.14473,40.33663],[116.14645,40.33593],[116.15054,40.33618],[116.1526,40.33772],[116.15312,40.34059],[116.15532,40.34177],[116.15477,40.34329],[116.15588,40.34453],[116.15385,40.34677],[116.14552,40.35105],[116.1484,40.35603],[116.14738,40.35848],[116.14838,40.36194],[116.15748,40.36356],[116.1593,40.36626],[116.1639,40.36563],[116.16879,40.36672],[116.1729,40.37022],[116.17687,40.37104],[116.18036,40.36769],[116.18498,40.37025],[116.18856,40.37036],[116.19125,40.37349],[116.19603,40.37316],[116.20823,40.37572],[116.20913,40.37623],[116.2081,40.37762],[116.21145,40.38176],[116.21407,40.38268],[116.21755,40.38127],[116.22222,40.38212],[116.22674,40.38127],[116.23185,40.37499],[116.23664,40.37743],[116.24196,40.3775],[116.24352,40.37982],[116.24708,40.37792],[116.24779,40.37447],[116.24902,40.37378],[116.2521,40.3763],[116.2529,40.37975],[116.25416,40.38022],[116.25342,40.38135],[116.2555,40.38271],[116.25818,40.38334],[116.26126,40.38056],[116.26336,40.38056],[116.27086,40.38269],[116.28284,40.37527],[116.28973,40.37992],[116.2895,40.38195],[116.29074,40.38317],[116.28881,40.38966],[116.29043,40.39286],[116.29376,40.39242],[116.29524,40.39082],[116.29558,40.38444],[116.29969,40.38508],[116.30268,40.38748],[116.31299,40.38945],[116.32078,40.38685],[116.32398,40.3873],[116.33263,40.38287],[116.33517,40.37973],[116.33781,40.37955],[116.34507,40.37316],[116.35537,40.37137],[116.35689,40.36868],[116.36004,40.36682],[116.35925,40.36551],[116.35724,40.36564],[116.35851,40.36463],[116.35754,40.36407],[116.35156,40.36519],[116.3528,40.36426],[116.34946,40.36045],[116.34886,40.35643],[116.35564,40.35682],[116.36039,40.35961],[116.36106,40.35782],[116.36392,40.35902],[116.36968,40.35636],[116.36711,40.35035],[116.36451,40.34911],[116.36991,40.34241],[116.36841,40.34009],[116.36828,40.3349],[116.36503,40.33236],[116.36518,40.33095],[116.37012,40.33322],[116.3759,40.33384],[116.37476,40.33611],[116.37544,40.33785],[116.38457,40.33905],[116.38654,40.33765],[116.39143,40.33839],[116.3965,40.33482],[116.39951,40.33595],[116.40377,40.33471],[116.40803,40.33523],[116.40899,40.33321],[116.41706,40.32984],[116.42437,40.33127],[116.42791,40.32921],[116.43422,40.32912],[116.43843,40.33318],[116.44061,40.33139],[116.43992,40.32905],[116.44368,40.32272],[116.44918,40.32112],[116.45024,40.3185],[116.45518,40.31634],[116.45575,40.31449],[116.45199,40.31197],[116.44923,40.30693],[116.44376,40.30246],[116.44858,40.29997],[116.44955,40.29726],[116.44882,40.29543],[116.45096,40.29305],[116.44956,40.28562],[116.45533,40.28485],[116.45728,40.28707],[116.46031,40.2871],[116.46319,40.28482],[116.46484,40.28551],[116.46963,40.283],[116.46957,40.28141],[116.47153,40.2803],[116.4788,40.28003],[116.48401,40.27591],[116.48428,40.26763],[116.48796,40.26468],[116.49325,40.26249],[116.50183,40.26298],[116.50595,40.26198],[116.50433,40.25962],[116.50302,40.25969],[116.5026,40.25561],[116.49995,40.25058],[116.49241,40.251],[116.48683,40.24701],[116.4821,40.24538],[116.48117,40.23596],[116.48389,40.22818],[116.48376,40.22519],[116.47679,40.22492],[116.47372,40.22121],[116.47225,40.20509],[116.48451,40.19649],[116.48801,40.1918],[116.48798,40.18468],[116.4902,40.18195],[116.48515,40.17676],[116.48332,40.17175],[116.48081,40.17193],[116.47656,40.16139],[116.47792,40.15998],[116.48462,40.16047],[116.48683,40.15827],[116.49231,40.15699],[116.49078,40.14899],[116.48665,40.14943],[116.4844,40.14682],[116.48078,40.14741],[116.48007,40.14529],[116.48231,40.14063],[116.48475,40.14008],[116.48722,40.12468],[116.48915,40.12273],[116.48906,40.11877],[116.49241,40.10915],[116.49233,40.10787],[116.4908,40.10785],[116.48905,40.10149],[116.4812,40.09701],[116.47335,40.09751],[116.4665,40.09495],[116.46475,40.09285],[116.46684,40.09019]]]},"properties":{"name":"昌平区","adcode":"110114","telecode":"010","level":"district","parent":{"name":"北京市市辖区","level":"city","adcode":"110100","center":{"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG:6.3:4326"}},"type":"Point","coordinates":[116.405285,39.904989]}},"center":{"lng":116.235906,"lat":40.218085}}}]}); + echarts.registerMap('朝阳区', {"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.39065,40.04127],[116.39297,40.04174],[116.39533,40.03677],[116.40575,40.0393],[116.40889,40.04328],[116.40661,40.04464],[116.40613,40.04976],[116.40845,40.04962],[116.40778,40.05268],[116.4098,40.05362],[116.40959,40.05562],[116.41561,40.05601],[116.42668,40.06028],[116.42323,40.06307],[116.42485,40.06432],[116.42395,40.0662],[116.42812,40.06218],[116.44286,40.06133],[116.4495,40.05877],[116.45163,40.05876],[116.45143,40.0613],[116.45415,40.06195],[116.45969,40.06009],[116.46166,40.06312],[116.46004,40.06396],[116.46215,40.06741],[116.45864,40.07038],[116.45881,40.07579],[116.46247,40.0766],[116.46186,40.08083],[116.46624,40.08235],[116.46576,40.08496],[116.46744,40.08676],[116.46684,40.09019],[116.46994,40.08988],[116.47355,40.08555],[116.48294,40.08375],[116.48294,40.08238],[116.48667,40.08104],[116.49934,40.0804],[116.51269,40.07066],[116.52823,40.07082],[116.54318,40.05941],[116.54827,40.06373],[116.54948,40.06299],[116.54892,40.06076],[116.55007,40.05951],[116.55108,40.06031],[116.55282,40.05895],[116.55158,40.05785],[116.55276,40.05488],[116.55143,40.05224],[116.54658,40.05029],[116.54871,40.04683],[116.56424,40.03966],[116.57047,40.03243],[116.57271,40.03316],[116.57769,40.02953],[116.57404,40.03311],[116.57881,40.0331],[116.57928,40.02934],[116.57781,40.02751],[116.60131,40.01388],[116.6199,40.0118],[116.62813,40.00765],[116.62576,40.00312],[116.63274,39.99982],[116.63759,40.00235],[116.63836,40.00176],[116.64269,39.99676],[116.64376,39.98962],[116.64031,39.99018],[116.63912,39.98688],[116.63291,39.98524],[116.63403,39.9817],[116.63982,39.98261],[116.64102,39.98043],[116.64032,39.97659],[116.64309,39.95299],[116.64527,39.94598],[116.63223,39.95054],[116.63049,39.94615],[116.63358,39.93934],[116.62982,39.93907],[116.6293,39.93131],[116.62573,39.93218],[116.62415,39.92998],[116.63057,39.92168],[116.62096,39.9231],[116.62037,39.92222],[116.62193,39.91948],[116.61985,39.91852],[116.62244,39.91828],[116.62301,39.91383],[116.62102,39.91319],[116.62202,39.91007],[116.62009,39.90833],[116.62267,39.90772],[116.62269,39.90658],[116.62081,39.9066],[116.6211,39.90443],[116.62338,39.90386],[116.62012,39.89808],[116.614,39.89681],[116.61531,39.8955],[116.61561,39.88979],[116.62814,39.89028],[116.62898,39.88159],[116.62431,39.88116],[116.62494,39.87725],[116.61999,39.86895],[116.62076,39.86752],[116.623,39.86764],[116.6234,39.86525],[116.62696,39.86068],[116.61346,39.85018],[116.60419,39.85007],[116.60468,39.84613],[116.60836,39.84654],[116.60191,39.84073],[116.60136,39.83406],[116.60225,39.83168],[116.59897,39.83166],[116.59922,39.82559],[116.59812,39.82468],[116.59767,39.82615],[116.59147,39.82636],[116.59159,39.82387],[116.58374,39.82492],[116.58711,39.82823],[116.57748,39.82755],[116.57714,39.83067],[116.5726,39.83211],[116.57233,39.83504],[116.56936,39.83496],[116.56946,39.83351],[116.56789,39.83348],[116.55859,39.83469],[116.54818,39.83425],[116.54505,39.83604],[116.54366,39.83508],[116.54268,39.83021],[116.54105,39.82955],[116.53567,39.83144],[116.53508,39.83286],[116.5332,39.83273],[116.53252,39.83107],[116.53815,39.82821],[116.53768,39.82668],[116.53495,39.8271],[116.53493,39.82482],[116.53166,39.8251],[116.5316,39.82664],[116.5255,39.82702],[116.52536,39.82975],[116.51463,39.83042],[116.51366,39.82773],[116.51061,39.82764],[116.51122,39.82351],[116.50944,39.82336],[116.50947,39.82156],[116.50279,39.819],[116.5058,39.81786],[116.49821,39.8157],[116.49772,39.81707],[116.49523,39.81617],[116.49536,39.8188],[116.49335,39.81908],[116.49296,39.82032],[116.49267,39.81854],[116.48995,39.81884],[116.48974,39.81665],[116.48563,39.81688],[116.48525,39.81273],[116.47425,39.80977],[116.46876,39.81446],[116.46332,39.81435],[116.4623,39.81647],[116.45399,39.82264],[116.44391,39.82095],[116.44285,39.82317],[116.44591,39.82669],[116.44151,39.82913],[116.44134,39.82742],[116.43668,39.82743],[116.43698,39.83066],[116.43006,39.83012],[116.43049,39.83187],[116.42522,39.8319],[116.42518,39.83272],[116.43206,39.83293],[116.43324,39.83721],[116.43679,39.83923],[116.43597,39.83968],[116.43673,39.84133],[116.43856,39.83935],[116.44059,39.83965],[116.44233,39.84127],[116.44232,39.84368],[116.44355,39.84373],[116.44381,39.84249],[116.44404,39.84428],[116.4467,39.84426],[116.44598,39.84833],[116.45049,39.8487],[116.45023,39.85],[116.4518,39.85009],[116.45114,39.85202],[116.45613,39.85014],[116.45796,39.8507],[116.45801,39.84914],[116.46031,39.84862],[116.46097,39.85085],[116.46309,39.85023],[116.46568,39.85342],[116.46772,39.85259],[116.46779,39.85601],[116.46331,39.85623],[116.46156,39.85899],[116.46056,39.85777],[116.45607,39.86122],[116.45607,39.85968],[116.45422,39.85938],[116.44819,39.86364],[116.4466,39.86278],[116.44636,39.86086],[116.44425,39.86609],[116.44296,39.86609],[116.44298,39.87036],[116.44478,39.87054],[116.44493,39.87262],[116.44364,39.87285],[116.44564,39.8789],[116.44407,39.89004],[116.44596,39.89015],[116.4459,39.89152],[116.45094,39.89024],[116.45239,39.89287],[116.45087,39.89287],[116.45087,39.89409],[116.44716,39.89419],[116.44588,39.90103],[116.44907,39.90125],[116.44872,39.90324],[116.43648,39.90205],[116.43427,39.92954],[116.44368,39.92867],[116.44375,39.93692],[116.44684,39.94599],[116.44364,39.94621],[116.44177,39.94503],[116.43865,39.94652],[116.44133,39.94711],[116.44216,39.94911],[116.44046,39.94848],[116.44025,39.94973],[116.43926,39.94954],[116.43909,39.95219],[116.43542,39.95212],[116.4367,39.94925],[116.42948,39.95016],[116.4302,39.95179],[116.42901,39.95727],[116.43062,39.95656],[116.43051,39.95925],[116.42543,39.95916],[116.42487,39.96229],[116.4142,39.96218],[116.41414,39.96381],[116.41142,39.96493],[116.4111,39.97145],[116.40879,39.97146],[116.40936,39.97404],[116.40751,39.974],[116.40787,39.96218],[116.38951,39.96315],[116.38948,39.96104],[116.38766,39.96092],[116.38802,39.9631],[116.38906,39.96314],[116.38819,39.96559],[116.39028,39.96621],[116.39001,39.9684],[116.39416,39.96939],[116.39409,39.97286],[116.38091,39.97272],[116.3812,39.97798],[116.37681,39.99258],[116.35088,40.02671],[116.39509,40.03286],[116.39025,40.03659],[116.39065,40.04127]],[[116.59126,40.04749],[116.5912,40.05179],[116.58951,40.04982],[116.58796,40.05054],[116.59013,40.05616],[116.58962,40.05966],[116.58743,40.06027],[116.58871,40.06087],[116.58659,40.07433],[116.58139,40.07382],[116.58141,40.06785],[116.5797,40.07234],[116.57878,40.07227],[116.57432,40.09613],[116.57407,40.10781],[116.57553,40.10793],[116.57652,40.10431],[116.57831,40.10273],[116.58037,40.08836],[116.59589,40.09022],[116.59586,40.09322],[116.59871,40.09351],[116.59839,40.10387],[116.6046,40.08799],[116.60346,40.08681],[116.60552,40.07361],[116.60667,40.07377],[116.60562,40.07302],[116.6084,40.05491],[116.60702,40.05255],[116.59852,40.05254],[116.59877,40.05041],[116.60164,40.04766],[116.59941,40.04717],[116.59989,40.04245],[116.59782,40.04255],[116.59785,40.04149],[116.59456,40.04325],[116.59203,40.04308],[116.59126,40.04749]]]},"properties":{"name":"朝阳区","adcode":"110105","telecode":"010","level":"district","parent":{"name":"北京市市辖区","level":"city","adcode":"110100","center":{"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG:6.3:4326"}},"type":"Point","coordinates":[116.405285,39.904989]}},"center":{"lng":116.486409,"lat":39.921489}}}]}); + echarts.registerMap('海淀区', {"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.04887,40.0853],[116.05145,40.09118],[116.05383,40.09241],[116.0559,40.09643],[116.06188,40.09939],[116.06293,40.10282],[116.06946,40.10492],[116.07267,40.10926],[116.07386,40.11544],[116.07809,40.11512],[116.08444,40.12025],[116.08904,40.11918],[116.09606,40.12125],[116.09922,40.11883],[116.10022,40.11629],[116.10225,40.11599],[116.10586,40.11801],[116.11308,40.11517],[116.12768,40.11639],[116.12941,40.11474],[116.1322,40.11509],[116.13292,40.12136],[116.1527,40.12177],[116.16957,40.12456],[116.1674,40.12845],[116.17178,40.12794],[116.17065,40.13279],[116.16863,40.13544],[116.16769,40.14184],[116.17413,40.14359],[116.18042,40.14729],[116.18049,40.15046],[116.1831,40.15334],[116.18269,40.1581],[116.19066,40.15534],[116.19206,40.15567],[116.19428,40.16008],[116.20216,40.16099],[116.20322,40.15376],[116.20567,40.15018],[116.20587,40.14394],[116.20954,40.14063],[116.21223,40.14055],[116.21629,40.1431],[116.2338,40.13658],[116.24705,40.13621],[116.24563,40.12127],[116.24504,40.11883],[116.24183,40.1184],[116.24335,40.11328],[116.24054,40.10979],[116.2405,40.10801],[116.2446,40.1056],[116.25189,40.10663],[116.25587,40.10448],[116.25839,40.10511],[116.25957,40.1069],[116.25735,40.1103],[116.25802,40.11194],[116.26334,40.11058],[116.26328,40.10733],[116.26465,40.10558],[116.26408,40.10171],[116.26695,40.10136],[116.26708,40.09873],[116.26248,40.09847],[116.26272,40.09663],[116.26493,40.09686],[116.26524,40.0947],[116.27332,40.09556],[116.27433,40.09307],[116.2731,40.0927],[116.27989,40.07975],[116.29035,40.08314],[116.30294,40.06081],[116.30599,40.06305],[116.30945,40.06061],[116.31326,40.06229],[116.31332,40.06043],[116.3183,40.06167],[116.32595,40.0548],[116.33883,40.05893],[116.34027,40.05508],[116.34336,40.05546],[116.34268,40.05963],[116.34696,40.06043],[116.34668,40.06366],[116.34918,40.06422],[116.34974,40.06247],[116.3516,40.06286],[116.35142,40.06481],[116.36303,40.06594],[116.36315,40.06897],[116.37036,40.06932],[116.37254,40.06843],[116.37175,40.06723],[116.37336,40.06562],[116.37838,40.06628],[116.3811,40.06534],[116.38193,40.0664],[116.38285,40.06158],[116.37877,40.0603],[116.37927,40.059],[116.37226,40.05786],[116.373,40.05434],[116.36739,40.05344],[116.3696,40.04696],[116.3715,40.04713],[116.37203,40.045],[116.37626,40.04542],[116.3769,40.04275],[116.38472,40.04294],[116.39065,40.04127],[116.39025,40.03659],[116.39509,40.03286],[116.35088,40.02671],[116.37699,39.99226],[116.38126,39.97768],[116.38041,39.96817],[116.37038,39.96791],[116.37196,39.9486],[116.35639,39.94453],[116.35526,39.9518],[116.35141,39.95054],[116.35172,39.94376],[116.35038,39.94293],[116.34663,39.94362],[116.34115,39.94196],[116.33968,39.94306],[116.3389,39.94195],[116.33253,39.94413],[116.32796,39.94237],[116.3309,39.93869],[116.33306,39.93856],[116.3347,39.92282],[116.33482,39.90525],[116.33597,39.90343],[116.33535,39.89844],[116.33706,39.8987],[116.3373,39.89738],[116.31319,39.89678],[116.3045,39.89259],[116.30724,39.89241],[116.30657,39.89089],[116.30259,39.8909],[116.30344,39.88905],[116.29923,39.88957],[116.29634,39.88664],[116.295,39.88674],[116.29498,39.89649],[116.25298,39.89695],[116.25298,39.91555],[116.24925,39.91627],[116.24969,39.91785],[116.25299,39.91775],[116.2517,39.91981],[116.25282,39.92185],[116.24792,39.92074],[116.24685,39.91887],[116.23777,39.91911],[116.23696,39.9168],[116.23158,39.91663],[116.2282,39.91793],[116.2174,39.91705],[116.2169,39.91799],[116.21052,39.91665],[116.20682,39.91824],[116.20771,39.9259],[116.21569,39.9271],[116.21591,39.92867],[116.21308,39.92935],[116.21425,39.93115],[116.21633,39.93139],[116.21334,39.93303],[116.21309,39.93454],[116.21599,39.93424],[116.21505,39.93577],[116.21629,39.93639],[116.21569,39.94127],[116.21854,39.94134],[116.21866,39.9436],[116.21547,39.94374],[116.21555,39.94576],[116.21336,39.94636],[116.21283,39.94895],[116.20925,39.95107],[116.20586,39.95577],[116.20197,39.95774],[116.20112,39.96111],[116.19074,39.96536],[116.19068,39.96825],[116.1877,39.96839],[116.18581,39.97028],[116.18531,39.97798],[116.18692,39.98036],[116.18658,39.98391],[116.18508,39.98561],[116.17891,39.98829],[116.17801,39.98221],[116.17148,39.977],[116.16923,39.97937],[116.16856,39.98457],[116.16685,39.98757],[116.16157,39.98454],[116.15812,39.98414],[116.15708,39.98521],[116.15612,39.98914],[116.15157,39.99344],[116.15596,39.99796],[116.16167,39.99999],[116.17278,40.001],[116.17542,40.00631],[116.17307,40.00892],[116.17126,40.00887],[116.16457,40.01454],[116.16388,40.01686],[116.15736,40.02102],[116.1514,40.02287],[116.14863,40.02219],[116.14332,40.02683],[116.13475,40.03061],[116.12957,40.03111],[116.1236,40.02965],[116.11452,40.033],[116.10549,40.0322],[116.10081,40.0338],[116.0984,40.03382],[116.09507,40.03178],[116.08424,40.03091],[116.08054,40.03315],[116.07817,40.03275],[116.07485,40.03711],[116.07513,40.03992],[116.06805,40.05193],[116.0713,40.05903],[116.07136,40.06176],[116.06612,40.06565],[116.06402,40.07303],[116.05972,40.07538],[116.058,40.07492],[116.05276,40.08075],[116.05132,40.08434],[116.04887,40.0853]]]},"properties":{"name":"海淀区","adcode":"110108","telecode":"010","level":"district","parent":{"name":"北京市市辖区","level":"city","adcode":"110100","center":{"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG:6.3:4326"}},"type":"Point","coordinates":[116.405285,39.904989]}},"center":{"lng":116.310316,"lat":39.956074}}}]}); + echarts.registerMap('石景山区', {"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.25909,39.89667],[116.25828,39.89516],[116.25656,39.89614],[116.24809,39.89589],[116.2423,39.8936],[116.23981,39.89533],[116.23925,39.89386],[116.23782,39.89383],[116.23788,39.89198],[116.23367,39.89217],[116.2349,39.88962],[116.22783,39.88977],[116.22773,39.88384],[116.22295,39.88399],[116.22278,39.88139],[116.21953,39.88134],[116.2191,39.87671],[116.2109,39.87808],[116.21209,39.87467],[116.20812,39.87413],[116.20569,39.87892],[116.19943,39.88328],[116.19552,39.88343],[116.19036,39.88153],[116.1791,39.88269],[116.17093,39.88549],[116.1699,39.88821],[116.16887,39.88718],[116.16697,39.8888],[116.1611,39.89681],[116.15454,39.89952],[116.15279,39.90664],[116.14686,39.91007],[116.13929,39.9221],[116.12821,39.9254],[116.12782,39.93034],[116.12477,39.93491],[116.11987,39.93276],[116.11541,39.93705],[116.11195,39.94293],[116.11345,39.94837],[116.11452,39.9492],[116.11576,39.94833],[116.12053,39.951],[116.11746,39.95369],[116.11883,39.95477],[116.11527,39.95834],[116.11894,39.96169],[116.12072,39.96119],[116.12298,39.96757],[116.1204,39.96915],[116.12029,39.97064],[116.11659,39.97194],[116.11345,39.98152],[116.11893,39.98612],[116.14469,39.98919],[116.15157,39.99344],[116.15612,39.98914],[116.15812,39.98414],[116.16157,39.98454],[116.16685,39.98757],[116.16784,39.98676],[116.16923,39.97937],[116.17148,39.977],[116.17801,39.98221],[116.17891,39.98829],[116.18448,39.9861],[116.18658,39.98391],[116.18692,39.98036],[116.18531,39.97798],[116.18581,39.97028],[116.1877,39.96839],[116.19068,39.96825],[116.19074,39.96536],[116.20112,39.96111],[116.20197,39.95774],[116.20586,39.95577],[116.20925,39.95107],[116.21283,39.94895],[116.21336,39.94636],[116.21555,39.94576],[116.21547,39.94374],[116.21866,39.9436],[116.21854,39.94134],[116.21569,39.94127],[116.21629,39.93639],[116.21505,39.93577],[116.21599,39.93424],[116.21309,39.93454],[116.21334,39.93303],[116.21633,39.93139],[116.21425,39.93115],[116.21308,39.92935],[116.21591,39.92867],[116.21569,39.9271],[116.20771,39.9259],[116.20682,39.91824],[116.21052,39.91665],[116.2169,39.91799],[116.2174,39.91705],[116.2282,39.91793],[116.23158,39.91663],[116.23696,39.9168],[116.23777,39.91911],[116.24685,39.91887],[116.24792,39.92074],[116.25282,39.92185],[116.2517,39.91981],[116.25299,39.91775],[116.24969,39.91785],[116.24925,39.91627],[116.25298,39.91555],[116.25291,39.89725],[116.25992,39.89695],[116.25909,39.89667]]]},"properties":{"name":"石景山区","adcode":"110107","telecode":"010","level":"district","parent":{"name":"北京市市辖区","level":"city","adcode":"110100","center":{"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG:6.3:4326"}},"type":"Point","coordinates":[116.405285,39.904989]}},"center":{"lng":116.195445,"lat":39.914601}}}]}); + echarts.registerMap('西城区', {"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.38766,39.96092],[116.38678,39.95702],[116.39373,39.95737],[116.39427,39.94063],[116.39617,39.94006],[116.3967,39.92831],[116.39923,39.92813],[116.39946,39.92357],[116.39218,39.92243],[116.39184,39.91123],[116.39268,39.91122],[116.39225,39.90788],[116.39556,39.90799],[116.39602,39.89971],[116.3977,39.89858],[116.3991,39.8722],[116.35057,39.8687],[116.34904,39.87001],[116.34948,39.8736],[116.34428,39.87365],[116.34223,39.87613],[116.33453,39.87513],[116.32636,39.87685],[116.32134,39.875],[116.32169,39.88159],[116.32265,39.8816],[116.32345,39.88705],[116.32442,39.88705],[116.32419,39.88968],[116.32669,39.88973],[116.32581,39.89707],[116.3373,39.89738],[116.33706,39.8987],[116.33535,39.89844],[116.33597,39.90343],[116.33482,39.90525],[116.3347,39.92282],[116.33306,39.93856],[116.3309,39.93869],[116.32796,39.94237],[116.33253,39.94413],[116.3389,39.94195],[116.33968,39.94306],[116.34115,39.94196],[116.34663,39.94362],[116.35038,39.94293],[116.35172,39.94376],[116.35141,39.95054],[116.35526,39.9518],[116.35639,39.94453],[116.37196,39.9486],[116.37038,39.96791],[116.38041,39.96817],[116.38091,39.97272],[116.39409,39.97286],[116.39416,39.96939],[116.39001,39.9684],[116.39028,39.96621],[116.38819,39.96559],[116.38906,39.96314],[116.38802,39.9631],[116.38766,39.96092]]]},"properties":{"name":"西城区","adcode":"110102","telecode":"010","level":"district","parent":{"name":"北京市市辖区","level":"city","adcode":"110100","center":{"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG:6.3:4326"}},"type":"Point","coordinates":[116.405285,39.904989]}},"center":{"lng":116.366794,"lat":39.915309}}}]}); + echarts.registerMap('通州区', {"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.72552,39.62407],[116.72517,39.6269],[116.72139,39.62942],[116.72278,39.63114],[116.72193,39.63478],[116.72438,39.6349],[116.7235,39.63903],[116.71264,39.64025],[116.71042,39.63969],[116.71053,39.63793],[116.70668,39.64178],[116.70288,39.64992],[116.70227,39.659],[116.70494,39.66789],[116.70377,39.67415],[116.69354,39.67494],[116.69373,39.67651],[116.6927,39.6768],[116.68556,39.67688],[116.68078,39.6749],[116.67912,39.67623],[116.67521,39.67624],[116.66857,39.6746],[116.66834,39.67656],[116.6662,39.67643],[116.66602,39.67968],[116.66957,39.68364],[116.66656,39.68711],[116.66288,39.68647],[116.6624,39.68855],[116.65817,39.68857],[116.6581,39.68615],[116.6535,39.68629],[116.65133,39.68787],[116.65152,39.69447],[116.64709,39.69479],[116.64625,39.70045],[116.64866,39.70087],[116.64792,39.70358],[116.6531,39.70383],[116.653,39.70862],[116.64459,39.70964],[116.6385,39.71716],[116.63763,39.72394],[116.6312,39.72297],[116.63137,39.72481],[116.62812,39.72775],[116.62164,39.72807],[116.62187,39.72583],[116.61625,39.72558],[116.61573,39.72196],[116.61481,39.72188],[116.61478,39.7239],[116.61299,39.72386],[116.61266,39.72202],[116.60885,39.72128],[116.60915,39.71937],[116.60456,39.71873],[116.60402,39.71475],[116.60181,39.71285],[116.5902,39.71152],[116.59015,39.71334],[116.5812,39.71252],[116.57989,39.71024],[116.57347,39.70912],[116.57327,39.7145],[116.5459,39.71513],[116.53567,39.71188],[116.53055,39.71327],[116.53256,39.71528],[116.52677,39.7172],[116.52936,39.71981],[116.53461,39.71807],[116.53697,39.72152],[116.53782,39.72805],[116.53184,39.73002],[116.53215,39.73871],[116.53241,39.73962],[116.53799,39.73807],[116.53995,39.74158],[116.53624,39.74066],[116.53248,39.74175],[116.53232,39.74304],[116.52755,39.74331],[116.53204,39.74863],[116.52266,39.7497],[116.52516,39.7624],[116.52054,39.76564],[116.52285,39.7692],[116.52775,39.76207],[116.5406,39.76103],[116.53992,39.76604],[116.53704,39.76608],[116.53647,39.76853],[116.54575,39.7687],[116.54452,39.77224],[116.54194,39.77141],[116.54248,39.77071],[116.53578,39.76998],[116.5305,39.77867],[116.53795,39.78131],[116.53286,39.78635],[116.53293,39.78833],[116.53123,39.79001],[116.53252,39.79029],[116.53099,39.79174],[116.53548,39.79352],[116.53402,39.79577],[116.53758,39.79669],[116.53511,39.80019],[116.53756,39.80029],[116.53751,39.80255],[116.54141,39.80303],[116.54177,39.80415],[116.54063,39.81184],[116.53838,39.81514],[116.53618,39.81552],[116.53573,39.82017],[116.53959,39.82156],[116.53974,39.82371],[116.53536,39.82401],[116.53495,39.8271],[116.53768,39.82668],[116.53815,39.82821],[116.53252,39.83107],[116.5332,39.83273],[116.53508,39.83286],[116.53567,39.83144],[116.54105,39.82955],[116.54268,39.83021],[116.54366,39.83508],[116.54505,39.83604],[116.54818,39.83425],[116.55859,39.83469],[116.56789,39.83348],[116.56946,39.83351],[116.56936,39.83496],[116.57233,39.83504],[116.5726,39.83211],[116.57714,39.83067],[116.57748,39.82755],[116.58711,39.82823],[116.58374,39.82492],[116.59159,39.82387],[116.59147,39.82636],[116.59767,39.82615],[116.59812,39.82468],[116.59922,39.82559],[116.59897,39.83166],[116.60225,39.83168],[116.60136,39.83406],[116.60191,39.84073],[116.60836,39.84654],[116.60468,39.84613],[116.60419,39.85007],[116.61346,39.85018],[116.62696,39.86068],[116.6234,39.86525],[116.623,39.86764],[116.62076,39.86752],[116.61999,39.86895],[116.62494,39.87725],[116.62431,39.88116],[116.62898,39.88159],[116.62814,39.89028],[116.61561,39.88979],[116.61531,39.8955],[116.614,39.89681],[116.62012,39.89808],[116.62338,39.90386],[116.6211,39.90443],[116.62081,39.9066],[116.62269,39.90658],[116.62267,39.90772],[116.62009,39.90833],[116.62202,39.91007],[116.62102,39.91319],[116.62301,39.91383],[116.62244,39.91828],[116.61985,39.91852],[116.62193,39.91948],[116.62037,39.92222],[116.62096,39.9231],[116.63057,39.92168],[116.62415,39.92998],[116.62573,39.93218],[116.6293,39.93131],[116.62982,39.93907],[116.63358,39.93934],[116.63049,39.94615],[116.63223,39.95054],[116.64527,39.94598],[116.64309,39.95299],[116.64032,39.97659],[116.64102,39.98043],[116.63982,39.98261],[116.63403,39.9817],[116.63291,39.98524],[116.63912,39.98688],[116.64031,39.99018],[116.64376,39.98962],[116.64385,39.99298],[116.64269,39.99676],[116.63759,40.00235],[116.63274,39.99982],[116.62576,40.00312],[116.62813,40.00765],[116.62168,40.01103],[116.60319,40.01332],[116.59555,40.01752],[116.59739,40.01942],[116.60084,40.01886],[116.60295,40.02345],[116.60277,40.02851],[116.60788,40.02954],[116.60765,40.03091],[116.61406,40.03175],[116.61413,40.02818],[116.6194,40.02673],[116.62011,40.02251],[116.62425,40.02367],[116.62431,40.02257],[116.62669,40.02257],[116.62705,40.02151],[116.63103,40.02167],[116.63062,40.02302],[116.63351,40.02367],[116.63617,40.0197],[116.65119,40.02575],[116.65168,40.02191],[116.65564,40.01856],[116.66012,40.02165],[116.66142,40.01878],[116.66471,40.01904],[116.66549,40.01525],[116.66769,40.01518],[116.66771,40.01309],[116.67364,40.01498],[116.67847,40.01506],[116.67881,40.01379],[116.68378,40.01446],[116.68602,40.01186],[116.68629,40.00827],[116.68837,40.00918],[116.68558,40.01657],[116.69188,40.01712],[116.69314,40.01553],[116.69724,40.0161],[116.70393,40.02014],[116.70608,40.02556],[116.70768,40.02476],[116.70934,40.02669],[116.71633,40.02376],[116.71737,40.0196],[116.72014,40.02004],[116.71972,40.02251],[116.72423,40.02128],[116.72484,40.02426],[116.73204,40.02222],[116.73234,40.0251],[116.73359,40.02583],[116.73713,40.02557],[116.73715,40.02761],[116.74223,40.02751],[116.7424,40.02645],[116.74552,40.02662],[116.74558,40.02535],[116.74706,40.02539],[116.74703,40.02198],[116.7496,40.02199],[116.7499,40.01982],[116.75176,40.01996],[116.75328,40.01592],[116.76479,40.01605],[116.77175,40.01447],[116.77047,40.01163],[116.77105,40.00972],[116.77576,40.00294],[116.77537,39.99276],[116.76676,39.98228],[116.76643,39.97635],[116.75812,39.96813],[116.75733,39.96148],[116.76282,39.95601],[116.78058,39.94972],[116.78257,39.94756],[116.78332,39.93604],[116.78217,39.91042],[116.78423,39.90222],[116.7847,39.89142],[116.78708,39.88683],[116.79475,39.88125],[116.80414,39.87794],[116.80425,39.88488],[116.80824,39.88491],[116.8083,39.88963],[116.8123,39.88971],[116.81312,39.8813],[116.8158,39.88131],[116.81702,39.87866],[116.82513,39.87868],[116.83689,39.86474],[116.83941,39.86578],[116.84724,39.85863],[116.85254,39.85905],[116.85718,39.84889],[116.86552,39.84691],[116.86605,39.8439],[116.87191,39.84194],[116.87383,39.8424],[116.87368,39.8437],[116.87863,39.84225],[116.8783,39.84522],[116.88364,39.84552],[116.89163,39.83862],[116.8946,39.83417],[116.90025,39.8316],[116.90507,39.83062],[116.90745,39.83267],[116.90224,39.84327],[116.90282,39.84825],[116.90873,39.84887],[116.90865,39.85023],[116.91038,39.8506],[116.91744,39.84691],[116.92589,39.8354],[116.92887,39.82092],[116.92848,39.81308],[116.93864,39.80491],[116.94237,39.80346],[116.94285,39.80162],[116.93481,39.80115],[116.93628,39.7951],[116.93831,39.79313],[116.95084,39.79153],[116.9536,39.78757],[116.9538,39.78607],[116.94797,39.78543],[116.94974,39.77855],[116.94616,39.7774],[116.94589,39.77923],[116.94263,39.77849],[116.93927,39.78135],[116.92172,39.78063],[116.9165,39.77593],[116.92091,39.76917],[116.91401,39.76553],[116.91544,39.76288],[116.91348,39.76142],[116.91061,39.76228],[116.90829,39.76671],[116.90182,39.76362],[116.90241,39.75913],[116.89956,39.75863],[116.90155,39.75521],[116.90725,39.75595],[116.90764,39.75166],[116.90925,39.75139],[116.90978,39.74862],[116.91186,39.74795],[116.91318,39.74597],[116.91187,39.74489],[116.91445,39.74176],[116.91067,39.74095],[116.91107,39.73798],[116.91263,39.73815],[116.91294,39.73568],[116.91636,39.73588],[116.91672,39.7314],[116.9112,39.7315],[116.90228,39.72942],[116.90255,39.72767],[116.89976,39.72752],[116.89958,39.72609],[116.88759,39.72551],[116.88276,39.71861],[116.88463,39.71614],[116.88656,39.71643],[116.88712,39.71432],[116.88593,39.71415],[116.88705,39.71282],[116.88637,39.707],[116.88818,39.70278],[116.88664,39.70183],[116.88908,39.7002],[116.89035,39.7009],[116.89385,39.69588],[116.89242,39.6952],[116.89374,39.69334],[116.88782,39.69095],[116.88991,39.68766],[116.89143,39.6878],[116.89049,39.68902],[116.89251,39.68998],[116.89315,39.68902],[116.90289,39.69058],[116.90469,39.68979],[116.90928,39.6829],[116.90511,39.68199],[116.90653,39.67765],[116.89733,39.67516],[116.89779,39.67406],[116.896,39.67356],[116.89536,39.67501],[116.89115,39.67408],[116.88899,39.67557],[116.88323,39.67536],[116.87317,39.67138],[116.87586,39.66919],[116.87473,39.66838],[116.87122,39.67103],[116.86398,39.67039],[116.86049,39.66727],[116.84995,39.66755],[116.8495,39.66247],[116.85092,39.66198],[116.85125,39.65234],[116.84088,39.64905],[116.83914,39.64754],[116.84076,39.64424],[116.8379,39.64363],[116.83487,39.64518],[116.83356,39.64412],[116.83455,39.64185],[116.82995,39.63955],[116.82914,39.64033],[116.82689,39.63821],[116.82926,39.63562],[116.82636,39.63313],[116.83844,39.62222],[116.83413,39.62149],[116.8354,39.617],[116.83185,39.61701],[116.82504,39.61388],[116.82399,39.61718],[116.81953,39.619],[116.80971,39.61453],[116.80098,39.61336],[116.80209,39.6123],[116.79002,39.61054],[116.79284,39.60216],[116.78938,39.60259],[116.7895,39.59753],[116.79074,39.59751],[116.79071,39.59604],[116.78546,39.59621],[116.78507,39.59349],[116.77935,39.59309],[116.77489,39.59916],[116.7742,39.60545],[116.77035,39.60571],[116.77015,39.60756],[116.76262,39.61381],[116.74868,39.61994],[116.74729,39.61835],[116.74388,39.61898],[116.74401,39.61682],[116.73787,39.61538],[116.73761,39.61734],[116.73338,39.61721],[116.73282,39.61919],[116.73051,39.61915],[116.73019,39.62293],[116.72723,39.62276],[116.72552,39.62407]]]},"properties":{"name":"通州区","adcode":"110112","telecode":"010","level":"district","parent":{"name":"北京市市辖区","level":"city","adcode":"110100","center":{"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG:6.3:4326"}},"type":"Point","coordinates":[116.405285,39.904989]}},"center":{"lng":116.658603,"lat":39.902486}}}]}); + echarts.registerMap('门头沟区', {"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.16703,39.88876],[116.16336,39.88689],[116.15364,39.88877],[116.1541,39.88666],[116.15098,39.88405],[116.14761,39.88528],[116.14074,39.88424],[116.13168,39.88127],[116.12591,39.87795],[116.11974,39.87748],[116.11225,39.87324],[116.10543,39.87254],[116.10359,39.87047],[116.10415,39.86884],[116.10177,39.86769],[116.09583,39.86904],[116.09101,39.86647],[116.08718,39.86616],[116.07833,39.87031],[116.07045,39.86845],[116.06735,39.86576],[116.07019,39.86042],[116.07099,39.85371],[116.06233,39.85236],[116.06032,39.85332],[116.05656,39.85096],[116.05464,39.84596],[116.04583,39.84732],[116.0418,39.84593],[116.04181,39.84488],[116.03644,39.84441],[116.03309,39.84591],[116.02613,39.84178],[116.01907,39.84062],[116.01752,39.84871],[116.01034,39.85015],[115.99035,39.84025],[115.98847,39.84112],[115.98851,39.84513],[115.98428,39.84911],[115.98817,39.85984],[115.98679,39.86471],[115.99287,39.86736],[115.99724,39.87517],[115.99018,39.87635],[115.97627,39.8705],[115.97737,39.86893],[115.97656,39.86825],[115.96875,39.86772],[115.97016,39.87169],[115.96782,39.87206],[115.96132,39.86787],[115.95414,39.86679],[115.94709,39.87263],[115.92533,39.87748],[115.92186,39.88417],[115.92276,39.88552],[115.93581,39.89824],[115.94497,39.90184],[115.94433,39.90508],[115.94571,39.91097],[115.94116,39.91751],[115.93588,39.91776],[115.92785,39.91426],[115.9181,39.91394],[115.91157,39.91487],[115.90394,39.91403],[115.89012,39.91729],[115.87883,39.91596],[115.87311,39.91248],[115.86833,39.90557],[115.86089,39.90136],[115.84526,39.89705],[115.84024,39.90029],[115.83511,39.89959],[115.82691,39.91057],[115.8188,39.91395],[115.81108,39.91379],[115.80684,39.91966],[115.80173,39.92169],[115.77426,39.92059],[115.76939,39.92524],[115.76359,39.92328],[115.76149,39.92099],[115.74962,39.91766],[115.74889,39.91521],[115.73126,39.90786],[115.72161,39.90683],[115.71959,39.90462],[115.70917,39.90512],[115.70555,39.90318],[115.69951,39.90271],[115.69177,39.8997],[115.68928,39.89618],[115.68256,39.89305],[115.68102,39.88862],[115.67815,39.88655],[115.67105,39.88598],[115.66753,39.88388],[115.65486,39.8825],[115.64886,39.87541],[115.64471,39.87597],[115.64002,39.87155],[115.63098,39.87198],[115.6231,39.86695],[115.62197,39.86327],[115.61636,39.85753],[115.6131,39.84375],[115.6055,39.83908],[115.60394,39.83633],[115.60454,39.83444],[115.59934,39.82915],[115.59665,39.82149],[115.59117,39.81854],[115.58824,39.81404],[115.57736,39.81254],[115.56927,39.81327],[115.56737,39.81618],[115.56347,39.81642],[115.54773,39.82285],[115.54584,39.82629],[115.53914,39.8282],[115.53567,39.83064],[115.53049,39.82992],[115.52651,39.83524],[115.51431,39.83772],[115.51256,39.84374],[115.51086,39.84496],[115.51645,39.84818],[115.52248,39.85898],[115.52182,39.86802],[115.52763,39.87011],[115.5292,39.87595],[115.52631,39.87565],[115.51667,39.88041],[115.5107,39.88099],[115.50902,39.88417],[115.5154,39.89253],[115.51691,39.89267],[115.52301,39.89892],[115.52195,39.90073],[115.50909,39.91031],[115.5069,39.91388],[115.50363,39.9159],[115.50131,39.9157],[115.49894,39.91795],[115.49427,39.91818],[115.49345,39.92035],[115.48709,39.92395],[115.4864,39.92737],[115.48349,39.93025],[115.48069,39.93584],[115.46349,39.94045],[115.45232,39.94819],[115.44704,39.9488],[115.4432,39.9519],[115.43803,39.95257],[115.43576,39.95092],[115.43096,39.95082],[115.42931,39.94952],[115.42616,39.95035],[115.42623,39.95294],[115.42374,39.9557],[115.42691,39.9653],[115.42457,39.9672],[115.42347,39.97043],[115.42558,39.97475],[115.42588,39.97882],[115.42764,39.97947],[115.42882,39.98263],[115.42852,39.98434],[115.43137,39.98593],[115.43318,39.98877],[115.4439,39.99464],[115.45031,39.99304],[115.44817,40.00075],[115.4492,40.00199],[115.44312,40.00663],[115.44209,40.01055],[115.44664,40.01652],[115.45208,40.02079],[115.45405,40.02447],[115.45453,40.0297],[115.45968,40.03061],[115.46067,40.03218],[115.46841,40.0319],[115.47761,40.03554],[115.47973,40.03837],[115.48383,40.03945],[115.48791,40.04336],[115.48833,40.04613],[115.49003,40.04754],[115.49827,40.05233],[115.50096,40.05248],[115.5014,40.05523],[115.50544,40.05564],[115.50563,40.05739],[115.51034,40.06258],[115.50957,40.06542],[115.51495,40.06694],[115.52733,40.07607],[115.53789,40.07777],[115.54393,40.07587],[115.55217,40.07925],[115.55277,40.08157],[115.55548,40.08263],[115.55588,40.0853],[115.55373,40.09166],[115.55597,40.09251],[115.5576,40.09509],[115.56035,40.09519],[115.56439,40.0983],[115.56673,40.09822],[115.56765,40.09655],[115.5706,40.09737],[115.57558,40.10098],[115.57854,40.09637],[115.58191,40.09523],[115.59071,40.09639],[115.59209,40.09996],[115.59137,40.10303],[115.59281,40.10651],[115.5924,40.11018],[115.59444,40.10898],[115.59446,40.11563],[115.59911,40.12002],[115.61003,40.11966],[115.61622,40.11715],[115.62198,40.11872],[115.62506,40.1163],[115.63168,40.11785],[115.63594,40.1158],[115.64178,40.11588],[115.64377,40.11705],[115.64186,40.12105],[115.64462,40.12431],[115.64459,40.12664],[115.65452,40.1313],[115.6578,40.12965],[115.65774,40.1281],[115.67398,40.12978],[115.6812,40.13268],[115.68698,40.13053],[115.69229,40.13224],[115.69684,40.12679],[115.70217,40.12819],[115.71206,40.1269],[115.71104,40.12893],[115.70564,40.12938],[115.69978,40.13215],[115.71062,40.13459],[115.71645,40.13317],[115.72422,40.1288],[115.72887,40.12993],[115.73483,40.12951],[115.74925,40.13771],[115.75373,40.14348],[115.75487,40.1456],[115.7543,40.14816],[115.75035,40.15084],[115.74954,40.15299],[115.75332,40.15891],[115.75465,40.16356],[115.75689,40.16431],[115.76222,40.16261],[115.76821,40.16555],[115.77303,40.17619],[115.78701,40.17871],[115.78694,40.17042],[115.80656,40.15326],[115.82163,40.1528],[115.82741,40.14963],[115.82905,40.14997],[115.83575,40.14543],[115.83424,40.15024],[115.84639,40.14709],[115.85334,40.14933],[115.85642,40.14745],[115.86519,40.14864],[115.87078,40.14428],[115.87457,40.14378],[115.8816,40.13907],[115.90044,40.13871],[115.90386,40.13599],[115.9072,40.13847],[115.91275,40.1372],[115.91337,40.13849],[115.91604,40.1353],[115.92204,40.13422],[115.93385,40.1246],[115.94651,40.1104],[115.94794,40.10732],[115.94523,40.10559],[115.94379,40.10278],[115.95267,40.10103],[115.9521,40.0997],[115.9566,40.09604],[115.95727,40.10061],[115.96299,40.10212],[115.96209,40.09442],[115.96047,40.09245],[115.96658,40.08456],[115.96699,40.07792],[115.96858,40.07549],[115.97719,40.07896],[115.97722,40.08012],[115.98023,40.0818],[115.98752,40.08353],[115.99361,40.08244],[115.99594,40.08324],[116.00475,40.07982],[116.00779,40.08062],[116.00893,40.0792],[116.02086,40.07457],[116.03091,40.08219],[116.03393,40.07966],[116.0379,40.08452],[116.04363,40.08349],[116.04887,40.0853],[116.05132,40.08434],[116.05276,40.08075],[116.058,40.07492],[116.05972,40.07538],[116.06402,40.07303],[116.06612,40.06565],[116.07136,40.06176],[116.0713,40.05903],[116.06805,40.05193],[116.07513,40.03992],[116.07485,40.03711],[116.07817,40.03275],[116.08054,40.03315],[116.08424,40.03091],[116.09507,40.03178],[116.0984,40.03382],[116.10081,40.0338],[116.10549,40.0322],[116.11452,40.033],[116.1236,40.02965],[116.12957,40.03111],[116.1342,40.03071],[116.14332,40.02683],[116.14863,40.02219],[116.1514,40.02287],[116.15736,40.02102],[116.16388,40.01686],[116.16631,40.0127],[116.17542,40.00631],[116.17278,40.001],[116.16167,39.99999],[116.15596,39.99796],[116.15423,39.9969],[116.15395,39.99494],[116.14469,39.98919],[116.11893,39.98612],[116.11345,39.98152],[116.11659,39.97194],[116.12029,39.97064],[116.1204,39.96915],[116.12298,39.96757],[116.12072,39.96119],[116.11894,39.96169],[116.11527,39.95834],[116.11883,39.95477],[116.11746,39.95369],[116.12053,39.951],[116.11576,39.94833],[116.11452,39.9492],[116.11345,39.94837],[116.11195,39.94293],[116.11541,39.93705],[116.11987,39.93276],[116.12477,39.93491],[116.12782,39.93034],[116.12821,39.9254],[116.13543,39.92367],[116.14098,39.92052],[116.14686,39.91007],[116.15279,39.90664],[116.15454,39.89952],[116.1611,39.89681],[116.16703,39.88876]]]},"properties":{"name":"门头沟区","adcode":"110109","telecode":"010","level":"district","parent":{"name":"北京市市辖区","level":"city","adcode":"110100","center":{"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG:6.3:4326"}},"type":"Point","coordinates":[116.405285,39.904989]}},"center":{"lng":116.105381,"lat":39.937183}}}]}); + echarts.registerMap('顺义区', {"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.59126,40.04749],[116.59203,40.04308],[116.59456,40.04325],[116.59785,40.04149],[116.59782,40.04255],[116.59989,40.04245],[116.59941,40.04717],[116.60164,40.04766],[116.59877,40.05041],[116.59852,40.05254],[116.60369,40.05295],[116.61007,40.03122],[116.60765,40.03091],[116.60788,40.02954],[116.60277,40.02851],[116.60295,40.02345],[116.60084,40.01886],[116.59739,40.01942],[116.59555,40.01752],[116.57781,40.02751],[116.57928,40.02934],[116.57881,40.0331],[116.57404,40.03311],[116.57769,40.02953],[116.57271,40.03316],[116.57047,40.03243],[116.5659,40.03854],[116.55075,40.04551],[116.54641,40.04974],[116.55143,40.05224],[116.55276,40.05488],[116.55158,40.05785],[116.55282,40.05895],[116.55177,40.05977],[116.57814,40.07646],[116.58073,40.06781],[116.58139,40.07382],[116.58659,40.07433],[116.58871,40.06087],[116.58743,40.06027],[116.58962,40.05966],[116.59013,40.05616],[116.58796,40.05054],[116.58951,40.04982],[116.5912,40.05179],[116.59126,40.04749]],[[116.60369,40.05295],[116.60773,40.05336],[116.60811,40.06141],[116.60562,40.07302],[116.60667,40.07377],[116.60552,40.07361],[116.60346,40.08681],[116.6046,40.08799],[116.59839,40.10387],[116.59871,40.09351],[116.59586,40.09322],[116.59589,40.09022],[116.58037,40.08836],[116.57831,40.10273],[116.57652,40.10431],[116.57553,40.10793],[116.57407,40.10781],[116.57432,40.09613],[116.57814,40.07646],[116.55007,40.05951],[116.54892,40.06076],[116.54948,40.06299],[116.54827,40.06373],[116.54318,40.05941],[116.52823,40.07082],[116.51269,40.07066],[116.49934,40.0804],[116.48667,40.08104],[116.48294,40.08238],[116.48294,40.08375],[116.47355,40.08555],[116.47101,40.08939],[116.46684,40.09019],[116.46475,40.09285],[116.4665,40.09495],[116.47335,40.09751],[116.48104,40.09697],[116.48586,40.09927],[116.48964,40.10199],[116.4908,40.10785],[116.49233,40.10787],[116.49152,40.11397],[116.48906,40.11877],[116.48915,40.12273],[116.48722,40.12468],[116.48475,40.14008],[116.48231,40.14063],[116.48007,40.14529],[116.48078,40.14741],[116.4844,40.14682],[116.48665,40.14943],[116.49078,40.14899],[116.49231,40.15699],[116.48683,40.15827],[116.48462,40.16047],[116.47792,40.15998],[116.47656,40.16139],[116.48081,40.17193],[116.48332,40.17175],[116.48515,40.17676],[116.4902,40.18195],[116.48798,40.18468],[116.48801,40.1918],[116.48451,40.19649],[116.47225,40.20509],[116.47372,40.22121],[116.47679,40.22492],[116.48306,40.22499],[116.48395,40.22597],[116.48117,40.23596],[116.48161,40.2445],[116.49241,40.251],[116.49995,40.25058],[116.5026,40.25561],[116.50302,40.25969],[116.50433,40.25962],[116.50463,40.26107],[116.50926,40.2611],[116.5092,40.25806],[116.52099,40.2584],[116.52112,40.25747],[116.52397,40.25752],[116.52501,40.2612],[116.53571,40.26137],[116.54009,40.26717],[116.53694,40.27717],[116.54091,40.27494],[116.54623,40.27622],[116.54627,40.27498],[116.55151,40.27569],[116.55217,40.27383],[116.55707,40.2759],[116.56294,40.27616],[116.56618,40.27802],[116.56536,40.27338],[116.57052,40.2731],[116.57021,40.26887],[116.58253,40.26837],[116.58515,40.26619],[116.58571,40.26851],[116.5884,40.26946],[116.59084,40.26414],[116.59577,40.26447],[116.59665,40.26675],[116.59965,40.26539],[116.60075,40.25897],[116.60462,40.25615],[116.60378,40.25132],[116.60591,40.25073],[116.61067,40.252],[116.62204,40.25046],[116.62242,40.2527],[116.6238,40.25266],[116.62366,40.26058],[116.63526,40.26146],[116.63704,40.25845],[116.64149,40.25947],[116.64308,40.25715],[116.64856,40.25827],[116.64852,40.26015],[116.65711,40.26078],[116.65706,40.26237],[116.66238,40.26135],[116.66715,40.26269],[116.66736,40.26028],[116.66948,40.25752],[116.66839,40.25716],[116.66918,40.2538],[116.67192,40.25113],[116.67333,40.24678],[116.6709,40.24498],[116.67154,40.24124],[116.66848,40.23749],[116.67021,40.23814],[116.67024,40.23486],[116.67419,40.2355],[116.67518,40.23951],[116.67782,40.23369],[116.68402,40.23428],[116.69071,40.24089],[116.69726,40.24321],[116.69506,40.24521],[116.69655,40.24808],[116.70058,40.25005],[116.70297,40.24972],[116.70458,40.25154],[116.70467,40.25711],[116.71084,40.25623],[116.73842,40.28439],[116.74109,40.28299],[116.73834,40.27876],[116.74097,40.27983],[116.74054,40.27828],[116.74214,40.27793],[116.74299,40.27909],[116.75578,40.27494],[116.75575,40.2739],[116.76148,40.27003],[116.76269,40.27131],[116.76267,40.26906],[116.76426,40.26843],[116.76361,40.26719],[116.76688,40.26809],[116.76861,40.2701],[116.77072,40.26873],[116.76909,40.26693],[116.77165,40.2665],[116.77351,40.26953],[116.78296,40.27325],[116.78407,40.27944],[116.78558,40.27928],[116.78629,40.28166],[116.7878,40.28144],[116.78889,40.29143],[116.78985,40.29144],[116.79017,40.28894],[116.79364,40.2869],[116.7943,40.28839],[116.79788,40.28781],[116.80115,40.28918],[116.80961,40.28602],[116.81098,40.28914],[116.81015,40.28423],[116.81191,40.28415],[116.81182,40.28239],[116.81883,40.28274],[116.82157,40.28128],[116.81796,40.28413],[116.82512,40.28535],[116.82458,40.291],[116.82693,40.29353],[116.82717,40.29821],[116.8301,40.2992],[116.829,40.30441],[116.83737,40.30995],[116.84898,40.3112],[116.85455,40.30316],[116.85402,40.30109],[116.85788,40.29226],[116.85946,40.29087],[116.87162,40.29081],[116.87174,40.28148],[116.87634,40.27434],[116.87588,40.27027],[116.87426,40.26828],[116.87734,40.26489],[116.87988,40.26414],[116.88153,40.26153],[116.88127,40.25922],[116.8862,40.25512],[116.88659,40.25191],[116.88975,40.24701],[116.89225,40.24571],[116.89435,40.24003],[116.9013,40.23802],[116.90174,40.23683],[116.89681,40.23591],[116.89395,40.23346],[116.89418,40.23231],[116.89939,40.23114],[116.90071,40.22876],[116.90659,40.22868],[116.90745,40.22375],[116.91383,40.22013],[116.91584,40.2223],[116.92298,40.22033],[116.92568,40.22292],[116.92645,40.2273],[116.93106,40.23063],[116.93521,40.22984],[116.94098,40.22393],[116.93848,40.2153],[116.93949,40.21273],[116.93803,40.21055],[116.93374,40.21243],[116.92947,40.21115],[116.9309,40.20709],[116.9335,40.2048],[116.93313,40.20284],[116.93461,40.19996],[116.93722,40.19681],[116.93613,40.19617],[116.93727,40.19507],[116.93901,40.19563],[116.94039,40.19183],[116.94119,40.19347],[116.94418,40.19361],[116.94892,40.19079],[116.94997,40.18635],[116.9458,40.18622],[116.94534,40.1813],[116.94773,40.17754],[116.95138,40.17769],[116.95138,40.1748],[116.96204,40.17554],[116.96125,40.17194],[116.96875,40.16349],[116.97206,40.15629],[116.97776,40.15138],[116.9737,40.14578],[116.97338,40.14288],[116.97004,40.14031],[116.96784,40.12985],[116.96578,40.12781],[116.97159,40.12422],[116.96932,40.11841],[116.9717,40.11336],[116.97607,40.1112],[116.97333,40.10372],[116.97078,40.10441],[116.97009,40.10184],[116.96797,40.10121],[116.97533,40.09827],[116.97325,40.09821],[116.9734,40.09708],[116.97527,40.09509],[116.97991,40.09407],[116.97966,40.09154],[116.9819,40.09202],[116.98186,40.08983],[116.97817,40.08925],[116.98077,40.0865],[116.98179,40.08196],[116.97503,40.08142],[116.97808,40.07963],[116.98032,40.07964],[116.98169,40.08137],[116.98339,40.08095],[116.98542,40.08028],[116.98421,40.07866],[116.98628,40.07835],[116.98285,40.07068],[116.98083,40.07119],[116.9786,40.0649],[116.97348,40.0663],[116.97165,40.0645],[116.97284,40.06268],[116.97064,40.06252],[116.97066,40.0638],[116.96711,40.06464],[116.96666,40.0629],[116.9623,40.06353],[116.9609,40.0589],[116.96219,40.05884],[116.96193,40.05136],[116.94527,40.04142],[116.94501,40.04864],[116.94449,40.04432],[116.94356,40.04407],[116.94318,40.04856],[116.94155,40.04866],[116.93885,40.04599],[116.93763,40.04691],[116.93867,40.04826],[116.93626,40.04834],[116.93623,40.0493],[116.93894,40.04932],[116.93882,40.05088],[116.93601,40.05072],[116.93466,40.05239],[116.9317,40.05203],[116.93042,40.05533],[116.92811,40.05493],[116.92889,40.05119],[116.92657,40.05299],[116.92688,40.05142],[116.92542,40.05142],[116.92417,40.04747],[116.91798,40.04471],[116.9169,40.04888],[116.91541,40.04811],[116.91424,40.05259],[116.90849,40.05284],[116.90158,40.04744],[116.89238,40.04637],[116.8919,40.04463],[116.89027,40.04597],[116.88075,40.04617],[116.87507,40.0422],[116.87068,40.04105],[116.86783,40.04187],[116.86093,40.04937],[116.85608,40.05008],[116.85781,40.05189],[116.8502,40.05497],[116.84949,40.05193],[116.8315,40.0512],[116.83173,40.04848],[116.82274,40.04647],[116.82316,40.03984],[116.82032,40.03972],[116.82174,40.02995],[116.81998,40.03032],[116.81999,40.02835],[116.8152,40.02865],[116.8153,40.03091],[116.81198,40.03122],[116.81173,40.03231],[116.81077,40.03101],[116.80337,40.03216],[116.80026,40.02885],[116.78954,40.03231],[116.79022,40.03448],[116.78115,40.03464],[116.77781,40.03245],[116.77748,40.02721],[116.77542,40.02634],[116.77565,40.02168],[116.77175,40.01447],[116.76479,40.01605],[116.75328,40.01592],[116.75176,40.01996],[116.7499,40.01982],[116.7496,40.02199],[116.74703,40.02198],[116.74706,40.02539],[116.74558,40.02535],[116.74552,40.02662],[116.7424,40.02645],[116.74223,40.02751],[116.73715,40.02761],[116.73713,40.02557],[116.73359,40.02583],[116.73234,40.0251],[116.73204,40.02222],[116.72484,40.02426],[116.72423,40.02128],[116.71972,40.02251],[116.72014,40.02004],[116.71737,40.0196],[116.71633,40.02376],[116.70934,40.02669],[116.70768,40.02476],[116.70608,40.02556],[116.70393,40.02014],[116.69724,40.0161],[116.69314,40.01553],[116.69188,40.01712],[116.68558,40.01657],[116.68837,40.00918],[116.68629,40.00827],[116.68602,40.01186],[116.68378,40.01446],[116.67881,40.01379],[116.67847,40.01506],[116.67364,40.01498],[116.66771,40.01309],[116.66769,40.01518],[116.66549,40.01525],[116.66471,40.01904],[116.66142,40.01878],[116.66012,40.02165],[116.65564,40.01856],[116.65168,40.02191],[116.65119,40.02575],[116.63617,40.0197],[116.63351,40.02367],[116.63062,40.02302],[116.63103,40.02167],[116.62705,40.02151],[116.62669,40.02257],[116.62431,40.02257],[116.62425,40.02367],[116.62011,40.02251],[116.6194,40.02673],[116.61413,40.02818],[116.61406,40.03175],[116.61007,40.03122],[116.60369,40.05295]]]},"properties":{"name":"顺义区","adcode":"110113","telecode":"010","level":"district","parent":{"name":"北京市市辖区","level":"city","adcode":"110100","center":{"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG:6.3:4326"}},"type":"Point","coordinates":[116.405285,39.904989]}},"center":{"lng":116.653525,"lat":40.128936}}}]}); +})); \ No newline at end of file diff --git a/src/assets/js/world.js b/src/assets/js/world.js new file mode 100644 index 0000000..e9337eb --- /dev/null +++ b/src/assets/js/world.js @@ -0,0 +1,5812 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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. + */ + +(function(root, factory) { if (typeof define === 'function' && define.amd) { define(['exports', 'echarts'], factory); } else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') { factory(exports, require('echarts')); } else { factory({}, root.echarts); } }(this, function(exports, echarts) { + var log = function(msg) { if (typeof console !== 'undefined') { console && console.error && console.error(msg); } }; + if (!echarts) { log('ECharts is not Loaded'); return; } + if (!echarts.registerMap) { log('ECharts Map is not loaded'); return; } echarts.registerMap('world', { + "type": "FeatureCollection", + "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, + "features": [{ + "geometry": { + "type": "Polygon", + "coordinates": ["@@࠿@ᠳ࡚с̶ʩт˷˔ƹͮɠͲ˖рԜ׷҄̕ҴNܾͰؼ÷۸ήԪ‡Үƴ̮¿ঞɪֶϤϲŹƛе²֭ĝDZƊĠǔōϭñėށ؅ਓɁȥԯ঻ƻԓࣗඩअ৯۝ڻो֑য়ߝล໥ϓ؇UļāļƫȖɩ̌]ᶼ̈́͘ɮ͜ɪ͚€®ĞĚ۪ƼɦːϪǰ;Ąߞᢌᣮ"], + "encodeOffsets": [ + [49130, 8189] + ] + }, + "properties": { "name": "Somalia", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ƛ¬Ð@ĞÆÒªDZ"], + "encodeOffsets": [ + [9810, 48188] + ] + }, + "properties": { "name": "Liechtenstein", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@⌗†øĒ୬ͪࣆيʊˆ҄ؔ^˶ȇɪÈצϲ֌ĐФ؜ְദ׼ҢڴήࡔլİtʍԾ΃ʤ›՘IJʢË΢ǒŎɽĠPĀmǶVǢgΤ̑Įவňȵ’Ǒ¼ýĈå²yĞÇÞ³œëąÍĥʹ೵]Ɂ³Ɨ{‘ΡʼnƑcăZÉSÍƫH˃ǨǓѭLJƣġǥÕȿÕǃñÿśıƇħěŽđұĿЍU“ƉÝå‹Sĵ^čfʉdʇǍ·ƒণ֣oۋ@Ĺ"], + "encodeOffsets": [ + [-8891, 28445] + ] + }, + "properties": { "name": "Morocco", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@⌘…@ķœ@@@Ŕ@@̷@̩@ǕBȍ@ȋ@ƍ@ĩ᫫@@ɋ@΃@ɭ@ŕ@қ@΃Oх̉űƽw½gΉɩķƯtįQJ–dz˜՟TšRšPėRŏᇷCฝCċα`ý§¨Ƙ࢘Ӕ׎ŰшΞ׎LJĹèƤ࠴݂Ģָ͌܌۴КͲޞŚƀ", "@@i˷@@j˸"], + "encodeOffsets": [ + [-13351, 28480], + [-8984, 28120] + ] + }, + "properties": { "name": "W. Sahara", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@A@ƟwđĵȏÒʁč«Ǔƅ@ã̌Ο˘SǴʒÊÆ`Å_֡˰ϟʊkˆIŠDZʪĠɁ˔˶àϷˈȘѬ˻W²ɤ˲ÚͩǀºĬȋːÈĆѠŎNJĘȘoø`Ȓg¤_€cº·¶ÙȈėÒ÷´›fFfV\\T^Qhɿ՘ɳ†kĝƱƨ÷YißMµGuOD‡Ǝ‰Ĩãɰ™İŸÈßĜhŴĬŬ~Ũ±â›Z‰ƒ]ãNÇk¹ėnjƽɣȭkƒěHãƺ˝Ǵ謭’¡İÃƩǝÿďȫ•Ẹ̀Q‘ßço}ß]ĕUΥ@Ʌ±@@"], + "encodeOffsets": [ + [22080, 43262] + ] + }, + "properties": { "name": "Serbia", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@хǑޟ˜ܯőࡡԧ¡á͘з¤̧սշŊƉ™ˏͭąٝ°̺׿ٓɥɓӱŒз·ʫɫƚν@ӧʟƆƋʇğԻzЛϭĭ޿ॕʳכ]ʛŷѿĘࣻõЍĺٵȀ͋ĠШъȒȢȌȜxèFƆ·ǴăĆˁȡ|ɍ‚ƒZ{ƒZØaŤDĠŽƲDèij̎őͨaŦ̰̚˽êóļ@͒ƂDzȸZíĊ•´ubSv\\vÀT˜„ΠŠhňǞjΔö’´ƌ„’FgÈèTɶǓЀ«Ȁǫ͊î̲džzĺîĢƘ؜Ɣ˒Ř˞Lj°òŠńƲъ„ÖŖ¾ŚšǶRɄJǮˊרȋ¦HʲpȮ‹ńċľsĺ¤ÚR|¼[þJ¬wNwNÌÛļûĢmnjÂpp^ªô¤ʂĸ®T¸S–Z^‚b\\~VvL¤QȂƓR¦„¼¶^ê}ĞlôÒÈŒ”ǐ`Ɛ™ǢbÀèHϱĸ^ŽǠŶˌ̆ѨīÞŗ­Ƀ”aÎJĊtÄB~oűځĈʁŔů࠰˨ȦȨˈŢƠ®ĈRľsª_ÂW\\—a÷ËvkĄOΘĈŠ˜²˜ʹkҋČѼ­§MÕryŠWJ·oğ}ƽáHiĸã|u^Q"], + "encodeOffsets": [ + [76331, 37911] + ] + }, + "properties": { "name": "Afghanistan", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ÂR̮cҮƠ͎Åǖ@ǔˆ|ɔDªĞƶHNJšŖ̈ƄĺTNJ|ʖ€ĞGR_¿ƽA½n½¦ƒʬGɼEҾi°oČ଩ýٵ͔ӑĠճēśnʕ¬ÓŠIàþÖÚ~ɈqɘM͚IJ̴™ŐŢdܓ×މoěG±ðƁIĵY൑@ȗ@@ڟ@ˑ@ˑBౝǶ֡া࡙ࢳǑ೟Ƶҧƀ਩¼ҹͺሹTᅍeғ̴ʟÌՋȭǃN‘OėFǗ–ģµƇoŒ͆ƖËܼɠˌ҆ლζ֌θɌƴȞǀЊ¢ݐс޴˫ߚ̢̤hˊүஒґۤݴɦƌOՎNዲQĮ…ĘÇƈǕžϡÐŻĚƉÆ˕Ԃۻ"], + ["@@̆Ƅ„_øęÞËr___ğ™ı•ͅ˭DeÌ·‹ӏɫ‰θƅːОΖ"] + ], + "encodeOffsets": [ + [ + [18002, -8293] + ], + [ + [12802, -4697] + ] + ] + }, + "properties": { "name": "Angola", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@Π˗ä̋ÝԍȄ́ɊßQÙÚŷűŻȉ̍ǝ©¡aq›uwW@yÐğBƧůÙPь‹XkAűˬѽ̨ŚAĹɐȨࠐDŮȡæ½ʮ̾ϦŒŷɴÒ"], + "encodeOffsets": [ + [20546, 43569] + ] + }, + "properties": { "name": "Albania", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@Ł•^ĊĤ³"], + ["@@ɨ÷ϫƯħƾƊ¡sƜƖ"] + ], + "encodeOffsets": [ + [ + [20135, 61632] + ], + [ + [20470, 61800] + ] + ] + }, + "properties": { "name": "Aland", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@Ɵ½íIir[ò\\¢Ö ÈOŢ~y@esQm"], + "encodeOffsets": [ + [1747, 43524] + ] + }, + "properties": { "name": "Andorra", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ʙOǘøĂç"], + ["@@š‚ȆĶãŷ"], + ["@@ø֟˗ȫÁǸǣï…ԿƖw´ŷѡĹÂĹ˧څ[˥ççᒣʾ߳४oǪǘÚȱɴ‘ѼƸॺí̆ĐȾĚ̌҂ৎࠠŞɦò_m̙ź‘"] + ], + "encodeOffsets": [ + [ + [55223, 24758] + ], + [ + [54613, 24841] + ], + [ + [57650, 26267] + ] + ] + }, + "properties": { "name": "United Arab Emirates", "childNum": 3 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ؠQۓƫĵÜǪĢ"], + ["@@nᇜ͠έLJvµǥˠ›Ÿɏ׶УࢸНࢴŧʕȣ࢑įԭņ౳¦"], + ["@@ȴǛߖȡפϿବӗɒ˳͉ӡȧɇ“˽ͫЛoÁŒıξ”บɿɮȜǴGƌùÚD涐ÌE悶̆ž rºʒàǞȔɌͦžʮbΰƠ¥ʐĒɜũȈԵƛ۩ЧʩхŃɫˇԽ˳ŽƩǟXࢣ਍ʉƽƯɃƅ曡•ě½õijģ“ă¾ɣÙßdƕqùşȅiߜ‘l•gĝ‡ëĿēk©z¿HÃiÉZǜÁEÕáųeû¤ͩɅŷĻҩžѻőēȰ͗آ˯͆˿Ʒ̛fʳɔɧ˜¥ÞщܿਟՍ̍൱ͷઃŻأ€УƊϋȰʼnŁMĒå¯̩ŽÍīʩžБůǻӃǿ֋¥਻ΤɛŧŬਅϘŷƒƋŴcˎ’ňƗ¢θĖƒƙZ΍Εƻϟ̲ЛŹ³ýתǭѫȁ΋͏Yש͏͍R̅ҧšكʗցڛþؖ͟ӁٺóɖɁÛʗΉǁʔ@ľĩൿࡕǿʛş֡γƻ·̒LƷˋÉ͎KƨůԹ˻˃ѹƄ†ƒеίăрýѬ֯ౡ̊࿩fЩϘÊܞƛØգŋ̉Ԩ«֊þŴ˜\\Đʊ͐ƢÌ̮ȒĠvɌǃȞƠ͒ψʔ‡̶ȬưƧЮȴǨī̀ͮȺȹ̒ϏÚmŎڬRĐǠ«Ĵԛ¶ŞϢȋӨżĢͩȺŽب̜ǤƉͬiߪȊʼğǤƄž»͖Ʋ„Ś֖Ҙˤʷ۾qޚŘˎմϲUҐŝɶƌČ˺܆ǚ܂߆ɝèÀˊ˻ڨĠł˥͚ÆΞǰłƀ֌ǒFĦƶīĆÉيǘȄƞׄМЪˠ٪Ɉ\\ɰƖɭцƪˈƫ؞Ǫˠƫ̂ʾ̘ݨ̞̈ࢂƽưǢʾɼʚ̆Ē–¼”ʆİxzžEÜ}™ǘşöãîSƖ`Ѷ_͘ijèţžħ‚čÔƧ¢Çd‚–NJʒѾ°š࣠€Ǽʗî·ƚ÷ƄƣΔӍ׶Ћ"] + ], + "encodeOffsets": [ + [ + [-66098, -56029] + ], + [ + [-70300, -56170] + ], + [ + [-62550, -24224] + ] + ] + }, + "properties": { "name": "Argentina", "childNum": 3 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@́{ř̮ǯŔfƖ˟§ʭôķƶɛ½Г˲Իðą̘ŸȦʁ͚՚Ú؞Þdž€ǀťıÑѢȓǫƣÜşєʣßǫʳ¡Ժ͏ɼīŷȀƭƹúʇ"], + "encodeOffsets": [ + [47607, 39841] + ] + }, + "properties": { "name": "Armenia", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@āɆœƃë"], + "encodeOffsets": [ + [-174823, -14695] + ] + }, + "properties": { "name": "American Samoa", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@īƨǜMïƙ"], + ["@@΂ŜªūȩÃŚÕٸǔȢťƙțȃúͽñȐŵɖ¨ĻƣࠅƦƇƥƫJÌ҈ħĊȜͼŒǗëȃŐy"], + ["@@ƥÈè þħ"] + ], + "encodeOffsets": [ + [ + [70946, -50236] + ], + [ + [70846, -50288] + ], + [ + [53079, -47554] + ] + ] + }, + "properties": { "name": "Fr. S. Antarctic Lands", "childNum": 3 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ťowîÐÒĎŏ"], + "encodeOffsets": [ + [-63197, 17446] + ] + }, + "properties": { "name": "Antigua and Barb.", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ŸēǡÎƮŸÔı"], + ["@@Ȫb࢈ͥ;ðŀùŢƨϸQƖƂɂyĄþȺÙńଡŇȶʏԑlԟƇñĈ§ĐŸþȏêķǁŻȲ­ΧȻºæijǡ˱˙Ĕщ£ƞǴ¼˫p͕̮ʏאɨɗ¢ŚƹǪą¥FƪЅՊĵΆÔʸ˚ĩ"], + ["@@£ÝÏÒĴL"], + ["@@‹éŠżBÑ"], + ["@@ÞƯ͑êʴĆ"], + ["@@ʠȓbƿǩõ˵͢ȞĨ"], + ["@@÷Dzƌ˖Š̻dzƋ"], + ["@@’Çȏ|ƾŒ"], + ["@@˪ZǎŁϟȅƩȩüϡ¥ǷŤĈŢגƀɀyXı"], + ["@@ĥɩRʨĔ}"], + ["@@ǿɪcɂȤѫ"], + ["@@čǘ¾̞ǂǀédžĨðþ˫ɭֿ"], + ["@@þCȷǡȸĨ"], + ["@@ŅÁĮƶXij"], + ["@@ĕP–ŊÀř"], + ["@@jɇǗȞƮj"], + ["@@„ľàēģi"], + ["@@̉ƙŒɲʚÔĢĵǃµ"], + ["@@ųÈÈĮìƵ"], + ["@@ÕgIżàœ"], + ["@@ěWÌŖĽ"], + ["@@ƪdũʉǤģ³ğҷèö̆Țǂ¸Ņ"], + ["@@īPþŸnƇ"], + ["@@ƃ×ʤǮşŕ"], + ["@@Ŭřҿ|żň›ƴŢŠƒ˽"], + ["@@ͼ–ȶŨɪȹӳЩρʸŅΨȠƹ"], + ["@@Ñ»ɆΪƳ̭"], + ["@@ğɠĂÌ^˫"], + ["@@Í̉ʖ˱ƺڭʟǪԝǤĩјȚƦɕ՞ϙŜ௳ˠЉƂƒǶ؇ÿՙʪɽ¦ΣٌΓɼ^˘͡ࡢѧŀLJŻZĥѪқȾϟɀܥĴ¨ŶƇȰŔŦϸͧxƦĔ…ƞ࢑ʼ˙֬˵ʤЋ˜ǣǔͱɔȗÒ͑ưů¡ਗϬ࢝”εӯཝñܹ͓ԡõͥ˫ȩzá̏ťѩ֯W̃ſáĜq̡ЁÉћԟۏɗාϝȯകƍࡧؕ՝ÁĴƕŊ®Çʱȭɾȉ‰ŧȢͥŌŪŢÇŴƷL˩əȯƈǎGǪɆȓLjеȥɨÕृԡࣩκؗĬŋįƛr΍ʌԷưԗնÔӪŅʔٓڔǬ¶ĤóMȢٕɡ˳|˞ӶkɖͳԀͭࠉڷąŌ˘̈́DĒلςӨã͈ŠĚǫѠNȳ̷̉ǡλڵͳҏՋàˑƩĴŧÝѳ̖ĀĊȞÿȗԸˣ˪ĉʢƵŜʳtŅƼÕȘńdNƶӋ˺ϟpϣȒҗ§࣏ј̣ĝഁ±༱ԕ୷ƒঃӭџŏإݵଗÙ÷İտ¢ಧů͹ͥұģٓэҭģࣃĢѽNJΟ̴ұƞ_ج̬Ŀ˘ϔ`఼Է॔ȃ஖ׇࣀř؞۽঒ڽ„ƎȎБŸ‹ĒĂbƘϩԴ´ĪɘșVʣŊĬŚʵĊÓŀĖAπڟஔÔӈɤϜŽшĥɶ˸َϬfջȢŢ˨Ѥغ˨Ұϰא̈́טÉښ̄ҪĨ̒ɢМ—ஊκ˸ʆи۾ј̬ǕӀĪΎϬ̊ɀ̎Ӿ࣫~ЬȨ÷˜Ǟ͑άŔØeNJĺ€ŊǃƼİɌĻІ]̯ĔXƔƈhÔȲŧďĻǶ¸ɞĺEŌȈ̶ƗTŔƍEÏŲǘƀˊīƫ;ͶȚ¢Ȑއ—ȧƄ¼ÐůŌļ„ѤŊsØƉŨŨƖšǰǤIƖńœҰʍ؈֯ġԱðĖĊÕáɊʹɦМğƂɵ¬ʐ̮ɥFʐDznȳƴþøˍƒ˦Όň΂ΠɪĿƂ„ǀȚɨǾ”JǺȶŃLdžΘʦŬǫՂGDŽĂƂğČƈǞXçöš͖ǗƂͷbȿƢŜĸǎʼnƬô̌ʁɺĈȊʡ؀ŁќȅˀÌʦǫǂwעͪǽ͑ʮdÖȗƮWÌňáŎnjȆɶɱƬc¨ęΉι¶ǿŏȅƕò̯ƓxՋҥە¤ƑلЗðƓΎīäǫǾ`ל̕ҔС٠ƱȨίڌ̽ЎàˎǮϰߜˬ஀đӲÒˊĹ̘ƢҎˆˈǢɃȼVŠƴ̀úßǨजʎȪۓ©ŁȐȭþץʴŏ"], + ["@@ëµ¹ĸȤÞĥ"] + ], + "encodeOffsets": [ + [ + [150893, -44438] + ], + [ + [148525, -41765] + ], + [ + [151795, -41487] + ], + [ + [148260, -41478] + ], + [ + [151887, -41274] + ], + [ + [151553, -40711] + ], + [ + [147383, -41078] + ], + [ + [148803, -39414] + ], + [ + [140899, -36596] + ], + [ + [157224, -28094] + ], + [ + [115900, -26678] + ], + [ + [156752, -26368] + ], + [ + [154775, -24054] + ], + [ + [118217, -21286] + ], + [ + [152621, -20778] + ], + [ + [149789, -18668] + ], + [ + [142807, -17525] + ], + [ + [142857, -16970] + ], + [ + [140384, -16156] + ], + [ + [127588, -15771] + ], + [ + [128204, -14929] + ], + [ + [139996, -14135] + ], + [ + [139508, -14156] + ], + [ + [139611, -11880] + ], + [ + [133591, -11959] + ], + [ + [133754, -11649] + ], + [ + [139877, -11651] + ], + [ + [135776, -11574] + ], + [ + [146616, -12241] + ], + [ + [145690, -10961] + ] + ] + }, + "properties": { "name": "Australia", "childNum": 30 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ñDZʀ͋ãʣթƒɊśȝŕV̡ͥťŕƻࣃÑ˿ǥ܋ĶǭˆśFƵ^׃Čù~·¶½ÚĩČo¦ˆ˜Š„I\\wPͥąȻXā]ǁMġ‘Ñݍ½iÇOĉLÍfϬğPčBuTD†‘ÆÅjǹőҫǦ«ǶĈǒď´ȌªúoŎŸÀvqL±Ŕ{cíƼòˆ¨ˆŔšSƨLêoŌGƚŃ२ȐdxMÀZR¸_ð@Ŝcnj_î}t_aDuvkΉø}žDd~bÒLÚſʲƘNjǼϤǐĜ|òÀ¦ƞXN`TŲAŲNZ†JłXhȠƑբE͂ͰࠬȱФ–ΆǓ"], + "encodeOffsets": [ + [17360, 49766] + ] + }, + "properties": { "name": "Austria", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@Փň֍ը£¬ɜ¾ĸƵʮóˠ¨eƕǰœŚ̭"], + ["@@ݒ࢙ˎǻ΀áƸȋϓŒ̯ĻȏӯŽɑǓˋŷĔƃʝ\\͹ɵqԃόʞƒǁȆǾƄ˛ʈ౉ٷùʈƺ‚ǿƮĬŸɻԹ͐ʴ¢àǬѓʤÛŠǬƤѡȔIJÒƿŦǺŐÂvڲɟ̂ěĔXüҊðT”­´ˁƐķǎȸDŽˎßӌѽЈéڂը"] + ], + "encodeOffsets": [ + [ + [47222, 39811] + ], + [ + [49739, 42849] + ] + ] + }, + "properties": { "name": "Azerbaijan", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@guûƿcy¤«£ŇR§è—öcʕÐO€ōiƃ͇͟ϟչȕů˃LLJԮZپǭ˪ôľʎdzʶ^ƜàÀ̈́ǀÝʔĔŨñ"], + "encodeOffsets": [ + [31287, -2457] + ] + }, + "properties": { "name": "Burundi", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ʦq̈ʣȋ˥w†…Aá\\ğí£Í}©™•ž͋ʁw՝ɸ£̪ɯljͫVtɴСºÿƞ˓°Ɠȼ̇{ȟ̆ۚɾèōЂ˘ƮڰêƸDžӨŁđͅ"], + "encodeOffsets": [ + [5831, 51994] + ] + }, + "properties": { "name": "Belgium", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@“ÁÁŏEĕŶǽbm…l“’ʻàƋ¿ǃĿQ›ͻɷȍɽ׏ɧ‡Ó֩aл„ɍ€Ù†ÃAƒck_wL˝‡óVŃjån»k¥cÇ{ȍ࣫ŹžàȹזĀJqႬǷʾ±ՔӇ͞ŚԜѴϠҮyΆДo˚τƌڒׁ"], + "encodeOffsets": [ + [3682, 11977] + ] + }, + "properties": { "name": "Benin", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@­ΏȀɃ ɯǂɥӪ̃DZNC˕ӠͿҒÈĸȡŹƁˈ΋΅Гҭzѳϟ΃ҽƊȗ¨˟ȩΑê຋WíͿļƇVֽ^óºĽV«ko¥ƒ¥D·Øs†ŸÜ“Ü­†­€ÃĆ¿žÇYʕ–ǫM͟ŕïÅćÕDķÚĉSą˜ґӂɗ̄ԮȬ˪ϞӶȼɪɘ©ˮɈĸď˚ƬǀǠĄΜǿȎĈ®͆ʢUÞʬʌɸЊ¹Şʎޤ̨ʐȒѲXϠŭ"], + "encodeOffsets": [ + [223, 15270] + ] + }, + "properties": { "name": "Burkina Faso", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@÷r¢dž–Ƿ"], + ["@@‰ç\\ƪnā"], + ["@@ęψΒÒ́"], + ["@@ũšŠĐȟ"], + ["@@əqƒɚƫѐĀzɮ͇ùͩ"], + ["@@|JeƊÊAɪ̻ɖnńĊæŶɫD͍oȉZ¬WɆÕв«ாDΚȍéāőžo[Aġğɷ­ijǽǗij|̓ŧǃͱǖӻÞŌİǩÈWŎÖFȠˆÖŰŦQĀ@ô¦LÆ[ǞLòχzˁĒǍx¥Î՗\\ÏPVЇŽƉʧŒŵūŨуɣ͐ljনÇ«ˉӴɛȱɩ›ʑή©ӆ£ƛʉ†˔ǃſѝƲ͓͝ҁƇ¶Ŝɨɉő‰þÈ̎ơЛȱǻïђḍūNjɓŶ™͸ʼn̜iǰ¥ǔàŬǡÌuȦ¿¶ËľŐˠ\\Ê\\ĮNœUšå¨ťjƉĜĥNátÉįÞLŒ`¤ĖǜLú„AºäìȐİ@̚ˆ\\Êõ˜ïƂɡž̗ɲ‘~šȸƶƜĚĦ­Đ‡XfæŰƒȏɐ"] + ], + "encodeOffsets": [ + [ + [94157, 22025] + ], + [ + [94079, 22357] + ], + [ + [93339, 22708] + ], + [ + [93755, 22920] + ], + [ + [92957, 22620] + ], + [ + [91076, 26876] + ] + ] + }, + "properties": { "name": "Bangladesh", "childNum": 6 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ĵ̓˧Nǡǭ‘νͻɿѼнҏmƱŐ¥\\ȝ…—é‡ɧuÇˍÏŵsySyFyĵxÿckkgÞŵXñg¥Í…ţśfɏŧ‡ŋiБĦƫòwr§î}FγyoµkQ́ÕċAđZ½SōGëÁȫ^ôͺƕɈЯːà^p~àèR’Qnół~ǴˬŦƪǞįđ¢«®dzĎƹ˞Gä„ĜlŽ‚šĄÀŠŠ˸ƩƇʼn¨ħᓞƏ؀˲ܸƈ˶ŭϬ˴Ƿ̨}"], + "encodeOffsets": [ + [29272, 44793] + ] + }, + "properties": { "name": "Bulgaria", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ÛĝƄHɜĬXl̛"], + "encodeOffsets": [ + [51822, 26505] + ] + }, + "properties": { "name": "Bahrain", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@řǵѡGBņƂôʎ‰ƪƄ€ĵ"], + ["@@ʚďΏ¬Ķ¤"], + ["@@Ï{̶̀¡ǀĖ`\\lj̵˙"], + ["@@ǽWņɀĭ"], + ["@@͏ɬþĒƻʹЎٱ"], + ["@@̻źxÌ̄ȅ"], + ["@@ĹĉrŖĈ‹"], + ["@@ćïŞ¬®áWͯǓ\\ȓϾ˼|"], + ["@@Ǐ»Ăńˋ΢ΚЩ"], + ["@@Ƿ`ʊvѕ"], + ["@@CȳʣƧďǦȃ¨ËêNJv€ҌȤęȚ̓"], + ["@@ʰſǾLJ—ЭųƚĚJ¬ʠǫnjɁĴƇIÐŚ¾Ý"], + ["@@ӐۑDžȯDŽǀěǜǺĖÍ"], + ["@@ƩĸƀŎPͼɫʈη¶Έ@Ͼ̽xǑŇý·˱"] + ], + "encodeOffsets": [ + [ + [-74779, 21702] + ], + [ + [-74794, 22968] + ], + [ + [-75987, 22747] + ], + [ + [-75834, 23269] + ], + [ + [-76636, 23444] + ], + [ + [-77480, 24013] + ], + [ + [-76215, 24646] + ], + [ + [-79521, 24832] + ], + [ + [-77115, 24781] + ], + [ + [-79203, 25615] + ], + [ + [-79609, 25301] + ], + [ + [-78488, 26100] + ], + [ + [-80376, 27371] + ], + [ + [-79079, 26526] + ] + ] + }, + "properties": { "name": "Bahamas", "childNum": 14 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@˼Xȗѫϸˇ˵ßɂ˓ʩğ{D©OS«^­To_ðƛSáM™®ëNď¿Ù«§ǟœ_›™nLJäŕġå٥˲ç”ÆÌ̓τࠉ֮Ṷ̌ͬȶªΎȬVɞƱȦǨ͚¼ݨǗ܌@ƤǍƞ["], + "encodeOffsets": [ + [19464, 45947] + ] + }, + "properties": { "name": "Bosnia and Herz.", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ŘñࣸįkŻº¹Î“ŰÊ®fº@ät¶Œ²ZĘQLjR͢ƭʀąKơãÇUoHy±æïh¥@‹ůŕs­[¯PmƼóڟ~oÝőĢĪƉĖăȌíƎ¯†sX}Wŗãy›ÈeƞJǬ_ɀŅɈˇ»OÇaĝ•˝ƭʕ^ƳĂɁI{Uo½ß›™Œw¶³øÑüÁ~jȏOȃpw¤m”•ÊāJqǃNȑEҝȥGŕÿ÷µóåëĿ§ýzÔ»TÃj©ƵåʏǢۃăȳȶ“C¡u‡w§Sßkıě“L•d£ðÉh֡~ƅĩSĂͥrubŅŜËRķMƯbࠥŸண±çýŹġůÕwKñŽÓ\\íHýĭQM¢ѮБȸجОαজØiƦMϨŽž}æwʬòŮIlpŠĶšvƪWÆlʺʂàšwl¥{‘Ú‡NJ’¿Ħïd¹BSjjž¬êÄڒzNvSņŘǜĘxň`è”Úĸ”^ʺQ ØņÌ_jáZƻXrX|¦Ü¢ĊpÜFœϬƎѲӒ̂"], + "encodeOffsets": [ + [28824, 57491] + ] + }, + "properties": { "name": "Belarus", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ÝŝĔɜuĽ"], + ["@@˵CÒྪzƀ˞KʄИȒv­ħȀOœĿƽԭÌÿğݑӥد"] + ], + "encodeOffsets": [ + [ + [-89961, 17841] + ], + [ + [-91027, 16272] + ] + ] + }, + "properties": { "name": "Belize", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ŏgǎнõ"], + "encodeOffsets": [ + [-66283, 33069] + ] + }, + "properties": { "name": "Bermuda", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ĭއҀޕU฿̇ѥޗAх̽গljȤࣟ¯™ʑѽ•ljc¡ÈÓƨČĪçŤ͗Ĵѵ`ƕ_íTõäǗŠšÛ|Hwy…į“ė•»̅đɻʙǡʽƕƒǽ‹ǷZí´Cˢʯ݀Uˌ̣ͰØɰɗƜ[˾ǖŰDÄgžįĮEhļƊĦńMpkx̭ʐġŀUž¡ƀÅ̾«Ŝ¨Āǁî}nǕξ@B@œUÒĽŠl¢ԔҸWƔDŽŚ̽DŽǡѐȾͼǝɰ^ƘЪՂǟФĂڬʚ͆ݥನ̌G͌±ƜďɾĀ˜ˆä|ƀXĨiʲʘۺЬরǀĈι]ę綕³S·Ħ͕VōÇȅǢх͸ʹؚ̨͋˼ǝɼVʬ˟ծƋnçŴƑÐÁî±ǶBÄaĂ^ʌz¬RӐʥŒՇČ֛ŇIƳI¬›ŴƥŚƋŠΟhȗXŗ൚¹”DÖf¢r~AIǥĵƅO§fǭ–ƛlŹ¢¡̜șðgÔjš»RĉIJɵÚƥúûßÅŵϟµƳÆʼnΏיɪȡu‘Õi»]ÕăÅ["], + "encodeOffsets": [ + [-59555, -20648] + ] + }, + "properties": { "name": "Bolivia", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@˛XȦņƦÑ̯"], + ["@@åĦłĴ›ș"], + ["@@LJMŲƘ–Ɖ"], + ["@@ȗ}İĊĨË"], + ["@@×§™àĬœFÓ"], + ["@@ÚǼÊĥţĕ"], + ["@@ĉćĮːcȇ"], + ["@@ř¯–ĘĄ§"], + ["@@ėeɐ̮ŒξʖĞĀĿī̗ҳ΋"], + ["@@јÆ؊őυࣽǣĽőĐ½ƽɭôçǛǻßɕòχëɅҢ€ĨŸpŏtñƞŴՒͮƀԶĥ"], + ["@@ɯǑģĐǐƨDŽå"], + ["@@͕f˜ƬŌçÑĩ"], + ["@@ƯʓΟÈÈǂ҈Š"], + ["@@cūƯ¾ɂҌ’˧ÿĵ"], + ["@@ĝ…iƂȈĺÿȵ"], + ["@@Ɓy…ǾŰ\\˜ǟ"], + ["@@ŁIJǡÀ¿Nwʫ̃şݭĘ˝ŒõXŷOƅI½øŻŌŸʰ˕Άƥ†N¶œ„ƢHLżĢ˜`¢’¶ʲɪňĠfà‚ǜH¤nȒȦ–Gðn҂vQ°ÍÌgФtϴċ´^†~PøLÀŸ²µÀ­âÁnP’–––ptzvĖdffHȐĩ̄ˆ”¢¸VĈ¢ØOšRĜvJV¥–§¦ŸżQr犁œArY–iˆ¡èʬñ̦ȠܪťːˊɌպ֦݈Ęɀ˞ǽь࿫Ɍʯтƛ¸йͩ˝ϯԧѷʵוઁȻJλǃ׼…ࢬհǤەʌɇͺƸɾā;ǎ˓ޥƮŸȸӴȂòʀ˼ȺŁĨŎıôfȾˮ΂ҶÌŜąjŞ࿄ؕṇ̌Ɇɂ̘ɣµÅņ®ĨʳǿdzĀĝȒǤ®Ǔś‘ÍƗőՋʈɔǬЊļmñ˅ɔȎВæÚłόõ׀˝̼žͬƛࡌĸєÇనܗΪн΢́˚ķńǗӬƹ࢔ƂķҸ๱Aߑэ੓ΡЅŃ`LƉљՕ̵ƿΑͭơ˭EŶˣ܇ˣЭ͏̿ʏ˾ƉƕôįÑȩǏǽ·ȉĎu¹ίĚ\\įԽƮ৫˓ૃ¤ѳйңŏ્ǽƛͧ۟ͥ˯Ƒ˧ýɣ гףʻɱɩ¿̭ޓiǑȰÍɡ֥ğٚʢ¢ǃĊ٫ŧ‰ŵĔÉً˛śǝяNݩχषڣºŏɯȻbĚǻŽÕƝɋؒĻʔėɝȹöù—ȳŇ÷ǎީÇ݉ƭпЅʝЋЭҭࣁԹۧऱܙoʆ͐²΄ʢĢ̞ƴrdžɄǘwɺŔYdƼϯīɯˬŠˣĿ͗ÛÞŭαϹɹȅуÈʁѱࠃ׿ԕwJÅzË®@РhÀ|’ô¸îêĄĚö쁴ύɸƇ̄ƃĖʥĈ̶̯ϕǦ±‡ç†͑ͺtqMo…]ƒţģŃßU«B[ôhż΅͞Υ˺ʍ‹ÿŝ˳n³Öœ¢ƆĚưɄʊƾࢤ਎ǠWƪԾ˴ɬˈцńШʪƜ۪ȇԶɛŪʏđƟ¦JŤŚǴŒĊžۆ‹Ƭ¨ÀtfǕŪƻơ̈ƉĉoħgûZã\\£wð@Ö_ƹºi áކŇƆMĐăĒţxǕ@±bűƠ«`˝ƹ঱ŸZʼĦڨíʶÁ‚oNJm¦ƒ|ƒ¬ƒ’[²kÖÆ\\ÖĄ¼^Öjv’ƙŮďôΒך]ń©F¶ƴŶϠàÆùüÙƦıɶQĊ™¼ÓiïhǷŴţæ¡¢kź•ƜeǮP¨ĶƆJǦ}B¡qÕe“C൙ºWŘgȘ‰ΠřƌųƦ«œʼTċ֜őՈӏʦ«Qʋyā]ɹ`í²ÏÂųƒmèխƌȿNJ«ŖɹU˽ǞؙŽ̧͌ͷʺǡц²̔ĥ͖T¸–´èŜ^Ěćκযƿ۹ЫʱʗħjſWã{˛˅ɽÿƛĐ͋²ȝPĭGăEƑlķFė«ŻÃÏa©E¥R·„éà¿}ƒ˜୞¶ƶÇs{]ͻ˹׃ȉŗۻ]ǕвۣĊĴŪĶŪGńąĢŏƐĉÆ·Ʀ‹jŵĦƵЄXþŸ|¯^Õ쩚‡ti|jjp|KńǸš|vŘ‡ŒˆȖԸτĉ̲vΠĄƶʢþњ²zŐxú¶ŜĞĮĬÌΊȴܸżĞĶÈ´à^džQłd¾™v«à¯Ģ^ڟ¤L‚vLÆfˆɺ಄ɨఈȟּν̶b׾ӨŶˎÑƅ͢ґRHղචXãŀÀŢɐȧ҈̲ʀ΍ŒѥǦŽѼϥʌf͈ǖƄşƒŽêF̴ΖݲΠǒͶӜȌ˜Ɍցúƥ࣮ϕΦijɜDzŕ͒[ƞǓָ^К̍ŨΦʪŜɐ·˨ĊҔːɸfͰΐËǸ‘x{TøhNJƒ¨nÖUČgŶſƃңϘƱ"] + ], + "encodeOffsets": [ + [ + [-49649, -28433] + ], + [ + [-49750, -27035] + ], + [ + [-46346, -24462] + ], + [ + [-45188, -23697] + ], + [ + [-39837, -13796] + ], + [ + [-39673, -13411] + ], + [ + [-45567, -3010] + ], + [ + [-45960, -1349] + ], + [ + [-53076, -1468] + ], + [ + [-50819, -234] + ], + [ + [-51868, -134] + ], + [ + [-50630, -115] + ], + [ + [-50931, 275] + ], + [ + [-51636, 143] + ], + [ + [-51356, 403] + ], + [ + [-51506, 1986] + ], + [ + [-61132, 4458] + ] + ] + }, + "properties": { "name": "Brazil", "childNum": 17 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ıj‡ǜȂųÇÑ"], + "encodeOffsets": [ + [-60921, 13396] + ] + }, + "properties": { "name": "Barbados", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@Ĩ@ŴҟƷŒãє"], + ["@@ɽƳĀ˙ƽ̗ӷҰ̢ÌӒ̤€Ĺ"] + ], + "encodeOffsets": [ + [ + [117788, 5018] + ], + [ + [117788, 5018] + ] + ] + }, + "properties": { "name": "Brunei", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ǝŰīĞGČh’Q®í×«ÛyÉSŸLi‚ŒÅL»q‘§gſCƝ§ŻJ½º{@ŝÝҟcͥIJş—éýƯ}ƭmŻdoºɇÎƹě¤ƵĆijǶl˜ĸâTf´Ű҄Ԅ² ĮªĆ|ÊÌæŽêb̰É^w{Ĺh[ľSźPîMʲď´HŰĆ P†]¼•ɲĉSƍ"], + "encodeOffsets": [ + [93832, 28427] + ] + }, + "properties": { "name": "Bhutan", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@_ƧגࠁȖԋࡔҿĒͅͰqSһ̂Ыࡘȱbȃǎ½àߦ‰ȡgĭÅÉĭęïՇdzͭΏ›“ֵέȿ֍ǽŽƓƽ¯ɡµĉĵ›ͥޑʯÿݏ\\řĠȉNÙtщʺȫFɩƙɿ֥£Ý“ɇƛŁLJã±ȇ×§ą—…ߣOĉĚŸ۞̧٦ϙ̶EᙶࡄŽIᵦሶˎ͌ϯզξʌ{͆Ț̌z"], + "encodeOffsets": [ + [25865, -18220] + ] + }, + "properties": { "name": "Botswana", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ڊअoЛŻȍÎʣԠųŨ̽ҾŻ̈ˡgɁĈʼn࣪ڕ­ƯǦ͗Պ̃ɒԩ˥úȿřટɀϭ́صvݷˣҫ¼ωӵ༩˞˧̰ΛɔʱŽγȣЋқ`ܱŕŨˁĻ֙ǀ݋Ƴţ֣ʇҽĵ՜޹ޘÃϪ˩ˊƗ֬®ӮƻƤʶȮϾުɰˊВaΞƨƖƶȪ˃ܪζޒ¾ҜԢȇƲÐĒୖǂβɺވݒô̔؈̮̔Ý"], + "encodeOffsets": [ + [23409, 11182] + ] + }, + "properties": { "name": "Central African Rep.", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ˣ\\͠¤»¿"], + ["@@œ­Ăƪ’Ļ"], + ["@@ĵÌƚR£Ý"], + ["@@ƍWʈĸĹğ"], + ["@@ͥyɰĶǰŦùȡ"], + ["@@ȬǍɽ˒¢ɸǼɭWκ̖Ôī̤‰nǽۥ̍ԡcƓŤ”ϢҎՂϲǨÜɡƋϻԡ˙"], + ["@@ŊĀҪŝघAуǿKȍЫøń´ƉĎàüȡſΫÐįƘ̑xsƦɃ”ͨΞÿʉɶʵ"], + ["@@ŢqȡuìLjѺDzѥ̑"], + ["@@ĉƒǔȪĉǥ"], + ["@@ॴΠͰӮࢨҔ܈Ǥذɶࢢ޺ਞֆႺӲૼkԶˋʡɦųēɣއͷ֕Ƙٹƕ̂іųȰȫԘƪʢĹǫ̙ͿɣЦ‘§ȧ˺ӧՂÙì·ȋï̔ƍࡄį¥ýɤuѸȸƮDZʆ€ŤħÌŏƯ×ΰÙቱկʡ’Kǟ͝ƒďƁÇĊı‰Tǹ৥ۇɋ˜űȠȧfÉˤ˚Φɹŏ²Î൤ۨˀ˃–ǎ؎ŮోSҸИƕ{ųŠūʷगΑȍĀêĎ΍ˑε{ɃĒȯHÇΰ̳ľIଘέɜכœħǸljŒٝىʏګӋՓϳhǃʃᥫE›A"], + ["@@zùƓ‚ڏ"], + ["@@țûÝâʺZ"], + ["@@ĦéʯÇPĮƺ„"], + ["@@ʡĦZĴǂLĆȥ"], + ["@@ਫŌோ֌̔°੮ȣ࢖Οĸŧė›"], + ["@@įˈȒNjġĻ"], + ["@@෺˕նڋۮʱоաĚôâɓɗó˿Âৡ̀ɪɢŒƺĩǕҿã˵ƄƺĀʵÀbźӫImnj΂è͟ ͇ȌǯÜɒċïıĤͫ‰•ˊΚ‘jƮӻíʍȸάĮ؄ȃ"], + ["@@Ŀůϓ¹Șʛ޳ࡵ÷ͥդтdƥֆ˜ՙ̧ɪ¨ǽǿײŽ€įĪŖĻέ܎ϔ°ǓЬĦ˴ĵžƱӳ̓ʸpħĕɔ§΃ɗࣲȬĝțЉǍ’ijʥËȚIȍȓLjś̌͞ΖĬʭԍȌ”ƌǺňȁϯݥǩÀɡáOю΋ʳƏ”˘ҺŝˈǟĔʝϥ\\Ŧ͏ƋϫЕЇŋŲάŦרшӧGǫǏҩŒɖøRȐޓɇಿƔٽƇǡƔ¤ɒ߈Ѷ۱Š˚ǂÃądž©ˀФΎąĝøĴŸǯzmņǔƀȌ«œǰвڰɈĠijìɚˀ̔˒րȤˮćrĜǪ•"], + ["@@ȋŸİèĜȟ"], + ["@@ɓ¸̼Üħœ"], + ["@@ÑʞNJôķ͑"], + ["@@વʬNJŖײhͺϩ"], + ["@@Ĵɯ˳—ѢƫœĻ˦ƍ»ĥƪWßřߍՊlǺͷŚژ¸"], + ["@@–ΝƙȕÉЊŹõɵʔŤ˄Ͷƕäơ"], + ["@@ſrðǂÐdz"], + ["@@֛̈́ÈòюǏdžLJÿÝ"], + ["@@ůĩˍ¢ɌǔDzŋ"], + ["@@̒yŘṯ̌ʭ̈„¬̌ϼĚʑۧ͝ĵͳĸ˔xΛƜȟˤ€˒ͤ"], + ["@@jŸŰcƙœ"], + ["@@̤Ɍœǯȏ›"], + ["@@áäВƮͯɑ"], + ["@@ȩ͋M˞ˁ˳ɧÉȄ˒ϋȣѼծß̟ɞΜ˰˫"], + ["@@Ěř̽ŎɤL"], + ["@@ûÓÆƒvý"], + ["@@Njã¦ƺŦĕ"], + ["@@‡Íʝàĉłΰœ"], + ["@@őØɾɮɦřΑǫ"], + ["@@ŗWΪĐʑ÷"], + ["@@ԋʆդZ—ʟ"], + ["@@Œū˳ƒǢe"], + ["@@ɒƏ‹ȅЯγϗȊJʔ˪ʆ͎f"], + ["@@̞oYıΡHÞŚ"], + ["@@έ¤ϡɶٸŝĘƻ"], + ["@@sȋҕ˝ϕNjֵ£DZʚ҆Ϛୂ¦"], + ["@@̀ȣ·ijӿʸֈ "], + ["@@ֿǎȚĀИƭqğ"], + ["@@ΘǔΖȫႆӗ̾γǯǑࢸØѶ˟سʧ૧ȶõȄ۱Ǽૡۭٓǃ́Ӧ୏īȂˈְȢĹήʦ߾Ѩ͔͈ƟÁȣːȽ"], + ["@@Οƴ­ɒͤſêʅ"], + ["@@аåĉëډŠʍ̠ԶƓ¼ƙ"], + ["@@ʌMśşůŮ"], + ["@@DžNϤłɝŏ"], + ["@@§ëǛĤĒȢŲə"], + ["@@ߝœŏȨ৴ÇòǧǷS"], + ["@@ʟĎÉɜɐǤɾĹƣϓ"], + ["@@ԈűĻ׵ӟƧএƒ̡κƮɘѼ˨ޜš"], + ["@@LJÒȆö}Ƈ"], + ["@@ѕźϘD¾Ž"], + ["@@ѥƪĦƌʮ‘Ēʣ"], + ["@@ϱĄʜŦɾÓħƕ"], + ["@@͇“~ɖ̊ȁ"], + ["@@Ǜk˜ŚƄĭ"], + ["@@Ǣވ˲ϑλγė"], + ["@@ŋƕƉİʖ¦"], + ["@@͑ŊLjƔѨ×˝ȅ"], + ["@@šƮˀĩƝÃ"], + ["@@ÜǏʗÛǴñǩdɈ̦"], + ["@@ʳÜˀÆKš"], + ["@@UěڷĿێȜ"], + ["@@ĹſгFÎĿۇư̶Ğ࠲S"], + ["@@फ़ʣҤϑОÓ࣏॑̕Ô܉ʤ͏Ǜň̋ÍȫƐƠࡀǠùȨъĭƅ˺ΈÄ̎ǿ"], + ["@@̖įٟîΊ‚"], + ["@@­Gȟ{ͻǕΗʭ̯ȍՑԩٵ@ܥFɗMĿ“˝įöœr­MƟ’õœ‰ÆÓɏƇࣗ͏ٽıЕŧϻǵϷǵɁ@ϝʨ‚ɲӄ̘̾܌ªĆ̅ౚÇɜ̱ƞ֡ʤļƬūĺ̥ũΘˉGȋœǭ̚ǍäӧȬࡩΔ҇Dz҉ǴՓȰࣝʳૻŔȷÀ˿ŕԱȴ˽sÇ@ïƄ˯ŐΟ¼ijWˣùŧæ٥ŖûĸùŜµɌNžʧÆMͅȣBܑ@Ω@ܑ@੻@⿿@、@、@ᅍ@Χ@Ω@੻@ີ@Šćž@čąƓʂ̌Ŝͭ¯ö˰˽ʃлǦŠŐƨűȠĂʕ²¤΂ĵ’ʷʟēсȼɱͰǔϢǗ̝ΕaÁŶďƵϟ€̓øҚİԡsŞƄŭzJLjĩšΧ¡յʄʐϨؒĄիHˣȕƳǐ°Ѥ̜ƒǐѺ˫ЕͬȰʚÉúŸǃ؍̧ʻсɋ̶ːƆĈȒ˧ƵȀҢʽíƇˆұȐùƔˈƞ§ų̃śΈEǢţɻǪϽÒõNJȜĤΫaʣΡʱƕ٫ЈʖΆΖĆϩ£̃Ȭܴ࢔ȟĈɅх†ݦëƄ˅\\ÁĞƟ„ەʘ̑„“ǞȧĔĆɳł¸Æ¢®ÍÞšŌěþϛϘɯɲɫɾ֟̆ģøÁÎʅdžɡöěʒˇƒ˭]ԳĽšĿǁiĥʵȟCˁğŵ«ƉíçZÓʼ؋͔ҧˮˇŚ¢ö¶Ĝ@ÂŽGχUʟũЕĮÕåȥ”ȩ”@Ӭ@݄@௰@݄@௰@݄@௰@݂@݄໒ŕྞҧग़çܨǕ֯ʒ̨¬˭îȀǘͲEŶƈֺT¢ǢѼƥʛɉࡖƴȼǐј|íâ˚ƒࡸǞЄȄ؄‰ɨĐxǏহ̃गį݉ˡԍ̣ɾćǕöْZšȚ޲̒϶Ñɘøþȭܒі਀ȸɑƓĔċǜ¨চђУƄưžٞɷࠎف؎Nj̒ÜƹǖӶ̨ȇŒμľŰ͑ʂÝǵ˙ںrцΞߦLजŽ۔ɽណϻঘÛƹŘڪƒےǏր̅ōō֙F̥řʳȕʨëᕊŗ౜ĞޔǞόɓӾ•ƼɥȨƨՀ˻EƉчEਤ׋ϛ˺]ȴӌđک߀ƈǾାƐ֤͢שÛųƅࡕuĩƁӵgͩŦ;˂ᅰʸДùʸΑ،ƷƔƕ࡚ªॺ͇٠—ૼŪઘĥђæȁɠপϥȼȨҁļϡ¯ϩφζΤÎŋŘўwθȭҠ²ʕɭلǰͯةȒȧΜµō̦{EţࡇŽՔιȽː՘ZŢˀͣЎdžʄ׺¦ઞҢ͹͎dzǹ҇fѢːƝdžՔĔŇLJǺɊاşǎǁÓॣȎӯ΂ɈʨʎOŨ̹©ʓƖĒβ͔ƤмÝƂžϹæग़ΈΪǽҾmڢЗ·஖ٍ֣´LJŋ҈Åމ̵ӜJʹţ׮ĪȧijࡲÍЏǃ́fِͻāͿ̴ǽަ࠼ࢴ˹ΆӍáąϡ’„˳ߢٯڤʰޘ৾ٴÖȩÒȶȖѳƄĵԨ᝜ŻȔ÷̩ęώíêƉ܌¿ӣʫӜƒČljՏǗՙWˤʩǮ¤Š˧ִ̩ơΫ࿃ו्Ԑʵ²ɣĹ͂xўɃ̖ϿΥà˭ëࠍ̢क›pƋؐȯళٻѣT๻ӲşÉಋâ͖ı¶øࢺśߚε࿒ųࣟ࡝ױDž͏ĸÎũПÀǏŲȗƼƹʿn\\ʏցğছȰ̙‡ଝ̠ŘɿʒqĝĜਆɍʷŗԼŤܺɉɬ͇ؿɓދ`ΦȑԫǷǑȨƳ֫ǒʦűΫʁȻRɨƥԍʇԅ݃ɃęwਗƙǗ֞̑ΙǬτߎUظ୿ུ̫ͭˮ࿘Ϳܾ͑ӾϑྡྷЗ˺LJŭɧʰǦॴ|౤ȹƤɉǣӋʄΩųڋ׊ԇȓǫ̤g݆ҋŪɻ΃ɛ̼ƶ̾qٌѩ͝ΤͲϊʢƑŚəƠʠɁɸ҆Фʝ̙ͨࡂĖ̄ȷĆĂÐӅф࿀Զঞބà׊ʅ٠̤̅ଝ֎يז†ʞ̈́ćŕĚǐ˲ʝÈŐ¶ȓʀƬĬʋĈǜƚӻT֖ئэɶĥϚٖʒಲɍxŗϖŐ׬Ǒ[Ą߈ɘࡤ̉íʅɢèɼùƾŵƩý̎ĐȒÓǹƩδɿ०÷ʊDZЪƸĊNj̕΁ð̩࠙¥ޞěªӝ˴ƿηĭ£ŕŔ̷Ǐ̬ÑѦǐӖjˈƉŸɑŅˑַɕՄŰͤθŐǃƧſʶɠàΏĞȈ܈ɸ̠ʨ̢̡“͞˔Ǡ˴ЎźʎĐÁžξç̳ŶsȦ;KťŘ̖΢ˊ¿äą̉ƅРª¶˓ƜæʲʻǏōƜēȤ²ľřұş؈\\ƒǙȚVƪǥ֍˽˞ŚԬNǽɯϗƻٴŜƲƳ̆»SʥѷĻӘ˱ơզȥˡुĶٔɳǝđў¿ʍʼn̊]Âƙů©̢Ň̄ÚƴǷȄ¶ÉœǼƙΥΝܞȾÎĥɂiͱ̥Ӡ͖ɘ¥Ǿʽ͎ÃμĐҶʅʛǣءƃǕƭৃǷ˓ȧȿ¶ʜƕȕȃඬײ׺Ĩ͍płĨٴÅʀ̷͛ƯNJţЬɪ͂tоʙƘɑIӍѫĉӠÏ}ġȟ~ˈɋ੿ֱಅƋୁࠓ໵dzǍňڝÌṽ÷Ϗǽαթއŵୣ࠻૿Ɏॸʃú×ȁ̝ׯԋҿ˿ԣğएБзЅһȣɷ|˺ƻ؟˻"], + ["@@ʻºȘNJäɃ"], + ["@@ߎ¸ʈʢҐŠఞɭԿ̛Ȃ±ం̤ϣ̆ոq੆εӊ۝̀ćюɦ޳੊ǬǘಠŹࣈ΁ࡼৱŇљ޲εюĹzŪ଼̓ĪţѨq¼αуƜƏŵ҅ŮΏŅqƕ܁þΔƟÑɣ֤ɬʹWDŽυࢍǙඩ¤҅¢ðƊਿĨ͛ȶٿοޥÉछɑᵽƳЩ̀Ý̚ྣôݩŢֵՊᔔɐ࿢ñࡌìᄿ͎ምĕഅ˜֩ɒIŬ៺ϬᕏďʑÚОNJ۹UͻĬ˜ȆؚɸɣƐ̈ǦᰶتδÙžȏЃБ"], + ["@@൏ҼʶǺઞÒؘǃ…ɡ֕͡"], + ["@@ੂVࣤƓࡰտ൹®ఝŝсÎ̥ͰӿĠÓ͘ાÇ"], + ["@@ߐŢҤAɬĻľԒ՝ÈӓʐӸȸࢎǁҷɜȀÌ׽œʷʨ͚ȚࡌƁ৕ʺࢎ̎Ք‘ªƆຆżҒăैܩߝϩ԰ŜˁҗزʨʢȋžɸĪۦƥOȕ΢ƋɷȄƎɀসơ߽ʖؘɊႤŹո̃ܵёࡨ͐׌ķęŗݛŏш…ʝϧђΰ֤ļ̯͑ТƸ҂ʯćɊ͂Š੖ƋΌƫɟȝϋU׍ɛݞǺ̺ÑҜŒź³õɓे̣ԪÎŹ̻ϘϠࡾɞ௢ȡŎŇ෍ρ੾Ɗȗȋɞֺ͂אʁŤʭڣਗɏئÆ੶įѪůRť෗ÂՑőՀØӪę§ʁ஻ÖञŻɬƭ৒ÇʑōĠɓǎÂÈā€ƨΚÐșϓтȦàů̘žĞʗ]ǢвŸĉȳ͐¬ڎɱƃǿׇFܨïȶĨҨţ։΋تńӪ™ɌŠ٪̛ƥŋԃîҬɩ͕ÁԅĈhƯҖLJՏgȰƵɵNjѓdʑǐŽŧȗ¡˂™u͗ȱʩةȴÜȔʇʅ܅ծߦҬҷȩۑåƚǪ΁Óޡж÷ďȗšèɓփƂךεƕĕБˆՍʆʏ¥Ҁķ~ǩːąÏǫ̰àϞǟǿÿ՜ѿÀƼΞɹɴƐ֐ɉɉŃϤÉśő̯SΊɟЮ@ĵĥ͚ǫɇϯѷѦļсͬ˹ЫV®ʳफИIĭƻŠȫȨ—Ǐ৏֐ƞʽ٫ʬΕk٨ѿϸá»ë๎ڧť˅ᎋ̦ӷƚЀՋIӅŮʯüƈIJ͵¯թ̎ԤƐޅŮĮƒ˗ÍߥӚƸƸ՝IŻŹÅƸ˥ŒȁƼȧÅȌɥࡩx©ōࣵŻݻĺʇŞ¥τؠɐ†Ɍ఼ȍ͕̈́ĂƖχʐՎ[ࡺȂӲeܫֶ୐ҼȶʬӌȊࣃऒ҉LA˖ʝ^ņŷɽMԻɢƪȦ༳̅zʼԔlʲƴۉɎȚnjё÷̇ÀȚŞ؛ÐƵͦёSڃ̀˵ǟҖƅwɝԿ÷ᅗĶؘ̌եDzؓėܙƠ׫ŸೕŲ̇ÙҕĞÙːேǿߍȼ֡ӊഢįפÈᖑϜ³ߘঀ࠮ࠢː๨ńࡈŇࢭ΃տӵςۙ৐ҝೇ˻"], + ["@@܀ǵదƀрÁƚƃԽƏ̒ī९ϑڈòѐͳҊêŬƃ̗ȕǀЩ߿ǡԉ„šDŽľΉϵśһîଷ٠ԩƐџCࠟϘъ˂޲̙ڎªöǢɤÏ΃ʔײ`ғŪѯëՑDzҠĨϢųχ˼ࠈHUŴ"], + ["@@ס³ϋêขǶӓȫ"], + ["@@ߔǁഄiȸŃร࣑ჿHφõǺȹЛͣࠃ_ӿܸھ޼νǾƊƈຬĴ"], + ["@@ѾîôƵӖȖࡼY၊ԧÂƯᱝىҩ͍֕÷σקܑĭɷ²ଃ̍ދӪએʞңLႢຐݯӤᧈǔ࿈ʿơĵ"], + ["@@ͧ_ˬĮ¼č"], + ["@@ҙÞ˺°Ǡō"], + ["@@٣ĤҔʂנȱЏų"], + ["@@}̟߱ჃͪըΌࣜƾࠂǩ̮ͧ"], + ["@@۱ŋÉŌԬŨʐŧ"], + ["@@̽ƴ̨ÆVȹ"], + ["@@ЧµӟĄ๘к׏҇"], + ["@@ӛéՊʬ­ȁ"], + ["@@ȀÛӑƅء_ɰżߋ^ƺĔωVĝŔ഼ŀтʕ"], + ["@@ࠆőɓđ࢟Yȑɮіºªé"], + ["@@ǃץМóÒɅˇôȍùǢʏ̷ÖÙƗᄩsȽƲ˴¸Ӈƈ౤ʖ᭣ƹǭðոɴঠÝχ¢ϩȦ̀ŒӛĪׄĀದсȹnjӒzܻĆξÎ܏DzࡠĞޤƕưȔࡔȑ"], + ["@@͗t଀ňߧŻ"], + ["@@ӎ½ʡDžڰðʬDZȤ̂࢜ßĨˁӕҗࢽƋ૑h̙IJᶿկॷŠաɚఐɔ঒šӠȦᔱƿšdž͖ƂңdŷǍ̃ŠÀǁӋģͥŜ˅ūعǠࣵ¾ʶȐল„޺Ƽઃýاº̤ńຼľඡ¾ϤȦலmࢗĈۖȒڰ̶ȵूI൪չᄘMDƂާȘ͒Ǻ۟ȌৼϊՌ×Ʀֱ"], + ["@@ۣȒΜĒφą}ȝ"], + ["@@ੱ¨ߌĎ˦ŵ"], + ["@@ࣆţʯ˓ҐƢෆ¼ٚƻܻ‘ᅌŻĹĥ၁€ᅊΥ̱ȗؖģɬǤόūІÂdžùʂŐલȇkŒ႔ʒאË࣪æ໨ǝۀ̳ܻȍ࠘įҗë͹Îîˋඩģڝ´ډ̺SˇݥÝՕĊÓ÷ʷḙ̂ďᔫIģ˴ࡱɵ࠳¶˝ǤɇƗΑL۷ԜǢӪݿѐᆵ÷ٟȈ͜ĈਕżД¸̙ƦކĀಮŹ"], + ["@@ٹȍѨǕω‹ʲDžࢫƯȟȿّľĦͲމʕʏ͛пǞ°ˡ͗śзƒσ̜̫Ǘ્ƒ¹ǰʻw͒ȀߪĎᐄܐሺ†ǑłѺè߮ƹ"], + ["@@ͧ±ٟİs˄রŷLȉ"], + ["@@ց’ۏҶϖG࢜ͯ_Ǐ"], + ["@@ᆸ«ȯɯᏋdǩǼ׮ü"], + ["@@ַ€ÏŸ੊§džāׇ"], + ["@@ϣƒ׉ǎղƌм˕"], + ["@@۰y਱ȫ״ѝȧᆣƉڕƔ§̾ᙎǘ"], + ["@@˦˭ඹÐ̇ģԩúࣻḚ́ƚနɤࢾë"], + ["@@ઐšΏƑͪűႱɧ֗ʆ״¾कƤʃϖߚRবɁ"], + ["@@܎νܺǘӚɷ׌fۚȣό؏झqڣ̤ಃ°Ľĺ৹ġۇüūǚ૶YϙĄղĐہœ„ǪرƳŰȀڏLlǮńæ࿰O"], + ["@@ŹɍथƤHǐݴ€̤ť"], + ["@@ਰґஂé͈˿ւ¯˙ʴ܌ȹɱߐǡˋˁߪ°ˤſ̠ŐԘ˝ྑʹևʣΡˎ¶ϫّ¢åͯ৷Ξјϓ٫ƘˉƫรƎйŮࠚèୱÆ̱ŤЌtߣźೊ̔਺ø౫ÞणƅƩĤ࠱ĥҹȦ੖Ǭ૳Ù܋ɌƷȂᅄó͒Ŭॣ¹ࠩư܂ª̔ͅှƉೱɼ҆ǰ෎¨޷Ș়`ॲdz"], + ["@@ᣈ÷႟ɯᦜŪˆĒЖĻܨ†̧ͨ٬Ð࣪ßȉɏᛏχᇃŁჁ˕ᾆǘ♩टঋƀϔʱຓġద}ۍ˥ࢣÉ࿧ưޠıĢɃᅡ÷୩ĈઞɭऺSƇǍ῅טŏൂÄ๨ɋ͡ǥ಍ƒਈƷ֟ˉᅫÃÃΩՍƩ༩w࣯ǰ̜Ƴً¡ʨýቒOѦʫ׆îʲȇʩƹᑝͭƥʠرrڿȔʠɍ൷[˵Ȉ§ˋܭ«િɾȏǩ֣ÒŕŚOǗݯhċ̰¥̏ۗ¬ʼn̒ऐɸ೰æܳɂ˯̊੘âখͷ܌čࡤ®ࡖκĬŤহϫ౓vɏ̲޴ɦͤgֿÂņʎڭΗՍyʢɘ࠱ǻ՛¦شԈະŜผţ౪ǦׁÓဇþzĺڶÅᜁږßΎᙲ{ႊҗ৲ã̐ÂݕpဏՊㄾҖ༓ò໦ДℹٳགྷÝ֌ǎᇏȵ໩̑Ĉ߶ɖጎȊᐯħಣ̫֣L঍ɠᗄĂಊɂያǥጉ¡˗ŞتàϷàნǔݍ྿ƅԂȖఃÃ̗ĨᳮΌ࢜ř͢þ೨Ë೑Ȣ฀Țቜ̹ĆƜᣒͫ᠛Қ٢ľλĠੈ³ŭǨቘċ୿Ȝᒌ_ഞ̣όØಷͲᗮJ์ʕڃƸՊƪۢh࢘ǗŧƲप„Кĉ"] + ], + "encodeOffsets": [ + [ + [-61222, 44995] + ], + [ + [-68364, 45755] + ], + [ + [-62424, 46582] + ], + [ + [-75463, 46680] + ], + [ + [-75332, 46561] + ], + [ + [-62571, 47048] + ], + [ + [-65342, 47584] + ], + [ + [-63400, 48420] + ], + [ + [-55528, 48580] + ], + [ + [-76501, 46084] + ], + [ + [-129118, 50539] + ], + [ + [-55863, 50779] + ], + [ + [-55391, 50939] + ], + [ + [-129680, 50797] + ], + [ + [-63284, 50273] + ], + [ + [-128188, 51300] + ], + [ + [-130250, 51856] + ], + [ + [-56789, 52774] + ], + [ + [-130994, 52710] + ], + [ + [-81289, 53199] + ], + [ + [-131449, 53659] + ], + [ + [-82669, 54014] + ], + [ + [-134915, 54473] + ], + [ + [-131637, 54211] + ], + [ + [-132267, 54393] + ], + [ + [-132964, 54444] + ], + [ + [-133361, 55254] + ], + [ + [-135839, 55427] + ], + [ + [-134069, 55787] + ], + [ + [-133709, 56085] + ], + [ + [-81897, 57557] + ], + [ + [-80830, 57617] + ], + [ + [-63225, 58936] + ], + [ + [-81629, 58896] + ], + [ + [-70819, 60458] + ], + [ + [-65952, 61816] + ], + [ + [-69871, 61687] + ], + [ + [-80416, 62187] + ], + [ + [-66388, 62839] + ], + [ + [-66591, 63365] + ], + [ + [-81454, 63910] + ], + [ + [-66379, 64061] + ], + [ + [-72025, 64050] + ], + [ + [-83968, 64466] + ], + [ + [-79745, 64994] + ], + [ + [-78517, 64916] + ], + [ + [-86957, 66828] + ], + [ + [-86706, 67149] + ], + [ + [-85735, 67376] + ], + [ + [-110686, 68614] + ], + [ + [-64185, 68666] + ], + [ + [-110489, 69020] + ], + [ + [-75388, 69411] + ], + [ + [-88673, 69362] + ], + [ + [-77492, 69963] + ], + [ + [-80878, 69830] + ], + [ + [-107049, 70048] + ], + [ + [-76678, 69990] + ], + [ + [-104290, 70233] + ], + [ + [-102622, 70459] + ], + [ + [-102394, 70670] + ], + [ + [-81111, 70498] + ], + [ + [-92364, 71086] + ], + [ + [-78843, 70804] + ], + [ + [-103599, 71063] + ], + [ + [-97805, 71244] + ], + [ + [-69544, 71210] + ], + [ + [-79901, 71389] + ], + [ + [-81337, 71463] + ], + [ + [-99778, 71315] + ], + [ + [-88998, 71796] + ], + [ + [-76501, 46084] + ], + [ + [-99105, 74688] + ], + [ + [-117270, 74336] + ], + [ + [-107815, 74670] + ], + [ + [-81446, 75423] + ], + [ + [-88667, 72716] + ], + [ + [-102401, 75721] + ], + [ + [-100628, 75642] + ], + [ + [-95406, 75941] + ], + [ + [-122609, 75892] + ], + [ + [-99692, 76315] + ], + [ + [-97594, 76294] + ], + [ + [-106618, 76838] + ], + [ + [-95787, 76829] + ], + [ + [-98384, 77323] + ], + [ + [-96795, 77568] + ], + [ + [-121168, 77394] + ], + [ + [-80960, 77749] + ], + [ + [-104680, 77840] + ], + [ + [-106519, 78422] + ], + [ + [-100045, 78302] + ], + [ + [-103655, 78418] + ], + [ + [-110891, 77883] + ], + [ + [-91879, 78344] + ], + [ + [-116286, 78586] + ], + [ + [-96558, 78759] + ], + [ + [-118324, 79220] + ], + [ + [-91989, 79123] + ], + [ + [-107067, 78994] + ], + [ + [-97776, 79660] + ], + [ + [-104134, 79562] + ], + [ + [-116564, 79621] + ], + [ + [-113109, 79978] + ], + [ + [-112451, 80539] + ], + [ + [-98513, 80417] + ], + [ + [-105908, 81220] + ], + [ + [-101162, 81901] + ], + [ + [-94090, 83081] + ], + [ + [-71156, 85010] + ] + ] + }, + "properties": { "name": "Canada", "childNum": 110 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ÅÑ@ĝ«ÏƜŽBAҬǥǺŒÆi’ÅC…ŸʼnOςĩȟзK¥]u­mÁN‡ŠwzµfĿ¡S‘Tďľ¯Ląků§¹B§TďƨyAā^čɵíǡťǕȍǦή̡ƚóǘӓǿųíõȫ֑ēǕÕp‡lÉü³†ĿĪ[ɀƯlűMě‰ñ½‡ŝħãI‡RAÂÆp¼–„ʌɾǂhÞxĮƘ²–nl€ŐĘŌĔvˆnj@bč°ÌºƘŠǨ³ɮƆ۴HĘxX^G\\]NčMVSt‚˜ŘœߜɃĐ³ćǑ@A"], + "encodeOffsets": [ + [9757, 48405] + ] + }, + "properties": { "name": "Switzerland", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ɫªƎŞĞLJ"], + ["@@ɓśŽĬә™șȬࢲFƔƧ"], + ["@@ڪĉό¸ŽǑˤċȠ͙ۋNJoǬʫÎƓŅƬƥȗ€ӋʠĄɞƴ‹"], + ["@@ƾċ͚¸ĶǣƫÁ߱ʎϐl"], + ["@@̲áķɗˣŤЍÏɗɈǶƌԚŭ"], + ["@@”ąʹSɶǿǟǑϱĻĚɘɳ‚“ƑʼnXēɎѿƸͰŖѰÓ"], + ["@@ؚŭѦʅγ ʥǮ͹`ω˪˞ƣ"], + ["@@mᇛ۩IȥŬٱą૫ƶąĈņĂ؄SʂĮĆƃ͞—ҩΘIȐ˰ɎŸ̟ȿeĀŋ̮ȱάÖШɁǬŴߋʢƍȄºƔآʲɿè׉—ħʖˀŤȿdžϐËѬˮȸƳ͆úƆÛ"], + ["@@ʊ˭ƃˁƁPɅМʂƄ"], + ["@@½ijΩCȯȑŖ̆ΖÒƬÍ"], + ["@@ğë_ʄʾ{ƽƛ"], + ["@@ͥŸĺ˦Ϛćƭƽ"], + ["@@ʃ˕Ɂ‰źĨăȊАn"], + ["@@ıܝƙIįʈƀʪȣĝėˍН¼ȲʢƉŔ͌öĽĺɖǀ®Ȓ̌…Ð͋"], + ["@@şƪâЬƲÜȜԑ̏ş"], + ["@@̙…ʏР\\ƖʬŖˢم"], + ["@@űÖˮ”ƻĩ"], + ["@@ŷÅȋĂ͈ЬCѧ"], + ["@@ƽƜĂĜüɷ"], + ["@@ȯãƙð¡ŐȦʴβƣǫɫ"], + ["@@ɣǑɲԕʍűԏהĮƦͼìĒȾʔőķ"], + ["@@ŧāƿ¦˨œ"], + ["@@˻Wɭł̎ாђčĖʟ¡ɯˋij̔̏ˁȅoƿ"], + ["@@ƻ_ĦðÖÏ"], + ["@@ŻšĒĢÑ"], + ["@@ƾƯ̇ࢁݧ̝ʽ̗Ƭ́ǩ˟Ƭ؝Ʃˇɮхɯƕɇ[˟٩ЛЩƝ׃ǗȃÊىĬąĥƵǑEſ֋ǯŁÅΝ˦͙ğŁ˼ڧ¿ˉɞç߅ǙÛ˹܅ƋċŞɵVҏճϱŗˍrޙʸ۽җˣř֕Ʊƒ¼͕ƃŽĠǣȉʻjߩƊ̛ͫǣاͪȹŻġȌӧŝϡԜµ¬ijďǟګQnōϐÙȺ̑ͭȹĬ̿ȳǧƨЭȫƯˆ̵χʓƟ͑DŽȝuɋȑğḘ̈͏ơďʉ˛[ýų¬։̊ԧդŌƜ×ÉܝЪϗ࿪eౢ̉ڟŶ͉ɑথʯǙࡓʩĕ݃ɂȧʂЄĮ¦ʑϐ¨ɄϞǘ¾ȈƉ ݝ̱ɫ˟хǼ˘Кɲ©˰ƐԚœ׷ìDZĕɱø·ҍѭȤͼŊİȂĵŕ˻¿έ Ɂ҆βŇŴƀΤãϸǪȌȿęƹżňďʸŔƶɫLj΁Ĵӌ̃ޗȭȟȶύĬɢÀS̐ܿǠɻ͎΄h÷LjŎĠɺŃȐˣ˪ĵŶϐ˕˫ǩ˺Ȣq֭ˈʞȂ̀i̫ǰ„ưϢKɏƲƆ΄ʉЕũČtڲ˨ĶϷVġϸৌūǿŸę˴ȋɯʉ‘ΫɢĸŔʔģĞö̉ƈ˘ȼŽͦşlµıгŨnȔҳƽĢȡɵȔڂҞţʈކĜˆɪƒüՕǏԟ̻ƉΨÂöʴŦˆvɑȫϱĔƒɆ֖śΚϸŒ˨ęѕǸèɔԾȴ¸ŞbƄԏɤ”ɪžŠÔȘáʶˊʆ÷̶ØƐŢGşɄ޶Ȁǁñ΂˗Ôϴɔ˜Ŵȋlj·ƨʏɟ͏Nġ€ĤƊƿÄŽͰʜॾɖƤƺӆʙ׸²ЀǓ˼A̜¼Ÿ͖nĊДѾޮ‰ƤͲЪȆ޲˴њßҶʒμɋႀʢɨǀìвǟ؊DzɈȄܞƈȎɼ੒ÇҞɤԤŅѺƴ࣠Ǜʼ~ǖȚǪɄరįՎࡨɕଢаŜľǺ¥ʌƖ®ĊÞÚÈǖν~mǂí§ÿ¬śÆ̽¢ſVŽĢĿȦǟ֛²“lwPoħŃĻƉFgİĭhCÃǕů\\˽ɘƛ×ɯ̤ͯVˋʰܿDˡʦÍǾŒƖ„"] + ], + "encodeOffsets": [ + [ + [-68903, -57115] + ], + [ + [-68689, -56477] + ], + [ + [-71375, -56237] + ], + [ + [-72695, -56184] + ], + [ + [-73103, -55329] + ], + [ + [-74673, -54765] + ], + [ + [-76170, -54192] + ], + [ + [-70277, -53916] + ], + [ + [-76618, -52869] + ], + [ + [-76348, -52507] + ], + [ + [-77109, -51896] + ], + [ + [-76856, -51503] + ], + [ + [-76909, -50008] + ], + [ + [-76263, -50327] + ], + [ + [-77322, -49933] + ], + [ + [-76356, -49758] + ], + [ + [-76914, -48985] + ], + [ + [-76096, -46788] + ], + [ + [-75399, -45897] + ], + [ + [-74737, -45854] + ], + [ + [-75504, -45460] + ], + [ + [-75582, -44879] + ], + [ + [-75543, -44386] + ], + [ + [-80695, -34453] + ], + [ + [-111902, -27791] + ], + [ + [-68807, -23369] + ] + ] + }, + "properties": { "name": "Chile", "childNum": 26 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ŀ˯̻̩ǃҙ͓ʥҡȕۉˊ‰٦ԤϨċNðĪބƠΖßÂƌȦū"], + ["@@ŘScĭȉ†Ėü"], + ["@@ijaļòGÏ"], + ["@@QƜægÓų"], + ["@@ý§\\Ěâ±"], + ["@@ĵolǦĮ¡cœ"], + ["@@ĵoØŢžı"], + ["@@ɭ¦¯ŊˆÙXĕ"], + ["@@˽´ʷɌնʿ"], + ["@@ɽǬKŮ˽ĚǙҧ͑…̿݅͟§ȴ͉şȁ߿ŦȍȦDZ™هۏऋϏѷϣɋƍϣ’ڻɽܝҡʯ¥wśУŏ³ǂӖǂ«ĤLjƔҗAQƆɀĂ@ǦʆĘЊӺυζėŅү°׏֛ࣳГΏӏ֯īɍƈƥ‰Ƚ˳·ȑǬˁȼŇަşŲ˻ŗ̳ˮNjЈbҪϾ¯´аżݠ̻ΖÌԢŁȃ˭Öķƭĩ΃ń݇̇ȱjîǁƹ}ÕʃȵÛÅƤŧsõëdžőܗַɛϝˆčࣈЋԔ੏c̕ШȣÀǿϞ͝VħƻRˡŬ͇VϟȤПƛְ¢ÔƏܼпǾͷϭŅԅι̹„ɉūʦ¾ŜƛՀƞΜ˙ͼĝӛ͕κĸoЃǙĸȗÁNJȫśiĺåƿǭŔ̉˳ÏŁĖƿʑǯuîijȵʻjƗˡ˅ljΧǡ»·ȢħįĹ²ʘϙΗɻ˗ÈNJơʌ°á΋êǙω¸ĘǽʷmËɽɫÿhǵӍLåũƏOǶȓΫ΅ƋHĉɃÝłǩŕƟÌ¥ǍșĉÎÛƇĉËȝǿˆͱƯDZªšőʫĈ˻ǙǝŜćȏʍXɁyͩ̌BɠčsǃDžȈˉG̳ͳų»ŐœʥũŒȅƗȏǜ¯ȣ̣Ğ˹ʓӯ¡ϙʟſľɍͥDzě«ƓǖŹƕȉϱÎðìʱЀfǸɀ̌ȳšķƔkŹͩĥŸƒˣ’ƭɪħHnɫƫ¼ßŕɱ¥dzŬ΃͉ˆʵ°ħѮȖɸȧŊə§ŋĦʯ¡Ӊ΢Ήǫƫ˃˅ıȓĆǛɓˑȮŅNjƓƴ́˓ѕʬ×ƛȭ»©£‡ʇRçĒkJQ‰qs³uß©©—mDzΩN£HƟqʓÞđaO±¡oMƋìɕ¥…\\ovY®RěÆlεž¹ǀЋʃϧRǧɸoɨ؋Ĉ˄۬õĠүĺθŽɾƄǼԻUխǙŦˌƩɚªʄżĂè͎dž”Őɺdž`˔ɸûǬĸĮ®ԆóڌǕìŻęȣՖϳ˦½MęſÙċ…‹gʼn–ėʛȅë»٫˼ϧÜԽ̳࢓ƇϫɝʱҍӁ¢׍”r”KºÄ’MlVžzʬ܍دî‘RćgğHůΌǠTƎɻĎ÷°ŸOůą³GʱĐíNŹOĽTg\\|ĺ]xцįrĻRéaåÉËą{ĭ©±Ÿӷس· ÉÊaüæȶhЛŜȏðŵçŵ•ői_B¿Ƚ`ȧÑ˧Nűbķøï’û€ûn¤yrÛP»c‹Ĺĝ‡ã€ġÀåþ·]ůÍq“d¾åŪåîå¶ɣCǕb÷p…´„ĤŽôAjVµNǵ³·NӉ̐­ŀ¡ĶuÂá„ïv̑ăΫή޹ϜƫɚǁŠdzrȋ¥Ƌȳß­LJǔĥ®ֵɺbĬʃǤɓÜɵĊɿ˶̧áXȐ½dž‚ȲȗȚ‘îƔy®̈Žb·ƒšɄŞqш—¨‚Ķm®ƏĶëîå͆³ǢȲǸ…ľÑŽҍǺƗ˺éǂƒ̂ȱ`̑gŷ‚ǡšǯ¾ĥ¢bą¨ËšWĪ£Qĭ“œuÕA}fÝżƃȾ˪mÜeÂýņ˜ĕ ÿdħ…‰Z¡Ū}~ʕÖėe¹_ǓêûB·]]R{vķäGjƾâĢ~¶pXIz‰Öq¨NȒźȋǺçܠ҅ǘɃĵȋÊėȺĠĪǕɖ|ƘIªLj’ìøPzĜ—¤GŒjzz¦°Ď¬Ä۶ʈ{Ȇ°~VŜ™ĚHŊvɾنCĺˍǎE͘ņ¼áގìºĈņœîdäjŒ¢ŽĬƐì–â`ԂŸŚ€Ą€ŢIƖtȈǦbøäžʦŤҨȈЈĮØĆÎhʴdfVXb‹ŊMҜ˰ŜůƜͪIJα޼ń԰ԡƚǀļ൐˾Ɇǁ˒¸Ɍÿøʤʟƞ׸೺ࠤǹմDĴšטȞƠdžŋ֊ȊЂڦŦɒѪўŠĀQȞȸ˜ªE¸ƋŇijô÷ǒ±‚yãŷˤéĔËĔg¦ÇRćĚ¥ƀËâYŊñδvèqǼƫ®Eâj¢–ÎQÚōô™ĺsdkĂųÒȁŬƹÔąìeÐ}”ÑÚœ×БŠÿ¤ÓJÍ˷ѕǺˡƢl҆ş۶ÉžDǬrؔù৒ӿ՚Õqȧǚïˬ֫ѴұېÎቚȅѠĠĒMζ­ӖÅͺYê]æo˂ʅƸ·ΘÅмï՜ɉʊžʶ¤nj€@ǿ̦]ĸ£ÌjÆ¢æØİ„ҮȈݸʜ୶ƆѠոlĔdߨˌԜӊܸ˶®ŔѽҬиגŔdäeʤIôŸĈÿĠ…˾ÕɄeǨ{âaÆdȌŐŸ ¨z˶ȚŠǀƮ|Ʋ“ȲXѦÌѢʀ˜´W¦_”̌͸ʞĊЌup|AžŠĎ\\„‚`ĞDǎÏˤŰðXŸĄ[ƨWÌTØSĸÌĨsǢąƜqŤZŬmðD”l͜~ƼƽʖՉшÁ€ř’ĵ‚ÍÄĻĸ͔ؗHΕ˯Å^ǹŞı~§bşbĝIśsœJ½`ïCſËåßăqɿǀûɌβŬÀVĈIĠ|ĺܦਸ৆ʻӠ˦ڸȈðDzƵńݺ৐ֶжÿЄӳÈvżݢкᔺɘৢ΋ɚÎӘƉ׊ֱӪ੗͐ͣ~̛Ɇş‘΁Ϙȝע€̤ȍθ^הй̜AɑɄɕÑ˓Ȕʹ౞LȚȜξƄ˘Qۚɶ̺ĵċȗƾʵӭ΍ʱࢯΧգȿġÓ̩ƫč࣫ʠͽ˽Ϸŝɰ٭D׋ǁЏէƥĒLJ"], + ["@@ƅ€ǦüŸĻ"], + ["@@ɂzDȵ˥ÎàŮ"], + [], + ["@@těřlĦð"], + ["@@Ɨ׏ԛژƇδºцބ୊ҬȰ˰ʧѿຩ͝ҩ"] + ], + "encodeOffsets": [ + [ + [113551, 20472] + ], + [ + [113035, 21600] + ], + [ + [115348, 22160] + ], + [ + [115498, 22121] + ], + [ + [121020, 25085] + ], + [ + [122697, 26068] + ], + [ + [124162, 28761] + ], + [ + [125232, 30683] + ], + [ + [124788, 32249] + ], + [ + [133660, 43557] + ], + [ + [116734, 22744] + ], + [ + [116752, 23053] + ], + [], + [ + [121250, 25111] + ], + [ + [123913, 23164] + ] + ] + }, + "properties": { "name": "China", "childNum": 15 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ҒӁƗĊTĸÙÖCŶŖ͠ŖǬNʖ•ÈZÀÄą®°…òŷt…¸×¨C¤„lpT£gå“ʱ´i”ˤſĀӻ‹ÕoOwfY‰¯qķ÷ƛБɣףȔࢍǤģŽƗ»ɻ̑¦ŶŭȉٯưЧ×ӒKܥû͏Ôí¹ʲi܏ij്և{ȆÙƼՒ¯ʔƳÈÿXÑĴŽmցîÿ¨ʱ„ʧƠɜΰëЮkdžàW̓v„øƞUĚĮǰúýXێ†ZżN¢ʄnŊUîû˜@oɤșŦZnjŠŒľÂk†‘ŒáŒnȐȭäcВƐDŽˢɞɶñ̲ǓÈǘɐNp˜mĶLÆT´nnƞăȜƂºˋC}£ùFcĺ¹èMńĦX¢ª†ŴšŚNƤŁĶL"], + "encodeOffsets": [ + [-5388, 10568] + ] + }, + "properties": { "name": "Côte d'Ivoire", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ɯˉϽީʵȭƼƣ­ӭƘ֫˪ˉÄϩ޺ޗĶ՛ĽӿˉȨ۵Ĉ˗ƾઇ‹ÕĂඉžǯEgōț@ʱ@ڻ@ġžƒ|K„IlsNlȢńҐɵϬĀðĽWïƾƸ°ċĦ¤úǣT·ťΥƚçϴɏİIŽĭ²ƨЌʂܸатʒ˼”p®hƐIJĖÚr‹dŸjkô]ĶBNJƼ̊ʉàáÖȫ gìZƒêŲƎzNJàÀǢƒāž–ÖǨȴǼ׌ƞˀƮ|ΘŊŴrÌÎΖ®ļɨŚÒЈŨŔĸθƐɦNJɢöÒ܄ðHºh̜ȌºքčŮȷ¸óøķՎƲAǼ±͖ѧȠց©ؙĒϷŦʕ͈̋உwɡʍ̘Чڄիθ٧Íɛ"], + "encodeOffsets": [ + [15852, 7705] + ] + }, + "properties": { "name": "Cameroon", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@͔ϵͼʛȢuʦƴмħȴȂǪsѤԕ˂ūàǯƞ@æőÌçŷ̯üǍį͡ϔƻÜȍહ਍Qˏǻͳşణ͉˧ÅЋɉǣdȡĶíǮ˩YٽLjԭBŸß˵CÁfëǚѡªŵZÓU«ėǃU¹vŭ†š¦ãĴȇöÙƎģŨĥĚĹĎƓĀɍ̂؝༓ʕyʥϿσǠϡ”ܷɗࡡČȵӦҋΠÍndžʌÔiઁȃDŽ̑űƿ|ʅόƭöśˌ۵ʔΑծ˭͕ڡÚ֩ɢ»ΊމǣWʌͱɒÅģÉ̳œ͙ijɗPɇrÙ}ýÕߏ‰J«ÔmʖĔŜğմ͓Ӓþٴċବ¯pҽjɻFʫH¥„m¾B¾ÀƾQ^ĝJʕlj{ĹU̇Ɓ™ŕGljĝƵC©{ɓǓ‡Ǖ@͍ÆүƟ̫dÁQԁۼÅ˖ęƊÏżϢƇǖėÈĭ†ዱRՍMƋPؙŧȩȰɬƒծ¨ˆÒ’nfȞȮIJ”Ġœ``^„¤CɺȝȶĮ¶ɢȊ}ΖƼüųëŕœȷʠ¥ંबȒآCܒ˚˴˶Ԫܼ֪ˎᓀΚފĴҮ_ܲЌҜδȤʲΜɓ˨̯༪˝ϊӶҬ»ݸˤضuϮ̂ઠȿɀŚ˦ù"], + "encodeOffsets": [ + [28061, 5232] + ] + }, + "properties": { "name": "Dem. Rep. Congo", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ijҭΙމˍᒿܻ֩˵ԩ˙˳Dܑȑءઁफʟ¦›ȸìŖûŴΕƻȉ~µɡȵĭɹȞ£D]ƒq`ÝÊ÷Ĝƒ`̅ƃНΕȫςխղĖȎɨƞƴƋnjb°̆ǿޜǎȇŬÊдϬÏ͐ê]ʹƄĒǠėǖ͋ЊçɦɎź˝ĚsǦ؋ŘȆ˞øૈԩ̶øҶ̾ɪĚɸȽЀˣ¢Փƛ™Ғĸ̼ઈŒ˘ƽ۶ćˊȧľԀʈҾŤ֤݌ƴ֚ƿ˂ļŖŧ"], + "encodeOffsets": [ + [19057, 3562] + ] + }, + "properties": { "name": "Congo", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@՛ǏʑЁχ̣Ư˿ŗם̟ԃʶÆɘųŌЙɴ˹çٙɞŹǜ˳݆͢ĔԜŗמۣߤ„ԨŐ̈́ğPȿ̍և}ٙnjե̎ϕҡԹȬ@΄͹ˬকǥ‹ѦɿΎ̱҇ɏȨ¿šäĿඟWGձҒQƆ͡ˍÒӧŵa׽ξ̵Ƞֻɧఇɹಃe‡ǛƼÕƘµŽ“~ͩ‚՜़Ëfㄥ°ɿŒÓZµÂǫľ­X·gñgéÉǙkƋĢNjÒ¥[Žû©ȟ×؇N£°Ƒ¾•ϔʥŚƗώǕªÃÒ¹xÉÎрÅx‹–§Þéɪ¡À£¢“’½¼Ù†ÁŒs®iœ˱Ųū³Яǒг̌ȉǟݵƄÑȰȡǜГŌ֭ЦƓƘȞȎǺÙ]ӪƦń̌tɆǨئ৔ƽi]ƒãħ§ʬĥ‡ƘƼÈ˘ñԐƉǴʈȲȁͮĎͰҁպŜЂȊŏ˾΀ʁѶĔƈѮӋÓįŚ•^͊ůɚզΒɀ͚̈́î“ɼŢЎƛ¿ɚϾԐоќħƻőĬćɐҲۤsࢎԀŞʦΞȚϞíŀʏƵƹ"], + "encodeOffsets": [ + [-73031, 12147] + ] + }, + "properties": { "name": "Colombia", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@нǏtĆƂ»"], + ["@@|ɳʇƼɌø"], + ["@@ȧŲÔ̈́Ā…ÔЯ"] + ], + "encodeOffsets": [ + [ + [44840, -12602] + ], + [ + [45544, -12371] + ], + [ + [44509, -12186] + ] + ] + }, + "properties": { "name": "Comoros", "childNum": 3 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ŏk±ŪƖlƍ"], + ["@@yƾú±¿ŋ"], + ["@@»ûǛœ—̰ʰˏ"], + ["@@ȌÉcŁȽD–Lj"], + ["@@°§ǭxãęÙłʼH"], + ["@@ý–¢ŠœƵ"], + ["@@ǥ^Ƃø¤ĕ"], + ["@@śU{žʬî°åǃů"] + ], + "encodeOffsets": [ + [ + [-24891, 15213] + ], + [ + [-23738, 15501] + ], + [ + [-24006, 15369] + ], + [ + [-23467, 16627] + ], + [ + [-24665, 17022] + ], + [ + [-23437, 17059] + ], + [ + [-25484, 17222] + ], + [ + [-25773, 17354] + ] + ] + }, + "properties": { "name": "Cape Verde", "childNum": 8 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ʜԑӌթǸýIecgµƒƁð—i_¹{}‰W]i@͛¸GĊŖZ‡ǃƧ¾ėVũa‰ƓĭŰɡȳʂȢʵIJƮʧɃ’DžƚĶDŽĻ̄܁Θő˦ѩ˾Aœ̎ʉDžǿȧǬʹüȍ͞ƶϞȫźƎƐƈń֦ȳɴĎ׸ʻǦ¨ÒŎ"], + "encodeOffsets": [ + [-85649, 11180] + ] + }, + "properties": { "name": "Costa Rica", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ͭŋȋŸǰAğǘúŶɸ«Ÿˋ"], + ["@@ȽŘʈ…‰đ"], + ["@@ƋؖĆĶƝ"], + ["@@ӚKİďж¢ʈƅҜ³ҚЕӸ“ࢤӍŞQïĎðc̔ȑȅĨŇźĘȚɑ२ȁńĭŅɽۼÁ̴ɡ̄û\\Ľ߳ɡ‡ĚśīܱĆಳœԤҬŁȤݗIJ̽ʖȥҎՉMܻʌɉɂҥ¥űǎċƃӃĔȓƤ̰ĠŅƨݱbաϹѫ«ʼnȑЅƕBż͕ÕҼǾ…ʮˆʎڎʨஜǐ"] + ], + "encodeOffsets": [ + [ + [-84543, 22090] + ], + [ + [-79533, 22479] + ], + [ + [-79748, 22659] + ], + [ + [-83801, 23719] + ] + ] + }, + "properties": { "name": "Cuba", "childNum": 4 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ȳèƍȨ΂ˏ"], + "encodeOffsets": [ + [-70401, 12350] + ] + }, + "properties": { "name": "Curaçao", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ɚ™ʡuˆÐ"], + ["@@çSƎ°å›"] + ], + "encodeOffsets": [ + [ + [-83322, 19814] + ], + [ + [-81739, 20186] + ] + ] + }, + "properties": { "name": "Cayman Is.", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ѹÃýƌϵÙǧìƖRÀǮ֔‰ߖʶԩ̳Àȑ"], + "encodeOffsets": [ + [34821, 35907] + ] + }, + "properties": { "name": "N. Cyprus", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@Ǩë϶ÚþƋѺĞÛ̍eׇͳҹƆōȌ_ňΊö"], + "encodeOffsets": [ + [33498, 36016] + ] + }, + "properties": { "name": "Cyprus", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@òFòrVņ࡜ͷɲšŚçǫųήˑ̎Ŕğdž҈ơʌ¬ÙDžȺŧźÂ҆ſɪ̱֟ɇÙlj˝ƩԻŸƵȯ΅ǔУ•ࠫȲ́ͯաFȟƒ›¤í¼řêęG‘nП̒ȡìʓ˚ĺŚ΍θŠ@m´™žÁzrȴǀϼĈƒhী͜£ŜȎ™^ˆ‰zGS·šoÆc˜F€rXb"], + "encodeOffsets": [ + [15165, 52080] + ] + }, + "properties": { "name": "Czech Rep.", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ɭ‘ćȼ̶ǩ"], + ["@@CďѣœŬ̸˒řªƩ"], + ["@@ʂŵŹǝܨſʀÂIǕǓęĚáМ§װȊϸʤϠ³ΚɧɶXŢʥͦϐƣĮɭCÉCc•ýÙáŻÿU¯ŀăɖŗĘį¥ć_Ñh–‰ÄyÔƗųȽŘǣyé^iƲ»~yx˷ñēŗIYWaq—EÅd™pT¸yH‡Š]ȍš¤śি͛ƑgϻćȳƿyqÂ±š‘n‰@SQ@…ǤōǾɑĹřʔ˙ȢëР̑’mĚHŚé£WgIŁY…ʣK]SYM¥Ɲñ¿ě{ϣǏnjǻ±ƗƀÉKÙaÑc}Cõ~ϊulCv`bs‚í~Џ¤YQN¿cw॥ȏ½JñÔo~DhŋHépƧK—T‰ő‡©ƻñdîœ|A~Itur¿‚ō ùpȋ©ߛɄŗ›—TsŽUĎN^MH[W[åWqa۳GBӄѦۈֹƮ׷R͡ʖŤ̄ʁİǸy¼NðȌ˦̇ʤ°żDžŀɮİÌʬȿ̒ܐƒÛĨʾʦʋìź˔„ƒՎĻǐǰǠ؊TČȉŘmôƊƌDZļИӲeӠʩЅʰ͡Ě[ʞɿþ˜Ĩɿξ࣎ß"], + ["@@ŦɦÓŽɀOˑė"] + ], + "encodeOffsets": [ + [ + [14539, 55214] + ], + [ + [14039, 55688] + ], + [ + [9974, 56142] + ], + [ + [8508, 56102] + ] + ] + }, + "properties": { "name": "Germany", "childNum": 4 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@˕п̩æٓčKצӰپ~z”v|OȌŏ–¸Ŭ’®dAĺ”ĤžȤ˻xɳثѿıX¾ÙϬüǠõ"], + "encodeOffsets": [ + [44284, 11776] + ] + }, + "properties": { "name": "Djibouti", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ÿké΀ƴęIɹ"], + "encodeOffsets": [ + [-62752, 15615] + ] + }, + "properties": { "name": "Dominica", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@͆ívŅʷ§ΟŨpƘʬ£"], + ["@@α§žŲɴĉ"], + ["@@ɉhsƎɾƵ"], + ["@@ĥĎˢʰǻͽ"], + ["@@͹äæǎ̰ŵ›Ļ"], + ["@@ŠЏ˽íϡĬŅ̐چĂ"], + ["@@ĩ‘¢ľÈë"], + ["@@̓ˋǖƯ˕ĉ‘̻ǁ•ǩΐ̯dʵѢ̀€ʰǢNJɑ ɪ̒Ŵ̠¯Sɻ"], + ["@@ƭTʨ¼ĹÏ"], + ["@@࣍à¯ўНƴ€ࡎѐģǼȪƮ¸Ŋû¶ʼɗHȃʓʭ»ƹǀˮɒۄÂѼ΀ծƀ˝भզƫơǛι{ŕ̇ɻkĶçεɣäȑǽȏɺÑPţ"] + ], + "encodeOffsets": [ + [ + [11635, 56210] + ], + [ + [12851, 56285] + ], + [ + [10303, 56204] + ], + [ + [10992, 56065] + ], + [ + [15450, 56343] + ], + [ + [10901, 56945] + ], + [ + [12970, 56931] + ], + [ + [12871, 57124] + ], + [ + [11318, 58627] + ], + [ + [9974, 56142] + ] + ] + }, + "properties": { "name": "Denmark", "childNum": 10, "cp": [10.2768332, 56.1773879] } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ċøˆǜǜk~ĤŊ״ÆٖɳȦ„Ǽ̹юw̻Åcõ߂dz̄ʗ̇ͫȻNJ˷‚зH׫ȏƑĴ͏ÁΉՙljŜŗɠHƐxÊsÐġÚÉĄ»ð\\XĶHļĴbÐM¬ÕŌƈǬ"], + "encodeOffsets": [ + [-73366, 19657] + ] + }, + "properties": { "name": "Dominican Rep.", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@Ţŵ׳CɃšē†ăçij‡ėȵؙչj̥˾ҝȢįȄїװЃĮϛÂȻʜ१ǫĩж޿ĢୡƗϣŖי͡ʟ™ɡҬ؟ɊحŠėʒÆےȥϰڝ␣ᕧ൩୧ഝ˯ܹſȣĮŖʶĿτ௏Ѻ×ƪϏɚiʆ᣽ၮ᜿༸ἡኒ@̸@Ȳpیত֤¸„ʈǎʊcĎeĶ]ŒTÞæ”ƊЎVҲŀžĒĨĜDzʤDŽòɀÖǦÖƤĢѮLjǧǔG˄ÎƬÊTĄYƒd΢Ŋ|’´Ƙʂ೶^ĦʺªźÝ´ĝȱzćæ»þ‘ǒŇȶĭஶ˯Ȃ¹¸yØҞâ਺֮͆{̢ˤֆʀഺƂ͊ƸڲĤࠖ@ҌȻৈπφƓʾ¤…ľצȣ֔ærēͥ˃"], + "encodeOffsets": [ + [8405, 37396] + ] + }, + "properties": { "name": "Algeria", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@šm¤ȰŦîƠ³ȇȻ"], + ["@@ā”–à¬ij"], + ["@@Džn˒ǖŋȃ"], + ["@@ǩĄVĂɚĆÜƣšħ"], + ["@@ƹb‰Ɔƾ|†ǣ"], + ["@@ʙÂòĢǨƣ"], + ["@@ЈٷęǁȍáʍpÛŖ̀ʪȽɬ¹ɞƗtȢļøč"], + ["@@ç”üÈSě"], + ["@@˻_K‡Ò•УÈƇƒƳṬĉ]vw`YųӍѥԏӷί঳Ι͉ЫĕÚʫ܏ˁƧđ¥e³X¡I±_i…½—kġ‚åB¿|Ëô³ØĄ]Ō½»žÕYïQ¡~ı²čÀـ·]ăė÷Ÿ“D¯€SŠœ¸úńčF‡’Iža¦jº¬€ŒuŠ´ŠrŒf¥ˢåǂ̤ȘȞӢĥіéЗĕQpǠɹ̑խπƠˬţܚ̊ȘĊɚƢ‡ǗɄμѲ•ՈূΠ’Ⱦ֮ХДŋȢǛÒȯݶƃȊǠд̋аǑ"] + ], + "encodeOffsets": [ + [ + [-82054, -3044] + ], + [ + [-92594, -1372] + ], + [ + [-91564, -932] + ], + [ + [-92502, -790] + ], + [ + [-93620, -471] + ], + [ + [-92747, -342] + ], + [ + [-93462, 26] + ], + [ + [-80803, 1283] + ], + [ + [-77091, -109] + ] + ] + }, + "properties": { "name": "Ecuador", "childNum": 9 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@քนƕǥ˱੉ƯɃϭʄљѪֳ஀ǥ˿Ҏࣅղ֕DʓʦΟĢ҉ਠᆣӸҋȱc‰šnj۩҂ˉբՍ⮿AªŸï°ŝǙƗOᢱBᢳ@@᳾@ᴀɵࡦɐВĝրʢːȚšіĜଖȱʖƑࠎƋҴȁܞͬʖ€ƢǘѺĠ̡ųςžæŠψŧ̬êȺǙȳŢķDž˦ǗưĜÅþ͘ȋࣂ¾ҀNJ¢ĩ"], + "encodeOffsets": [ + [35068, 31958] + ] + }, + "properties": { "name": "Egypt", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ɐĭΣ„wêļgŋÌbŨƺNj"], + ["@@„ąħ´ä’"], + ["@@ijňԉˎ׃Ę˫µ¿Ē½ ¥@y•ƷĕʵµÕHǭȆǿò·Ö¹–ÁťĥɁ¹œßƣqIZȿʠțƳdz˜ŏOŗ£eCʎkNJoǠkNJŞȖ̈޺sˠúƨEÈhż\\ŽªDĞgȮj– ¶ưŒˆȢŔЄł\\‚nj¶žv†¤ĚǀƴΦޛɞএФڟà̄˺ϥࠆͥКՙӲͩż̿ľRɰ̙Ƣ³~üêنĭģĹ“cB‘«·ūÁ—ȋŐ{P“u}yõĔÃüùĠƵĤûŦāƄͷˆΣО"] + ], + "encodeOffsets": [ + [ + [41105, 16073] + ], + [ + [41039, 16469] + ], + [ + [41922, 14319] + ] + ] + }, + "properties": { "name": "Eritrea", "childNum": 3 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ąƏƧĬɮ¤"], + ["@@‰˯ɯwĉǰłƆʂM"], + ["@@ŝĄÈðżýåõ"], + ["@@ëȓȩŧȻ˨ڂȤǯǏ"], + ["@@ŕħƅœɔĬȔЬŬ€ÑПɥë"], + ["@@ƓɞÒðǞĵěȗ"], + ["@@ť—ŠŨ̢Ȋ]ȗȧā"], + ["@@ǁA~ĆƄă"], + ["@@ȅ]ŀƪǺ’ºçƭĵ"], + ["@@ˈý͛ͫɭìċƂǛÃʼnĀڐͰ[Ư"], + ["@@ΩĮ[Ė̼}ÊDž"], + ["@@͒Ɨ¥ƿƈ¤׶ʩ৾ğÆžؚȽ[¡†ģîJƠ¾żÌĖÕমàŠХȱƩޟЕࢥȍˋȩƪčʛěޡँĺϧ΀ʭ؇ωʙҟĀśԙÏˁƣЃԡ቉·ʵDZйéǃʍɝğΑƌ˿ϘƖɶƭçϽϔҕċҤФϮůMȥɶ̄ԊҍԘΘjŤĮâȊŗŪȈƨı֔׺ѮˣŠÛɨѹɍŭؽkħ˚ѕǑġƐǒƚĿXðłçȔȃĘǢʵƮ´ǔްɞOŠɄĬтœϊƻ৸ú૖ȕޘĔҺŭƜêҎŃҘä"] + ], + "encodeOffsets": [ + [ + [-18317, 28478] + ], + [ + [-15770, 28823] + ], + [ + [-17597, 28695] + ], + [ + [-16726, 29062] + ], + [ + [-14537, 28846] + ], + [ + [-18262, 29178] + ], + [ + [-14045, 29606] + ], + [ + [1633, 39601] + ], + [ + [1480, 39853] + ], + [ + [3221, 40746] + ], + [ + [4397, 40799] + ], + [ + [-1837, 44450] + ] + ] + }, + "properties": { "name": "Spain", "childNum": 12, "cp": [-2.9366964, 40.3438963] } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@צƝӿȁ̝[̿ʉLjȊʱĜgȢيľ"], + ["@@ȟĠȊUVĉ"], + ["@@͋ŗōƤ̕äӾŦɖą\\Ə"], + ["@@Ŝğ׻ӱÌӇɶ̍ȣÑţŏ¡ś͕æηßȟÐ՛ˎ͗öƋ®շŽă•‘JǦОΏó̅ĂɑʢƠňȽŐÀɴӶĄʠƲࣂ¤ÆIJ௺ǁࢌ„"] + ], + "encodeOffsets": [ + [ + [23161, 60029] + ], + [ + [23904, 59956] + ], + [ + [23474, 60239] + ], + [ + [28685, 60912] + ] + ] + }, + "properties": { "name": "Estonia", "childNum": 4 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ÖGʶ¶ƸĖz–¦@¾ŸÀđˬ¶ׄėԊˍĴŇΤН͸˅ĂƃüťƶģúğÄûöēӯٽLץٔĎ̪åɟͱƺͭ˸˓ʪст̵ᠴ࡙ࡀ@ᢋᣭߝͽăϩǯɥˏ۩ƻĝę­ūBɋ_ğcŵCǙĨɋǺޡΟ©ąŏƩƍķݗŦſJȏ\\ś~޳ԘȽƂݑ´ɑ˸MŤnžl¨±ǀΙj½ @žHˆʅ̬ɯڬիӆƉʄݻ͠ʂҌ֢NĴĐJޔȞؖ„ϾȒȆǘőƈIJƲߞҸڴϤŒͰాfDؤŐPǴ—ȜƴɀʟYrJÞƤ¼ŔĤɂÄŦº•¸ÕȀñǮȅ"], + "encodeOffsets": [ + [39354, 14775] + ] + }, + "properties": { "name": "Ethiopia", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ȬɯřʃĸĈì"], + ["@@ų¥ÙŠȎù"], + ["@@ǖ™ƋƛłŒ‰"], + ["@@ɫªͦZĹÃ"], + ["@@ҩı̞Áʩ̏ǶʣֆŅզͥޟٵࢌও͗ďĝ́ȀēȇƩЀǟ˓ЈȱSƭљʉৄѵ̒˕̅ͻహ޹ལࡓਖ਼ĽˆDzljǙΟ¦äŏɷ×ďÈ৯ʿࠛ‡ωƛƬǦʋǀƋŷʋyĺ̐९ǺƜ࠶̋ͰĥـюʦėƒٲĘǴ˴ࣈؘٖͤ߬¸ºԴ֡LjŸǂЇ­ϣϔʎҸ̇ˌþʚɻŒƺдڇΎܙźିѠόJ@ƢѸºۊҭގÑѾƂࣴdzڴͬ˘מϠȊԐQԶƄ୨ͥLjǕХʝĶŽ"] + ], + "encodeOffsets": [ + [ + [22708, 61820] + ], + [ + [21966, 61983] + ], + [ + [21727, 64760] + ], + [ + [25445, 66551] + ], + [ + [29662, 70679] + ] + ] + }, + "properties": { "name": "Finland", "childNum": 5 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ѻŭ͂ǀź‘"], + ["@@ăÒ¬ò˜ƃ"], + ["@@ʾɽÜέױƷՑƾµǶȬ˘˂Ŷϲb"], + ["@@đAĒƮ@ƫ"], + ["@@s@²@ê@ŞĈĩȥ"], + ["@@ϋĊĞyÑ"], + ["@@λϿHġ̦ȔCȍё½ǻĀǏƿʧÛǫǂðƔȆSغ͎ϔĆ@_"] + ], + "encodeOffsets": [ + [ + [182772, -19429] + ], + [ + [183654, -18536] + ], + [ + [182559, -17788] + ], + [ + [184320, -17370] + ], + [ + [-184294, -17331] + ], + [ + [-184247, -16898] + ], + [ + [184320, -16556] + ] + ] + }, + "properties": { "name": "Fiji", "childNum": 7 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ŤQÑŷǓĜł®"], + ["@@ݲĒĴÉչҕ˙cęŹ˩¡ɳŌ؈ʈ˿º˲Ö˕ʀʂĕ"], + ["@@ƍĬǤw•ó"], + ["@@Τ¯éƅȦùZƂʄ„ƘőŷÅƚ«ݡʥ~ƍҗæņŽɯm¯ĥɅƤàǬјȬ‹njȸȆ"] + ], + "encodeOffsets": [ + [ + [-62483, -53028] + ], + [ + [-61733, -52697] + ], + [ + [-61554, -52629] + ], + [ + [-60262, -52500] + ] + ] + }, + "properties": { "name": "Falkland Is.", "childNum": 4 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ιÆʼnǺàż̎EƬș•Ǜ"], + ["@@ġænȲŌċ—ȋ"], + ["@@֥݇ɋչˏˉܩŦ̥ȟʫò率¢•jqZXRŠN„B¦ÖìœŪɄ¼ĖtƨƒŨ`”ŀƤ®ĄsƲˇΦŇڂҼ޶ࡪ˿ԞН…ƝĖüƌũ²̫ƦʄƦӗ"], + ["@@ȥw¬ŔǝȸʊýĎɕ"], + ["@@ãJ¼Ĥhĭ"], + ["@@ƛ°Xʘǐë‹ɛ"], + ["@@ǍC¨ɺʤȿŽu"], + ["@@Ð֧̩س͇ǠäĦɟȘâƐœɚȾɀмʦʮİDZ"], + ["@@‡ñƥȞǮū"], + ["@@†ƒÞ_zY~mªQÀRž~¾\\Ǝ͢ʕ׸QֺƭѥۇAӃɭƅǧ´Ɨ‰É¹Č¯@akiw‡ŋēŏėk•mƗ±cƣʹǩWijkƗŁÅBÁˆQäJĨžˆŞò¾ĜŠŲNưk\\ȿŀĩ´…¦·dƒȗƹ̘̟ÉšϋƟ̜ȫýЯΚǓˌvŧͭޡӋϡŁ׫ž̅Ǽ̇ÑکDŽյ̵ǧɷƆПভßĕÖË€ŻžHĎš€ÇP՟ؙȾÅŽ৽Ġ׵ʪƇ£¦ǀ͑ƘʺƀȪ࠸ƚŊÛØýćƒܮ҂ҁȯϾͽȸƐvĩӐ՟Ǣɭʜ’ȒƫŀƚĤʈµțĂѹBÜƆ˽˜cĤ౱ǔ̯Ǽ̌ŌȹĴˮ\\Бº—ôȚƚદȆҐʯȸĤϊÅĈĪѼ™ǃŸcͮɭКԈGĶʕࠌûӤŸʋº¶ǎࢸʞ̆ɈäՐܒDzȠ̅̈|ƔȻ˔¯ĀƝТ¹sɳͬUɰNJ¤̩՞ɷʂx"] + ], + "encodeOffsets": [ + [ + [57137, -21851] + ], + [ + [46265, -13288] + ], + [ + [-52892, 4159] + ], + [ + [-62286, 14843] + ], + [ + [-62700, 16272] + ], + [ + [-63067, 16392] + ], + [ + [-62799, 16620] + ], + [ + [9708, 43833] + ], + [ + [-1206, 47006] + ], + [ + [5929, 50728] + ] + ] + }, + "properties": { "name": "France", "childNum": 10, "cp": [2.8719426, 46.8222422] } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ÐýəzNJÄ"], + ["@@qœƹvĬƗϓˬҔµ"], + ["@@ś«SŴŰć"] + ], + "encodeOffsets": [ + [ + [-7359, 63631] + ], + [ + [-6790, 63722] + ], + [ + [-6559, 63753] + ] + ] + }, + "properties": { "name": "Faeroe Is.", "childNum": 3 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ōY£ŦƈLjŗ"], + ["@@ÛåĴƤ—ý"] + ], + "encodeOffsets": [ + [ + [162115, 6978] + ], + [ + [141459, 9729] + ] + ] + }, + "properties": { "name": "Micronesia", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ķ̻šґՔƜˤ¡ȾϿęɷ̽ɩ÷ҵԪ̵÷ેȅ˝ŒŗǥŗętŹ˞ɥɍЉèǕ͌ǟĘƃđ^ͳ͏éϫÐÉгȈū›ǍȀš¯̅NjaƳƌɧƝĕȍڃݺԿҞ˸éοƸ˙϶ƸPǽÐȓѠʂ˕ƶÞǥ’¨džţµśì̥רȴć̌˴¸׎ĨƷˠīǤŴϣĐȅɌƞĦĺówϤž^’zzJ²Iz£`wĒமEѼG՜hŎǰFඊÖā"], + "encodeOffsets": [ + [13613, 2214] + ] + }, + "properties": { "name": "Gabon", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ƻďʽàɀĜȺë"], + ["@@Ů_˗ƟǍɄɆ€IJă"], + ["@@γ{̛̈ˉɯʁVїɪ̪ƲſĔ̢Î˨˘زŰτăˌ˝ƉƩʞnĦƍǛ¤Äɵ΋ȅǗŒ"], + ["@@ȏ‚\\ȔǴɕ"], + ["@@ÖȡȿófƔǣÙ|Ģˬĺ"], + ["@@ďà̆Ȏȵʭ"], + ["@@҇§ƤǔŭĸƸ†˼Žaū"], + ["@@ƉɠŦSdɋ"], + ["@@TLJϴ½ɵǧïƀʍBρȪϤȘƊƕ"], + ["@@pű˩Ìʺæ"], + ["@@̗ɩňÓҵɫčÄȐĠȓɒ̠N§ĦҐǜś"], + ["@@đǍٷ̣ěƮƒɷȭؚŌૢKʘȓڽދ׽ǕΦ†ǰŧֿȍΩÊجťϘÚϞĽЮ˧Τܯ८ӯķă˒΍͕ņ͝Y̮ӄ̙îƧʻɇȠąɼƄиOԐǥøʅŽ̝̋ů™ƗνÕŜƃϻęࠬđaƱοɋ։ų࣭UՋŎèÛƵÕћmIĹߵĨͽëɳͣѝź҃đ͟ɃчX஺ड़ࢪ`נҊܡ̍ԇǜ˿mŦúʛæџĩɡĪ]ǬߺˠȦɜķ̾ӧğΒ˴ۺǒˤã‚Ɩˆį˅ǠȀԺˍMͻ˶ĘʲάưћI΁ƕܡÆÿſķÒŝȌиѠǏ̺ʌÆɓĦšĜΫɭŦʾ˛ǝũԙƥ¯ȐϾėɆΠנϷȏЗƦ͸Ŭŋ¦ʦˤțŪǴƘƍĺŘǴϜ@ɍǂÚƚˤpQʰӬ­তŘǦ]³ĵ"], + ["@@ɜĻҍÄlƆɆč"], + ["@@ɌýȹӇRɴ̻ňʐ¦ǓƌǪĬ²Ó"] + ], + "encodeOffsets": [ + [ + [-1091, 51907] + ], + [ + [-4297, 54602] + ], + [ + [-6367, 55387] + ], + [ + [-5227, 56780] + ], + [ + [-6275, 57273] + ], + [ + [-6113, 57155] + ], + [ + [-5916, 57697] + ], + [ + [-7423, 58487] + ], + [ + [-6292, 58886] + ], + [ + [-7378, 59068] + ], + [ + [-6347, 59765] + ], + [ + [-3184, 59920] + ], + [ + [-3130, 60447] + ], + [ + [-1339, 61991] + ] + ] + }, + "properties": { "name": "United Kingdom", "childNum": 14, "cp": [-2.5830348, 54.4598409] } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@˂Ə®³S“‰ïûÑēẂĜڱɠÁuǹŏsYƑe؝Ýէuȑ˜«ŽWz~nmhûžųĪít…Òƒ^ÓNÙMaOoWčijғ²ďÁ™Rß~ĿvÇhLjǂ¾ɞɱׄշͺ̽êПɰžÆ¼Ìӂgʚīޙɲ“ǵͳর¥ȚßR•ö»Ѐŧĉƈ½`eEs›U“lmÆmŎI zĊlȐòƨœɠōâŊjTÔuň‰öeƶũȂLŤ‹loýȫH}ӘǷǾĉȷǃĸǍ"], + "encodeOffsets": [ + [47417, 42504] + ] + }, + "properties": { "name": "Georgia", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@àāă̇ϼ͍ĭիà“ğşʘËҡĭû˂ͻƽڷŔljĝхǰͯϚ̧ȥɻׅ«ቕ࠵थ˜ʢļɼƘǣĤȓࢎɤפƜВĸø°rZŠeŽPxÖp‚ŒÿӼ£ƀ“̳j”ʲTŊU¬¹ľ]ôU־Ļƈî΀ຌXΒéˠȪȘ§"], + "encodeOffsets": [ + [-70, 11383] + ] + }, + "properties": { "name": "Ghana", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ħǥǔƷ̺džȊʳκ˂ѪƵͬȎ‹Ǭ̐¿ȎЕGȽ΢ʳɣ̛ˢeÐщɔƏbƅƏǃdБȮãmȏ⋐‹n…ĽÁ‰‹YNjȚťpɣŅüʼnVʃmO¡Wݐ…܍þWŽùĭǯVě÷ƛuƒǕœ³™ơŊȗΧȑ̃ǘĀʎůդɛLjʁěéøï§GÛV…]đij½ŇLs\\ˆÆƪʌī̸ģng\\Ex¾ŜJzÙĄʏͶőŜq¬Ëf՗GșįʉnʼnNjǕ˥ǝġijNjǷiť̸ɉĬBͤʼn“ȍɈ͍ĜƵʪbǼëßĉȰģŒóƑۀPƚª°äƒˬºÜŒvàFŸœŀÖÀ~ŤOƚZȄÒDȊM¦ßœŏľ¾Ìń`òǺ¹ĬHæլ“lťŊ˜҂ljࡔÄ"], + "encodeOffsets": [ + [-11662, 12703] + ] + }, + "properties": { "name": "Guinea", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@½ɸžŒɌǣࠤǖשiǻĕǭȴࢬAèŠˎîמʷή’ŴŕΛƟݻːŕƇѷÑiƗۃEĩ÷"], + "encodeOffsets": [ + [-17165, 13378] + ] + }, + "properties": { "name": "Gambia", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ËovŒ–ġ"], + ["@@ŰƜê¡ř"], + ["@@ķX¸ĸÀŏ"], + ["@@©ĻĩİƔL"], + ["@@Ń_½ËǰƙN¥CȉȃÑʽI¿}ĿÕŷ›ßE‹u·ÛƓ˫­á›«§Ò’ŌƗģLŀƩ¾ŽƮĽ^΀ǀƁöƵÓõĠ†Ĵ͜łܧƵlŶǽiǃŒêƼljɱŴ°TŖaĖhƦÚĈ^ʰgɞ¬͈DŽ܆GʆA˰AGåºīñǹ"] + ], + "encodeOffsets": [ + [ + [-16277, 11349] + ], + [ + [-16501, 11325] + ], + [ + [-16283, 11741] + ], + [ + [-16370, 12168] + ], + [ + [-14090, 12557] + ] + ] + }, + "properties": { "name": "Guinea-Bissau", "childNum": 5 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@Fѻ஭đŽ_xy¤±JyI‘y›]Pnõ¼ĽrΞڎwŠlȤtMT¯†{Ġڼ@ʲ@Ȝ@H՛"], + ["@@Ƥ@Šŋȯ͹ȓ”UƼɬʶ"] + ], + "encodeOffsets": [ + [ + [11605, 1566] + ], + [ + [8946, 3849] + ] + ] + }, + "properties": { "name": "Eq. Guinea", "childNum": 2 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@˄ºµċȶŕୂW¾ȍѺNJŻʝଫíûžȵÒܷĆmɸĒiÄŢĬĵ"], + ["@@ėŐŸȈŸ̗"], + ["@@ť€’ƎĔǍ"], + ["@@ŅzBǶѠɚŧ̳ȳŕ"], + ["@@ĥ…ŽĬØå"], + ["@@DžČúú«"], + ["@@ɠƠŘ}ͷš"], + ["@@īA˒Ĩǥĥ"], + ["@@ċ]ŤŎŅ"], + ["@@ơ…ňΚã"], + ["@@õāŢƎłjȕ"], + ["@@ĉN¸à’í"], + ["@@÷ÐŴe»©"], + ["@@´Ęɞˑŧ"], + ["@@ċ¯ƇŎɔÝ"], + ["@@É£úžoę"], + ["@@ȘďǭÃɛâȲò"], + ["@@Ęąƥ™ǗdžÔØǒĽ"], + ["@@{ÇəɦɎ³ˆũ"], + ["@@ŰʿȥŠÓńĉ­Ǯʜ¦û"], + ["@@ǝtČĠũȄ˄ƒÇ˓"], + ["@@ŏuŞɘMȡ"], + ["@@ői¯LjǂƝ"], + ["@@ĠũԒƏŰέˀą©ť˗ŚƟɮ͝¬̞͍ͯÎ͚ƊƂÕ"], + ["@@ƺɿęviď̡ĜƒİǙđȓĖ˒Ƥȶ™"], + ["@@NjzȧʲɾNãėȚȡ"], + ["@@åƥěðƿ•GŮ͊a"], + ["@@ɑ‚ĞŪŴƫ"], + ["@@޷ɤʽŗˇøͧȉˍpĔˡ̄ùŌƯίǰƻ{ȪǷiűʁɒȧ’ǜ˷ؗЎtLjʗă‹ϫآܣơ×Nƀȫ¤‡ŕƲŏлƛֺǥβʹʄݶœIϳѥ̜ϷſϠρ˟ęνǬμँϋ̆ʏˋ̇ҬĿÁɅʹ̀ĆʴүъɼʰɊkƔŸ࡬̡˲Ɣٗʲďç̕²бùšƒwħDžV˿Ь˾lNŒͽL΋ʔġȀûĄćÌlBŒWҋÚOƨŰA’ÏĞ@zxXœvr‚¢bǞªȊ̎ŲżÙŸRÚԤfªxŸ°ǶƲdžxʺ‘Ģlĸޏź̺SìÂŐH¼TĒYČB͂ÖlRp¶ˤEЀ~EɌǑȂRŞ£IJÓ֠ÌŦÌ†h¦Uò·ƶllĀdĶwɖī˜ǗʙƍBʅʗȑ"] + ], + "encodeOffsets": [ + [ + [24425, 36389] + ], + [ + [27829, 36317] + ], + [ + [23608, 37059] + ], + [ + [28512, 36792] + ], + [ + [26095, 37267] + ], + [ + [27096, 37464] + ], + [ + [27597, 37609] + ], + [ + [26480, 37674] + ], + [ + [27669, 37847] + ], + [ + [25886, 37959] + ], + [ + [26159, 37855] + ], + [ + [25113, 38017] + ], + [ + [26013, 38318] + ], + [ + [26655, 38431] + ], + [ + [25863, 38503] + ], + [ + [24941, 38479] + ], + [ + [27469, 38719] + ], + [ + [21390, 38713] + ], + [ + [25592, 38666] + ], + [ + [21108, 39305] + ], + [ + [26721, 39136] + ], + [ + [21184, 39536] + ], + [ + [25267, 39741] + ], + [ + [23978, 39894] + ], + [ + [27045, 40274] + ], + [ + [20560, 40380] + ], + [ + [26049, 40943] + ], + [ + [25369, 41590] + ], + [ + [26664, 41705] + ] + ] + }, + "properties": { "name": "Greece", "childNum": 29 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@@ƢЎĝǯ"], + "encodeOffsets": [ + [-63196, 12301] + ] + }, + "properties": { "name": "Grenada", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ĩķ΁ĈӪƼ½Ƌ"], + ["@@ǧàLjĦ`Dž"], + ["@@ǁwŗǨȴNJΒÛ˫ʝ"], + ["@@ּřŪǝත̉ԕŮѲ¾ƓÚँƢŎȤϸOяLjϬƸࣚģӆɕ"], + ["@@ύ`ZĈδħ"], + ["@@~ɥۇǗ͗ČறÇΘΪ࠸ڬƘ͘Ĺ"], + ["@@Οò̼Ɯ¤ɍ"], + ["@@ҥȑխž৔Ô"], + ["@@Ԟ̷੹‡ƻˊܘö"], + ["@@х͚Ǡɰʦ։"], + ["@@ۓĘࢴ‹ȟË"], + ["@@ࢣėЏŎॾǠјušǟ"], + ["@@བྷɞѩʸܼˆచǯ¬ͭ"], + ["@@ↂʭ㇓Ƨ‘ď㞆ƨպʁ᝚ȱಇʹ㏱ƍʵę̀ī෢Ġᗆ¡ܘʧৄʾ๠´ĜϽབྷەᰦܦᆦȯ૮͈཈Œຶōࡈȍෑ̳૛ā§ȕቍǃۖūҩƧ೧áଝî؃ȷ঄۩ᅡѧԅߙܰǠ଺ljpŹ׍ľѧÑϘȿ޴ūܜŒÉЙဏŤॅțӏĚΣ÷ؚŋ͞ʩ୒«ԂϱcӝߩŒএʓӫĆҎŽ׬Ģľρώ˶ζ@זέçəݙAͫũ઩ĜX˒͇ɛƾʽ๤ţš̗໳ȉݕňޥ̮ѧƋۿɀؖ˹੩ɏ৩ƶؔƿࡩġǶÏኔˠަ\\ᄄЭɍڣ๳͈ҽҐၷ˓༂ƾƎˍϽȡϜøᗨ׉ѩ̣ÀœIJƸҠžȖߝܣÁ«ͮɇΡ՗\\եǘӹӖ૕̊ঢ়°gÿਫ਼«Čʟࠍțද–΀ćßǑࡃɇᏚfœęࠟțƪŏ̚Ǯ఼Ŷ༦ǵ୐[Cûعŏ_ĝۇ±łůҳEBūݥƭĆāԗɳڇǵᙡͅԳ\\ϗijͷ¸Ġő̱³ଉ͂Ǝϑ࠯̩࢕ࠅࠫͻ֭džȦʧؽʹŭƪśǻͭæ̅Ƿқo֨֞݅æͼĽ̛͙͉ĘˈʡခŽԄǹ̟ǕˇýۥªIJțʼ ЊλԋɏڣÜҦƫΎVÊͿȋLJɯg˷ϝϥPˣŜҒȣɱȡࢃaڐŵƙΓDzʝЍŝȨċ̵܍˝ȱ݅Ò׬ǡúˣǓŏՓĈʠƕȽ—ǭ`¨Ā̅Eǂ̐͛ɍ١ƼXƜͤîȀǨԽȁ֓ƞăƊɬψࡇ͵ળ¡ΊȔԭN•ƶгṷ́ˀûʦҪDŽڛåÐȠٟȬjȾъ˔ԅȇ࣡ېß̪ઌǪȏK¦Ė७ǭĻĐʮɒތȖМȷĥɎͩÀϋκȪ͹нƙ‡Ŋ֕ґ˱޾ɹƤޘ͔ѸÀՋ«۟ɗǭňοHþ͐ʉÒᆖ۪ົ֯х¿Ķє͊Ƭն°ࢳ˜υǰðʄॎ˦ႬȅҵƔǞĨڝÍӣĊଢ଼ʋӪք଺ų˖¸ȸʮࠧǕহǛ˂κĈࠚƣ֬ŰŚŒχ݃͜ڌ–ٻڈڰ࿳œ٥Ȳ࠭Ĵѡɺ̬ĶନÍྰ͕Ǭ¬օƞÈɞѣƂيQ̛İോ¾ĬɸऺǶඛýʜȔэҲɳ™ϘϿҕlj´Ǘ؍ùݽƼɺҶЎȶحƩ¯ĸ˺®ʳČ֪IJǀʨ˭Ťǹç͉Ú͊ˌۅȚɠǜ̶͗ࡋGѲĀUǮϲĈኻۜˈźɡƶᖟЀᄓǎҩœϵČࢿƽыĞӷċѷØˊȣఉø૭˨଴ɄಷîiɈޙƗѹǨɺŬཔj۾Ƹุĉʩʹ࠹Ɓ޷àؕœহȜΞŢঁyಝ͌̄ʎےŢᖂȞԮƲᒪŖࢄ۞ԨĊᖏmǧʶᒈԬژ¶׌Ɨŀˢ௾íӾ؆ಾ|ᖖѫᕭզ◴݆̂ƿĬѕ֚҄ᅈΩ଒p୧ϸݲö⪴׉ЮӴૉ͈ᶰÇюÎ♣ĠǤي፾ȸ෬ƍߌȚᇚ˫ӽ̺ࡶń㹪Ê"] + ], + "encodeOffsets": [ + [ + [-47377, 62241] + ], + [ + [-37920, 67105] + ], + [ + [-52237, 71222] + ], + [ + [-53996, 71624] + ], + [ + [-52915, 72556] + ], + [ + [-26042, 72624] + ], + [ + [-54820, 72746] + ], + [ + [-56337, 74539] + ], + [ + [-18432, 77218] + ], + [ + [-19028, 77868] + ], + [ + [-73387, 79182] + ], + [ + [-18035, 81742] + ], + [ + [-45941, 84054] + ], + [ + [-30671, 85571] + ] + ] + }, + "properties": { "name": "Greenland", "childNum": 14 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@˶DʔŁRƾ̮ȅ—…ÿáˍɉɷǩƳãáǧºǑQ¿īÝÛĩǯsvůс˳ŸƕїNJ٩¼ܛҲÜΘ^Žœtr ĥȺĖƦŀǪȄ̮ʬBϢ@ɶ@ƴ@ÚDYøTĊ‚ø@’­¤ĕz·–@°sȧÞɟƆη͚ǶAǠCHӂໞAÑྩ"], + "encodeOffsets": [ + [-91374, 16270] + ] + }, + "properties": { "name": "Guatemala", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ýƚȐƾƛǗʻ"], + "encodeOffsets": [ + [148216, 13578] + ] + }, + "properties": { "name": "Guam", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ĽdzĠŝķƧ͋{ǥƛÒŷǩӇ΂ש̀aĘѱвۇȆāУsËh¯ÎuRǗ§ā¯óœ›¡£mǛG߁ğg©Ņʱʑµ_¡ġ—KŻơG›ƒµ…M΅Ʀʯ˖ŋ CĄÓ‚_vB̼œöĕ˞Šݮʬ̄Mx¿ÀıǢłϗƲƄҤŵƀċhÿ·ĽWlj„÷gՓפ]‚ôĢà䯜€’oƞB¾}ÈmÚ¶ĚάÖ̮Ƞ~øG–g`ĵbµm»X¥²í˘ǤɸИȬ–Ğt~Į´d¶ƻȲۈЋׄ֩~̟ljխɒϮδÅϊϡˀŹ„Չ"], + "encodeOffsets": [ + [-58567, 5682] + ] + }, + "properties": { "name": "Guyana", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ȯŸǵǪӰŗʼnq"], + "encodeOffsets": [ + [75477, -54412] + ] + }, + "properties": { "name": "Heard I. and McDonald Is.", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ݷȱĝxǷŲĽµ×ƛűɩѳϟgMƒOǓĸ³îʓɽ]țhĽWsaW¡PÁ„ȓhÿeyÁIå[›—ùǹ¥_ɹYŵ̾˙ž‚ĺÈʖazϤ÷Jĉ_ƇĞʡŗ…F]¨MºO^ԝ͢ȯœLjLjRÀ¹ǒâǨƴäɸǪˎɊĀ☆ĆyɎƮ౤ąΞƞ¥ÐфĽєøΐƿʤjиΕǩĪřw`ûƘMƖƣɚDůŬɶŇâƉĉ̥ɍ`Ĺĉč"], + "encodeOffsets": [ + [-85642, 15234] + ] + }, + "properties": { "name": "Honduras", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ŘËͳøɜk"], + ["@@Ҍá˱mǙĐ"], + ["@@٦˱æŃ׋̪ٹǾԺı"], + ["@@ʛ`•ĎϊÓė™"], + ["@@Æ×ƕĤЋ"], + ["@@ƧȬhɞƀщ"], + ["@@̟ĒĶŪȪȻ"], + ["@@ÇąȌˏ¹īͪƿ˱Ù±ɣƝ\\ƣǎ܋@ݧǘ͙»ȥǧɝƲȫU©΍̮ȵǔͫࠊ֭̈́σÅËֵϢёŶ΃oڥոÁì̊`Ы˦ŁВʯǼȥ’ϝп˿ը̤­Ю®¶pŢŶpK¶áŦÿƊlƀ£ŌSĈvYˆ‡OŽÐäÝÖ̀ňpĺQÄͼI€b‚кǮǸŸĚUöq®]ƮËļÝτ˽иǥҨ‹ƨ˜€bĎĂȬr"] + ], + "encodeOffsets": [ + [ + [18031, 43796] + ], + [ + [17051, 44029] + ], + [ + [18092, 43927] + ], + [ + [17189, 44310] + ], + [ + [15741, 45030] + ], + [ + [14836, 45732] + ], + [ + [15166, 46057] + ], + [ + [19360, 47035] + ] + ] + }, + "properties": { "name": "Croatia", "childNum": 8 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@cÏɋêǗƎЈƧ"], + ["@@ƇǫÖŋN«aÏĻijĵG[W¼ïÊăĢÙtÏșíâýÊĩ˜ۇÝёČ̥½řůӽ΄úƦƆŽூȑΎŞ|ĎϵͬĜ̴؟ʀȂƊӦdΖſ͖¡²ll}žǛ‡ǛČ÷"] + ], + "encodeOffsets": [ + [ + [-74551, 19229] + ], + [ + [-73366, 19657] + ] + ] + }, + "properties": { "name": "Haiti", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ĺDˢɯƾqĜƍ݃χ݅ਇ̣‰ūħė„ȑƒqd£`ȑh÷_ȗpljėًſčāaƧ—ҧŒзǦσ˾ĽÞƫÌ­^ț̜DžL̢ŦUͦȞŖɉŜժ„äʤԬȣ߲dÊǴ۬Ȉ˚Û͐ŰƀȚ߲tˆǵ̪Ê"], + "encodeOffsets": [ + [22663, 49568] + ] + }, + "properties": { "name": "Hungary", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ĹVhŘѴʌ ƧЁɑ"], + ["@@ƭ†ʚĠīť"], + ["@@ùŽŐľ•Ƌ"], + ["@@ٮө¢ãœƙɑóʙĂҙΨџÊŃǀ˲ŶլÈÐÕ"], + ["@@՟՗֯ǕţÞĤLjŃĤĶ̒˞ɰȸñƌȨВȺ^ġDzV£ŭŝoĜʣ"], + ["@@Ұ䞤č"], + ["@@õ•ĺŜŤwƧÍ"], + ["@@áJ¾ʴĢ÷ýȅ"], + ["@@ʗ“NJƈĴƒeï"], + ["@@ŃǧÔÅ̅u͏ŀȂ˜_ʶ˺Ȝˊōßɷ"], + ["@@ŝǝǿêʾȶ Ł"], + ["@@̹ʙ˕ŠȸǪí–͔úŲé"], + ["@@˧âȞŖĊǷ"], + ["@@ÅƺƤˆĝȁ"], + ["@@Ќæŭفõ¦ȜŪ–"], + ["@@ʞÑăíǟÆFú"], + ["@@्ʋȣìïďʗeСŐ՟±ďƈÈɺآƮۮ˱Ѭĺ̚ơѸ˘ÎèƉŠƄäøȇȉʃ"], + ["@@ñȶɒƀ˃ǁ"], + ["@@̴ŒĐőǴİǠ̷͑Éòć̓mċƴǃƓेɑɭþ Њˢƒ͸·ȪʇƎaɠŖΛɀ¹NJ̦xŀǏ"], + ["@@ɎɃҹω÷ɶωǎũDzЄiǺĸʚõ"], + ["@@ĿïĕȦǢatœ"], + ["@@ˡʃγÄȯĉƪ˒Ȩ—ͬŔLjă"], + ["@@£ĢĖc±ý"], + ["@@ȩŋիfδېǶńЌ¤Ȁʱϟӟ"], + ["@@DZDrˀъӔþëûÏg̟ʣ̻"], + ["@@șîƠZºć"], + ["@@ş¤ĈƘĩ"], + ["@@őFOĈŢč"], + ["@@׽ijͳŶŢƢǚhނNĊñȕŧ"], + ["@@Ɓfjüʲßƙ"], + ["@@ŋtŜúOĭ"], + ["@@ǵ΁ț`b̦ôXãɦΠɁ"], + ["@@ʘǩ֐Ï̈щ฼Ɓ΄ѰŚWǬɁ̠ҠȵϞƒĠʛŪé@ȻȀėРÇӖú˶ƅmԥǒ̫ૣОӗĹঙĔݹƀ૙ώғŒʏʼn҅ÖՏɄۡĔĈ˓ŀ߉þĬƞĨįƞˀŎZè˸ǦǞـƷȆǎ˞ē"], + ["@@“ƓSׄ¨ѯ"], + ["@@ŏPĔÞ|í"], + ["@@ٽ§ʲƪȳ"], + ["@@ӵɯʉɬŮ®”ƪřŀŖIȖʈƨɻ"], + ["@@åïʘ֜eɏNj˛"], + ["@@ɍƀɖ™Gĥ"], + ["@@™ă‘ĆìA"], + ["@@ȟƴĘƺņñBɻ"], + ["@@åıɿÊĨɀwʬ˪۸˅ūǡ€ŋ"], + ["@@`ɫşØé͝ǸǍǿÕſɟƕP·ƦưɺòӼȆȚĘƏ"], + ["@@¨­ʧǂɀœ"], + ["@@ƕĩęǔȲ‚~ī"], + ["@@Ɲ«ºļĤÏ"], + ["@@ʡą«ÒͺƸ«ƃ"], + ["@@‰Ɵ½ĈĈØ"], + ["@@ȳŝJҦǦǦ„ԭ"], + ["@@̮ʭFȯҙDžЅȀƃƸ‚ˆٮf"], + ["@@ťÔƘAqÑ"], + ["@@ՀĽdžšʒσ¯ʋ߯Ҁ˧C›ĿԕȀ̅ǵ͑ʔȗ˵qɲ˒̚ږŒƸĕʺŮɪã"], + ["@@’ũɕ˼KǜɌǹ{Ƴ"], + ["@@ŷȕǓŠȱϧʐĒ̖ƞŠ͆ƕÚŏéƗ"], + ["@@ǁáwʜǺǹ"], + ["@@ȣð‡Țɬˉ"], + ["@@lj̀ºĐŐЏ"], + ["@@ʶƒܑįûĆ՘®"], + ["@@ÆɽƛÛѕƲԬƨ"], + ["@@ȀMłƑݫŅóŬôǘҪ"], + ["@@சǧ֑āهʪ"], + ["@@ī•ƒĀŰ©"], + ["@@ːڛϠğǧˑ²Ʃ֙ȺdzզշŜ˜Ͼł¢ĬǡhǔDŽzŖƏ"], + ["@@ĩpžƮÌǝ"], + ["@@ӹÉƕŜɄɎь˟"], + ["@@tǽǔŸĦč‡ġȥVďƭmʾɕʃážĆɀʰV"], + ["@@ȹąZʖɤ­ƒš"], + ["@@ēD…Ŕƚ¯ç"], + ["@@˯ƘȍΌØȒɎbˬ֣ēų"], + ["@@ǿ¼ğʞ̠–ͯ"], + ["@@є×М̱ǯĵȽŠƙ̘č¹əȘ"], + ["@@ťh¬ŢúƉ"], + ["@@Ɖ–ŴÎVģ"], + ["@@băȏoǮĴ"], + ["@@@NjDᲗħͥĨƓBᇳࠉޢĪɮƳƫҥóŗǨ̝ɋǖմ˹˰ΰ¼˥°ȵǚɜàΧўţͨàĘƥŠŞŎɃ…uȴٿѨ։ń՛ʎڅäѡ̺xľưbԵOijŲơkʝ˴ƎΦş¡ɷœŸįХŷƍ˫JƇ̔ĬŸıɎٽьɔĞдğϺ̐ђƽ®ƤŶºħĈŊLj߫Ɲս~ʅɄýβ՗ƖʡǐɒÈʺҠŸӸ̈ϴ½ԬʷфeŚđ‘Żǀ̣Ź̝öӳɞѯpɀŨžØͫŢršʧ̪ƅȢp̺̌Ҁ؈ִƘČâ¡ƺֶ̞သܫ۪ćŀƉȎE"], + ["@@ĮōȑljėǐǼň"], + ["@@ĬűÝšɴǗij×řİƉ‘LƎƗŤrƒŌÑĤô"], + ["@@ʼnqNȮƐK“ǯ"], + ["@@ɳSôŌǀķ"], + ["@@϶ũÀş˫Ï͏ɲɶɏůċ½ŮśÏˁƂłŘϚÌ"], + ["@@űAİʲĕȎȆɍíɯ"], + ["@@ȐęҷĀĄǨȤǍ"], + ["@@ũP¢ŴĈƃ"], + ["@@ҋĢ`Țиȕtĥ"], + ["@@ĝpľší"], + ["@@ϷƶpĘɲùƖǓ"], + ["@@Ĭ]×ƧőèþĞ"], + ["@@ÞƕñǽŗȀƿ‡ĢƔȊˆ"], + ["@@ŭðo˒ƾƍ_ȳ"], + ["@@ϚЭģ·ŗ‚ãȦǕĨ˛ДɶĪł×"], + ["@@PŇЍɸϾů"], + ["@@ϱѳ֣ƑЧlɥƖဝ©ιð͗ɓƭϵ¦̟ƬˁɶƝŴˣК~ΪіͦĕʼƨԠD¹Ć˼ôǪß°Ň³ȏЋĔշջ͡řǩǝʝb޾ࡻĜʗūΛπϵƄhr˝ŷªԗǙÝʕϗÖďƮŌШ؍Ӓƌ̔CΔơĘȍkͣʁƨُaއšѹŶϏГ\\ȟĭƇêǓʠȠڔ|ШſѬЇqŃŞë֪ʸȨȖҬYѬǘфǠȎŐƱĹٰŦň³ǖĖǦ̚Ѷ˨įɠͰǶÚ˔ëǀƧ܄¥ͶơȔĆܪûԒ͌ΎψƐ\\ļƷ́э"], + ["@@Vʏǿ³ùʐʤ´"], + ["@@Ű_ðǮnjĬ¾ȲϺƠ^ϻ͹ȕţ̎Ʒʐ˫ޕɌăƣúҟϔէ͇ǀ̕϶bѼƝ˖ÐȦƯʖǠנ;̘ṷ̋ľŋ@̵̝ˉäƓ"], + ["@@ȏŢƸa˜Ŀ"], + ["@@ƃcÝɚ͒ʦòĻÅȿƛƟ"], + ["@@սʞùƜƮÂѬ̽žŽ"], + ["@@čiČĨBý"], + ["@@ËǘŨïÛħ"], + ["@@CËéĮî¡"], + ["@@ġŶŐqmŃ"], + ["@@ūt•ɬǂʟ"], + ["@@ōƽ¥óƒȢb"], + ["@@ǹ^ŦĘȭƢȸȠŨșÝʝ"], + ["@@ğāʾ͗؃ÇʒǑLțɒʼn•œň•·½άяɷʓ৐࢛ϙƗ˵¼ʅȌ¬ǭȁƅȇг·ҹĊϓկϝƣƮ\\ʃБϧŰ@xśřǻɂƅ‰ǯDZ•\\̋ƏƒúLJʧϿਖ਼ӗƗژãėďŒ@Ǯ죯èͅƩāɔɡ§ʹ˂¿ɇdzœƃá˅äΩș‡жŅƘٝƳčÚÎòǑĥŇŊˉÙƇ߸ŗŜpӴǏɜѹǢĨƚɁȺŖΠʿ˚yҴ–ȆƢĴķ[ÆɌʬΪɂĘùōĬɿܐمԄǂתɨŎĜʞʒĶϼPÂŏԮǕɾǖԠdˌѺ™ɪͤɮĉĤŒɖňŌǪRȌ঄ƴžռnӰƒЊƕ"], + ["@@ĥŒĠǀûðˆǢƐɏĕɍ"], + ["@@ࢰoלړ¸ˑ஦އږ࠳̪ȭ¹ʜǾ^βӃҘɁ̶ԋբɛqƍϧǗڐʢ˪ȍĪȭ̝ȩoƛĖēÏġʂʻ՞ŷžٿˢɯǍуːȌΨSծ؍Ǜяòǿĉˣ²܅śڷͱɦɣǑωȎœ̻éW٧ۚઙެ·Ҭңδ׃ޚ…˄ҟज՛ܺѕʴӁౚݧдġЦǗňΟԌѱȮܭ܄̹ԺlʀͶšш˃̠Å"] + ], + "encodeOffsets": [ + [ + [125900, -11171] + ], + [ + [124809, -10844] + ], + [ + [126379, -10549] + ], + [ + [122893, -9599] + ], + [ + [128070, -9740] + ], + [ + [118385, -8980] + ], + [ + [125929, -8750] + ], + [ + [122332, -8950] + ], + [ + [126278, -8555] + ], + [ + [119441, -8820] + ], + [ + [127270, -8529] + ], + [ + [126900, -8471] + ], + [ + [142229, -8589] + ], + [ + [120378, -8568] + ], + [ + [127566, -8336] + ], + [ + [130892, -8293] + ], + [ + [125730, -8818] + ], + [ + [134003, -8518] + ], + [ + [121081, -8517] + ], + [ + [118219, -8350] + ], + [ + [132955, -8145] + ], + [ + [129845, -7851] + ], + [ + [130478, -7806] + ], + [ + [141861, -8472] + ], + [ + [134478, -8191] + ], + [ + [135150, -7374] + ], + [ + [131759, -7355] + ], + [ + [123674, -7289] + ], + [ + [116577, -7275] + ], + [ + [118147, -7138] + ], + [ + [107779, -6799] + ], + [ + [137766, -6596] + ], + [ + [109951, -6151] + ], + [ + [123421, -6449] + ], + [ + [115425, -5950] + ], + [ + [135995, -5991] + ], + [ + [137981, -5843] + ], + [ + [136117, -6043] + ], + [ + [104825, -5610] + ], + [ + [126594, -5398] + ], + [ + [124972, -5568] + ], + [ + [125589, -5395] + ], + [ + [126137, -4660] + ], + [ + [136777, -4347] + ], + [ + [126201, -4211] + ], + [ + [131649, -3671] + ], + [ + [131355, -3762] + ], + [ + [119219, -3547] + ], + [ + [119095, -3960] + ], + [ + [129906, -3161] + ], + [ + [109452, -3077] + ], + [ + [132869, -2934] + ], + [ + [102836, -3259] + ], + [ + [110805, -3069] + ], + [ + [102609, -2806] + ], + [ + [102240, -2399] + ], + [ + [129081, -2510] + ], + [ + [129049, -1832] + ], + [ + [133482, -1731] + ], + [ + [127969, -1746] + ], + [ + [138726, -1630] + ], + [ + [111568, -1658] + ], + [ + [108591, -1709] + ], + [ + [126564, -1745] + ], + [ + [131229, -1700] + ], + [ + [126170, -1199] + ], + [ + [112344, -1209] + ], + [ + [138205, -1142] + ], + [ + [101544, -1820] + ], + [ + [134146, -1347] + ], + [ + [138633, -667] + ], + [ + [130356, -799] + ], + [ + [133762, -541] + ], + [ + [124790, -416] + ], + [ + [144357, -2672] + ], + [ + [106982, -342] + ], + [ + [130629, -326] + ], + [ + [130304, -507] + ], + [ + [106227, -356] + ], + [ + [133953, -4] + ], + [ + [100823, -543] + ], + [ + [107294, -180] + ], + [ + [105764, 555] + ], + [ + [105501, 765] + ], + [ + [105907, 1074] + ], + [ + [105643, 892] + ], + [ + [106522, 1209] + ], + [ + [107096, 1246] + ], + [ + [104886, 1014] + ], + [ + [99822, 1501] + ], + [ + [104952, 1495] + ], + [ + [127887, 1020] + ], + [ + [104150, 2129] + ], + [ + [130799, 869] + ], + [ + [99671, 2126] + ], + [ + [131537, 2102] + ], + [ + [98779, 2417] + ], + [ + [111501, 2976] + ], + [ + [108299, 2932] + ], + [ + [108837, 3233] + ], + [ + [120483, 3360] + ], + [ + [128674, 3519] + ], + [ + [120714, 4287] + ], + [ + [110916, 3779] + ], + [ + [120397, 4271] + ], + [ + [129861, 4131] + ], + [ + [98809, 5355] + ] + ] + }, + "properties": { "name": "Indonesia", "childNum": 107 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@̽ĥ̤ˬZȅ"], + "encodeOffsets": [ + [-4517, 55486] + ] + }, + "properties": { "name": "Isle of Man", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ʬ@ĤмӼþʜόώeլԟ͚ƺ̃͠đUz­ŽƓ’íȘșKąuū¾DžWǫ̑âʀ˵ɶĉɔÛʄǣaīֶɹĦ­rә`·O¹yiŕĿœāŭƛíƃ½ůBėoĻÁϏqėƒĽh‘ƀěĈ³Ā¯¼Mb€n|Î_Ө˃ָϿšP¢r˜^¤YډƨĝƐíƬ`¢[„ÛpßҲůä’^†ÀjĖQǐ»èeɚĪŜÁɂãň¥€£\\Aĥ€¥юɳĐsɴČâWªŸŽš´‰Ǵœ׎ǵ˄ĶɬǏłÂμ\\Ŭ¯€Zzˆ´ƀ¦ŜGèŸĸįƄS¢ƎԬFĀ‘xAÀ‚`ŒjŶ–ŶèȐï±СbûÊɸŸSeķák—Ĵǵʒũƺ„ɈÏp¹ĐI¬YƮnư~êþИͦıҠdŞÞ|@À¹źIƞ¨ĐP°K¨hֶ“Ӡ£ʨҎϬɢࢎƈՎ̰Ϧ×٢˿áƷfÙǞɵC¡ůdſƎԙ‡ࠩԵšƕRʃ’ċjiF{şɫ˗ʽĩȱŴįǭϯĭƍëŷǿϙ͡ŔȗeŁÜ޳aŸũ£Ŀˋê̝ùųęǥ¯]±léĂçv·ĵ±ƒ[ÐÍ՘w¦đǎy˂ñφǝIÅ\\¥K@óRÿƷǻEȟǕ½įǪÝŋǕӼDŽͲ̈́ŨĴ{Ǿǘ®ĴĠɸBĢp\\ŒêĂΙȎ஽Cб¬ɅÖ«XY€pȊC͎ŵɬĉåmŃɕ‚ɩ̼ÉBfƉ{IɏžƑȐůžeåˆW®ďęĥƵƛ™ȷ’}̘ɱɢðƁö—[É̙‡į@ëȏ¹ãƒBùŽKĕǛ]£M‹²ÝÈÃâsĦMƊěŦiæ§V™M›[ĭ[Éō˟ÊĽÀµvȥƢ›€oy˿jǯŊ̛m˳ßBĐʅNjúħƇGΞĉĮµϱś›ƃŦ…ŕǑÒŜϐɇȢǾɅ˯ͧԻƵȷƭĥɓŐͿȋ͗̽ʳŋ †őףȏßHPLjɋŋÉƋɖ€֝с֕۩ำ৑č҉йȗЏPʳӡ˧Ř̓ƹȫ՗łԃÉɟǎؑųȔÿěɾȳħ̵֟כƓ֧Ět¦šUܽѯÇׅ̿äț͢şγÜҷƏȓǵŏэҕʱϝȦљӲȓҤçЎŐ͙êEĥ͖ųƐЅੴٹৠӁྰεӤů˔Ō@Ƈƨ¼òŷ¤ǡ̄ԍᓶĆіřƫĔRȂƦkǗîĵϾȐۼãϐDžɈĤČķSоʐӍ­ƂɴƭH€ƸɌÖՁŒļåċȥɡƢāšǓȩ̿ࠫΕʱDӻ̔ঁ৒æŬȎŵݴʌˀѢųű֥Ʊέöԁ˼ȉ͎̠ɾҕɉÍɔİÒĊnĜbĈAŚCHʨXxh^lNhIz›ˆDŒvìgÈ\\ÌcĬAǬPĬEȸěʘĺLjÌɎÀfQ¯p«äƒ´O¨PŽbææ–h°C¾B~ÙŢL vˆž†wÎÏŔÕƞȍ̢EȲáÁiµGƷtƑǠ¤π…ǜէɌĈ̶ˠʦżȄĂż¤ž¨ƆúîCŠïÀƗĚ¹ÜJʼİ̞Ž˞þfî¸ŊƲƚƐ̎¦°ҾɸВݾάƆÞÌ ¼Qº•ÐbêĢîˤ̼”@ŊÈļÚO†]šýÖbÚºǢY¸ÑDŽ`ª|®æÒĔ¸˨ŠÊ`ĬˆâŜWN"] + ], + "encodeOffsets": [ + [ + [77130, 33061] + ] + ] + }, + "properties": { "name": "India", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@¿µáƠĆŏAƨžƁ"], + "encodeOffsets": [ + [74232, -7554] + ] + }, + "properties": { "name": "Br. Indian Ocean Ter.", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ˋÄɨt¤÷"], + ["@@Ňŭˎ࡛λӧŜĉӅñÙøࣽΣ̏¼űϵŽޣġDzǨԃãѬɰدÙδ˖ЗZ„ÒӮšőźɰŦ܊ŎǧÜƹĵحÅϜɆƔɲ̴Ģӫ~ӝƦsŖͬ²Ƴļ˖à@Ø˯_¸Țȣ¼ŠĒౖaßĘЬʚՋ’͘ǪĒɎԜĢRʇ̌ͨ̈Ņɍũ˧˗̡Íƀē̩ƱјɩʂUˊɰ̜̇δ|"] + ], + "encodeOffsets": [ + [ + [-10186, 55208] + ], + [ + [-6367, 55387] + ] + ] + }, + "properties": { "name": "Ireland", "childNum": 2 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ȝȃեĝϜȂIŖѮHû}"], + ["@@͂|ొٸ˜ʇǽƃǂȅʝƑԄϋɶrüқǰʑ߬Nj͸ͣӰɫ࣒ķೠʸŮ@ȣÝʔ‡±ѴڈńǚʶКɰݠ|ƚƚنƒƈȱނʵҰdТơźɏԞʑɺ˙ٺLþϝ¹ǵČğTȻhÇEƒ‘³Ƌõ‘iΓŇǝ‰gĥã¿S[uTuvańŽȷYƁDZ@͑ôĻ˾é̙̯bťŒͧĴ̍CçƱCğHǻ|Ƒ„YɎȢ{˄Ăą¸dzEƅwçȋțȑȡЧщLjǏİķب࠷ܺ́j͵}҇ΐY|Q¼‰œ±HwÁŸRǕQ]±wcƟܙƥÓőĩXʃţ»{ƛuŷamÍ©McT·ĝqʡyë¯MĵÿؽƲŹżġĿߍƜ΅ÃȽŘ௳Ȧʣࡒʵ˞ԡ`ଝՙїLjҕ|࡛ԈǹʘϏǪχʻɤǻԂǏŨRNJǙìsɰЗтćɸѡƛѷʰǒŜȅ†é͕̻ƃ˔™†ēȼ˅ưIѲ˥Z@ͰØǚÜnjīŢĻŸáÀƵʰ™fƏOҩ̰ljĄálƻNgfYª@¸¼ôJ²ŁƼԻҲŪȴéɊ”ĤŘO”ȌȲȘĶªü lΗŀşǞÈŲŦŽæ„Vzė¢͡BΏnjķ˺…”©V•D¹¾ʍ֞|ŰȃŨbɴ͇ǔȨΪŵªuϚȽҔ̮œǖ̆Ȗı֎էՔŇ"] + ], + "encodeOffsets": [ + [ + [57537, 27568] + ], + [ + [47222, 39811] + ] + ] + }, + "properties": { "name": "Iran", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ŗP“ģêɉũȳԼұłƻI±»ó@·Z©heɞyNJăҪ̯ƎPœeƶʯâ¿ļŷĬšÛNj×Ǚ@ͯ˦YJѱˆƯǺ˕ûqċfdzìƅ{Gy˭ĪзąȯϳŗDžÙóƋƍƧ൝Ŋ߉վ෗ਚഃۀğž˻²˗¢ҷèŮĴ›Ĝǥɣ࣊ᇴࢴǪ˸ƆܸµزĶŌ̺êӐјĆhưĸĘĦ†TĀ‹ÌSž˜ӪşƊGƪúĐW”gŠƒbŸMųäך‚Ü¢ǢIJÂE¾O†oʎ֝º½–CªU†“ĸ˹ΐNj͢AĘ¡U{åťÇűŠǝ˜ĿkÍûŸķ©ȯȗ“ȋ"], + "encodeOffsets": [ + [46733, 35404] + ] + }, + "properties": { "name": "Iraq", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ߔźѫɋΜėŇɋκpåDZʴÈҤĻƿƏǦˍϏʙ˹H÷ɃϝƣݽťڵʻধŷŋƫקŇಙŲʝŌäIJȥÉуǨఽį¥ɌLjû˔¢،˸ӷÅĒǜ̢Ĥџỵ̈ɚଏ³ǧŀਦƶݬDĦŞؕR֒ɂࢷŐ࠹ơӛİȒø͢ÛȡȨАćˤÐҟČʶ€ɅŘ̀NeƂθǗ̠ššƃƤ”GƊуŤϴ®ՍÔƠúѦBࡨͻ‚ʅʅeѼϧ˚̶̌ÅȺѼ׾˧ĚʶҌĞעϙŽΤ͠]̚ƭͮȨ˄Ý̔бɂʔÜɜQϊʉ"], + "encodeOffsets": [ + [-15916, 67818] + ] + }, + "properties": { "name": "Iceland", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ǷÿGkcȋÉNå¤a–çjģlŅ×¯Ĺ¯ƫ†ȹWŸqsPclMÐlØkÜÉɅŭÏȟӐĤБྣÍßփบĒìDÐƨƎ£¸NPǎʮβীʬOϨ̚œЛŁǷ"], + "encodeOffsets": [ + [36647, 33521] + ] + }, + "properties": { "name": "Israel", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@Бٗǒ͹Ƶ̯ԣĢ̝ʲȥEء͆ѽĬǣȎʤ̨ƚů͜Ƃкǯ૤Ơ͊ŚàÏ"], + ["@@µċ¯ŮĦ¡"], + ["@@ã•Īľ…ç"], + ["@@Ƣ͏ƋșåएыÔ÷ɳˉ‹ȗɼňՒŝàẦɿ̠†ɘ̈Áր΂͚ȫbœ"], + ["@@rŧʍzɜĮ"], + ["@@ǰ‡Fgeq˙½¥M}PmlYúLÂǁƘģģýûƸΟ@޵˙¡ǡʢɯɳȷŮлঘշϒݍѾϏՆʻ࠸ɛ͑ႮܛьηįͱɟĬdz˾Ͽ¼ǹƌɃ™ͿׯӾ̯º͍ҵǕÑ͡Чϻ˩EߥȜӢˌŪ\\ƴѣࢤدȾEȘƳǘΧÍĶŊΓêʻΤթPϩȎ࠱یзĒvŪϫʹNj€˝࠘டЌٕҝљğŨͮˋuΙǔþа̛ȬόƠÊŢ̗̠ȘƺˆkÖoǖ‚֒ĔöȬŴîÈÀԔôǗ̢ƙP_£ÃƨƕÐ`ư̾ĎɶĂ]zBĐƧ¨SºAۨĆl°KĒĽS¢Teŀy¶‰xMˆnÂv®¦^¸LȠÏi¸W´PΠŊvSĎAĠOЫÎeĊKÈP€j¾ÐÞĢ’ǂNĂ^ȼWͦĆxOJ[‰ƒ‡—p¥Īċ¾Ù¸µú}ׄċƶ]ŜEǮ‡gµ—[׃ƍćlė"] + ], + "encodeOffsets": [ + [ + [15951, 39138] + ], + [ + [8683, 40006] + ], + [ + [8485, 42025] + ], + [ + [9864, 41864] + ], + [ + [10645, 43887] + ], + [ + [13744, 47322] + ] + ] + }, + "properties": { "name": "Italy", "childNum": 6 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ފʱŞȧ˃¡˟ĞùĿƧ€íƑƁIJͿšɵʞʛĪļƈ˾ØԦÃ"], + "encodeOffsets": [ + [-79115, 18901] + ] + }, + "properties": { "name": "Jamaica", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ǻ¯`øǜ‡"], + "encodeOffsets": [ + [-2067, 50413] + ] + }, + "properties": { "name": "Jersey", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ůį…YӱŭɛÇԱŽɹÍɍÃ࡬࠯į³NjāgcacãƗ¿őka׵Ň©…ĥƑīƟNjŝǵŻऱŸnǞВྤĸْiƂdȌHlǸĀӬ̇ϒÏ࿦ࢲɤࣉǦžœěŭij"], + "encodeOffsets": [ + [40085, 32896] + ] + }, + "properties": { "name": "Jordan", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ǩŽúĆƐ«Ÿç"], + ["@@Ɓƙ©öǾŶQÑ"], + ["@@ƥS^ŜƈŇ"], + ["@@͡ǭÁʑų·ɊԌDŽuƂǸHȕ"], + ["@@ĉNPƜúƩ"], + ["@@ïåǝĺѴɤȥʷ"], + ["@@ƩDµļĠÞŪÛiŁ"], + ["@@õ DŽ͔čγ"], + ["@@ŝȂ®ãý"], + ["@@Ĺ\\¤ɺƄh‚Ǜįġ"], + ["@@ȔōǛŸwƮ"], + ["@@áĤĦƲÔŝėŷ"], + ["@@ķŸǘƺßř"], + ["@@ķQ˜IJàğ"], + ["@@Ѯ@ƅˡ̠g£ŗżȡ˻Ε˕ࢻɡ‚xƱ΋ȭø׈ķXĉŽ‚͓͙Ĩ­İٖxŴőƘN˒ϐѼţŒ¦Ʀʹ̄ģÓ¤ɇŶD\\ŵʉÎʉǙ¸żŭˮˀǫΉ͔|ĜȠkeĬҐǔĴǚȚĀȦ³Ȇɥ"], + ["@@Ʈȣ“¶Ô"], + ["@@ÿlzƨƉ"], + ["@@ɼ{ĐͿ̣dzǏ̡ȉǜ˛À̅ŵʷѣơ÷ƋTÊŠǷ\\çќ͉÷Ԣ̌ʖ;ɐƋ͜ìlȐ̄ĖΆû"], + ["@@č»ÍĄƜ‡"], + ["@@ĝïƁü˲ɀÑɋ"], + ["@@ıbƸˈÅ˩"], + ["@@ōqĪö Úŗ"], + ["@@ijPrȾɈȦ¥ȫĸSȗȳ"], + ["@@Ȑ‚sֳ̰γưܥÛˋ̇̕á̟̝ÅūǃࢅΫݑʦыΓǷđˡѕɡc͎ɪʐəÔƹȽtɓǛŲȋiƍρȽȁ‡̘ЦƹČѽѹթÌЙçǴdžʽ¾ûďtʬý^ɫ̹̈ȳuġѱū΍ԫȃÙȱÈ˙Ϣwʀˆˢ֧Ůб§ɹƿۛȋС±˿àƕУͽǶۓÛ{ʊĬŌ̌j೎ईࢶGৌȬŸȅ̔mȈĔNJƊẘՊՀŪՠЖŞΡͻİɽȖëɤǖڲɢӆՂДɊςڂɚزÏȘɅÆɨ˸ó˴̜ȼÂ̜ʄOĸ̫ǀĢƶ·ł˖ύÇDĪŔɄʖŏ"], + ["@@¥ĴńˆÝŻ"], + ["@@ų†¤ĀĐŅ"], + ["@@Á¿ǒĐŏ"], + ["@@ݠǁռͲȕ֑ǚ̡аìމ͕ߝijґϳljΗ୕ӠύΝǣɵǴȓHŻɟۘЧŵÉ˷àɱʟʥí÷ŤĦ˰ɭ̬rʮӔ̼‘̊ظĻȤČ͘ৠƫ֢ìȶɪĞߒ۵߆ҭ"] + ], + "encodeOffsets": [ + [ + [126862, 24863] + ], + [ + [127277, 25105] + ], + [ + [128455, 25337] + ], + [ + [131337, 27293] + ], + [ + [132095, 28387] + ], + [ + [132560, 28886] + ], + [ + [133758, 30990] + ], + [ + [134103, 31127] + ], + [ + [133511, 33202] + ], + [ + [133205, 33004] + ], + [ + [131754, 33571] + ], + [ + [132175, 33629] + ], + [ + [132600, 34021] + ], + [ + [132911, 34559] + ], + [ + [134323, 34410] + ], + [ + [135441, 34760] + ], + [ + [132383, 34943] + ], + [ + [137583, 35079] + ], + [ + [137577, 35312] + ], + [ + [138172, 35112] + ], + [ + [132491, 35179] + ], + [ + [136572, 37073] + ], + [ + [141665, 38730] + ], + [ + [144619, 42366] + ], + [ + [142829, 43091] + ], + [ + [144687, 46203] + ], + [ + [144459, 46421] + ], + [ + [147277, 45176] + ] + ] + }, + "properties": { "name": "Japan", "childNum": 28 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ķȤ›øÍŖøĤ£Dz»Ǣ™ŸƒłEŶRÚ^́Njɉŋĵ½"], + "encodeOffsets": [ + [78898, 35953] + ] + }, + "properties": { "name": "Siachen Glacier", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ǁèĪŨÑŏŪÿ"], + ["@@ѝ‰ɑѩڥťȉЁŌ։ƟDžחȝijŢճCࠣǺ׷೹ʠƝ÷ʣɋĀˑ·Ʌǂ൏˽ƿĻԢƙŃԯβ޻ͩıŰƛ˯śNқśĨűĢ㚽vȍƴĀbᅛǔ˹™řUӝTûR§GěđՓØ۳˰˕ĝˣʼnęʥyğÒƹåVă¢ƒŒΫ´ďÞǭ’ɣâџÄȷ¯û`Ɠ£̧ͥ®ûທەӍңWɇɿ„ȳźÆȂƩƘਏcǯۆЩVúࠢʟħʳζӹͼϳƍਡÞ৻ŗࠛݸᏟঊᓡһBᶡҗsӣ֚؝̶ࣃƿҿ̯ĒࠖוĠʁʐˏ`LʶЃװнŐáŖƂƌ॒ý҅͠΀ξຈuΩȮ̤ԴÅ֐ӱŔ́Ƌ߭ʀકѝҏÛīƳׅɦbŶͶdڕ޸ֻĄǃÁȑаͻư–ͤˢ̂ȕǼòˤҒ֊ɶjՊѩΤÐőֺזȪƦȚؼǦҠτ̶çƲƟ݀Ƞ̐ȑ٤@ڪχΒщòЎ࢚έڲξѨžβƧͮǞѨwѲ̳ӎ×ÐŅʐöȸɦ̮ƝѤbϔƒƔ϶ࣹ˜ιʂ߸ͺȃ˶ɰʠ࢈„ΡȈϯº~ƄʲÞұĊɄͮזÓᒂπՄ™͜ʄᖮ̔¨Ƹ٪Ȕ৤ȏҲŤϖץý͗ފMƴĶɖ͑ƨNJԜƩМîͿ˭ĎɓϞƠвōČƆ٦ȺǼǐ୴̒ƵʟȝNÂŇୀهᅂᐳπƞrȦʌĢͤđ±ȇˈWàǻࡸWɤƒԄĐӴȁ͆҉֖ƫȲϏߖĭдɸ£ǵגБ"] + ], + "encodeOffsets": [ + [ + [51389, 45932] + ], + [ + [89419, 50264] + ] + ] + }, + "properties": { "name": "Kazakhstan", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@Κi²ƿk§mŽNţɒ˷ݒ³ȾƁڒяŢćŜ}Ȑ[ƀIݘťƎĸŐƪªĆޢΠɌǹǚħŶDĠdɌ`ŬAɩ͙ɭ͛̓͗^ᶻɪ̋ƬȕĂĻVĹɟȿ̓áPȷɇɧΟůęҿɉ˛̵ݵɥǷഩ৐ŠϞḭ႘’নǾδɀɚÒƦˈǞƬЌBŤYǚå̘nÀϩָ“ǎO°˜njGœ›”Ł”ďäj´­hſ˦ǜǘǠǜɔɊȨȠǦǞƸƲ¶Ņ"], + "encodeOffsets": [ + [36174, 5494] + ] + }, + "properties": { "name": "Kenya", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@·ƭ鬿¨•”ɛןŪȓ²\\Ú[zƒl֝ǫʡNJৡ¿«ʪ†úz¨¸kȋšTIÒE~мƴՐȓ͢ɾ˂‚͜œςʌɐWZŴǞ©ѺʬЉ”ʛƤÍGåsuXKþa°£\\ÁmÿnãPiĮÅLJ^³t‰ôwO‡}Hŕ»¹AáˆWǥ_Yʁ|ȿÔŃƨҫƞ֨ϬƦ ǒîHpgjç˜āˆ³ec­ų̈ͦƔ¤ü_ȸ°Ͷ½ĪEɤãǬĒÝά³„‹Ą¡æUÑƺzĠĚʦˤŊ˖Ğ۴˯Ք×ĜǍHüQӞSŘV˼šᅜǓÜġþ»Ôµ¼ÁвÏŲġŜħŒʼnWaeUʳcÍg׹࡯˵Ǘčč•ãa÷ȇǥƕsšJăřԁ á_ë•īƏ¡i‹cã›íćŅë¹Ý»â͗ŅǍFĹˎ…DɽŭʼnuęGśšÃÅ|ċΙLJƙ›Ɓcÿ«Ã¯ďy£iyH‹˜£‚ěOy…›¥›ěuë[ƉXéc§}YϿr", "@@ćXÍ`]@LgÐÓ¬Gø‹|", "@@nƀů€³ÎeF›ÁìăAaå¬SüC¨R"], + "encodeOffsets": [ + [74384, 40332], + [72361, 40812], + [72916, 40850] + ] + }, + "properties": { "name": "Kyrgyzstan", "childNum": 3 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ұȲʃđŸĮƴȆǃɎƭȍǛOwҠƩ˂]ÉǓ͐f˲ɋȴƍݞǮt̨ҪʒǐೢĄʜǛ¬®˜²\\TFwl¹Ž·ĖùƴžǪÏüĝÖ«ƌE¶ņyàûŖsä|\\Ƃ`t`†ô˜SòWü¼°Â|{„™ˆuȍԫž«ŠiĀ^rC°ÂŒ†‚S BƸƨô‹†PĖŢƿӟɰׁʼn΁€֓ħĕƱšљ˙ʉ}]ɗͣÒŽĻJ˹ʰɍFȱʻÎćł̋ùęɧÈBǭǑƕΣĻ"], + "encodeOffsets": [ + [106933, 10662] + ] + }, + "properties": { "name": "Cambodia", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ƔĭͷƌŤ¯ÒĊÝâͳiĥ"], + ["@@ÄŃőÞΦ"] + ], + "encodeOffsets": [ + [ + [-161118, 1901] + ], + [ + [-163163, 4018] + ] + ] + }, + "properties": { "name": "Kiribati", "childNum": 2 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ƉöƠŰӂ°yƣҝı"], + ["@@ģÖȆĎġƣ"], + ["@@ƑŘÒ ĀƷ"], + ["@@UćƳv“ŞȞË"], + ["@@ÿ½ƁňƮŤÔǭ"], + ["@@IōýfWǘĠï"], + ["@@࢚ೃ]ࡍƚCŹҫ˽̿ӅkÉȗ΁Ŷ˓ÉBȝʽĐÚǓŻƋŵêÖǬ̋ˇţÖȇǕɣ̠ɖrÌńơAŇˤ˔ΖĿÜɞȌdzʜ«ѸʳCiä˜Ȣʢ·òĽĘĪȗɊĥӴϦфߖr˰ˆ"] + ], + "encodeOffsets": [ + [ + [129359, 34021] + ], + [ + [129264, 35196] + ], + [ + [129201, 35565] + ], + [ + [131140, 35642] + ], + [ + [131831, 35634] + ], + [ + [129558, 38643] + ], + [ + [131456, 39551] + ] + ] + }, + "properties": { "name": "Korea", "childNum": 7 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@āYĉǀĔưƎǑÕƃ"], + ["@@٫SȧϨݵĚƌƎÚôŘdžȰϴиĆĠiȎÿvŭŚəƣšȹȉˢ͢ڿ"] + ], + "encodeOffsets": [ + [ + [49434, 30336] + ], + [ + [49606, 29228] + ] + ] + }, + "properties": { "name": "Kuwait", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ϤЋâȓÞD‚€xödRŒŁĉΑ‚ÁȄʻĚ©Ɇ»ƠéϺȾżýȠƣ§û­sљ‘™rcĖU収J‘`ÁlgŲE”ƒ’ñAÃħĩYÉ·çŽŕ•OʉØǓMEe{ŽçXå‡¿ă¯‰sI‡੊ջA…µĵxù̀Ɂ¼ÝÎÿĒȷˆ˓ɚǕÄÕþšÜ£pÝP±ZƛĢƃꑪŽ”ˆfU–ıŽ™ϸʹGû}Ɵéo‰ĪƷ¸·Ȏƙ¶å€¯gřх½ÙÝrÃj™U­Jĥ­“§ď…OóŒƷƧŸAT…­ÁqDÿ]‰j¬Ó¬Çއvƒš{|ɵđ…ós_Ɓ_{[tãþŕxßµŅƋFÕ¬ûĞǩÐƳĕú¸mºCx¼lĊ¤ä°®¸l¼tɆpöYĠ—ð@ňŀȚpĈDÒe˜ȉŊNƄÙ¦Ƴ²ďÊȓʲËƴMȤ`NJ´ȊÛƊʽȦėİŃƢŭȒĉǧoęlƍÆšŠķJß]‹‡E…€…auÁg§‹µë‘ğȳé÷­•‘JygK™`eĀŽÿhę¾ǡƂŸNǓñóӇ³f™óŧĻËQQšÿȷȁ¿eǑĔȢҺMŦñĶEˆȪ҈õ̎pƆQ¾חJīǠĺΠǝǪċŸßÿsXPºN²°ǼÆŠÜÆèzƂB¶ˆIhËJwŽ^ÐƔɒ͆Ǽ¸Č¶kĩœÅQÃZ­pu†[ƌ ĊFƌëpN²¢bPÝĒrʔGƠM¤DZژnªªªŔŠr€RlIæđƸ¨ÈuŠƒ"], + "encodeOffsets": [ + [104579, 22917] + ] + }, + "properties": { "name": "Lao PDR", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ϧ̙ʫPҐ঒ˠ͌΄z¯ƃƦÉäǯʳʝòï͇ñ¤ƕƓŹ"], + "encodeOffsets": [ + [36730, 34235] + ] + }, + "properties": { "name": "Lebanon", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@àūìЭɛίʨƟʲƒĀ§òǑÒijĀWƴǰʓƻՑV˿|ȅ׵Ȫܻ϶१ࡰ࡝ԢǹȀȪ˜͞ʲȘȄÞʾ®°ƂÀÜʠ¨Hð€ê÷ʂĜɜLJŰգÿʍ̄ǗȒžȘΨƢʼn"], + "encodeOffsets": [ + [-8690, 7740] + ] + }, + "properties": { "name": "Liberia", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ʡˏĞտɏБɶࡥ@᳿@᳽Aေ࠽M@нủཤ↏Ⴒࡉϕٛ̓؟Ҽౙ˴ϯڞۑȦʑÅşĘɉخҫؠšɢ͢ʠŕךƘϤġୢе߀ǬĪ͂ƄŒŽņżƀǠďֲƈȆǜ¨ŐnjǾŶƮüƎìDŽöŮÌ~ºCªãİ@ŞLĬP̌ǼŸÁƀsϼȟЊµѾĨཤѯѼ߷ᅀн۶їϢűӸȈͰЌƻܖǐʹо̦ࡠ̚Ҩeݺʥ`ʋƲı۾ǡؾsɮˡ"], + "encodeOffsets": [ + [25755, 32415] + ] + }, + "properties": { "name": "Libya", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@³ĕķŰƒȒZɫ"], + "encodeOffsets": [ + [-62356, 14154] + ] + }, + "properties": { "name": "Saint Lucia", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@|ÙſŊń¯"], + ["@@ɪaϬίѠܣŪצʃϞܟY͙ȋЍލϑϧ~ƟŦȣ֪ũ଒ŠĦ†ɵŪ݌ƜʾY̰˼ą͏ƚÁƎ"] + ], + "encodeOffsets": [ + [ + [81792, 9268] + ], + [ + [81902, 10049] + ] + ] + }, + "properties": { "name": "Sri Lanka", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ɉkɛ̓Ñęʭ€͝˒ƛ˴ŗˆȦĚψӢȊÈŀĀŰàȪðĤl–Z֨ёîȕ‹Ĺ±Ŀŵő™ǿϛǧ"], + "encodeOffsets": [ + [29335, -30849] + ] + }, + "properties": { "name": "Lesotho", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@µPǸˤƁ˳"], + ["@@و~’m¦™xʁßɹÅkƩX™u‰ĵkoϙçåx~Ս×jǠë¶ñ’ĥ”éd›JwšfépÏLµïŖHЊʸɏǀгJ۱ǚDdžƧ̞OǮO ɦIJ˶ńβüڔUþ_Ú³ÜN܊ަđڂŒƖǓԀăްοC›qÛ¡ĉ¥ÛW{ŽqƼWâY`iƥţʹR“]Ùķç“Ň_ėwŗǛTŅMu‘yÃÙ«éiTiŪeÀĥlj‘"] + ], + "encodeOffsets": [ + [ + [21461, 56606] + ], + [ + [26187, 55440] + ] + ] + }, + "properties": { "name": "Lithuania", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ţ̃ƍž½[}¿Q©R}nyZÝ`…„YЃɼš–|¨¦ÐĠîĨYjNEMïz»È·ÊyǸõ"], + "encodeOffsets": [ + [6643, 50994] + ] + }, + "properties": { "name": "Luxembourg", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ӑ́ѱ‚ϫƍޯπӿĄƕǔځőʵÆԯŒÛ‰ÝMƕÔړV̓åÝU˵Ńɥırوքغۚź؞Փ̢ıؠɼ¹Զ’IĄ–ոžƌ­͘õ՜ˍȠÏθàȄÏŞYŤCÎÿɐħ‚oTO«LJ̋Ɩl–[šĥĬşĄ¯P‡¸ĻnÑT±­į"], + "encodeOffsets": [ + [28824, 57491] + ] + }, + "properties": { "name": "Latvia", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@řŰƒ࢖Ɨ˲ϩ̦Տۄ̥Ęl†Ǩþ®_˞@˒Ěڔ˫êFמƵTЋːǓĮ˟ŮåƄ¯ÆĕOċUïǨī±Ǔc“S͇ĔŹZå÷gFGł]f‘FƿË…F¿\\ÕÀĥ…£qÝĉÑġ•Sí½·ėµÏÏNŭǁg›]«ƒ"], + "encodeOffsets": [ + [28890, 46542] + ] + }, + "properties": { "name": "Moldova", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ĥƷǘ͠ñǧ"], + ["@@ʼnkkŀIJÀ„Ɠ"], + ["@@Ͱ՝ʢඇȼչɱәǁƄŃ̂ȓÃƦ߷Ó˟ˉΧzփīο஭₵́గ͋ލϗ̥Ӎãճ˩ʫOছӚ̫אª٪ϧ६tϜǰӜʤƪԖ੎šдǭ̔KˬNjϞ»ݬϊׄ°Тζ˜˄ȊĴïɌšĐƮϪÜȰƽËǰŦǚϼʚƂǷMʆɔ͒Ħ¬\\ʝʞ̺dž‡LJʬȈΆĥź¶ŨĊÈǺĻҔϞļάŏ̲Ū‚ɲ̠˨̑"] + ], + "encodeOffsets": [ + [ + [51135, -17308] + ], + [ + [49503, -13684] + ], + [ + [50728, -12730] + ] + ] + }, + "properties": { "name": "Madagascar", "childNum": 3 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ōAɼìŭé"], + ["@@ƾǸöƩɳ"], + ["@@ĕ¥ŘŘñ"], + ["@@zĥƉdžŐß"], + ["@@ȩȴŘи‡ύŚʝ"], + ["@@Ŀƻ–Ǥêg"], + ["@@Ƶ†ĴɞÂʣ"], + ["@@Ûȣȡàú̚ŜŒèȡ"], + ["@@˹Ɋùɠ͖ɩžȿ"], + ["@@ѫ೑ƥཉâͻϖҕÿʓtʚ̵Ϯӊહؘ܇Ɣѵјҍţ^ʚŇÿÞҎÉ͒ƽ˶̇ނɜ֘ŽόǨϼ”¼ƿ͊ÓɒƘËɶÿUזϲž͆ǜǼŜࣀ҄ɠଔʜϬ†َƁÀČƱxˬfǰƝªɩŻ̩еұi̳ȷȋ˜éȄ|ȟșFÿż|ɕۻĵƟƣɂr˄ɛ̯ȑuʃЗ˝LyſໝBGӁǟDǵBθ͙ɠƅ¨ÝtÇ@¯¸•Ėy®£@‘÷SĉZ÷ÙCƳ@ɵ@ϡ@ʫAȃ̭ĿǩĕƥĦȹqŸ›s]ÛΗඳ౐ϩȚ©·ΦǧևƶØĪǟyËŎƋšȆË˭࣡Пԁ„̓ƸӍ¶ٟ˴ȯȖޭƺঁКْ࣏ٿĔدɚЃцࡵИҗ֖ƿΆΆnjÇƦƹ²ɲʼz̸ȇņǽ̴H˶ūʨ॥ੈۣӺȨĥ^ňρłˣϼȖ]թˈùżȭ³ŤɆʻšǁŔ‘ʲȎɮê«ƅʀǧƪɫOǃ̈́ηźǷʾÀˎӻĔ࢑ࢪݫൎXѺӝƖŕDzǁÒǛĹڅͦŦɇýЫ˨॓ڜջɌχʚŅĦʉȈóŘԉͼʩϼ܃ƎćăʤȎƟɺޗԖޟxѵʖȭÂȪʀƑ̆љɌƳÙˏѕɟ̙װ૏ߜij[ɩʢF؜ʵբե̴œ̦ĭޞÍȱȶԓɄāǴϡʰ—Ěϼ·ɨöCąȜčõȴě^Ǿаݛިإͼ͙ࢢȟƔ‹Ȝˡ̦¹ƜĐĮȑŬɽҊ፺ƴġǧẘষᛠJFϚ๠WʢˉচگЌ߿ͦʓߊ͙ɶǾɸҊ̄ĴۢāּԁϪܕڔٻ¤Э̊ԡผәȖø"] + ], + "encodeOffsets": [ + [ + [-93884, 19126] + ], + [ + [-89026, 20791] + ], + [ + [-109058, 22130] + ], + [ + [-113220, 25604] + ], + [ + [-114746, 25135] + ], + [ + [-113766, 26646] + ], + [ + [-117934, 28744] + ], + [ + [-114895, 29702] + ], + [ + [-115871, 29750] + ], + [ + [-99477, 26585] + ] + ] + }, + "properties": { "name": "Mexico", "childNum": 10 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@аˏƖɇó͹ōI·Źķġkʹ’DžwǵƱŷ¯©wԣeɉàȃ̂ÞԎƆ@¬ǔʂĎȐÑĒĶƠxB@Ɇ²ѼV"], + "encodeOffsets": [ + [22881, 43330] + ] + }, + "properties": { "name": "Macedonia", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@Nᅫħ՛ɹտ˕ǿ_ŃύÒ·ïෛÍ̑ʑؗÏϟŮѱWʏȑޣ̧ŝʍЉºʋɷÝʫʡV­ͅȍćΛȀǟăƫƿĐ˙ɇķª˭ɩɗӵȻŽϝȫ˩ƒԭ\\řMų™©…W¡ŃĥéNķºEd¤úD~¹ˌțƁçtõÐmoS±KÅnĵo—ɏMÇǗ̱ǔɵòˡɝaƆɓƐÏъˡfɤ̜ΡʴHȾȍЖ̏ÀŒǫͫȍѩƶιˁȉʴ̹DžǓƸĨǦAҌȵάǑ­ȇˊĀȰ·˦ǫɄ«̎ƨÁpjºɘԶìòƤŀ WюЋɄɬي£жîAĮl¢Ú°`ŵ–oẀKŸڊűƆijńyȬyȾyȾyȼíظǙฮ̵᨜íظ³к{ȾuȒʴ@ˠ@ˌBی@ᝀ༷᣾ၭjʅϐəØƩௐѹŀσŕʵȤĭܺƀ"], + "encodeOffsets": [ + [4330, 19603] + ] + }, + "properties": { "name": "Mali", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ʼníƀǸĿ"], + "encodeOffsets": [ + [14916, 36714] + ] + }, + "properties": { "name": "Malta", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ñƤƤğı"], + ["@@¾dzDžŬňÈ"], + ["@@sǥÿz·ȌƬŸ"], + ["@@¥ưŦŅÿ©"], + ["@@ÁģÁÊńš"], + ["@@žĽũřC˼Đã"], + ["@@KƏ™ɤ¦ē"], + ["@@ÑHĀĢmĩ"], + ["@@ÅćoŪǴDzĽɓ"], + ["@@⬾ǘ„Ƀ"], + ["@@ǟƸɎC­Ƴ"], + ["@@Țʼn™ąũKĥƚÐÂ"], + ["@@lřčǒâ·"], + ["@@ZăĝɐĄƋ"], + ["@@·ċͅǻõljŸi}]ÏxÌIJgµ‡ƁAçyÛÅÅş¯ǻM±ijÀ£ŠÃRƛĉɗŒxdzΉ§ƃ˛қë̙¼ǕʏÑܹ̹ÏɒȑØб؜ۑȆթƦò¬ÅÏƝȍŋ‡ֵ̭ƏVȑ̲ԭӊե[ֻʀЛǮ٣Υ֧εύ¯ЃŝŽćբǮʼÈԖŔňȫf¼ФąjàĒđۂ̿ی§˧ÆUϖDžЮĠ@ǧǦďࡢŁŨŢҤ̍ƧӔ̉ʲ¶̵ťˏ˫ǣȯɚŖ˕ҽɳ̽ϑó„ž˺ƛɫȟO¥̬șɹ–ԜɗΗǽß̬ಬΙ঎ÚRƧŸqͨĭ͙ȉńdz˾˨ŋƤǞ͗ˮĄŘϩƂĵDZŅǼÆʬȧǙÀƎŽȈYɣͱиŧфŶŬʨőƊUЈOŽĪź‚B¦wnjďĚǦúŴé̞ŀˌŪ¤b ޴łÛȘf͢œȀϚìŸĮƎǮϰųİĪȲ˘ʾpŤàؐ°E|kjČQʄŢƖࠪԶԚˆƀƍŰcD¢ǝɶeÚâƸò¾ʚȆ“ĖjŎ„ŠÚČĚƀ¾Nϴ˥ȤՕżĚǖëôڋ­ԅķĭüǫ˓ɷDž_ŏɹDž“ç͍Żā©ʃƪəťˋծǚԼVƃǻžɽ€ηҰĹöğ˃۫،ćpɧǨɷϨQЌʄºƿ"] + ], + "encodeOffsets": [ + [ + [100539, 10172] + ], + [ + [100567, 11216] + ], + [ + [100920, 12027] + ], + [ + [100881, 12191] + ], + [ + [100420, 12688] + ], + [ + [100776, 12901] + ], + [ + [100675, 13414] + ], + [ + [97081, 16199] + ], + [ + [96745, 16329] + ], + [ + [99917, 16644] + ], + [ + [95940, 19133] + ], + [ + [95964, 20028] + ], + [ + [95736, 20370] + ], + [ + [95243, 20403] + ], + [ + [103567, 22086] + ] + ] + }, + "properties": { "name": "Myanmar", "childNum": 15 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@Ϡʉ֢˯ʑÉTdzɳÑőŸ̽ϥ¾ʭݿ׈ĠæáŖmLjb|z^Ŕ`CƬĚÚ¬ĐÀìMš­¢NTÄąŞV~p`®Sª]„TªP|Crë"], + "encodeOffsets": [ + [19680, 44493] + ] + }, + "properties": { "name": "Montenegro", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ܷ˵ԛӉߧˋēcշkџ€୵ƅݷʛҭȇįƒå×Å¡ËiНÂ@ȀNjʵ£ʉ՛ɊлðΗÆƷ¸ˁʆåpé^͹ZӕÆε®đNџğ቙ȆۏÍѳҲ˫֬ǙðrȨՙÖ৑ԀؓúǫqŽCɁvţ„ϏP҅Šơkǹˢ˸іIÎ£Ô‰ĀØВÙŔ“ÒÏ~ëfǿʀÑȂßþa¶clĹtóšÙŎÍR¡•ái­FǻƬçrγuÛ¢­áZſÌę¦QĈ¥ÈēhēÌˣêäŸȓìõøŊĴ³äRŠUžĸD¬n”„òŠÞǐφ†ǖ‹‚âŠXžroŽUĐzÐ~n”‚Ÿ_â¤ĖØdSƼΆdžԐňºŒž ɘĠDzŒÈV’NØC‚®̜ƠʦCôRƎƎÒ»ǚī°I¶x’ÌÞVîWƌƣ॰¡Ĕ˫ɔǕ¼H˜`Dz@ƴĝΊoҘòȾć֞eȈŵŶVȖƜΐĒȺʎ|ȚœˆÇˆ£”ǡ˸ɸоҌˊɆˈࡺ̥ĨeǐMȪGÊY܂ɕDŽ^ɀʔ˚H«c›Tĝ˜µjȃĐģyŏࡠ͓ˢ¿ø`ânɶmરːۮƛŴ\\ǦVŘ_ȖĭČġĒ­ø—ĪEʆGʈ‡¤ʙψɏĬ¯üeԼXǼÚu֞ċȔ¦ʀÝIJp̈́ŚŎªþ[մèΒĞǠsĞbĞœŠ¢ŒÜÔĖżÞńÊņÆ؊ɢϐ‘ɖăɬǃø‹Ä_ƆSňKàtŌžǪºèCŔǚµŎąܥ਷{ĹJğUćū¿ĩ±üɋʀƿĄræàƀÌðD¾_ŔIŜtĞJŠa¨aIJ}ǺŝÆ]Ζ˰ؘGΓļķÎÃĶŘ‘ÄՊчƾʕƻij›“kïCūnţYƛrǡĆħt­[ɯ×TËSƧXă\\ŷïWˣůǍÐĝC_[ƒ‰čBo{Ћvʝĉ̋ͷ`“X¥—³ѡɿѥËȱWƱ”ƭ{şƿɃŷñáǟÙȋŏÅcҍÄ˽Öğ†ćĀó ʣJãfœcзבѾҫ­œ"], + "encodeOffsets": [ + [114564, 44729] + ] + }, + "properties": { "name": "Mongolia", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@èЦÏō"], + "encodeOffsets": [ + [149250, 15497] + ] + }, + "properties": { "name": "N. Mariana Is.", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@MˎÃȨfɜĥ¼Ž఺ƽӌɇΈɏࣤŢĒࡂࡄÛƊŜАр֦ǷԄÔʈųƎʘӦĭఐÒƞࡏʄס;ڡz•̒Əո᠂ࠒκүبŤŌơˆחʛҁʂЩ;χƮśŸƯº£ÞGÒZdlSʐ§ƚ©ÆU\\ÚƺĮǸȬˆĠ| ŽŠČĐࣈuzgNJƁǦǛɞħŢŅƌȝɈͷǤÇȆEĜƹߎȼЌ®ĐƖZŐEȈHȤQðkºFÊhżŊłCƞéþÑ`½Ī‰֤ŞͦťƚˆƸĂǐʊӒijиȸۢɊƠüЌ̚ŰǓĿēĢÅǍуň֟›ЧĀţť̇ŎCvख़ĶûÍ˗ňİÎʟȏͭ„ũ֕ߵNjÍ®šٓҋ߃ɧݳйʱɇ҇ٵş¨wţ͍ōݿۍʣĤĚĵ§յɸ˩ʊ܁¢طʵÖ˶Öŏž׷ǣۭƞu©ȭлӭၽ۷̷ћɒɛĘƺkƙ™ӟEe҃YŹzñK"], + "encodeOffsets": [ + [32884, -27483] + ] + }, + "properties": { "name": "Mozambique", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ÃćĐŒƀ}Ƈ"], + ["@@ŷډṿL³Ʀ‡S“™k£Bĭгíً¤ɃɫэЌʯǙËƱ™ȽűDž¹oiʭŦ˛Ȱ̵φʯЦ̅ĨĥqγζׅĆٷljЃ ǝ˝ěmƯƒá@ϖÔ˄ζઌƵबʧ̞ǬŴŝȠيȁΦljeɇϞş¥ȝ_þČβพD६BϪBȖ@Ȗ@Ŷ@QŐOĘQŢSޗՠ·˚ĸưŖöƀĔĴà¾hƾx̌ŲNц@΄@Ҝ@Ŗ@ɮ@΄@Ɍ൞@޴@̼@ƾ@Ǡ@@Ī@Ǝ@ȌAȎ@ǖ@̪ἢኑۋ@ˋA˟@ʳ@ǔก̶ᨛǚอîطzȻzȽ´ЩĴŃŲƅ"] + ], + "encodeOffsets": [ + [ + [-16766, 20180] + ], + [ + [-5488, 16674] + ] + ] + }, + "properties": { "name": "Mauritania", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ӓ~Ė–Á"], + "encodeOffsets": [ + [-63640, 17143] + ] + }, + "properties": { "name": "Montserrat", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@˩¶ĈȲȮǎŔȇşɭ"], + "encodeOffsets": [ + [59035, -20976] + ] + }, + "properties": { "name": "Mauritius", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ŏFƕY“YÍȻЋƺߍFěÈȅ͸ǣȞɇņƋĨšǜɝƂǥžȃďࣇ‰ċŸğ{ȫ‡ĭǷÙƹV[ªÅ¨ƙTʏckÑYÝH¹¤ ưƭŜͽψʁЪʜ҂‡טŋƢاţЧՄƕËƷːŃĊʠ̬PѰҌ̔Ɵ’óǐªΠÑɰˆ\\Ĥȸñʲ̴ʤĝƌ_’QĮǻǔtì\\üďĒďžŷeÙǸࠀəĚƦ˚ȣȾёĈҩ¹ʍƔɕĮ« Ínī"], + "encodeOffsets": [ + [35799, -11856] + ] + }, + "properties": { "name": "Malawi", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ßnnˤ²̑"], + ["@@ûˆ²ĖŠŝ"], + ["@@ȡa¸þƪÛ"], + ["@@ćW°ƺþµ¥ī"], + ["@@ÐęƥăćžǞ "], + ["@@ȪÏǎʹӀϡˌҷpྕ̼̑΀ܛ‚˭ŕrŏǰTƙʟIǷĵĻǼՉʺளࡼJ̲ӭ״ä´Ʊ̎ɫഢȋϪŤȮìŏΆ÷ĴǷưEÑЅŎőϊɪĺŇǐ ȒΖ"], + ["@@ЉƖӯ„ջmƳŽȋঃǩQŇŋ‹ɕĊģͣɭšɩˋѹԟcɽǕԭǖÁŐϻOʑĵěʝɧōשԃǁ܏نīʀúŎȢɛР›ܾ˕ǍƌȪӨ¹ȪȢDÌ̤ఎΚ޾ࣨŞ̊Ӹүƾ̘ÿ˚ɾƴäѓƸ‹ųҠȠ„ưƈœːƺDŽŘÏŘæܺନĎų¿ȃ˺̨Đ{ÄəˆƑìƋ¥̉ţįфƚĦDžƱَå͊ČȰǵՆƯ˜ĕŸůʳŗշ…ÙƇ̈́˛[ĻґŇʽþĹơ"], + ["@@½«aŨǚüFŋĿ«"] + ], + "encodeOffsets": [ + [ + [114063, 2474] + ], + [ + [106723, 2798] + ], + [ + [120714, 4287] + ], + [ + [102696, 5422] + ], + [ + [102245, 6621] + ], + [ + [104552, 6393] + ], + [ + [120397, 4271] + ], + [ + [119954, 7341] + ] + ] + }, + "properties": { "name": "Malaysia", "childNum": 8 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ݨƈϪ‹ɦ§Ɏȋ̋yͅșʋ|եν͋ϰስˍJᵥࡃFᙵ@ᲃ@šυĻȏƃÉƙë‹܍¬ܧǂċǒVȜƝŘōĐĻµ·…ù›mŋµŇ‡ŝ폛ؓնͅӤǝ݆Ɵdžʼnઆ˯ۨๆࡗಂʁؚ׭੐ֵި•ɀRфƈnĤ¸ǘ•ĘE’PDŽMՌȬʠËҔ̱ᅌfሼSҺ͹ਨ»Ҫſೠƶࢴǒ"], + "encodeOffsets": [ + [23942, -18064] + ] + }, + "properties": { "name": "Namibia", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@č_@ĈĎç"], + ["@@ņ]eƝŹsŷȼƤ²ný"], + ["@@˟Ǝ‘ÚƂĴőêȰYĒΫ"], + ["@@Ȟ‰ٌХЄл੾ەxțǑ­ʱĶಓ߼ُںğ˶Ťĕ"] + ], + "encodeOffsets": [ + [ + [171566, -23166] + ], + [ + [172044, -21944] + ], + [ + [171419, -21668] + ], + [ + [168144, -20731] + ] + ] + }, + "properties": { "name": "New Caledonia", "childNum": 4 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ǠఉΦӋgȅ͂͗ȓωɕᠵङঃޛଵ¶ȷĎίƭEēϝȅǻĹLJȝ౉ɺЛ“ȷ¥›UӍϫΏVϛðʛŸ̡Țŝ€ƕ^ؙ˱ɅĜщҨīJ̃Đ̅ĜÛ[­mĵáӝqѡɳǙֵʧȵ©۫ڑׂσƋp˙ˇΌźƂķȢґÇӟ΀D˖DzMө̄ǁɦŸɰǿɄ®ΐؘÐ̒ʒොθðώÑ`ń˖ȀɺրĨ՜Mᅬഞ˰൪୨␤ᕨౚ˳ؠһٜ̈́"], + "encodeOffsets": [ + [15339, 23549] + ] + }, + "properties": { "name": "Niger", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ƇoòŎÖĝ"], + ["@@Ɇěؚ˲Ɩ]Şվ͑ϜïΐUӎϬœVȸ¦М”ొɹLjȞٮ̀ƮF˜ϑŎƯĄϹtƓô÷ȸ·Ďŭ¹փ̛ȋ¹gïGك÷ÑljɡƏɥķηŧœÑЇɧř­ĻÍΕqËʼnųȻÓýƧßŗǻ׋ǧȳ•ÕĂŽǡƑÝ¿{ljͭɑ¡hÕȬßẩʊljƻĵAó^ilc oŒėÙƏı­g“o¯ġÅıƛħЯсʁܷǙˑɿƶº̋ձƒħŊȷěǩƚàǝșĻŽˬþ̏ȑƒ­ŖsœʓPļćŻǟ¼͏ʸŝʤÃƸþrę”CŤƴŘƍÓƽŎɎàŇĄǷÇɃ͔ί˔ࠗâɢƞʋÕāŅՇw|ȎdÈl¦k¼kæUńˆôK˞`xdlB„çݨÔ֪ɨˆɾאɸȎœͼŀRÀDŽßƌ‘ʼk”±´ŵǾFĖÂՔÄÎÆc٤ʨȶǚֶѢɴӞrĶâ®nÜ\\ڶǵъҧ"] + ], + "encodeOffsets": [ + [ + [7476, 4525] + ], + [ + [6968, 13423] + ] + ] + }, + "properties": { "name": "Nigeria", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@Ñōǥ§׷ʼɳč֥ȴƇŃྦྷེîàƊĹò¶ɺZ¦`úǺœ˜æ\\ÂJfz«˔OÂX¢tbľXȜgž^ĀŊòĂ¾˜¤Z´íǔķ„PhNLdE²¤¨ЊˢŲɪǖȒǸűĞwݸȲĊĎĸ€ɐ_w‰qÁijÃöÍÛĪÝĤ΃ȋ˿Ż֩²ރĭ¢†ɈƉDZØБñˆ½Ǖľ‰¬Ƶǹ˻Ȏ͏"], + "encodeOffsets": [ + [-85649, 11180] + ] + }, + "properties": { "name": "Nicaragua", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ũVĪ̀į"], + "encodeOffsets": [ + [-173878, -19541] + ] + }, + "properties": { "name": "Niue", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@£ħīɪƐƁ"], + ["@@˗ƭЁŽçŎ݂R"], + ["@@łù́¼ɀ~"], + ["@@Ʃ‡ƪŮ@ĥ"], + ["@@ٷżʜ²ѾĿɧŀƮ\\ȣǚҊоʊՎʖhЄʸѾŚو†͎ƃƑՍ˓ƒŽŹʌëʽʥÜħ܏Ƒɀ̑ËʫɭįdžĿ¯ŻʥrĒ͆ӧłƷdžگé"], + ["@@ŕLͤžɍ©"] + ], + "encodeOffsets": [ + [ + [-69842, 12437] + ], + [ + [4328, 52620] + ], + [ + [4044, 52982] + ], + [ + [5004, 54345] + ], + [ + [4328, 52620] + ], + [ + [5454, 54668] + ] + ] + }, + "properties": { "name": "Netherlands", "childNum": 6, "cp": [5.0752777, 52.358465] } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@Hıōɒņş"], + ["@@ƅCÀĤĆğ"], + ["@@ʣÜɨ¶|ő"], + ["@@ƷhВİlč˅‰"], + ["@@ЭJʀĞǮħ"], + ["@@ů­ȴɂăǓ"], + ["@@ȌŸܱȇÒƒӔĖ"], + ["@@^˛ۉ Ր˲Ɯµ"], + ["@@ӌˆdžȱҙȗ෽DZॾΦÐάӆɒʍح"], + ["@@тù­ʵϳAͽƷɭ¶Ljʔ̠hŤǸ"], + ["@@Dž{ÎŜĸğ"], + ["@@˃Yzńʘ`Mʼn"], + ["@@̒¡ɯǗҥȭջiȀǮ˚\\Ϫϴļƫ"], + ["@@Ȫŝ΁DŽƘ¥"], + ["@@ϥɡǿƌԘƠÎÉ"], + ["@@ʩIÀƼȪƱ"], + ["@@ԥɱЁu̩Ţ௒Ɔ"], + ["@@QȵֱĈýǟחœΟɵĵžЦʞLJǖ୧ͦԵƃԏRϟȉ˗םڳͫࣳǴѽƁލÒۉҮѷ¹@ơϋIы_ȚƟͅбඕǘ͗ӷӻŜғǫտϿɶ̷ࠗӅ¼Ʒ߅ƩÁۣ۟؁άįÂʓƱƅٍ¼ΉÙԯ͹ƧʯʮࡋŭӃ،̳ƣʕ΋µʚҩđ˿گѝİʫŽ̧ƟaéńҭŮȩӤΓى˱§ʇżČšఫۛঋķŃńʋ­ÎƔߟɖŵϜҚĕɞŊɝ£ǭŬÀǜ϶ȼਯ͓ÌͶȘŲʦ«ώƂУœԴЬȌPŸǩЀ̠۽ƓࡍקºϘОˆ͹èůȬіȰͻıŅÈě͸๨ĔɖǃDŜӄĴɑøĆŔɧɧӕľǻŽ޳́ðĕȶ˰¬·ȌDƘࣰù׸è௵ÈĽȊ٠ɎƦÉк¸Ħ¼ҳ»ǼǠદŸĩĞюĊ઻¥ǦǬՌƚѼOѮȵϹˆВƲɱƀǺĒҺOhőҔƒ˘ȝتЇƎժƲǏĀʂĖųžͣŅjŵ݉ɏЧǎ࠾ײߪ˜ĠÎ˱¹njȆ֜Ǡ̊ã΂ȬлŽʃĂҰԼ̀°ȽŦੂǔޓÇþΈؼźʵĦϨǴ઴êࠉÌѪʮՎȏĈƢϋæ²Ǝϗď±ŪˮƐЦqʱĶ׊ƈʮ̇ĝμଌĠ࢏ĚೲԾƄ˂րœʧžӪɎѲ†åָ̛ѪɩԥζǮɆkįͤҔqɨľҖƭԳͰߺ€̨Ģ֚͟sȊࣼдƁŀͨƦԜƃцT؋سലۦÛѽͼĐǎȜ̦¼ʽȚ̌Ũڜĭгʟ̾SáΛ՜Ԭހǻ˞²݈έֱű௫ڠīLjȽʞUŲŨdžŝψ¾"], + ["@@Ңūҩ‡ɣÖɬĞ"], + ["@@ߞ˴Aŕߛǝ"], + ["@@̝ļ˔HŠŃ"], + ["@@μeɌ̉ॸß˭ƃຈȡጇЩŌʊํÿ،϶஥Ұ୊İ"], + ["@@ܮͅ࠵ȘӁτ׊ʕ"], + ["@@ղMີ«ԺĬҊ±"], + ["@@ࢢęƓΏؔȀʀ˽৺ǥ׼¨ٺ̭෱ŋ᠏ၽይվ̵ɰטbȎƐᄨĞijĎᛗŃ·ɎՄmఐ˒ਂ˜үŒˬƈଫDžƒʢ̱ş˝ú§ʳѷť߯ƒ຅״ߪ‰ȩ̒щb̷ŻЃ͠Èɺ̄åҬĔӮěOĒஎœîũਇũٺJגȗӂϢเۓѷצΰ̰Ҕţ"], + ["@@࢙UᅮĠओĉ"], + ["@@ୢǙƊ̒ҶÔĚʋশƤᓂǛ˴Ʌವч෋ǫ࢙ŒƲ၉[؛üϡĐठƂႷXЁƚԎĜ߃Ěபṳ͞঒ȓ"] + ], + "encodeOffsets": [ + [ + [5208, 61755] + ], + [ + [5078, 62551] + ], + [ + [8298, 64858] + ], + [ + [8675, 65196] + ], + [ + [11501, 66423] + ], + [ + [13284, 69504] + ], + [ + [14206, 69904] + ], + [ + [15573, 70598] + ], + [ + [16139, 70207] + ], + [ + [17924, 71267] + ], + [ + [30676, 71472] + ], + [ + [21278, 71772] + ], + [ + [19718, 71749] + ], + [ + [20242, 71902] + ], + [ + [24183, 72243] + ], + [ + [24595, 72261] + ], + [ + [24004, 72516] + ], + [ + [31611, 71459] + ], + [ + [26201, 72850] + ], + [ + [-9168, 72540] + ], + [ + [19681, 76177] + ], + [ + [22127, 80482] + ], + [ + [11521, 80498] + ], + [ + [29745, 80806] + ], + [ + [17190, 81825] + ], + [ + [33307, 82042] + ], + [ + [21400, 82176] + ] + ] + }, + "properties": { "name": "Norway", "childNum": 27 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@R¡IJƃžķJç¥ś³ſy‡Yקmɫǐ˃ĵ׍Ƕdz›µŠõǂáVɵĉčtэɲ¨BĦ[ž¤Ň¦ɁäśÂəĩçfǏ¼ĕR¿i]…ã‘ҳŰmރޡ\\ƫ_ƏîƧĞي£Z—]¡q™OֹЀӥ˄Í`m{a»Nÿ°ĉ´ŽĜg’„ľžĘrÂÐpļCĘÀŰîƄŮƜɪȂzjº‚¸Pǰşà®ƌȴȌ¦Ǵqǂ‰ƪə޼ϛάί̒ĆðuâƒvÁ¢ĵ®Ŀӊ̏¸MǶ´¶M‚UBióƒģ†³øoǖaɤDæµæíæũ‚½”cÎr^۸€æýĢ¿äЈŒĺ¼dÜOzq€£Ƹ­ð‘ĸ÷Ųa˨MȨÒȾ_Łأ"], + "encodeOffsets": [ + [90096, 27786] + ] + }, + "properties": { "name": "Nepal", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@§ÓėØƀC"], + ["@@lë̓ŒDzɨƔiǝ"], + ["@@ďÑǔŗ׿ǁɼ̐cǨƠJDŽƕ"], + ["@@šijʼn¸ð¼"], + ["@@ǡŁuĘĝoƶȫƳûĩäØƺʗzʂĚ͜o"], + ["@@őµƸǪ¥ų"], + ["@@ۦ̖ů̇ǜɺʬsɛȇ˨Śʧ˙\\ȭǘÏࢽਡԇʝĤéǩğƖjĨƩɢ±OǕӁ€mĮƷşɕƔŨǍ߃̱āկūBĪŅ΍էÚƽ̙Ï؛ԡ́Í߭`NjȲ̅GʫǼƝý՗šƺȬɡëÌŸȍÙIŐѠĴǥÈnjĪɍWRÚƪ¼¥ĆʊċØĶǡƖȞ”ÃĴǺŖ²ŋfǀʪƨĺÍ©ƐԎЂ؆İSŘ֐Ȭ΀̼ƀeýØʸ`óêŢ¢ÎËȢʾ–ƕ`DŽʈȢƢ֔ϲɌLjӺтΰʮAǯqyĽʆƱńα"], + ["@@Ǔ¾˜ŞżǛ"], + ["@@ƮútđՌǑƁƬ®ɔҏƹW΀їãҁӞŷðdzƂJç؎ʾɑ˰އঔ̉آςѸŗɥܟʕƝÉѣ͕Ɣϑůř˩ƞıɣПܟࢱ֡ͭŧnjʅM_ǜȗÇѸ֘ü˨ĉƦūƎࣙϊƝdžæưҮƪǘƬǢݜńü˽צŰįǐŌŭŠʱDʋϘǴğQ̦ĿÜ]ïǻńĹǶFğȾʹĥաۊǶȊȿƳ¿¶ǓȦØDŽСҼ˴vãęʲͱ"] + ], + "encodeOffsets": [ + [ + [173239, -53757] + ], + [ + [170211, -51979] + ], + [ + [172181, -47986] + ], + [ + [170987, -46264] + ], + [ + [-180405, -44790] + ], + [ + [178089, -41844] + ], + [ + [177271, -42269] + ], + [ + [179757, -37149] + ], + [ + [177428, -35773] + ] + ] + }, + "properties": { "name": "New Zealand", "childNum": 9 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@åO@ńȲ˾ÈƏȓʡ"], + ["@@ɄёОЩ൲ϵրܙͦŵmʏέ؅Ѝ͕ΟץɝdˆƦÙSʵ́ŭӇĈ։ࠣɛωٟݻŧȉɏhɝǯʁ࠷ƒϩȵѱĥछጊᠾ࠾֐၌ϣמ\\˦˨چÁĺѢĺ³Ÿƕx†ՀǤðÂǷ˘Ȭ"], + ["@@Ź’n̚ñ`˨ʎĩי"] + ], + "encodeOffsets": [ + [ + [60132, 20704] + ], + [ + [57742, 25579] + ], + [ + [57650, 26267] + ] + ] + }, + "properties": { "name": "Oman", "childNum": 3 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@MΥ٫֕ۖߕÄ޽ںՓe˂ȕDƳ¦“Ȟ_šd€[iű˜ĩljǖJ̆Ʒáśī‡É_˧şĕ·ãÑ{­_©ÒǃZ·¹ǡaÙüÕ`™N…ĻÙŇǓ@ˣ̻ġíaé–ÏR¹Ÿ»ÝËΫƅГݽһɷ§¯ƍ̍Ʊƙ·ʼneí˟ý̛ʻįÛIęº¿Ƙȍôƅù§¥āŻŹȅ˟ʣć̵ըɋ†Ǜ£οƐǟ¼iľI´HÄjàHȱȎ̡ÖƟÐőv͛…u‡KŸÚšA}½¯D•gååa§O³Pã„o¬R°e‚ɏ¿DžËʗĹõNç¬Ù¢īDǫMīBËdÇ[ëh‹u‡C¡¦kMg_WuGʧȡFěaĉmıÑ£ēɋŲLJų̟̂řӨϿĖG̬̿͂ljĝ˰£ළřıĻԋȀх¥Ãţྥqjbzêrʤ€ĜSºNdΪbnvŸ|Ɯ‚¼ʄŤĪWÔŒܚƦdƠ²xR^Qǖ Gx›²»Š{RΏZ~҈iͶܹ̂ا࠸ıĸDžǐ͌ğٶǿЎĹࣼöҀėʜŸל^ॖʴĮ߀МϮԼyʈĠƅƌӨʠξ@ɬƙΈʬ‹иɔӲٔɦ̹؀ٞ¯ͮÚːʼnƊվո£̨͗и¢âࡢԨ۸Ŋ"], + "encodeOffsets": [ + [74844, 37750] + ] + }, + "properties": { "name": "Pakistan", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@Ƚĸ’Ŝê|łʏ"], + ["@@¿ƌÞr]ƽ"], + ["@@ēƇʂѵ˽ͿȉŐśЁѩۨŒ~Ūʜ͎Ʌ˵̨ĽċƧĞUųĕɰӓ̴ΝwƯijŇDZƙ׫͍Bŗϔӛսɱȟ¨ƍԼǡɱȣĄȉΔγ¶ÛĮϋVƽÙ[ƧůɢƔĮbŠUŪ½ĘˆÄżĤ¯ØĉÆ·H@͜^jŠX|~`º˜lƂïäЭŊā€ǿŶc³ƇƖąʢnĩƶҐ̟ѢĚװ˔Ҧ͜శ̥תӝ"] + ], + "encodeOffsets": [ + [ + [-83561, 7509] + ], + [ + [-80791, 8473] + ], + [ + [-79231, 8867] + ] + ] + }, + "properties": { "name": "Panama", "childNum": 3 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@Էσ‡ȕˆ‹ŽŗȳÏLŃo{iij{ˆsª™Öë°] {WýƶЃŶħŒgR‡I«°ñĊÅŐƏĆġHŃĵũijũۤĉǖбۼ^ȊŘØ„ͼ˺|^Èty©m­Mݗଢ଼ž„À~ê߸…¦OªFÐbżÄʬĸEƒkĄFݦಧʙͅāګǠУЩՁ]ƗǞɯȽͻǢя̾ǃǃřXƓԓҷk¡ľşVÑ@›@AÙÉĉÛƕ­¦ʋĽǹЯśޙ֎Ǐ͚޹Ӱ੕юୁڒίњͳɠω٪ݺˆδԝ࡮ˏʐÉͬ΍͂đϜϙغӛఈԫڀԯࣈ७ײmƴȞ†¤Ǧϡߺ¬̆پۜƮĞæǁ¦ˡ‹e‰q‰³őv«i¹b¥Jˆ‘ĎEùћ·T‰°”Cø ĄĘ¸^ÚĎ¿IJ±¢}ðRÖZ¼¾^ŋžă²×ÎóÀ{æÁ˜l޾j†²^Môf´ž¤ƨĔŽ˂ʬܐĖÙ͊Ь঴ΚӸΰѦԐŴӎZŽƄwS̤ƑƴÇƈϤіLˆʊgǞü˰űl›t­Â‹Ú…¾»”‘¤¡¢¿êɩ¨ÝŒ•NJ·ÊͺwÄÑǖ©Ƙύʦř–ϓƒ½¤¯؈MȠتŽÄ¼Ä¾¨\\njÑƌġǚlêÊòh¸hɚŕ¶ÁÔYʀő¦¯äƒÌe՛ऻǤíšEÄh–€’J”}¶ÖƗŴģ¨×KŁu£KÙ ġ]ß°u¬½šŁcDžRß]ƥƩܷŻΉȳą‹ĭīśĝùµŏw±yýљƵʡŸăuÍĊ̱"], + "encodeOffsets": [ + [-74892, -6621] + ] + }, + "properties": { "name": "Peru", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@έƽ̀ɚîÛ"], + ["@@ɂŕĭÏΗêʄļ"], + ["@@őYŃȼȎÞɠśȗƣ"], + ["@@ōýbĦĬg"], + ["@@©Û·ôržêfFƻ"], + ["@@ËoKľØč"], + ["@@šUWĀźé"], + ["@@éœķöǢž"], + ["@@ƾ™Ĥ˙Ƒ̙Ȑģþɿo̵ŔŽXίͧ͝Eҗ̩ࡰŕÏʷӕǪȋâУˑ͉ĩЄʯǍ׷̜œƠýӶȆ͸ғΠơSďͳʛʘɅƝ©NJƧ”Љہƫf‘Țˎض֘DzŜɸ͒ɨΒɩ¥͑ͰƲǨ̶˜‹ŚΆɮēÌƄʐWwخ҈λ"], + ["@@ÉÔèȄĊɑħ…"], + ["@@Ѕǁƽrijnj̚ˌƌrȮŏdȩ"], + ["@@ǏǢƠ˒pѳ"], + ["@@Ļ}¸ƺƀÏûë"], + ["@@ģ¡AƶƐŐ©ɣ"], + ["@@ŗIŅɖʯƎƋ˸ÒŜ͔ŀΖƔ͐ɰĜɈ϶ţͿޓWɑƞ˩ǃǫ"], + ["@@`Ѥո઴ƒܽʯɫˣ֭"], + ["@@¸ŏáBjŎ"], + ["@@ýÓŎ̄༾๜èиȺ˺u̡ƈϟˉơƫɡ·ŧ̅ևऽۇ"], + ["@@űč´Ŏþ"], + ["@@̘|ĆƉ[ΧɊБŁıŻƬ˭ȷŖLԨĽƲǻīԦȴlj"], + ["@@ĿMĻưŴlĈǍ"], + ["@@˼g´ŻɜÏȽˇʟƒƓۇ͇Ų৖ƿǰĨ”Ͼɽ"], + ["@@ÿYëɚƦ‰Fǵ"], + ["@@ņ¬òǩʯGĿʖǸŏ"], + ["@@șŪƲŒ¨Ƶ"], + ["@@äǥǺʼn™ԇè̙ƌǁхĄǕǒįǼÞǨң͚ŵΖߐ•"], + ["@@˘ˑJǵӑ϶ˇʓâքЖʝ"], + ["@@ãȽùȎàɢŦ°§ʡ"], + ["@@HñƁʸźȅ"], + ["@@ðŷ·΀˘ɇ"], + ["@@мŸːʧdбū˳Ɓå˃ʖɫքʿȲÀĖʮ"], + ["@@ǚÝġɑƥľîDz"], + ["@@ƭčŗŎƾΐNJǧÁȧ"], + ["@@č̋ÿ͐ǎƒ"], + ["@@شˏnj‚ĞƆIJyħڙ̰ґ͑߃ґɃXɛǷ́ʮӳËŽŜ΍ϐȧÜÈóŶάƜʴʼnƘοǐðnȎиȋSīɍÛɨ̓ƒƃ̜ÙéϿƵļÒȐՙņŭͮӋϺŃkǘЭÉǛȉ˞ԉΖɵăƁNjȽ~ɉǤǟãi͒ʲʰfŸ̛ȤJͯű{ǁ˸Ɨ¶ʹ୼¶ÒˢɻǬÀU౺ȰܶтĜ"], + ["@@ă«IJƘmī"], + ["@@TùſîŬL"] + ], + "encodeOffsets": [ + [ + [123137, 5383] + ], + [ + [124068, 6222] + ], + [ + [125024, 6583] + ], + [ + [125888, 7587] + ], + [ + [119890, 8073] + ], + [ + [120172, 8412] + ], + [ + [127803, 9363] + ], + [ + [126667, 9460] + ], + [ + [129031, 9545] + ], + [ + [129085, 10001] + ], + [ + [127585, 10023] + ], + [ + [128707, 10153] + ], + [ + [122795, 10738] + ], + [ + [125594, 10725] + ], + [ + [126087, 9282] + ], + [ + [126332, 9677] + ], + [ + [126728, 11555] + ], + [ + [120127, 8643] + ], + [ + [122739, 11802] + ], + [ + [127565, 11616] + ], + [ + [127600, 11769] + ], + [ + [125437, 11894] + ], + [ + [122920, 11985] + ], + [ + [122983, 12460] + ], + [ + [125599, 12605] + ], + [ + [128246, 12829] + ], + [ + [126686, 12583] + ], + [ + [125025, 12652] + ], + [ + [126746, 12753] + ], + [ + [126241, 13162] + ], + [ + [123602, 13803] + ], + [ + [124841, 13866] + ], + [ + [127339, 13960] + ], + [ + [124963, 15366] + ], + [ + [124008, 19063] + ], + [ + [124848, 19349] + ], + [ + [124438, 19827] + ] + ] + }, + "properties": { "name": "Philippines", "childNum": 37 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@áŦŔƾ±ˣ"], + "encodeOffsets": [ + [137826, 7560] + ] + }, + "properties": { "name": "Palau", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@Ȍġǧ™ɡĨénj˨ŷ"], + ["@@ƅÁćÞɎ["], + ["@@]ßĉ’ĨŽ"], + ["@@ǺÂÅȧɫĒƷ͐ʰʻ"], + ["@@ɔÑĘȿϩ˜ÔöÑƨü\\"], + ["@@ȡŎĊžĤµtȕ"], + ["@@˒ġ^ŝϝǘĮ¨"], + ["@@dÑijʀĦĘU˅"], + ["@@ɝĪɔoJù"], + ["@@ȵǘ\\Ŕɖij{Ƿ"], + ["@@ȧƧ̿ŢšΎϋ̈́}Ф̬Ƨ̼ѱ̘ȡŔʳ"], + ["@@ƝŀłĮœȭ"], + ["@@ę˔üĆĂǡãǷ"], + ["@@ŕ¸Ħņpƽ"], + ["@@ǜìʐҝЙ̯ɅƆʁÇďǯę̍Zʉً̯˿ۏwɩDzʃٗϔĂǔުĥЈ¼ŌÜņμä·ćȧĢǷ׼ÞΪФ̂Þßֶ˔ă"], + ["@@qó𳥬€ù"], + ["@@AᇴħƔĨͦCᲘ@njྴׯԖġҶ̽ΊiԠѯȺ‰ζοkӣ໒ջȢɏ˜̇؏·ƑħȤҙ޾؍ĶϙǢşŐ̙ԬhÄϹؼDžȿıĨǧࠌȇ͹Ñǜǯ˝ŗʫÞəȌအʄكִ­ˢ˩Ğԇܾࢷɲġƞ̓Ä̯DžЧʠʌНĝí˅zĄǙࣷķƩżşyɦƣ˖r˂ŇɠʍUǗ؁̭ΕƄअ©ƁĒ"], + ["@@ÕÛŷǒÑш͛Ҧ৳وˑøäƔ২֭ࠠܕĬȷƕͻ"], + ["@@ɫBǡƾɠøǞïPLJ"], + ["@@̶ĉșĻևuĠȠΌ\\"], + ["@@ȁèˆIJƺǙ"] + ], + "encodeOffsets": [ + [ + [157221, -11751] + ], + [ + [157984, -11634] + ], + [ + [154521, -10818] + ], + [ + [154707, -10260] + ], + [ + [154142, -9570] + ], + [ + [153954, -9721] + ], + [ + [156295, -9174] + ], + [ + [154734, -8943] + ], + [ + [147033, -8685] + ], + [ + [151579, -5966] + ], + [ + [159701, -6847] + ], + [ + [150709, -5562] + ], + [ + [158359, -5563] + ], + [ + [149524, -4839] + ], + [ + [155562, -4399] + ], + [ + [156335, -3208] + ], + [ + [144360, -9337] + ], + [ + [156637, -4870] + ], + [ + [154048, -2725] + ], + [ + [150598, -2007] + ], + [ + [153360, -1590] + ] + ] + }, + "properties": { "name": "Papua New Guinea", "childNum": 21 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@βছثНВȷ¡ѭºǩδοċÁĀɹıķɕ֥ГˣʗµÉX¯ºʼnX·uĽŢ÷ʷQÅRϟņ͋ǞҹNǯēыÐʱǡʧpdƘ˧ȎʗǕˇĤɩ̲҅ƀŹÁȹŨÚdžʋ«҇ƢĠDž̍œέ˒ǬŴřèɱ™࡛͸UŅñqñEJZĔ؞òy˸{zƱ¼]jzêŗǤŴȾÓƘÃz•Šgž`Ò¦ĈėİɕŘĿĄV°żĀÚâ–þDdDÊŽϒ˘ùsƸ̅ņဌ˸̾ɜ๜ʆμŻ˕¼ʹ̿٤øԖ࿮»ӂS†N¶ÐKêoŽex™œIêcĦ“ò‘ìµ€ǟ"], + "encodeOffsets": [ + [24049, 55235] + ] + }, + "properties": { "name": "Poland", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ū€ɸGŋw"], + ["@@тÁPś̍ɥ਍jÉ̶ĘŔࡼ¯"] + ], + "encodeOffsets": [ + [ + [-66995, 18541] + ], + [ + [-67716, 18888] + ] + ] + }, + "properties": { "name": "Puerto Rico", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ƈȝϛijЕЃ¡ܗ̯ŋۣԃߋ̉ơӗ͢ĻӴϯ˯˅ߕqϥуɝĆɅŕ̇ȲΉɕŸIJ˓ôǾŴџ¢̈́άФň͕ĴȮО£ȨӯȚŗťɵ͞ѸϤऌϐوېDzšȎȥࠀťŠȂȳ݆͊῭͒͠†ǚҨ˾ęLŭɾǫ"], + "encodeOffsets": [ + [133660, 43557] + ] + }, + "properties": { "name": "Dem. Rep. Korea", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@мġ˙ăǩˈĐ"], + ["@@ϼGQÕҙAģŌǔ«"], + ["@@è‘͝GÿĢͶÇ"], + ["@@ǛÖŨ’´ħ"], + ["@@ʻļɒpªū"], + ["@@ũYlĒľ÷"], + ["@@έƣٙĮͳõƸͰÉࡠǴmŋĀΏÏ‹ǬȖøȖ˨́˯ȃ›ĻĎĘҒҌٸŸ՘ÏߒōÆĢƪіǒĨ˙ؾlɎŮѺÜɧˤş׹ѭIJ֓ȇƧŘũáȉţĭΗiҎԗ̃ԉȦɵŰNУϭŽң"] + ], + "encodeOffsets": [ + [ + [-17603, 33658] + ], + [ + [-26264, 38750] + ], + [ + [-28822, 39376] + ], + [ + [-29328, 39450] + ], + [ + [-27725, 39571] + ], + [ + [-31884, 40353] + ], + [ + [-7583, 38072] + ] + ] + }, + "properties": { "name": "Portugal", "childNum": 7, "cp": [-8.7440694, 39.9251454] } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@lÕ\\±„‘„«‚{p¥pljîʵĥڧYʻলŷ˞ƺ¬_˜ïĚñ²_ǖ@ŤwĄđNđňƃâޅjŸº¹`ė@Õx羅ä[üYĨhĊp̜ƊƼõÎÍňۏɑŽۅ‹ĉřdzIţaߝʭɋͥǝȓʑßq¹ŸË…µFåËåµÙCƋúdzHɭțนɾν‘‹IJpÂͬМ”˾ȨɈ͊Ӣɑ˴ଫӘףЀߕȢȳǜ׵ЌΓӎƃƤƙöíºB|sx̾ঘBцѦޘเ̈ޖVވѿj̅"], + "encodeOffsets": [ + [-59555, -20648] + ] + }, + "properties": { "name": "Paraguay", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@đëƒì]~ɼɘ —D_ƫȝ"], + ["@@ÐȠɆŮÛÊ×lÏkkNOdŠÔ…Ⱥ°Ƭ°ĺņØĤkêi`•æ£ÊKjƃķّӏģ"] + ], + "encodeOffsets": [ + [ + [35173, 32044] + ], + [ + [35718, 32121] + ] + ] + }, + "properties": { "name": "Palestine", "childNum": 2 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ŨŸIĿƅŊȥE³ƞɌ–¶Ɨ"], + ["@@°£Ə¢ĠB"], + ["@@ǒŸʳóĢŔ"], + ["@@ËÈրIć"], + ["@@ŧemŎƴG]ğ"] + ], + "encodeOffsets": [ + [ + [-152905, -18114] + ], + [ + [-146883, -17018] + ], + [ + [-142360, -9927] + ], + [ + [-143437, -9652] + ], + [ + [-143434, -9124] + ] + ] + }, + "properties": { "name": "Fr. Polynesia", "childNum": 5 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@÷iíkÏ@³RlÓì©Ģ€¼XŽýіȾӨɒƠʀȿ·ͅľЅƱ͓Ƈ½"], + "encodeOffsets": [ + [52499, 25198] + ] + }, + "properties": { "name": "Qatar", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ĘēŒ¯˲©MÎĦiˢĨƲbƐ£ŚġůΕёï Ǿǡ³ʱধ̧~˳Ǹϫ‚˵ŮܷƇ׿˱ᓝƐ§ĨƈŊ˗ƈaVNjƾºĘÆlæM„^YŠáœŧ²ū}ųīěgƷŀɯšħäƍŠCˆvP¶HàNZjƧøĞƲ…l՗ɴgʀ]R[SeUeE³œÑøȇĘįŒrȒ„ĘƒŬĨ̤Š݆ਈ݄ψƮºìæÂEǤāȄLߚÃʹǧТƾȌlȂˆɈtÖҔ¤zúŘvƪ~̦ėՐۃϪ̥Ƙ˱Ƒ࢕Śů"], + "encodeOffsets": [ + [28890, 46542] + ] + }, + "properties": { "name": "Romania", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ýÎɚbƛï"], + ["@@̢µջ˯˝ɑ}ƱāǦظՄ"], + ["@@ֻ˝ɋ[ٓӕ̊Ϟ՜̶ƂŎķɤjШȒtŭȧ›"], + ["@@ȭ£ѠήӺƾܫӇ"], + ["@@ɻËӆ˂ʉȵ"], + ["@@ǗcǶ̒]˭"], + ["@@ѱɕݬqǢϲĒΖ̸ƧЁ"], + ["@@ȥØǬŊĤeéƻ"], + ["@@ӂறƙ݉ŦϛѢଋݮൣ֑ԠˇÀՃħѿृa˫ֈߋɦ•Ă͡ů˧űѾףŢсڃȷ҄Ǫׄ×ϔǾΨ˅ئɴیÛࢾŠӼПќ½ҌǐѪҞˌƀ͒¡ưϖ̷͔ΪĨ"], + ["@@Ļƣ˹~϶Ŧ"], + ["@@ɠ·С̵ɑǮȕé̂΀̨ĕ"], + ["@@۲ǙдIɐƿşʷGÏðŕԇFࡹ‚ಉÊ̶ϲҞÖ͊ʖ¶O̥ʟʹánj‚ ˢ"], + ["@@IũݥԎѲdyū͸˛"], + ["@@ĵˆǒĚÛš"], + ["@@ƏÿʒьھǦ˜˯ࠗʁ"], + ["@@‹ǣȿƤʌ€"], + ["@@̳ÀűƾӘ±±Nj"], + ["@@ަƻƲǩԄŔƅɔÖӝȒ܆ɫ¿Ïሴҝ{ˑ̺äŸóÙ؍ΠïĠNjʺňhȱʔǤϩǔŪʼϵŮܶ°ѮÛƓĩÄĩÈź֢“ХĦ৲ŏઊӵāāʬž¶ĿϺu­ŧ׫ŏŁȳىǂˆʣڧ_݃ƼҨȍÛƯ̑w͂—ÔƁܹșʆuċƋоǷ˱AƏĨµǕ˅©ɀͷƥ۹̒ۗîϫǬȩϮ߳ŤεġޣOѵҌNJeȂ͚˹Ƿɳǂƹdz̗lęʃπ͑կϙ@ȶ@ȶ@ȴ@ȶ@ȶ@ȴ@ȶ@ȴ@ȶ@ȶ@ȴ@ȶ@ȶ@ȴ@ȶBȶǜ™"], + ["@@՛˛׹įЅÀij϶ѴȎ͊b࢒˙"], + ["@@͓ъ΢Ȟا"], + ["@@ܑìНȤвĬࡢőƣʩ"], + ["@@UǫګIœŪҥvεΦѺŤ୸ѳ"], + ["@@ʐűƛȹٯˈռä"], + ["@@ƫɼ૆δ@қख़Ɠ"], + ["@@ȻëխĚن¸Ťå"], + ["@@ذģԢʣཡȹӫÖ@Ҝ़"], + ["@@ٗt݆˄Ԯů؛LJ"], + ["@@ܱňҀȲ˲̹"], + ["@@ЕĐdŒٚŸʧǁ"], + ["@@Ͽ™ŷâԸ‡"], + ["@@ठěʵͧ׿ɍėԩং۟ঞͅЕŝٕŨĪƕڿŀ࣯W৽njʌǶТŽطǸDDŽఉ¯ΩƢÒ΢֜¸ΆǨɊ˨˱ļڒŀıɢಬǢѠá"], + ["@@Ցµ›˒ߎž־˷ߝá"], + ["@@঄˝Ğ˳༕ä޹Š݃ąતіऎ~"], + ["@@ؙh˨¼Ͳã"], + ["@@ԍßǹˆ܂Lyȱ"], + ["@@ԕʱ੻ɐ͂VǤƼબů"], + ["@@ͲDĿŷ֙Àͨô"], + ["@@ǍƟ˕”¶ƎϠÂNă"], + ["@@൘˜ƄƩሜãƩDZࢣƟધxᅭͰ͐͜ɐǯ"], + ["@@йiȺϦЂȩȁǑ"], + ["@@٤Ǖ֜юসɯࡢ@ඤ˩૷У܋ÔχȄǴ͂ՑkğʣޮΡջűСƞกŧӱİӧʵࡍŠ१Ѻ˼niͶπTūǒծƆײèै̱"], + ["@@țſࠩþÎØॸU"], + ["@@®ƝҿƪђK"], + ["@@فWࡐŒɍĹ"], + ["@@㎅ޡ࣡ʵȌđ۝ʛιêǗǧыZêɫ܍dzUȵϋÎȖƯӟʕ҅Í஡ƀקđҋΒ݊njזϮڞÞүŌޔˤׁƖȎÎ҈ăɰɆٚSϜ˒ۖNJ୮Ȯ֎qɔǮ๨›రŢᧂՐ۬ÝϦȏ঩Ё"], + ["@@࡟O੒ƾȱƭ"], + ["@@̹ŽЊìďĹ"], + ["@@ƇȞđLjըƦǂАC׌ɯٮϸŞ;˾࣬ʟƬĎÔ̪ɀĢΨդʲࢰӮΎƽʶČȘ̹Ķۙɵ˗RνƃșțౝKȓʺÒ˔ɃɖBɒ̛€דкη]̣ȎסϗȞ’΂ɅŠ}̜͏ͤө੘׉ֲӗƊəÍৡΌᔹɗݡйuŻӴÇĀЃֵеݹ৏ƶŃïDZڷȇӟ˥৅ʼōĆǙ¶ő€éDǩ·ŋŸÝsʼnLƅTÃ`÷ŒɫDŽɕĄϏ”؉ɣŅÅŃÉŻÝÓĕ‹Ûş¡ĝ›ĝaǟtΑĝճçý\\ō©̓řıoɿÞęGŝ֝ČÙvǻŽԻWùfĭ°χɐ£ʚʇˆʅHĩF÷˜đ®ċĢȕĮŗ`ǥUų[ۭƜયˏϏ_ŗvÙnį\\࡟͔zŐďĤiȄ—¶SĞdœG¬™ŏ|ƃȿžǃ]܁ɖÉZȩHǏNħfǝĮۛȸɅˇҋˉɷнńʼnÞǭ¤“ȇÚWºo{șȷʍէɭŵUȇŸ֝dȽĈҗñΉpƳĞijJýI—_»G¥ÄǭŒēˬ९¢ƋƤëXÝU“˵w¯J¡ŒŷàѼ¹[ēű͙M̛Ɵ­×D‘MÇUDZ‹ƷûßcŸ¹‹ԍŇ·DžTƻ×cĕá£ŷ`“mÁÏ}ďyVqp‚‰WáǕŒυ…µÏgĿñ‰“ƒ«mķC©Fȷ—ċÿRבВ¤ǶгɷߕĮȱϐ֕ƬͅҊӳȂԃďɣƑࡷXßǼˇX²ȈͣĒʋġqȥοƝᅁᐴିوÁňȞMƶʠ୳̑ǻǏ٥ȹċƅбŎϝƟčɔ΀ˮЛíԛƪƧljɕ͒ƳĵމNþ͘ϕצұţৣȐ٩ȓ§Ʒᖭ̓͛ʃՃšᒁοוÔɃͭҲĉʱÝ}ƃϰ¹΢ȇࢇƒɯʟȄ˵߷͹κʁࣺ˛ƓϵϓƑѣa̭ƞȷɥʏõÏņӍØѱ̴ѧxͭǝαƨѧڱν࢙ήñЍΑъکψ٣@̏ȒܿȟƱƠ̵èҟσػǥƥșוȩŒֹΣÏՉѪɵiґ։ñˣȖǻˡ́•ͣͼƯȒЯDŽÂּăږ޷͵caŵ׆ɥҡɁžǃȱŽܓ̍ƛĄÈųƭʿե׵ԌͳžҡƺˢƷ܋ठ৅ځէЇêӋѾˍàǽĊӗǺG|þȬkpţŒȁKƵŪõfҊÓviSáʼnáþ¡tř\\Ʃ›ȏñĉkŸyōJÅnknV”žœYšƅ¾ÅŠϿŨõ¼Q–șàয¦ĵ´đ¶ɱ”ššş¾Ź®Ӂh»ËųWॿۆ҉Ōˣɼ̗GʓɸӝƮ˂ŜȃèŪ²̈ŽθʅǀːξæžÆĥĔƈʺIӡˈŭȖؠx½ŲܖʘćƎƟFăą́sǮĤҡƛżѦҀȶ݈‚Ʈ͎ĹɰDž¤ŮǼǰ\\ˉƾ΢Ȳy˚ʥIԗʆɍևȒDZōԽЮګǝхǘѳ‘ɻ֦Ȼƈ܋ªýΤɶĐ֍ӄથʿɍ̟¨IrÉӖ¡nqxPȄiȐ}ûÂ÷Òµ´‹xĚĺpž|Vζ÷ʖ]˞ƮĞ–Èb¼Pɇˈȿņǩ`ƟIÇfÒŀXÆW~…tƍ°ȋîĕĄĩƊġäĴE^}př ƻôOn\\°t®ŰŖ@Œg¦åðÁ²GzVpäÈLƢɿĆ͡ƮLJQėR±Yµ‹ãsħeůÉ͔¹ºlżࣷİŗò®İS²mÒ·ļOˆǯǐUê|—\\ƕkLǰP¬SžpɏĨwà“`ıH¢ŜŤŐȤÒɵ̎Ëӈ׼ӲśĠžʢɶõƸƀΰiǘƞࠎ٦ìϛȦշEΧƸʼnʪ׹şཤࡔ఺޺̆ͼ̑˖ৃѶњʊTƮЇȲ€˔ϿǠȈƪǿĔĞ͂͘Đࢋঔޠٶեͦօņǵʤʪ̝̐ÂҪIJΠɶטŔþǠֲćRȶ֬ñϚĨYŦ࡮șýĵإÔǚǏԺQiđЎ¼ˁ̟ҘȮᆤı༼пט˯ड़ʅɊ[]þӒˍӰıͤчƛ͏࣯ѵௗșᥟ˞ׁǸ˻»Ď઩njȁȰࢇÚ๖׿ʛħلĕӢɯîƷ̵̹Ոߥ٢ĕӀ˩ࣞǃѶŖĀŤĝȔ٧öҹ˼÷ǂ̈Ȟᝂԃʦǎ͘PիӒfȼආѴؠͬ࡮ĕΜƑģŃʪfɖő˚ްիˈΠ࠾ܷΜ׸ĿༀËڤՋঋûՃ˿ֈȑ˖ʛԜù঎ƨȀԞ߬ĆáǸͶsᛶ֘͸ƽ˚Ŏͅľ௪͚ׄE׍íŒЇ֝Ɨ৺x͖ýҴ̮Հæ࣪āࢠ˰ݒĮ˂ɣɫʛՄûƜ̖ӾnώɐٙԖبɌ᪂ʿפʋᄚ̽଴ҹ٦՘ԇbҋњ͋ĖҹĠƗŝ͚঺šĊυeÁɚൊԐ૾તłą๚zાȇȧ֭ץү۲гŅဵ࡞УϝʧÓΏਁٓЙƤɹۃƏ˽êʸŦ΁¹ͿƆևaǡ‘Ʋǭ४ȣࡦdҸħ;ðĄȔୀκʂΚ׎̐ͅռǂ˦౺Ȍ̐DټёÃׅԈǫॴh૫ƌÜςˤÎ˿զ൳˨ӣHԗůࠓ¬ɑֈ٠ٴ੍ܮӮʹૐʦǣ֖̮”ӶҳϽ˳¸ԯആǵֈ’ؚȥԸHŢÌзQ̿ɮ๻ʊͳ̞۶ĺހǑϤĮǻŞѯikĶوƼ৔F૸ʓݲ̻आ¢Ўăމ΃ƅ֋¶ǝծҸƊ̧̽̇ͰĽMƸ֌ɨӭҶ͒Ӥ˫džұ¨ҩ˸੡Ȉ^ϰΕʂƆ˴┰Ÿ්Ɣऍϗݔ˥ا̌঴ƄϚǒ࠿ζӍÔͨŒфĽ˨Ž௃ʀΊƞϚő͞ĆΨȠѹ°ÊĐ֒‘ᑜϲ὞˒হE̴DŽዎŽк±ΟǃܖĨWĩᆒ̐ञǵȕȗʼŎsǦࡧ̂ႌšيï֛IJ¾θശѤ୼Ȇႜ˷༙ʍᘪÉШĝࡡΏસTϮǺ᧮§מǧŵċ֪FŠˣ԰ǖʔ̟ʘ|ʏ̑फɘцɑʌ’ОƉڧλᣭ׋}ŷഡЍޭÕӻʑЫm࢛ѿӄº٨ʬ੮†೤˄Ѳ_࡚ɒউZҰɰڜßÚĪΚq˓»ƢşظijհŒ”Ǽǒ£͒ɟɓǁˬħ̧џҌǑϗƠ֞Ғ́ƆໞǔᲄƑΏÕuǽૐɣᑔĉаvřĸҞÕϲȨōЊࢨîࢴʭրĎʢǵЖǴ׬Åଢ̳уǽΘmȞƕۧƛܨćňɫЍñ्̖ŽŁ࣐ҫʤƊɀƩԯÛޚҙٴȑȂÐɞǻ࡜мԲֶ࢈Я࡜ŸܚȈҀT༌УăĀЂĊͩ¸ˆDzҞ„ΰƹٲ ɕ̩ͦÈۢȪࡗw‡ƔϮƔఔúɫʰ੆ƛ⇈ɻcû௫‚ԙĻŀÇᒌĒ׽̍ĮNJЅöCʇ׉]ŀȗݒĦৄѨሪƍѠɥ߿čãĕൎƝхʙܶżԬÿєɛˣ‘غů↨ɒଐ­ૄȽվЗɷσ঴ɝŀяɲĭϡϋ׮̮{ЌՈȜࢊĒᴴǷࢊȔϒϥࡐljʤʙެ’ϪȂ΍ҎϘ˜КᚔʅƊļᐜ©ᬐՕؐɳ@ᾕకϵ٫Īܱ̪ҏ…ג¡ƼřŻÙࡏƤ౗ɵ౎ȄʜǗǭĵઊƬLˋɈŝ̜ïƺŪŸē̎ӿʓ½ʬǯ¤ŪԄͥŇśʾˑϙ̭ໟɺ ƶ˅IŖǹᕩإݟěЯʹɱÀ¨ƁїŧEėງՃɍЁ̱ĐًѼࣷmއƕߡҧŗļǺь੣͗ŋɉέǾΉƍlð͡š͇ȷûЕ्ܕƱ̷β̟ɚȚӔƃϑεXЛŌŷˬ‡âϣʍǁǧlDZƔΈʒ̯ťȕϋƝ̡ӽ͎سЙȣ܏tו̑șͽƴջρĞ۹ˡɯľŘƅĭЫ͛ӕ੍ڭċ‹ȏΊſैɇ̚ЫှÅОάଆܮԄņƨŭ˂ԸhǺȄԞU޼є՘Ԟྀࡲ˄˄ൢϚſĠϞˌǛİͺۦ͠ƬԢąǬÖ࠽ɐࣱŹˁևȪLJƟŇȕŒϳ—ൃރӽīǦ͚ӵÍѦ߀ٍƥ̧ǮळƧԍž͓Ľ଱࠱صʱ֫җťʯےáDŽɓםvϓşˇŲ˫UҗʍлĖțĵٕ‡ǣǨड़Šދ˴ܩÇƸ¾ࡳǶӝŝŞţ΁œ­ƅȄIȥġЁƀرūࠏǂЧʉеȲጥ™ԣʼnຑ޽˿Щ຅܉ࠃۛᎯ৑IǯԀůߒŒßۇξd]̢ѴĐ˝ƷжŹӥͳה¶Ӟ̘”şˍʛǜZȾ˪—ή֎ė͚ìֱּ࠘ʭljɷ˻ÔΔȹĻͻ̒ɏıɏηʧ΋ۍĔ׽ƋƝ°˅࣓̅೫௻Ƚћշ؋ಗૣɣīر܇षӟ܍ɁϙƮͽPJβωǿÔǨٽ֧ϗ~ŀőŭȃ"], + ["@@ǵÕࣇè੾Q"], + ["@@ЅΙ୚˂նɥ׎½ƖˍӑƇ࿏ŵ೽Hෟǹჸା֊ÿźƪЖƭ"], + ["@@ૺű߃O͵Ƃ"], + ["@@ળŴŭǐᓘŁवȁ"], + ["@@ોŒ܂ĨЊų"], + ["@@٧|ՀŒŨƍ"], + ["@@mͯߎʖ௸ɳ͉ϟ՝}ݚ˧ౣƣᝋʼѕک̌७ĀྔԐʜÇ፤ņ"], + ["@@зì˞ÒƚŽ"], + ["@@ûɻথ`ǴɈࢮT"], + ["@@ফzіDŽ࠼œ˥é"], + ["@@Խ†ɏ˰ᆲųܛqχǏ"], + ["@@ԓFÆňҎō"], + ["@@ࡈ¡ȨơࠓŎೃˋƟļࣃ”ᒌȲ"], + ["@@ûǽࡱǕٯÜՅÁµ͖ᓚd"], + ["@@நȩᝣ˫ƖLJਭåƀƂݷ±̅İ੄ȔৈYƂʲࢄĘ"], + ["@@ޭ‰ĴŰࣀUɅď"], + ["@@ࢿ¤ୈˎŹ"], + ["@@ๆįञȱීŃ৷ĢԻŐ֤ȴ"], + ["@@ʶǭէÇࣙɄ۶ĐӖÝ"], + ["@@ٿźᇮ̀ՔɟჁș"], + ["@@˿Ý૓Ěඔ{"], + ["@@૾ʿ܁ȑɰəᵥɛᅋ̌ศζ֛UIJüᏘͰՠTؐǣ"], + ["@@وŅף§õǕႭfȿļጀȢ"], + ["@@ಛÐഔP·ß"], + ["@@ƉĦॆvĂāࢽ™"] + ], + "encodeOffsets": [ + [ + [150236, 44794] + ], + [ + [149717, 45566] + ], + [ + [152166, 46406] + ], + [ + [153281, 46738] + ], + [ + [155651, 48023] + ], + [ + [158526, 50496] + ], + [ + [159664, 51510] + ], + [ + [160159, 51874] + ], + [ + [146188, 55700] + ], + [ + [140471, 56423] + ], + [ + [141252, 56415] + ], + [ + [21746, 56591] + ], + [ + [170650, 56156] + ], + [ + [154205, 60436] + ], + [ + [167563, 60010] + ], + [ + [36676, 66747] + ], + [ + [71702, 68099] + ], + [ + [-184113, 70595] + ], + [ + [51472, 70847] + ], + [ + [165343, 70555] + ], + [ + [173262, 71251] + ], + [ + [61902, 71614] + ], + [ + [54174, 73078] + ], + [ + [183155, 72527] + ], + [ + [141271, 73224] + ], + [ + [-183169, 73295] + ], + [ + [79496, 74027] + ], + [ + [81410, 74468] + ], + [ + [76453, 74623] + ], + [ + [123148, 74844] + ], + [ + [56648, 75068] + ], + [ + [72371, 74850] + ], + [ + [145598, 75670] + ], + [ + [85555, 75850] + ], + [ + [144395, 75776] + ], + [ + [116109, 76187] + ], + [ + [88733, 76781] + ], + [ + [84145, 77230] + ], + [ + [150319, 77180] + ], + [ + [139212, 77220] + ], + [ + [143410, 77649] + ], + [ + [98850, 78109] + ], + [ + [115178, 78460] + ], + [ + [152730, 78500] + ], + [ + [69392, 78068] + ], + [ + [98597, 78876] + ], + [ + [91663, 79042] + ], + [ + [133824, 43318] + ], + [ + [110281, 80007] + ], + [ + [105354, 81157] + ], + [ + [78079, 81563] + ], + [ + [94908, 81598] + ], + [ + [52644, 81863] + ], + [ + [61122, 81875] + ], + [ + [100019, 82083] + ], + [ + [51254, 81997] + ], + [ + [58449, 82280] + ], + [ + [54806, 82110] + ], + [ + [59348, 82047] + ], + [ + [55722, 82405] + ], + [ + [48581, 82795] + ], + [ + [63660, 82775] + ], + [ + [51485, 82870] + ], + [ + [81948, 82789] + ], + [ + [62609, 82894] + ], + [ + [56033, 83063] + ], + [ + [60030, 82987] + ], + [ + [64895, 82637] + ], + [ + [93765, 83089] + ], + [ + [98844, 83022] + ], + [ + [59198, 83504] + ], + [ + [65179, 83568] + ], + [ + [59695, 83677] + ] + ] + }, + "properties": { "name": "Russia", "childNum": 73 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ƒaM¡ŽÝľƅà{ª½¨ĕÂӣkĹuÕǃ¡PµSÁo‘EŧòʓēƿÞ¿̓ƛßʵ]ʍǴóĽĵîcȢɊǤÆЌ͊˨Ⱦ¬Ėœΰͪ¬X¶E’A"], + "encodeOffsets": [ + [31243, -1092] + ] + }, + "properties": { "name": "Rwanda", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ÔôĈț̙ǪºȊńʋ"], + ["@@ݶęȨϧ٬T̮իWƟφș¿¯Ȗɍضѥš`Ǧ̵·ǩĽVѶࡱĞϏÿâãľǍŽk´QÐ@îløjЗÖNďȗɒ­pǩߴ३ᒤʽèèϤם֏။ᠽ࠽ុΑܵΥӽשř˱ʣƑƕNȻʾ৉Œ͙ŀਙđлLjȑƁu֛̫ˉыࣂҙϚѧژЃ֭ࣞі̑ľϝӬƵ˰®Ǭƅ̦ØװԇऴқЊ́Ě̥ѺîŠį˦࿿ᘲϩĄćŘ઎लŷǶżnjŞĮƠĤƒª†׶ňlbÀŒäƘbdhdnjĂİ´сѐ̽̈ūŘɎÄɺÎԲžɜÈӲنZŰİȊƒ˰£˖¡˼±ĠഄڿෘਙߊսൠʼnƦ‚"] + ], + "encodeOffsets": [ + [ + [42996, 17117] + ], + [ + [47649, 29795] + ] + ] + }, + "properties": { "name": "Saudi Arabia", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@²·˦БAÍęÄSĹªܣɺધड़ۃƿƳs›WwW…u…µmi[ЃŃȡő‹‡µƯ•ŸƋIá_ĝh©C[gŻFÇùƧt˟̇޹ŝȕlljpǟ¬ЗͯఽϣőҷڳƱߝƇıǗŒȑȅƒϽȝؕǥœü̘³ˎٵӄ³ܢłԤБL^ǵ֑EɢʝèԷ৏ઑЁËكҠͯdzōʝбƥŕɥڛFƙɰڳXΑʼnةּ½ȦիÝŧ‰ɿѥɇݙ͓ȅԟŴÍʤżȎpМډआÀΨ˥ȠUΈĝàĵӾΣdđĦ͸ҐĹЂζ̦Ɓ͜ʐƠɘτD̸ƞƜܮfRṴ@о࠾NBဲᢴ@ᢲAƘPŞǚð¯©ŷ⯀B"], + "encodeOffsets": [ + [37757, 22525] + ] + }, + "properties": { "name": "Sudan", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@Iޓijď֡Mʁҋݼ͟ƊʃլӅɰګʆ̫ƷƱǥǝȧȟɓɉǟǛǛǗȟȡơơá³Яŀ֋ƣǗƽ˳ʂɁĿͩĞˁʛåŒƝ@ßǰˁŬѣԖǩtȳȁлĨʥƳȡvͻʜ͓϶ɑԪՉ̄ǥ͘®ưࣩږćŊhɂ̇ˢҽżŧ͔̾ȆɈݚʀѦŨŠլÞ¾ȥتֻΒŊڴWƚɯڜEŖɦвƦŎʞͰǴلҟЂÌ৐઒çԸɡʞ֒F]ǶВKŁԣ´ܡٶӃ´ˍû̗Ǧ›"], + "encodeOffsets": [ + [34896, 9689] + ] + }, + "properties": { "name": "S. Sudan", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@¬̍ǬɃ¸˥ÿȯȈˉǒ®ȶΫBҋࡓÃҁNJʼn—kŦի”˯BʅB܅HƵùǑĉɝ«ʯhć]ƥÙĕgŕb¯S£ƞˊìŽĘũʼngДĪøۄFjƘѸÒŖƈݼˏΜƠųŖέ‘םʸˍíçşࢫBǣˊŲŖƣ‰̓ՖƫöĉÝùĔ͜Ɩʮ̺ɮφˆĔ„ânưĜǞ˞ЄŸٸNJ׆ąδεĦr̆ħʰХ̶υ˜ȯņã"], + "encodeOffsets": [ + [-12575, 15165] + ] + }, + "properties": { "name": "Senegal", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ˍKƘĸŶī"], + "encodeOffsets": [ + [106465, 1364] + ] + }, + "properties": { "name": "Singapore", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@Ͳ•´ŻːVѺїʋēڧѸصƠZŀͯ†ސµ"], + "encodeOffsets": [ + [-37993, -55363] + ] + }, + "properties": { "name": "S. Geo. and S. Sandw. Is.", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ùMÚĊ`û"], + "encodeOffsets": [ + [-5828, -16381] + ] + }, + "properties": { "name": "Saint Helena", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@őaϧːӺʭ"], + ["@@ȕÿĥÈȜļĠă"], + ["@@͞Çɦ̳ӱĘȽŶ§ǢljˆVĺΈƵ"], + ["@@NŧŧôˢƸɭ"], + ["@@ȂƇ͔X϶χƛÅ܅ƒDžʘ\\ƆŀŽ"], + ["@@ȪŧʫºÂî"], + ["@@ŷ¤þèĊ‹ÿ"], + ["@@ƛ«yƞǐ|Fŭ"], + ["@@ƩŰƖŨTʗ"], + ["@@ȼʡ«ƿǶƋǬձԃծµΤĽƖƆ¸"], + ["@@ŔɝßėșƔ}ƨɋÁíÐɰʢɮɵ"], + ["@@dzĀÆŬƌÕ]ƕ"], + ["@@ƩǺ¦ŒȼűķǙ"], + ["@@޻дУиɶ¹הΥΌʡŠǩ"], + ["@@ƋP¾ĮĎĽ"], + ["@@ā˷ĐկּӠɇƌɥʚƛ"] + ], + "encodeOffsets": [ + [ + [164431, -12081] + ], + [ + [170121, -11015] + ], + [ + [165597, -10636] + ], + [ + [165425, -9856] + ], + [ + [163585, -9495] + ], + [ + [164013, -9211] + ], + [ + [163010, -9342] + ], + [ + [161903, -8892] + ], + [ + [161167, -8922] + ], + [ + [164608, -8513] + ], + [ + [161550, -8439] + ], + [ + [160944, -8302] + ], + [ + [160449, -8113] + ], + [ + [163717, -8739] + ], + [ + [159580, -7267] + ], + [ + [161267, -7506] + ] + ] + }, + "properties": { "name": "Solomon Is.", "childNum": 16 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ΧŔ˲Èǝ[ū"], + ["@@ÚăIy½śFwh[ĤmĬ̷Ʃʋ‡Åt[†R¤UžG¾žĒĴ†^ÞUE{ţ›ĻǯįÝʽȗȃ͝ʱȩ˛ࠓЖL̰ǽ‹ŹĒė˜ljÎĽǺǀKLjǤʍ«qɢَȝƘǸjĴnjǠĢǔ˦ŊnjʊmȚİ՘HÌer«Œśʐ͵"] + ], + "encodeOffsets": [ + [ + [-12826, 7615] + ], + [ + [-11016, 9611] + ] + ] + }, + "properties": { "name": "Sierra Leone", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@Ȱ›Ԟ͡P]N¹^§†E’rŐÊŀœƈĝĊ`øIУbyÇʕű˹ىĐƤćક͂ʓƪ Ɩт˴uŰǰt"], + "encodeOffsets": [ + [-91507, 14762] + ] + }, + "properties": { "name": "El Salvador", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@įehɼĈɕ"], + "encodeOffsets": [ + [-57617, 47963] + ] + }, + "properties": { "name": "St. Pierre and Miquelon", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ŝ¯©ƊȀƬÀƉ÷Ļ"], + ["@@ýˆìĄRŋ"] + ], + "encodeOffsets": [ + [ + [6820, 124] + ], + [ + [7602, 1606] + ] + ] + }, + "properties": { "name": "São Tomé and Principe", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@tƱ­ăĿƣ_“„ŧcijO³»ĕũɃőıƒA‰MWQ›B‰‚qèŻR¥ •¨U¤uGś—Q×Pć¡·U“¡̃‡ȏΉmuĕsy•o••Q‘Äm®á¶¿ ±K¿O÷ù›ϳČȅĂбۈėѲ˿b΁תǪӈÑŸǦƜ͌|ĸƨğŞľǴȌώؠě˴ƻWnjɘþۄFټƱuʱͱ֓ňځˈΥ"], + "encodeOffsets": [ + [-55331, 3717] + ] + }, + "properties": { "name": "Suriname", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@]“œƃÿƿŷįWƍ̩É˅Ƕ߱sſș͏ů˙Ü۫ȇÉdz߱cԫȤɿ͌òDzƶȰԼ ˞ƪÚNJ֠Ɉˈģʘǖ˨ȍcƗʨoʲǢьÏǰĔҺM͌ǝϠŅÆQ"], + "encodeOffsets": [ + [23080, 50251] + ] + }, + "properties": { "name": "Slovakia", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@õręVǷŷйǭaJàĿoĹ̿ŇÞÕÏãPˆZ‡ćuŋTſ¤ƉkťĀ·âmLiy“ãíµqЭ«ʧöɢÜYòƗĤÁǂùKkZOnN~¾¦ÌšfrEhǯˆkĘƎĈ؄–\\j¶܌ĵ̀ǦࣄÒŖƼdžKȜ̛"], + "encodeOffsets": [ + [16913, 47616] + ] + }, + "properties": { "name": "Slovenia", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ćŸe˚Ԧٶзࢯ"], + ["@@əŇĀʷٗБŞƎűЊͶɰ̨îƨã"], + ["@@ϵ¤Įǒeƥ‘"], + ["@@ࢭÍכłūɝׁǃ˜ūǕ´Ǝljλˇٍ͎̃ԃᅿ׃ʙƳŴčʗęɛĈŌʋǟćΣLȈɳɑ̭úƵɥ’ÇůĸܿΆƑʜ®ݮӁİɥࡋͯԄˆɱʇવϣٛc׬ťɫ·@޷ʫړѭӭ࢛ŒwŇ̑±ƽŧłʯƗŋઋ^ô˲хҖˤuŧƪǜXtƒϱʐࠅ৲eȆƵzďԶ¤øNJ•êŃƠbž̨įʬڰўḔʙҪΌ¶Ƥʖ؋̴Ůӄʭࡌƨʰ԰ͺΊÚَ»ƲƆÁʔΫİۤ؂Â۠߆ƪ»Ƹ࠘ӆɵ̸րЀҔǬӼś͘ӸඖǗ͆вșƠь`ୀџܚŹڈ΍ƹгɼ‹ýʙ̈ˋʍҷϤϓ"] + ], + "encodeOffsets": [ + [ + [16926, 57642] + ], + [ + [19535, 59224] + ], + [ + [19617, 59313] + ], + [ + [24736, 67385] + ] + ] + }, + "properties": { "name": "Sweden", "childNum": 4 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@Ħ»eɛÄȧNˍóz}MwţkdzZŏǹGɯ^Ǐ´ǯłĿǔ¯ļÛNYlR̎ʈζĴŚņô Z„GьȇvX"], + "encodeOffsets": [ + [32715, -26580] + ] + }, + "properties": { "name": "Swaziland", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@DýƅƪÔ¦îő"], + "encodeOffsets": [ + [56874, -4805] + ] + }, + "properties": { "name": "Seychelles", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ӏї̹éĵŋ¶رƅܷǩ˷ᇳࢳ࿥ࢱϑÐӫ̈łǸ›МƔź£Ɩ͈òñðʴʞãǰƥʰƄ΃yÕڔśŶÚɸ®ÊØMƈßvDnjƜzƘɖÀJ|ēǎR¤¨ǐ€Ü~rIJSƒ…˜±æ¥̶SôˆǒÆƾ¨ʈĜӘǫŠDǜ]ȾBŨlƺŠˤòׄɮ঴¸Ƣ¤ĜêˆRœ_jIœŸžķ"], + "encodeOffsets": [ + [43376, 38000] + ] + }, + "properties": { "name": "Syria", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ǂ·LJ…Fþ"], + "encodeOffsets": [ + [-74068, 22376] + ] + }, + "properties": { "name": "Turks and Caicos Is.", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@QṳܭeƝƛC̷ɗσʏƟƂ͛ε̥ĺЁͷҏĒĥΤcĶӽĞßV·˦ȟ¿Χ̭Þ؇̓ó̓އݑαɹ୕ǁÏđȈƱқԡޑ½ܩεȩ˄ƕƵΝƧБbÎɜη٨ڃլ̗Шɢʎஊx͇̌ťʖđϸªؚȟւ͕Ѩǻ²ƱBōư˛ϒčΰµȸޜଶच঄ɖᠶȔΐ͘hȆΥӌǟఊࡊϖ←ႱỨལ"], + "encodeOffsets": [ + [24556, 19965] + ] + }, + "properties": { "name": "Chad", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@řԛӈ͝²ՓǸʽrႫÿIȺוŽßλŃϙ̨ǯͰĞцœNJƾڸˁͼĮüŒҢʗÄĠŠß”Įլϻ͎Ą̈ßĂҾƉ΄"], + "encodeOffsets": [ + [923, 11258] + ] + }, + "properties": { "name": "Togo", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ĥŁt͠ĨåuƷ"], + ["@@ĝƑmŜŌv"], + ["@@ĿOqƞŲƍ"], + ["@@O¹tWƬŠǞǩĹΟĬǟזIT½oƅö̍ȩ҇F‡òĵNťȡҹ •Ų½ÀfȸȂŢĀRRļÌôŨš€´eԈòôȔ MǢƁĚ½ĀgÄōš_hL̸Ǥ’Ġ¶ì¨ŒÂhbv†F†Œˆà^ĸIމƎÅĚk¨pĊđŮȑńơĘįʾȥÜƉ³ȉ_ljNȣÎƳȒʱĐÉƴ±Ú¥MƃȊʼnf—CÏoćĿț@ҘïZğoõsɅk»­·ã¯ĉ£»k[S—±«­ʛǜೡăʑǏ̧ҩǭsƎݝɌȳe˱ǔ͏˷и­ÿףҀ޿\\Äٺ̟Ŗ̯éȵȭČǕŁ̗rѧە།öࢯӦpżחŞƉ†äĮȫɠ࢓ę®·ɖąTwȊăƧɚΉԂ˝ЖJԔԻȑΕǏŸĹňωɩōŒÒІƯFijǸ΅øëŐţȭΡκrȖƕĨšŘȧbăȸƻČuƜəƠíǒĽôƃƓĭ¢ÁҖϰ஠°ЄζώΦ֨ǭ٤ɿМ\\ּӉզ̱ԮUȒ̮ƐˆֶȎŌÐƞ«Æƥñȅժ؛ے×вɑȒ̺ÐÒܺǖʐ̚»ҜìƄ˜Ί¨wǴɘ‹ƜĊÄQ¤‰Ĵ¿"] + ], + "encodeOffsets": [ + [ + [100771, 8092] + ], + [ + [102473, 9817] + ], + [ + [104886, 12277] + ], + [ + [102526, 20805] + ] + ] + }, + "properties": { "name": "Thailand", "childNum": 4 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ĕÃÏÔMh^@Î_ĈW"], + ["@@̟ɝՏȔлƳF}ånj·ly§…ù¬ʩৢÀʢlj֞Ǭ„k\\yW‹CȔ± ũɜؖ“À§ê«ΈƮЀqłZЎ¨~êdƊWJ©{ƗǖɕğĩĘȹȌÉɄĶ҆ǗèܟȌǹȑŹ_T›šċÒьʻr÷E±—‰—ΗćăPuløÌbž[˜ÁX©`ĽtćQƟ­˅šȧȧ࠯˧œŰćʂŲڂ}pÃAćsÏI“b®ɄÝŘѧĬˋ̅ǟŵ]²ķGč¿ç͏œnƏšǏ_ő“ÑÇkó~ĝ]黵¥ƒQí¨ȁƔ£RuK}Ua[]•Y·T­Sʁķó£]©oo£RŧÓġnĻüÙАÔ`ȰҊ،əɘœϢοʟŘʑîÌȾʘƀشíƨʪȖÎÁŤƖ’˻Þը~Ë̴Ŵǚ̚ġׂ͆̌ʿ͉˳ʀƷʲŽ"] + ], + "encodeOffsets": [ + [ + [72361, 40812] + ], + [ + [72662, 41205] + ] + ] + }, + "properties": { "name": "Tajikistan", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@¥GקȌǭˉɃIǵQř™ŕ½ƒÕƯщ‹Ń¯ñ˝LJˑŗ؛ƓƗĥțÝ‰Ĺ¹ƛā͉íǿǬϿ¬ɵǔçSSȼċĠºǶýϞٹKɹ˚ԝʒŹɐСƢүcށʶƇȲم„ƙƙݟ{ЙɯǙʵڇѝചƏɔ̱ŎƯÛầ̰½ŋĸ^Ȯнà¢ǵșɾÏ̂Ǯ՞ǜǵЄKɈƛѐšµŢ̬ŽfǖԝϖʓԊ՝oǍıŽɝˆѕ̙ӤӀ̰ࣄǀ؞̵Ӥ֙Ҙt࢔·ĎòŻю˜ɢѰÈǸʢϐǁ˓ˢ˚†ĦĮٞϣՌĥ—ȧɒƛĿ™\\̟̬ƭڎɈò΀ƵӤय઀ۅҞƷબا̞LՔɏãǛ]ƽAşXġ"], + "encodeOffsets": [ + [68119, 38245] + ] + }, + "properties": { "name": "Turkmenistan", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@΄ŶƋȧȷò"], + ["@@ěʤŞp¤ŮDZU]ĢɌʜǠÔਨĮ̆Ŧˤĝ͋ʓ౏һ˷ȣ"], + ["@@ÇƟӌŜŔ"] + ], + "encodeOffsets": [ + [ + [127014, -9565] + ], + [ + [128070, -9740] + ], + [ + [128662, -8335] + ] + ] + }, + "properties": { "name": "Timor-Leste", "childNum": 3 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ê’ßőǥƀǜ¿"], + ["@@īAĎÚ^×"] + ], + "encodeOffsets": [ + [ + [-179365, -21677] + ], + [ + [-178128, -19086] + ] + ] + }, + "properties": { "name": "Tonga", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ݥÅ΀ǘlˮơĬ؞ĺĭƝl҇"], + "encodeOffsets": [ + [-62476, 10378] + ] + }, + "properties": { "name": "Trinidad and Tobago", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ȡbpŴɮÅ»ď"], + ["@@ŻÑŎŜnÉ"], + ["@@ƇȅĐ֯ſǟŅŽ‹́ƃʛ२ÁȼĭϜׯЄȃјȡİ˽Ҟiؚ̦պ€ȶˆĘèĴÛϜ€״šŶͦ˄qĔतͺŴOƣœĴ˒£ĆΣĴ¥բ˺ÔǕձחĪʍΎɅĮͥίҿӓͯÍȉɌ˟΄TƥȢĦʤˉ¯¹ʪÉCu‡DžOËKɇäıD©}¹ŭËǃõƍëƭû¯¹ƍûŏNjǛ§"] + ], + "encodeOffsets": [ + [ + [11221, 34532] + ], + [ + [11549, 35588] + ], + [ + [10522, 32446] + ] + ] + }, + "properties": { "name": "Tunisia", "childNum": 3 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ʩ@ɀĐªď"], + ["@@N£ʂ͙ŷȥĆ̗ԼïД˱¤«ȕIJṶ̈̄̅›ȾғvϙŶ©ȧΩ͈ǓaɳȄŧ{ů…p½PÁFǡıÛ¡™‰J™ÎNŴa ‰„“hďXƩùƇHӫŠŽ—Ƌ …SėĥƯķągĸ› iL›^‡Qěéơ£঳·ɉõιƷˣñƹ‰ŧkȽAǛ^şCӗǬʇěƽ§ǑÅó‡ğHŝRķE㦙²Ƒ†ıT}qÛ§ǏQ£Ċȉɕ¿yƗũÅ¡ĕuCƇà×Nçͦ͆̊ŝɄտ˯׃ȰࡑՓݳūΕŰ̗֛̐ɠשÄǕԃٍħϹƘɇ֑͠ĆʇƫÆİՋҪĴȦǔࠕ©ŒŲȠŒϻдƀÊRɈ߉ʢŴ̪ȞʱЂĮȥ~ťȒɂƬǗؐżƟƪǼɎډçWĐäΞҴΈҠ²džŕɆRͬĭĎŤ€Ĭowĵ࢜jȁŦƞĆݠŊءƬ†ʄᄚħǠDz܊Έࣚʎ଴½ɌĚۇŗƦƋɖāв¢̖΁̺öʎƯ૆ɓ࢜ƶ۶ũیʦ˦ƌĄĀLjà}šQĒÂҒ±ĎĴpXbPÚNÔM„]†ÑîsŴĩüng}mXy¬Ȓ—"], + ["@@ҐnƸΑܠ˗čȅڅÔ֡ěȭʉУǃӍΟ¨ȪҐʾֽ_ÉĮʘȒAʆʚƎ—ǘɕĬîŶtŽÐ~¨Šdɨvꈘ‚ƶd¨b¨[ưŏ"] + ], + "encodeOffsets": [ + [ + [26594, 41100] + ], + [ + [44476, 42144] + ], + [ + [28135, 42954] + ] + ] + }, + "properties": { "name": "Turkey", "childNum": 3 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ĝ”ʮʌǏ˟"], + ["@@ÜdzûÇʣʀńϚǀϝ"], + ["@@īҍđÚvψLjl"], + ["@@Ḯ႗‰ϝപ৏ΕୃÎɗ֠׉ɏгCɧŢsZǕŗεŮнDŽȿìڵبϵЋ̙ƟûۡɉзȷӑĴǏʉƷāƙ‡ͥŦ֡ŝīŠ_¾ýÒƝêŁDŻʼnÉgũfȡRȉGmĬŸÎĭ¬ƓɖºʎćҪȽђ˙Ȥęƥ߿ɚƏîہɦqĦhËjŧMįĔěŶć ɱIĝ¼ÛÞ½öğʀ˃զÿɎčƔęĺŧĦƍĤõÚijȈ¥ä…ŢuŮVºĘDŽV¬YÔ©ŶǙѢeìDÂà˶A ˆKȔŰϠպ͈͠jƄ}ŎÑPė–õd¹rmfQ¨¤ň£¬dzüǀhv’FÂp¸T OȄvÖlĺWĊÞKͼ§Ė©¾ß|ĽƆÞN¢„bTHŸXΚÊZ^GlG౶@ಀ@"] + ], + "encodeOffsets": [ + [ + [40665, -8168] + ], + [ + [40445, -6322] + ], + [ + [40822, -5023] + ], + [ + [34717, -1026] + ] + ] + }, + "properties": { "name": "Tanzania", "childNum": 4 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@‘BµF«WίͩĕŔȽ«ŠతǼʹRː઺਎ÛȎϓƼİ͢ûǎŸ̰Ëè˂ʜͪĝɂŀ˴ʁǘƾ֌ƤаĿâ´ƢƢȠȢƀ˥®gk³Ēãł“œ“H›—NjP¯”ǍϪַm¿æ̗ZǙAţƫЋˇǝÑƥȿəǽγ‘ধ౿@౷@iF]JÉY͙ÕeáNSG"], + "encodeOffsets": [ + [31243, -1092] + ] + }, + "properties": { "name": "Uganda", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@Ś£ӯǝĮцƛ"], + ["@@֝aؽ̡ȡ¤؛śڿѥɠƤ¥Ɗ͉ɁƢЩκ͓״Řͼ¹Ƴ˟ѭ¹ͯþ͓ʝԯåһ˫ϫƔĖҜ࢟ʲঀҘÏŲƏȑİ؍ûթǖƪŰϟľڲáǼŠ҃vʇӐĨҿ˹^€ĦƇůԙÛӝֻӹŧÞϱřĢƏ¤Ʊaˡħĥj]ol˱ªő°ėĔ¬„œ^DŽh^°mþÐÐʶ¾¸TîĢ–ĊÒrކ¤¿Ħ[ÖEÀ€†ǀ̒E^eHŁhEȠÞ͈ē”Tǔd²žǧĬVðPČq¸“žʱŖĭˠˏǔSЌםƶéEړˬˏę˟@­`ǧýk…Ʃ}ɻȥɇsȁ‡ȋkСƽͳǨߙÄȁKǥĂÁFəŝěƌƽrˡɰķCVƎŸİĀǀŔƄ^”ʸRšø³̰¶Êˤʘ֦Дɖ‚IJĸHðćNJČÂγπ§ǸþĮîGÖ[ðxLŰÖźĢèþத²ࠨŷƮaĸNÌQżŽͦqTāƆĪ֢}Êg¤ï–c”KIJĜàl¨Tˆx¢v”DȴȵۄĄʐǡƶæiªSē¼yĨþìŀôæú¶ŔĀȦHņ°ȒFDŽM̠§ˀɎદŽ֎ӃɵďþΣ܌©ȼƇɼ֥Ѵ’цǗڬǞԾЭDzŎֈȑɎ€ԘʅʦJz˙Ρȱˊƽǯ[ŭǻdž£ĺɯƭ͍݇ѿȵŻѥ"] + ], + "encodeOffsets": [ + [ + [32781, 47313] + ], + [ + [39132, 48222] + ] + ] + }, + "properties": { "name": "Ukraine", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@½ɤ”ĄĴĤ¾öJ̌´Õ˴mxfÈĸʎŒΦ˹Ά͝gŻ\\óŌTȸDzrNžs͒͹腲ˆϖǥ̵̰Ϫǝƈ̃А˫õëăęíéó·{‘g¿@ПƊñ£‰«Ï¿Ɨǩț—ŋ͏ʑ؝ə٫ƂӛĿޝϖօqӏӄŠؘʀʎŸŘƒdžĂàŴH֛ÂYÈjÊGÄyÀlªŀĔˆìŸdžjàŠȄrücƖÚà"], + "encodeOffsets": [ + [-59198, -31599] + ] + }, + "properties": { "name": "Uruguay", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ʥ¸ƕ֮ȔɞWɘՐɿͨЁٷљ"], + ["@@Ľ_ÝžƜO€ō"], + ["@@ǬhʎǍΙŷÑǒǽŮĦðĊđ"], + ["@@т»ŭĉα´ÞĒ"], + ["@@ƐűЋXƍɢʼĮƎȵ"], + ["@@ȣmƱŎǮƴȒGiʋ"], + ["@@ýMǨ¤ĩ•"], + ["@@Ǖƿ˖ͤĿǣ"], + ["@@ș֊`͂Ǻࢋ"], + ["@@b×ɡժɀӑ"], + ["@@dzĠŌ€èş"], + ["@@ǫU͊ČƝõ"], + ["@@ıkƂʏë"], + ["@@¨ÕůJĽŮȆá"], + ["@@ǩĄưZzĝ"], + ["@@˪©ɓ»ÕĦ"], + ["@@ũeź¶„Ьˏãǫ"], + ["@@įŵŦǼuÅ"], + ["@@ÏÃ֬Şઓ΁ۑÓŖǮʲņߖÔ̐Ɗȣƕ"], + ["@@ɉlLjĢÂō"], + ["@@ˍcǶĊĘå"], + ["@@ĕmĪƺSƋ"], + ["@@ȋĦƌĦĽ"], + ["@@ĭ‹pŌþÿ"], + ["@@DŽȝ̝ʪĨƆð÷ŻÅľÓ"], + ["@@úśüķ٦ŕŨåˤúĴXΠ»˰ŏðƃÈ@˾tԲȳ̀ŖǠN˜ÍૼœࣞʴՔȯҊdz҈DZࡪΓӨȫǎãǮ̙Ȍ›ˊHŪΗ̦‚ŬĹĻƫ֢ʣ̲ƝÈɛ̆ౙ©ą̗܋Ӄ̽ɱϞʧɂ@ϸǶϼǶЖŨپIJࣘ͐ɐƈÅԛŠ‘öę̢Ɯ¼Ƃ´ŀ”ɘNܦEٶ@ՒԪ̰ȎΘʮͼǖȠ|ĊJᥬFDŽʄϴgӌՔʐڬٞيNJ‹ĨǷלŔήɛJଗ̴ĽÈίȰGŚ˻ǡŷկĉǽljāIJʣJçȽɻæ¦Țϵӫʛ÷‰ðÇđ{ĨŽȅƁêǵõҭבăȳǺǝηʕʶđˀЅΦÎȩɞŎYŌį|ʅשţ™ưϽȋhɌĹÃijĪŏΓ୵ÿࢿ҅Ĭʮĉǎ˜˭˱͕ʖŇěԣ^Ǣؕ࠭Ƈ©¶ǐՃ̂Đʦ̊ǎ˝ŷƽDžǐҡʮ˅ĉƽŰƑݩੱ“ȸˆҲLJdO͠ljçǵƀBƐȺtǑŐŅ£ƢŦƉČǎŊčĠêļɸ¼ŅˆŌĎïØˋə­æ÷ƭųšŦţŋ½ƐבʃȲR×˞ϙѵʬmćģŸș‹ǞКȕʏYȻȐJڂϵãǽůNԱОҾзȴć–Ƿř|«ĥʭȚЊϟį»ȗȘԳĜӠſƺɵШ`Ϻࣿ΍۸ƹƢ̣˟ƔCŏ횚×˧čƥǶPɫրZ[ɻȖɨĂį]Ǒͱʗˇ˜óŖƏďʡĆѶɏɟɻʓƐĂʼnȘëʎ¤Ă­ßýܙȫĭņ„ǡ̷ȯƫ́sȖ¹ɏͣLλNj̑Еƈ¥ɧѻ̇ŅnOţΟƕɫXƈ÷ėœȇƈĞțΙ˱ ùNjȽìMǥƭþõŹÃ×ͭɢࡑ؎વ½ǵň̷ŹɶF̄ñƫJȞűƮǿזೕÛࠋ̝ԓՁûsƠǐơĔɁ϶̍ŶȱюŊǔǯœvΆȕĥǕǰɯτʸ̨ɧĎÄƽōÉčŘLj࢔ࢗ࢐̋ƬɟÕƁ޻ȑāò@ÚĊëİ˓ȸÔƒŵĵחȜ˦NőòߍŹǺüWŜơġǗǏ›xČƣŇ͑…Ǻ¼ȃ͸Ľ˝٧¤ΓÏɣƯҋǠǥùåřȦģπŦÖ±ųğƸēȘŤ ȏ̯ǙפΕŝƻãÄşčÇǴ׹̀ĘǛƅșƕdž̹ƏҏƂŞ|ćȸɟQ͇ʀȯŗ¨ęƩ‰ޏȆյ­]Ɋ£ʓܳʯȞƐɃAŠǞɿŸŔ˧͕Ϳ߯ЍȊŦοLJĪȀɁɉĭćäÅȏˉ§`é̄ĝ̝ůŤƕų˻ˡňÚƛǪ¥ÍɩĴЙʐѱȕ÷ปӚ̉Ԣ£ЮړټϩܖֻԂۡẴijɷ҉ɵǽ߉͚ͥʔЋࠀঙڰʡˊ๟XEϙᛟIẗসĢǨ፹Ƴ˵٘ԧΪˣlăɰՙĂϱʴܿ¬ƏĞ[ҘǕò—Ǻ͑ɂӿռÐѪӳ̚ĕˮ®Ɍ̀ˏ˃МÒ ڐ¤ܱöŅˋΉȔÇÇúǪڗװōܲѱԂʈࣶϽଔ݈͠Ȃཔ»դ٨ÅȵİԛRz˚Ċơ´ȒȉǠɨĎɥÔwåȥעʉˆ¡΀ؠDZࡄāǐÂĺɋĹţ—°ˉ΁ǼlŧOfâѠφţʳĈˍDžÙ»IJǗǓ˜ÿɖ¡ΎƈȐɳŰĞŒɕƠƢ’aƐ£ĞĽb‰¸ÇŞ୎@෤@Ϊ@Ψ@ܒ@੼@。@。@ @੼@ܒ@Ϊ@ܒ@ȤAN͆ʨÅM¶ɋ"], + ["@@Á¹ÁĜń¡"], + ["@@ƯnÔüƳŜѲÛȡƩ"], + ["@@ѭ_ҼȔdz"], + ["@@Šŋёōɚ͎Ęij"], + ["@@ȉØļ¨ĎĿ"], + ["@@ƑjΚǚɇȃ"], + ["@@Ѿ³ڿƁÚτZ"], + ["@@ŽBŲĬƀ·ųµ"], + ["@@ԱYࠪǎŇĎɢĔļ«Ùțҳč"], + ["@@ˏœ̼ú«ŕ"], + ["@@ԾƉсċυƼˊÚ"], + ["@@िћͲͪʺ´þǼϮPŗƍ"], + ["@@ȲĈŢÅ˃ǧdž«зȃޯŷըȐĶƠǨ«ÊÊ̩ČÌň̪Ķė"], + ["@@ǹa}ĬǎŒǚęů{"], + ["@@VŰŤóŹ»"], + ["@@ŕìƜ¬…ŗ"], + ["@@ĆƑʞūɱÈ௹ˇÁǂ΄ʤ֠Ť˦Ë"], + ["@@đāÔƚ~×"], + ["@@TLJəŚvȨȐƹ"], + ["@@̕ǥ°ǚʈŴ^ŧ"], + ["@@ȴCóǩ؉Զ˨ùȢˍ"], + ["@@[ßƣØǀH"], + ["@@ŎÆÆǏʵ‘Òɔ÷"], + ["@@́ɱñȒδ "], + ["@@ƟRŦĂzē"], + ["@@ǫʁɓǞ˃ȱëɂȆΒ̘ľɬȑfȩ"], + ["@@̨gĚȕоǏΦΏ˵ĨĵķǶTǰɑȘ_õеࢭԪƈÌÙnjիǐςŖʼnĬ̷ÑDzƴ‡nj"], + ["@@ɉĀŐĦɮ•ųƏ"], + ["@@iƓŻ[̹ŲɾΜˀɇŕ"], + ["@@ħ²ǰ‚ćó"], + ["@@ʀ“ƃ£Ļø"], + ["@@Ǜ”ĘȒɲǿƭ¥"], + ["@@ɂǍǯѯȫ§Ę͊ʏ͎ȘĀźñ"], + ["@@̶ՌɅÙ³ʙǬƞ˫˛™еҶԦK"], + ["@@̯ÓöŐ̈́ĉy"], + ["@@̌Տ½уʣʬĈƈϓŤŌǤɉȈ̛ȫUɬ̾ɈДƷ"], + ["@@ЀD­ĹɢŃǑĹѹšɘŹԁijϫƣøû͓ƵȠDzϙźăȇ˫ѴҶǤά̃ŹҶ̔ōɪÄ´ƪʼÙ¡Õ"], + ["@@İɅɢŐ͢ğ_Ǖ̱¡̠›¢ȱՏƼŅȷǿvփѴȺȺƬķ¦Č̪ "], + ["@@φcΖџЁΔ͌׉ԕʹ|τνܼȲNj"], + ["@@ϊ¥āōǗ֓įʏzˣƙϟĀ;ǮǢeÍŚΦ³"], + ["@@ų´Ȭà÷œ"], + ["@@DZüΔńǡǿ"], + ["@@ȿWNJĊ¶ñ"], + ["@@ŌӲΐƊs׹ѧ"], + ["@@;ÍŚͳҳűࠫȴʟǖԌV̢ƒ˺B"], + ["@@ʖѡřëŔʸ”"], + ["@@ŇɭēĸȜŶ"], + ["@@іƃͻ|ΉȪʰġ"], + ["@@ή¯آĂضʳ۴¿›ćԓ•ʽǷţƔࡻ˔ڃÿī̐ʄ¿"], + ["@@@݁@௯@݃@௯@݃@௯@݃@ӫȪ“Ȧ“ÖæЖĭʠŪψVžH@Áµě¡õˈřҨ˭،͓ÔʻèYƊîŶ¬˂ĠȠDĦʶǂj™ŀԴľˮ^ˈƑĜʑɢõʆDžÂÍĤ÷֠̅ɬɽɰɱϜϗĜýŢŋÎÝ¡­·ÅƴŀkՓąȨÔǝ̒ƒۖʗƠƒÂĝˆ[ìƃǙޥ̣ɋɱŽǓ̌ʤƈ͇դĂņفDZǗ˻ơÄ©ż̨΀ʘ ˱ˆʙƮգՖաĮƵЂ҂ÛΙɢ˺œ̩ ƍãʷȒżϒ˧ʇӉȄӳߺśǻΌߧЙƔ˛WũΠǼÜDžqŏƦÛʃٙɨÏƉϐÃŊLJɒ_Ɛűҟǫ޽˴ࠃӬ੏̤ɔƞBɌȎ˽ÆǬȞ`ϋƪࠧʩࠩNJ@Ǹɗŭੳń৛åŔ׹ƺǮˬҵʏճĈȊƢݩàƮèȷðƀ˄ºങȇĩàɈɂӹƅCǥDZwʦŵ͑ƻѪîž÷ϻзۯTŅĜǟ˯ĭŲñƳǡ ljǽ΅G˝ˁȽ¨үģDZÜÆĸРŊ̔Ɍ͹Ĺ͹ŎϨв’ϖޒʨମŭࠓʜԶˢҗȃՕl࠙ˑߓ׷П~̬ʡҩŽIJŏҹ¿ѳЭٔǑgǣ܍ϙ–ŧٕť٩ϕփǩNj̋ງӗřĻɶįȓőñĺǕǓ؝ƩŗƹģǺؓʭݏƓ½ŢȰ~˅ÚҳЕʿñȳǎ™ȿDž•ɉĢWůǡÝ´ʂ̺Ø৬װМĪˈwęęǞŏĆĮΒÅȻǜȦʶ୒ӌȲó^ȶ˸ɒЌȖ͒kȟƢð̺ΖŤʛº‡ƘҤ˄ƔͰ˩ɍࢣɛʿȤàŲ̂m˻ĦɋƇŋœj҃Ƌ‰؁ьȿùωȚݑɃĩʼnڅsΞŴäˆ˱ŠŸϊӽאϬΌ؇ΩĪɻटǁϳĄݑԔ˝”Ҥ̎Фķ­ƭ̼ƤɨƧʸƖСĆː¤ƍÈȵĕवÌȸƮΉ¶LĘʕơʡȞfǜʵT_Ė̠œɧĜϺÈāȘњ̼ξpƚǴǟïMʜΒĦqƺϺ‚˜ĹķğȞøǼ¹֔Ȃ˶ɚʸÛܾĘ˒ɖǫζхƶҸŨÜƪɱƜՇğࢡχͫɸºȓӍƒ੟œএň˳ŪÆǖљȘ٬ňਹŘֹȢහФ٦Yũǀ૆ɨ۔[ɋBŝ̡˴ō๘“ДȪΞýïŪڝÞՃͦƴŤ٪ЧଠŇNJх¶҅ıϫŰŘːຽèӿшᖉن΀ÆƞϮঔEনżဤજljƛࣞŤ݊ʌɂʿ¨Ȁάx׍ĢʹŶ̮üÂʼnૼĤ௄Ң@ĭݠƝӉljƤïڴɎࠆʡ߲Ōذ§ɐÑƓǃՊ»Ƨĝᖨ¤ೂʃཐµՀŵဖĞіéદ͉;E@݃"] + ], + "encodeOffsets": [ + [ + [-159315, 19469] + ], + [ + [-160613, 21272] + ], + [ + [-160242, 21435] + ], + [ + [-160986, 21725] + ], + [ + [-161586, 21972] + ], + [ + [-163197, 22459] + ], + [ + [-82989, 25311] + ], + [ + [-82311, 25746] + ], + [ + [-99502, 26788] + ], + [ + [-82111, 27934] + ], + [ + [-93996, 30209] + ], + [ + [-86945, 30355] + ], + [ + [-91365, 30807] + ], + [ + [-121188, 34187] + ], + [ + [-122924, 34733] + ], + [ + [-122759, 34898] + ], + [ + [-77357, 36086] + ], + [ + [-75912, 40634] + ], + [ + [-74250, 41970] + ], + [ + [-71657, 42256] + ], + [ + [-72202, 42370] + ], + [ + [-72951, 42488] + ], + [ + [-69823, 45397] + ], + [ + [-125331, 48533] + ], + [ + [-125514, 49313] + ], + [ + [-97078, 50179] + ], + [ + [-180517, 53036] + ], + [ + [-182148, 52890] + ], + [ + [-181399, 52958] + ], + [ + [-180831, 53112] + ], + [ + [184042, 53152] + ], + [ + [181674, 53128] + ], + [ + [-177718, 53388] + ], + [ + [-176603, 53527] + ], + [ + [-178869, 53284] + ], + [ + [177893, 53617] + ], + [ + [176960, 54286] + ], + [ + [-171995, 54626] + ], + [ + [-170614, 55195] + ], + [ + [-169821, 55369] + ], + [ + [-169534, 55436] + ], + [ + [-166193, 56164] + ], + [ + [-167399, 56301] + ], + [ + [-163343, 56476] + ], + [ + [-134491, 56402] + ], + [ + [-163709, 56452] + ], + [ + [-136050, 56212] + ], + [ + [-164177, 56666] + ], + [ + [-164541, 56643] + ], + [ + [-136504, 56877] + ], + [ + [-159299, 57161] + ], + [ + [-134122, 56821] + ], + [ + [-136771, 57692] + ], + [ + [-135966, 57598] + ], + [ + [-135283, 57456] + ], + [ + [-157909, 57872] + ], + [ + [-173829, 57995] + ], + [ + [-135932, 57883] + ], + [ + [-137205, 58210] + ], + [ + [-136567, 58372] + ], + [ + [-156679, 58496] + ], + [ + [-138209, 58728] + ], + [ + [-156567, 59212] + ], + [ + [-138987, 59643] + ], + [ + [-137912, 59558] + ], + [ + [-156074, 59761] + ], + [ + [-156145, 59889] + ], + [ + [-164781, 59983] + ], + [ + [-151574, 61507] + ], + [ + [-151281, 61249] + ], + [ + [-170122, 61833] + ], + [ + [-149907, 61901] + ], + [ + [-151202, 61902] + ], + [ + [-176888, 61909] + ], + [ + [-175578, 65168] + ], + [ + [-144386, 70425] + ] + ] + }, + "properties": { "name": "United States", "childNum": 76 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@§QûD«T‚æBb로ÂfE´ÍŰmſ"], + ["@@‚d´fÇè—hiGo࢟ӹҬƝńƧɀÓǂ@Ā{`ZZǦƺt¸ƤŠó´sˆ]ÆđjĭäOĀmÂn¤[b¯LývWŴ|ʜƣЊ“ѹʫǝªYųɏXρʋ͛Ŕˁ_ʱɿƸ͊˴̋ˀׁ̙ͅĢųǙÌ̳է}˼Ýƕ‘ÂţȕÍƧʩسîʗſËȽʒí ŗπɛϡɚɗ҉؋_ȯÓMx«xýI÷œÙQĹ£ĽtŃČȭŒʱoWĢBŠ^ƾäǜՓɐ̝KફبҝƸ੿ۆӣरͿƶɇñڍ‚̫Ʈ[̠ŀšɑƜ˜ȨՋĦٝϤĥĭ˙…˔ˡϏǂǷʡѯDzɡżэčñ࢓¸AᶢᓢҼᏠউࠜݷৼŘਢÝϴƎӺͻʴεʠĨùࠡЪUǰۅਐdƪƗÅȁȴŹʀƒXɈӎҤຘۖ"] + ], + "encodeOffsets": [ + [ + [72916, 40850] + ], + [ + [72650, 43263] + ] + ] + }, + "properties": { "name": "Uzbekistan", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ÿŊň҇Ǜ"], + "encodeOffsets": [ + [-62642, 13474] + ] + }, + "properties": { "name": "St. Vin. and Gren.", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@Ñäźļ®ķŕç"], + ["@@ķǦĈíÅ"], + ["@@ËȳСĂDŽĖƺíưŊ"], + ["@@|S’wÌǷͯΏɷeғˏ˧ĉɏ¸ʩśŧΥЙַ̎]Ɲǔ͑\\DZŖĴɛϖΥƦ࣭ւù—ɋӛȋǑ͵ݱΟ̳ΕéE„žƃŠ͇ǕʋeѻϦ˫খ΃ͺȫ@ҢԺ̍ϖNjզ~ٚ̎ֈOɀ̓ĠԧŏߣƒםۤԛŘ͡ē݅žǛ˴ɝźèٚɳ˺ŋКɗŴʵÅ̠ԄŘמừψ̤ʒЂ՜ǐ՗ʕĸ͉njƩõeŘ˱ѥۻв٣͆Ħƀǀ„̜ω۞tδਤ΄ŖŮʖWǖ́¡ÿɘìDzǖä̼וڮ¡ήɫĒЅƀǑཤŞͪ̿؈ƿɼz֌̠Ϧžџ§þ᎚ĘсǍ҃]Ȓȯ¯ȝdžŨȖΗČČÊ»CƂâG˺˿}ƶƬäڞ҃ȗǥȋү̷E˄ƽцƴՒrŴÉƼȱcµĭ³s}•ĝЗȫǣɷĤǷu𦱼W¶nÖC ]h_H•}÷—³˕ƫΫÕµęnÙ~ÇA½pƝ‘Å›ßãóġ^ǬțǶȥDzȡ"] + ], + "encodeOffsets": [ + [ + [-62461, 9081] + ], + [ + [-62280, 9358] + ], + [ + [-65381, 11399] + ], + [ + [-62199, 5327] + ] + ] + }, + "properties": { "name": "Venezuela", "childNum": 4 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@Ƽ™ʷ£ļþ"], + "encodeOffsets": [ + [-66320, 18222] + ] + }, + "properties": { "name": "U.S. Virgin Is.", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@̥ƙ˼Ǹj"], + ["@@ĹmŸŊ}ě"], + ["@@ǗĽÔƨń©"], + ["@@ҿȉ±ȕǃęЙªÐɟǟǩnœӵϟ̥ࠇɢϵԢұgȑĝx௴ணǒRڔߟМ౫ӝŸ˗j̗ğŶĭėðɉĉrOׅƅŏ«ɋݡσÿƩث˓ɉɚ·ɕȃŖķÏŖi`űʗF˒ƳDžɍϫ̦άэãſչψˠͿTǓ֗ʭ͕ϵ́łŲݲvڮȪ͞ʁǨśȥȮΤļǒƖAǮɨÇúĚ̌ŽĈŁʼÍEȲʯɎI˺žļͤÑ^ɘʊ~њ˚Ʋ™ĨĖ֔Ŋ΂ɯׂǀӠIĨV®išqÄÚކ¾šÒhưµæĕØķĂ·¸ĩƸpŠƠê€~HüϹʺ‹š•IJeV“‡©é’ġƄYƜO²oÞțɜɛǖ˃˔ēȸϹÜ˿Ʉwú¶ĶD†੉ռHˆŠtĄ°ˆÀWæêfz€FǔNʊזPžŖ¶è\\ÊĨĪBđò“„űFkh_ÂI’žĹĕVqb’œÒš®t¨üȟƤŻþÿ‚ϹȽƟêɅ¼ęªȁʼƒÂĊΒĕ®{ÔcQwõÝCáȔϣЌ¤ˆ¼ªƜȮĘіʫ̂˔ƔƳņnj˒ȭǜɔȔąˆIJƬ˄ΊǬӊΡʰ¢Ōĥɚ¨ȨʼnȕɷĨѭʶ¯͊˅΄žǴū"] + ], + "encodeOffsets": [ + [ + [106562, 10641] + ], + [ + [110102, 21429] + ], + [ + [110186, 21727] + ], + [ + [110564, 22025] + ] + ] + }, + "properties": { "name": "Vietnam", "childNum": 4 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ŧéʼnŮ~ŌȴǏ"], + ["@@̇Ì|ȒņZdžʷ"], + ["@@ŞŹ»đ̭ôĪƄƢT"], + ["@@ɟsƖʾš"], + ["@@̯ĜȠŮŐɉ"], + ["@@Τ̓͗ėčʹǓØ¢ǐŖÞƯ"], + ["@@ȥ_ˠƚùŹ"], + ["@@Ä˥ɠȆŀэęř˯§ŃȎÁٜƬƹ"], + ["@@Ż…gĈĄ²àij"], + ["@@ąIJöâPǓ"] + ], + "encodeOffsets": [ + [ + [173560, -20009] + ], + [ + [173399, -19394] + ], + [ + [172489, -17963] + ], + [ + [172490, -17181] + ], + [ + [172336, -16728] + ], + [ + [171431, -16482] + ], + [ + [171942, -15806] + ], + [ + [170748, -15182] + ], + [ + [171607, -14603] + ], + [ + [171509, -14240] + ] + ] + }, + "properties": { "name": "Vanuatu", "childNum": 10 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ϧœœŨϊmŲƕ"], + ["@@ƀȁ¡ijʻZȱɲϐª"] + ], + "encodeOffsets": [ + [ + [-175569, -14383] + ], + [ + [-176469, -13788] + ] + ] + }, + "properties": { "name": "Samoa", "childNum": 2 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@Τv˘ġ͍lj·•͹ǶȀƶȔß"], + ["@@ÇĖþ½"], + ["@@ÿŒÌºtą"], + ["@@ُ̕Ź˱˜ʧݧίဇӳֳӳ֭Cӧ͗ԳǑोŃԳѭΝBԥǫ̷Řūɋӌ¨ΨNjˌŹެãǎǕČŢĀçˠĺ̈́‘˸̬ˊv֜ȒƂмLJਚĒ͚Ŀ৊‹ȼʽƖMʤƒŚ˲ӾתܶΦូΒजጉ"] + ], + "encodeOffsets": [ + [ + [55054, 12941] + ], + [ + [43783, 14034] + ], + [ + [43815, 14307] + ], + [ + [54360, 17048] + ] + ] + }, + "properties": { "name": "Yemen", "childNum": 4 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@ɡŠǘÐÊę"], + ["@@ƾӋÃ౑ӯǶŅóijřʇεH̹ÜM°ĻŀǓǰŁǐ³ɰ]ǺHYŐlǴxŤ~NôyòLźyΤVĠD̏଍ȽΟߙٍ଩࿋౫ફହݫկȧԻnșʣӑ¾ƩǏșIݭƴίõ׵Òʷ·ϧʭੑùё˓؇ƞ‚ĺțŤɡ[áʀɃuȧğƄæІӧݞĪĴƆ“ǜȴīٚܧઢͭ࢔ǭͨʕ͢ʶƒ‚¶nŌ€œ†ü¶¶ļŎďƞŗöέܨǁ܎«ìŒÊƚȐƄφļ@Ţ@ᲄϜ̵̦٥ŷ۝ĊęߤP˜†¨ĆȈØä²łLjɈƜޔ¦žɾ֦ɪƚȬEъʹÚsȊMŚğݐ[ʰĀͦޒĶœČ€ɠ¶°€͒˼ɀ֎ֶޜ”ͮΐՊǴĘðÊĮİÆȠhZBʈ Ȭʎěɨ‹ɂ€̦Uļ‹ú³ɐࣣɈ·", "@@Ɯ˳͞ˑʮÒĚɜ̈́ɊlϜǨšȀŶŒ²ŀŒĺíȖ֧ђ•YģkȩïůßĿÿȉÇχӡȥęŘ˅"] + ], + "encodeOffsets": [ + [ + [38766, -48070] + ], + [ + [32563, -24465], + [27847, -30659] + ] + ] + }, + "properties": { "name": "South Africa", "childNum": 2 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ĐŽĐđ[ûuëǾǓRį`ĞƋ̳ʣòʱģȷ‡[Mįàſ©ΟôǏƠ‘ҋ̓Oѯʟ̫ńĉƸˏƖÌ®Ó᠁ࠑƐշޅ­ӗʓŷҙ̩۟މࢿȭéϑĦ˳“إƪɍȌɥ¨ϩŒݧƇঽ࡚ǵ֢A౞@˒@˒@ڠȘ@൒@ĶZåDŽH²pĜØފcܔͲɑXʋފǤ¼Ή֪ɡڢÙˮ͖Βխ۶ʓŜˋƮõʆϋǀ{̒ŲȄǃjંʋÓmDžΟÎӥҌċȶɘࡢ“ܸǟϢЀτzʦ༔ʖâLJ¾õÜÝĞ»ɰJĊŸð¹lûİēȶƒFÝl‡ۂɥƎíÜǷŸf"], + "encodeOffsets": [ + [33944, -9834] + ] + }, + "properties": { "name": "Zambia", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ǵḀ̄TɁ}ɩŒʍĜȩŽʇŸYA¥ŠßàǍ¾aȄࡗȲ́ЬTҼͯrđ͆ࡓӀȕԌבࠂ`ƨئƩ˴”ϒĥȮêފࣀ̪۠ŸҚӘʔކ®–̑ڢyעͽࡐʃÑƝĮఏʗӥŴƍÓʇǸԃп֥śЏÜƉࡁࡃšđ"], + "encodeOffsets": [ + [32039, -22939] + ] + }, + "properties": { "name": "Zimbabwe", "childNum": 1 } + }, { + "geometry": { + "type": "Polygon", + "coordinates": ["@@ڽը¿ުەߖ٬֖NΦxHޠ—цǒŴ\\ǔéº`Ęfú[ǜ¹~}¢ũŠYĨ†ĀcĖŸÌ›œ£¢áfÁnÛ½˩ƄÇÞŻ~eÖBŒvİ”¤RXĩ̙Ą§’až÷Îŕœ÷ĸȣ¡ıǽûsmQ}«»ď§řjʅõōDđ³Û«ŷ³அɘŅ™ĭ“āuƕɳ`«Ī¢§NÙéžõʠ{ɩɥƤǵšɇ"], + "encodeOffsets": [ + [75785, 34052] + ] + }, + "properties": { "name": "", "childNum": 1 } + }, { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + ["@@͙̄͟ƹիԠύfʛϋӻýģлʫ@˭ƪǕIđŠmɜ\\™cȝ`¥”CƴˁȖƈʊƣǶɪɦʟ|öÜêOž¡¨ĩŽ_¬ƖɴĂxĮ’ņšஆɗŸ´Ü¬Ĕ´ŌCʆöŚiШ®¼P~tnǾü~Ðd¢̀NJŰÜŀÄǬȲ_„́êǁƘ˹Ҏǹҍ†ĽȱǷ´ǡæͅìíƐĵn­ĵ˜§rчɃŝƑŢa¸ȵw"] + ], + "encodeOffsets": [ + [ + [80376, 33312] + ] + ] + }, + "properties": { "name": "", "childNum": 1 } + }], + "UTF8Encoding": true + }); +})); \ No newline at end of file diff --git a/src/components/echarts.vue b/src/components/echarts.vue new file mode 100644 index 0000000..3922199 --- /dev/null +++ b/src/components/echarts.vue @@ -0,0 +1,82 @@ + + \ No newline at end of file diff --git a/src/components/header.vue b/src/components/header.vue new file mode 100644 index 0000000..621bc0c --- /dev/null +++ b/src/components/header.vue @@ -0,0 +1,281 @@ + + + diff --git a/src/components/menu.vue b/src/components/menu.vue new file mode 100644 index 0000000..c0799d8 --- /dev/null +++ b/src/components/menu.vue @@ -0,0 +1,38 @@ + + + \ No newline at end of file diff --git a/src/components/nav.vue b/src/components/nav.vue new file mode 100644 index 0000000..85d0ca1 --- /dev/null +++ b/src/components/nav.vue @@ -0,0 +1,285 @@ + + + diff --git a/src/components/svg/index.js b/src/components/svg/index.js new file mode 100644 index 0000000..e69de29 diff --git a/src/components/svgIcon.vue b/src/components/svgIcon.vue new file mode 100644 index 0000000..cc505c3 --- /dev/null +++ b/src/components/svgIcon.vue @@ -0,0 +1,43 @@ + + + + + diff --git a/src/components/userStatus.vue b/src/components/userStatus.vue new file mode 100644 index 0000000..f17be2a --- /dev/null +++ b/src/components/userStatus.vue @@ -0,0 +1,93 @@ + + + + + diff --git a/src/main.js b/src/main.js new file mode 100644 index 0000000..e92783a --- /dev/null +++ b/src/main.js @@ -0,0 +1,87 @@ +import '@babel/polyfill' + +import Vue from 'vue' +import App from './App.vue' +import router from './router' +import axios from 'axios' + +import dataV from '@jiaminghi/data-view' +Vue.use(dataV) + +import VueAwesomeSwiper from 'vue-awesome-swiper' +Vue.use(VueAwesomeSwiper, /* { default options with global component } */) +import 'swiper/css/swiper.css' + +import ElementUI from 'element-ui' +Vue.use(ElementUI) +import 'element-ui/lib/theme-chalk/index.css' +import 'ant-design-vue/dist/antd.less'; + + +import echarts from 'echarts' + +// import highcharts from 'highcharts' + +import './assets/css/reset.less' +import './assets/css/element.css' +import './assets/css/common.css' +import './assets/css/iconfont/iconfont.css' +import './assets/icons/index' + +// 添加实例方法 +Vue.prototype.$axios = axios +Vue.prototype.$echarts = echarts +Vue.prototype.formatNum = formatNum + +import VueCookies from 'vue-cookies' +Vue.use(VueCookies) + + +// 表格懒加载 自定义指令 +Vue.directive('loadmore', { + bind(el, binding, vnode) { + let selectWrap = el.querySelector(".el-table__body-wrapper"); + selectWrap.addEventListener("scroll", function () { + let sign = 100; + let scrollDistance = + this.scrollHeight - this.scrollTop - this.clientHeight; + if (scrollDistance <= sign) { + binding.value(); + } + }); + }, +}) +// 过滤器 +Vue.filter('formatNum', formatNum) + +// 数字千分位格式化 +function formatNum(strNum) { + if (strNum) { + if (!isNaN(strNum)) { + strNum = String(strNum) + } + if (strNum.length <= 3) { + return strNum; + } + if (!/^(\+|-)?(\d+)(\.\d+)?$/.test(strNum)) { + return strNum; + } + var a = RegExp.$1, b = RegExp.$2, c = RegExp.$3; + var re = new RegExp(); + re.compile("(\\d)(\\d{3})(,|$)"); + while (re.test(b)) { + b = b.replace(re, "$1,$2$3"); + } + return a + "" + b + "" + c; + } else { + return strNum + } + +} + +Vue.config.productionTip = false + +new Vue({ + router, + render: h => h(App), +}).$mount('#app') diff --git a/src/pages/cult/cultCaseIncident.vue b/src/pages/cult/cultCaseIncident.vue new file mode 100644 index 0000000..3f1cab0 --- /dev/null +++ b/src/pages/cult/cultCaseIncident.vue @@ -0,0 +1,484 @@ + + + + + \ No newline at end of file diff --git a/src/pages/cult/cultPerson.vue b/src/pages/cult/cultPerson.vue new file mode 100644 index 0000000..033c04c --- /dev/null +++ b/src/pages/cult/cultPerson.vue @@ -0,0 +1,1486 @@ + + + + + \ No newline at end of file diff --git a/src/pages/cult/education 0715备份.vue b/src/pages/cult/education 0715备份.vue new file mode 100644 index 0000000..f940924 --- /dev/null +++ b/src/pages/cult/education 0715备份.vue @@ -0,0 +1,668 @@ + + + + + \ No newline at end of file diff --git a/src/pages/cult/education.vue b/src/pages/cult/education.vue new file mode 100644 index 0000000..8253817 --- /dev/null +++ b/src/pages/cult/education.vue @@ -0,0 +1,906 @@ + + + + + \ No newline at end of file diff --git a/src/pages/cult/home.vue b/src/pages/cult/home.vue new file mode 100644 index 0000000..7fceccf --- /dev/null +++ b/src/pages/cult/home.vue @@ -0,0 +1,855 @@ + + + + + \ No newline at end of file diff --git a/src/pages/cult/index.vue b/src/pages/cult/index.vue new file mode 100644 index 0000000..c40d001 --- /dev/null +++ b/src/pages/cult/index.vue @@ -0,0 +1,141 @@ + + + + diff --git a/src/pages/cult/struggle.vue b/src/pages/cult/struggle.vue new file mode 100644 index 0000000..95a934f --- /dev/null +++ b/src/pages/cult/struggle.vue @@ -0,0 +1,1327 @@ + + + + + \ No newline at end of file diff --git a/src/pages/demo.vue b/src/pages/demo.vue new file mode 100644 index 0000000..4f3b715 --- /dev/null +++ b/src/pages/demo.vue @@ -0,0 +1,126 @@ + + + + + \ No newline at end of file diff --git a/src/pages/elder/home.vue b/src/pages/elder/home.vue new file mode 100644 index 0000000..764393b --- /dev/null +++ b/src/pages/elder/home.vue @@ -0,0 +1,49 @@ + + + + + diff --git a/src/pages/elder/index.vue b/src/pages/elder/index.vue new file mode 100644 index 0000000..7318ac6 --- /dev/null +++ b/src/pages/elder/index.vue @@ -0,0 +1,91 @@ + + + diff --git a/src/pages/home.vue b/src/pages/home.vue new file mode 100644 index 0000000..14e04f6 --- /dev/null +++ b/src/pages/home.vue @@ -0,0 +1,1369 @@ + + + \ No newline at end of file diff --git a/src/pages/index/home.vue b/src/pages/index/home.vue new file mode 100644 index 0000000..2963a5c --- /dev/null +++ b/src/pages/index/home.vue @@ -0,0 +1,1960 @@ + + + + + diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue new file mode 100644 index 0000000..e000d03 --- /dev/null +++ b/src/pages/index/index.vue @@ -0,0 +1,91 @@ + + + diff --git a/src/pages/index/undefined.vue b/src/pages/index/undefined.vue new file mode 100644 index 0000000..c64f516 --- /dev/null +++ b/src/pages/index/undefined.vue @@ -0,0 +1,29 @@ + + + \ No newline at end of file diff --git a/src/pages/intelligent/commutation.vue b/src/pages/intelligent/commutation.vue new file mode 100644 index 0000000..19271f1 --- /dev/null +++ b/src/pages/intelligent/commutation.vue @@ -0,0 +1,954 @@ + + + + + \ No newline at end of file diff --git a/src/pages/intelligent/court.vue b/src/pages/intelligent/court.vue new file mode 100644 index 0000000..c6d1e7a --- /dev/null +++ b/src/pages/intelligent/court.vue @@ -0,0 +1,1374 @@ + + + + + \ No newline at end of file diff --git a/src/pages/intelligent/criminalSuspect.vue b/src/pages/intelligent/criminalSuspect.vue new file mode 100644 index 0000000..3710ae6 --- /dev/null +++ b/src/pages/intelligent/criminalSuspect.vue @@ -0,0 +1,697 @@ + + + + + \ No newline at end of file diff --git a/src/pages/intelligent/home.vue b/src/pages/intelligent/home.vue new file mode 100644 index 0000000..407bd1d --- /dev/null +++ b/src/pages/intelligent/home.vue @@ -0,0 +1,314 @@ + + + + + + \ No newline at end of file diff --git a/src/pages/intelligent/index.vue b/src/pages/intelligent/index.vue new file mode 100644 index 0000000..0530562 --- /dev/null +++ b/src/pages/intelligent/index.vue @@ -0,0 +1,61 @@ + + + + \ No newline at end of file diff --git a/src/pages/intelligent/judicial.vue b/src/pages/intelligent/judicial.vue new file mode 100644 index 0000000..a6dbc37 --- /dev/null +++ b/src/pages/intelligent/judicial.vue @@ -0,0 +1,698 @@ + + + + + \ No newline at end of file diff --git a/src/pages/intelligent/money.vue b/src/pages/intelligent/money.vue new file mode 100644 index 0000000..5676ad5 --- /dev/null +++ b/src/pages/intelligent/money.vue @@ -0,0 +1,1654 @@ + + + + \ No newline at end of file diff --git a/src/pages/intelligent/procuratorate.vue b/src/pages/intelligent/procuratorate.vue new file mode 100644 index 0000000..47a2428 --- /dev/null +++ b/src/pages/intelligent/procuratorate.vue @@ -0,0 +1,999 @@ + + + + + \ No newline at end of file diff --git a/src/pages/intelligent/publicSecurity.vue b/src/pages/intelligent/publicSecurity.vue new file mode 100644 index 0000000..1c42fb7 --- /dev/null +++ b/src/pages/intelligent/publicSecurity.vue @@ -0,0 +1,951 @@ + + + + + \ No newline at end of file diff --git a/src/pages/intelligent/publicSecurityDetail1.vue b/src/pages/intelligent/publicSecurityDetail1.vue new file mode 100644 index 0000000..fd9851d --- /dev/null +++ b/src/pages/intelligent/publicSecurityDetail1.vue @@ -0,0 +1,248 @@ + + + \ No newline at end of file diff --git a/src/pages/intelligent/publicSecurityDetail2.vue b/src/pages/intelligent/publicSecurityDetail2.vue new file mode 100644 index 0000000..05e2727 --- /dev/null +++ b/src/pages/intelligent/publicSecurityDetail2.vue @@ -0,0 +1,265 @@ + + + \ No newline at end of file diff --git a/src/pages/marketing/home.vue b/src/pages/marketing/home.vue new file mode 100644 index 0000000..794b5b3 --- /dev/null +++ b/src/pages/marketing/home.vue @@ -0,0 +1,693 @@ + + + + + diff --git a/src/pages/marketing/index.vue b/src/pages/marketing/index.vue new file mode 100644 index 0000000..56cc841 --- /dev/null +++ b/src/pages/marketing/index.vue @@ -0,0 +1,91 @@ + + + diff --git a/src/pages/office/budget.vue b/src/pages/office/budget.vue new file mode 100644 index 0000000..d577c8d --- /dev/null +++ b/src/pages/office/budget.vue @@ -0,0 +1,346 @@ + + + \ No newline at end of file diff --git a/src/pages/office/home.vue b/src/pages/office/home.vue new file mode 100644 index 0000000..63063a3 --- /dev/null +++ b/src/pages/office/home.vue @@ -0,0 +1,722 @@ + + + \ No newline at end of file diff --git a/src/pages/office/index.vue b/src/pages/office/index.vue new file mode 100644 index 0000000..c582f1a --- /dev/null +++ b/src/pages/office/index.vue @@ -0,0 +1,57 @@ + + + + \ No newline at end of file diff --git a/src/pages/office/receive.vue b/src/pages/office/receive.vue new file mode 100644 index 0000000..60be73c --- /dev/null +++ b/src/pages/office/receive.vue @@ -0,0 +1,717 @@ + + + \ No newline at end of file diff --git a/src/pages/office/supplies.vue b/src/pages/office/supplies.vue new file mode 100644 index 0000000..193f73b --- /dev/null +++ b/src/pages/office/supplies.vue @@ -0,0 +1,512 @@ + + + \ No newline at end of file diff --git a/src/pages/office/vehicle.vue b/src/pages/office/vehicle.vue new file mode 100644 index 0000000..0a50f70 --- /dev/null +++ b/src/pages/office/vehicle.vue @@ -0,0 +1,855 @@ + + + \ No newline at end of file diff --git a/src/pages/politicalAndLaw/faguan.vue b/src/pages/politicalAndLaw/faguan.vue new file mode 100644 index 0000000..8d65ef4 --- /dev/null +++ b/src/pages/politicalAndLaw/faguan.vue @@ -0,0 +1,46 @@ + + + + + \ No newline at end of file diff --git a/src/pages/politicalAndLaw/faguan_com/faguan_detail.vue b/src/pages/politicalAndLaw/faguan_com/faguan_detail.vue new file mode 100644 index 0000000..1ae7d2b --- /dev/null +++ b/src/pages/politicalAndLaw/faguan_com/faguan_detail.vue @@ -0,0 +1,455 @@ + + + + + \ No newline at end of file diff --git a/src/pages/politicalAndLaw/faguan_com/faguan_search.vue b/src/pages/politicalAndLaw/faguan_com/faguan_search.vue new file mode 100644 index 0000000..d988e7f --- /dev/null +++ b/src/pages/politicalAndLaw/faguan_com/faguan_search.vue @@ -0,0 +1,302 @@ + + + + + + \ No newline at end of file diff --git a/src/pages/politicalAndLaw/faguan_com/img/photo.jpg b/src/pages/politicalAndLaw/faguan_com/img/photo.jpg new file mode 100644 index 0000000..1058e84 Binary files /dev/null and b/src/pages/politicalAndLaw/faguan_com/img/photo.jpg differ diff --git a/src/pages/politicalAndLaw/faguan_com/yuanefaguan.vue b/src/pages/politicalAndLaw/faguan_com/yuanefaguan.vue new file mode 100644 index 0000000..02543d4 --- /dev/null +++ b/src/pages/politicalAndLaw/faguan_com/yuanefaguan.vue @@ -0,0 +1,888 @@ + + + \ No newline at end of file diff --git a/src/pages/politicalAndLaw/fayuan.vue b/src/pages/politicalAndLaw/fayuan.vue new file mode 100644 index 0000000..8273c96 --- /dev/null +++ b/src/pages/politicalAndLaw/fayuan.vue @@ -0,0 +1,1082 @@ + + + + + \ No newline at end of file diff --git a/src/pages/politicalAndLaw/gongan.vue b/src/pages/politicalAndLaw/gongan.vue new file mode 100644 index 0000000..683d00d --- /dev/null +++ b/src/pages/politicalAndLaw/gongan.vue @@ -0,0 +1,1387 @@ + + + + + \ No newline at end of file diff --git a/src/pages/politicalAndLaw/home.vue b/src/pages/politicalAndLaw/home.vue new file mode 100644 index 0000000..efc17c9 --- /dev/null +++ b/src/pages/politicalAndLaw/home.vue @@ -0,0 +1,845 @@ + + + \ No newline at end of file diff --git a/src/pages/politicalAndLaw/index.vue b/src/pages/politicalAndLaw/index.vue new file mode 100644 index 0000000..ce0055b --- /dev/null +++ b/src/pages/politicalAndLaw/index.vue @@ -0,0 +1,75 @@ + + + + \ No newline at end of file diff --git a/src/pages/politicalAndLaw/inquisitor.vue b/src/pages/politicalAndLaw/inquisitor.vue new file mode 100644 index 0000000..2d27a5a --- /dev/null +++ b/src/pages/politicalAndLaw/inquisitor.vue @@ -0,0 +1,800 @@ + + + \ No newline at end of file diff --git a/src/pages/politicalAndLaw/inquisitorDetail.vue b/src/pages/politicalAndLaw/inquisitorDetail.vue new file mode 100644 index 0000000..9ec7541 --- /dev/null +++ b/src/pages/politicalAndLaw/inquisitorDetail.vue @@ -0,0 +1,447 @@ + + + \ No newline at end of file diff --git a/src/pages/politicalAndLaw/inquisitorSearch.vue b/src/pages/politicalAndLaw/inquisitorSearch.vue new file mode 100644 index 0000000..c381428 --- /dev/null +++ b/src/pages/politicalAndLaw/inquisitorSearch.vue @@ -0,0 +1,260 @@ + + + \ No newline at end of file diff --git a/src/pages/politicalAndLaw/jianchaguan.vue b/src/pages/politicalAndLaw/jianchaguan.vue new file mode 100644 index 0000000..dd7092b --- /dev/null +++ b/src/pages/politicalAndLaw/jianchaguan.vue @@ -0,0 +1,13 @@ + + + + + \ No newline at end of file diff --git a/src/pages/politicalAndLaw/jianchayuan.vue b/src/pages/politicalAndLaw/jianchayuan.vue new file mode 100644 index 0000000..22db546 --- /dev/null +++ b/src/pages/politicalAndLaw/jianchayuan.vue @@ -0,0 +1,1359 @@ + + + + + \ No newline at end of file diff --git a/src/pages/politicalAndLaw/sifa.vue b/src/pages/politicalAndLaw/sifa.vue new file mode 100644 index 0000000..295954c --- /dev/null +++ b/src/pages/politicalAndLaw/sifa.vue @@ -0,0 +1,919 @@ + + + + + \ No newline at end of file diff --git a/src/pages/politicalAndLaw/tuixiu.vue b/src/pages/politicalAndLaw/tuixiu.vue new file mode 100644 index 0000000..5570f88 --- /dev/null +++ b/src/pages/politicalAndLaw/tuixiu.vue @@ -0,0 +1,947 @@ + + + + + \ No newline at end of file diff --git a/src/pages/politicalAndLaw/zhiyuanzhe.vue b/src/pages/politicalAndLaw/zhiyuanzhe.vue new file mode 100644 index 0000000..04f81f6 --- /dev/null +++ b/src/pages/politicalAndLaw/zhiyuanzhe.vue @@ -0,0 +1,808 @@ + + + \ No newline at end of file diff --git a/src/pages/politicalAndLaw/zongzhi.vue b/src/pages/politicalAndLaw/zongzhi.vue new file mode 100644 index 0000000..c408bf9 --- /dev/null +++ b/src/pages/politicalAndLaw/zongzhi.vue @@ -0,0 +1,804 @@ + + + \ No newline at end of file diff --git a/src/pages/population/chuzufangwu.vue b/src/pages/population/chuzufangwu.vue new file mode 100644 index 0000000..24a58fe --- /dev/null +++ b/src/pages/population/chuzufangwu.vue @@ -0,0 +1,1325 @@ + + + \ No newline at end of file diff --git a/src/pages/population/home.vue b/src/pages/population/home.vue new file mode 100644 index 0000000..33fcc82 --- /dev/null +++ b/src/pages/population/home.vue @@ -0,0 +1,916 @@ + + + \ No newline at end of file diff --git a/src/pages/population/huji.vue b/src/pages/population/huji.vue new file mode 100644 index 0000000..d5c4805 --- /dev/null +++ b/src/pages/population/huji.vue @@ -0,0 +1,1003 @@ + + + \ No newline at end of file diff --git a/src/pages/population/index.vue b/src/pages/population/index.vue new file mode 100644 index 0000000..37cc40f --- /dev/null +++ b/src/pages/population/index.vue @@ -0,0 +1,138 @@ + + + + \ No newline at end of file diff --git a/src/pages/population/liudong.vue b/src/pages/population/liudong.vue new file mode 100644 index 0000000..48b5b7e --- /dev/null +++ b/src/pages/population/liudong.vue @@ -0,0 +1,1470 @@ + + + \ No newline at end of file diff --git a/src/pages/population/shequxinxi.vue b/src/pages/population/shequxinxi.vue new file mode 100644 index 0000000..3516c9e --- /dev/null +++ b/src/pages/population/shequxinxi.vue @@ -0,0 +1,786 @@ + + + \ No newline at end of file diff --git a/src/pages/population/xinfangrenyuan.vue b/src/pages/population/xinfangrenyuan.vue new file mode 100644 index 0000000..296f942 --- /dev/null +++ b/src/pages/population/xinfangrenyuan.vue @@ -0,0 +1,774 @@ + + + \ No newline at end of file diff --git a/src/pages/population/zhiyuanzhe.vue b/src/pages/population/zhiyuanzhe.vue new file mode 100644 index 0000000..3d4c5c2 --- /dev/null +++ b/src/pages/population/zhiyuanzhe.vue @@ -0,0 +1,854 @@ + + + \ No newline at end of file diff --git a/src/pages/population/zhongdian_com/bosom.vue b/src/pages/population/zhongdian_com/bosom.vue new file mode 100644 index 0000000..124a04d --- /dev/null +++ b/src/pages/population/zhongdian_com/bosom.vue @@ -0,0 +1,200 @@ + + + + + \ No newline at end of file diff --git a/src/pages/population/zhongdian_com/eventChaining.vue b/src/pages/population/zhongdian_com/eventChaining.vue new file mode 100644 index 0000000..d6b48de --- /dev/null +++ b/src/pages/population/zhongdian_com/eventChaining.vue @@ -0,0 +1,26 @@ + + + + + \ No newline at end of file diff --git a/src/pages/population/zhongdian_com/img/chart1.jpg b/src/pages/population/zhongdian_com/img/chart1.jpg new file mode 100644 index 0000000..cc736ff Binary files /dev/null and b/src/pages/population/zhongdian_com/img/chart1.jpg differ diff --git a/src/pages/population/zhongdian_com/img/chart2.jpg b/src/pages/population/zhongdian_com/img/chart2.jpg new file mode 100644 index 0000000..b93da9b Binary files /dev/null and b/src/pages/population/zhongdian_com/img/chart2.jpg differ diff --git a/src/pages/population/zhongdian_com/img/event.jpg b/src/pages/population/zhongdian_com/img/event.jpg new file mode 100644 index 0000000..6cfaf03 Binary files /dev/null and b/src/pages/population/zhongdian_com/img/event.jpg differ diff --git a/src/pages/population/zhongdian_com/img/photo.jpg b/src/pages/population/zhongdian_com/img/photo.jpg new file mode 100644 index 0000000..1058e84 Binary files /dev/null and b/src/pages/population/zhongdian_com/img/photo.jpg differ diff --git a/src/pages/population/zhongdian_com/relation.vue b/src/pages/population/zhongdian_com/relation.vue new file mode 100644 index 0000000..dfc3d59 --- /dev/null +++ b/src/pages/population/zhongdian_com/relation.vue @@ -0,0 +1,23 @@ + + + + + \ No newline at end of file diff --git a/src/pages/population/zhongdianren.vue b/src/pages/population/zhongdianren.vue new file mode 100644 index 0000000..7c0ede9 --- /dev/null +++ b/src/pages/population/zhongdianren.vue @@ -0,0 +1,755 @@ + + + \ No newline at end of file diff --git a/src/pages/population/zhongdianrenchaxun.vue b/src/pages/population/zhongdianrenchaxun.vue new file mode 100644 index 0000000..b114cb2 --- /dev/null +++ b/src/pages/population/zhongdianrenchaxun.vue @@ -0,0 +1,239 @@ + + + \ No newline at end of file diff --git a/src/pages/population/zhongdianrenguanxitu.vue b/src/pages/population/zhongdianrenguanxitu.vue new file mode 100644 index 0000000..dbcf2e5 --- /dev/null +++ b/src/pages/population/zhongdianrenguanxitu.vue @@ -0,0 +1,400 @@ + + + + + \ No newline at end of file diff --git a/src/pages/population/zhongdianrenhuoyuedu.vue b/src/pages/population/zhongdianrenhuoyuedu.vue new file mode 100644 index 0000000..1a63939 --- /dev/null +++ b/src/pages/population/zhongdianrenhuoyuedu.vue @@ -0,0 +1,614 @@ + + + \ No newline at end of file diff --git a/src/pages/population/zongzhi.vue b/src/pages/population/zongzhi.vue new file mode 100644 index 0000000..1a93b60 --- /dev/null +++ b/src/pages/population/zongzhi.vue @@ -0,0 +1,631 @@ + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/controlPoint.vue b/src/pages/publicSecurity/controlPoint.vue new file mode 100644 index 0000000..778ace1 --- /dev/null +++ b/src/pages/publicSecurity/controlPoint.vue @@ -0,0 +1,1322 @@ + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/criminalCase.vue b/src/pages/publicSecurity/criminalCase.vue new file mode 100644 index 0000000..4eefa23 --- /dev/null +++ b/src/pages/publicSecurity/criminalCase.vue @@ -0,0 +1,942 @@ + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/cxjhb/order.vue b/src/pages/publicSecurity/cxjhb/order.vue new file mode 100644 index 0000000..3a09544 --- /dev/null +++ b/src/pages/publicSecurity/cxjhb/order.vue @@ -0,0 +1,82 @@ + + + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/cxjhb/production.vue b/src/pages/publicSecurity/cxjhb/production.vue new file mode 100644 index 0000000..21e1368 --- /dev/null +++ b/src/pages/publicSecurity/cxjhb/production.vue @@ -0,0 +1,988 @@ + + + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/cxjhb/safety.vue b/src/pages/publicSecurity/cxjhb/safety.vue new file mode 100644 index 0000000..705dbeb --- /dev/null +++ b/src/pages/publicSecurity/cxjhb/safety.vue @@ -0,0 +1,514 @@ + + + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/cxjhbzz.vue b/src/pages/publicSecurity/cxjhbzz.vue new file mode 100644 index 0000000..fcccf14 --- /dev/null +++ b/src/pages/publicSecurity/cxjhbzz.vue @@ -0,0 +1,213 @@ + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/home.vue b/src/pages/publicSecurity/home.vue new file mode 100644 index 0000000..bda7420 --- /dev/null +++ b/src/pages/publicSecurity/home.vue @@ -0,0 +1,1038 @@ + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/importantCriminalCases.vue b/src/pages/publicSecurity/importantCriminalCases.vue new file mode 100644 index 0000000..c4dfcd2 --- /dev/null +++ b/src/pages/publicSecurity/importantCriminalCases.vue @@ -0,0 +1,814 @@ + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/index.vue b/src/pages/publicSecurity/index.vue new file mode 100644 index 0000000..ee9f1f5 --- /dev/null +++ b/src/pages/publicSecurity/index.vue @@ -0,0 +1,276 @@ + + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/intelligenceSubmission.vue b/src/pages/publicSecurity/intelligenceSubmission.vue new file mode 100644 index 0000000..779dbb8 --- /dev/null +++ b/src/pages/publicSecurity/intelligenceSubmission.vue @@ -0,0 +1,1009 @@ + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/majorDecisions.vue b/src/pages/publicSecurity/majorDecisions.vue new file mode 100644 index 0000000..d2d2ddc --- /dev/null +++ b/src/pages/publicSecurity/majorDecisions.vue @@ -0,0 +1,1016 @@ + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/mdfx.vue b/src/pages/publicSecurity/mdfx.vue new file mode 100644 index 0000000..47a9e6d --- /dev/null +++ b/src/pages/publicSecurity/mdfx.vue @@ -0,0 +1,556 @@ + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/normalPetition.vue b/src/pages/publicSecurity/normalPetition.vue new file mode 100644 index 0000000..73993b1 --- /dev/null +++ b/src/pages/publicSecurity/normalPetition.vue @@ -0,0 +1,370 @@ + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/organization.vue b/src/pages/publicSecurity/organization.vue new file mode 100644 index 0000000..07d8d47 --- /dev/null +++ b/src/pages/publicSecurity/organization.vue @@ -0,0 +1,1200 @@ + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/petition.vue b/src/pages/publicSecurity/petition.vue new file mode 100644 index 0000000..945f9e4 --- /dev/null +++ b/src/pages/publicSecurity/petition.vue @@ -0,0 +1,960 @@ + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/police110.vue b/src/pages/publicSecurity/police110.vue new file mode 100644 index 0000000..e2d4895 --- /dev/null +++ b/src/pages/publicSecurity/police110.vue @@ -0,0 +1,621 @@ + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/preventable.vue b/src/pages/publicSecurity/preventable.vue new file mode 100644 index 0000000..ecc8f2b --- /dev/null +++ b/src/pages/publicSecurity/preventable.vue @@ -0,0 +1,893 @@ + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/publicSecurity.vue b/src/pages/publicSecurity/publicSecurity.vue new file mode 100644 index 0000000..99be83b --- /dev/null +++ b/src/pages/publicSecurity/publicSecurity.vue @@ -0,0 +1,788 @@ + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/safety.vue b/src/pages/publicSecurity/safety.vue new file mode 100644 index 0000000..6873fc7 --- /dev/null +++ b/src/pages/publicSecurity/safety.vue @@ -0,0 +1,871 @@ + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/sensitiveCases.vue b/src/pages/publicSecurity/sensitiveCases.vue new file mode 100644 index 0000000..437a85f --- /dev/null +++ b/src/pages/publicSecurity/sensitiveCases.vue @@ -0,0 +1,1003 @@ + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/sensitiveCasesDetail.vue b/src/pages/publicSecurity/sensitiveCasesDetail.vue new file mode 100644 index 0000000..7d7ce0d --- /dev/null +++ b/src/pages/publicSecurity/sensitiveCasesDetail.vue @@ -0,0 +1,221 @@ + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/zdqyzz.vue b/src/pages/publicSecurity/zdqyzz.vue new file mode 100644 index 0000000..ea4d137 --- /dev/null +++ b/src/pages/publicSecurity/zdqyzz.vue @@ -0,0 +1,837 @@ + + + \ No newline at end of file diff --git a/src/pages/publicSecurity/zdsxbbtj.vue b/src/pages/publicSecurity/zdsxbbtj.vue new file mode 100644 index 0000000..17ec000 --- /dev/null +++ b/src/pages/publicSecurity/zdsxbbtj.vue @@ -0,0 +1,1005 @@ + + + \ No newline at end of file diff --git a/src/pages/socialStabilityIndex/analysis.vue b/src/pages/socialStabilityIndex/analysis.vue new file mode 100644 index 0000000..df2cb5c --- /dev/null +++ b/src/pages/socialStabilityIndex/analysis.vue @@ -0,0 +1,659 @@ + + + \ No newline at end of file diff --git a/src/pages/socialStabilityIndex/areaAnalysis.vue b/src/pages/socialStabilityIndex/areaAnalysis.vue new file mode 100644 index 0000000..7019cdf --- /dev/null +++ b/src/pages/socialStabilityIndex/areaAnalysis.vue @@ -0,0 +1,1133 @@ + + + \ No newline at end of file diff --git a/src/pages/socialStabilityIndex/areasAnalysis.vue b/src/pages/socialStabilityIndex/areasAnalysis.vue new file mode 100644 index 0000000..6370436 --- /dev/null +++ b/src/pages/socialStabilityIndex/areasAnalysis.vue @@ -0,0 +1,670 @@ + + + \ No newline at end of file diff --git a/src/pages/socialStabilityIndex/components/ecology.vue b/src/pages/socialStabilityIndex/components/ecology.vue new file mode 100644 index 0000000..6955e12 --- /dev/null +++ b/src/pages/socialStabilityIndex/components/ecology.vue @@ -0,0 +1,877 @@ + + + + + \ No newline at end of file diff --git a/src/pages/socialStabilityIndex/components/economic.vue b/src/pages/socialStabilityIndex/components/economic.vue new file mode 100644 index 0000000..ca2727f --- /dev/null +++ b/src/pages/socialStabilityIndex/components/economic.vue @@ -0,0 +1,1390 @@ + + + + + \ No newline at end of file diff --git a/src/pages/socialStabilityIndex/components/health.vue b/src/pages/socialStabilityIndex/components/health.vue new file mode 100644 index 0000000..51309c4 --- /dev/null +++ b/src/pages/socialStabilityIndex/components/health.vue @@ -0,0 +1,742 @@ + + + + + \ No newline at end of file diff --git a/src/pages/socialStabilityIndex/components/natural.vue b/src/pages/socialStabilityIndex/components/natural.vue new file mode 100644 index 0000000..8fd91cd --- /dev/null +++ b/src/pages/socialStabilityIndex/components/natural.vue @@ -0,0 +1,622 @@ + + + + + \ No newline at end of file diff --git a/src/pages/socialStabilityIndex/components/political.vue b/src/pages/socialStabilityIndex/components/political.vue new file mode 100644 index 0000000..4e1e376 --- /dev/null +++ b/src/pages/socialStabilityIndex/components/political.vue @@ -0,0 +1,767 @@ + + + + + diff --git a/src/pages/socialStabilityIndex/components/population.vue b/src/pages/socialStabilityIndex/components/population.vue new file mode 100644 index 0000000..52f0aa9 --- /dev/null +++ b/src/pages/socialStabilityIndex/components/population.vue @@ -0,0 +1,843 @@ + + + + + \ No newline at end of file diff --git a/src/pages/socialStabilityIndex/components/society.vue b/src/pages/socialStabilityIndex/components/society.vue new file mode 100644 index 0000000..d7c74bb --- /dev/null +++ b/src/pages/socialStabilityIndex/components/society.vue @@ -0,0 +1,1036 @@ + + + + + \ No newline at end of file diff --git a/src/pages/socialStabilityIndex/earlyWarning.vue b/src/pages/socialStabilityIndex/earlyWarning.vue new file mode 100644 index 0000000..d637c7b --- /dev/null +++ b/src/pages/socialStabilityIndex/earlyWarning.vue @@ -0,0 +1,453 @@ + + + \ No newline at end of file diff --git a/src/pages/socialStabilityIndex/home.vue b/src/pages/socialStabilityIndex/home.vue new file mode 100644 index 0000000..3485e97 --- /dev/null +++ b/src/pages/socialStabilityIndex/home.vue @@ -0,0 +1,815 @@ + + + \ No newline at end of file diff --git a/src/pages/socialStabilityIndex/index.vue b/src/pages/socialStabilityIndex/index.vue new file mode 100644 index 0000000..987300b --- /dev/null +++ b/src/pages/socialStabilityIndex/index.vue @@ -0,0 +1,140 @@ + + + + \ No newline at end of file diff --git a/src/pages/socialStabilityIndex/thematicAnalysis.vue b/src/pages/socialStabilityIndex/thematicAnalysis.vue new file mode 100644 index 0000000..10d7ae2 --- /dev/null +++ b/src/pages/socialStabilityIndex/thematicAnalysis.vue @@ -0,0 +1,254 @@ + + + + + \ No newline at end of file diff --git a/src/router.js b/src/router.js new file mode 100644 index 0000000..2ce376a --- /dev/null +++ b/src/router.js @@ -0,0 +1,582 @@ +import Vue from 'vue' +import Router from 'vue-router' +Vue.use(Router); + +export default new Router({ + // mode: 'history', + // base: __dirname, + routes: [ + { + path: '/undefined', + name: 'undefined', + component: () => import('@/pages/index/undefined'), + meta: { + index: 0, + } + }, + /*首页*/ + { + path: '/', + name: 'index', + component: () => import('@/pages/index/index'), + meta: { + index: 0, + } + }, + { + path: '/index', + redirect: { // 路由重定向 + name: 'index' + }, + }, + /*营销专题*/ + { + path: '/marketing', + name: 'marketing', + component: () => import('@/pages/marketing/index'), + meta: { + index: 0, + } + }, + /*长者专题*/ + { + path: '/elder', + name: 'elder', + component: () => import('@/pages/elder/index'), + meta: { + index: 0, + } + }, + // 首页 + { + path: '/home', + name: 'home', + component: () => import('@/pages/home'), + meta: { + index: 0, + } + }, + // 人口专题 + { + path: '/population', + name: 'population', + redirect: '/population/home', // 设置默认路由 + component: () => import('@/pages/population/index'), + meta: { + index: 1, + }, + children: [ + { + // 人口首页 + name: 'populationHome', + path: 'home', + component: resolve => require(['@/pages/population/home'], resolve), + }, + { + // 户籍人口 + name: 'huji', + path: 'huji', + component: resolve => require(['@/pages/population/huji'], resolve), + }, + { + // 流动人口 + name: 'liudong', + path: 'liudong', + component: resolve => require(['@/pages/population/liudong'], resolve), + }, + { + // 出租房屋 + name: 'chuzufangwu', + path: 'chuzufangwu', + component: resolve => require(['@/pages/population/chuzufangwu'], resolve), + }, + { + // 重点人 + name: 'zhongdianren', + path: 'zhongdianren', + component: resolve => require(['@/pages/population/zhongdianren'], resolve), + }, + { + // 重点人查询 + name: 'zhongdianrenchaxun', + path: 'zhongdianrenchaxun', + component: resolve => require(['@/pages/population/zhongdianrenchaxun'], resolve), + }, + { + // 重点人活跃度 + name: 'zhongdianrenhuoyuedu', + path: 'zhongdianrenhuoyuedu', + component: resolve => require(['@/pages/population/zhongdianrenhuoyuedu'], resolve), + }, + { + // 重点人关系图 + name: 'zhongdianrenguanxitu', + path: 'zhongdianrenguanxitu', + component: resolve => require(['@/pages/population/zhongdianrenguanxitu'], resolve), + }, + { + // 信访人员 + name: 'xinfangrenyuan', + path: 'xinfangrenyuan', + component: resolve => require(['@/pages/population/xinfangrenyuan'], resolve), + }, + { + // 综治队伍 + name: 'zongzhi', + path: 'zongzhi', + component: resolve => require(['@/pages/population/zongzhi'], resolve), + }, + + { + // 社区信息 + name: 'shequxinxi', + path: 'shequxinxi', + component: resolve => require(['@/pages/population/shequxinxi'], resolve), + }, + ] + }, + // 社会治安专题 + { + path: '/publicSecurity', + name: '/publicSecurity', + redirect: '/publicSecurity/home', // 设置默认路由 + component: () => import('@/pages/publicSecurity/index'), + meta: { + index: 1, + }, + children: [ + { + name: 'publicSecurityHome', + path: 'home', + component: resolve => require(['@/pages/publicSecurity/home'], resolve), + }, + { + // 110接报警 + name: 'police110', + path: 'police110', + component: resolve => require(['@/pages/publicSecurity/police110'], resolve), + }, + { + // 社区可预防案件 + name: 'preventable', + path: 'preventable', + component: resolve => require(['@/pages/publicSecurity/preventable'], resolve), + }, + { + // 治安案件 + name: 'publicSecurity', + path: 'publicSecurity', + component: resolve => require(['@/pages/publicSecurity/publicSecurity'], resolve), + }, + { + // 八类严重刑事案件 + name: 'importantCriminalCases', + path: 'importantCriminalCases', + component: resolve => require(['@/pages/publicSecurity/importantCriminalCases'], resolve), + }, + { + // 刑事案件 + name: 'criminalCase', + path: 'criminalCase', + component: resolve => require(['@/pages/publicSecurity/criminalCase'], resolve), + }, + { + // 群防群治布控点 + name: 'controlPoint', + path: 'controlPoint', + component: resolve => require(['@/pages/publicSecurity/controlPoint'], resolve), + }, + { + // 重点组织机构 + name: 'organization', + path: 'organization', + component: resolve => require(['@/pages/publicSecurity/organization'], resolve), + }, + { + // 敏感案事件 + name: 'sensitiveCases', + path: 'sensitiveCases', + component: resolve => require(['@/pages/publicSecurity/sensitiveCases'], resolve), + }, + { + // 敏感案事件详情 + name: 'sensitiveCasesDetail', + path: 'sensitiveCasesDetail', + component: resolve => require(['@/pages/publicSecurity/sensitiveCasesDetail'], resolve), + }, + { + // 情报报送 + name: 'intelligenceSubmission', + path: 'intelligenceSubmission', + component: resolve => require(['@/pages/publicSecurity/intelligenceSubmission'], resolve), + }, + + { + // 正常上访 + name: 'normalPetition', + path: 'normalPetition', + component: resolve => require(['@/pages/publicSecurity/normalPetition'], resolve), + }, + { + // 上访 + name: 'petition', + path: 'petition', + component: resolve => require(['@/pages/publicSecurity/petition'], resolve), + }, + { + // 重大决策分析 + name: 'majorDecisions', + path: 'majorDecisions', + component: resolve => require(['@/pages/publicSecurity/majorDecisions'], resolve), + }, + { + // 重大事项报备统计 + name: 'zdsxbbtj', + path: 'zdsxbbtj', + component: resolve => require(['@/pages/publicSecurity/zdsxbbtj'], resolve), + }, + { + // 重点区域整治 + name: 'zdqyzz', + path: 'zdqyzz', + component: resolve => require(['@/pages/publicSecurity/zdqyzz'], resolve), + }, + { + // 城乡结合部整治 + name: 'cxjhbzz', + path: 'cxjhbzz', + component: resolve => require(['@/pages/publicSecurity/cxjhbzz'], resolve), + }, + { + // 矛盾分析 + name: 'mdfx', + path: 'mdfx', + component: resolve => require(['@/pages/publicSecurity/mdfx'], resolve), + }, + + ] + }, + // 政法队伍专题 + { + path: '/politicalAndLaw', + name: '/politicalAndLaw', + // redirect:'/politicalAndLaw/home', // 设置默认路由 + redirect: '/politicalAndLaw/inquisitor', // 设置默认路由 + component: () => import('@/pages/politicalAndLaw/index'), + meta: { + index: 1, + }, + children: [ + { + name: 'politicalAndLawHome', + path: 'home', + component: resolve => require(['@/pages/politicalAndLaw/home'], resolve), + }, + { + // 公安工作 + name: 'gongan', + path: 'gongan', + component: resolve => require(['@/pages/politicalAndLaw/gongan'], resolve), + }, + { + // 法院工作 + name: 'fayuan', + path: 'fayuan', + component: resolve => require(['@/pages/politicalAndLaw/fayuan'], resolve), + }, + { + // 检察院工作 + name: 'jianchayuan', + path: 'jianchayuan', + component: resolve => require(['@/pages/politicalAndLaw/jianchayuan'], resolve), + }, + { + // 员额检察官 + name: 'jianchaguan', + path: 'jianchaguan', + component: resolve => require(['@/pages/politicalAndLaw/jianchaguan'], resolve), + }, + // { + // // 员额法官 + // name: 'faguan', + // path: 'faguan', + // component: resolve => require(['@/pages/politicalAndLaw/faguan'], resolve), + // }, + { + // 员额法官 + name: 'faguan', + path: 'faguan', + component: resolve => require(['@/pages/politicalAndLaw/faguan_com/yuanefaguan'], resolve), + }, + { + // 员额法官搜索 + name: 'faguan_search', + path: 'faguan_search', + component: resolve => require(['@/pages/politicalAndLaw/faguan_com/faguan_search'], resolve), + }, + { + // 员额法官详情 + name: 'faguan_detail', + path: 'faguan_detail', + component: resolve => require(['@/pages/politicalAndLaw/faguan_com/faguan_detail'], resolve), + }, + { + // 司法工作 + name: 'sifa', + path: 'sifa', + component: resolve => require(['@/pages/politicalAndLaw/sifa'], resolve), + }, + { + // 离退休干部 + name: 'tuixiu', + path: 'tuixiu', + component: resolve => require(['@/pages/politicalAndLaw/tuixiu'], resolve), + }, + { + // 综治队伍 + name: 'zf_zongzhi', + path: 'zf_zongzhi', + component: resolve => require(['@/pages/politicalAndLaw/zongzhi'], resolve), + }, + + { + // 员额检察官 + name: 'inquisitor', + path: 'inquisitor', + component: resolve => require(['@/pages/politicalAndLaw/inquisitor'], resolve), + }, + { + // 员额检察官搜索 + name: 'inquisitorSearch', + path: 'inquisitorSearch', + component: resolve => require(['@/pages/politicalAndLaw/inquisitorSearch'], resolve), + }, + { + // 员额检察官详情 + name: 'inquisitorDetail', + path: 'inquisitorDetail', + component: resolve => require(['@/pages/politicalAndLaw/inquisitorDetail'], resolve), + }, + { + // 志愿者 + name: 'zhiyuanzhe', + path: 'zhiyuanzhe', + component: resolve => require(['@/pages/politicalAndLaw/zhiyuanzhe'], resolve), + }, + ] + }, + // 社会稳定指数 + { + path: '/socialStabilityIndex', + name: 'socialStabilityIndex', + redirect: '/socialStabilityIndex/home', // 设置默认路由 + component: () => import('@/pages/socialStabilityIndex/index'), + meta: { + index: 1, + }, + children: [ + { + name: 'socialStabilityIndexHome', + path: 'home', + component: resolve => require(['@/pages/socialStabilityIndex/home'], resolve), + }, + { + // 社会稳定指数预警 + name: 'earlyWarning', + path: 'earlyWarning', + component: resolve => require(['@/pages/socialStabilityIndex/earlyWarning'], resolve), + }, + { + // 北京市社会稳定指数分析 + name: 'analysis', + path: 'analysis', + component: resolve => require(['@/pages/socialStabilityIndex/analysis'], resolve), + }, + { + // 各区社会稳定指数分析 + name: 'areasAnalysis', + path: 'areasAnalysis', + component: resolve => require(['@/pages/socialStabilityIndex/areasAnalysis'], resolve), + }, + // 某一区社会稳定指数分析 + // { + // path: 'areaAnalysis/:name', + // name: 'areaAnalysis', + // component: resolve => require(['@/pages/socialStabilityIndex/areaAnalysis'], resolve), + // }, + { + // 社会稳定指数专题分析 + name: 'thematicAnalysis', + path: 'thematicAnalysis', + component: resolve => require(['@/pages/socialStabilityIndex/thematicAnalysis'], resolve), + }, + ] + }, + // 日常办公 + { + path: '/office', + name: 'office', + redirect: '/office/home', // 设置默认路由 + component: () => import('@/pages/office/index'), + meta: { + index: 1, + }, + children: [ + { + name: 'officeHome', + path: 'home', + component: resolve => require(['@/pages/office/home'], resolve), + }, + { + // 项目预算 + name: 'budget', + path: 'budget', + component: resolve => require(['@/pages/office/budget'], resolve), + }, + { + // 收发文情况 + name: 'receive', + path: 'receive', + component: resolve => require(['@/pages/office/receive'], resolve), + }, + { + // 办公用品 + name: 'supplies', + path: 'supplies', + component: resolve => require(['@/pages/office/supplies'], resolve), + }, + { + // 车辆情况 + name: 'vehicle', + path: 'vehicle', + component: resolve => require(['@/pages/office/vehicle'], resolve), + }, + ] + }, + // 智能办案 + { + path: '/intelligent', + name: 'intelligent', + redirect: '/intelligent/home', // 设置默认路由 + component: () => import('@/pages/intelligent/index'), + meta: { + index: 1, + }, + children: [ + { + name: 'intelligentHome', + path: 'home', + component: resolve => require(['@/pages/intelligent/home'], resolve), + }, + { + // 公安 + name: '/intelligent/publicSecurity', + path: 'publicSecurity', + component: resolve => require(['@/pages/intelligent/publicSecurity'], resolve), + }, + { + // 公安-趋势各区量查询、案由 + name: 'publicSecurityDetail1', + path: 'publicSecurityDetail1', + component: resolve => require(['@/pages/intelligent/publicSecurityDetail1'], resolve), + }, + { + // 公安-强制措施 + name: 'publicSecurityDetail2', + path: 'publicSecurityDetail2', + component: resolve => require(['@/pages/intelligent/publicSecurityDetail2'], resolve), + }, + { + // 检察院 + name: 'procuratorate', + path: 'procuratorate', + component: resolve => require(['@/pages/intelligent/procuratorate'], resolve), + }, + { + // 法院 + name: 'court', + path: 'court', + component: resolve => require(['@/pages/intelligent/court'], resolve), + }, + { + // 司法 + name: 'judicial', + path: 'judicial', + component: resolve => require(['@/pages/intelligent/judicial'], resolve), + }, + { + // 涉案财物 + name: 'money', + path: 'money', + component: resolve => require(['@/pages/intelligent/money'], resolve), + }, + { + // 减刑假释 + name: 'commutation', + path: 'commutation', + component: resolve => require(['@/pages/intelligent/commutation'], resolve), + }, + { + // 犯罪嫌疑人 + name: 'criminalSuspect', + path: 'criminalSuspect', + component: resolve => require(['@/pages/intelligent/criminalSuspect'], resolve), + }, + ] + }, + // 反邪教专题 + { + path: '/cult', + name: 'cult', + redirect: '/cult/home', // 设置默认路由 + component: () => import('@/pages/cult/index'), + meta: { + index: 1, + }, + children: [ + { + // 反邪教首页 + name: 'cultHome', + path: 'home', + component: resolve => require(['@/pages/cult/home'], resolve), + }, + { + // 邪教人员 + name: 'cultPerson', + path: 'cultPerson', + component: resolve => require(['@/pages/cult/cultPerson'], resolve), + }, + { + // 邪教组织、案事件 + name: 'cultCaseIncident', + path: 'cultCaseIncident', + component: resolve => require(['@/pages/cult/cultCaseIncident'], resolve), + }, + { + // 涉外斗争 + name: 'struggle', + path: 'struggle', + component: resolve => require(['@/pages/cult/struggle'], resolve), + }, + { + // 教育转化 + name: 'education', + path: 'education', + component: resolve => require(['@/pages/cult/education'], resolve), + } + ] + }, + + // 某一区社会稳定指数分析 + { + path: '/socialStabilityIndex/areaAnalysis/:name', + name: 'areaAnalysis', + component: resolve => require(['@/pages/socialStabilityIndex/areaAnalysis'], resolve), + }, + { + path: '/demo', + name: 'demo', + component: resolve => require(['@/pages/demo'], resolve), + }, + ] +}) diff --git a/vue.config.js b/vue.config.js new file mode 100644 index 0000000..26aa5bc --- /dev/null +++ b/vue.config.js @@ -0,0 +1,82 @@ +const CompressionPlugin = require("compression-webpack-plugin") +const path = require("path"); +function resolve (dir) { + return path.join(__dirname, dir) +} +// vue.config.js +module.exports = { + // baseUrl: "./", + publicPath: '/' , + outputDir: "dist", + assetsDir: "assets", + indexPath: "index.html", + filenameHashing: true, + pages: undefined, + lintOnSave: true, + runtimeCompiler: false, + // productionSourceMap: true,//生成map文件 + productionSourceMap: false,//去掉生成map文件 + crossorigin: undefined, + integrity: false, + // autoOpenBrowser: true, + + configureWebpack: config => { + //生产环境取消 console.log + if (process.env.NODE_ENV === 'production') { + config.optimization.minimizer[0].options.terserOptions.compress.drop_console = true + } + }, + chainWebpack: (config) => { //引入 + config.resolve.alias + .set('@$', resolve('src')) + .set('@api', resolve('src/api')) + .set('@assets', resolve('src/assets')) + .set('@comp', resolve('src/components')) + .set('@views', resolve('src/pages')) + .set('@public', resolve('public')) + //生产环境,开启js\css压缩 + if (process.env.NODE_ENV === 'production') { + config.plugin('compressionPlugin').use(new CompressionPlugin({ + test: /\.js$|\.html$|\.json$|\.css$|\.ttf$|\.less$/, // 匹配文件名 + threshold: 10240, // 对超过10k的数据压缩 + deleteOriginalAssets: false // 不删除源文件 + })) + } + //针对svg文件添加svg-sprite-loader规则 + // 配置svg + config.module + .rule('svg') + .exclude.add(resolve('src/assets/icons')) + .end() + config.module + .rule('icons') + .test(/\.svg$/) + .include.add(resolve('src/assets/icons')) + .end() + .use('svg-sprite-loader') + .loader('svg-sprite-loader') + .options({ + symbolId: 'icon-[name]' + }) + .end() + }, + transpileDependencies: [ //babel会忽略node_modules中的文件。如果需要Babel转译,单独列出来。 + '@jiaminghi', + ], + css: { + loaderOptions: { + less: { + lessOptions: { + javascriptEnabled: true, + // 兼容 less-loader 3.x + math: "always", + } + } + } + }, + devServer: { + disableHostCheck: true, // 使用Nginx + hosts 来访问域名代理访问本地项目 + port: 3000 + }, + lintOnSave: process.env.NODE_ENV !== 'production' +}