diff --git a/safety-eval-adapter/src/main/java/org/qinan/safetyeval/adapter/web/ImagesOpenController.java b/safety-eval-adapter/src/main/java/org/qinan/safetyeval/adapter/web/ImagesOpenController.java index 41c34a0..d3e28b4 100644 --- a/safety-eval-adapter/src/main/java/org/qinan/safetyeval/adapter/web/ImagesOpenController.java +++ b/safety-eval-adapter/src/main/java/org/qinan/safetyeval/adapter/web/ImagesOpenController.java @@ -128,4 +128,10 @@ public class ImagesOpenController { return fileUploadApi.uploadInternal(file); } + + @ApiOperation("通过用户账号查询机构信息") + @PostMapping("/org-info/getByAccount") + public SingleResponse getByAccount(@ApiParam("账号") @RequestBody Req req) { + return orgInfoApi.getByAccount(req.getData()); + } } diff --git a/safety-eval-app/src/main/java/org/qinan/safetyeval/app/executor/AccountExecutor.java b/safety-eval-app/src/main/java/org/qinan/safetyeval/app/executor/AccountExecutor.java index c9536f1..5851ab6 100644 --- a/safety-eval-app/src/main/java/org/qinan/safetyeval/app/executor/AccountExecutor.java +++ b/safety-eval-app/src/main/java/org/qinan/safetyeval/app/executor/AccountExecutor.java @@ -1,6 +1,6 @@ package org.qinan.safetyeval.app.executor; -import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper; import com.jjb.saas.system.client.user.request.UserAddCmd; import com.zcloud.gbscommon.utils.MD5; import com.zcloud.gbscommon.utils.Sm2Util; @@ -17,7 +17,8 @@ import org.qinan.safetyeval.domain.query.PageResult; import org.qinan.safetyeval.domain.service.AccountDomainService; import org.qinan.safetyeval.infrastructure.adapter.auth.AuthUserContextAdapter; import org.qinan.safetyeval.infrastructure.adapter.gbs.GbsUserFacadeClient; -import org.qinan.safetyeval.infrastructure.dataobject.OrgInfoDO; +import org.qinan.safetyeval.infrastructure.dataobject.AccountDO; +import org.qinan.safetyeval.infrastructure.mapper.AccountMapper; import org.qinan.safetyeval.infrastructure.mapper.OrgInfoMapper; import org.qinan.safetyeval.infrastructure.remote.SmsRemote; import org.springframework.beans.factory.annotation.Autowired; @@ -48,6 +49,8 @@ public class AccountExecutor implements AccountApi { private SmsRemote smsRemote; @Autowired private OrgInfoMapper orgInfoMapper; + @Autowired + private AccountMapper accountMapper; @Override @Transactional(rollbackFor = Exception.class) @@ -129,16 +132,22 @@ public class AccountExecutor implements AccountApi { log.info("同步用户密码:{}", pas); String encrypt = Sm2Util.encryptHex(MD5.md5(pas), publicKey); userAddCmd.setPassword(encrypt); - try { - gbsUserFacadeClient.add(userAddCmd); - } catch (Exception e) { - // 回滚数据, 清除account表示数据,orgInfo数据 - orgInfoMapper.delete(new LambdaQueryWrapper() - .eq(OrgInfoDO::getCreateId, result.getId())); - accountDomainService.delete(result.getId()); - log.error("同步用户失败: {}", e.getMessage()); - throw new BizException(ErrorCode.GBS_USER_SYNC_ERROR); + int add = gbsUserFacadeClient.add(userAddCmd); + if (add == 2) { + accountMapper.update(null, new LambdaUpdateWrapper() + .eq(AccountDO::getId, result.getId()) + .set(AccountDO::getSyncGbs, add)); } +// try { + +// } catch (Exception e) { +// // 回滚数据, 清除account表示数据,orgInfo数据 +// orgInfoMapper.delete(new LambdaQueryWrapper() +// .eq(OrgInfoDO::getCreateId, result.getId())); +// accountDomainService.delete(result.getId()); +// log.error("同步用户失败: {}", e.getMessage()); +// throw new BizException(ErrorCode.GBS_USER_SYNC_ERROR); +// } return SingleResponse.success(toCO(result)); } @@ -171,6 +180,7 @@ public class AccountExecutor implements AccountApi { co.setProfileUrl(entity.getProfileUrl()); co.setType(entity.getType()); co.setTenantId(entity.getTenantId()); + co.setSyncGbs(entity.getSyncGbs()); return co; } } diff --git a/safety-eval-app/src/main/java/org/qinan/safetyeval/app/executor/OrgInfoExecutor.java b/safety-eval-app/src/main/java/org/qinan/safetyeval/app/executor/OrgInfoExecutor.java index 062e349..8ccf51f 100644 --- a/safety-eval-app/src/main/java/org/qinan/safetyeval/app/executor/OrgInfoExecutor.java +++ b/safety-eval-app/src/main/java/org/qinan/safetyeval/app/executor/OrgInfoExecutor.java @@ -77,6 +77,7 @@ public class OrgInfoExecutor implements OrgInfoApi { entity.setFilingRecordStatusName(cmd.getFilingRecordStatusName()); entity.setAttachmentUrls(cmd.getAttachmentUrls()); entity.setRegisterUserId(cmd.getRegisterUserId()); + entity.setId(cmd.getId()); OrgInfoEntity result = orgInfoDomainService.add(entity); return SingleResponse.success(toCO(result)); @@ -196,6 +197,12 @@ public class OrgInfoExecutor implements OrgInfoApi { return SingleResponse.success(toCO(entity)); } + @Override + public SingleResponse getByAccount(String data) { + OrgInfoEntity entity = orgInfoDomainService.getByAccount(data); + return SingleResponse.success(toCO(entity)); + } + private OrgInfoCO toCO(OrgInfoEntity entity) { if (entity == null) { return null; diff --git a/safety-eval-client/src/main/java/org/qinan/safetyeval/client/api/OrgInfoApi.java b/safety-eval-client/src/main/java/org/qinan/safetyeval/client/api/OrgInfoApi.java index f00da6c..cbb8d3c 100644 --- a/safety-eval-client/src/main/java/org/qinan/safetyeval/client/api/OrgInfoApi.java +++ b/safety-eval-client/src/main/java/org/qinan/safetyeval/client/api/OrgInfoApi.java @@ -30,4 +30,6 @@ public interface OrgInfoApi { PageResponse page(OrgInfoPageQuery query); SingleResponse getInfo(); + + SingleResponse getByAccount(String data); } diff --git a/safety-eval-client/src/main/java/org/qinan/safetyeval/client/co/AccountCO.java b/safety-eval-client/src/main/java/org/qinan/safetyeval/client/co/AccountCO.java index b1dded1..bebb683 100644 --- a/safety-eval-client/src/main/java/org/qinan/safetyeval/client/co/AccountCO.java +++ b/safety-eval-client/src/main/java/org/qinan/safetyeval/client/co/AccountCO.java @@ -31,4 +31,7 @@ public class AccountCO { @ApiModelProperty(value = "租户ID") private Long tenantId; + + @ApiModelProperty(value = "同步gbs 1-未同步, 2-同步") + private Integer syncGbs; } diff --git a/safety-eval-client/src/main/java/org/qinan/safetyeval/client/co/OrgInfoCO.java b/safety-eval-client/src/main/java/org/qinan/safetyeval/client/co/OrgInfoCO.java index 2936b7e..86a5336 100644 --- a/safety-eval-client/src/main/java/org/qinan/safetyeval/client/co/OrgInfoCO.java +++ b/safety-eval-client/src/main/java/org/qinan/safetyeval/client/co/OrgInfoCO.java @@ -159,4 +159,6 @@ public class OrgInfoCO { @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private LocalDateTime createTime; + + } diff --git a/safety-eval-client/src/main/java/org/qinan/safetyeval/client/dto/OrgInfoAddCmd.java b/safety-eval-client/src/main/java/org/qinan/safetyeval/client/dto/OrgInfoAddCmd.java index 304038a..e1dde4a 100644 --- a/safety-eval-client/src/main/java/org/qinan/safetyeval/client/dto/OrgInfoAddCmd.java +++ b/safety-eval-client/src/main/java/org/qinan/safetyeval/client/dto/OrgInfoAddCmd.java @@ -14,6 +14,9 @@ import java.time.LocalDate; @Data public class OrgInfoAddCmd { + /** 主键ID */ + private Long id; + @ApiModelProperty(value = "生产经营单位名称") private String unitName; diff --git a/safety-eval-domain/src/main/java/org/qinan/safetyeval/domain/entity/AccountEntity.java b/safety-eval-domain/src/main/java/org/qinan/safetyeval/domain/entity/AccountEntity.java index 045bba4..146a73d 100644 --- a/safety-eval-domain/src/main/java/org/qinan/safetyeval/domain/entity/AccountEntity.java +++ b/safety-eval-domain/src/main/java/org/qinan/safetyeval/domain/entity/AccountEntity.java @@ -1,5 +1,6 @@ package org.qinan.safetyeval.domain.entity; +import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** @@ -33,4 +34,7 @@ public class AccountEntity { /** 租户ID */ private Long tenantId; + + @ApiModelProperty(value = "同步gbs 1-未同步, 2-同步") + private Integer syncGbs; } diff --git a/safety-eval-domain/src/main/java/org/qinan/safetyeval/domain/gateway/OrgInfoGateway.java b/safety-eval-domain/src/main/java/org/qinan/safetyeval/domain/gateway/OrgInfoGateway.java index 2901d61..2c55bed 100644 --- a/safety-eval-domain/src/main/java/org/qinan/safetyeval/domain/gateway/OrgInfoGateway.java +++ b/safety-eval-domain/src/main/java/org/qinan/safetyeval/domain/gateway/OrgInfoGateway.java @@ -28,4 +28,6 @@ public interface OrgInfoGateway { OrgInfoEntity getInfo(); void resetPassword(Long id); + + OrgInfoEntity getByAccount(String data); } diff --git a/safety-eval-domain/src/main/java/org/qinan/safetyeval/domain/service/OrgInfoDomainService.java b/safety-eval-domain/src/main/java/org/qinan/safetyeval/domain/service/OrgInfoDomainService.java index db95510..c63b08e 100644 --- a/safety-eval-domain/src/main/java/org/qinan/safetyeval/domain/service/OrgInfoDomainService.java +++ b/safety-eval-domain/src/main/java/org/qinan/safetyeval/domain/service/OrgInfoDomainService.java @@ -6,9 +6,9 @@ import org.qinan.safetyeval.domain.exception.ErrorCode; import org.qinan.safetyeval.domain.gateway.OrgInfoGateway; import org.qinan.safetyeval.domain.query.OrgInfoQuery; import org.qinan.safetyeval.domain.query.PageResult; +import org.springframework.stereotype.Service; import javax.annotation.Resource; -import org.springframework.stereotype.Service; /** * 机构信息领域服务 @@ -64,4 +64,8 @@ public class OrgInfoDomainService { public void resetPassword(Long id) { orgInfoGateway.resetPassword(id); } + + public OrgInfoEntity getByAccount(String data) { + return orgInfoGateway.getByAccount(data); + } } diff --git a/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/adapter/gbs/GbsUserFacadeClient.java b/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/adapter/gbs/GbsUserFacadeClient.java index f3b9097..e2c0da1 100644 --- a/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/adapter/gbs/GbsUserFacadeClient.java +++ b/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/adapter/gbs/GbsUserFacadeClient.java @@ -28,7 +28,7 @@ public class GbsUserFacadeClient { private Long roleId; - public void add(UserAddCmd cmd) { + public Integer add(UserAddCmd cmd) { //2069596397920849920{key: "1782463085576", deptId: "2069596397920849920", roleId: "2069671307598893058"} List list = new ArrayList<>(); RoleDeptAddCmd roleDeptAddCmd = new RoleDeptAddCmd(); @@ -39,6 +39,8 @@ public class GbsUserFacadeClient { SingleResponse singleResponse = userFacade.add(cmd); if (!singleResponse.isSuccess()) { throw new BizException(singleResponse.getErrCode(), singleResponse.getErrMessage()); + } else { + return 2; } } diff --git a/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/dataobject/AccountDO.java b/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/dataobject/AccountDO.java index 05ded4e..62ef9ae 100644 --- a/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/dataobject/AccountDO.java +++ b/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/dataobject/AccountDO.java @@ -21,6 +21,10 @@ public class AccountDO { private String password; private String profileUrl; private Integer type; + /** + * gbs同步, 1-未同步, 2-同步 + */ + private Integer syncGbs; // ---- GBS默认字段 ---- private String deleteEnum; diff --git a/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/gatewayimpl/AccountGatewayImpl.java b/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/gatewayimpl/AccountGatewayImpl.java index b00a2a6..8c4ea76 100644 --- a/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/gatewayimpl/AccountGatewayImpl.java +++ b/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/gatewayimpl/AccountGatewayImpl.java @@ -10,6 +10,7 @@ import org.qinan.safetyeval.domain.query.PageResult; import org.qinan.safetyeval.infrastructure.dataobject.AccountDO; import org.qinan.safetyeval.infrastructure.mapper.AccountMapper; import org.qinan.safetyeval.infrastructure.support.InsertFieldDefaults; +import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; import org.springframework.util.StringUtils; @@ -28,6 +29,9 @@ public class AccountGatewayImpl implements AccountGateway { @Resource private AccountMapper accountMapper; + @Value("${def.tenantId:2067161116369793024L}") + private String tenantId; + @Override public AccountEntity save(AccountEntity entity) { AccountDO dataObject = toDO(entity); @@ -48,6 +52,7 @@ public class AccountGatewayImpl implements AccountGateway { public AccountEntity getByAccount(String account) { LambdaQueryWrapper wrapper = new LambdaQueryWrapper<>(); wrapper.eq(AccountDO::getAccount, account); + wrapper.eq(AccountDO::getTenantId, tenantId); wrapper.eq(AccountDO::getDeleteEnum, "false"); AccountDO dataObject = accountMapper.selectOne(wrapper); return toEntity(dataObject); @@ -98,6 +103,7 @@ public class AccountGatewayImpl implements AccountGateway { public AccountEntity foundByPhone(String phone) { LambdaQueryWrapper wrapper = new LambdaQueryWrapper<>(); wrapper.eq(AccountDO::getPhone, phone); + wrapper.eq(AccountDO::getTenantId, tenantId); wrapper.eq(AccountDO::getDeleteEnum, "false"); AccountDO dataObject = accountMapper.selectOne(wrapper); return toEntity(dataObject); @@ -128,6 +134,7 @@ public class AccountGatewayImpl implements AccountGateway { entity.setProfileUrl(dataObject.getProfileUrl()); entity.setType(dataObject.getType()); entity.setTenantId(dataObject.getTenantId()); + entity.setSyncGbs(dataObject.getSyncGbs()); return entity; } } diff --git a/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/gatewayimpl/OrgInfoGatewayImpl.java b/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/gatewayimpl/OrgInfoGatewayImpl.java index 600341f..c903336 100644 --- a/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/gatewayimpl/OrgInfoGatewayImpl.java +++ b/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/gatewayimpl/OrgInfoGatewayImpl.java @@ -18,8 +18,10 @@ import org.qinan.safetyeval.domain.query.OrgInfoQuery; import org.qinan.safetyeval.domain.query.PageResult; import org.qinan.safetyeval.infrastructure.adapter.auth.AuthUserContextAdapter; import org.qinan.safetyeval.infrastructure.adapter.gbs.GbsUserFacadeClient; +import org.qinan.safetyeval.infrastructure.dataobject.AccountDO; import org.qinan.safetyeval.infrastructure.dataobject.OrgInfoDO; import org.qinan.safetyeval.infrastructure.dataobject.OrgPersonnelDO; +import org.qinan.safetyeval.infrastructure.mapper.AccountMapper; import org.qinan.safetyeval.infrastructure.mapper.OrgInfoMapper; import org.qinan.safetyeval.infrastructure.mapper.OrgPersonnelMapper; import org.qinan.safetyeval.infrastructure.support.InsertFieldDefaults; @@ -58,12 +60,16 @@ public class OrgInfoGatewayImpl implements OrgInfoGateway { private GbsUserFacadeClient gbsUserFacadeClient; @Value("${def.password:a123456}") private String defPassword; + @Value("${def.tenantId:2067161116369793024L}") + private String tenantId; @Value("${def.publicKey:0402df2195296d4062ac85ad766994d73e871b887e18efb9a9a06b4cebc72372869b7da6c347c129dee2b46a0f279ff066b01c76208c2a052af75977c722a2ccee}") private String publicKey; @Value("${safety-eval.gbs-user-sync.fail-fast:true}") private boolean gbsUserSyncFailFast; + @Autowired + private AccountMapper accountMapper; @Override public OrgInfoEntity save(OrgInfoEntity entity) { @@ -71,6 +77,12 @@ public class OrgInfoGatewayImpl implements OrgInfoGateway { List orgInfoDOS = orgInfoMapper.selectList(new LambdaQueryWrapper() .eq(OrgInfoDO::getCreateId, entity.getRegisterUserId()).last("limit 1")); if (!CollectionUtils.isEmpty(orgInfoDOS)) { + if (entity.getId() != null) { + OrgInfoDO aDo = toDO(entity); + InsertFieldDefaults.applyForUpdate(aDo); + orgInfoMapper.updateById(aDo); + toEntity(aDo); + } return toEntity(orgInfoDOS.get(0)); } } @@ -258,6 +270,27 @@ public class OrgInfoGatewayImpl implements OrgInfoGateway { }); } + @Override + public OrgInfoEntity getByAccount(String data) { + AccountDO accountDO = accountMapper.selectOne(new LambdaQueryWrapper() + .eq(AccountDO::getAccount, data) + .eq(AccountDO::getDeleteEnum, "false") + .eq(AccountDO::getTenantId, tenantId)); + if (accountDO == null || accountDO.getId() == null) { + return null; + } + LambdaQueryWrapper lqw = new LambdaQueryWrapper() + .eq(OrgInfoDO::getCreateId, accountDO.getId()) + .eq(OrgInfoDO::getDeleteEnum, "false") + .eq(OrgInfoDO::getTenantId, tenantId); + lqw.last("limit 1").orderByDesc(OrgInfoDO::getId); + List dataObject = orgInfoMapper.selectList(lqw); + if (dataObject.isEmpty()) { + return null; + } + return toEntity(dataObject.get(0)); + } + private void syncGbsUser(String action, Runnable runnable) { try { runnable.run(); @@ -271,6 +304,7 @@ public class OrgInfoGatewayImpl implements OrgInfoGateway { private OrgInfoDO toDO(OrgInfoEntity entity) { OrgInfoDO dataObject = new OrgInfoDO(); + dataObject.setId(entity.getId()); dataObject.setUnitName(entity.getUnitName()); dataObject.setCreditCode(entity.getCreditCode()); dataObject.setSafetyIndustryCategoryCode(entity.getSafetyIndustryCategoryCode()); diff --git a/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/support/InsertFieldDefaults.java b/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/support/InsertFieldDefaults.java index d7885c0..93c656f 100644 --- a/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/support/InsertFieldDefaults.java +++ b/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/support/InsertFieldDefaults.java @@ -52,7 +52,7 @@ public final class InsertFieldDefaults { } Long tenantId = AuthUserContextAdapter.getCurrentTenantId(); if (tenantId == null) { - tenantId = 2069596397920849920L; + tenantId = 2067161116369793024L; } setIfNull(dataObject, "createId", userId); setIfNull(dataObject, "updateId", userId); diff --git a/safety-eval-start/src/main/resources/templates/safetyEval-h5/static/js/main.eb0b4da88d14f66c.js b/safety-eval-start/src/main/resources/templates/safetyEval-h5/static/js/main.eb0b4da88d14f66c.js new file mode 100644 index 0000000..72bb716 --- /dev/null +++ b/safety-eval-start/src/main/resources/templates/safetyEval-h5/static/js/main.eb0b4da88d14f66c.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports["jjb-micro-app:safetyEval-h5"]=t():e["jjb-micro-app:safetyEval-h5"]=t()}(self,()=>(()=>{var e,t,r,o,a,n,i={7555(e,t,r){"use strict";r.r(t)},2852(e,t,r){"use strict";r.r(t)},78176(e,t,r){"use strict";r.r(t)},92022(e,t,r){"use strict";r.r(t)},84896(e,t,r){"use strict";r.r(t)},2498(e,t,r){"use strict";r.r(t)},7323(e,t,r){"use strict";r.r(t)},38342(e,t,r){"use strict";r.r(t)},79165(e,t,r){"use strict";r.r(t)},17521(e,t,r){"use strict";r.r(t)},78793(e,t,r){"use strict";r.r(t)},30408(e,t,r){"use strict";r.r(t)},26950(e,t,r){"use strict";r.r(t)},71766(e,t,r){"use strict";r.r(t)},63334(e,t,r){"use strict";r.r(t)},17743(e,t,r){"use strict";r.r(t)},56824(e,t,r){"use strict";r.r(t)},75140(e,t,r){"use strict";r.r(t)},15183(e,t,r){"use strict";r.r(t)},12749(e,t,r){"use strict";r.r(t)},42816(e,t,r){"use strict";r.r(t)},41512(e,t,r){"use strict";r.r(t)},71019(e,t,r){"use strict";r.r(t)},68651(e,t,r){"use strict";r.r(t)},74427(e,t,r){"use strict";r.r(t)},77636(e,t,r){"use strict";r.r(t)},85865(e,t,r){"use strict";r.r(t)},16939(e,t,r){"use strict";r.r(t)},51160(e,t,r){"use strict";r.r(t)},57142(e,t,r){"use strict";r.r(t)},74099(e,t,r){"use strict";r.r(t)},10357(e,t,r){"use strict";r.r(t)},65416(e,t,r){"use strict";r.r(t)},93947(e,t,r){"use strict";r.r(t)},20193(e,t,r){"use strict";r.r(t)},91029(e,t,r){"use strict";r.r(t)},1060(e,t,r){"use strict";r.r(t)},47086(e,t,r){"use strict";r.r(t)},15271(e,t,r){"use strict";r.r(t)},41325(e,t,r){"use strict";r.r(t)},73742(e,t,r){"use strict";r.r(t)},4727(e,t,r){"use strict";r.r(t)},84927(e,t,r){"use strict";r.r(t)},24954(e,t,r){"use strict";r.r(t)},17004(e,t,r){"use strict";r.r(t)},82316(e,t,r){"use strict";r.r(t)},81500(e,t,r){"use strict";r.r(t)},84286(e,t,r){"use strict";r.r(t)},57994(e,t,r){"use strict";r.r(t)},80341(e,t,r){"use strict";r.r(t)},62211(e,t,r){"use strict";r.r(t)},58993(e,t,r){"use strict";r.r(t)},78707(){console.log("%c _ooOoo_\n o8888888o\n 88\" . \"88\n (| -_- |)\n O\\ = /O\n ____/`---'\\____\n . ' \\\\| |// `.\n / \\\\||| : |||// \\\n / _||||| -:- |||||- \\\n | | \\\\\\ - /// | |\n | \\_| ''\\---/'' | |\n \\ .-\\__ `-` ___/-. /\n ___`. .' /--.--\\ `. . __\n .\"\" '< `.___\\_<|>_/___.' >'\"\".\n | | : `- \\`.;`\\ _ /`;.`/ - ` : | |\n \\ \\ `-. \\_ __\\ /__ _/ .-` / /\n ======`-.____`-.___\\_____/___.-`____.-'======\n `=---='\n\n%c .............................................\n 佛祖保佑 永无BUG\n\n%c 佛曰:\n 写字楼里写字间,写字间里程序员;\n 程序人员写程序,又拿程序换酒钱。\n 酒醒只在网上坐,酒醉还来网下眠;\n 酒醉酒醒日复日,网上网下年复年。\n 但愿老死电脑间,不愿鞠躬老板前;\n 奔驰宝马贵者趣,公交自行程序员。\n 别人笑我忒疯癫,我笑自己命太贱;\n 不见满街漂亮妹,哪个归得程序员?","color:#ffd700","color:red","color:#1e80ff")},94e3(e,t,r){"use strict";r.r(t),r.d(t,{getWeather:()=>o});var o=(0,r(15501).CV)("biLoading","Get > https://api.map.baidu.com/weather/v1/?district_id=130300&data_type=all&ak=dIqOi34IlTg5FkNck1vqoBpLhPAj36S1")},91647(e,t,r){"use strict";r.r(t),r.d(t,{queryDriverConfig:()=>o});var o=(0,r(15501).CV)("queryDriverConfigLoading","Get > /safetyEval/org-department/checkTerminalType",function(e){var t=null==e?void 0:e.data;return{driverConfig:(null==e?void 0:e.success)===!0&&(1===t||2===t)?t:null}})},47662(e,t,r){"use strict";r.r(t)},75876(e,t,r){"use strict";r.r(t),r.d(t,{orgInfoSave:()=>i,registerAction:()=>n,sendMessageAction:()=>a,syncUserToGBS:()=>s});var o=r(15501),a=(0,o.CV)("sendMessageLoading","Post > @/safetyEval/images/account/sendMessage"),n=(0,o.CV)("registerLoading","Post > @/safetyEval/images/account/save"),i=(0,o.CV)("registerLoading","Post > @/safetyEval/images/org-info/save"),s=(0,o.CV)("syncUserToGBSLoading","Get > /safetyEval/images/account/syncUserToGBS")},81506(e,t,r){"use strict";r.r(t),r.d(t,{NS_BI:()=>n,NS_DRIVER:()=>i,NS_GLOBAL:()=>a,NS_REGISTER:()=>s});var o=r(15501),a=(0,o.Hx)("global"),n=(0,o.Hx)("bi"),i=(0,o.Hx)("driver"),s=(0,o.Hx)("register")},99682(e,t,r){"use strict";r.r(t),r.d(t,{bootstrap:()=>g,mount:()=>f,unmount:()=>m});var o,a,n,i=r(51278),s=r(15501),c=r(14331),l=r(82908),d=r.n(l);function u(){var e,t,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",a=r.toStringTag||"@@toStringTag";function n(r,o,a,n){var c=Object.create((o&&o.prototype instanceof s?o:s).prototype);return y(c,"_invoke",function(r,o,a){var n,s,c,l=0,d=a||[],u=!1,y={p:0,n:0,v:e,a:x,f:x.bind(e,4),d:function(t,r){return n=t,s=0,c=e,y.n=r,i}};function x(r,o){for(s=r,c=o,t=0;!u&&l&&!a&&t3?(a=p===o)&&(c=n[(s=n[4])?5:(s=3,3)],n[4]=n[5]=e):n[0]<=x&&((a=r<2&&xo||o>p)&&(n[4]=r,n[5]=o,y.n=p,s=0))}if(a||r>1)return i;throw u=!0,o}return function(a,d,p){if(l>1)throw TypeError("Generator is already running");for(u&&1===d&&x(d,p),s=d,c=p;(t=s<2?e:c)||!u;){n||(s?s<3?(s>1&&(y.n=-1),x(s,c)):y.n=c:y.v=c);try{if(l=2,n){if(s||(a="next"),t=n[a]){if(!(t=t.call(n,c)))throw TypeError("iterator result is not an object");if(!t.done)return t;c=t.value,s<2&&(s=0)}else 1===s&&(t=n.return)&&t.call(n),s<2&&(c=TypeError("The iterator does not provide a '"+a+"' method"),s=1);n=e}else if((t=(u=y.n<0)?c:r.call(o,y))!==i)break}catch(t){n=e,s=1,c=t}finally{l=1}}return{value:t,done:u}}}(r,a,n),!0),c}var i={};function s(){}function c(){}function l(){}t=Object.getPrototypeOf;var d=l.prototype=s.prototype=Object.create([][o]?t(t([][o]())):(y(t={},o,function(){return this}),t));function x(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,l):(e.__proto__=l,y(e,a,"GeneratorFunction")),e.prototype=Object.create(d),e}return c.prototype=l,y(d,"constructor",l),y(l,"constructor",c),c.displayName="GeneratorFunction",y(l,a,"GeneratorFunction"),y(d),y(d,a,"Generator"),y(d,o,function(){return this}),y(d,"toString",function(){return"[object Generator]"}),(u=function(){return{w:n,m:x}})()}function y(e,t,r,o){var a=Object.defineProperty;try{a({},"",{})}catch(e){a=0}(y=function(e,t,r,o){function n(t,r){y(e,t,function(e){return this._invoke(t,r,e)})}t?a?a(e,t,{value:r,enumerable:!o,configurable:!o,writable:!o}):e[t]=r:(n("next",0),n("throw",1),n("return",2))})(e,t,r,o)}function x(e,t,r,o,a,n,i){try{var s=e[n](i),c=s.value}catch(e){return void r(e)}s.done?t(c):Promise.resolve(c).then(o,a)}function p(e){return function(){var t=this,r=arguments;return new Promise(function(o,a){var n=e.apply(t,r);function i(e){x(n,o,a,i,s,"next",e)}function s(e){x(n,o,a,i,s,"throw",e)}i(void 0)})}}r(53494),r(78707),r(82867),r(56220),d().locale("zh-cn"),(0,i.setJJBCommonAntdMessage)(c.Ay);var h=(0,s.mj)();window.__POWERED_BY_QIANKUN__||(window.__coreLib={},window.__coreLib.React=r(30758),window.__coreLib.ReactDOM=r(8143),window.__coreLib.jjbCommonLib=r(51278));var f=(o=p(u().m(function e(t){return u().w(function(e){for(;;)switch(e.n){case 0:window.__coreLib.React=r(30758),window.__coreLib.ReactDOM=r(8143),window.__coreLib.jjbCommonLib=r(51278),h.mount(t);case 1:return e.a(2)}},e)})),function(e){return o.apply(this,arguments)}),m=(a=p(u().m(function e(t){return u().w(function(e){for(;;)if(0===e.n)return e.a(2,h.unmount(t))},e)})),function(e){return a.apply(this,arguments)}),g=(n=p(u().m(function e(t){return u().w(function(e){for(;;)if(0===e.n)return e.a(2,h.bootstrap(t))},e)})),function(e){return n.apply(this,arguments)})},26263(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>i});var o=r(28404);function a(){window.close(),setTimeout(function(){if(!window.closed&&!window.opener){var e,t,r=(null==(e=window.__JJB_ENVIRONMENT__)?void 0:e.API_HOST)||(null==(t=window.process)||null==(t=t.env)||null==(t=t.app)?void 0:t.API_HOST)||"https://gbs-gateway.qhdsafety.com/";window.location.href=r.endsWith("/")?r:"".concat(r,"/")}},500)}var n=r(86070);function i(e){var t=e.theme,r=e.className;return(0,n.jsxs)("div",{className:"driver-back driver-back--".concat(void 0===t?"light":t," ").concat(void 0===r?"":r).trim(),onClick:a,children:[(0,n.jsx)("img",{src:o.A,alt:""}),(0,n.jsx)("span",{children:"返回"})]})}},38004(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>M});var o=r(30758),a=r(15501),n=r(22207),i=r(6739),s=r(81506),c=r(26263),l=r(75270),d=r(69102);function u(e,t){var r="u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=y(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var o=0,a=function(){};return{s:a,n:function(){return o>=e.length?{done:!0}:{done:!1,value:e[o++]}},e:function(e){throw e},f:a}}throw TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var n,i=!0,s=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return i=e.done,e},e:function(e){s=!0,n=e},f:function(){try{i||null==r.return||r.return()}finally{if(s)throw n}}}}function y(e,t){if(e){if("string"==typeof e)return x(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?x(e,t):void 0}}function x(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rtypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var r,o,a,n,i=[],s=!0,c=!1;try{a=(t=t.call(e)).next,!1;for(;!(s=(r=a.call(t)).done)&&(i.push(r.value),2!==i.length);s=!0);}catch(e){c=!0,o=e}finally{try{if(!s&&null!=t.return&&(n=t.return(),Object(n)!==n))return}finally{if(c)throw o}}return i}}(i)||y(i,2)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),c=s[0],l=s[1];l&&(r[c]=l)}}catch(e){n.e(e)}finally{n.f()}}catch(e){}return r}function f(e){if(!e)return{};try{return h(new URL(e,window.location.origin).search)}catch(r){var t=e.indexOf("?");if(-1===t)return{};return h(e.slice(t))}}function m(){var e,t,r,o=function(){for(var e={},t=arguments.length,r=Array(t),o=0;o3?(a=p===o)&&(c=n[(s=n[4])?5:(s=3,3)],n[4]=n[5]=e):n[0]<=x&&((a=r<2&&xo||o>p)&&(n[4]=r,n[5]=o,y.n=p,s=0))}if(a||r>1)return i;throw u=!0,o}return function(a,d,p){if(l>1)throw TypeError("Generator is already running");for(u&&1===d&&x(d,p),s=d,c=p;(t=s<2?e:c)||!u;){n||(s?s<3?(s>1&&(y.n=-1),x(s,c)):y.n=c:y.v=c);try{if(l=2,n){if(s||(a="next"),t=n[a]){if(!(t=t.call(n,c)))throw TypeError("iterator result is not an object");if(!t.done)return t;c=t.value,s<2&&(s=0)}else 1===s&&(t=n.return)&&t.call(n),s<2&&(c=TypeError("The iterator does not provide a '"+a+"' method"),s=1);n=e}else if((t=(u=y.n<0)?c:r.call(o,y))!==i)break}catch(t){n=e,s=1,c=t}finally{l=1}}return{value:t,done:u}}}(r,a,n),!0),c}var i={};function s(){}function c(){}function l(){}t=Object.getPrototypeOf;var d=l.prototype=s.prototype=Object.create([][o]?t(t([][o]())):(N(t={},o,function(){return this}),t));function u(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,l):(e.__proto__=l,N(e,a,"GeneratorFunction")),e.prototype=Object.create(d),e}return c.prototype=l,N(d,"constructor",l),N(l,"constructor",c),c.displayName="GeneratorFunction",N(l,a,"GeneratorFunction"),N(d),N(d,a,"Generator"),N(d,o,function(){return this}),N(d,"toString",function(){return"[object Generator]"}),(C=function(){return{w:n,m:u}})()}function N(e,t,r,o){var a=Object.defineProperty;try{a({},"",{})}catch(e){a=0}(N=function(e,t,r,o){function n(t,r){N(e,t,function(e){return this._invoke(t,r,e)})}t?a?a(e,t,{value:r,enumerable:!o,configurable:!o,writable:!o}):e[t]=r:(n("next",0),n("throw",1),n("return",2))})(e,t,r,o)}function k(e,t,r,o,a,n,i){try{var s=e[n](i),c=s.value}catch(e){return void r(e)}s.done?t(c):Promise.resolve(c).then(o,a)}function I(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return A(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?A(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function A(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rl}),r(87578);var o=r(30758);function a(e){return(a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}r(86070);function n(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(e){}return(n=function(){return!!e})()}function i(e){return(i=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function s(e,t){return(s=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e})(e,t)}function c(e){var t=function(e,t){if("object"!=a(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,t||"default");if("object"!=a(o))return o;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"==a(t)?t:t+""}var l=function(e){var t;function r(){var e,t,o,s,l,d;if(!(this instanceof r))throw TypeError("Cannot call a class as a function");for(var u=arguments.length,y=Array(u),x=0;xo});let o=r(6601).default},3829(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>d});var o=r(30758),a=r(61984),n=r(85478),i=r(86070),s="#5b8ff9",c="#ffb33e";function l(e){var t=e.option,r=e.className,n=(0,o.useRef)(null),s=(0,o.useRef)(null);return(0,o.useEffect)(function(){if(n.current){s.current=a.Ts(n.current,null,{renderer:"svg"});var e=function(){return s.current&&s.current.resize()},t="u">typeof ResizeObserver?new ResizeObserver(e):null;return t&&t.observe(n.current),window.addEventListener("resize",e),function(){window.removeEventListener("resize",e),t&&t.disconnect(),s.current&&s.current.dispose(),s.current=null}}},[]),(0,o.useEffect)(function(){s.current&&s.current.setOption(t,!0)},[t]),(0,i.jsx)("div",{className:r,ref:n})}function d(e){var t=e.data,r=(0,o.useMemo)(function(){return{color:[s,c],grid:{left:38,right:10,top:26,bottom:46},tooltip:{trigger:"axis",axisPointer:{type:"shadow",shadowStyle:{color:"rgba(91, 143, 249, .08)"}},backgroundColor:"#fff",borderColor:"#e9edf4",borderWidth:1,textStyle:{color:"#333",fontSize:12}},xAxis:{type:"category",data:t.categories,axisTick:{show:!1},axisLine:{lineStyle:{color:"#edf0f5"}},axisLabel:{color:"#666",fontSize:12,interval:0,width:58,overflow:"break",lineHeight:14}},yAxis:{type:"value",min:0,max:60,splitNumber:6,axisLabel:{color:"#8792a2",fontSize:12},splitLine:{lineStyle:{color:"#e9edf4",type:"dashed"}}},series:[{name:"项目数",type:"bar",barWidth:12,data:t.projectCount,itemStyle:{borderRadius:[2,2,0,0]}},{name:"金额",type:"bar",barWidth:12,data:t.amount,itemStyle:{borderRadius:[2,2,0,0]}}]}},[t]);return(0,i.jsx)(n.A,{title:(0,i.jsx)("span",{className:"institution-card-title",children:"服务企业类型统计"}),size:"small",className:"institution-panel-card institution-enterprise-card",styles:{body:{padding:"20px 26px 15px"}},extra:(0,i.jsxs)("div",{className:"institution-chart-legend institution-chart-legend--top",children:[(0,i.jsxs)("span",{children:[(0,i.jsx)("i",{style:{backgroundColor:s}}),"项目数"]}),(0,i.jsxs)("span",{children:[(0,i.jsx)("i",{style:{backgroundColor:c}}),"金额"]})]}),children:(0,i.jsx)(l,{className:"institution-bar-chart",option:r})})}},15909(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>l}),r(30758);var o=r(16959),a=r(11486),n=r(70417),i=r(86070),s={Star:o.A,Audit:a.A,UserDelete:n.A};function c(e){var t=e.item,r=s[t.icon]||a.A;return(0,i.jsxs)("div",{className:"institution-alert-item",style:{backgroundColor:t.bgColor},children:[(0,i.jsx)("div",{className:"institution-alert-item__icon",style:{backgroundColor:t.color},children:(0,i.jsx)(r,{})}),(0,i.jsxs)("div",{className:"institution-alert-item__content",children:[(0,i.jsx)("div",{className:"institution-alert-item__title",children:t.title}),(0,i.jsx)("div",{className:"institution-alert-item__value",children:t.value})]})]})}function l(e){var t=e.data;return(0,i.jsx)("div",{className:"institution-alert-grid",children:t.map(function(e){return(0,i.jsx)(c,{item:e},e.key)})})}},83300(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>s}),r(30758);var o=r(85478),a=r(20568),n=r(86070),i=[{title:"序号",dataIndex:"id",key:"id",width:70,align:"center"},{title:"项目名称",dataIndex:"projectName",key:"projectName",ellipsis:!0},{title:"项目状态",dataIndex:"status",key:"status",width:120,align:"center"},{title:"项目负责人",dataIndex:"projectLeader",key:"projectLeader",width:120,align:"center"},{title:"客户负责人",dataIndex:"clientLeader",key:"clientLeader",width:120,align:"center"},{title:"项目开始时间",dataIndex:"startDate",key:"startDate",width:180,align:"center"},{title:"项目结束时间",dataIndex:"endDate",key:"endDate",width:180,align:"center"},{title:"项目阶段",dataIndex:"acceptanceDate",key:"acceptanceDate",width:180,align:"center"},{title:"操作",key:"action",width:110,align:"center",render:function(){return(0,n.jsx)("a",{className:"institution-table-link",children:"查看详情"})}}];function s(e){var t=e.data;return(0,n.jsx)(o.A,{title:(0,n.jsx)("span",{className:"institution-card-title",children:"项目完成情况统计"}),size:"small",className:"institution-panel-card institution-table-card",styles:{body:{padding:"12px 14px 14px"}},children:(0,n.jsx)(a.A,{className:"institution-completion-table",columns:i,dataSource:t,rowKey:"id",pagination:!1,size:"small",scroll:{x:1180}})})}},54605(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>l});var o=r(30758),a=r(61984),n=r(85478),i=r(86070);function s(e){var t=e.option,r=e.className,n=(0,o.useRef)(null),s=(0,o.useRef)(null);return(0,o.useEffect)(function(){if(n.current){s.current=a.Ts(n.current,null,{renderer:"svg"});var e=function(){return s.current&&s.current.resize()},t="u">typeof ResizeObserver?new ResizeObserver(e):null;return t&&t.observe(n.current),window.addEventListener("resize",e),function(){window.removeEventListener("resize",e),t&&t.disconnect(),s.current&&s.current.dispose(),s.current=null}}},[]),(0,o.useEffect)(function(){s.current&&s.current.setOption(t,!0)},[t]),(0,i.jsx)("div",{className:r,ref:n})}function c(e){var t=e.data;return(0,i.jsx)("div",{className:"institution-project-legend",children:t.map(function(e){return(0,i.jsxs)("span",{children:[(0,i.jsx)("i",{style:{backgroundColor:e.color}}),e.name]},e.name)})})}function l(e){var t=e.data,r=e.total||t.reduce(function(e,t){return e+t.value},0),a=(0,o.useMemo)(function(){return{color:t.map(function(e){return e.color}),tooltip:{trigger:"item",backgroundColor:"#fff",borderColor:"#e9edf4",borderWidth:1,textStyle:{color:"#333",fontSize:12},formatter:"{b}
项目数:{c}
占比:{d}%"},series:[{name:"项目类型占比",type:"pie",radius:["46%","74%"],center:["50%","50%"],avoidLabelOverlap:!0,minAngle:5,label:{show:!1},labelLine:{show:!1},itemStyle:{borderColor:"#fff",borderWidth:2},emphasis:{scale:!0,scaleSize:4},data:t.map(function(e){return{name:e.name,value:e.value}})}],graphic:[{type:"text",left:"center",top:"42%",style:{text:"项目总数",textAlign:"center",fill:"#a0a7b2",fontSize:15,fontWeight:600}},{type:"text",left:"center",top:"53%",style:{text:String(r),textAlign:"center",fill:"#111827",fontSize:24,fontWeight:700}}]}},[t,r]);return(0,i.jsxs)(n.A,{title:(0,i.jsx)("span",{className:"institution-card-title",children:"项目类型占比"}),size:"small",className:"institution-panel-card institution-project-card",styles:{body:{padding:"24px 22px 18px"}},children:[(0,i.jsx)(s,{className:"institution-donut-chart",option:a}),(0,i.jsx)(c,{data:t})]})}},73175(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>m}),r(30758);var o=r(45259),a=r(28603),n=r(81165),i=r(69016),s=r(61060),c=r(88984),l=r(53302),d=r(95893),u=r(65945),y=r(52608),x=r(11486),p=r(86070),h={FileDone:o.A,LineChart:a.A,Appstore:n.A,FileProtect:i.A,Safety:s.A,Profile:c.A,Notification:l.A,Read:d.A,Compass:u.A,Database:y.A,Audit:x.A};function f(e){var t=e.item,r=h[t.icon]||o.A;return(0,p.jsxs)("div",{className:"institution-stat-card",children:[(0,p.jsx)("div",{className:"institution-stat-card__icon",style:{backgroundColor:t.bgColor},children:(0,p.jsx)(r,{})}),(0,p.jsxs)("div",{className:"institution-stat-card__content",children:[(0,p.jsx)("div",{className:"institution-stat-card__title",children:t.title}),(0,p.jsx)("div",{className:"institution-stat-card__value",children:t.value})]})]})}function m(e){var t=e.data;return(0,p.jsx)("div",{className:"institution-stat-grid",children:t.map(function(e){return(0,p.jsx)(f,{item:e},e.key)})})}},6601(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>x}),r(30758);var o=r(85478),a=r(21121),n=r(26263),i=r(73175),s=r(15909),c=r(3829),l=r(54605),d=r(83300),u=r(33027),y=r(86070);function x(){return(0,y.jsxs)("div",{className:"institution-dashboard",children:[(0,y.jsx)("div",{className:"institution-dashboard__toolbar",children:(0,y.jsx)(n.default,{})}),(0,y.jsxs)("div",{className:"institution-dashboard__top",children:[(0,y.jsx)(o.A,{title:(0,y.jsx)("span",{className:"institution-card-title",children:"当前评价状态状态统计"}),size:"small",className:"institution-dashboard__status-card institution-panel-card",extra:(0,y.jsxs)(a.A,{size:30,className:"institution-dashboard__summary",children:[(0,y.jsxs)("span",{children:["项目总数: ",(0,y.jsx)("strong",{className:"is-blue",children:u.PROJECT_SUMMARY.total})]}),(0,y.jsxs)("span",{children:["超期数: ",(0,y.jsx)("strong",{className:"is-blue",children:u.PROJECT_SUMMARY.overdue})]})]}),styles:{body:{padding:"16px 34px 17px"}},children:(0,y.jsx)(i.default,{data:u.STATISTIC_CARDS})}),(0,y.jsx)(o.A,{title:(0,y.jsx)("span",{className:"institution-card-title",children:"信息提醒"}),size:"small",className:"institution-dashboard__alerts-card institution-panel-card",styles:{body:{padding:"20px 24px"}},children:(0,y.jsx)(s.default,{data:u.INFO_ALERTS})})]}),(0,y.jsxs)("div",{className:"institution-dashboard__charts",children:[(0,y.jsx)(c.default,{data:u.ENTERPRISE_TYPE_STATS}),(0,y.jsx)(l.default,{data:u.PROJECT_TYPE_DISTRIBUTION,total:u.PROJECT_TOTAL})]}),(0,y.jsx)(d.default,{data:u.PROJECT_COMPLETION_LIST})]})}},33027(e,t,r){"use strict";r.r(t),r.d(t,{ENTERPRISE_TYPE_STATS:()=>i,INFO_ALERTS:()=>a,PROJECT_COMPLETION_LIST:()=>l,PROJECT_SUMMARY:()=>n,PROJECT_TOTAL:()=>c,PROJECT_TYPE_DISTRIBUTION:()=>s,STATISTIC_CARDS:()=>o});var o=[{key:"contract",title:"项目合同签订",value:5632,icon:"FileDone",color:"#409eff",bgColor:"#409eff"},{key:"riskAnalysis",title:"待风险分析",value:951,icon:"LineChart",color:"#8b7cf6",bgColor:"#8b7cf6"},{key:"projectTeam",title:"待成立项目组",value:5632,icon:"Appstore",color:"#48d1bd",bgColor:"#48d1bd"},{key:"workPlan",title:"待制定工作计划",value:5632,icon:"FileProtect",color:"#ff9f43",bgColor:"#ff9f43"},{key:"initialEval",title:"待初提",value:5632,icon:"Safety",color:"#8b7cf6",bgColor:"#8b7cf6"},{key:"checklist",title:"待编制检查表",value:456,icon:"Profile",color:"#8b7cf6",bgColor:"#8b7cf6"},{key:"industryNotice",title:"待从业告知",value:5632,icon:"Notification",color:"#ffb12a",bgColor:"#ffb12a"},{key:"siteSurvey",title:"待现场勘查",value:5632,icon:"Read",color:"#8b7cf6",bgColor:"#8b7cf6"},{key:"processControl",title:"过程管控",value:951,icon:"Compass",color:"#409eff",bgColor:"#409eff"},{key:"archive",title:"归档",value:651,icon:"Database",color:"#08bea7",bgColor:"#08bea7"}],a=[{key:"orgQualification",title:"机构资质到期",value:5,icon:"Star",color:"#ffca0a",bgColor:"#fff9e7"},{key:"personnelQualification",title:"人员资质到期",value:35,icon:"Audit",color:"#ff7a59",bgColor:"#fff3ef"},{key:"personnelResignation",title:"人员离岗信息",value:56,icon:"UserDelete",color:"#6395f9",bgColor:"#f1f6ff"}],n={total:5632,overdue:56},i={categories:["矿山开采业","危险化学品行业","烟花爆竹行业","金属冶炼与加工","建筑施工","交通运输业","消防重点单位","特种设备相关企业","涉爆粉尘企业"],projectCount:[42,35,33,35,24,42,36,42,32],amount:[52,54,29,48,39,36,56,35,45]},s=[{name:"定期检测",value:5054,color:"#3f7df4"},{name:"现状评价",value:1540,color:"#63c174"},{name:"控制效果评价",value:1600,color:"#ffa533"},{name:"预评价",value:900,color:"#ff694f"},{name:"设计专篇",value:430,color:"#23c6c8"},{name:"委托检测",value:330,color:"#55c653"}],c=9854,l=[{id:1,projectName:"玉田县志达贸易有限公司蓝兴加油站、LNG加气设施合并项目",status:"检测完成",projectLeader:"梁永利",clientLeader:"赵天祥",startDate:"2025-5-4 16:12:23",endDate:"2025-5-4 16:12:23",acceptanceDate:"2025-5-4 16:12:23"},{id:2,projectName:"北京首钢铁合金有限公司迁安分公司包芯线生产线扩建项目",status:"检测完成",projectLeader:"梁永利",clientLeader:"赵天祥",startDate:"2025-5-4 16:12:23",endDate:"2025-5-4 16:12:23",acceptanceDate:"2025-5-4 16:12:23"},{id:3,projectName:"中特伟业科技有限公司沧州金固废回收利用项目",status:"检测完成",projectLeader:"梁永利",clientLeader:"赵天祥",startDate:"2025-5-4 16:12:23",endDate:"2025-5-4 16:12:23",acceptanceDate:"2025-5-4 16:12:23"},{id:4,projectName:"荣信钢铁有限公司整合重组装备更新一期工程项目安全预评价",status:"检测完成",projectLeader:"梁永利",clientLeader:"赵天祥",startDate:"2025-5-4 16:12:23",endDate:"2025-5-4 16:12:23",acceptanceDate:"2025-5-4 16:12:23"}]},32128(e,t,r){"use strict";r.r(t),r.d(t,{branchOfficeUtilsList:()=>k});var o=r(10364),a=r(68471),n=r(22894),i=r(40609),s=r(19480),c=r(65235),l=r(26378),d=r(2973),u=r(69940),y=r(93766),x=r(62511),p=r(40052),h=r(61181),f=r(68386),m=r(32043),g=r(66640),b=r(82393),z=r(40471),v=r(43884),j=r(26773),C=r(41022),N=r(12359),k=[{label:"重点作业",type:"danger",list:[{label:"动火作业",type:"hotWork",check:!1,mapIcon:u.A},{label:"受限空间作业",type:"confinedSpace",check:!1,mapIcon:y.A},{label:"临时用电作业",type:"electricity",check:!1,mapIcon:x.A},{label:"高处作业",type:"highWork",check:!1,mapIcon:p.A},{label:"断路作业",type:"cutRoad",check:!1,mapIcon:h.A},{label:"动土作业",type:"breakGround",check:!1,mapIcon:f.A},{label:"吊装作业",type:"hoisting",check:!1,mapIcon:m.A},{label:"盲板抽堵作业",type:"blindBoard",check:!1,mapIcon:g.A},{label:"摄像头",check:!1,type:"camera",mapIcon:n.A}]},{label:"口门门禁",type:"door",list:[{label:"口门",check:!1,mapIcon:o.A,type:"car"},{label:"人员",check:!1,mapIcon:N.A,type:"person"},{label:"车辆",check:!1,mapIcon:a.A,type:"car"},{label:"人员闸机",check:!1,type:"personMachine"},{label:"车辆闸机",check:!1,type:"carMachine"},{label:"摄像头",check:!1,type:"camera",mapIcon:n.A}]},{label:"消防安全",type:"fire",list:[{label:"消防救援队",check:!1,mapIcon:i.A,type:"xfjyd01"},{label:"消防控制室",check:!1,type:"xfkzs01",mapIcon:s.A},{label:"消防泵房",check:!1,type:"xfbf01",mapIcon:c.A},{label:"消防水源",check:!1,type:"xfsy01",mapIcon:l.A},{label:"消防点位",check:!1,type:"point",mapIcon:d.A},{label:"报警设备",check:!1,type:"alarm",mapIcon:C.A}]},{label:"人员定位",type:"people",list:[{label:"人员定位",check:!1,type:"peoplePosition"},{label:"人员轨迹",check:!1,type:"peopleTrajectory"}]},{label:"气象监测",type:"weather",list:[{label:"气象站",type:"293187ddfd984c9ab3fd716aef58da0e",check:!1,mapIcon:b.A},{label:"风速站",type:"2da29f00852a4653ba3e760b9de57412",check:!1,mapIcon:z.A}]},{label:"重点工程",type:"project",list:[{label:"重点工程定位",check:!1,type:"project",mapIcon:v.A},{label:"视频定位",check:!1,type:"video",mapIcon:j.A}]},{label:"视频巡屏",type:"camera",list:[{label:"摄像头",check:!1,type:"platCamera",mapIcon:n.A}]},{label:"封闭区域",type:"closedArea",list:[]}]},26489(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>v});var o=r(3137),a=r(14455),n=r(40306),i=r(30758);let s=r.p+"safetyEval-h5/static/images/bg7.7a7491db6cf4c3c8cba55e4003a35fdb.png",c=r.p+"safetyEval-h5/static/images/bg8.6bd9a4d8f5b81ed3e80e440982374ea2.png",l=r.p+"safetyEval-h5/static/images/title.b468d46c39cdff84263af6aeeb539be5.png",d=r.p+"safetyEval-h5/static/images/title_on.336b3cc407647c498e335e51e2f4323f.png";var u=r(32128),y=r(35122),x=r(47),p=r(70284),h=r(7183),f=r(61728),m=r(97739),g=r(74292),b=r(86070);function z(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rtypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var r,o,a,n,i=[],s=!0,c=!1;try{a=(t=t.call(e)).next,!1;for(;!(s=(r=a.call(t)).done)&&(i.push(r.value),2!==i.length);s=!0);}catch(e){c=!0,o=e}finally{try{if(!s&&null!=t.return&&(n=t.return(),Object(n)!==n))return}finally{if(c)throw o}}return i}}(t)||function(e){if(e){if("string"==typeof e)return z(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?z(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),I=k[0],A=k[1],E=(0,f.useBottomUtilsAnimation)(!j&&v&&!C,!j&&v&&C),S=E.controls,M=E.displayedMode,w=E.isVisible,O=(0,m.useBranchOfficeUtilsAnimation)(),P=O.containerVariants,_=O.itemVariants,H=(0,g.usePortUtilsAnimation)(h.portUtilsList.length,N,"port"===M),T=H.parentControls,R=H.childControls,U=H.optionRefs,D=H.isAnimating,L=H.hasInteracted,F=H.shouldHideInactive,W=H.animationConfig,B=function(){A((0,o.jM)(function(e){e.forEach(function(e){e.list.forEach(function(e){e.check=!1})})}))};(0,i.useEffect)(function(){"port"===M?A(h.portUtilsList):"branchOffice"===M?A(u.branchOfficeUtilsList):A([])},[M]),(0,i.useEffect)(function(){return x.default.on(p.resetBottomCurrentIndexMittKey,function(){e.setBottomUtilsCurrentIndex(-1)}),x.default.on(p.resetAllBottomUtilsCheckMittKey,function(){B()}),x.default.on(p.deletePeoplePositionPointMittKey,function(){}),function(){x.default.off(p.resetBottomCurrentIndexMittKey),x.default.off(p.resetAllBottomUtilsCheckMittKey),x.default.off(p.deletePeoplePositionPointMittKey)}},[]);var q=function(t){e.setBottomUtilsCurrentIndex(N===t?-1:t)},G=function(e,t,r,a){A((0,o.jM)(function(r){r[e].list[t].check=!r[e].list[t].check}))};return(0,b.jsx)("div",{className:"map_content_bottom_utils_container",children:(0,b.jsx)(a.PY1.div,{className:"port"===M?"bottom_utils port":"bottom_utils branch_office",animate:S,children:w&&(0,b.jsxs)(b.Fragment,{children:[function(){if("port"===M)return I.map(function(e,t){var r,o=N===t,n=-1!==N&&!o&&F;return(0,b.jsxs)(a.PY1.div,{ref:function(e){return U.current[t]=e},className:"option",animate:!!L&&T[t],onClick:function(){return!D&&!n&&q(t)},style:{cursor:n?"default":"pointer",zIndex:n?-1:0},children:[(0,b.jsx)("img",{src:o?e.checkImg:e.img,alt:"",className:"img"}),(0,b.jsx)("div",{className:"label",style:{backgroundImage:"url(".concat(o?d:l,")")},children:e.label}),o&&(0,b.jsx)(a.PY1.div,{className:"child_items",animate:R,initial:{opacity:0},children:null==(r=e.list)?void 0:r.map(function(r,o){return(0,b.jsxs)(a.PY1.div,{className:"child_item",initial:{opacity:0},animate:{opacity:1},transition:{delay:o*W.staggerDelay},onClick:function(a){a.stopPropagation(),G(t,o,e,r)},children:[(0,b.jsx)("img",{src:r.check?r.checkImg:r.img,alt:"",className:"child_img"}),(0,b.jsx)("div",{className:"child_label",children:r.label})]},o)})})]},t)})}(),function(){if("branchOffice"===M)return I.map(function(e,t){var r,o,i=N===t;return(0,b.jsxs)("div",{className:"option",style:{backgroundImage:"url(".concat(i?s:c,")")},onClick:function(){return q(t)},children:[(0,b.jsx)("div",{className:"label",children:e.label}),(0,b.jsx)(n.N,{children:i&&(null==(r=e.list)?void 0:r.length)>0&&(0,b.jsx)(a.PY1.div,{className:"items",initial:"hidden",animate:"visible",exit:"hidden",variants:P,children:null==(o=e.list)?void 0:o.map(function(r,o){return(0,b.jsx)(a.PY1.div,{className:"item ".concat(r.check?"active":""),onClick:function(a){a.stopPropagation(),G(t,o,e,r)},variants:_,children:(0,b.jsx)("div",{className:"child_label",children:r.label})},o)})})})]},t)})}()]})})})}},7183(e,t,r){"use strict";r.r(t),r.d(t,{portUtilsList:()=>eP});let o=r.p+"safetyEval-h5/static/images/img4.82d3d9e2af82ced2c48b432ed870f265.png",a=r.p+"safetyEval-h5/static/images/img4_on.a24384c2bded7cb3444e1f3699be8d93.png",n=r.p+"safetyEval-h5/static/images/img5.953d75db87efbd4a14e83a7fe5caebd7.png",i=r.p+"safetyEval-h5/static/images/img5_on.06b96531803519a70a26d8f0e2ca18f3.png",s=r.p+"safetyEval-h5/static/images/img6.4ce34a2cccd2b841eabd543e2275c975.png",c=r.p+"safetyEval-h5/static/images/img6_on.cb6032a75fd2618230b9cef202dcdc80.png",l=r.p+"safetyEval-h5/static/images/img7.83c29ed27b70480cdfca592d3fc1bcc7.png",d=r.p+"safetyEval-h5/static/images/img7_on.8098c93ead248b6e3488409ecd8e58c7.png",u=r.p+"safetyEval-h5/static/images/img8.3f35970a8ebf7d8574cfeced4c740551.png",y=r.p+"safetyEval-h5/static/images/img8_on.574e08825513604f70981849d4e451ac.png",x=r.p+"safetyEval-h5/static/images/img10.1a224122da8dec5a19303aebad1e3e96.png",p=r.p+"safetyEval-h5/static/images/img10_on.b0087a31325bac00ad631534dbace0b9.png",h=r.p+"safetyEval-h5/static/images/img12.606dd0b9e693abc498d46be73c665b59.png",f=r.p+"safetyEval-h5/static/images/img12_on.f3b8c7d78f3f37d4469bd7baf5f94258.png",m=r.p+"safetyEval-h5/static/images/img13.664828f1b30d6b8ae4eec0a000c334b5.png",g=r.p+"safetyEval-h5/static/images/img13_on.6579cfaaa78d23cf646f9c396a420f08.png",b=r.p+"safetyEval-h5/static/images/ico1.8fb04009e99f58b0bc63ff1840f52a84.png",z=r.p+"safetyEval-h5/static/images/ico1_on.858baf9ab83cfcad9ef3205dc23f0a10.png",v=r.p+"safetyEval-h5/static/images/ico2.36d70a2b5e288c3fbb9ad6557bb89168.png",j=r.p+"safetyEval-h5/static/images/ico2_on.c6f9a93e7324b40c7a4c9ec8f30299f7.png",C=r.p+"safetyEval-h5/static/images/ico3.5582e66a60654dcfdc686d215e286fa0.png",N=r.p+"safetyEval-h5/static/images/ico3_on.cc26cfa4f577181377845ed0f964136f.png",k=r.p+"safetyEval-h5/static/images/ico4.4eac70b347092b2c361ed648d1620b51.png",I=r.p+"safetyEval-h5/static/images/ico4_on.b3ac0d1e9f8049a9920f8eb932368f94.png",A=r.p+"safetyEval-h5/static/images/ico5.b23b918dac8a1897a68628b1ad96c65b.png",E=r.p+"safetyEval-h5/static/images/ico5_on.d1d56ce6e19c870b5886592baece1147.png",S=r.p+"safetyEval-h5/static/images/ico6.dad0079ac7349e19d3e6f4563c4b612d.png",M=r.p+"safetyEval-h5/static/images/ico6_on.e078d21df8451de33ed9a11903e01418.png",w=r.p+"safetyEval-h5/static/images/ico7.50e6a3ceb733fe54da8217ee4a52b826.png",O=r.p+"safetyEval-h5/static/images/ico7_on.a54874fa1d7d08abab98c2729d70f935.png",P=r.p+"safetyEval-h5/static/images/ico8.d3118c758a9bc08e9d36e4e9d548891d.png",_=r.p+"safetyEval-h5/static/images/ico8_on.56613343489658b47faeafdc38b362da.png",H=r.p+"safetyEval-h5/static/images/ico9.56520c6033de54c0f4e186af95ff178d.png",T=r.p+"safetyEval-h5/static/images/ico9_on.90c4af1e1d83510d16bf388332193ee0.png",R=r.p+"safetyEval-h5/static/images/ico10.975ce02d290c0e5eef8c44aee97732e5.png",U=r.p+"safetyEval-h5/static/images/ico10_on.34b63856ef39535d54aa9a00febefe39.png",D=r.p+"safetyEval-h5/static/images/ico11.3c3a98b2ac6ea71e4724259b87444c99.png",L=r.p+"safetyEval-h5/static/images/ico11_on.4c5f859fadc2c246864b558b0e9e43f4.png",F=r.p+"safetyEval-h5/static/images/ico12.2fa099daec57e53f9de4e1f6e91d8fa0.png",W=r.p+"safetyEval-h5/static/images/ico12_on.ad8ad95caa5fcc56d8a6403908454caa.png",B=r.p+"safetyEval-h5/static/images/ico13.6dbd8881d9e0b2961e319caca7ee4898.png",q=r.p+"safetyEval-h5/static/images/ico13_on.d4590b47b0be652a85582ed8edbcfa08.png",G=r.p+"safetyEval-h5/static/images/ico14.58fbea4fdb5d43e49b89ed4b973eab08.png",Y=r.p+"safetyEval-h5/static/images/ico14_on.f795f401ef7e32856a6ecad19fa06fe1.png",V=r.p+"safetyEval-h5/static/images/ico15.58afa8253d4ac572c235fe2fe0ec68d7.png",K=r.p+"safetyEval-h5/static/images/ico15_on.b1d28d4a4ae8e373f0a8406ff6bb07ce.png",Q=r.p+"safetyEval-h5/static/images/ico16.823a21b687e995249f789a2a8b7019b3.png",$=r.p+"safetyEval-h5/static/images/ico16_on.ec6c9a5dca7b9d42cc517401fb957986.png",J=r.p+"safetyEval-h5/static/images/ico17.8d604c5c95ba3785ab05e960338c1e5a.png",X=r.p+"safetyEval-h5/static/images/ico17_on.e3d739d0b41de6c0a52ca8738809cf3a.png",Z=r.p+"safetyEval-h5/static/images/ico19.7e540c03a0f3bbd3020ce904e384d46d.png",ee=r.p+"safetyEval-h5/static/images/ico19_on.e88e07e316128139c908bc6394348268.png",et=r.p+"safetyEval-h5/static/images/ico21.c6940f78caf468b94f69a4643d3a715f.png",er=r.p+"safetyEval-h5/static/images/ico21_on.7efe116f53f863c6429639d35a33cc26.png",eo=r.p+"safetyEval-h5/static/images/ico26.5582e66a60654dcfdc686d215e286fa0.png",ea=r.p+"safetyEval-h5/static/images/ico26_on.cc26cfa4f577181377845ed0f964136f.png",en=r.p+"safetyEval-h5/static/images/ico27.28d6b8d581eb451423feea5aff47ac17.png",ei=r.p+"safetyEval-h5/static/images/ico27_on.41ef135327d188ae68d47dd863a07449.png",es=r.p+"safetyEval-h5/static/images/ico28.639d272b90b514441d0b8842a9a04efe.png",ec=r.p+"safetyEval-h5/static/images/ico28_on.e86ead4af8b8197261804c09c191a0a3.png",el=r.p+"safetyEval-h5/static/images/ico29.e0ab6aefc3e8fa29ceff3dde5aa413c4.png",ed=r.p+"safetyEval-h5/static/images/ico29_on.8d369b548c53cc292955587a2e9e2d04.png";var eu=r(10364),ey=r(68471),ex=r(22894),ep=r(40609),eh=r(19480),ef=r(65235),em=r(26378),eg=r(2973),eb=r(69940),ez=r(93766),ev=r(62511),ej=r(40052),eC=r(61181),eN=r(68386),ek=r(32043),eI=r(66640),eA=r(82393),eE=r(40471),eS=r(43884),eM=r(26773),ew=r(41022),eO=r(12359),eP=[{img:o,checkImg:a,label:"门口门禁",type:"door",list:[{label:"口门",check:!1,img:b,checkImg:z,mapIcon:eu.A,type:"car"},{label:"人员",check:!1,img:v,checkImg:j,mapIcon:eO.A,type:"person"},{label:"车辆",check:!1,img:v,checkImg:j,mapIcon:ey.A,type:"car"},{label:"人员闸机",check:!1,img:b,checkImg:z,type:"personMachine"},{label:"车辆闸机",check:!1,img:v,checkImg:j,type:"carMachine"},{label:"摄像头",check:!1,type:"camera",img:C,checkImg:N,mapIcon:ex.A}]},{img:n,checkImg:i,label:"消防管控",type:"fire",list:[{label:"消防救援队",check:!1,img:k,checkImg:I,mapIcon:ep.A,type:"xfjyd01"},{label:"消防控制室",check:!1,type:"xfkzs01",img:A,checkImg:E,mapIcon:eh.A},{label:"消防泵房",check:!1,type:"xfbf01",img:S,checkImg:M,mapIcon:ef.A},{label:"消防水源",check:!1,type:"xfsy01",img:w,checkImg:O,mapIcon:em.A},{label:"消防点位",check:!1,type:"point",img:P,checkImg:_,mapIcon:eg.A},{label:"报警设备",check:!1,type:"alarm",img:es,checkImg:ec,mapIcon:ew.A}]},{img:s,checkImg:c,label:"危险作业",type:"danger",list:[{label:"动火作业",type:"hotWork",check:!1,img:H,checkImg:T,mapIcon:eb.A},{label:"受限空间作业",type:"confinedSpace",check:!1,img:R,checkImg:U,mapIcon:ez.A},{label:"临时用电作业",type:"electricity",check:!1,img:D,checkImg:L,mapIcon:ev.A},{label:"高处作业",type:"highWork",check:!1,img:F,checkImg:W,mapIcon:ej.A},{label:"断路作业",type:"cutRoad",check:!1,img:B,checkImg:q,mapIcon:eC.A},{label:"动土作业",type:"breakGround",check:!1,img:G,checkImg:Y,mapIcon:eN.A},{label:"吊装作业",type:"hoisting",check:!1,img:V,checkImg:K,mapIcon:ek.A},{label:"盲板抽堵作业",type:"blindBoard",check:!1,img:Q,checkImg:$,mapIcon:eI.A},{label:"摄像头",check:!1,type:"camera",img:C,checkImg:N,mapIcon:ex.A}]},{img:l,checkImg:d,label:"气象监测",type:"weather",list:[{label:"气象站",type:"293187ddfd984c9ab3fd716aef58da0e",check:!1,img:J,checkImg:X,mapIcon:eA.A},{label:"风速站",type:"2da29f00852a4653ba3e760b9de57412",check:!1,img:Z,checkImg:ee,mapIcon:eE.A}]},{img:u,checkImg:y,label:"人员定位",type:"people",list:[{label:"人员定位",check:!1,type:"peoplePosition",img:et,checkImg:er},{label:"人员轨迹",check:!1,type:"peopleTrajectory",img:el,checkImg:ed}]},{img:x,checkImg:p,label:"摄像头",type:"camera",list:[{label:"摄像头",check:!1,type:"platCamera",img:eo,checkImg:ea,mapIcon:ex.A}]},{img:h,checkImg:f,label:"重点工程",type:"project",list:[{label:"重点工程定位",check:!1,type:"project",img:en,checkImg:ei,mapIcon:eS.A},{label:"视频定位",check:!1,type:"video",img:eo,checkImg:ea,mapIcon:eM.A}]},{img:m,checkImg:g,label:"封闭区域",type:"closedArea",list:[]}]},61728(e,t,r){"use strict";r.r(t),r.d(t,{useBottomUtilsAnimation:()=>s});var o=r(11287),a=r(30758);function n(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return i(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?i(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);ro})},74292(e,t,r){"use strict";r.r(t),r.d(t,{usePortUtilsAnimation:()=>u});var o=r(11287),a=r(30758);function n(){var e,t,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",a=r.toStringTag||"@@toStringTag";function s(r,o,a,n){var s=Object.create((o&&o.prototype instanceof l?o:l).prototype);return i(s,"_invoke",function(r,o,a){var n,i,s,l=0,d=a||[],u=!1,y={p:0,n:0,v:e,a:x,f:x.bind(e,4),d:function(t,r){return n=t,i=0,s=e,y.n=r,c}};function x(r,o){for(i=r,s=o,t=0;!u&&l&&!a&&t3?(a=p===o)&&(s=n[(i=n[4])?5:(i=3,3)],n[4]=n[5]=e):n[0]<=x&&((a=r<2&&xo||o>p)&&(n[4]=r,n[5]=o,y.n=p,i=0))}if(a||r>1)return c;throw u=!0,o}return function(a,d,p){if(l>1)throw TypeError("Generator is already running");for(u&&1===d&&x(d,p),i=d,s=p;(t=i<2?e:s)||!u;){n||(i?i<3?(i>1&&(y.n=-1),x(i,s)):y.n=s:y.v=s);try{if(l=2,n){if(i||(a="next"),t=n[a]){if(!(t=t.call(n,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,i<2&&(i=0)}else 1===i&&(t=n.return)&&t.call(n),i<2&&(s=TypeError("The iterator does not provide a '"+a+"' method"),i=1);n=e}else if((t=(u=y.n<0)?s:r.call(o,y))!==c)break}catch(t){n=e,i=1,s=t}finally{l=1}}return{value:t,done:u}}}(r,a,n),!0),s}var c={};function l(){}function d(){}function u(){}t=Object.getPrototypeOf;var y=u.prototype=l.prototype=Object.create([][o]?t(t([][o]())):(i(t={},o,function(){return this}),t));function x(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,u):(e.__proto__=u,i(e,a,"GeneratorFunction")),e.prototype=Object.create(y),e}return d.prototype=u,i(y,"constructor",u),i(u,"constructor",d),d.displayName="GeneratorFunction",i(u,a,"GeneratorFunction"),i(y),i(y,a,"Generator"),i(y,o,function(){return this}),i(y,"toString",function(){return"[object Generator]"}),(n=function(){return{w:s,m:x}})()}function i(e,t,r,o){var a=Object.defineProperty;try{a({},"",{})}catch(e){a=0}(i=function(e,t,r,o){function n(t,r){i(e,t,function(e){return this._invoke(t,r,e)})}t?a?a(e,t,{value:r,enumerable:!o,configurable:!o,writable:!o}):e[t]=r:(n("next",0),n("throw",1),n("return",2))})(e,t,r,o)}function s(e,t,r,o,a,n,i){try{var s=e[n](i),c=s.value}catch(e){return void r(e)}s.done?t(c):Promise.resolve(c).then(o,a)}function c(e){return function(){var t=this,r=arguments;return new Promise(function(o,a){var n=e.apply(t,r);function i(e){s(n,o,a,i,c,"next",e)}function c(e){s(n,o,a,i,c,"throw",e)}i(void 0)})}}function l(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return d(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?d(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rb});var o=r(14455),a=r(30758);let n=r.p+"safetyEval-h5/static/images/statistics_title.d2f4cbaa89a5bfa77847a1cfc57d23d9.png",i=r.p+"safetyEval-h5/static/images/tabguang.739254101660bbe98aec0fabe8323dcf.png",s=r.p+"safetyEval-h5/static/images/tableft.bccede1200715280fca607e409d933a9.png",c=r.p+"safetyEval-h5/static/images/tableft_on.d83d1abb7177d0ea351e8d3adfc38ac5.png",l=r.p+"safetyEval-h5/static/images/tabmid.558816129666f344a7147ff7b77af0f8.png",d=r.p+"safetyEval-h5/static/images/tabmid_on.f1118d63beb9fe230ccce27f4028680e.png",u=r.p+"safetyEval-h5/static/images/tabright.ec94c0bd1a749e03890c6d12464a5fad.png",y=r.p+"safetyEval-h5/static/images/tabright_on.e17651974063cd91c7de2d7664cfc644.png";var x=r(35122),p=r(47),h=r(70284),f=r(65944),m=r(86070);function g(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rtypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var r,o,a,n,i=[],s=!0,c=!1;try{a=(t=t.call(e)).next,!1;for(;!(s=(r=a.call(t)).done)&&(i.push(r.value),2!==i.length);s=!0);}catch(e){c=!0,o=e}finally{try{if(!s&&null!=t.return&&(n=t.return(),Object(n)!==n))return}finally{if(c)throw o}}return i}}(t)||function(e){if(e){if("string"==typeof e)return g(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?g(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),k=N[0],I=N[1],A=(0,f.useCenterUtilsAnimation)("00003"===b&&!z&&!v,"up-down"),E=A.controls,S=A.isVisible,M=(0,f.useCenterUtilsAnimation)("00003"===b&&!z&&!v&&(0===k||1===k),"scale"),w=M.controls,O=M.isVisible,P=(0,f.useCenterUtilsAnimation)("00003"===b&&!z&&!v&&(2===k||1===k),"scale"),_=P.controls,H=P.isVisible,T=function(t){t!==k&&(I(t),e.setArea(C[t].area),j.current.removeBranchOfficePoint(),j.current.addBranchOfficePoint(C[t].area),p.default.emit(h.resetBottomCurrentIndexMittKey),p.default.emit(h.resetAllBottomUtilsCheckMittKey),p.default.emit(h.deletePeoplePositionPointMittKey))};return(0,m.jsx)("div",{className:"map_content_center_options_container",children:(0,m.jsx)(o.PY1.div,{animate:E,className:"center_utils",children:S&&(0,m.jsxs)(m.Fragment,{children:[(0,m.jsxs)("div",{className:"center_options",children:[(0,m.jsx)("div",{className:"guang",style:{backgroundImage:"url(".concat(i,")")}}),C.map(function(e,t){return(0,m.jsx)("div",{className:"option option".concat(t),style:{backgroundImage:"url(".concat(k===t?[c,d,y][t]:[s,l,u][t],")")},onClick:function(){return T(t)},children:e.label},t)})]}),(0,m.jsxs)("div",{className:"statistics",children:[(0,m.jsx)(o.PY1.div,{animate:w,children:O&&(0,m.jsxs)("div",{className:"statistic",children:[(0,m.jsx)("div",{className:"title",style:{backgroundImage:"url(".concat(n,")")},children:"西港区"}),(0,m.jsxs)("div",{className:"info",children:[(0,m.jsx)("div",{className:"value",children:"人数:33人"}),(0,m.jsx)("div",{className:"value",children:"车辆:33辆"})]})]})}),(0,m.jsx)(o.PY1.div,{animate:_,children:H&&(0,m.jsxs)("div",{className:"statistic",children:[(0,m.jsx)("div",{className:"title",style:{backgroundImage:"url(".concat(n,")")},children:"东港区"}),(0,m.jsxs)("div",{className:"info",children:[(0,m.jsx)("div",{className:"value",children:"人数:33人"}),(0,m.jsx)("div",{className:"value",children:"车辆:33辆"})]})]})})]})]})})})}},65944(e,t,r){"use strict";r.r(t),r.d(t,{useCenterUtilsAnimation:()=>i});var o=r(11287),a=r(30758);function n(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);r1&&void 0!==arguments[1]?arguments[1]:"up-down",i=(0,o.s)(),s=(0,a.useRef)(!0),c=function(e){if(Array.isArray(e))return e}(t=(0,a.useState)(e))||function(e){var t=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var r,o,a,n,i=[],s=!0,c=!1;try{a=(t=t.call(e)).next,!1;for(;!(s=(r=a.call(t)).done)&&(i.push(r.value),2!==i.length);s=!0);}catch(e){c=!0,o=e}finally{try{if(!s&&null!=t.return&&(n=t.return(),Object(n)!==n))return}finally{if(c)throw o}}return i}}(t)||function(e){if(e){if("string"==typeof e)return n(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?n(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),l=c[0],d=c[1];return(0,a.useEffect)(function(){e?(l||d(!0),"up-down"===r?s.current?i.start({y:[-120,40,-10,0],opacity:[0,1,1,1],scale:[.9,1.05,.98,1],transition:{duration:.7,times:[0,.5,.75,1],ease:[.34,1.56,.64,1]}}).then(function(){s.current=!1}):i.start({y:[-120,40,-10,0],opacity:[0,1,1,1],scale:[.9,1.05,.98,1],transition:{duration:.7,times:[0,.5,.75,1],ease:[.34,1.56,.64,1]}}):"scale"===r&&(s.current?i.start({scale:[0,1.15,.92,1],opacity:[0,1,1,1],transition:{duration:.7,times:[0,.4,.7,1],ease:[.34,1.56,.64,1]}}).then(function(){s.current=!1}):i.start({scale:[0,1.15,.92,1],opacity:[0,1,1,1],transition:{duration:.7,times:[0,.4,.7,1],ease:[.34,1.56,.64,1]}}))):"up-down"===r?i.start({y:[0,-50,20,-120],opacity:[1,1,.8,0],scale:[1,1.02,.95,.85],transition:{duration:.5,times:[0,.2,.5,1],ease:[.68,-.6,.32,1.6]}}).then(function(){d(!1)}):"scale"===r&&i.start({scale:[1,1.1,.85,0],opacity:[1,1,.6,0],transition:{duration:.5,times:[0,.3,.6,1],ease:[.68,-.6,.32,1.6]}}).then(function(){d(!1)})},[e,r,i,l]),{controls:i,isVisible:l}}},58988(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>l});var o=r(1878);let a=r.p+"safetyEval-h5/static/images/bg13.e116bc9eee40d82e018cb8a216058975.png",n=r.p+"safetyEval-h5/static/images/bg14.6ca549f760367f0cd9fe0279ff500186.png",i=r.p+"safetyEval-h5/static/images/more1.a4e50e7660f2606ad3f7ddf6afbfdafd.png";var s=r(43281),c=r(86070);let l=function(){return(0,c.jsxs)("div",{className:"bottom-container_con",children:[(0,c.jsxs)("div",{className:"top_container",children:[(0,c.jsxs)("div",{className:"title",children:["管理九项",(0,c.jsx)("img",{src:i,alt:""})]}),(0,c.jsxs)("div",{className:"con",children:[(0,c.jsx)("div",{className:"item",children:"安全管理台账"}),(0,c.jsx)("div",{className:"item active",children:"双重预防管理"}),(0,c.jsx)("div",{className:"item",children:"相关方管理"}),(0,c.jsx)("div",{className:"item",children:"现场重点监管"}),(0,c.jsx)("div",{className:"item",children:"消防应急管理"}),(0,c.jsx)("div",{className:"item",children:"安全教育培训"}),(0,c.jsx)("div",{className:"item",children:"综合查询(同比、环比 )"}),(0,c.jsx)("div",{className:"item",children:"综合考评管理"}),(0,c.jsx)("div",{className:"item",children:"科技兴安"})]})]}),(0,c.jsxs)("div",{className:"bottom-container",children:[(0,c.jsxs)("div",{className:"left",children:[(0,c.jsx)(s.default,{title:"分子公司考核情况"}),(0,c.jsx)("div",{className:"main",style:{backgroundImage:"url(".concat(a,")")},children:(0,c.jsxs)("div",{className:"table",children:[(0,c.jsxs)("div",{className:"head",children:[(0,c.jsx)("div",{children:"公司名称"}),(0,c.jsx)("div",{children:"检查任务完成情况"}),(0,c.jsx)("div",{children:"安全会议召开情况"}),(0,c.jsx)("div",{children:"重要事项传达情况"}),(0,c.jsx)("div",{children:"专项任务完成情况"})]}),(0,c.jsxs)("div",{className:"table-container",children:[(0,c.jsx)("div",{className:"table-item",children:"新益公司"}),(0,c.jsx)("div",{className:"table-item",children:"23/26"}),(0,c.jsx)("div",{className:"table-item",children:"23/26"}),(0,c.jsx)("div",{className:"table-item",children:"23/26"}),(0,c.jsx)("div",{className:"table-item",children:"23/26"})]}),(0,c.jsxs)("div",{className:"table-container",children:[(0,c.jsx)("div",{className:"table-item",children:"新益公司"}),(0,c.jsx)("div",{className:"table-item",children:"23/26"}),(0,c.jsx)("div",{className:"table-item",children:"23/26"}),(0,c.jsx)("div",{className:"table-item",children:"23/26"}),(0,c.jsx)("div",{className:"table-item",children:"23/26"})]}),(0,c.jsxs)("div",{className:"table-container",children:[(0,c.jsx)("div",{className:"table-item",children:"新益公司"}),(0,c.jsx)("div",{className:"table-item",children:"23/26"}),(0,c.jsx)("div",{className:"table-item",children:"23/26"}),(0,c.jsx)("div",{className:"table-item",children:"23/26"}),(0,c.jsx)("div",{className:"table-item",children:"23/26"})]}),(0,c.jsxs)("div",{className:"table-container",children:[(0,c.jsx)("div",{className:"table-item",children:"新益公司"}),(0,c.jsx)("div",{className:"table-item",children:"23/26"}),(0,c.jsx)("div",{className:"table-item",children:"23/26"}),(0,c.jsx)("div",{className:"table-item",children:"23/26"}),(0,c.jsx)("div",{className:"table-item",children:"23/26"})]})]})})]}),(0,c.jsxs)("div",{className:"right",children:[(0,c.jsx)(s.default,{title:"视频巡屏"}),(0,c.jsxs)("div",{className:"main",children:[(0,c.jsxs)("div",{className:"menu",children:[(0,c.jsx)("div",{className:"list active",children:"新益公司"}),(0,c.jsx)("div",{className:"list",children:"二公司"}),(0,c.jsx)("div",{className:"list",children:"六公司"}),(0,c.jsx)("div",{className:"list",children:"七公司"}),(0,c.jsx)("div",{className:"list",children:"九公司"})]}),(0,c.jsx)("div",{className:"video-container",style:{backgroundImage:"url(".concat(n,")")},children:(0,c.jsx)(o.A,{source:"https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/2minute-demo.mp4",height:"100%",isLive:!0})})]})]})]})]})}},44942(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>n});let o=r.p+"safetyEval-h5/static/images/btnbg.8b38eac5a144cec42e266e0b03874203.png";var a=r(86070);let n=function(e){return(0,a.jsxs)("div",{className:"index_info_btn",children:[(0,a.jsx)("div",{className:"item",style:{backgroundImage:"url(".concat(o,")")},onClick:function(){e.history.push("./white/branchOffice")},children:"分公司大屏"}),(0,a.jsx)("div",{className:"item",style:{backgroundImage:"url(".concat(o,")")},onClick:function(){e.history.push("./white/share")},children:"监管端大屏"})]})}},31175(e,t,r){"use strict";r.r(t),r.d(t,{initEcharts1:()=>a});var o=r(61984),a=function(e,t,r){t.current=o.Ts(e.current);var a=r.map(function(e){return e.name}),n=r.map(function(e){return e.hazardCount}),i=r.map(function(e){return e.unrectifiedCount}),s=r.map(function(e){return e.rectificationRate});t.current.setOption({tooltip:{trigger:"axis",axisPointer:{type:"shadow"}},grid:{left:"10%",top:"28%",right:"10%",bottom:"25%"},legend:{data:["隐患数量","未整改数量","整改率"],top:"0%",right:"3%",textStyle:{color:"#FFFFFF",fontSize:12}},dataZoom:[{type:"slider",height:6,bottom:"7%",show:!0,start:0,end:40,handleSize:5,handleStyle:{color:"#DCE2E8"},xAxisIndex:[0],filterMode:"filter",showDetail:!1}],xAxis:{data:a,axisLine:{show:!1},axisTick:{show:!1,alignWithLabel:!0},axisLabel:{show:!0,color:"#FFFFFF",fontSize:12,margin:12,interval:0}},yAxis:[{type:"value",name:"数量",nameTextStyle:{color:"#FFFFFF",fontSize:12},splitLine:{show:!0,lineStyle:{color:"#000000",type:"solid"}},axisTick:{show:!1},axisLine:{show:!1},axisLabel:{show:!0,color:"#FFFFFF",fontSize:12}},{type:"value",name:"整改率(%)",nameTextStyle:{color:"#FFFFFF",fontSize:12},min:0,max:100,axisLine:{show:!1},axisTick:{show:!1},axisLabel:{show:!0,color:"#FFFFFF",fontSize:12}}],series:[{name:"隐患数量",type:"bar",barWidth:10,yAxisIndex:0,itemStyle:{color:"#C5993B"},data:n},{name:"未整改数量",type:"bar",barWidth:10,yAxisIndex:0,itemStyle:{color:"#FF0606"},data:i},{name:"整改率",type:"line",yAxisIndex:1,showAllSymbol:!0,symbol:"circle",symbolSize:10,itemStyle:{color:"#33FFFF"},label:{show:!0,position:"top",formatter:"{c}%",color:"#FFFFCC",fontSize:12},lineStyle:{color:"#33FFFF",shadowBlur:1},z:18,data:s}]})}},45406(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>z});var o=r(47195),a=r(30758),n=r(96370);let i=r.p+"safetyEval-h5/static/images/bg9.2fb47f210d8e52a85af7df05fe625ea8.png",s=r.p+"safetyEval-h5/static/images/bg10.fa66422ceb0c2b8b6c921352107143be.png",c=r.p+"safetyEval-h5/static/images/ico3.9003aa3b8d77b142f1013901a96bbc72.png";var l=r(96209),d=r(86673),u=r(65562);let y=r.p+"safetyEval-h5/static/images/w_ico1.3648d71a8a640f6878e58f1bd76399ec.png",x=r.p+"safetyEval-h5/static/images/w_ico2.f449247a16cddc5a11691aa9eeb8bfc0.png";var p=r(99040),h=r(43281),f=r(31175),m=r(86070);function g(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return b(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?b(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function b(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rg});var o=r(30758),a=r(96370);let n=r.p+"safetyEval-h5/static/images/bg11.2ba1391b3ae013581ce7b8883f111c13.png",i=r.p+"safetyEval-h5/static/images/bg12.eaec79b05fcbe80d048567e57968fff0.png",s=r.p+"safetyEval-h5/static/images/ico6.930b9b6d951a1985d5b3d292ff54bfc0.png",c=r.p+"safetyEval-h5/static/images/ico7.aa8664c40105c02890071cffe3404928.png",l=r.p+"safetyEval-h5/static/images/ico8.51750deeea8cf36c7fedf9945f76d1ab.png",d=r.p+"safetyEval-h5/static/images/ico9.cfe7601bb4163babcf6ed2374609f892.png";var u=r(86673),y=r(65562),x=r(96209),p=r(43281),h=r(86070);function f(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return m(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?m(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function m(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);ri});let o=r.p+"safetyEval-h5/static/images/close.fe8f300f919cb265604bcae11ad71c32.png",a=r.p+"safetyEval-h5/static/images/topbg.5eda1b0f6f07556cd49de9ca9d82e9c5.png";var n=r(86070);let i=function(){return(0,n.jsxs)("div",{className:"search_container",children:[(0,n.jsxs)("div",{className:"top",style:{backgroundImage:"url(".concat(a,")")},children:[(0,n.jsx)("div",{className:"list active",children:"分公司列表"}),(0,n.jsx)("div",{className:"list",children:"相关方列表"}),(0,n.jsx)("div",{className:"close",children:(0,n.jsx)("img",{src:o,alt:""})})]}),(0,n.jsxs)("div",{className:"main",children:[(0,n.jsx)("div",{className:"search_con",children:(0,n.jsx)("input",{type:"text",placeholder:"请输入公司名称",className:"input"})}),(0,n.jsxs)("div",{className:"con",children:[(0,n.jsxs)("div",{className:"item",children:[(0,n.jsx)("div",{className:"name",children:"新益公司"}),(0,n.jsx)("div",{className:"btn",children:"快捷登录"})]}),(0,n.jsxs)("div",{className:"item",children:[(0,n.jsx)("div",{className:"name",children:"新益公司"}),(0,n.jsx)("div",{className:"btn",children:"快捷登录"})]}),(0,n.jsxs)("div",{className:"item",children:[(0,n.jsx)("div",{className:"name",children:"新益公司"}),(0,n.jsx)("div",{className:"btn",children:"快捷登录"})]})]})]})]})}},43281(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>n});let o=r.p+"safetyEval-h5/static/images/smalltitle.c693a4379ccbf8d9fb05a2ad58c79550.png";var a=r(86070);let n=function(e){return(0,a.jsx)("div",{className:"index_info_container_title",style:{backgroundImage:"url(".concat(o,")")},children:e.title})}},16099(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>l});var o=r(58988),a=r(44942),n=r(45406),i=r(75528),s=r(45188),c=r(86070);let l=function(e){return(0,c.jsxs)("div",{className:"index_info_container",children:[(0,c.jsx)(n.default,{}),(0,c.jsx)(o.default,{}),(0,c.jsx)(i.default,{}),(0,c.jsx)(s.default,{}),(0,c.jsx)(a.default,{history:e.history})]})}},65953(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>d});var o=r(72071),a=r(15093),n=r(30758),i=r(1878),s=r(86070);function c(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return l(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?l(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);ra});var o=r(61984),a=function(e,t,r){t.current=o.Ts(e.current);var a=r.map(function(e){return Number.parseInt(e.IN)}),n=r.map(function(e){return Number.parseInt(e.OUT)}),i={tooltip:{trigger:"axis",axisPointer:{type:"none"}},legend:{data:["进","出"],top:"0%",right:"0%",textStyle:{color:"#fff",fontSize:14},itemWidth:12,itemHeight:10},dataZoom:[{type:"slider",height:6,bottom:"7%",show:!0,start:0,end:50,handleSize:5,handleStyle:{color:"#DCE2E8"},xAxisIndex:[0],filterMode:"filter",showDetail:!1}],grid:{left:"10%",right:"5%",top:"10%",bottom:"20%"},xAxis:[{type:"category",data:r.map(function(e){return e.NAME}),axisTick:{alignWithLabel:!0},axisLabel:{color:"#fff"}}],yAxis:{axisLine:{show:!1},axisTick:{show:!1},axisLabel:{color:"#fff"},splitLine:{show:!0,lineStyle:{type:"dashed"}}},series:[{name:"进",type:"bar",backgroundStyle:{color:"rgba(216, 229, 247, 0.55)",borderRadius:[8,8,0,0]},itemStyle:{borderRadius:[12,12,0,0],color:new o.fA.W4(0,0,0,1,[{offset:1,color:"rgba(121,103,255,0.7)"},{offset:0,color:"#7967FF"}])},barWidth:"10",data:a},{name:"出",type:"bar",backgroundStyle:{color:"rgba(216, 229, 247, 0.55)",borderRadius:[8,8,0,0]},itemStyle:{borderRadius:[12,12,0,0],color:new o.fA.W4(0,0,0,1,[{offset:1,color:"rgba(255,198,124,0.7)"},{offset:0,color:"#FFC67C"}])},barWidth:"10",data:n}]};t.current.setOption(i)}},93277(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>m});var o=r(47195),a=r(30758),n=r(97925),i=r(96370),s=r(71371),c=r(89365),l=r(44775),d=r(12809),u=r(75283),y=r(86070);function x(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return p(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?p(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function p(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);ra});var o=r(61984),a=function(e,t,r){t.current=o.Ts(e.current);var a={color:["#7d4449","#009944","#167ce4","#00ffff"],tooltip:{trigger:"axis"},legend:{textStyle:{color:"#fff",fontSize:"12px"},top:8,right:10},grid:{left:"4%",right:"4%",bottom:"10%",top:"26%",containLabel:!0},dataZoom:[{type:"slider",height:6,bottom:0,show:!0,start:0,end:50,handleSize:3,handleStyle:{color:"#DCE2E8"},xAxisIndex:[0],filterMode:"filter",showDetail:!1}],xAxis:{data:r.map(function(e){return e.departmentName}),type:"category",boundaryGap:!1,axisLine:{symbol:"none",lineStyle:{color:"#fff"}},axisTick:{show:!1},axisLabel:{interval:0,color:"#fff",fontSize:12}},yAxis:{type:"value",axisLabel:{color:"#fff",fontSize:12,padding:[0,10,0,0]},splitLine:{lineStyle:{color:"rgba(255,255,255,0.79)",type:"dashed"}}},series:[{name:"风险点检查覆盖率",type:"line",data:r.map(function(e){return e.riskCoverageRate}),smooth:!0,lineStyle:{width:2},showSymbol:!1,symbol:"circle",symbolSize:6},{name:"隐患清单排查率",data:r.map(function(e){return e.hiddenInvestigationRate}),type:"line",smooth:!0,lineStyle:{width:2},showSymbol:!1,symbol:"circle",symbolSize:6},{name:"隐崽整改率",data:r.map(function(e){return e.hiddenRectificationRate}),type:"line",smooth:!0,lineStyle:{width:2},showSymbol:!1,symbol:"circle",symbolSize:6},{name:"检查任务完成率",data:r.map(function(e){return e.checkTaskCompletionRate}),type:"line",smooth:!0,lineStyle:{width:2},showSymbol:!1,symbol:"circle",symbolSize:6}]};t.current.setOption(a)}},98788(e,t,r){"use strict";r.r(t),r.d(t,{getWeatherIcon:()=>P,weatherIconMap:()=>O,default:()=>H,getAlertColor:()=>_});var o=r(47195),a=r(30758),n=r(96370),i=r(20805),s=r(7740),c=r(99040);let l=r.p+"safetyEval-h5/static/images/2.6bcafd989ae530f33d6b78f734e80fc4.png",d=r.p+"safetyEval-h5/static/images/3.07a1ec7619bffab59d68295774d38304.png",u=r.p+"safetyEval-h5/static/images/4.c8db3f4298b10c02a1353aaf7ba48830.png",y=r.p+"safetyEval-h5/static/images/5.a89eb779bb1d548282aada9a0cd6f981.png",x=r.p+"safetyEval-h5/static/images/6.2bb4d0f5046020ea069e7dfd89a9e929.png",p=r.p+"safetyEval-h5/static/images/7.0876f666fae1e0f4a89677cac8053b4d.png",h=r.p+"safetyEval-h5/static/images/8.a2b2a17ca0a8442b13ab5fcadd2f6e6a.png",f=r.p+"safetyEval-h5/static/images/9.33edb4f9c293d62b2e88186a62afe3a4.png",m=r.p+"safetyEval-h5/static/images/10.83f2941036d7455ce1f0d8121fa7659b.png",g=r.p+"safetyEval-h5/static/images/11.ad55f65ee1e09b0b3970da8b68770e3c.png",b=r.p+"safetyEval-h5/static/images/12.b79eeab17883a20bba3c620c1ec30229.png",z=r.p+"safetyEval-h5/static/images/13.a9af38c6da82b608d9930b1f76d50512.png",v=r.p+"safetyEval-h5/static/images/14.4995f88026bab52ac31feb4a498bc29e.png",j=r.p+"safetyEval-h5/static/images/15.36dbdf90bba83cd95b5ad7e470511b85.png",C=r.p+"safetyEval-h5/static/images/16.86ea5401e727495092a0c4f833d0ae5b.png";var N=r(12809),k=r(28557),I=r(86070);function A(){var e,t,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",a=r.toStringTag||"@@toStringTag";function n(r,o,a,n){var c=Object.create((o&&o.prototype instanceof s?o:s).prototype);return E(c,"_invoke",function(r,o,a){var n,s,c,l=0,d=a||[],u=!1,y={p:0,n:0,v:e,a:x,f:x.bind(e,4),d:function(t,r){return n=t,s=0,c=e,y.n=r,i}};function x(r,o){for(s=r,c=o,t=0;!u&&l&&!a&&t3?(a=p===o)&&(c=n[(s=n[4])?5:(s=3,3)],n[4]=n[5]=e):n[0]<=x&&((a=r<2&&xo||o>p)&&(n[4]=r,n[5]=o,y.n=p,s=0))}if(a||r>1)return i;throw u=!0,o}return function(a,d,p){if(l>1)throw TypeError("Generator is already running");for(u&&1===d&&x(d,p),s=d,c=p;(t=s<2?e:c)||!u;){n||(s?s<3?(s>1&&(y.n=-1),x(s,c)):y.n=c:y.v=c);try{if(l=2,n){if(s||(a="next"),t=n[a]){if(!(t=t.call(n,c)))throw TypeError("iterator result is not an object");if(!t.done)return t;c=t.value,s<2&&(s=0)}else 1===s&&(t=n.return)&&t.call(n),s<2&&(c=TypeError("The iterator does not provide a '"+a+"' method"),s=1);n=e}else if((t=(u=y.n<0)?c:r.call(o,y))!==i)break}catch(t){n=e,s=1,c=t}finally{l=1}}return{value:t,done:u}}}(r,a,n),!0),c}var i={};function s(){}function c(){}function l(){}t=Object.getPrototypeOf;var d=l.prototype=s.prototype=Object.create([][o]?t(t([][o]())):(E(t={},o,function(){return this}),t));function u(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,l):(e.__proto__=l,E(e,a,"GeneratorFunction")),e.prototype=Object.create(d),e}return c.prototype=l,E(d,"constructor",l),E(l,"constructor",c),c.displayName="GeneratorFunction",E(l,a,"GeneratorFunction"),E(d),E(d,a,"Generator"),E(d,o,function(){return this}),E(d,"toString",function(){return"[object Generator]"}),(A=function(){return{w:n,m:u}})()}function E(e,t,r,o){var a=Object.defineProperty;try{a({},"",{})}catch(e){a=0}(E=function(e,t,r,o){function n(t,r){E(e,t,function(e){return this._invoke(t,r,e)})}t?a?a(e,t,{value:r,enumerable:!o,configurable:!o,writable:!o}):e[t]=r:(n("next",0),n("throw",1),n("return",2))})(e,t,r,o)}function S(e,t,r,o,a,n,i){try{var s=e[n](i),c=s.value}catch(e){return void r(e)}s.done?t(c):Promise.resolve(c).then(o,a)}function M(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return w(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?w(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function w(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);ra});var o=r(61984),a=function(e,t,r){t.current=o.Ts(e.current);var a={color:["#F1C416","#0AFCFF"],tooltip:{trigger:"axis",axisPointer:{type:"shadow",label:{backgroundColor:"#6a7985"}}},grid:{left:"1%",right:"4%",bottom:"6%",top:30,padding:"0 0 10 0",containLabel:!0},legend:{right:10,top:0,itemGap:16,itemWidth:18,itemHeight:10,textStyle:{color:"#fff",fontStyle:"normal",fontFamily:"微软雅黑",fontSize:12}},dataZoom:[{type:"slider",height:6,bottom:0,show:!0,start:0,end:50,handleSize:3,handleStyle:{color:"#DCE2E8"},xAxisIndex:[0],filterMode:"filter",showDetail:!1}],xAxis:[{type:"category",boundaryGap:!0,data:r.map(function(e){return e.name}),axisLabel:{interval:0,margin:15,textStyle:{color:"#fff",fontStyle:"normal",fontFamily:"微软雅黑",fontSize:12}},axisTick:{show:!1},axisLine:{lineStyle:{color:"#fff",opacity:.2}},splitLine:{show:!1}}],yAxis:[{type:"value",splitNumber:5,axisLabel:{textStyle:{color:"#fff",fontStyle:"normal",fontFamily:"微软雅黑",fontSize:12}},axisLine:{show:!1},axisTick:{show:!1},splitLine:{show:!0,lineStyle:{color:["#fff"],opacity:.06}}}],series:[{name:"单位人员数",type:"pictorialBar",symbol:"roundRect",symbolOffset:[-5,0],symbolMargin:"1",barWidth:"10%",barMaxWidth:"20%",animationDelay:function(e,t){return 50*t.index},itemStyle:{normal:{color:function(){return new o.fA.W4(0,0,1,1,[{offset:0,color:"#F1C416"},{offset:1,color:"#FF2F01"}])}}},z:1,barGap:0,symbolRepeat:!0,symbolSize:[14,5],data:r.map(function(e){return e.unitCount}),animationEasing:"elasticOut",stack:"2"},{name:"相关方人员数",type:"pictorialBar",symbol:"roundRect",barWidth:"10%",symbolOffset:[5,0],barMaxWidth:"20%",symbolMargin:"1",animationDelay:function(e,t){return 50*t.index},itemStyle:{normal:{color:function(e){return new o.fA.W4(0,0,1,1,[{offset:0,color:"#0AFCFF"},{offset:1,color:"#0CA1FE"}])}}},z:1,barGap:0,symbolRepeat:!0,symbolSize:[14,5],data:r.map(function(e){return e.personnelCount}),animationEasing:"elasticOut",stack:"1"}]};t.current.setOption(a)}},82504(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>x});var o=r(47195),a=r(30758),n=r(96370);let i=r.p+"safetyEval-h5/static/images/bg4.5cb3c98308dc48b352257968346039c5.png",s=r.p+"safetyEval-h5/static/images/bg5.cc8e1179fdd37e2ee68a5527744cedd0.png";var c=r(12809),l=r(87414),d=r(86070);function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return y(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?y(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function y(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);ra});var o=r(61984),a=function(e,t,r){t.current=o.Ts(e.current);var a=r.map(function(e){return Number.parseInt(e.IN)}),n=r.map(function(e){return Number.parseInt(e.OUT)}),i={tooltip:{trigger:"axis",axisPointer:{type:"none"}},legend:{data:["进","出"],top:"0%",right:"0%",textStyle:{color:"#fff",fontSize:14},itemWidth:12,itemHeight:10},dataZoom:[{type:"slider",height:6,bottom:"7%",show:!0,start:0,end:50,handleSize:5,handleStyle:{color:"#DCE2E8"},xAxisIndex:[0],filterMode:"filter",showDetail:!1}],grid:{left:"10%",right:"5%",top:"10%",bottom:"20%"},xAxis:[{type:"category",data:r.map(function(e){return e.NAME}),axisTick:{alignWithLabel:!0},axisLabel:{color:"#fff"}}],yAxis:{axisLine:{show:!1},axisTick:{show:!1},axisLabel:{color:"#fff"},splitLine:{show:!0,lineStyle:{type:"dashed"}}},series:[{name:"进",type:"bar",backgroundStyle:{color:"rgba(216, 229, 247, 0.55)",borderRadius:[8,8,0,0]},itemStyle:{borderRadius:[12,12,0,0],color:new o.fA.W4(0,0,0,1,[{offset:1,color:"rgba(121,103,255,0.7)"},{offset:0,color:"#7967FF"}])},barWidth:"10",data:a},{name:"出",type:"bar",backgroundStyle:{color:"rgba(216, 229, 247, 0.55)",borderRadius:[8,8,0,0]},itemStyle:{borderRadius:[12,12,0,0],color:new o.fA.W4(0,0,0,1,[{offset:1,color:"rgba(255,198,124,0.7)"},{offset:0,color:"#FFC67C"}])},barWidth:"10",data:n}]};t.current.setOption(i)}},1443(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>b});var o=r(47195),a=r(30758),n=r(97925),i=r(96370);let s=r.p+"safetyEval-h5/static/images/ico15.b19351a1164acfce815fd1897cc1a337.png",c=r.p+"safetyEval-h5/static/images/ico16.641db9b995ae0c91161e8d37aecb358b.png",l=r.p+"safetyEval-h5/static/images/ico17.3fc60c5edd49e3e72aea3f1f99b79a48.png",d=r.p+"safetyEval-h5/static/images/ico18.ec770c766abbdfe1545c4e6221345e9c.png";var u=r(44775),y=r(12809),x=r(30897),p=r(86070);function h(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return f(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?f(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rf});var o=r(30758),a=r(96370);let n=r.p+"safetyEval-h5/static/images/ico21.e2a31da85a2e282784abd97dc0d1fc16.png";var i=r(20805),s=r(7740),c=r(98788),l=r(12809),d=r(86070);function u(){var e,t,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",a=r.toStringTag||"@@toStringTag";function n(r,o,a,n){var c=Object.create((o&&o.prototype instanceof s?o:s).prototype);return y(c,"_invoke",function(r,o,a){var n,s,c,l=0,d=a||[],u=!1,y={p:0,n:0,v:e,a:x,f:x.bind(e,4),d:function(t,r){return n=t,s=0,c=e,y.n=r,i}};function x(r,o){for(s=r,c=o,t=0;!u&&l&&!a&&t3?(a=p===o)&&(c=n[(s=n[4])?5:(s=3,3)],n[4]=n[5]=e):n[0]<=x&&((a=r<2&&xo||o>p)&&(n[4]=r,n[5]=o,y.n=p,s=0))}if(a||r>1)return i;throw u=!0,o}return function(a,d,p){if(l>1)throw TypeError("Generator is already running");for(u&&1===d&&x(d,p),s=d,c=p;(t=s<2?e:c)||!u;){n||(s?s<3?(s>1&&(y.n=-1),x(s,c)):y.n=c:y.v=c);try{if(l=2,n){if(s||(a="next"),t=n[a]){if(!(t=t.call(n,c)))throw TypeError("iterator result is not an object");if(!t.done)return t;c=t.value,s<2&&(s=0)}else 1===s&&(t=n.return)&&t.call(n),s<2&&(c=TypeError("The iterator does not provide a '"+a+"' method"),s=1);n=e}else if((t=(u=y.n<0)?c:r.call(o,y))!==i)break}catch(t){n=e,s=1,c=t}finally{l=1}}return{value:t,done:u}}}(r,a,n),!0),c}var i={};function s(){}function c(){}function l(){}t=Object.getPrototypeOf;var d=l.prototype=s.prototype=Object.create([][o]?t(t([][o]())):(y(t={},o,function(){return this}),t));function x(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,l):(e.__proto__=l,y(e,a,"GeneratorFunction")),e.prototype=Object.create(d),e}return c.prototype=l,y(d,"constructor",l),y(l,"constructor",c),c.displayName="GeneratorFunction",y(l,a,"GeneratorFunction"),y(d),y(d,a,"Generator"),y(d,o,function(){return this}),y(d,"toString",function(){return"[object Generator]"}),(u=function(){return{w:n,m:x}})()}function y(e,t,r,o){var a=Object.defineProperty;try{a({},"",{})}catch(e){a=0}(y=function(e,t,r,o){function n(t,r){y(e,t,function(e){return this._invoke(t,r,e)})}t?a?a(e,t,{value:r,enumerable:!o,configurable:!o,writable:!o}):e[t]=r:(n("next",0),n("throw",1),n("return",2))})(e,t,r,o)}function x(e,t,r,o,a,n,i){try{var s=e[n](i),c=s.value}catch(e){return void r(e)}s.done?t(c):Promise.resolve(c).then(o,a)}function p(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return h(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?h(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);ra,initEcharts2:()=>n});var o=r(61984),a=function(e,t,r){t.current=o.Ts(e.current),t.current.setOption({tooltip:{trigger:"item"},legend:{left:"center",top:"0",textStyle:{color:"#fff"}},series:[{color:["#4198AF","#285DF0","#EA439D","#F59FBC","#FCA158","#03D4B9","#9FD224","#13C871","#FF611C"],type:"pie",radius:[0,"50%"],center:["50%","60%"],label:{textStyle:{color:"#fff"}},data:r}]})},n=function(e,t,r){t.current=o.Ts(e.current);var a=r.map(function(e){return Number.parseInt(e.unitPersonnelCount)}),n=r.map(function(e){return Number.parseInt(e.relatedPartyPersonnelCount)}),i={tooltip:{trigger:"axis",axisPointer:{type:"none"}},legend:{data:["单位人员数","相关方人员数"],top:"0%",right:"0%",textStyle:{color:"#fff",fontSize:14},itemWidth:12,itemHeight:10},dataZoom:[{type:"slider",height:6,bottom:"7%",show:!0,start:0,end:50,handleSize:5,handleStyle:{color:"#DCE2E8"},xAxisIndex:[0],filterMode:"filter",showDetail:!1}],grid:{left:"10%",right:"5%",top:"15%",bottom:"25%"},xAxis:[{type:"category",data:r.map(function(e){return e.name}),axisTick:{alignWithLabel:!0},axisLabel:{color:"#fff"}}],yAxis:{axisLine:{show:!1},axisTick:{show:!1},axisLabel:{color:"#fff"},splitLine:{show:!0,lineStyle:{type:"dashed"}}},series:[{name:"单位人员数",type:"bar",backgroundStyle:{color:"rgba(216, 229, 247, 0.55)",borderRadius:[8,8,0,0]},itemStyle:{borderRadius:[12,12,0,0],color:new o.fA.W4(0,0,0,1,[{offset:1,color:"rgba(84,173,147,0.2)"},{offset:0,color:"#54AD93"}])},barWidth:"10",data:a},{name:"相关方人员数",type:"bar",backgroundStyle:{color:"rgba(216, 229, 247, 0.55)",borderRadius:[8,8,0,0]},itemStyle:{borderRadius:[12,12,0,0],color:new o.fA.W4(0,0,0,1,[{offset:1,color:"rgba(72,117,231,0.2)"},{offset:0,color:"#4875E7"}])},barWidth:"10",data:n}]};t.current.setOption(i)}},59238(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>u});var o=r(47195),a=r(30758),n=r(96370),i=r(12809),s=r(80912),c=r(86070);function l(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return d(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?d(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rn});let o=r.p+"safetyEval-h5/static/images/title_bg2.9a9ee6646a563edf32e57484f2e07a5d.png";var a=r(86070);let n=function(e){return(0,a.jsxs)("div",{className:"map_content_branch_office_title_container",style:{backgroundImage:"url(".concat(o,")")},children:[(0,a.jsx)("div",{className:"basic",children:(0,a.jsx)("div",{className:"label",children:e.title})}),(0,a.jsx)("div",{className:"extra",children:e.extra})]})}},15459(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>h});var o=r(30758),a=r(97925),n=r(96370);let i=r.p+"safetyEval-h5/static/images/bg9.db24cb6a9a7ca89fd69931a220388744.png",s=r.p+"safetyEval-h5/static/images/bg10.1ca1486052568d52619dbf394eab7326.png",c=r.p+"safetyEval-h5/static/images/ico4.5219bd2cc38a806e4d73ca035ab97531.png",l=r.p+"safetyEval-h5/static/images/ico5.c0e37dd6c98e1877e1da9bad62f92547.png",d=r.p+"safetyEval-h5/static/images/ico6.dc692a854a5c4aeaae344838187462d7.png";var u=r(12809),y=r(86070);function x(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return p(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?p(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function p(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);r作业",count1:123,count2:123,count3:123},{title:"危险
作业",count1:123,count2:123,count3:123},{title:"三人及
以上作业",count1:123,count2:123,count3:123}]),2),p=r[0];r[1];var h=x((0,o.useState)([{department:"技术部",newWork:15,dangerousWork:22,threeOrMoreWork:18},{department:"生产部",newWork:12,dangerousWork:28,threeOrMoreWork:25},{department:"安全部",newWork:8,dangerousWork:35,threeOrMoreWork:12},{department:"质检部",newWork:10,dangerousWork:15,threeOrMoreWork:20},{department:"设备部",newWork:18,dangerousWork:30,threeOrMoreWork:22},{department:"维修部",newWork:14,dangerousWork:25,threeOrMoreWork:16},{department:"仓储部",newWork:6,dangerousWork:12,threeOrMoreWork:14},{department:"物流部",newWork:9,dangerousWork:18,threeOrMoreWork:19},{department:"人事部",newWork:3,dangerousWork:5,threeOrMoreWork:8},{department:"财务部",newWork:2,dangerousWork:3,threeOrMoreWork:5}]),2),f=h[0];h[1];var m=x((0,o.useState)([{dangerousWorkCategory:"高空作业",workCount:25,workStatusCount:18,personnelCount:45},{dangerousWorkCategory:"动火作业",workCount:32,workStatusCount:28,personnelCount:68},{dangerousWorkCategory:"受限空间作业",workCount:18,workStatusCount:15,personnelCount:32},{dangerousWorkCategory:"临时用电作业",workCount:42,workStatusCount:38,personnelCount:56},{dangerousWorkCategory:"吊装作业",workCount:21,workStatusCount:19,personnelCount:35},{dangerousWorkCategory:"挖掘作业",workCount:15,workStatusCount:12,personnelCount:28},{dangerousWorkCategory:"爆破作业",workCount:8,workStatusCount:6,personnelCount:18},{dangerousWorkCategory:"带压作业",workCount:12,workStatusCount:10,personnelCount:22},{dangerousWorkCategory:"断路作业",workCount:9,workStatusCount:7,personnelCount:15},{dangerousWorkCategory:"其他危险作业",workCount:16,workStatusCount:14,personnelCount:26}]),2),g=m[0];return m[1],(0,y.jsxs)("div",{className:"branch_office_weixian",children:[(0,y.jsxs)("div",{className:"block1",children:[(0,y.jsx)(u.default,{title:"重点作业统计"}),(0,y.jsx)("div",{className:"options",children:(0,y.jsx)("div",{className:"items",children:t.map(function(e,t){return(0,y.jsxs)("div",{className:"item",children:[(0,y.jsx)("div",{className:"title",children:e.title}),(0,y.jsx)("div",{className:"img",children:(0,y.jsx)("img",{src:e.icon,alt:""})}),(0,y.jsxs)("div",{className:"info",children:[(0,y.jsx)("span",{children:"当前作业数:"}),(0,y.jsx)(a.default,{end:+e.count1})]}),(0,y.jsxs)("div",{className:"info",children:[(0,y.jsx)("span",{children:"申请数:"}),(0,y.jsx)(a.default,{end:+e.count2})]})]},t)})})})]}),(0,y.jsxs)("div",{className:"block2",children:[(0,y.jsx)(u.default,{title:"重点作业"}),(0,y.jsx)("div",{className:"options",children:(0,y.jsx)("div",{className:"items",children:p.map(function(e,t){return(0,y.jsxs)("div",{className:"item",style:{backgroundImage:"url(".concat(t%2==0?i:s,")")},children:[(0,y.jsx)("div",{className:"title",dangerouslySetInnerHTML:{__html:e.title}}),(0,y.jsxs)("div",{className:"info",children:[(0,y.jsxs)("div",{children:[(0,y.jsx)("div",{className:"label",children:"当前作业数"}),(0,y.jsx)("div",{className:"value",children:(0,y.jsx)(a.default,{end:+e.count1})})]}),(0,y.jsxs)("div",{children:[(0,y.jsx)("div",{className:"label",children:"作业中"}),(0,y.jsx)("div",{className:"value",children:(0,y.jsx)(a.default,{end:+e.count2})})]}),(0,y.jsxs)("div",{children:[(0,y.jsx)("div",{className:"label",children:"已归档"}),(0,y.jsx)("div",{className:"value",children:(0,y.jsx)(a.default,{end:+e.count3})})]})]})]},t)})})})]}),(0,y.jsxs)("div",{className:"block3",children:[(0,y.jsx)(u.default,{title:"部门作业统计"}),(0,y.jsx)("div",{className:"options",children:(0,y.jsxs)("div",{className:"table",children:[(0,y.jsxs)("div",{className:"tr",children:[(0,y.jsx)("div",{className:"td",children:"部门名称"}),(0,y.jsx)("div",{className:"td",children:"四新作业"}),(0,y.jsx)("div",{className:"td",children:"危险作业"}),(0,y.jsx)("div",{className:"td",children:"三人以上作业数"})]}),(0,y.jsx)("div",{className:"scroll",children:(0,y.jsx)(n.A,{list:f,step:.5,children:f.map(function(e,t){return(0,y.jsxs)("div",{className:"tr",children:[(0,y.jsx)("div",{className:"td",children:e.department}),(0,y.jsx)("div",{className:"td",children:e.newWork}),(0,y.jsx)("div",{className:"td",children:e.dangerousWork}),(0,y.jsx)("div",{className:"td",children:e.threeOrMoreWork})]},t)})})})]})})]}),(0,y.jsxs)("div",{className:"block4",children:[(0,y.jsx)(u.default,{title:"危险作业数据统计"}),(0,y.jsx)("div",{className:"options",children:(0,y.jsxs)("div",{className:"table",children:[(0,y.jsxs)("div",{className:"tr",children:[(0,y.jsx)("div",{className:"td",children:"危险作业类别"}),(0,y.jsx)("div",{className:"td",children:"作业数"}),(0,y.jsx)("div",{className:"td",children:"作业状态数"}),(0,y.jsx)("div",{className:"td",children:"参与人员数"})]}),(0,y.jsx)("div",{className:"scroll",children:(0,y.jsx)(n.A,{list:g,step:.5,children:g.map(function(e,t){return(0,y.jsxs)("div",{className:"tr",children:[(0,y.jsx)("div",{className:"td",children:e.dangerousWorkCategory}),(0,y.jsx)("div",{className:"td",children:e.workCount}),(0,y.jsx)("div",{className:"td",children:e.workStatusCount}),(0,y.jsx)("div",{className:"td",children:e.personnelCount})]},t)})})})]})})]})]})}},35048(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>y});var o=r(30758),a=r(96370),n=r(91054);let i=r.p+"safetyEval-h5/static/images/ico20.ca7253a5c0dab6787689de6ca4f08a53.png";var s=r(12809),c=r(86070);function l(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return d(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?d(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);ra});var o=r(61984),a=function(e,t,r){t.current=o.Ts(e.current);var a=r.map(function(e){return Number.parseInt(e.WAIT_START)}),n=r.map(function(e){return Number.parseInt(e.IN_PROGRESS)}),i={tooltip:{trigger:"axis",axisPointer:{type:"none"}},legend:{data:["待开工项目数","进行中项目数"],top:"0%",right:"0%",textStyle:{color:"#fff",fontSize:14},itemWidth:12,itemHeight:10},dataZoom:[{type:"slider",height:6,bottom:"7%",show:!0,start:0,end:50,handleSize:5,handleStyle:{color:"#DCE2E8"},xAxisIndex:[0],filterMode:"filter",showDetail:!1}],grid:{left:"10%",right:"5%",top:"10%",bottom:"20%"},xAxis:[{type:"category",data:r.map(function(e){return e.NAME}),axisTick:{alignWithLabel:!0},axisLabel:{color:"#fff"}}],yAxis:{axisLine:{show:!1},axisTick:{show:!1},axisLabel:{color:"#fff"},splitLine:{show:!0,lineStyle:{type:"dashed"}}},series:[{name:"待开工项目数",type:"bar",backgroundStyle:{color:"rgba(216, 229, 247, 0.55)",borderRadius:[8,8,0,0]},itemStyle:{borderRadius:[12,12,0,0],color:new o.fA.W4(0,0,0,1,[{offset:1,color:"rgba(0,168,255,0.7)"},{offset:0,color:"#00A8FF"}])},barWidth:"10",data:a},{name:"进行中项目数",type:"bar",backgroundStyle:{color:"rgba(216, 229, 247, 0.55)",borderRadius:[8,8,0,0]},itemStyle:{borderRadius:[12,12,0,0],color:new o.fA.W4(0,0,0,1,[{offset:1,color:"rgba(255,198,124,0.7)"},{offset:0,color:"#FFC67C"}])},barWidth:"10",data:n}]};t.current.setOption(i)}},16678(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>p});var o=r(47195),a=r(30758),n=r(97925),i=r(96370),s=r(1878),c=r(91054),l=r(12809),d=r(70256),u=r(86070);function y(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return x(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?x(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function x(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rP});var o=r(14455),a=r(30758);let n=r.p+"safetyEval-h5/static/images/collapse_menu1.cd1e153b1939239f687edef00f26bb3f.png",i=r.p+"safetyEval-h5/static/images/collapse_menu2.c5b4a258f198019dda490ed601613e11.png",s=r.p+"safetyEval-h5/static/images/collapse_menu_bg1.9036885f21dec701fb55bb1f1d8ead8b.png",c=r.p+"safetyEval-h5/static/images/collapse_menu_bg2.769eb8cbdfb2c74abd88551821886252.png";var l=r(32128),d=r(7183),u=r(65953),y=r(93277),x=r(98788),p=r(82504),h=r(1443),f=r(76248),m=r(59238),g=r(15459),b=r(35048),z=r(16678),v=r(16099),j=r(42944),C=r(29703),N=r(39886),k=r(16892),I=r(27983),A=r(65639),E=r(90150),S=r(94505),M=r(35122),w=r(21994),O=r(86070);let P=function(e){var t,r,P=(0,a.useContext)(M.Context),_=P.currentPort,H=P.currentBranchOffice,T=P.pureMap,R=P.bottomUtilsCurrentIndex,U=(0,w.useContentAnimation)({currentContent:{currentPort:_,currentBranchOffice:H},type:"index"}),D=U.controls,L=U.isVisible,F=(0,w.useContentAnimation)({currentContent:{currentPort:_,currentBranchOffice:H,bottomUtilsCurrentIndex:R},side:"left",isPureMap:T,type:"panel"}),W=F.controls,B=F.displayedContent,q=F.isVisible,G=F.isCollapsed,Y=F.handleCollapse,V=F.menuControls,K=(0,w.useContentAnimation)({currentContent:{currentBranchOffice:H,bottomUtilsCurrentIndex:R},side:"right",isPureMap:T,type:"panel"}),Q=K.controls,$=K.displayedContent,J=K.isVisible,X=K.isCollapsed,Z=K.handleCollapse,ee=K.menuControls;return(0,O.jsxs)("div",{className:"map_content_container",children:[(0,O.jsxs)(O.Fragment,{children:[L&&(0,O.jsx)(o.PY1.div,{animate:D,className:"map_content_container__indexinfo",children:(0,O.jsx)(v.default,{history:e.history})}),q&&(0,O.jsxs)(o.PY1.div,{initial:{x:-300,opacity:0},animate:W,className:"map_content_container__content ".concat(B.currentPort&&("00003"!==B.currentPort||B.currentBranchOffice)?"branch_office":"port"),style:{left:35},children:["00003"===B.currentPort&&!B.currentBranchOffice&&(""===(t=-1!==B.bottomUtilsCurrentIndex&&d.portUtilsList[B.bottomUtilsCurrentIndex]?d.portUtilsList[B.bottomUtilsCurrentIndex].type:"")||"camera"===t?(0,O.jsx)(C.default,{}):"door"===t?(0,O.jsx)(N.default,{}):"fire"===t?(0,O.jsx)(E.default,{}):"danger"===t?(0,O.jsx)(A.default,{}):"weather"===t?(0,O.jsx)(k.default,{}):"people"===t?(0,O.jsx)(I.default,{}):"project"===t?(0,O.jsx)(S.default,{}):"closedArea"===t?(0,O.jsx)(j.default,{}):void 0),B.currentBranchOffice&&(""===(r=-1!==B.bottomUtilsCurrentIndex&&l.branchOfficeUtilsList[B.bottomUtilsCurrentIndex]?l.branchOfficeUtilsList[B.bottomUtilsCurrentIndex].type:"")?(0,O.jsx)(x.default,{}):"danger"===r?(0,O.jsx)(g.default,{}):"door"===r?(0,O.jsx)(h.default,{}):"fire"===r?(0,O.jsx)(b.default,{}):"people"===r?(0,O.jsx)(m.default,{}):"weather"===r?(0,O.jsx)(f.default,{}):"project"===r?(0,O.jsx)(z.default,{}):"closedArea"===r?(0,O.jsx)(y.default,{}):"camera"===r?(0,O.jsx)(u.default,{}):void 0)]}),J&&(0,O.jsx)(o.PY1.div,{initial:{x:300,opacity:0},animate:Q,className:"map_content_container__content ".concat(B.currentPort&&("00003"!==B.currentPort||B.currentBranchOffice)?"branch_office":"port"),style:{right:35},children:$.currentBranchOffice&&function(){if(""===(-1!==$.bottomUtilsCurrentIndex&&l.branchOfficeUtilsList[$.bottomUtilsCurrentIndex]?l.branchOfficeUtilsList[$.bottomUtilsCurrentIndex].type:""))return(0,O.jsx)(p.default,{})}()})]}),function(){if(T)return null;if("00003"===_&&!H)return(0,O.jsx)(o.PY1.div,{className:"collapse_menu port left",style:{backgroundImage:"url(".concat(s,")")},animate:V,onClick:Y,initial:{x:0},children:(0,O.jsx)(o.PY1.img,{src:n,alt:"",animate:{x:"-50%",y:"-50%",rotate:180*!!G},transition:{duration:G?.3:.5,ease:G?"easeIn":"easeOut"},style:{left:"50%",top:"50%",position:"absolute"}})});if(H){var e=-1!==R?l.branchOfficeUtilsList[R].type:"";return(0,O.jsxs)(O.Fragment,{children:["camera"!==e&&(0,O.jsx)(o.PY1.div,{className:"collapse_menu branch_office left",style:{backgroundImage:"url(".concat(c,")")},animate:V,onClick:Y,initial:{x:0},children:(0,O.jsx)(o.PY1.img,{src:i,alt:"",animate:{x:"-50%",y:"-50%",rotate:180*!G},transition:{duration:G?.3:.5,ease:G?"easeIn":"easeOut"},style:{left:"50%",top:"50%",position:"absolute"}})}),-1===R&&(0,O.jsx)(o.PY1.div,{className:"collapse_menu branch_office right",style:{backgroundImage:"url(".concat(c,")")},animate:ee,onClick:Z,initial:{x:0,rotate:180},children:(0,O.jsx)(o.PY1.img,{src:i,alt:"",animate:{x:"-50%",y:"-50%",rotate:180*!X},transition:{duration:X?.3:.5,ease:X?"easeIn":"easeOut"},style:{left:"50%",top:"50%",position:"absolute"}})})]})}}()]})}},93102(e,t,r){"use strict";r.r(t),r.d(t,{initEcharts1:()=>a});var o=r(61984),a=function(e,t,r){t.current=o.Ts(e.current);var a=r.map(function(e){return Number.parseInt(e.IN)}),n=r.map(function(e){return Number.parseInt(e.OUT)}),i={tooltip:{trigger:"axis",axisPointer:{type:"none"}},legend:{data:["进","出"],top:"0%",right:"0%",textStyle:{color:"#fff",fontSize:14},itemWidth:12,itemHeight:10},dataZoom:[{type:"slider",height:6,bottom:"7%",show:!0,start:0,end:50,handleSize:5,handleStyle:{color:"#DCE2E8"},xAxisIndex:[0],filterMode:"filter",showDetail:!1}],grid:{left:"10%",right:"5%",top:"10%",bottom:"20%"},xAxis:[{type:"category",data:r.map(function(e){return e.NAME}),axisTick:{alignWithLabel:!0},axisLabel:{color:"#fff"}}],yAxis:{axisLine:{show:!1},axisTick:{show:!1},axisLabel:{color:"#fff"},splitLine:{show:!0,lineStyle:{type:"dashed"}}},series:[{name:"进",type:"bar",backgroundStyle:{color:"rgba(216, 229, 247, 0.55)",borderRadius:[8,8,0,0]},itemStyle:{borderRadius:[12,12,0,0],color:new o.fA.W4(0,0,0,1,[{offset:1,color:"rgba(121,103,255,0.7)"},{offset:0,color:"#7967FF"}])},barWidth:"10",data:a},{name:"出",type:"bar",backgroundStyle:{color:"rgba(216, 229, 247, 0.55)",borderRadius:[8,8,0,0]},itemStyle:{borderRadius:[12,12,0,0],color:new o.fA.W4(0,0,0,1,[{offset:1,color:"rgba(255,198,124,0.7)"},{offset:0,color:"#FFC67C"}])},barWidth:"10",data:n}]};t.current.setOption(i)}},42944(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>g});var o=r(47195),a=r(30758),n=r(97925),i=r(96370),s=r(71371),c=r(89365);let l=r.p+"safetyEval-h5/static/images/icon31.bf98515e6ec3509439b6c0b901566a03.png";var d=r(44775),u=r(70057),y=r(93102),x=r(86070);function p(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return h(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?h(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rN});var o=r(30758),a=r(97925),n=r(96370);let i=r.p+"safetyEval-h5/static/images/img2_1.968a6ded93e6c26c021ba29eea3ac338.png",s=r.p+"safetyEval-h5/static/images/img2_2.4222f2b1e73f7a0bf3c62191a0ce8912.png",c=r.p+"safetyEval-h5/static/images/img2ico1.af1e2cdc7eea8124b167d818bb9352d2.png",l=r.p+"safetyEval-h5/static/images/img2ico2.ccc8f28e4658e7a0da1401fb36499701.png",d=r.p+"safetyEval-h5/static/images/img2ico3.4c681c9a2f9e90cfa448547aaaf4e3ac.png",u=r.p+"safetyEval-h5/static/images/img2ico4.f66196acc2c1ad65e4d5ff7cd00f7b7e.png",y=r.p+"safetyEval-h5/static/images/img3.60596d3138447dc9c5442db38701cba7.png",x=r.p+"safetyEval-h5/static/images/img4.90c220aa5964d4f8cae55e360badb3c8.png",p=r.p+"safetyEval-h5/static/images/img5.6d94f666acd4b7854d282052fcc84dd4.png",h=r.p+"safetyEval-h5/static/images/oval.358b3f57e5086dd3ef6e847bdedce5b2.png";var f=r(38049),m=r(7905),g=r(70057),b=r(35122),z=r(86070);function v(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return j(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?j(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function j(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rn});var o=r(61984),a=r(66464),n=function(e,t,r){var n=[],i=[],s=[];r.forEach(function(e){n.push(e.AREA_NAME),i.push(Number(e.CAR_IN)+Number(e.PEOPLE_IN)),s.push(Number(e.CAR_OUT)+Number(e.PEOPLE_OUT))}),t.current=o.Ts(e.current);var c={tooltip:{trigger:"axis",axisPointer:{type:"shadow"}},grid:{left:"2%",right:"4%",bottom:"5%",top:"10%",containLabel:!0},dataZoom:[{type:"slider",height:6,bottom:0,show:!0,start:0,end:25,handleSize:3,handleStyle:{color:"#DCE2E8"},xAxisIndex:[0],filterMode:"filter",showDetail:!1}],legend:{top:"0%",right:"0%",textStyle:{color:"#fff",fontSize:14},itemWidth:12,itemHeight:10},xAxis:{type:"category",data:n,axisLine:{lineStyle:{color:"#fff"}},axisLabel:{rotate:0,color:"#fff",fontSize:14,interval:0,formatter:function(e){return(0,a.textFormatter)(e,3)}}},yAxis:{type:"value",axisLine:{show:!1,lineStyle:{color:"#fff"}},splitLine:{show:!0,lineStyle:{color:"#8c9493"}},axisLabel:{fontSize:14,color:"#fff"}},series:[{name:"进",type:"bar",barWidth:"30%",color:new o.fA.W4(0,0,0,1,[{offset:0,color:"#00f0ff"},{offset:1,color:"#0066ff"}],!1),data:i},{name:"出",type:"bar",barWidth:"30%",color:new o.fA.W4(0,0,0,1,[{offset:0,color:"#003cff"},{offset:1,color:"#00ff9c"}],!1),data:s}]};t.current.setOption(c)}},39886(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>m});var o=r(47195),a=r(30758),n=r(96370);let i=r.p+"safetyEval-h5/static/images/img7.54fd00661adb3224b55c47ccccf88b7a.png",s=r.p+"safetyEval-h5/static/images/img8.0197628ed03995b6dbe323fa49b22441.png";var c=r(38049),l=r(7905),d=r(70057),u=r(35122),y=r(51664),x=r(86070);function p(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return h(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?h(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rI});var o=r(22519),a=r(30758),n=r(97925),i=r(96370),s=r(96278);let c=r.p+"safetyEval-h5/static/images/img2icon1.b1054e022fc79211e83e9fb03d358e82.png",l=r.p+"safetyEval-h5/static/images/img2icon2.5c1d91be2f02a5374b52562d7c141af5.png",d=r.p+"safetyEval-h5/static/images/qixiang_icon1.4559d10cf846935615280fd2c0b4618c.png",u=r.p+"safetyEval-h5/static/images/qixiang_icon2.5faaaae64021f322546825db7a95547a.png",y=r.p+"safetyEval-h5/static/images/qixiang_icon3.1fb41ee7b0a8f6184099ff847b125353.png",x=r.p+"safetyEval-h5/static/images/qixiang_icon4.61856cf2ef59f8e9dc1d7868d09276b9.png",p=r.p+"safetyEval-h5/static/images/qixiang_img1.e810a964edf3a399efeb37c3ecd9eb72.png";var h=r(38049),f=r(7905),m=r(70057),g=r(35122),b=r(86070);function z(){var e,t,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",a=r.toStringTag||"@@toStringTag";function n(r,o,a,n){var c=Object.create((o&&o.prototype instanceof s?o:s).prototype);return v(c,"_invoke",function(r,o,a){var n,s,c,l=0,d=a||[],u=!1,y={p:0,n:0,v:e,a:x,f:x.bind(e,4),d:function(t,r){return n=t,s=0,c=e,y.n=r,i}};function x(r,o){for(s=r,c=o,t=0;!u&&l&&!a&&t3?(a=p===o)&&(c=n[(s=n[4])?5:(s=3,3)],n[4]=n[5]=e):n[0]<=x&&((a=r<2&&xo||o>p)&&(n[4]=r,n[5]=o,y.n=p,s=0))}if(a||r>1)return i;throw u=!0,o}return function(a,d,p){if(l>1)throw TypeError("Generator is already running");for(u&&1===d&&x(d,p),s=d,c=p;(t=s<2?e:c)||!u;){n||(s?s<3?(s>1&&(y.n=-1),x(s,c)):y.n=c:y.v=c);try{if(l=2,n){if(s||(a="next"),t=n[a]){if(!(t=t.call(n,c)))throw TypeError("iterator result is not an object");if(!t.done)return t;c=t.value,s<2&&(s=0)}else 1===s&&(t=n.return)&&t.call(n),s<2&&(c=TypeError("The iterator does not provide a '"+a+"' method"),s=1);n=e}else if((t=(u=y.n<0)?c:r.call(o,y))!==i)break}catch(t){n=e,s=1,c=t}finally{l=1}}return{value:t,done:u}}}(r,a,n),!0),c}var i={};function s(){}function c(){}function l(){}t=Object.getPrototypeOf;var d=l.prototype=s.prototype=Object.create([][o]?t(t([][o]())):(v(t={},o,function(){return this}),t));function u(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,l):(e.__proto__=l,v(e,a,"GeneratorFunction")),e.prototype=Object.create(d),e}return c.prototype=l,v(d,"constructor",l),v(l,"constructor",c),c.displayName="GeneratorFunction",v(l,a,"GeneratorFunction"),v(d),v(d,a,"Generator"),v(d,o,function(){return this}),v(d,"toString",function(){return"[object Generator]"}),(z=function(){return{w:n,m:u}})()}function v(e,t,r,o){var a=Object.defineProperty;try{a({},"",{})}catch(e){a=0}(v=function(e,t,r,o){function n(t,r){v(e,t,function(e){return this._invoke(t,r,e)})}t?a?a(e,t,{value:r,enumerable:!o,configurable:!o,writable:!o}):e[t]=r:(n("next",0),n("throw",1),n("return",2))})(e,t,r,o)}function j(e,t,r,o,a,n,i){try{var s=e[n](i),c=s.value}catch(e){return void r(e)}s.done?t(c):Promise.resolve(c).then(o,a)}function C(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return N(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?N(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function N(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rf});var o=r(30758),a=r(96370);let n=r.p+"safetyEval-h5/static/images/img1ico1.650bd6f021a1b2656e326c2c824ba37e.png",i=r.p+"safetyEval-h5/static/images/img1ico2.03a0593211560a2efc4822b9a3039a4c.png",s=r.p+"safetyEval-h5/static/images/img1ico3.fb1f3e01634262b8cb989a6a69f2817d.png",c=r.p+"safetyEval-h5/static/images/img1ico4.eacccbb60dcbd81fc70f90679b2cfb60.png",l=r.p+"safetyEval-h5/static/images/img1ico5.415a8e7107ba8233a37311aff46bc5fd.png";var d=r(96278),u=r(70057),y=r(35122),x=r(86070);function p(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return h(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?h(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);ri});let o=r.p+"safetyEval-h5/static/images/title_bg1.af28eeadc2ffdc9049c18aba272e6edb.png",a=r.p+"safetyEval-h5/static/images/title_ico.f7feca55478428d7206fe0aa9bc130ea.png";var n=r(86070);let i=function(e){return(0,n.jsxs)("div",{className:"map_content_port_title_container",style:{backgroundImage:"url(".concat(o,")")},children:[(0,n.jsxs)("div",{className:"basic",children:[(0,n.jsx)("div",{className:"img",style:{backgroundImage:"url(".concat(a,")")}}),(0,n.jsx)("div",{className:"label",children:e.title})]}),(0,n.jsx)("div",{className:"extra",children:e.extra})]})}},5464(e,t,r){"use strict";r.r(t),r.d(t,{initEcharts1:()=>a});var o=r(61984),a=function(e,t,r){for(var a=["29,128,219","1,245,255","228,187,45","45,118,228","188,45,228","228,72,45","58,45,228","221,44,67"],n=r.date,i=r.name,s=[],c=0;cN});var o=r(47195),a=r(30758),n=r(97925);let i=r.p+"safetyEval-h5/static/images/anquan_bg1.897118aae48aa779d23714d1ce08deb5.png",s=r.p+"safetyEval-h5/static/images/anquan_bg2.696bd3a873960e56332f16da0d1685f7.png",c=r.p+"safetyEval-h5/static/images/anquan_bg3.4265ea24f9975e21505346415401d7d0.png",l=r.p+"safetyEval-h5/static/images/anquan_bg4.d30b9f03f213d70cab20a5c6ff12180a.png";var d=r(73553);let u=r.p+"safetyEval-h5/static/images/icon27.18f0c727e9fbbc1d2494b1f525cb3154.png",y=r.p+"safetyEval-h5/static/images/icon28.8015c9806916e3a56451674172eaf969.png";var x=r(71371),p=r(71057),h=r(70057),f=r(35122),m=r(5464),g=r(86070);function b(e){return(b="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function z(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,o)}return r}function v(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return C(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?C(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function C(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);r0?r.map(function(e,t){return(0,g.jsxs)("div",{className:"tr",children:[(0,g.jsx)("div",{className:"td",children:(0,g.jsx)("div",{className:"bg",style:v(v(v(v({},0===t&&{backgroundImage:"url(".concat(i,")")}),1===t&&{backgroundImage:"url(".concat(s,")")}),2===t&&{backgroundImage:"url(".concat(c,")")}),t>2&&{backgroundImage:"url(".concat(l,")")}),children:t+1})}),(0,g.jsx)("div",{className:"td",children:e.WORK_TYPE}),(0,g.jsx)("div",{className:"td",children:e.STATUS_NAME}),(0,g.jsx)("div",{className:"td",children:e.USER_NAME})]},t)}):(0,g.jsx)("div",{className:"tr",children:(0,g.jsx)("div",{className:"empty",children:"暂无数据"})})]})})]})]})}},90150(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>f});var o=r(78501),a=r(67199),n=r(73835),i=r(21121),s=r(70861),c=r(30758),l=r(96370),d=r(70057),u=r(35122),y=r(86070);function x(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return p(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?p(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function p(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rh});var o=r(30758),a=r(97925),n=r(73553);let i=r.p+"safetyEval-h5/static/images/icon25.bf693ef4e0f8ef15771ebfbb36abb726.png",s=r.p+"safetyEval-h5/static/images/icon26.9ed66ec42dd4248fd8bfa614896710b7.png";var c=r(71057);let l=r.p+"safetyEval-h5/static/images/videoimg1.e23db136b44778186c5fd67fb72d7d9b.png";var d=r(70057),u=r(35122),y=r(86070);function x(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return p(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?p(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function p(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rs});var o=r(11287),a=r(30758);function n(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return i(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?i(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rh});var o=r(14455),a=r(30758);let n=r.p+"safetyEval-h5/static/images/back1.8f8b459db5f77ed3b1e8ee08d6caf4bb.png";var i=r(28404);let s=r.p+"safetyEval-h5/static/images/guang.0f97137a5544500f3ce27cb641aa1b89.png",c=r.p+"safetyEval-h5/static/images/top1.a1e35c4c3edf8e9ff15970cfba10fbfc.png",l=r.p+"safetyEval-h5/static/images/top2.e4f6628fa226c74c8c9e1d162251645a.png";var d=r(35122),u=r(47),y=r(70284),x=r(3384),p=r(86070);let h=function(e){var t=(0,a.useContext)(d.Context),r=t.currentPort,h=t.currentBranchOffice,f=t.mapMethods,m=t.area,g=(0,x.useHeaderAnimation)(e.headerTitle),b=g.controls,z=g.displayedTitle,v=function(){sessionStorage.removeItem("mapCurrentBranchOfficeId"),u.default.emit(y.deletePeoplePositionPointMittKey),r?"00003"!==r&&h?(u.default.emit(y.clickPortPointMittKey,{id:"",name:"秦港股份"}),u.default.emit(y.clickBranchOfficePointMittKey,{id:"",corpName:"秦港股份"}),f.current.removeWall(),f.current.removeFourColorDiagram(),f.current.removeBranchOfficePoint(),f.current.removeMarkPoint(),f.current.flyTo(),f.current.addPortPoint()):h?(u.default.emit(y.clickBranchOfficePointMittKey,{id:"",corpName:"秦港股份"}),f.current.removeBranchOfficePoint(),f.current.removeMarkPoint(),f.current.returnPreviousCenterPoint(),f.current.removeFourColorDiagram(),f.current.removeWall(),f.current.addBranchOfficePoint(m)):r&&(u.default.emit(y.clickPortPointMittKey,{id:"",name:"秦港股份"}),f.current.removeWall(),f.current.removeFourColorDiagram(),f.current.removeBranchOfficePoint(),f.current.removeMarkPoint(),f.current.flyTo(),f.current.addPortPoint()):(window.close(),setTimeout(function(){window.closed||window.opener||(window.location.href="https://gbs-gateway.qhdsafety.com/")},500)),u.default.emit(y.resetBottomCurrentIndexMittKey),u.default.emit(y.resetAllBottomUtilsCheckMittKey),u.default.emit(y.clickBackMittKey),u.default.emit(y.changePeopleTrajectorySelectVisibleMittKey,!1)};return(0,p.jsx)("div",{className:"map_content_header_container",children:(0,p.jsxs)(o.PY1.header,{animate:b,className:"".concat("秦港股份安全监管平台"===z?"port":"branch_office"),style:{backgroundImage:"url(".concat("秦港股份安全监管平台"===z?c:l,")")},children:["秦港股份安全监管平台"===z&&(0,p.jsx)("div",{style:{backgroundImage:"url(".concat(n,")")},className:"back",onClick:v}),"秦港股份安全监管平台"!==z&&(0,p.jsxs)("div",{className:"back",onClick:v,children:[(0,p.jsx)("img",{src:i.A,alt:""}),(0,p.jsx)("div",{children:"返回"})]}),(0,p.jsx)("div",{className:"title",children:z}),(0,p.jsx)("div",{style:{backgroundImage:"url(".concat(s,")")},className:"guang"})]})})}},3384(e,t,r){"use strict";r.r(t),r.d(t,{useHeaderAnimation:()=>i});var o=r(11287),a=r(30758);function n(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rtypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var r,o,a,n,i=[],s=!0,c=!1;try{a=(t=t.call(e)).next,!1;for(;!(s=(r=a.call(t)).done)&&(i.push(r.value),2!==i.length);s=!0);}catch(e){c=!0,o=e}finally{try{if(!s&&null!=t.return&&(n=t.return(),Object(n)!==n))return}finally{if(c)throw o}}return i}}(t)||function(e){if(e){if("string"==typeof e)return n(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?n(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),c=s[0],l=s[1];return(0,a.useEffect)(function(){var t=c!==e;i.current?(r.set({y:-100,opacity:0}),l(e),r.start({y:0,opacity:1,transition:{duration:.5,ease:"easeOut"}}),i.current=!1):t&&r.start({y:-100,opacity:0,transition:{duration:.3,ease:"easeIn"}}).then(function(){l(e),r.start({y:0,opacity:1,transition:{duration:.5,ease:"easeOut"}})})},[e,r,c]),{controls:r,displayedTitle:c}}},38292(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>b});var o=r(14331),a=r(3137),n=r(14455),i=r(30758);let s=r.p+"safetyEval-h5/static/images/bg11.14d66bcc46713df663eb100a3f51da49.png",c=r.p+"safetyEval-h5/static/images/button.c565896db64505670fc2f6d760a272d1.png",l=r.p+"safetyEval-h5/static/images/tooltip.2a8338c87a65e2b5668b3daafa2c845f.png";var d=r(35122),u=r(47),y=r(70284),x=r(48298),p=r(16980),h=r(7249),f=r(86070);function m(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return g(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?g(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function g(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rn});var o=r(11287),a=r(30758);function n(e){var t=(0,o.s)(),r=(0,a.useRef)(!1),n=(0,a.useRef)(!0);return(0,a.useEffect)(function(){n.current?e?t.start({y:[80,-15,5,0],opacity:[0,1,1,1],scale:[.9,1.05,.98,1],transition:{duration:.7,times:[0,.5,.75,1],ease:[.34,1.56,.64,1]}}).then(function(){r.current=!0,n.current=!1}):n.current=!1:e&&!r.current?t.start({y:[80,-15,5,0],opacity:[0,1,1,1],scale:[.9,1.05,.98,1],transition:{duration:.7,times:[0,.5,.75,1],ease:[.34,1.56,.64,1]}}).then(function(){r.current=!0}):!e&&r.current&&t.start({y:[0,-20,10,100],opacity:[1,1,.8,0],scale:[1,1.02,.95,.85],transition:{duration:.5,times:[0,.2,.5,1],ease:[.68,-.6,.32,1.6]}}).then(function(){r.current=!1})},[e,t]),{controls:t}}},16980(e,t,r){"use strict";r.r(t),r.d(t,{useRightUtilsAnimation:()=>s});var o=r(11287),a=r(30758);function n(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return i(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?i(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rf});let o=r.p+"safetyEval-h5/static/images/ico1.f8ae04123dd8f3062be48e77e4d6d6c7.png",a=r.p+"safetyEval-h5/static/images/ico2.f79d3b567a6aa056d158f7eefab6a14b.png",n=r.p+"safetyEval-h5/static/images/ico3.82856b4834e193189634ac87c2df01b0.png",i=r.p+"safetyEval-h5/static/images/ico4.d5bd66fb1a904f2eae7791221214e024.png",s=r.p+"safetyEval-h5/static/images/ico5.bbd66ddf9fa9a014a4407c89f1579ce8.png",c=r.p+"safetyEval-h5/static/images/ico6.a480e1fdeca9b9f4cb1703e4bc4f5fb3.png",l=r.p+"safetyEval-h5/static/images/ico7.96c9dc3d15adbc2b9e4771f6d0e87f83.png",d=r.p+"safetyEval-h5/static/images/ico8.b930d38422716e71d3e08d0b455bbd89.png",u=r.p+"safetyEval-h5/static/images/ico9.931dc6061adc6c2dee9eb08ddb598fdb.png",y=r.p+"safetyEval-h5/static/images/back.acb4f24aab59ce2273423bd9e7aa6a17.png",x=r.p+"safetyEval-h5/static/images/bianjie.2f52648484e249fdb090b90c6de2aa65.png",p=r.p+"safetyEval-h5/static/images/bianjie_on.245103e5cdd5260c9c6c368300ba616e.png",h=r.p+"safetyEval-h5/static/images/del.1f7ab2e81732d451f09f911def3e4bd6.png";var f=[{imgPort:y,imgBranchOffice:o,label:"返回主系统",type:"back"},{imgPort:r.p+"safetyEval-h5/static/images/full.31739167102aa848129059758dd014b5.png",imgBranchOffice:a,checkImgPort:r.p+"safetyEval-h5/static/images/full_on.fdf8e7f8c43dbd236a8a5577241cd328.png",check:!1,label:"全屏",type:"full"},{imgPort:r.p+"safetyEval-h5/static/images/img2.34d7eb0fc8665179c154ce883b3037bf.png",imgBranchOffice:n,label:"返回中心点",type:"return"},{imgPort:r.p+"safetyEval-h5/static/images/img4.abcff335bc9c9cbcaf02a98afbc3278a.png",imgBranchOffice:i,checkImgPort:r.p+"safetyEval-h5/static/images/img4_on.5c24b7fb3f3829cf687ab13167231cf7.png",check:!1,label:"切换视角",type:"scene"},{imgPort:h,imgBranchOffice:s,label:"删除标记点",type:"del"},{imgPort:r.p+"safetyEval-h5/static/images/map.6d3470ac64edc9a4ea644cef2269ad67.png",imgBranchOffice:c,checkImgPort:r.p+"safetyEval-h5/static/images/map_on.1dc80c7eeadcb1f983d584773cb8af9c.png",check:!1,label:"纯净地图",type:"pureMap"},{imgPort:r.p+"safetyEval-h5/static/images/qixiang.3558ff12ef83e663baee7bda228564b3.png",imgBranchOffice:l,label:"气象监测",type:"weather"},{imgPort:r.p+"safetyEval-h5/static/images/sisetu.394a58865db866b6b407e4f9c9e2d119.png",imgBranchOffice:d,checkImgPort:r.p+"safetyEval-h5/static/images/sisetu_on.5c5e1667563230bf6fac8013d94e0085.png",check:!1,label:"四色图",type:"fourColor"},{imgPort:x,imgBranchOffice:u,checkImgPort:p,check:!1,label:"边界",type:"wall"}]},24686(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>i});var o=r(70861),a=r(55541),n=r(86070);let i=function(e){var t=e.info,r=e.close,i=e.enter;return(0,n.jsx)("div",{className:"map_content_box",children:(0,n.jsxs)("div",{className:"box-wrap",children:[(0,n.jsxs)("div",{className:"area",children:[(0,n.jsx)("div",{}),(0,n.jsx)("div",{className:"area-title fontColor",children:null==t?void 0:t.corpName}),(0,n.jsx)("div",{className:"close",style:{backgroundImage:"url(".concat(a.A,")")},onClick:r})]}),(0,n.jsxs)("div",{className:"content",children:[(0,n.jsxs)("div",{className:"data-li",children:[(0,n.jsx)("div",{className:"data-label textColor",children:"统一社会信用代码:"}),(0,n.jsx)("div",{className:"data-value",children:(0,n.jsx)("span",{className:"label-num textColor line-3",children:null==t?void 0:t.code})})]}),(0,n.jsxs)("div",{className:"data-li",children:[(0,n.jsx)("div",{className:"data-label textColor",children:"法定代表人:"}),(0,n.jsx)("div",{className:"data-value",children:(0,n.jsx)("span",{className:"label-num textColor line-3",children:null==t?void 0:t.lrName})})]}),(0,n.jsxs)("div",{className:"data-li",children:[(0,n.jsx)("div",{className:"data-label textColor",children:"主要负责人:"}),(0,n.jsx)("div",{className:"data-value",children:(0,n.jsx)("span",{className:"label-num textColor line-3",children:null==t?void 0:t.contacts})})]}),(0,n.jsxs)("div",{className:"data-li",children:[(0,n.jsx)("div",{className:"data-label textColor",children:"所属行业:"}),(0,n.jsx)("div",{className:"data-value",children:(0,n.jsx)("span",{className:"label-num textColor line-3",children:null==t?void 0:t.industryNames})})]}),(0,n.jsxs)("div",{className:"data-li",children:[(0,n.jsx)("div",{className:"data-label textColor",children:"地址:"}),(0,n.jsx)("div",{className:"data-value",children:(0,n.jsx)("span",{className:"label-num textColor line-3",children:null==t?void 0:t.address})})]}),(0,n.jsx)("div",{className:"data-li h_60",children:(0,n.jsx)("div",{className:"btn-bottom",children:(0,n.jsx)(o.Ay,{type:"primary",size:"small",onClick:i,children:"点击进入"})})})]})]})})}},45893(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>i});var o=r(70861),a=r(55541),n=r(86070);let i=function(e){var t=e.info,r=e.close,i=e.enter;return(0,n.jsx)("div",{className:"map_content_box",children:(0,n.jsxs)("div",{className:"box-wrap",children:[(0,n.jsxs)("div",{className:"area",children:[(0,n.jsx)("div",{}),(0,n.jsx)("div",{className:"area-title fontColor",children:null==t?void 0:t.name}),(0,n.jsx)("div",{className:"close",style:{backgroundImage:"url(".concat(a.A,")")},onClick:r})]}),(0,n.jsxs)("div",{className:"content",children:[(0,n.jsx)("div",{className:"data-label textColor",children:"简介:"}),(0,n.jsx)("div",{className:"data-value",children:(0,n.jsx)("span",{className:"label-num textColor line-3",children:null==t?void 0:t.introduce})}),(0,n.jsx)("div",{className:"data-li h_60",children:(0,n.jsx)("div",{className:"btn-bottom",children:(0,n.jsx)(o.Ay,{type:"primary",size:"small",onClick:i,children:"点击进入"})})})]})]})})}},2218(e,t,r){"use strict";function o(e){return(o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}r.r(t),r.d(t,{Coord:()=>c});function a(e){var t=function(e,t){if("object"!=o(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var a=r.call(e,t||"default");if("object"!=o(a))return a;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"==o(t)?t:t+""}var n,i,s=window.Cesium,c=(n=function e(t){var r,o;if(!(this instanceof e))throw TypeError("Cannot call a class as a function");o=void 0,(r=a(r="viewer"))in this?Object.defineProperty(this,r,{value:o,enumerable:!0,configurable:!0,writable:!0}):this[r]=o,this.viewer=t},i=[{key:"cartesian2ToCartesian3",value:function(e){var t=this.viewer,r=null;if(t&&e){var o=this.viewer.scene.drillPick(e),a=!1;for(var n in o)if(!Number.isNaN(Number(n))){var i=o[n];if((a=i&&i.primitive instanceof s.Cesium3DTileFeature||i&&i.primitive instanceof s.Cesium3DTileset||i&&i.primitive instanceof s.Model)&&(t.scene.pick(e),r=t.scene.pickPosition(e))){var c=s.Cartographic.fromCartesian(r);c.height<0&&(c.height=0);var l=s.CesiumMath.toDegrees(c.longitude),d=s.CesiumMath.toDegrees(c.latitude),u=c.height;return this.lnglatToCartesian3(l,d,u)}}if(!a)if(t.terrainProvider instanceof s.EllipsoidTerrainProvider){if(r=t.scene.camera.pickEllipsoid(e,t.scene.globe.ellipsoid)){var y=this.cartesian3ToLngLat(r);y&&y.height<0&&(r=this.lnglatToCartesian3(y.longitude,y.latitude,.1))}}else{var x=t.scene.camera.getPickRay(e);if(!x)return null;r=t.scene.globe.pick(x,t.scene)}}return r}},{key:"cartesian2ToLnglat",value:function(e){var t=this.cartesian2ToCartesian3(e);return this.cartesian3ToLngLat(t)}},{key:"cartesian3ToCartesian2",value:function(e){return s.SceneTransforms.wgs84ToWindowCoordinates(this.viewer.scene,e)}},{key:"computeViewerBounds",value:function(){var e=this.scene.camera.computeViewRectangle(),t=[];if(void 0===e){var r=function(e,t,r){var o=e.camera,a=e.scene,n=new s.Cartesian2(t,r),i=a.globe.ellipsoid,c=o.pickEllipsoid(n,i);if(c){var l=a.globe.ellipsoid.cartesianToCartographic(c);return{lon:s.CesiumMath.toDegrees(l.longitude),lat:s.CesiumMath.toDegrees(l.latitude)}}},o=this.scene.canvas,a=r(this,0,0),n=r(this,o.clientWidth,o.clientHeight);null!=a&&a.lon&&null!=a&&a.lat&&null!=n&&n.lon&&null!=n&&n.lat&&(t=[a.lon,a.lat,n.lon,n.lat])}else t=[s.CesiumMath.toDegrees(e.west),s.CesiumMath.toDegrees(e.south),s.CesiumMath.toDegrees(e.east),s.CesiumMath.toDegrees(e.north)];return t}},{key:"isVisibleByBounds",value:function(e){var t=!1,r=this.computeViewerBounds();if(r){var o=this.cartesian3ToLngLat(e);if(o){var a=o.longitude,n=o.latitude;a>=r[0]&&a<=r[2]&&n>=r[1]&&n<=r[3]&&(t=!0)}}return t}},{key:"cartesian3ToLngLat",value:function(e){if(e){var t=this.viewer.scene.globe.ellipsoid.cartesianToCartographic(e),r=s.CesiumMath.toDegrees(t.latitude);return{longitude:s.CesiumMath.toDegrees(t.longitude),latitude:r,height:t.height}}}}],function(e,t){for(var r=0;rl});var o,a,n=r(2218);function i(e){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function s(e,t,r){return(t=c(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function c(e){var t=function(e,t){if("object"!=i(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,t||"default");if("object"!=i(o))return o;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"==i(t)?t:t+""}var l=(o=function e(t,r){var o;if(!(this instanceof e))throw TypeError("Cannot call a class as a function");s(this,"viewer",void 0),s(this,"element",void 0),s(this,"options",void 0),s(this,"cameraMoveEnd",void 0),s(this,"moving",!1),s(this,"postRender",void 0),s(this,"coord",void 0),this.viewer=t,this.coord=new n.Coord(t),this.options=r,this.element=null==(o=this.options)?void 0:o.element,this.addCameraLisener(),this.addMapListener()},a=[{key:"setPosition",value:function(e){if(this.viewer&&e){var t=this.coord.cartesian3ToCartesian2(e),r=this.element;if(r&&t){var o,a,n,i=t.x-r.clientWidth/2,s=t.y-r.clientHeight-15;null!=(o=this.options)&&o.popPosition&&((null==(a=this.options)?void 0:a.popPosition)==="leftbottom"?(i=t.x,s=t.y-r.clientHeight):(null==(n=this.options)?void 0:n.popPosition)==="leftmiddle"&&(i=t.x+20,s=t.y-r.clientHeight/2)),r.style.display="block",r.style.left="".concat(i,"px"),r.style.top="".concat(s,"px")}this.options&&(this.options.position=e)}}},{key:"addCameraLisener",value:function(){var e,t,r=this;null!=(t=this.options)&&t.visibleMaxCameraHeight&&(this.cameraMoveEnd=null==(e=this.viewer)?void 0:e.camera.moveEnd.addEventListener(function(){var e,t,o=null==(e=r.viewer)?void 0:e.camera.getMagnitude();o&&null!=(t=r.options)&&t.visibleMaxCameraHeight&&r.element&&(o-6375e3>r.options.visibleMaxCameraHeight?r.hide():r.show())}))}},{key:"hide",value:function(){this.element&&(this.element.style.visibility="hidden")}},{key:"show",value:function(){this.element&&(this.element.style.visibility="visible")}},{key:"destory",value:function(){this.cameraMoveEnd&&this.cameraMoveEnd(),this.postRender&&this.postRender()}},{key:"addMapListener",value:function(){var e,t=this;this.postRender=null==(e=this.viewer)?void 0:e.scene.postRender.addEventListener(function(){var e,r,o,a=null==(e=t.options)?void 0:e.position;a&&(null!=(r=t.options)&&r.renderInViewBounds?t.coord.isVisibleByBounds(a)?(t.moving||t.setPosition(a),(null==(o=t.element)?void 0:o.style.visibility)!=="hidden"&&t.show()):t.hide():t.moving||t.setPosition(a))})}}],function(e,t){for(var r=0;ry});var o,a,n=r(99576),i=r(58957);function s(e){return(s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function c(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,o)}return r}function l(e){for(var t=1;tv});var o=r(6711),a=r(47195),n=r(14331),i=r(63263),s=r(30758),c=r(83792),l=r(26489),d=r(43440),u=r(44508),y=r(12354),x=r(38292),p=r(35122),h=r(41885),f=r(47),m=r(70284),g=r(86070);function b(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return z(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?z(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function z(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);r1&&(this._uTime=0),r.uTime=this._uTime,this.viewer.scene.requestRender(),r},t.prototype.equals=function(e){return this===e||e instanceof t&&this._uTime===e._uTime},e.Material.CustomMaterialType="CustomMaterial",e.Material.CustomMaterialSource="\nczm_material czm_getMaterial(czm_materialInput materialInput)\n{\n czm_material material = czm_getDefaultMaterial(materialInput);\n float progress = mod(1.0 - materialInput.st.s + uTime, 1.0);\n float head = smoothstep(0.95, 1.0, progress) * 2.0;\n vec3 baseColor = vec3(1, 0, 0);\n float tailFade = smoothstep(0.3, 0.0, progress);\n vec3 tailColor = mix(vec3(0), vec3(1), tailFade);\n material.diffuse = baseColor + tailColor * 0.8 + vec3(head);\n material.emission = material.diffuse * 0.5;\n return material;\n}",e.Material._materialCache.addMaterial(e.Material.CustomMaterialType,{fabric:{type:e.Material.CustomMaterialType,uniforms:{uTime:0},source:e.Material.CustomMaterialSource}}),e.TrajectoryPolylineTrailLinkMaterialProperty=t},26360(e,t,r){"use strict";let o=r.p+"safetyEval-h5/static/images/wall_img.e8d2ad91d83e28e74372d5909d89f471.png";var a=window.Cesium;function n(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{color:a.Color.fromBytes(201,118,243).withAlpha(.5),duration:2e3};this.viewer=e,this._definitionChanged=new a.Event,this._color=void 0,this._colorSubscription=void 0,this.color=t.color,this.duration=t.duration,this._time=new Date().getTime()}Object.defineProperties(n.prototype,{isConstant:{get:function(){return!1}},definitionChanged:{get:function(){return this._definitionChanged}},color:a.createPropertyDescriptor("color")}),n.prototype.getType=function(){return"PolylineTrailLink"},n.prototype.getValue=function(e,t){return a.defined(t)||(t={}),t.color=a.Property.getValueOrClonedDefault(this._color,e,a.Color.WHITE,t.color),t.image=a.Material.PolylineTrailLinkImage,this.duration&&(t.time=(new Date().getTime()-this._time)%this.duration/this.duration),this.viewer.scene.requestRender(),t},n.prototype.equals=function(e){return this===e||e instanceof n&&a.Property.equals(this._color,e._color)},a.WallPolylineTrailLinkMaterialProperty=n,a.Material.PolylineTrailLinkType="PolylineTrailLink",a.Material.PolylineTrailLinkImage=o,a.Material.PolylineTrailLinkSource="czm_material czm_getMaterial(czm_materialInput\n materialInput)\n {\n czm_material material =\n czm_getDefaultMaterial(materialInput);\n vec2 st = materialInput.st;\n vec4 colorImage = texture2D(image,\n vec2(fract(st.t - time), st.t));\n vec4 fragColor;\n fragColor.rgb = color.rgb / 1.0;\n fragColor = czm_gammaCorrect(fragColor);\n material.alpha = colorImage.a * color.a;\n material.diffuse = color.rgb;\n material.emission = fragColor.rgb;\n return material;\n }",a.Material._materialCache.addMaterial(a.Material.PolylineTrailLinkType,{fabric:{type:a.Material.PolylineTrailLinkType,uniforms:{color:new a.Color(1,1,1,1),image:a.Material.PolylineTrailLinkImage,time:0},source:a.Material.PolylineTrailLinkSource},translucent:function(){return!0}})},35122(e,t,r){"use strict";r.r(t),r.d(t,{Context:()=>o});var o=(0,r(30758).createContext)({})},1159(e,t,r){"use strict";function o(){var e,t,r,o,a,n,i,s,c,l;return{redList:(e=[],(t={}).position=[{x:118.43668319516881,y:38.97436205004733,z:0},{x:118.43605589416767,y:38.97436354619541,z:0},{x:118.43606003974193,y:38.97380175336525,z:0},{x:118.43668763683185,y:38.973799543310356,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=20,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.45401870490508,y:38.96776218152991,z:0},{x:118.45414370540294,y:38.96776270752748,z:0},{x:118.45414007687944,y:38.96878877382881,z:0},{x:118.45401164925136,y:38.968782361648046,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=40,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.45494173070524,y:38.977582500588646,z:0},{x:118.4545701232429,y:38.97757462541758,z:0},{x:118.45457205694078,y:38.9768071676769,z:0},{x:118.4549450904821,y:38.97680357607445,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=55,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.45494627861514,y:38.97292677905791,z:0},{x:118.45457437023232,y:38.972927779685605,z:0},{x:118.45457430485773,y:38.97223922183119,z:0},{x:118.45494601887445,y:38.97224438303145,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=55,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.45494709388107,y:38.97084736106996,z:0},{x:118.45457476840677,y:38.970841667871085,z:0},{x:118.4545744600577,y:38.97015912929737,z:0},{x:118.454947552244,y:38.970156947129894,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=55,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.45493415284619,y:38.96686267766106,z:0},{x:118.45457689301277,y:38.966865580333526,z:0},{x:118.45457488273861,y:38.96613432504637,z:0},{x:118.45493678325379,y:38.966139616718635,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=55,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.44983206448667,y:38.968609088366016,z:0},{x:118.44965940997488,y:38.96861315698681,z:0},{x:118.44966495596304,y:38.96782480261959,z:0},{x:118.44983111388923,y:38.96782608949472,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=40,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.44880842986889,y:38.97531746678863,z:0},{x:118.44894429283572,y:38.97531694467056,z:0},{x:118.44894194838906,y:38.97630117210993,z:0},{x:118.44880739835806,y:38.97630210702245,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=40,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.44982511603936,y:38.97480969463574,z:0},{x:118.44965949968713,y:38.97481875275964,z:0},{x:118.44965408423367,y:38.97557539104295,z:0},{x:118.44982599924174,y:38.9755785957013,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=40,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.4506819073016,y:38.96841333187937,z:0},{x:118.45054806358243,y:38.968414672760744,z:0},{x:118.45054736276177,y:38.967441732761436,z:0},{x:118.45068503344464,y:38.96744347491385,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=40,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.45156360454915,y:38.96855778756091,z:0},{x:118.45139266437113,y:38.968561343144636,z:0},{x:118.45139462038668,y:38.96787824067078,z:0},{x:118.45156467445727,y:38.967881603664665,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=40,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.4515545490416,y:38.97729497318118,z:0},{x:118.45140224790165,y:38.97729009093853,z:0},{x:118.45138661382094,y:38.97652047016268,z:0},{x:118.45155339918233,y:38.97651885756536,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=40,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.45240766557431,y:38.97534575778284,z:0},{x:118.45224282896565,y:38.97534011028037,z:0},{x:118.45224035043688,y:38.97450040106855,z:0},{x:118.45241094858173,y:38.97450066850072,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=40,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.45328782442537,y:38.97566801945691,z:0},{x:118.45311829455308,y:38.97567130998295,z:0},{x:118.45311846659096,y:38.97681579790999,z:0},{x:118.45328686230255,y:38.97681710026622,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=40,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.45329116596798,y:38.96982793670997,z:0},{x:118.45312317895143,y:38.969827380470655,z:0},{x:118.45312354372409,y:38.96912941946868,z:0},{x:118.45329217489703,y:38.96913137385099,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=40,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),e),orangeList:(r=[],(o={}).position=[{x:118.44213515957912,y:38.98182620076322,z:0},{x:118.44213754899599,y:38.981995327952696,z:0},{x:118.4414836256865,y:38.98199173734516,z:0},{x:118.44148436646135,y:38.981827006879826,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=25,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.44148609425869,y:38.98239025737818,z:0},{x:118.44148536726634,y:38.9822562453524,z:0},{x:118.4421320807601,y:38.982256708341865,z:0},{x:118.4421329492144,y:38.98239452423525,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=25,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.4421331812966,y:38.98265803299595,z:0},{x:118.44213426112553,y:38.982797355555796,z:0},{x:118.44148596442709,y:38.982797465588966,z:0},{x:118.44148525488498,y:38.98265429110123,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=25,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),r),yellowList:(a=[],(n={}).position=[{x:118.44374546848871,y:38.982263167365176,z:0},{x:118.44374722948864,y:38.98209246368076,z:0},{x:118.44401378171396,y:38.98209257157892,z:0},{x:118.4440138349424,y:38.98226615161588,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=10,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.44597088138809,y:38.981471308427594,z:0},{x:118.4459760948946,y:38.981765817536036,z:0},{x:118.44553065474521,y:38.98176812180565,z:0},{x:118.4455307179291,y:38.98147144453055,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=12,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.45130738040707,y:38.97797099546754,z:0},{x:118.45106907549892,y:38.97796803056605,z:0},{x:118.45106610071397,y:38.97811344913565,z:0},{x:118.4513015613307,y:38.978115813757654,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=12,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.43603395080952,y:38.97359160581587,z:0},{x:118.43580285775306,y:38.973593420472234,z:0},{x:118.43580210481892,y:38.97321857213371,z:0},{x:118.43603964470061,y:38.973215625514534,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=12,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.43587776860757,y:38.974451555934586,z:0},{x:118.43598046596607,y:38.974451152455735,z:0},{x:118.43597911073135,y:38.97490896596728,z:0},{x:118.43587633772498,y:38.974908592621226,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=12,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.43587771273357,y:38.974951837797796,z:0},{x:118.43597867001527,y:38.97495268221611,z:0},{x:118.43597829096899,y:38.97540943911833,z:0},{x:118.43587767643459,y:38.97540955803896,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=12,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.43663402110707,y:38.97495214361826,z:0},{x:118.43673385928963,y:38.97495233929888,z:0},{x:118.43673571047286,y:38.97540937785033,z:0},{x:118.43663250929741,y:38.97541094741884,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=12,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.43983953504524,y:38.96990348322273,z:0},{x:118.44017642768476,y:38.970341175126165,z:0},{x:118.4404242732871,y:38.97022474670012,z:0},{x:118.44008446513408,y:38.96978851461851,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=22,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.44972448112601,y:38.96626086875943,z:0},{x:118.44972196523011,y:38.9660968075815,z:0},{x:118.45024916284817,y:38.966094967065914,z:0},{x:118.45024776181515,y:38.966272419288124,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=12,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.45371313658056,y:38.966279590054945,z:0},{x:118.45345299394606,y:38.966279983269835,z:0},{x:118.45344964962355,y:38.96608674011788,z:0},{x:118.45370785705383,y:38.966088390858744,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=36,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.44810850909023,y:38.978077442854755,z:0},{x:118.44810960069924,y:38.977969983662476,z:0},{x:118.44866012020086,y:38.97796743544993,z:0},{x:118.44866189211275,y:38.9780706361195,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=12,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.45047934536116,y:38.97814871513936,z:0},{x:118.45047438462865,y:38.97796566436581,z:0},{x:118.44984622498139,y:38.977969757294005,z:0},{x:118.44984508551426,y:38.97815056180021,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=12,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.45391498967159,y:38.978189080295785,z:0},{x:118.4539148433588,y:38.97796960716181,z:0},{x:118.45331652105497,y:38.97797271616076,z:0},{x:118.45331650229522,y:38.97818587367303,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=12,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.45302598288735,y:38.978068546212384,z:0},{x:118.45285014452516,y:38.9780701538756,z:0},{x:118.45284852664027,y:38.97794540907946,z:0},{x:118.45302528381559,y:38.97794544199758,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=18,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),a),blueList:(i=[],(s={}).position=[{x:118.44166955429107,y:38.98182679307835,z:0},{x:118.44166863235604,y:38.98154939571505,z:0},{x:118.44148064735525,y:38.981546470312615,z:0},{x:118.44148403802664,y:38.981827026181236,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=15,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44148515083845,y:38.98225626943295,z:0},{x:118.44148357227512,y:38.98199187334283,z:0},{x:118.44167252116473,y:38.98199336845894,z:0},{x:118.44167541667143,y:38.98225644697646,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=15,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44166651238953,y:38.982655449768046,z:0},{x:118.44167147528447,y:38.98239209420949,z:0},{x:118.44148607137478,y:38.98239018762681,z:0},{x:118.44148552255483,y:38.9826543316454,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=15,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44374539093153,y:38.98264644237934,z:0},{x:118.44396898301656,y:38.982650595235505,z:0},{x:118.44396918798682,y:38.9827913795993,z:0},{x:118.4437391597207,y:38.982788004176925,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44400359464382,y:38.98279581157546,z:0},{x:118.44411368603808,y:38.98279424883406,z:0},{x:118.44411330100934,y:38.9826546407027,z:0},{x:118.44400606541075,y:38.982653691147675,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44416627249714,y:38.98209744567145,z:0},{x:118.44441325624598,y:38.982094737004104,z:0},{x:118.44441437407558,y:38.982240175044886,z:0},{x:118.44416266193849,y:38.982237777361654,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44448001797208,y:38.9827089533356,z:0},{x:118.44447271287598,y:38.98238811491803,z:0},{x:118.44517930330503,y:38.982386275904595,z:0},{x:118.44517727315545,y:38.982719400397734,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44460721032858,y:38.982813289265735,z:0},{x:118.44461292206482,y:38.9827125183,z:0},{x:118.44491533147163,y:38.982715857606784,z:0},{x:118.44491357455013,y:38.98281442511334,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44570732137456,y:38.982647559750326,z:0},{x:118.44594552723962,y:38.98264760434483,z:0},{x:118.44594381009605,y:38.98280508793967,z:0},{x:118.4457051688986,y:38.982805083222225,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44602211629788,y:38.98263656754648,z:0},{x:118.44640165036542,y:38.98262850511268,z:0},{x:118.4464031626804,y:38.982794200606385,z:0},{x:118.4460153831427,y:38.98279739358728,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44543748463214,y:38.98279290998409,z:0},{x:118.44555642593535,y:38.98279355991286,z:0},{x:118.44555423956365,y:38.98286325168242,z:0},{x:118.44543787290792,y:38.98286482033883,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44542858210723,y:38.98247597282814,z:0},{x:118.44542312177357,y:38.982008842185664,z:0},{x:118.4464046351389,y:38.982007453934294,z:0},{x:118.44640058908035,y:38.98248208894464,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=11,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44553005453038,y:38.98176851916028,z:0},{x:118.44542483263785,y:38.98176872945198,z:0},{x:118.44542523734445,y:38.98147317695785,z:0},{x:118.4455287940247,y:38.98147171553534,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=11,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.43725690564722,y:38.97571338854602,z:0},{x:118.43693292319736,y:38.97571396244159,z:0},{x:118.43693361006838,y:38.97547256134827,z:0},{x:118.43727224633301,y:38.97547187464955,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=2,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44597071387395,y:38.98147127822063,z:0},{x:118.44622899896109,y:38.981472861489635,z:0},{x:118.44622645235512,y:38.98176486113189,z:0},{x:118.44597524187401,y:38.98176558307976,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=12,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44622457469589,y:38.98147198941105,z:0},{x:118.4464105399007,y:38.98147200113728,z:0},{x:118.44641107595449,y:38.98176241021534,z:0},{x:118.44622357048593,y:38.98176357238804,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=12,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.43589886305283,y:38.975887154518276,z:0},{x:118.43577956615786,y:38.975887347165525,z:0},{x:118.43578792470264,y:38.975587956417094,z:0},{x:118.43590483933734,y:38.97559010194757,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.43661399260628,y:38.97571031861816,z:0},{x:118.43661608109367,y:38.97557583898876,z:0},{x:118.436931848216,y:38.97557846461047,z:0},{x:118.43693109323912,y:38.97571136787044,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=5,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.436207255231,y:38.974575137267266,z:0},{x:118.43627867846855,y:38.97457545404922,z:0},{x:118.43627679376182,y:38.97478397140889,z:0},{x:118.43620726207328,y:38.974783192842345,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=12,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.4364797634236,y:38.974785518768066,z:0},{x:118.43640816257248,y:38.97478569041389,z:0},{x:118.43640531813558,y:38.97457489775413,z:0},{x:118.43648428635531,y:38.97457485579656,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=12,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.43666655762107,y:38.974788085512365,z:0},{x:118.43659628039673,y:38.9747879015865,z:0},{x:118.43659420996336,y:38.97457616410538,z:0},{x:118.43666721131603,y:38.974575998794165,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=12,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.43573570235789,y:38.97304610334609,z:0},{x:118.43574097765824,y:38.972628581691296,z:0},{x:118.43604300394288,y:38.972625308654266,z:0},{x:118.43604722478794,y:38.973062399654125,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.43594728842464,y:38.97252254614179,z:0},{x:118.43582639843831,y:38.97252714645671,z:0},{x:118.43583160408157,y:38.97221738876652,z:0},{x:118.4359503183164,y:38.97221816868133,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.43615077285205,y:38.97158213984466,z:0},{x:118.43614735551863,y:38.97107583789083,z:0},{x:118.43609243843196,y:38.97107835386367,z:0},{x:118.43609359727633,y:38.97101750045944,z:0},{x:118.43628627410426,y:38.971016733179916,z:0},{x:118.43628856257945,y:38.97089331747796,z:0},{x:118.43652746257315,y:38.97089291539211,z:0},{x:118.43652730714993,y:38.97083108723389,z:0},{x:118.43672847155278,y:38.97083077947769,z:0},{x:118.43672067763958,y:38.971240418580685,z:0},{x:118.43663884936606,y:38.971244176953675,z:0},{x:118.43663051048469,y:38.971469295792474,z:0},{x:118.43635447975751,y:38.97147653105624,z:0},{x:118.43635375972812,y:38.97158304709108,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=30,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.43663361727585,y:38.970768111099275,z:0},{x:118.43662578902027,y:38.970581239358886,z:0},{x:118.43687074121608,y:38.970464399704596,z:0},{x:118.43701301454189,y:38.97073867455528,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=3,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.43621868753681,y:38.97241385238212,z:0},{x:118.43626774674954,y:38.97241202882116,z:0},{x:118.43627016378403,y:38.97158127880355,z:0},{x:118.43622096190337,y:38.971580259887745,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.43642183221598,y:38.97241442974346,z:0},{x:118.43647077209735,y:38.97241263464797,z:0},{x:118.43646371241213,y:38.9714720292113,z:0},{x:118.4364208642533,y:38.9714718250374,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.43648627325226,y:38.97241446516718,z:0},{x:118.43653537871452,y:38.97241265171473,z:0},{x:118.43653494287754,y:38.97147185319605,z:0},{x:118.43648155841218,y:38.97147182617507,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.43941970841215,y:38.96953144726191,z:0},{x:118.4396130412136,y:38.969445150141375,z:0},{x:118.43977277502115,y:38.96964049510435,z:0},{x:118.43956859026538,y:38.96973724589601,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.43669897243508,y:38.97084797734767,z:0},{x:118.43672127872549,y:38.97087326124729,z:0},{x:118.43946175544967,y:38.96958713518793,z:0},{x:118.43943399775637,y:38.96955111545324,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.4367134203435,y:38.97089529073047,z:0},{x:118.43673489314527,y:38.97092489513455,z:0},{x:118.43948422832193,y:38.969620274280864,z:0},{x:118.4394658543905,y:38.96959510043603,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.4367204283016,y:38.970938609282484,z:0},{x:118.43673229209608,y:38.970973249613785,z:0},{x:118.43951126677209,y:38.96965772629055,z:0},{x:118.43949146647734,y:38.969630742899554,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44705712472711,y:38.97761228389707,z:0},{x:118.45413365879368,y:38.97761316915661,z:0},{x:118.45414235465658,y:38.96633330452699,z:0},{x:118.44706301363834,y:38.96634939068105,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=18,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45405006693586,y:38.97761313932549,z:0},{x:118.45409203768205,y:38.97761313806462,z:0},{x:118.4540853070961,y:38.97804827240476,z:0},{x:118.45404548855065,y:38.97804895443955,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45345323194279,y:38.96628004192987,z:0},{x:118.45311158580982,y:38.96627678279534,z:0},{x:118.4531093233491,y:38.96608970343862,z:0},{x:118.45345033520366,y:38.96608683047884,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=36,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44866142267031,y:38.97807291066897,z:0},{x:118.44866222306987,y:38.97815768492403,z:0},{x:118.44811067895728,y:38.978156567998994,z:0},{x:118.44810870196935,y:38.97807716187736,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=12,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45401166002068,y:38.96619901801844,z:0},{x:118.45413848289246,y:38.966199150508096,z:0},{x:118.45413933889361,y:38.96593177793553,z:0},{x:118.4540145436718,y:38.96592916695885,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45401965571455,y:38.966053042241604,z:0},{x:118.45402032237558,y:38.96602783718346,z:0},{x:118.45255429154334,y:38.96601966316516,z:0},{x:118.45255308571595,y:38.96605184360487,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.4540135617269,y:38.96601740749464,z:0},{x:118.45401387540862,y:38.965986479752054,z:0},{x:118.45255369780556,y:38.965984668237965,z:0},{x:118.45255466661101,y:38.966017915316826,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44700602271118,y:38.9658964198577,z:0},{x:118.44738596901692,y:38.96589457740237,z:0},{x:118.44738135404893,y:38.966138714841804,z:0},{x:118.44699572734432,y:38.96613444813284,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44776962256195,y:38.965889370453574,z:0},{x:118.44809326264372,y:38.965889616570855,z:0},{x:118.44808780176668,y:38.96607316455951,z:0},{x:118.44794655215271,y:38.96607455491782,z:0},{x:118.44794146635401,y:38.96619641771001,z:0},{x:118.44776079113596,y:38.966194333858375,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44876146302641,y:38.965889546444586,z:0},{x:118.44909416244944,y:38.96588648743246,z:0},{x:118.44908860169758,y:38.96607601169582,z:0},{x:118.4489379722628,y:38.96607831631868,z:0},{x:118.44894116226713,y:38.966190866705055,z:0},{x:118.44875876429231,y:38.96619357731034,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45048975512684,y:38.96620089867923,z:0},{x:118.45048875084328,y:38.965847355249124,z:0},{x:118.45082290965152,y:38.96584963681194,z:0},{x:118.45083010261206,y:38.96607997936651,z:0},{x:118.45066855232696,y:38.966077577650495,z:0},{x:118.4506664625876,y:38.96619599566666,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45220758815368,y:38.96620105730172,z:0},{x:118.45221659340145,y:38.965870900750225,z:0},{x:118.45256352811573,y:38.96587061377404,z:0},{x:118.45256382683272,y:38.966082113167516,z:0},{x:118.45240729151034,y:38.96609180490225,z:0},{x:118.45241317153624,y:38.96620018575734,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44806863789408,y:38.97864988082857,z:0},{x:118.44783846500337,y:38.97864623525783,z:0},{x:118.44784044614049,y:38.97815433927587,z:0},{x:118.44797821472679,y:38.978156760016965,z:0},{x:118.44798183842993,y:38.97837572111025,z:0},{x:118.44807544334861,y:38.97837591529884,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44991614971256,y:38.97864352371008,z:0},{x:118.44964677600133,y:38.97863823373865,z:0},{x:118.44964596437266,y:38.97816183098262,z:0},{x:118.44984664127546,y:38.978161851110755,z:0},{x:118.4498482596399,y:38.97828599108857,z:0},{x:118.44992135976518,y:38.978298298430666,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45165402387089,y:38.97864303903659,z:0},{x:118.4513667415022,y:38.97864258243187,z:0},{x:118.45137346203241,y:38.978157614895615,z:0},{x:118.45157722926727,y:38.978163134366596,z:0},{x:118.45157923227242,y:38.97829241935612,z:0},{x:118.45164825451741,y:38.978304443731474,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45338192039759,y:38.978640066624834,z:0},{x:118.45310886225376,y:38.978642697900334,z:0},{x:118.45311183520704,y:38.978152489577056,z:0},{x:118.45329918075275,y:38.97815603366372,z:0},{x:118.45330041414067,y:38.97828838467808,z:0},{x:118.45338054329211,y:38.978296668305774,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44701208320626,y:38.96610474692541,z:0},{x:118.44699835547762,y:38.966073132991106,z:0},{x:118.43968975749961,y:38.9695368020723,z:0},{x:118.4397049633356,y:38.969562262612705,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44702177538612,y:38.966050830673886,z:0},{x:118.44700096273681,y:38.96602504287901,z:0},{x:118.43966154402057,y:38.969504417377564,z:0},{x:118.43968499186334,y:38.96953310003377,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44701596710544,y:38.96601499737981,z:0},{x:118.446998509874,y:38.96598779888063,z:0},{x:118.43963705969952,y:38.96947477495856,z:0},{x:118.43966039497597,y:38.96950311601454,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44776383455572,y:38.96604953087853,z:0},{x:118.44776575028665,y:38.966020405484656,z:0},{x:118.44738002896634,y:38.96602047040314,z:0},{x:118.44737911539887,y:38.96604975373439,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44776726642978,y:38.96601153133374,z:0},{x:118.44776686748042,y:38.965982864593975,z:0},{x:118.44737093558155,y:38.9659806906131,z:0},{x:118.44736900037059,y:38.966012502277025,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44776795176807,y:38.965977574855536,z:0},{x:118.44776869354826,y:38.965946011701824,z:0},{x:118.4473757742699,y:38.96594661887615,z:0},{x:118.44737633225658,y:38.96598060055609,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44876157623791,y:38.966051584504754,z:0},{x:118.44876024749608,y:38.966025065104134,z:0},{x:118.4480888835252,y:38.966016307450346,z:0},{x:118.4480884421606,y:38.966049451652864,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44876597374879,y:38.96601638753426,z:0},{x:118.44876813688957,y:38.9659842926509,z:0},{x:118.4480838618814,y:38.96598328834097,z:0},{x:118.44808375191263,y:38.966016243345535,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44876192534866,y:38.965973003223056,z:0},{x:118.44876353520759,y:38.96595194500588,z:0},{x:118.44807081708512,y:38.965954172036426,z:0},{x:118.44807462577427,y:38.965973703959584,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.4504893682069,y:38.96605191646457,z:0},{x:118.45048920073471,y:38.96602070375045,z:0},{x:118.44909020127669,y:38.966020218614325,z:0},{x:118.44908948031846,y:38.96605047183339,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45048918578809,y:38.96601208729804,z:0},{x:118.45048911023251,y:38.9659866773233,z:0},{x:118.44908992611772,y:38.96598432341923,z:0},{x:118.44908957704946,y:38.96601423752728,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44909151857476,y:38.965976617768405,z:0},{x:118.4490922995692,y:38.96594826611271,z:0},{x:118.45048930835804,y:38.96594785599655,z:0},{x:118.45048919722822,y:38.965980144049134,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.452211662001,y:38.96605114438069,z:0},{x:118.45221656109541,y:38.96602102554313,z:0},{x:118.45082276785232,y:38.966020944838434,z:0},{x:118.45082454546983,y:38.96605194627813,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45082706743769,y:38.96601719377588,z:0},{x:118.45082704020865,y:38.96598320087714,z:0},{x:118.45221341231034,y:38.965985919481724,z:0},{x:118.45221472284447,y:38.96601655546338,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45221370603228,y:38.96597675277101,z:0},{x:118.45221439797743,y:38.96595123225914,z:0},{x:118.45082312967799,y:38.965948018746076,z:0},{x:118.45082558552178,y:38.96597997542543,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44964664324172,y:38.978551077390655,z:0},{x:118.44964651584748,y:38.9785215787105,z:0},{x:118.44806120577788,y:38.97852110703929,z:0},{x:118.44806642499344,y:38.978551899642945,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.4480718906012,y:38.97851554294562,z:0},{x:118.44807278405438,y:38.97848008423598,z:0},{x:118.44964642753223,y:38.97848396773047,z:0},{x:118.44964646937261,y:38.97851892698115,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44964643903913,y:38.97848188548225,z:0},{x:118.44964639790682,y:38.978448507628094,z:0},{x:118.44807282610674,y:38.97844586196081,z:0},{x:118.4480726905507,y:38.978479913452894,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44807361709839,y:38.97844373528499,z:0},{x:118.4480741195,y:38.978412078777396,z:0},{x:118.44964634892007,y:38.97841359870016,z:0},{x:118.44964639576358,y:38.978445947327415,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45136853739767,y:38.97855180794119,z:0},{x:118.45136835068661,y:38.97852486019318,z:0},{x:118.44991707998608,y:38.97852146569496,z:0},{x:118.44991647502427,y:38.978553194266176,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44991722000987,y:38.978517358129125,z:0},{x:118.44991852162872,y:38.97847969197024,z:0},{x:118.45136887200074,y:38.97848603241828,z:0},{x:118.45136840092681,y:38.97852103162728,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.4513689443606,y:38.97848079841223,z:0},{x:118.45136936976213,y:38.978449499432465,z:0},{x:118.44991868950578,y:38.97844952294711,z:0},{x:118.44991855998951,y:38.97847951847576,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44991912788241,y:38.97844322139978,z:0},{x:118.44991955519663,y:38.97841315601602,z:0},{x:118.45136985064698,y:38.978414271771854,z:0},{x:118.45136940373483,y:38.97844788674043,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45311020209493,y:38.97855308045481,z:0},{x:118.45310951656143,y:38.97852317271364,z:0},{x:118.45164902146038,y:38.978522937897594,z:0},{x:118.45164932015386,y:38.978554561264,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45165144448588,y:38.97851781124157,z:0},{x:118.45164997116002,y:38.97848344008562,z:0},{x:118.45310994306267,y:38.97848702898752,z:0},{x:118.45310963773522,y:38.97851630241646,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45311018942492,y:38.978485069011064,z:0},{x:118.45311006587356,y:38.97844897976183,z:0},{x:118.4516504926968,y:38.97845219090819,z:0},{x:118.45165059000787,y:38.978480355148626,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45165040758363,y:38.97844472253516,z:0},{x:118.45164970958429,y:38.97841112166006,z:0},{x:118.45311041163265,y:38.97841482649097,z:0},{x:118.45311002997599,y:38.97844937500469,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45324601340354,y:38.977615878028715,z:0},{x:118.45320406739434,y:38.977616094841416,z:0},{x:118.45320369149404,y:38.97815488601482,z:0},{x:118.45324296133914,y:38.978155118631335,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45319993237835,y:38.97815455048977,z:0},{x:118.45315702465696,y:38.978153674531875,z:0},{x:118.45315827386564,y:38.97761567935095,z:0},{x:118.45320200955113,y:38.97761521126994,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45235432652262,y:38.97804641494594,z:0},{x:118.45231473966498,y:38.97804714070174,z:0},{x:118.45232211677381,y:38.97761555605033,z:0},{x:118.45236479829853,y:38.97761555075982,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45151156940642,y:38.977615128930914,z:0},{x:118.45147716366819,y:38.97761512882793,z:0},{x:118.45148095521435,y:38.978160569332466,z:0},{x:118.45151851387625,y:38.978161610922754,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45146506829845,y:38.97761512873593,z:0},{x:118.45142749417228,y:38.9776152020285,z:0},{x:118.4514270070005,y:38.97816164719619,z:0},{x:118.4514702467271,y:38.978161269651494,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.4506375054877,y:38.97761028138528,z:0},{x:118.45058217577198,y:38.977610672368925,z:0},{x:118.45058565025582,y:38.97804526617509,z:0},{x:118.45062499915328,y:38.97804502178297,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44978611809402,y:38.97816189633577,z:0},{x:118.4497427132221,y:38.97816188913714,z:0},{x:118.44974248123884,y:38.97761421223596,z:0},{x:118.44978700009024,y:38.977614633491186,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44973594697677,y:38.97761458663673,z:0},{x:118.44969908776174,y:38.977614592520865,z:0},{x:118.44969660563713,y:38.97816205796606,z:0},{x:118.44973853179937,y:38.97816188528078,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44889729316841,y:38.97761418046365,z:0},{x:118.44886538143011,y:38.97761425828673,z:0},{x:118.44885567255632,y:38.97804497899378,z:0},{x:118.4488924279876,y:38.978043934302924,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44792303448537,y:38.97761287565204,z:0},{x:118.44788224541423,y:38.97761392206918,z:0},{x:118.44788369758601,y:38.97816011973279,z:0},{x:118.44792625565421,y:38.978159392145955,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44788153237583,y:38.9776132135235,z:0},{x:118.44783228427329,y:38.97761385341534,z:0},{x:118.44783510598519,y:38.97804837165928,z:0},{x:118.44787932204663,y:38.97804765835996,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44718539416431,y:38.97787109723385,z:0},{x:118.44772118407043,y:38.97787685823234,z:0},{x:118.447726168146,y:38.97831864166656,z:0},{x:118.44717936435796,y:38.9783107109159,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.44901417497135,y:38.97788056190253,z:0},{x:118.44955086028163,y:38.977880940308424,z:0},{x:118.44955607941819,y:38.97831736975902,z:0},{x:118.44899730127072,y:38.978318297067126,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45159430546872,y:38.97770411789006,z:0},{x:118.45207671872681,y:38.977705882668374,z:0},{x:118.45207567638042,y:38.97822498352003,z:0},{x:118.45159249676811,y:38.978223435519695,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45454494878516,y:38.978666073431974,z:0},{x:118.45454877334411,y:38.97827340973365,z:0},{x:118.45489257612584,y:38.97827901148382,z:0},{x:118.45489319459523,y:38.978663813698375,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45285029681932,y:38.97807034908604,z:0},{x:118.45268955193532,y:38.978071568533736,z:0},{x:118.45269180054687,y:38.9782739801774,z:0},{x:118.45249654166457,y:38.97827499657158,z:0},{x:118.45249795536014,y:38.977940416956194,z:0},{x:118.45284869443816,y:38.977945790088086,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45456194916457,y:38.97852486231768,z:0},{x:118.45456139301362,y:38.97855461125936,z:0},{x:118.45338123981628,y:38.97855303018287,z:0},{x:118.45337856948838,y:38.978525195459554,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.4545643074465,y:38.97851906021003,z:0},{x:118.45456541296737,y:38.97848787474575,z:0},{x:118.45337936898707,y:38.97848802566523,z:0},{x:118.4533801196405,y:38.9785179938507,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45456182174084,y:38.97848411323434,z:0},{x:118.45456162870875,y:38.97844881731705,z:0},{x:118.45337813999991,y:38.97845262501637,z:0},{x:118.45337993125752,y:38.97848343235468,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45454491088014,y:38.97867240857839,z:0},{x:118.45454877334411,y:38.97827340973365,z:0},{x:118.45489257612584,y:38.97827901148382,z:0},{x:118.45489319459523,y:38.978663813698375,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45455801781031,y:38.978449817523725,z:0},{x:118.45455852230542,y:38.97841464262465,z:0},{x:118.45337817618062,y:38.97841160787686,z:0},{x:118.45337660197517,y:38.978446837055394,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45459022154395,y:38.978273967169365,z:0},{x:118.45463485686226,y:38.978274722081906,z:0},{x:118.45465326928796,y:38.96574152169437,z:0},{x:118.45460806071517,y:38.96574070697139,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45464418430508,y:38.97827490267765,z:0},{x:118.45469102218843,y:38.97827565384618,z:0},{x:118.45469906847784,y:38.965740024597935,z:0},{x:118.45465582441282,y:38.96574167253614,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45469202079246,y:38.97827564329269,z:0},{x:118.45473570769691,y:38.97827635067656,z:0},{x:118.45474505144328,y:38.966146625822624,z:0},{x:118.45470301868865,y:38.96614697235462,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.45473983501886,y:38.97827644802289,z:0},{x:118.45477972162033,y:38.97826988854391,z:0},{x:118.45478746433517,y:38.96841487318176,z:0},{x:118.45474718382881,y:38.968411932662455,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.4547885602939,y:38.978277239538684,z:0},{x:118.45482486545669,y:38.97827782849935,z:0},{x:118.45483419124878,y:38.9709392568471,z:0},{x:118.45479172438303,y:38.9709388473851,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=22,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),i),wallList:(c=[],(l={}).position=[{x:118.44671375018376,y:38.97889478328093,z:0},{x:118.44671172328863,y:38.983021563460596,z:0},{x:118.44119168247931,y:38.98301785705107,z:0},{x:118.44118969124764,y:38.9812163374787,z:0},{x:118.44649853732912,y:38.98121953889335,z:0},{x:118.44650134365597,y:38.97875915992818,z:0},{x:118.4470637531886,y:38.97876017923315,z:0},{x:118.44706619500896,y:38.97868164469462,z:0},{x:118.44712789674165,y:38.97868185340563,z:0},{x:118.4471304201038,y:38.97871405171788,z:0},{x:118.4473051085244,y:38.97871207912992,z:0},{x:118.4473289786751,y:38.97841816252476,z:0},{x:118.44729548667289,y:38.97839018034534,z:0},{x:118.44707859188276,y:38.9783857145849,z:0},{x:118.4470629476726,y:38.96624162768212,z:0},{x:118.44698598652433,y:38.96614241527621,z:0},{x:118.43699256706036,y:38.97094584444521,z:0},{x:118.43698677434784,y:38.97113279616971,z:0},{x:118.4369247805723,y:38.9711762550468,z:0},{x:118.43686851087077,y:38.97122585515541,z:0},{x:118.4368228419735,y:38.971275979690986,z:0},{x:118.43678499681918,y:38.9713393298053,z:0},{x:118.43676875230953,y:38.97140289404229,z:0},{x:118.43676539323138,y:38.97146935570204,z:0},{x:118.43676685575419,y:38.97299994268132,z:0},{x:118.4369398307648,y:38.97300665619034,z:0},{x:118.43693443761649,y:38.97547585242228,z:0},{x:118.43726600378035,y:38.97547661818355,z:0},{x:118.4372542080076,y:38.97571064236701,z:0},{x:118.4360277513718,y:38.975712415404935,z:0},{x:118.43602632643315,y:38.97609960357418,z:0},{x:118.43570065408068,y:38.97609961401182,z:0},{x:118.43570597488815,y:38.973295238639196,z:0},{x:118.43567483777353,y:38.973257537936654,z:0},{x:118.43567525053884,y:38.972828759171634,z:0},{x:118.43591508391262,y:38.9709183309903,z:0},{x:118.43663163343234,y:38.97058321928959,z:0},{x:118.4366832177329,y:38.970559634008026,z:0},{x:118.43668250336033,y:38.970555908596815,z:0},{x:118.43674268877848,y:38.97052644073819,z:0},{x:118.43680726963413,y:38.97049554314058,z:0},{x:118.43686753266644,y:38.97046834579005,z:0},{x:118.43691280994368,y:38.97053942781709,z:0},{x:118.4369406186428,y:38.97059540177479,z:0},{x:118.43698887173906,y:38.97070425315103,z:0},{x:118.43942895777559,y:38.96955035038816,z:0},{x:118.4394133363548,y:38.969530441712756,z:0},{x:118.43961153675725,y:38.969440060775426,z:0},{x:118.43963900609026,y:38.96947015709539,z:0},{x:118.44698697478312,y:38.96597559242543,z:0},{x:118.44698765347296,y:38.965890691222306,z:0},{x:118.44717169053938,y:38.965889876119526,z:0},{x:118.44717602969939,y:38.96563545967475,z:0},{x:118.45493631240893,y:38.965629070942995,z:0},{x:118.45493844375062,y:38.97874527269041,z:0},{x:118.45459786193378,y:38.97874735893536,z:0},{x:118.454597516194,y:38.978896745489095,z:0},{x:118.4467133204471,y:38.978894843186644,z:0}],l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",c.push(l),c)}}r.r(t),r.d(t,{default:()=>o})},67798(e,t,r){"use strict";function o(){var e,t,r,o,a,n,i,s,c,l;return{redList:(e=[],(t={}).position=[{x:118.50812468019716,y:38.921836442714266,z:0},{x:118.50822446810173,y:38.92175036481791,z:0},{x:118.50925553609358,y:38.922471873772515,z:0},{x:118.50914986775177,y:38.92256558014943,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.51298887521948,y:38.92596434678928,z:0},{x:118.5128909690004,y:38.926047154875846,z:0},{x:118.51402211875599,y:38.92687149050435,z:0},{x:118.51412866044095,y:38.92675459934234,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.5134817400736,y:38.927169602967794,z:0},{x:118.5133843073645,y:38.92726178471818,z:0},{x:118.51230884724127,y:38.9265167389019,z:0},{x:118.51242195866904,y:38.926432170923384,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.51408718620256,y:38.92864719513384,z:0},{x:118.51421017672583,y:38.92852851824609,z:0},{x:118.51530114723212,y:38.929322993410075,z:0},{x:118.51519569848142,y:38.92941696257689,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.50831244710825,y:38.92525060659203,z:0},{x:118.50819521810149,y:38.925336510367416,z:0},{x:118.5092907969465,y:38.92611196482897,z:0},{x:118.50939308295095,y:38.926021205648475,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.50880232140386,y:38.92766440560871,z:0},{x:118.50869858347967,y:38.927746365097335,z:0},{x:118.50970469385435,y:38.92846713474799,z:0},{x:118.5097622195727,y:38.928396863874504,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.50783183768887,y:38.92850473968222,z:0},{x:118.50883089210326,y:38.92919701636845,z:0},{x:118.50874634476214,y:38.92927883386436,z:0},{x:118.50773869058818,y:38.92858862889436,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.50807061409115,y:38.9302695626449,z:0},{x:118.50797343016514,y:38.930346933912475,z:0},{x:118.50888447628803,y:38.930977590530794,z:0},{x:118.50899274508632,y:38.93092062494128,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.50332446908146,y:38.92860761671045,z:0},{x:118.50323418888695,y:38.928687683759556,z:0},{x:118.50426221179951,y:38.92941157815493,z:0},{x:118.50434668621917,y:38.92933362391171,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.51056705297202,y:38.932016765935415,z:0},{x:118.51150272783441,y:38.932667170412635,z:0},{x:118.51138030899106,y:38.93272872732409,z:0},{x:118.51048554641041,y:38.932095099755,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.51523554639576,y:38.93370919999959,z:0},{x:118.51514173715782,y:38.9337855495948,z:0},{x:118.51601976837058,y:38.93436279610307,z:0},{x:118.51609280088158,y:38.934306017685884,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.5040339997267,y:38.914733588294666,z:0},{x:118.50405528210806,y:38.91437909012944,z:0},{x:118.5041380030895,y:38.91443361938068,z:0},{x:118.50413155453687,y:38.913838153403034,z:0},{x:118.50426567870923,y:38.91384770127065,z:0},{x:118.50426678197594,y:38.91437973310992,z:0},{x:118.50433263997502,y:38.91437524589683,z:0},{x:118.5043449333336,y:38.91473358284472,z:0},{x:118.50425348036951,y:38.91473358114043,z:0},{x:118.5042534797874,y:38.91485266038231,z:0},{x:118.5041376361775,y:38.914852658006005,z:0},{x:118.50413763876429,y:38.914738342538946,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.50348105180356,y:38.91483455519504,z:0},{x:118.50336588566016,y:38.91482622052938,z:0},{x:118.5033913740709,y:38.914410876479195,z:0},{x:118.50347941567112,y:38.9144190531576,z:0},{x:118.50348318602806,y:38.913794855041594,z:0},{x:118.50360901169533,y:38.913794863141355,z:0},{x:118.50360393176008,y:38.91437500202236,z:0},{x:118.50363033051822,y:38.91437136018685,z:0},{x:118.5036209009876,y:38.91441087669985,z:0},{x:118.50369287110706,y:38.91441239631653,z:0},{x:118.50369051843616,y:38.91461949706476,z:0},{x:118.50372139452246,y:38.91461948282864,z:0},{x:118.50373271199211,y:38.91482621960257,z:0},{x:118.5036026169384,y:38.91483288538225,z:0},{x:118.50360048436514,y:38.91496118234477,z:0},{x:118.50347252085322,y:38.91496618491803,z:0},{x:118.50347038905592,y:38.91483121647732,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.5021484366694,y:38.91480406746632,z:0},{x:118.50217622102683,y:38.914398848383925,z:0},{x:118.50224306617751,y:38.914400533035725,z:0},{x:118.502260941709,y:38.91379143368551,z:0},{x:118.50238282106842,y:38.91379143743875,z:0},{x:118.50238324668702,y:38.91437031036707,z:0},{x:118.50240979873381,y:38.91437051417944,z:0},{x:118.50239831930206,y:38.91440390231257,z:0},{x:118.50246516428797,y:38.9144022176333,z:0},{x:118.50239705414158,y:38.91480589203874,z:0},{x:118.50228924264042,y:38.914820537867314,z:0},{x:118.50229156943047,y:38.91493957645977,z:0},{x:118.50216265598641,y:38.91493957574471,z:0},{x:118.50216500750045,y:38.91481322130154,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.49995367269835,y:38.91482235088178,z:0},{x:118.49995708125118,y:38.9146168605333,z:0},{x:118.50007242197299,y:38.91460880503705,z:0},{x:118.50005716282145,y:38.91439805955637,z:0},{x:118.50010384573594,y:38.91439805956952,z:0},{x:118.50010297008312,y:38.913770939716485,z:0},{x:118.500311980122,y:38.913770942007545,z:0},{x:118.50030984568433,y:38.914355798721594,z:0},{x:118.50033330811807,y:38.91436079580679,z:0},{x:118.50030808380556,y:38.91441173607262,z:0},{x:118.5003761631514,y:38.91440717699791,z:0},{x:118.50038339535686,y:38.914610416712385,z:0},{x:118.50041016318403,y:38.91461041498919,z:0},{x:118.50041648552404,y:38.91482067581339,z:0},{x:118.50029705284724,y:38.9148240115348,z:0},{x:118.5002949208567,y:38.91496231092525,z:0},{x:118.50015628984093,y:38.914962313011536,z:0},{x:118.50015628989755,y:38.91482234858452,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.49931168844776,y:38.91477804804365,z:0},{x:118.49932773271081,y:38.91459890704066,z:0},{x:118.49941303615222,y:38.91459904308864,z:0},{x:118.49938838270312,y:38.914382651858624,z:0},{x:118.49944308487875,y:38.91437211423087,z:0},{x:118.49944606984786,y:38.913809844658736,z:0},{x:118.49958940688835,y:38.91380518378024,z:0},{x:118.4996023731344,y:38.91438015725554,z:0},{x:118.49966402319403,y:38.914374113608446,z:0},{x:118.4996635615324,y:38.91458578844413,z:0},{x:118.49969154729668,y:38.914585788397176,z:0},{x:118.49969392637074,y:38.9147710481542,z:0},{x:118.4995685038886,y:38.91478271179469,z:0},{x:118.4995595469712,y:38.914904031732284,z:0},{x:118.49942217917965,y:38.91490869817889,z:0},{x:118.49942217941296,y:38.91478271433077,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.49752169224445,y:38.91480497811467,z:0},{x:118.4975466703001,y:38.914607005475276,z:0},{x:118.49758545587858,y:38.914607005651035,z:0},{x:118.49758317559633,y:38.91441271838857,z:0},{x:118.49766384619232,y:38.914421666992034,z:0},{x:118.49758095250418,y:38.913803756670966,z:0},{x:118.49781306137726,y:38.91380182324718,z:0},{x:118.49781588916905,y:38.91440202392809,z:0},{x:118.49787748991477,y:38.91440380628303,z:0},{x:118.4978797711868,y:38.914599876698425,z:0},{x:118.49792540161778,y:38.91460165925966,z:0},{x:118.49790689453765,y:38.914808836352634,z:0},{x:118.49776367500264,y:38.91481269967852,z:0},{x:118.49776120574086,y:38.914941951287574,z:0},{x:118.49764267708193,y:38.91493809671262,z:0},{x:118.4976426898788,y:38.91481269079163,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.49550908279049,y:38.91523264746957,z:0},{x:118.49542598311572,y:38.9150350064084,z:0},{x:118.49546822165678,y:38.915018355741424,z:0},{x:118.49538664798874,y:38.9148539402636,z:0},{x:118.49544339677367,y:38.91481851515571,z:0},{x:118.49519766348409,y:38.91428114320739,z:0},{x:118.49531735355956,y:38.91424573850625,z:0},{x:118.49558560299798,y:38.91477261486151,z:0},{x:118.49564533989607,y:38.91475823462961,z:0},{x:118.49573818631262,y:38.91493721581294,z:0},{x:118.4957947135917,y:38.91492075656491,z:0},{x:118.495897828896,y:38.91511720558755,z:0},{x:118.49575741582974,y:38.915163070340846,z:0},{x:118.49582001576677,y:38.91528764531217,z:0},{x:118.49569616450881,y:38.915324037714015,z:0},{x:118.495624872013,y:38.91519899893434,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=75,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.49470892364931,y:38.91541384897963,z:0},{x:118.4946267053637,y:38.915224021041496,z:0},{x:118.49465827553568,y:38.9152130909232,z:0},{x:118.49458450103636,y:38.91506190023775,z:0},{x:118.49463177485791,y:38.91505450740066,z:0},{x:118.49437296522083,y:38.91448625299649,z:0},{x:118.49454100710862,y:38.91443657697734,z:0},{x:118.49478585374354,y:38.91495453994262,z:0},{x:118.49483900130727,y:38.91493672943801,z:0},{x:118.49493939030192,y:38.9151284028772,z:0},{x:118.49498648903459,y:38.91511630937027,z:0},{x:118.49508166055105,y:38.91529765361478,z:0},{x:118.49496915696932,y:38.91534090738178,z:0},{x:118.49502941030404,y:38.915465919677885,z:0},{x:118.49489433394356,y:38.91550838105891,z:0},{x:118.49482501934081,y:38.91538651234224,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=75,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.49388946823174,y:38.915726157212404,z:0},{x:118.49380015455314,y:38.91552723608868,z:0},{x:118.49384716154925,y:38.91551627599566,z:0},{x:118.4937631746152,y:38.91534022661608,z:0},{x:118.49382254089836,y:38.91530874279041,z:0},{x:118.49357126834701,y:38.91478948011243,z:0},{x:118.49369496473675,y:38.914750416344084,z:0},{x:118.49393358735155,y:38.91524694801542,z:0},{x:118.49403277392439,y:38.91524588190749,z:0},{x:118.49410732890823,y:38.9154300703209,z:0},{x:118.49417139639222,y:38.91541516116178,z:0},{x:118.49426679488828,y:38.91561593967959,z:0},{x:118.4941394565796,y:38.91566772896241,z:0},{x:118.49419829802913,y:38.91578283479926,z:0},{x:118.49407478169445,y:38.91581170793754,z:0},{x:118.49401097101637,y:38.91569404136143,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=75,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.49307730652134,y:38.915914586817415,z:0},{x:118.49299097290596,y:38.915723128139184,z:0},{x:118.49309515593846,y:38.91567647040856,z:0},{x:118.49278035142657,y:38.91498396002063,z:0},{x:118.49291102142698,y:38.914942561047575,z:0},{x:118.49317359974484,y:38.91547353330595,z:0},{x:118.49325762686658,y:38.91546669154992,z:0},{x:118.49333387842815,y:38.91561704549316,z:0},{x:118.49353952523572,y:38.91557248289455,z:0},{x:118.49361613810015,y:38.91575715410865,z:0},{x:118.49343333883087,y:38.915808084908015,z:0},{x:118.49350656412047,y:38.91593906111567,z:0},{x:118.49333502143637,y:38.91599813002278,z:0},{x:118.49326222242624,y:38.91586705893915,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=75,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.49096495322608,y:38.91645091488439,z:0},{x:118.49092002384143,y:38.91631826917605,z:0},{x:118.49057615499962,y:38.916369145655715,z:0},{x:118.49054674704861,y:38.91624285172974,z:0},{x:118.49098384648178,y:38.91622497497259,z:0},{x:118.49095822819325,y:38.91614815872896,z:0},{x:118.49107921194567,y:38.91611518859046,z:0},{x:118.49109464848017,y:38.91619984392378,z:0},{x:118.49189248838405,y:38.916092883498884,z:0},{x:118.49193316440538,y:38.91619260415529,z:0},{x:118.49130501869713,y:38.91626255030699,z:0},{x:118.49135505916814,y:38.91633452463873,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.49007156047247,y:38.91670934455815,z:0},{x:118.48978215472071,y:38.91678910477978,z:0},{x:118.4897231881515,y:38.916721751284435,z:0},{x:118.48932894458474,y:38.91690092599126,z:0},{x:118.48928028226635,y:38.91682438461913,z:0},{x:118.48983341652182,y:38.91657120413338,z:0},{x:118.48983795996733,y:38.91644926121439,z:0},{x:118.49002493333354,y:38.916444793885105,z:0},{x:118.49003536435596,y:38.91647343750757,z:0},{x:118.49041334093535,y:38.91626480133938,z:0},{x:118.49042235756747,y:38.91642273138039,z:0},{x:118.49007878361108,y:38.91657880149244,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.48193372524435,y:38.937258217134556,z:0},{x:118.48214131013141,y:38.93707927063304,z:0},{x:118.48230675780519,y:38.9371897496427,z:0},{x:118.4821255760509,y:38.93739035256713,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.48231079252368,y:38.93752156657799,z:0},{x:118.48252583735679,y:38.9373495438112,z:0},{x:118.48269058817378,y:38.937459296370974,z:0},{x:118.48249577209042,y:38.93765154340464,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.48268766931264,y:38.93778728399594,z:0},{x:118.4829270153029,y:38.93760428223807,z:0},{x:118.48307924181853,y:38.937720454469755,z:0},{x:118.48288066602555,y:38.9379167991836,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.48389278152129,y:38.938633817238255,z:0},{x:118.48404931575092,y:38.93849075219924,z:0},{x:118.48422237531885,y:38.938605757564005,z:0},{x:118.48410678118746,y:38.938704530123054,z:0},{x:118.48412421301134,y:38.93882900363278,z:0},{x:118.48400896944307,y:38.93879464776645,z:0},{x:118.48401349745775,y:38.93873812197299,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.48412784826756,y:38.93878480933805,z:0},{x:118.48426043274571,y:38.938657029424526,z:0},{x:118.48437238907735,y:38.93873879477088,z:0},{x:118.48456005234529,y:38.938705945538665,z:0},{x:118.4845924620983,y:38.93879735119791,z:0},{x:118.48439005812921,y:38.938816353659575,z:0},{x:118.48430840978281,y:38.93891526240178,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.48433331584172,y:38.938947221877854,z:0},{x:118.48447473568478,y:38.938811933888566,z:0},{x:118.48458620279585,y:38.93889120749516,z:0},{x:118.48478582362354,y:38.93886132419235,z:0},{x:118.48479550904092,y:38.93892430926936,z:0},{x:118.48460497760215,y:38.93894985088535,z:0},{x:118.48450363319091,y:38.93905584671314,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.48456010118385,y:38.93909841519671,z:0},{x:118.48467590133917,y:38.93898770048395,z:0},{x:118.48473554193917,y:38.9390322283614,z:0},{x:118.4848016028038,y:38.9389607499451,z:0},{x:118.48488894117718,y:38.93903995319949,z:0},{x:118.48472894258728,y:38.939215836413695,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.48501197805909,y:38.93940867372565,z:0},{x:118.48514008174303,y:38.93929726009299,z:0},{x:118.48503450458301,y:38.93922397390638,z:0},{x:118.48502658677253,y:38.93915698730901,z:0},{x:118.48489708019235,y:38.93898365651637,z:0},{x:118.48483945796953,y:38.93903233517685,z:0},{x:118.48489972130605,y:38.939091617636585,z:0},{x:118.48493049872661,y:38.93912952251832,z:0},{x:118.48495991491389,y:38.93916072392301,z:0},{x:118.48491244533352,y:38.93912658112485,z:0},{x:118.48478305246314,y:38.93923846981712,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.48500997076222,y:38.939389195788976,z:0},{x:118.48517334109894,y:38.939249327442276,z:0},{x:118.48537798573163,y:38.93939175634779,z:0},{x:118.48525744654067,y:38.93947135989438,z:0},{x:118.48525828356516,y:38.93950899624533,z:0},{x:118.48524876371677,y:38.93958486950637,z:0},{x:118.48509803999154,y:38.93947366573772,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.48522932208124,y:38.939568661724564,z:0},{x:118.48534086508538,y:38.939434252060416,z:0},{x:118.48550381633503,y:38.93955144256232,z:0},{x:118.48567023044339,y:38.9395831640304,z:0},{x:118.48567425696612,y:38.93966170156869,z:0},{x:118.4855261368974,y:38.939601897006874,z:0},{x:118.48542938810698,y:38.93970678478599,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:118.51644820259793,y:38.93470475012912,z:0},{x:118.51670507498102,y:38.93487556940233,z:0},{x:118.5167897361492,y:38.934781356433156,z:0},{x:118.5165458659535,y:38.934615964885424,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),e),orangeList:(r=[],(o={}).position=[{x:118.50557409007271,y:38.914418222393735,z:0},{x:118.50557837564853,y:38.914544279199134,z:0},{x:118.50540619922853,y:38.914544167734604,z:0},{x:118.5054032438725,y:38.914417519717176,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.50584021709193,y:38.919130159712026,z:0},{x:118.50582502096607,y:38.91931299650292,z:0},{x:118.50607256658635,y:38.91932331899088,z:0},{x:118.50607506573101,y:38.91912633357519,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.50556828942939,y:38.9193135653109,z:0},{x:118.50541852521498,y:38.91932021548318,z:0},{x:118.50541035213229,y:38.91918737451777,z:0},{x:118.50557462966023,y:38.91919219254414,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.50547413120356,y:38.91960563416568,z:0},{x:118.50540880067723,y:38.919663143305506,z:0},{x:118.50550083772113,y:38.91972573145743,z:0},{x:118.50556400847832,y:38.919669655526036,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.5051719174128,y:38.91948165245923,z:0},{x:118.5051720687328,y:38.919476723897766,z:0},{x:118.50522849851441,y:38.919419770705254,z:0},{x:118.50533299524805,y:38.91949696323031,z:0},{x:118.50527577548816,y:38.91954963216507,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.50497341689642,y:38.91960373554874,z:0},{x:118.50510346874013,y:38.91968702035891,z:0},{x:118.50520349877564,y:38.91960419202655,z:0},{x:118.50507737558132,y:38.91951221689866,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.50459327495837,y:38.92022996741202,z:0},{x:118.50469647711658,y:38.920296613762766,z:0},{x:118.50481501852481,y:38.920192082379934,z:0},{x:118.50470697986766,y:38.920122339979976,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.50387905648478,y:38.92056430095382,z:0},{x:118.50400136543604,y:38.920641120152055,z:0},{x:118.50410167813506,y:38.92057417352654,z:0},{x:118.50397751387284,y:38.92048312734356,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.50405268718319,y:38.92070308552421,z:0},{x:118.50418372329653,y:38.92079960030555,z:0},{x:118.50428886521206,y:38.92070679425669,z:0},{x:118.50416096051786,y:38.92061961300913,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.50350219858005,y:38.921183471944985,z:0},{x:118.50361845058663,y:38.92126258175615,z:0},{x:118.5037321644237,y:38.921166016949094,z:0},{x:118.50360777545805,y:38.921091326828,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.50278663113052,y:38.92150039976792,z:0},{x:118.50291740253193,y:38.92159179974767,z:0},{x:118.50300600434473,y:38.92151326213903,z:0},{x:118.50289248420754,y:38.921429072684454,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.50295395125409,y:38.921669961281296,z:0},{x:118.50307296769215,y:38.92175996967804,z:0},{x:118.50318360252413,y:38.92166234602241,z:0},{x:118.50306392398447,y:38.921575467368605,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.50172967455488,y:38.92240018935363,z:0},{x:118.50186906289844,y:38.92249593700444,z:0},{x:118.50198368082093,y:38.922390921601995,z:0},{x:118.5018554979495,y:38.922299279428955,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.50193850792816,y:38.922538104427886,z:0},{x:118.50206230037,y:38.9226190156672,z:0},{x:118.50224378069666,y:38.922466222249746,z:0},{x:118.50210982184065,y:38.9223756076597,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.5030556454522,y:38.92337034326255,z:0},{x:118.50320721421987,y:38.923485649458264,z:0},{x:118.50336568838735,y:38.92335279939138,z:0},{x:118.50320780377845,y:38.92324214802223,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.50274598400144,y:38.92360507381782,z:0},{x:118.5032493850664,y:38.92393601438901,z:0},{x:118.50342557259714,y:38.9238389914529,z:0},{x:118.50289567077337,y:38.92347826464594,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.5016167614689,y:38.922830583187505,z:0},{x:118.50176479732535,y:38.922931004754666,z:0},{x:118.50191094823782,y:38.92280042982289,z:0},{x:118.50176883167676,y:38.92268938416518,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.49969950766325,y:38.92139335231666,z:0},{x:118.49976629716075,y:38.92151798996609,z:0},{x:118.49994619217512,y:38.92145492734789,z:0},{x:118.49988345814722,y:38.9213419247516,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.49628746425077,y:38.91470366366744,z:0},{x:118.49649055446164,y:38.914653695058526,z:0},{x:118.49640256897867,y:38.91452554193904,z:0},{x:118.49621645371677,y:38.91457669160922,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.50211982408652,y:38.9246406925918,z:0},{x:118.50227408535575,y:38.92474659788069,z:0},{x:118.50238020480691,y:38.92465961148419,z:0},{x:118.50223378944732,y:38.92454383031902,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.50109503685799,y:38.9255051698191,z:0},{x:118.5012634467808,y:38.92561876053347,z:0},{x:118.50136555604055,y:38.9255316042225,z:0},{x:118.50123200636186,y:38.92541418399459,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.50005347860014,y:38.92645750285918,z:0},{x:118.50015073871542,y:38.9265369971495,z:0},{x:118.5002411170185,y:38.926455982556874,z:0},{x:118.5001557996818,y:38.92636943809391,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.51543389678817,y:38.93558475340062,z:0},{x:118.51567896929654,y:38.935757706207355,z:0},{x:118.5157782210571,y:38.93567136619342,z:0},{x:118.5155380444825,y:38.93549555237785,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.51741344553258,y:38.93387622603241,z:0},{x:118.51767504928043,y:38.93406002605966,z:0},{x:118.51777963699377,y:38.933975729454815,z:0},{x:118.51751806649345,y:38.93378468948088,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.5177135429815,y:38.93366638826088,z:0},{x:118.51792627847965,y:38.933816640511665,z:0},{x:118.51811811326654,y:38.933649145490335,z:0},{x:118.51790750234642,y:38.93350027611996,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.51263995014902,y:38.93013395221023,z:0},{x:118.51279486324805,y:38.93024055632879,z:0},{x:118.51298548716889,y:38.93008311776015,z:0},{x:118.51283457691264,y:38.9299767425969,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=50,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.51284835235535,y:38.92992201435664,z:0},{x:118.5130560144426,y:38.93007853663856,z:0},{x:118.51324449117374,y:38.9299138724359,z:0},{x:118.51303963600195,y:38.929766835495336,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=50,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.51253453197472,y:38.929697543463156,z:0},{x:118.51262707982713,y:38.92975585138183,z:0},{x:118.5127924820919,y:38.92962672012479,z:0},{x:118.51270284647313,y:38.92956060309579,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.51445655363474,y:38.93079700378917,z:0},{x:118.51459933888515,y:38.93089738483528,z:0},{x:118.51483865671796,y:38.930663842700234,z:0},{x:118.51473161763442,y:38.93058717154964,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=50,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.51647554886321,y:38.9319877161869,z:0},{x:118.51661007113546,y:38.93186709696273,z:0},{x:118.51689637037147,y:38.93207382286248,z:0},{x:118.51675584403517,y:38.932198121811886,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.51697540015905,y:38.9315011880965,z:0},{x:118.51725278424047,y:38.931686659847465,z:0},{x:118.51732118156283,y:38.93161944705478,z:0},{x:118.51707837934568,y:38.93142776230918,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.51754847292388,y:38.93102500924334,z:0},{x:118.51781257921601,y:38.9312118649883,z:0},{x:118.51788506118223,y:38.93114051750652,z:0},{x:118.5176304341423,y:38.930960469187916,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.51863251725558,y:38.9300670996354,z:0},{x:118.51888991801954,y:38.930251226600134,z:0},{x:118.51896882716213,y:38.930181448390854,z:0},{x:118.5187145897066,y:38.92999956122161,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:118.51918155406617,y:38.92959218891705,z:0},{x:118.5194454825991,y:38.929781476613186,z:0},{x:118.51952179764471,y:38.92971443731386,z:0},{x:118.51927213029683,y:38.92952766136588,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),r),yellowList:(a=[],(n={}).position=[{x:118.50765903512608,y:38.920291564660474,z:0},{x:118.5078384098728,y:38.9204233675546,z:0},{x:118.50820047177068,y:38.920086389875294,z:0},{x:118.50804561282463,y:38.91996745201331,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50740151746544,y:38.92011426393293,z:0},{x:118.50757479921205,y:38.920236308717605,z:0},{x:118.50779787303425,y:38.92002717967674,z:0},{x:118.50763694641552,y:38.919901706474334,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50713932863381,y:38.91994183800641,z:0},{x:118.50731503578216,y:38.920056947984776,z:0},{x:118.50769231871269,y:38.919722289378356,z:0},{x:118.50751068234692,y:38.91959780050478,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50680912390081,y:38.919736327821816,z:0},{x:118.50686757849833,y:38.91967994762502,z:0},{x:118.50691738011191,y:38.91971123805991,z:0},{x:118.50686103266115,y:38.919764374994436,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50629549683667,y:38.919409691662416,z:0},{x:118.5066694774875,y:38.919682197730296,z:0},{x:118.50675022904353,y:38.91961967118592,z:0},{x:118.50636742638036,y:38.91935628431236,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.5058283787321,y:38.919760472984244,z:0},{x:118.50595443351529,y:38.91985290724714,z:0},{x:118.50622693037799,y:38.91961535088206,z:0},{x:118.50610335100191,y:38.91952562921716,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50519034032578,y:38.91888945852992,z:0},{x:118.50522964228809,y:38.918916138061654,z:0},{x:118.5049006077979,y:38.919199388458395,z:0},{x:118.50486776583013,y:38.91916746473165,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50369541984531,y:38.920200393705954,z:0},{x:118.50382970179703,y:38.92029457943847,z:0},{x:118.50429568220058,y:38.91989594503914,z:0},{x:118.50416077218486,y:38.91979683104649,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.5026754991513,y:38.91943398993833,z:0},{x:118.50282499509855,y:38.919540615998976,z:0},{x:118.50288305754654,y:38.91948768665644,z:0},{x:118.5027401745024,y:38.91938210304062,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50165194712613,y:38.919654378156196,z:0},{x:118.5017131119635,y:38.919693913748034,z:0},{x:118.50165242824316,y:38.91974950871025,z:0},{x:118.50159027033894,y:38.919710548387435,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50196615353391,y:38.92031582492908,z:0},{x:118.501995224158,y:38.920293547872184,z:0},{x:118.50215129938339,y:38.92040577560246,z:0},{x:118.50212454908623,y:38.920427578934635,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50289089296479,y:38.92039402032501,z:0},{x:118.50292743935834,y:38.92041826928376,z:0},{x:118.50297451452516,y:38.920375673090895,z:0},{x:118.50294364048924,y:38.920352149571144,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50343471152382,y:38.92042579637588,z:0},{x:118.50347855057001,y:38.92045792164143,z:0},{x:118.5035058479055,y:38.92043910092861,z:0},{x:118.50359469646953,y:38.92050045034377,z:0},{x:118.50315762684446,y:38.92087982109769,z:0},{x:118.50307076391215,y:38.92082300396186,z:0},{x:118.50308061936761,y:38.920805967623956,z:0},{x:118.50305644773007,y:38.92076745369912,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50243670081555,y:38.921288225738536,z:0},{x:118.50259567664104,y:38.921396304028775,z:0},{x:118.50297697221414,y:38.92105649887793,z:0},{x:118.50283349704567,y:38.92095260205655,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50113460833468,y:38.92018323905624,z:0},{x:118.50140055535569,y:38.91994869226643,z:0},{x:118.50220006385928,y:38.92051458221947,z:0},{x:118.50194217999925,y:38.92074432507688,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50314685210923,y:38.92020393843229,z:0},{x:118.5030290649403,y:38.92030803567827,z:0},{x:118.50238357501311,y:38.91985381268268,z:0},{x:118.50250613935775,y:38.91975231159997,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50165419297355,y:38.92004319608589,z:0},{x:118.50180110144822,y:38.92013955721807,z:0},{x:118.50232900358958,y:38.919672727730216,z:0},{x:118.5021783858079,y:38.919576815944566,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.5021388205167,y:38.92084366708693,z:0},{x:118.50238675100186,y:38.92101818176331,z:0},{x:118.50259676586005,y:38.920837460353816,z:0},{x:118.50234869413754,y:38.920660904428225,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50150563094935,y:38.9215338269723,z:0},{x:118.50167459617484,y:38.921657343098076,z:0},{x:118.50195464571489,y:38.92140296256093,z:0},{x:118.5017901666223,y:38.92128076683707,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50107677749922,y:38.920687490815986,z:0},{x:118.50099830121653,y:38.920751528450985,z:0},{x:118.50099830121653,y:38.920751528450985,z:0},{x:118.50095125782148,y:38.92072023955096,z:0},{x:118.50086803438465,y:38.920795676741655,z:0},{x:118.50091705941124,y:38.92082766525352,z:0},{x:118.50083267091927,y:38.92089884809532,z:0},{x:118.50101491129253,y:38.92101846376515,z:0},{x:118.50140013130572,y:38.92066543617791,z:0},{x:118.50123389682082,y:38.92055433693823,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=50,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50180155275036,y:38.92128879780928,z:0},{x:118.50195735279225,y:38.921394679384505,z:0},{x:118.50211233090126,y:38.92125973949589,z:0},{x:118.5019560840091,y:38.92115424540365,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50149624929108,y:38.921056467724334,z:0},{x:118.50159079090518,y:38.920971976410634,z:0},{x:118.50180195217088,y:38.921102063494416,z:0},{x:118.50169195606685,y:38.92118861129735,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50128562174727,y:38.92091347288785,z:0},{x:118.50139653807436,y:38.920985084684226,z:0},{x:118.50167374208685,y:38.92075200060831,z:0},{x:118.50156364905321,y:38.92067410979569,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50108259864254,y:38.92123407311156,z:0},{x:118.50138968187885,y:38.92144685146186,z:0},{x:118.50166876788492,y:38.92120923856892,z:0},{x:118.50135856874107,y:38.92099745020855,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50141816122903,y:38.92217021423825,z:0},{x:118.50150381493003,y:38.92222991304651,z:0},{x:118.50155713306997,y:38.9221853244343,z:0},{x:118.50146827771684,y:38.92212705868883,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.5015186380894,y:38.92284247351612,z:0},{x:118.50178820161221,y:38.923051675261334,z:0},{x:118.50147465050962,y:38.92334738079375,z:0},{x:118.50140438911045,y:38.92329356240139,z:0},{x:118.5013560607164,y:38.923351393216095,z:0},{x:118.50117795914922,y:38.92323050793692,z:0},{x:118.50123098484566,y:38.92317878124363,z:0},{x:118.50117730298733,y:38.92313439063222,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),n.position=[{x:118.501388552056,y:38.92356835193727,z:0},{x:118.5015056312639,y:38.92367598835801,z:0},{x:118.50112074246809,y:38.92402043471607,z:0},{x:118.50098695398273,y:38.923931295648764,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.5009705363435,y:38.923378245614856,z:0},{x:118.50094231247975,y:38.92335966228342,z:0},{x:118.50104058350232,y:38.92328501347429,z:0},{x:118.50128576589698,y:38.92344375071577,z:0},{x:118.50093259418108,y:38.92373182023882,z:0},{x:118.5009469749887,y:38.92374996983764,z:0},{x:118.500844351444,y:38.92382861355449,z:0},{x:118.5006046280679,y:38.9236650182907,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.5022327898488,y:38.92335490875799,z:0},{x:118.50237100309964,y:38.92345273768173,z:0},{x:118.50200162878895,y:38.923782508051794,z:0},{x:118.50185749023314,y:38.923677172700884,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50188101962132,y:38.9230774861664,z:0},{x:118.5021877503888,y:38.92329089624367,z:0},{x:118.5021254153301,y:38.92334414614544,z:0},{x:118.50211607085801,y:38.92334090518261,z:0},{x:118.50204632542638,y:38.92339949370538,z:0},{x:118.50190798839695,y:38.923301898911284,z:0},{x:118.50192814042352,y:38.92328466345107,z:0},{x:118.50175531580456,y:38.923177846067034,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49918391406872,y:38.92342707473667,z:0},{x:118.49965439574905,y:38.92374895252229,z:0},{x:118.49952555605554,y:38.92386620043594,z:0},{x:118.49904700423419,y:38.92353168152577,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49920544608113,y:38.92393961034084,z:0},{x:118.49931500582552,y:38.924015412456804,z:0},{x:118.49942154783373,y:38.92392207690639,z:0},{x:118.49932329796994,y:38.92383972996316,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49903003881725,y:38.9240642553797,z:0},{x:118.4989785235177,y:38.924110347955164,z:0},{x:118.49910716735057,y:38.924209595030405,z:0},{x:118.49925992417317,y:38.924078709840565,z:0},{x:118.49922234414134,y:38.92405331201457,z:0},{x:118.4991774782402,y:38.9240691632907,z:0},{x:118.49916134858256,y:38.924054500938674,z:0},{x:118.49911530228103,y:38.92409669835928,z:0},{x:118.49906971866751,y:38.92405820359559,z:0},{x:118.49905372317555,y:38.92406813217169,z:0},{x:118.4990314278835,y:38.924064806552686,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49857263538328,y:38.923783210359076,z:0},{x:118.49889261705354,y:38.92399755776146,z:0},{x:118.49902212137236,y:38.92388300296695,z:0},{x:118.49873035711164,y:38.92366270347855,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49847196840129,y:38.92289355480117,z:0},{x:118.49890522136877,y:38.923188487537594,z:0},{x:118.49805366663558,y:38.923924098102646,z:0},{x:118.49763481664799,y:38.923620809368074,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.4984354647653,y:38.92385755809699,z:0},{x:118.49862210737848,y:38.923984926197996,z:0},{x:118.49865277502812,y:38.923966099476154,z:0},{x:118.49869688520866,y:38.92399081094199,z:0},{x:118.49857229013581,y:38.92410210320448,z:0},{x:118.49834261913686,y:38.92393272380654,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49870724605765,y:38.92402396877318,z:0},{x:118.49883196772853,y:38.924117774336835,z:0},{x:118.49884060467161,y:38.924114746760836,z:0},{x:118.49890390085785,y:38.92415670929574,z:0},{x:118.49889447452406,y:38.924166123655745,z:0},{x:118.49901458515406,y:38.92425682057913,z:0},{x:118.49892084120538,y:38.9243410868892,z:0},{x:118.49879261609127,y:38.92425852009635,z:0},{x:118.49878074335987,y:38.92426518018733,z:0},{x:118.49862799839993,y:38.92415768635289,z:0},{x:118.49863743592445,y:38.924154377918164,z:0},{x:118.49860544141923,y:38.924121645222606,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49869860911296,y:38.92364876708986,z:0},{x:118.49857818423725,y:38.92375519644786,z:0},{x:118.4985268411544,y:38.92372538064903,z:0},{x:118.49864239052135,y:38.923622621150216,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49848054474698,y:38.92378126098657,z:0},{x:118.49852127593554,y:38.92374675844047,z:0},{x:118.49854385834395,y:38.92376296373515,z:0},{x:118.49850425060883,y:38.92379748120003,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50007785543326,y:38.924086847392964,z:0},{x:118.50024439438558,y:38.92419391153743,z:0},{x:118.50012276176044,y:38.92429577286695,z:0},{x:118.49996423773416,y:38.924184577729264,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49968825666888,y:38.92478272195551,z:0},{x:118.50029203006468,y:38.925195333185584,z:0},{x:118.50009237068598,y:38.925367384317305,z:0},{x:118.49950533028728,y:38.92494208349247,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49932642394198,y:38.92512992619385,z:0},{x:118.49941871740083,y:38.92505458755559,z:0},{x:118.49969797299391,y:38.92524334849209,z:0},{x:118.49960141075809,y:38.92532362397546,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.4990345121629,y:38.925164982138554,z:0},{x:118.49939041803988,y:38.92542036221896,z:0},{x:118.49916891488398,y:38.92562920422672,z:0},{x:118.49878997606967,y:38.92538606183481,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.4986835802199,y:38.92557807915909,z:0},{x:118.49906364777725,y:38.92584523973038,z:0},{x:118.49890027414135,y:38.92598499554287,z:0},{x:118.49852186265517,y:38.925721087610306,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49838223728008,y:38.92586097543653,z:0},{x:118.49873426450885,y:38.92610708889926,z:0},{x:118.49870399146612,y:38.92613275922424,z:0},{x:118.49835414710728,y:38.925886829189224,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49815571510076,y:38.925304636438526,z:0},{x:118.49846634767167,y:38.92552277094023,z:0},{x:118.4983559758058,y:38.9256024132823,z:0},{x:118.49801690233443,y:38.925380141742686,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.497645910147,y:38.92442235910308,z:0},{x:118.49766961524632,y:38.92442757529259,z:0},{x:118.4976955325745,y:38.92441010220605,z:0},{x:118.49779272526568,y:38.92447267240668,z:0},{x:118.49745236691109,y:38.92476279516737,z:0},{x:118.49736647999237,y:38.92470194664462,z:0},{x:118.4973882371296,y:38.92467620470754,z:0},{x:118.49737701985546,y:38.924661354967625,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49710280572987,y:38.92495075336247,z:0},{x:118.49718100827856,y:38.92500241821233,z:0},{x:118.49715395945917,y:38.92502983106874,z:0},{x:118.49707691129191,y:38.9249753258195,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50033340279163,y:38.924125399393795,z:0},{x:118.50055412812448,y:38.92428078588992,z:0},{x:118.5005682910593,y:38.924299772839255,z:0},{x:118.50056704130985,y:38.92430595943248,z:0},{x:118.50056490866274,y:38.92431380492708,z:0},{x:118.50047858897096,y:38.92439388025923,z:0},{x:118.50050579400786,y:38.924414702097586,z:0},{x:118.50058617782928,y:38.92434412668332,z:0},{x:118.50059540050707,y:38.92433852892716,z:0},{x:118.50060166638708,y:38.92433546754798,z:0},{x:118.50060796058563,y:38.92433421337105,z:0},{x:118.50062177904191,y:38.92433395828023,z:0},{x:118.50063604209276,y:38.92433994817604,z:0},{x:118.5008057105292,y:38.924455331652766,z:0},{x:118.50081104654814,y:38.92446355875061,z:0},{x:118.50081905101301,y:38.92447592347948,z:0},{x:118.50082705626342,y:38.92448828561805,z:0},{x:118.50082810406666,y:38.92450183949275,z:0},{x:118.50082307570266,y:38.924509493137975,z:0},{x:118.50081782639968,y:38.92452205789817,z:0},{x:118.50081411400082,y:38.92452437439978,z:0},{x:118.50080861871969,y:38.924530062304015,z:0},{x:118.5007521966718,y:38.924574751490475,z:0},{x:118.50073734718553,y:38.924582105825735,z:0},{x:118.50072384025374,y:38.92458232610605,z:0},{x:118.50070948119328,y:38.9245823822295,z:0},{x:118.50069497594124,y:38.924581014907446,z:0},{x:118.5006889351282,y:38.92457947993838,z:0},{x:118.50068618268436,y:38.92457638671176,z:0},{x:118.50062253716301,y:38.92453375379715,z:0},{x:118.50036311049062,y:38.92475983603293,z:0},{x:118.50043080388329,y:38.92481454963571,z:0},{x:118.50043280963008,y:38.924820849419234,z:0},{x:118.50043511887914,y:38.92482762737062,z:0},{x:118.50043670407736,y:38.92483216479345,z:0},{x:118.50043694138371,y:38.924836617204285,z:0},{x:118.50043644453264,y:38.92484011024993,z:0},{x:118.50043310447839,y:38.924848240706496,z:0},{x:118.50043110597413,y:38.92485122936381,z:0},{x:118.50042854807097,y:38.92485537414559,z:0},{x:118.50042319844776,y:38.924861408779726,z:0},{x:118.50041732242168,y:38.92487022868719,z:0},{x:118.50038104538973,y:38.92490150185134,z:0},{x:118.50036916265755,y:38.924906271541175,z:0},{x:118.50035540988165,y:38.9249105952405,z:0},{x:118.50034156780438,y:38.92491295988277,z:0},{x:118.50032798238134,y:38.924911887765944,z:0},{x:118.50031589216754,y:38.924910632826524,z:0},{x:118.5003072394849,y:38.92490659489717,z:0},{x:118.50030206700211,y:38.9249035373536,z:0},{x:118.50023225582592,y:38.924855414401236,z:0},{x:118.5002276568631,y:38.92485067330101,z:0},{x:118.50022610417129,y:38.924845459905846,z:0},{x:118.50022521001702,y:38.924841063876784,z:0},{x:118.50022472286999,y:38.924835887897366,z:0},{x:118.50022625761272,y:38.924827677185405,z:0},{x:118.5002312067539,y:38.92482458696699,z:0},{x:118.50024024114056,y:38.92481701526909,z:0},{x:118.50027335902661,y:38.924789416512205,z:0},{x:118.50008965955058,y:38.92466110327002,z:0},{x:118.50007399296334,y:38.924673943655286,z:0},{x:118.50006305847857,y:38.92468435898902,z:0},{x:118.50004694891634,y:38.924696726689305,z:0},{x:118.50004044293684,y:38.924700517722314,z:0},{x:118.5000265693822,y:38.92470152347073,z:0},{x:118.50001117074802,y:38.9246996113355,z:0},{x:118.49994188620282,y:38.924650637966394,z:0},{x:118.49993509243076,y:38.92463948990439,z:0},{x:118.49993548451118,y:38.92462793927098,z:0},{x:118.49994741332118,y:38.92461366561538,z:0},{x:118.49997286770244,y:38.92459296983225,z:0},{x:118.49998006004087,y:38.924592715843474,z:0},{x:118.49998967015587,y:38.92459149009345,z:0},{x:118.50000389732973,y:38.92459406131954,z:0},{x:118.50001241962588,y:38.92459982978679,z:0},{x:118.50003721489463,y:38.92461862286563,z:0},{x:118.5001644624762,y:38.924504764436556,z:0},{x:118.50014609449535,y:38.92448993227687,z:0},{x:118.50013909004336,y:38.92448247814853,z:0},{x:118.50013213774415,y:38.9244738035348,z:0},{x:118.50012992986552,y:38.9244659790766,z:0},{x:118.50013294877587,y:38.924457751532216,z:0},{x:118.50013670296073,y:38.92444952622546,z:0},{x:118.5001942878682,y:38.92439895993304,z:0},{x:118.50020476458947,y:38.92439094414541,z:0},{x:118.50010973727848,y:38.924318692402,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50028896874655,y:38.92520193609151,z:0},{x:118.50044736550875,y:38.92532517288943,z:0},{x:118.50006991810528,y:38.92565015768263,z:0},{x:118.49988904798221,y:38.925524716267056,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49950033859805,y:38.92471122285258,z:0},{x:118.49961868256746,y:38.924800295961674,z:0},{x:118.4993191875744,y:38.92505170399297,z:0},{x:118.499204746728,y:38.92497278702353,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49916105819517,y:38.92470427790159,z:0},{x:118.49898658773917,y:38.92485799935164,z:0},{x:118.49893211452967,y:38.9248176316498,z:0},{x:118.49910601885391,y:38.92466433559088,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49930568943651,y:38.92587939371524,z:0},{x:118.49959377632001,y:38.9256286382982,z:0},{x:118.49969636756411,y:38.925657686635766,z:0},{x:118.49962110816625,y:38.92570046328838,z:0},{x:118.4998366855094,y:38.925850310222856,z:0},{x:118.49963553594714,y:38.9260314472867,z:0},{x:118.49941473305242,y:38.925884429615266,z:0},{x:118.49937063122469,y:38.92591904330594,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49846822413818,y:38.92519499547524,z:0},{x:118.49867833924378,y:38.92498360390409,z:0},{x:118.49886545014311,y:38.925102071471315,z:0},{x:118.49877400950115,y:38.92518176006349,z:0},{x:118.4987133166983,y:38.92515850127011,z:0},{x:118.49859449730145,y:38.92525549384836,z:0},{x:118.49858777283545,y:38.92525149867698,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49746355558655,y:38.92499871947161,z:0},{x:118.49772738043393,y:38.924772091974624,z:0},{x:118.49777768681071,y:38.92480291426034,z:0},{x:118.49801131904506,y:38.92460734103925,z:0},{x:118.49808188217618,y:38.92454883568152,z:0},{x:118.49815986970683,y:38.92456173863814,z:0},{x:118.49818670346934,y:38.92455581430938,z:0},{x:118.49821856840398,y:38.92455470411348,z:0},{x:118.49825949066238,y:38.9245716582368,z:0},{x:118.49852358229234,y:38.92476060230509,z:0},{x:118.49853907138707,y:38.92478106535613,z:0},{x:118.49854718584237,y:38.92479929601696,z:0},{x:118.49856033338456,y:38.924832586678086,z:0},{x:118.49852898780867,y:38.9248556694638,z:0},{x:118.49795987864309,y:38.92535124026755,z:0},{x:118.49794439239162,y:38.925357609157366,z:0},{x:118.49792583371307,y:38.925362611688676,z:0},{x:118.49791192909606,y:38.92536527756048,z:0},{x:118.49787934255693,y:38.92536434795619,z:0},{x:118.4978331666993,y:38.92535068034166,z:0},{x:118.49746412425537,y:38.9250928785483,z:0},{x:118.49745405571366,y:38.92508369286042,z:0},{x:118.49742856987984,y:38.9250798670219,z:0},{x:118.4974416587349,y:38.92506288024762,z:0},{x:118.49743175056025,y:38.92505100048228,z:0},{x:118.49743645191906,y:38.9250353083974,z:0},{x:118.49744403975376,y:38.92502049697245,z:0},{x:118.49744985782198,y:38.92501554011919,z:0},{x:118.49746853784,y:38.92500439536179,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.4995592494322,y:38.927285810701036,z:0},{x:118.49982359819408,y:38.92747250901952,z:0},{x:118.49979294236945,y:38.927500817013524,z:0},{x:118.49984662948972,y:38.92754280533247,z:0},{x:118.49983635763076,y:38.927551037500066,z:0},{x:118.49983057634591,y:38.92754711877076,z:0},{x:118.49968530743578,y:38.9276731847096,z:0},{x:118.49962104925383,y:38.92762919040081,z:0},{x:118.49965005575665,y:38.92758984054551,z:0},{x:118.49941309611783,y:38.92741990531224,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50001571041652,y:38.92804466030985,z:0},{x:118.50025289708653,y:38.92783346224714,z:0},{x:118.50043494677463,y:38.92795631244319,z:0},{x:118.50082233886566,y:38.9282287839809,z:0},{x:118.50057776962853,y:38.92844501921659,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49929282271205,y:38.927421786675964,z:0},{x:118.49937411294809,y:38.927475618692434,z:0},{x:118.49967666067413,y:38.927704863741745,z:0},{x:118.49975905179714,y:38.927774825831584,z:0},{x:118.49975993834238,y:38.92785749154656,z:0},{x:118.49971243397945,y:38.92793101121194,z:0},{x:118.4996450037181,y:38.92799703621637,z:0},{x:118.49948767184743,y:38.92805182382547,z:0},{x:118.49937228434341,y:38.928032899523316,z:0},{x:118.49895343097337,y:38.92775633200223,z:0},{x:118.4989301449133,y:38.927692077444014,z:0},{x:118.49892012978847,y:38.92762321137992,z:0},{x:118.49894218378863,y:38.92757445090414,z:0},{x:118.49898030327422,y:38.92748244921013,z:0},{x:118.49908722604114,y:38.92743648454223,z:0},{x:118.4992162932097,y:38.92741757059685,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.5005645715557,y:38.92848862925271,z:0},{x:118.50195370783554,y:38.929459528615844,z:0},{x:118.50240608180403,y:38.92907074390113,z:0},{x:118.50101649534321,y:38.92809181935002,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.48799492792348,y:38.93420333723561,z:0},{x:118.48813225320015,y:38.934302811158844,z:0},{x:118.48803206725897,y:38.93439894496915,z:0},{x:118.48788558598267,y:38.93429220184784,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.48724517080309,y:38.934007562820355,z:0},{x:118.48738005299306,y:38.934104296155716,z:0},{x:118.48709402597869,y:38.93435021018219,z:0},{x:118.4869713204053,y:38.93426476581104,z:0},{x:118.48693088160648,y:38.934301005408166,z:0},{x:118.48686718345405,y:38.93425722217778,z:0},{x:118.48677490785313,y:38.93421162586617,z:0},{x:118.48652790778694,y:38.93403803780923,z:0},{x:118.48654219199632,y:38.93402725262539,z:0},{x:118.486485007255,y:38.93398816118867,z:0},{x:118.48659937528706,y:38.93388343217828,z:0},{x:118.48703920553028,y:38.934175134843464,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.48613958354042,y:38.93374750090293,z:0},{x:118.48619053732182,y:38.933780367933636,z:0},{x:118.48614198023549,y:38.933821569203346,z:0},{x:118.48608863627852,y:38.933792328139305,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.4872749264671,y:38.93444061308781,z:0},{x:118.48754738767596,y:38.93463370912672,z:0},{x:118.48748877024205,y:38.93468894420344,z:0},{x:118.48721181062939,y:38.93449611650608,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.48761273416812,y:38.93470726752447,z:0},{x:118.48764200071209,y:38.93472618671136,z:0},{x:118.48759565786612,y:38.93476312257961,z:0},{x:118.48756988641081,y:38.93474641483573,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.49111082245126,y:38.936121408996634,z:0},{x:118.49053172371084,y:38.935716748862966,z:0},{x:118.49068599825347,y:38.935583129759145,z:0},{x:118.49125735383352,y:38.935987491631295,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.48739053957883,y:38.93430836661344,z:0},{x:118.487426456587,y:38.934284996398304,z:0},{x:118.48749166914024,y:38.93426140566911,z:0},{x:118.48755407161337,y:38.934261017402505,z:0},{x:118.48780298782732,y:38.934415007177854,z:0},{x:118.48783323318474,y:38.934474992441125,z:0},{x:118.48782861588847,y:38.93452232384733,z:0},{x:118.48778722568686,y:38.93458028629172,z:0},{x:118.48773643362809,y:38.93461354774885,z:0},{x:118.48767644625572,y:38.934636791719285,z:0},{x:118.48759848238188,y:38.93461830472145,z:0},{x:118.48738306565176,y:38.934464186351484,z:0},{x:118.48734945039259,y:38.934418834744655,z:0},{x:118.48734443203585,y:38.934372495196634,z:0},{x:118.4873620462535,y:38.934336709265445,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.48846546975156,y:38.93446790976217,z:0},{x:118.48869350432408,y:38.93462441016163,z:0},{x:118.4885653586079,y:38.93472147115832,z:0},{x:118.48833786974694,y:38.934557403859316,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.48797183807262,y:38.93892964214213,z:0},{x:118.48803686274091,y:38.938975475437324,z:0},{x:118.48807475837393,y:38.93894253160374,z:0},{x:118.48801143456403,y:38.93889653338441,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.48511070193108,y:38.938043429643756,z:0},{x:118.48473631180543,y:38.93778403497797,z:0},{x:118.48485845154501,y:38.93765504936985,z:0},{x:118.48527746999426,y:38.9379124419773,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.48528429187853,y:38.93800190707929,z:0},{x:118.48533052069799,y:38.93803586508524,z:0},{x:118.48532524928635,y:38.938121319935334,z:0},{x:118.48527685827564,y:38.93808753687178,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.48472445989941,y:38.937967384503935,z:0},{x:118.48503337016798,y:38.938183141371205,z:0},{x:118.48514661079555,y:38.93808031354036,z:0},{x:118.4848417923433,y:38.93786361080975,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.4845872645763,y:38.93792419967251,z:0},{x:118.48504987834575,y:38.938259696635704,z:0},{x:118.4849306378697,y:38.9383817157391,z:0},{x:118.48443442120384,y:38.938057293048686,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50373394226007,y:38.9236731610696,z:0},{x:118.50412901144753,y:38.92397419096757,z:0},{x:118.50423008384685,y:38.92388625826669,z:0},{x:118.50382187213962,y:38.92359409506113,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50399862797201,y:38.923638717073146,z:0},{x:118.50408438571627,y:38.92356067689221,z:0},{x:118.50444819131533,y:38.9238078454675,z:0},{x:118.50434911684253,y:38.92389166915768,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.51656899921178,y:38.93401646012129,z:0},{x:118.51671454961236,y:38.934116951739156,z:0},{x:118.51634489735335,y:38.93443937686894,z:0},{x:118.51619432797928,y:38.93433676462063,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.51963544377266,y:38.931942196393976,z:0},{x:118.519771167422,y:38.9320402630103,z:0},{x:118.51957911662198,y:38.93221502195121,z:0},{x:118.51987802444204,y:38.93244285592426,z:0},{x:118.51976178745211,y:38.93255141903017,z:0},{x:118.51943349892993,y:38.9323186389764,z:0},{x:118.51947986299919,y:38.93228032102865,z:0},{x:118.51935690340949,y:38.932190848050034,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.52009062068103,y:38.93240440642161,z:0},{x:118.52013753566547,y:38.9324427390087,z:0},{x:118.52006401115719,y:38.93249941254111,z:0},{x:118.52003246215689,y:38.93246099521051,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.5200396730914,y:38.931893010599225,z:0},{x:118.52027724290849,y:38.93206483814835,z:0},{x:118.52031613731425,y:38.93206779856488,z:0},{x:118.52036740656838,y:38.93205481623705,z:0},{x:118.52041965015674,y:38.932044955732344,z:0},{x:118.52045694894015,y:38.93204731638793,z:0},{x:118.52043643660821,y:38.932080092810104,z:0},{x:118.52048278325994,y:38.932094187791755,z:0},{x:118.5204074086791,y:38.93216761883461,z:0},{x:118.52044692452296,y:38.93218865539663,z:0},{x:118.52028336899536,y:38.93231561257562,z:0},{x:118.52004749524139,y:38.93214710878252,z:0},{x:118.52010725501425,y:38.93208981473162,z:0},{x:118.51993573470999,y:38.93196755346623,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.52044781233022,y:38.929795971549446,z:0},{x:118.52054058493808,y:38.92986057610614,z:0},{x:118.52055328649541,y:38.92991640265818,z:0},{x:118.52059869312782,y:38.92995015699246,z:0},{x:118.52056469856927,y:38.92998014510809,z:0},{x:118.52052144801411,y:38.929951432101596,z:0},{x:118.52044058452942,y:38.929942382629946,z:0},{x:118.52036505154585,y:38.929884978218226,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.51974099330218,y:38.92941032974521,z:0},{x:118.51981330321449,y:38.929461225634576,z:0},{x:118.51967625922975,y:38.929574755522864,z:0},{x:118.51960847415822,y:38.92952800719094,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.51818842956553,y:38.9302511398706,z:0},{x:118.51822235949504,y:38.93027276308561,z:0},{x:118.51823713920574,y:38.930255968455334,z:0},{x:118.51833635239034,y:38.93032556319363,z:0},{x:118.51790604166428,y:38.93070645538672,z:0},{x:118.517817621311,y:38.93064629241412,z:0},{x:118.51783056667263,y:38.93062137244739,z:0},{x:118.51779345849198,y:38.93059767476709,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.51881313082677,y:38.930455417142575,z:0},{x:118.51917407629377,y:38.930128567837954,z:0},{x:118.5192719700615,y:38.930105682294986,z:0},{x:118.51935501207646,y:38.930101659749866,z:0},{x:118.51946831684842,y:38.93013764342198,z:0},{x:118.5195805653476,y:38.93020764715755,z:0},{x:118.51958786237303,y:38.93027366453114,z:0},{x:118.51957790887934,y:38.930335119266495,z:0},{x:118.51950103642325,y:38.93042056696473,z:0},{x:118.51977430379245,y:38.93060391828643,z:0},{x:118.51955877388696,y:38.9307689613084,z:0},{x:118.51952723760937,y:38.93074135517272,z:0},{x:118.5194364943803,y:38.930815496046925,z:0},{x:118.5192397979074,y:38.93068960744041,z:0},{x:118.51919651583013,y:38.93071043847209,z:0},{x:118.51913213509079,y:38.93073588879384,z:0},{x:118.51908504889997,y:38.93073570189539,z:0},{x:118.51900745564603,y:38.93073052542086,z:0},{x:118.5189385039578,y:38.930724321701575,z:0},{x:118.51888877329904,y:38.93070248317863,z:0},{x:118.51883828440732,y:38.930642628318516,z:0},{x:118.51881313369115,y:38.93061365516261,z:0},{x:118.51879575996408,y:38.930566004913736,z:0},{x:118.51878341479843,y:38.93051000345764,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.51960000966622,y:38.92987198425611,z:0},{x:118.51948344955362,y:38.92998224956723,z:0},{x:118.51971804941505,y:38.93014467841055,z:0},{x:118.51984324718045,y:38.9300390451703,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.51967861681327,y:38.92980923816724,z:0},{x:118.51990661230025,y:38.92997151882088,z:0},{x:118.52015826942959,y:38.92975517772706,z:0},{x:118.51993022279947,y:38.929591216327424,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.51402819974317,y:38.931173305292596,z:0},{x:118.51382708447068,y:38.93103871132611,z:0},{x:118.51391454573297,y:38.930955710378825,z:0},{x:118.51412695442178,y:38.93110362037751,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.51351677478874,y:38.93080423988956,z:0},{x:118.51332908050571,y:38.9306700479868,z:0},{x:118.51341052140157,y:38.93059464928664,z:0},{x:118.51360100283871,y:38.930729638603964,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.51325247529272,y:38.93061125551564,z:0},{x:118.51308218075044,y:38.930493087888664,z:0},{x:118.51316052682024,y:38.93042322600614,z:0},{x:118.51332712106756,y:38.930537313360254,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50152284491274,y:38.922844943588956,z:0},{x:118.50180618172139,y:38.92304337895275,z:0},{x:118.50147071759748,y:38.923344143930535,z:0},{x:118.50140944467951,y:38.92330160012106,z:0},{x:118.50135529645085,y:38.923350880924836,z:0},{x:118.50118150170199,y:38.923233090290694,z:0},{x:118.50121586460641,y:38.92319359279255,z:0},{x:118.50118343473733,y:38.92314160173055,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:118.50169267078685,y:38.92327451424046,z:0},{x:118.50188529369828,y:38.923412269278735,z:0},{x:118.50169985186105,y:38.92357657290541,z:0},{x:118.50150278591649,y:38.92344142650959,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),a),blueList:(i=[],(s={}).position=[{x:118.50664148047025,y:38.91920232659257,z:0},{x:118.50682391068317,y:38.91925226524256,z:0},{x:118.50680666945999,y:38.91929301644491,z:0},{x:118.50662062648298,y:38.91925035049532,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.49926132557167,y:38.92229564972748,z:0},{x:118.49942191234317,y:38.922408589159396,z:0},{x:118.49932720382162,y:38.92251672936046,z:0},{x:118.49976526183427,y:38.9228487599542,z:0},{x:118.49962002175003,y:38.92297229779699,z:0},{x:118.49913574845807,y:38.92263114442157,z:0},{x:118.49915115330242,y:38.922618355504156,z:0},{x:118.49908613246639,y:38.92257219738448,z:0},{x:118.4990977466413,y:38.922556255812125,z:0},{x:118.49902541412465,y:38.92250220145714,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.49984047603823,y:38.92289584218294,z:0},{x:118.50030929399753,y:38.92321507865092,z:0},{x:118.50043483626565,y:38.9231193259485,z:0},{x:118.5005952134753,y:38.92323167402568,z:0},{x:118.50035977030441,y:38.923433465722376,z:0},{x:118.50027939437297,y:38.92338111067526,z:0},{x:118.50026142634455,y:38.92339804020218,z:0},{x:118.50019473882261,y:38.923351285124554,z:0},{x:118.50017863512873,y:38.923370708589175,z:0},{x:118.49969436521035,y:38.92302236065311,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.49700963253484,y:38.923916277976275,z:0},{x:118.49709415391825,y:38.923973405145006,z:0},{x:118.49711243347727,y:38.923953850916355,z:0},{x:118.49720321320466,y:38.92401869746995,z:0},{x:118.49719185074672,y:38.924029896214265,z:0},{x:118.49739791258027,y:38.92418261470808,z:0},{x:118.49742063427118,y:38.9241697518143,z:0},{x:118.4975020867085,y:38.92422766849987,z:0},{x:118.49747992097504,y:38.92424980808976,z:0},{x:118.49757040871845,y:38.92431568410007,z:0},{x:118.49746158443467,y:38.92441538034371,z:0},{x:118.49736277401685,y:38.924346689483954,z:0},{x:118.49735248989668,y:38.92435297607617,z:0},{x:118.49727961364982,y:38.924303560662416,z:0},{x:118.4972828909668,y:38.92429537534831,z:0},{x:118.49706195507514,y:38.9241360595485,z:0},{x:118.49705069978855,y:38.92414309865604,z:0},{x:118.49697855388217,y:38.92408900682074,z:0},{x:118.49698396296465,y:38.92408312309241,z:0},{x:118.49688709801914,y:38.92401277987807,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.49664402878405,y:38.92422325208129,z:0},{x:118.4967328882781,y:38.9242881501088,z:0},{x:118.49675687942587,y:38.924267331679175,z:0},{x:118.49684390662772,y:38.92432607274679,z:0},{x:118.49683231186168,y:38.92434222833609,z:0},{x:118.4970379405806,y:38.92450223256654,z:0},{x:118.49706124448933,y:38.924480651037754,z:0},{x:118.4971476024489,y:38.92454134828525,z:0},{x:118.49712979855029,y:38.924556812018146,z:0},{x:118.4972196972283,y:38.92462708147359,z:0},{x:118.49709683463747,y:38.924731122919695,z:0},{x:118.49700293842788,y:38.92465764188742,z:0},{x:118.49699400190964,y:38.92466612881849,z:0},{x:118.49691913036217,y:38.92460920286701,z:0},{x:118.49692625165542,y:38.924603781969076,z:0},{x:118.49670512033869,y:38.92444775270663,z:0},{x:118.49669301525692,y:38.92445822193699,z:0},{x:118.49661636336668,y:38.92440481552618,z:0},{x:118.49663042488451,y:38.924391590196095,z:0},{x:118.4965319749189,y:38.924320604808536,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.49580549204464,y:38.92535730059864,z:0},{x:118.49656149956776,y:38.924713166229346,z:0},{x:118.4991209375304,y:38.92650010753441,z:0},{x:118.49784001415046,y:38.92759941222427,z:0},{x:118.49509819972384,y:38.92623399944132,z:0},{x:118.49583194712996,y:38.92556142789396,z:0},{x:118.49528859796148,y:38.92519302480698,z:0},{x:118.4952203940757,y:38.92518991647434,z:0},{x:118.49510287302702,y:38.92519491762865,z:0},{x:118.49432821822656,y:38.92591468195194,z:0},{x:118.49431820022944,y:38.92599641504644,z:0},{x:118.49434066331116,y:38.92608396163062,z:0},{x:118.49444319347288,y:38.926176496037705,z:0},{x:118.49773997664397,y:38.92781710113593,z:0},{x:118.4992927018354,y:38.92653178122037,z:0},{x:118.49619185172561,y:38.92431835320539,z:0},{x:118.49548049183889,y:38.92491248070866,z:0},{x:118.4954120504127,y:38.924976864652265,z:0},{x:118.49538758672468,y:38.925033936372635,z:0},{x:118.49539064895025,y:38.925085278853985,z:0},{x:118.49543305896213,y:38.925123989986496,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.48917431632677,y:38.93067736749415,z:0},{x:118.4893310496602,y:38.93076303286792,z:0},{x:118.48926546155653,y:38.93084679956198,z:0},{x:118.48911094094571,y:38.93072862522071,z:0},{x:118.48909834078306,y:38.93071662904562,z:0},{x:118.48909036088001,y:38.93069998597822,z:0},{x:118.48909118195526,y:38.93068696698893,z:0},{x:118.48910116181511,y:38.93067252891657,z:0},{x:118.48911015874408,y:38.93066247938484,z:0},{x:118.48913047105646,y:38.93066158880926,z:0},{x:118.48913767340163,y:38.93066167216745,z:0},{x:118.48915587696229,y:38.93066631433794,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.48778085380626,y:38.931699164187286,z:0},{x:118.4881369748017,y:38.931383220911236,z:0},{x:118.4883754444949,y:38.93155279539132,z:0},{x:118.48800444290751,y:38.931853864668106,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.48774663108894,y:38.93403470724739,z:0},{x:118.48786628759942,y:38.934118349029774,z:0},{x:118.48782845071194,y:38.93414738499945,z:0},{x:118.48771529101572,y:38.93406354008081,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.51619294291595,y:38.93617896622008,z:0},{x:118.51623461467173,y:38.9362071415862,z:0},{x:118.51635218989436,y:38.936106086032844,z:0},{x:118.51630921877121,y:38.93607671917473,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.51748376054736,y:38.93426131831246,z:0},{x:118.51784212105687,y:38.934513353724995,z:0},{x:118.51766766705205,y:38.93465484799844,z:0},{x:118.5173113746163,y:38.93440612913227,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.5188182848544,y:38.93270032258388,z:0},{x:118.51912834224099,y:38.93291633560022,z:0},{x:118.51852350460524,y:38.93344068330172,z:0},{x:118.51821876155765,y:38.93321308764016,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.52126671218622,y:38.93113622361099,z:0},{x:118.52163198875448,y:38.93139653626842,z:0},{x:118.52135625231948,y:38.93164296786535,z:0},{x:118.52098382718215,y:38.93138596555408,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.52168201764556,y:38.929732720714064,z:0},{x:118.52215301479737,y:38.93005366873191,z:0},{x:118.52209071071337,y:38.930109408708276,z:0},{x:118.52162194301296,y:38.92979296826642,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.52179519957222,y:38.92964457103136,z:0},{x:118.52227022094993,y:38.92996632767306,z:0},{x:118.52218045864797,y:38.93001481421926,z:0},{x:118.52172710525427,y:38.92970997094796,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.51896911175153,y:38.93140110946848,z:0},{x:118.51901388238393,y:38.93143505588567,z:0},{x:118.51890396420018,y:38.931532156970356,z:0},{x:118.51895950881887,y:38.93156871565949,z:0},{x:118.51906140147891,y:38.93146993749414,z:0},{x:118.51911102630085,y:38.931503646585206,z:0},{x:118.51868420560658,y:38.931880754332354,z:0},{x:118.5186403630233,y:38.93184931196613,z:0},{x:118.5188757755957,y:38.931629021763804,z:0},{x:118.5188276811009,y:38.9315957761368,z:0},{x:118.51858689216479,y:38.931808834462394,z:0},{x:118.51854054631112,y:38.93177829761861,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.51851099186516,y:38.931151825391744,z:0},{x:118.51867651665029,y:38.93127759290649,z:0},{x:118.51839182947138,y:38.931546188097485,z:0},{x:118.51823196262333,y:38.9314316608236,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.51877100095,y:38.9313086211449,z:0},{x:118.51893152029618,y:38.931437988612466,z:0},{x:118.51864915427765,y:38.9316733081189,z:0},{x:118.51847572691182,y:38.931547242173636,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:118.51849548808038,y:38.930997034441226,z:0},{x:118.51857618441652,y:38.93105843820323,z:0},{x:118.51849959642077,y:38.93112409129505,z:0},{x:118.518411985515,y:38.931067269954,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),i),wallList:(c=[],(l={}).position=[{x:118.49908692664383,y:38.92674633526445,z:0},{x:118.50709463008508,y:38.93241383749963,z:0},{x:118.5109160086412,y:38.93427464015057,z:0},{x:118.51154442848754,y:38.933743670613914,z:0},{x:118.51438664627874,y:38.93573179324845,z:0},{x:118.51494111503344,y:38.93598236111987,z:0},{x:118.51496583099744,y:38.93599780059429,z:0},{x:118.51706254083413,y:38.934191788113246,z:0},{x:118.51785638013116,y:38.93474077745899,z:0},{x:118.52187271909214,y:38.93146189937477,z:0},{x:118.52067381367125,y:38.93063002399223,z:0},{x:118.52175019424513,y:38.929657218254974,z:0},{x:118.52143553143115,y:38.92942704368537,z:0},{x:118.52153293482945,y:38.92933321994022,z:0},{x:118.50751707362738,y:38.919471351829806,z:0},{x:118.50676482775175,y:38.92012242323175,z:0},{x:118.50650314876431,y:38.91993500264998,z:0},{x:118.50618003560737,y:38.92021037890844,z:0},{x:118.50528933821167,y:38.919584429812,z:0},{x:118.5052057521309,y:38.91957951693426,z:0},{x:118.50499783472156,y:38.91945732725243,z:0},{x:118.50498698552595,y:38.91945366509456,z:0},{x:118.50218679739068,y:38.92188495533001,z:0},{x:118.50354236701541,y:38.922843166531955,z:0},{x:118.50264850567008,y:38.92361310799775,z:0},{x:118.50262783433566,y:38.92366208577409,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",c.push(l),(l={}).position=[{x:118.49369150973368,y:38.9258611450745,z:0},{x:118.49914655488551,y:38.921178621227156,z:0},{x:118.49616873591397,y:38.91499078490529,z:0},{x:118.48818760178409,y:38.91724759252874,z:0},{x:118.48805794433629,y:38.91695612812173,z:0},{x:118.49631381282053,y:38.9144597442411,z:0},{x:118.49956701356942,y:38.92068705099419,z:0},{x:118.50265294770625,y:38.91801778339131,z:0},{x:118.50504615933207,y:38.91802090940912,z:0},{x:118.50516568018304,y:38.914749446491136,z:0},{x:118.49705735720369,y:38.91463327155724,z:0},{x:118.49709241560284,y:38.91437972045147,z:0},{x:118.50576491655738,y:38.91437032999765,z:0},{x:118.5056175178713,y:38.91611054598518,z:0},{x:118.50686024155836,y:38.91621014457138,z:0},{x:118.50666787729635,y:38.918384442186046,z:0},{x:118.52376206665534,y:38.93036024915689,z:0},{x:118.51566995886793,y:38.9367562504355,z:0},{x:118.49408380459265,y:38.92605596823008,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",c.push(l),(l={}).position=[{x:118.4935643706221,y:38.92593480442542,z:0},{x:118.4812265932153,y:38.93684773053772,z:0},{x:118.4871945506674,y:38.940972194113904,z:0},{x:118.48893358084861,y:38.939479140514266,z:0},{x:118.48816633614166,y:38.938893723590894,z:0},{x:118.49150740330485,y:38.93591938241312,z:0},{x:118.48702091366398,y:38.93292610249116,z:0},{x:118.49446578606863,y:38.92660530871618,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",c.push(l),c)}}r.r(t),r.d(t,{default:()=>o})},66212(e,t,r){"use strict";function o(){var e,t,r,o,a,n,i,s,c,l;return{redList:(e=[],(t={}).position=[{x:117.91329259120815,y:38.36123690530284,z:0},{x:117.91336486344717,y:38.36111173231187,z:0},{x:117.91468106231675,y:38.36170398220746,z:0},{x:117.91457931965344,y:38.36182250986263,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.91861632134999,y:38.36441120088372,z:0},{x:117.91870699539653,y:38.36425708870703,z:0},{x:117.91967791232462,y:38.3647036946978,z:0},{x:117.91957362028664,y:38.364835575401216,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.91165763498671,y:38.36200088368303,z:0},{x:117.91173822788505,y:38.361859620421555,z:0},{x:117.91234869929183,y:38.36213451866971,z:0},{x:117.91265714969974,y:38.362156144107416,z:0},{x:117.91265031065764,y:38.36222307035794,z:0},{x:117.91248121040057,y:38.362198659014865,z:0},{x:117.91238554615954,y:38.362310722516966,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.91557741167017,y:38.364519738284855,z:0},{x:117.91569231156154,y:38.364385714812784,z:0},{x:117.91639481368892,y:38.3647055956907,z:0},{x:117.91627846976654,y:38.364843025527186,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.91531913734993,y:38.365151141666615,z:0},{x:117.91543164663534,y:38.36501986867428,z:0},{x:117.9166754061489,y:38.36558167301088,z:0},{x:117.91657568447863,y:38.36570912885837,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.91474692158906,y:38.36563344274661,z:0},{x:117.91571531380882,y:38.365575507149735,z:0},{x:117.91573882123228,y:38.36567811085759,z:0},{x:117.91477989838658,y:38.36576475215801,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.91262750855083,y:38.365413506797736,z:0},{x:117.91276794671406,y:38.365287385994456,z:0},{x:117.9139753678935,y:38.36584054599906,z:0},{x:117.91386343527583,y:38.3659672236834,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.9110982527594,y:38.365322589156264,z:0},{x:117.91129261832471,y:38.3652205195321,z:0},{x:117.91178690990623,y:38.365923259197956,z:0},{x:117.91160382111744,y:38.365967550193055,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.9055797602892,y:38.363678953392764,z:0},{x:117.90565294237713,y:38.36357588304439,z:0},{x:117.90684692093744,y:38.3641164599739,z:0},{x:117.90675167484216,y:38.364216564403364,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.91405013878493,y:38.36828460788923,z:0},{x:117.91413254845655,y:38.36815698394543,z:0},{x:117.91507764116463,y:38.36858268730413,z:0},{x:117.91499055000097,y:38.36870306727979,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.90459637924963,y:38.36479696047576,z:0},{x:117.90589501608808,y:38.36539087423531,z:0},{x:117.90514057108632,y:38.366341076669144,z:0},{x:117.90388732140204,y:38.36578737228895,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.90737505310737,y:38.366082340632445,z:0},{x:117.90972416120367,y:38.367166049378696,z:0},{x:117.90905455483788,y:38.36809140454216,z:0},{x:117.90679177081512,y:38.36705732594471,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.9112936737339,y:38.367782210203686,z:0},{x:117.91283559856673,y:38.368478375782495,z:0},{x:117.91220726298413,y:38.36924079023648,z:0},{x:117.91074199614286,y:38.36855676324696,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.91519725620137,y:38.3695889453864,z:0},{x:117.91557478593037,y:38.36976047443697,z:0},{x:117.91486456175582,y:38.37080199063585,z:0},{x:117.91436788422841,y:38.370592226172164,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.91625132928064,y:38.37005681382003,z:0},{x:117.91722954499555,y:38.370519531964476,z:0},{x:117.91648688037142,y:38.371547754013186,z:0},{x:117.91546649961917,y:38.37107641663145,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.8639169125132,y:38.33601730727607,z:0},{x:117.86416094262196,y:38.33580896370501,z:0},{x:117.8643615106487,y:38.3359444414587,z:0},{x:117.86415146516833,y:38.336139689798884,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.8643993579461,y:38.33630753282721,z:0},{x:117.86459980183264,y:38.33613584833159,z:0},{x:117.86479709091888,y:38.33626718670821,z:0},{x:117.86460360219132,y:38.336437577222924,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.86016936632625,y:38.34328204466427,z:0},{x:117.86132743132538,y:38.34406555225892,z:0},{x:117.86102074059033,y:38.34434660991865,z:0},{x:117.85987510874995,y:38.34356102613709,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=75,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.86270461833485,y:38.34521958548796,z:0},{x:117.86295397805429,y:38.34502185122381,z:0},{x:117.86399218728648,y:38.345680096483996,z:0},{x:117.86372693997734,y:38.34590305722464,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=75,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.8644783600056,y:38.34642886822679,z:0},{x:117.86480514045573,y:38.34614038967857,z:0},{x:117.8665005295391,y:38.34725086675385,z:0},{x:117.866160852321,y:38.3475632602814,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=75,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.86683532698562,y:38.347728615007846,z:0},{x:117.86977352768857,y:38.349702830922205,z:0},{x:117.8695578924931,y:38.3499586228562,z:0},{x:117.86660110730287,y:38.347941659769496,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=75,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:117.8707453434621,y:38.35059979382141,z:0},{x:117.87087586547943,y:38.350489170842636,z:0},{x:117.87127588007431,y:38.35074024834518,z:0},{x:117.87112710407044,y:38.35086578225843,z:0}],t.color="rgba(211,0,0,0.4)",t.stretchHeight=60,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),e),orangeList:(r=[],(o={}).position=[{x:117.907844298949,y:38.3587675690106,z:0},{x:117.90795396523414,y:38.35862466609859,z:0},{x:117.90824139439846,y:38.3587504857502,z:0},{x:117.90813160195708,y:38.35889905098379,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.9085962866892,y:38.35982491735114,z:0},{x:117.90868101105407,y:38.35972302971213,z:0},{x:117.9088000505195,y:38.35977156524764,z:0},{x:117.90871818222621,y:38.35988160927061,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.90815366784493,y:38.36039433346199,z:0},{x:117.90822867849563,y:38.360279668931646,z:0},{x:117.90839233590515,y:38.36034280827279,z:0},{x:117.90830840239398,y:38.36046186567186,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.90776706746435,y:38.36096465349989,z:0},{x:117.90784762758085,y:38.360862891023274,z:0},{x:117.90796327184599,y:38.360910181649515,z:0},{x:117.90787940666799,y:38.36102053145084,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.90702267128174,y:38.359900972310975,z:0},{x:117.90712617411354,y:38.35977443757239,z:0},{x:117.90741751353137,y:38.35989092626695,z:0},{x:117.90730200910154,y:38.360043478977225,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.90619947377303,y:38.361024175291924,z:0},{x:117.90631070906977,y:38.3608916985753,z:0},{x:117.90660000152653,y:38.361014795381415,z:0},{x:117.90648194821199,y:38.36115162245955,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.90540428308417,y:38.36212463853562,z:0},{x:117.90550702135772,y:38.361978811156966,z:0},{x:117.90578784686141,y:38.36209753119061,z:0},{x:117.90568404039078,y:38.36224523502306,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.90455998513465,y:38.36324755026289,z:0},{x:117.90466073327383,y:38.36312053946832,z:0},{x:117.90494100030983,y:38.363244770069805,z:0},{x:117.90483542145289,y:38.363381870645206,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.90410537703198,y:38.36388676542451,z:0},{x:117.90426041571376,y:38.36369343688687,z:0},{x:117.90453143220097,y:38.363839298685505,z:0},{x:117.90440691471726,y:38.3640459341981,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.90578370985551,y:38.36264266397672,z:0},{x:117.90589297550018,y:38.362498365623495,z:0},{x:117.90619223163318,y:38.3626369010878,z:0},{x:117.90608311020067,y:38.36278375786354,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.91753522441041,y:38.369844529200954,z:0},{x:117.91760961376447,y:38.36973784463656,z:0},{x:117.91811841310025,y:38.369957657435066,z:0},{x:117.9180387881698,y:38.37007257955329,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.91836809777949,y:38.368738658874534,z:0},{x:117.91843833900796,y:38.36863604616953,z:0},{x:117.91893465462319,y:38.36886181181773,z:0},{x:117.9188748292663,y:38.368956506634305,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.91918609481068,y:38.367609637261275,z:0},{x:117.91926031138733,y:38.367508206243066,z:0},{x:117.91974093074336,y:38.36772374348505,z:0},{x:117.91967096909859,y:38.3678272678068,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.91998140621305,y:38.366512853917314,z:0},{x:117.9200721947178,y:38.366393039854565,z:0},{x:117.92054816619459,y:38.36661064594904,z:0},{x:117.92045437606762,y:38.366724252301296,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.92081665947296,y:38.36539322632034,z:0},{x:117.92090786287267,y:38.36528972741719,z:0},{x:117.92136567484222,y:38.36550557189438,z:0},{x:117.92128110821382,y:38.365605823513114,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.92121828857603,y:38.364828097901,z:0},{x:117.92130406177641,y:38.36471064209433,z:0},{x:117.92179861101843,y:38.3649384156311,z:0},{x:117.92169697032773,y:38.36505580080119,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.92244592826917,y:38.36342513100857,z:0},{x:117.92261707268716,y:38.36320763409272,z:0},{x:117.92291425640254,y:38.363333144126074,z:0},{x:117.92274514819292,y:38.36356798789286,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.92452031724474,y:38.36440885911236,z:0},{x:117.92470842760994,y:38.364164251258,z:0},{x:117.92501672272101,y:38.36430022355478,z:0},{x:117.92483057366078,y:38.364547955249776,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.91845451429599,y:38.36709791295876,z:0},{x:117.9186606690437,y:38.366810829541066,z:0},{x:117.91932786570973,y:38.36710604505746,z:0},{x:117.91910686061287,y:38.36738705651487,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.91958658694604,y:38.36599148617097,z:0},{x:117.91969002525222,y:38.36585285058809,z:0},{x:117.9199759231144,y:38.365984128796576,z:0},{x:117.91986837990314,y:38.36611713965488,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.90318801004898,y:38.364804088958735,z:0},{x:117.91729200048255,y:38.371209496328646,z:0},{x:117.91786365878276,y:38.37046492540003,z:0},{x:117.91770289396489,y:38.37037464029775,z:0},{x:117.91745324744427,y:38.37071538170691,z:0},{x:117.91725648738128,y:38.370774834241644,z:0},{x:117.9099598550458,y:38.36747464685557,z:0},{x:117.90993971547692,y:38.367319177202305,z:0},{x:117.910218412937,y:38.36695118998983,z:0},{x:117.91007989318014,y:38.366889207188876,z:0},{x:117.90980263407245,y:38.367248328927865,z:0},{x:117.90962707082262,y:38.367329251007845,z:0},{x:117.90407410030545,y:38.36481240239222,z:0},{x:117.90404556930848,y:38.36463979614382,z:0},{x:117.90432199456077,y:38.364270350928564,z:0},{x:117.90394494438156,y:38.36410377370946,z:0},{x:117.90367618755263,y:38.36447301504417,z:0},{x:117.9035106516246,y:38.364535061723885,z:0},{x:117.90343931866886,y:38.364503150021584,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.87559172004707,y:38.34682127594433,z:0},{x:117.87566977154088,y:38.346748460210634,z:0},{x:117.87571399902247,y:38.34677668912454,z:0},{x:117.87563539673299,y:38.34684810210876,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.87437617602177,y:38.34666069441376,z:0},{x:117.87466296602123,y:38.346412547403894,z:0},{x:117.87517767852705,y:38.34674697306628,z:0},{x:117.87490403844996,y:38.34698154544616,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:117.85845878664843,y:38.3411812695067,z:0},{x:117.85767333276203,y:38.341867050163,z:0},{x:117.87121263622,y:38.350960300816965,z:0},{x:117.87206358546692,y:38.35018934423934,z:0},{x:117.87184278122723,y:38.350043286756325,z:0},{x:117.87147746025965,y:38.35038722637107,z:0},{x:117.86950395199224,y:38.34908012970331,z:0},{x:117.86993217244637,y:38.34873952681727,z:0},{x:117.86968890065994,y:38.34860937405101,z:0},{x:117.86931857296894,y:38.34895268674602,z:0},{x:117.86735389984138,y:38.34762130097849,z:0},{x:117.86776484802972,y:38.34724418001076,z:0},{x:117.86756568909176,y:38.34709871467147,z:0},{x:117.86716252415042,y:38.34749993207819,z:0},{x:117.86520683449487,y:38.34619472872306,z:0},{x:117.8655766100177,y:38.34584356477454,z:0},{x:117.86536804873053,y:38.34571140303423,z:0},{x:117.8650133525401,y:38.346041723349884,z:0},{x:117.86299714105299,y:38.3447078428044,z:0},{x:117.86337176697302,y:38.344357878121244,z:0},{x:117.86299538951562,y:38.344119165454636,z:0},{x:117.86263373300359,y:38.34443219470845,z:0},{x:117.86043268813577,y:38.34299138832227,z:0},{x:117.86083158264016,y:38.34264714244011,z:0},{x:117.86060832992973,y:38.34252954715649,z:0},{x:117.86023235193774,y:38.34285931317861,z:0},{x:117.85831342536328,y:38.3415310637529,z:0},{x:117.85865007315385,y:38.34123606438763,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=40,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),r),yellowList:(a=[],(n={}).position=[{x:117.90864099549088,y:38.358946661762985,z:0},{x:117.90896219391294,y:38.35851968060381,z:0},{x:117.92156807902954,y:38.36423385330932,z:0},{x:117.92123732910306,y:38.36468757273338,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.90891053833933,y:38.359823565043875,z:0},{x:117.90922528000632,y:38.359403558186095,z:0},{x:117.92016786204232,y:38.36437122811609,z:0},{x:117.91988275331573,y:38.36476404418333,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.9084748564465,y:38.360375658386026,z:0},{x:117.90877553517953,y:38.35996897619597,z:0},{x:117.919734717287,y:38.3649122787372,z:0},{x:117.9194362793756,y:38.36533704334572,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.90807380552448,y:38.36091785906058,z:0},{x:117.90837563584437,y:38.360502374771734,z:0},{x:117.91933532565342,y:38.365473877653606,z:0},{x:117.91901564320337,y:38.3658911188383,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.9076835732294,y:38.36148920775192,z:0},{x:117.90797101687902,y:38.3610924971674,z:0},{x:117.91895006144716,y:38.36604729791776,z:0},{x:117.91864010877845,y:38.36646924382088,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.9072835723708,y:38.36206161348918,z:0},{x:117.90759539100375,y:38.36168714559622,z:0},{x:117.91851852489516,y:38.36660917978046,z:0},{x:117.91820667253407,y:38.36702089376941,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.90690285908096,y:38.362609925677496,z:0},{x:117.90719553169717,y:38.362213299791236,z:0},{x:117.91768305594694,y:38.36697516926088,z:0},{x:117.91738146470199,y:38.36737189907449,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.9064371747969,y:38.36315128277657,z:0},{x:117.90673265470114,y:38.36275185395323,z:0},{x:117.9172954559111,y:38.36752410514777,z:0},{x:117.91698362450293,y:38.36793957205341,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.90605611457221,y:38.36368640036425,z:0},{x:117.9063105245125,y:38.363287857945316,z:0},{x:117.91718656779248,y:38.36822809246471,z:0},{x:117.91689653920623,y:38.36863835877828,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.90611798462872,y:38.36447974287961,z:0},{x:117.90640961819044,y:38.36407858270742,z:0},{x:117.91685691904293,y:38.36880546800455,z:0},{x:117.91653632035766,y:38.369231463952694,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.90814156116994,y:38.35785212472382,z:0},{x:117.90819812180705,y:38.357777044377954,z:0},{x:117.9084802793365,y:38.35790516359833,z:0},{x:117.90842567906007,y:38.357979685026514,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.90856283244196,y:38.359280998274784,z:0},{x:117.90830571833335,y:38.3591564987556,z:0},{x:117.90786906633471,y:38.359733112445916,z:0},{x:117.90813878949693,y:38.359857464139644,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.90721442415747,y:38.36090820768225,z:0},{x:117.90768051093268,y:38.36026837209728,z:0},{x:117.908102107147,y:38.360460293991174,z:0},{x:117.90761845538454,y:38.361098915404,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.90705322462107,y:38.36110852756566,z:0},{x:117.90714449919278,y:38.36098496007822,z:0},{x:117.9075530922614,y:38.36116532006147,z:0},{x:117.9074655067441,y:38.36129134178092,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.9060267687132,y:38.3620622964007,z:0},{x:117.90657020227864,y:38.36133105184314,z:0},{x:117.90734240096033,y:38.36164810145012,z:0},{x:117.9067737896422,y:38.362411253739424,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.90530056417273,y:38.36330506371837,z:0},{x:117.90571784966114,y:38.362745080051525,z:0},{x:117.90593940414213,y:38.36285575344303,z:0},{x:117.90552921352347,y:38.36340764652913,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.90576365005327,y:38.36332536289572,z:0},{x:117.90615338423457,y:38.36279309970842,z:0},{x:117.90633428931994,y:38.36286987555464,z:0},{x:117.90595481782017,y:38.36340848297254,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.90533260137015,y:38.36365587101769,z:0},{x:117.90571723119868,y:38.3638256190717,z:0},{x:117.9056131671914,y:38.36397115234229,z:0},{x:117.9052366504932,y:38.36379522824109,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.90483435500443,y:38.364224589650995,z:0},{x:117.90502425271819,y:38.36430782865065,z:0},{x:117.90531105073713,y:38.36392729102655,z:0},{x:117.9051246922832,y:38.36383674681542,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.90515102629894,y:38.36435707826928,z:0},{x:117.90527073918932,y:38.364408758839836,z:0},{x:117.90553055441809,y:38.36404428413086,z:0},{x:117.90542128703832,y:38.36399415449912,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=50,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.90551592244293,y:38.36450899689649,z:0},{x:117.90557393820549,y:38.36442810543998,z:0},{x:117.90609512899205,y:38.364665426988886,z:0},{x:117.90603624973237,y:38.36474661734747,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.90631881661082,y:38.36488043200351,z:0},{x:117.906370999656,y:38.36479925981966,z:0},{x:117.9067515224254,y:38.36497216814198,z:0},{x:117.90668458683622,y:38.3650553687038,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.90433884290694,y:38.36423708097124,z:0},{x:117.90440008167022,y:38.36415587180558,z:0},{x:117.90446702462692,y:38.364188553075245,z:0},{x:117.90440835497071,y:38.36426961874501,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.91049053238274,y:38.366667421228186,z:0},{x:117.91082866108013,y:38.36682136080121,z:0},{x:117.91077198480626,y:38.36689994345437,z:0},{x:117.91042964809112,y:38.366739465520375,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.91492283895508,y:38.368787333387985,z:0},{x:117.9149828813005,y:38.36869131807309,z:0},{x:117.91534789725945,y:38.36885315879718,z:0},{x:117.91528025059357,y:38.36895036247976,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.91548243536668,y:38.368927497831805,z:0},{x:117.9158484407971,y:38.369096964073314,z:0},{x:117.91578015793372,y:38.36918806703643,z:0},{x:117.9154169926615,y:38.36901955280916,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),n.position=[{x:117.91697938803391,y:38.369393553548065,z:0},{x:117.91716626619599,y:38.36912169083626,z:0},{x:117.91765873334812,y:38.369338185898656,z:0},{x:117.91746054207951,y:38.36961451748285,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.91747111747686,y:38.36843231890185,z:0},{x:117.91807500720081,y:38.36869986661527,z:0},{x:117.91792237563513,y:38.36893601870817,z:0},{x:117.91729761220158,y:38.36864544085299,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.9182557132583,y:38.36761158710999,z:0},{x:117.91838451701551,y:38.36744498158318,z:0},{x:117.91886846394908,y:38.367667114489436,z:0},{x:117.91873871349286,y:38.367833269730255,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.9188467776949,y:38.366437059585216,z:0},{x:117.91892192678598,y:38.36633490559159,z:0},{x:117.91909428520978,y:38.36641254087342,z:0},{x:117.91901798759953,y:38.366515916951926,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.91921493281663,y:38.36661768556532,z:0},{x:117.9193719675476,y:38.36640314920667,z:0},{x:117.91959565372515,y:38.366502874070356,z:0},{x:117.91943345598375,y:38.36672581503257,z:0},{x:117.91938133896124,y:38.36670277247166,z:0},{x:117.91938595257778,y:38.366696439852944,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.91999688432847,y:38.36539453256862,z:0},{x:117.92011883847772,y:38.365241564689896,z:0},{x:117.92042993977547,y:38.365381177808736,z:0},{x:117.92031276802162,y:38.365534215420695,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.920166262726,y:38.3649904002729,z:0},{x:117.92024919021009,y:38.364889170377005,z:0},{x:117.92040126945079,y:38.3649607480189,z:0},{x:117.92033363802686,y:38.36505706481944,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.92019248215534,y:38.364849875580646,z:0},{x:117.92037376680163,y:38.3646056378227,z:0},{x:117.92096825752326,y:38.364877562090314,z:0},{x:117.9207937819528,y:38.36512232705375,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.92039637539337,y:38.36411063895035,z:0},{x:117.92060931150193,y:38.363841385804214,z:0},{x:117.92149825352342,y:38.36425378829388,z:0},{x:117.92130274717006,y:38.364517972282776,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.85784503178103,y:38.3354825819963,z:0},{x:117.85971409088874,y:38.333773739821424,z:0},{x:117.85974359661957,y:38.333410542229934,z:0},{x:117.86026349272144,y:38.33289696809409,z:0},{x:117.86853389985045,y:38.33844549584847,z:0},{x:117.86835074182889,y:38.3386128209762,z:0},{x:117.86778128267538,y:38.33822896088872,z:0},{x:117.86771042542743,y:38.33829391695874,z:0},{x:117.86815858162156,y:38.338596943954364,z:0},{x:117.86726134323796,y:38.33938616033193,z:0},{x:117.86558227971145,y:38.338273254550224,z:0},{x:117.86408019227486,y:38.33965761612982,z:0},{x:117.86187947687814,y:38.338198877028944,z:0},{x:117.86246707138122,y:38.33765484191714,z:0},{x:117.8622703920157,y:38.3375362456134,z:0},{x:117.86169340375767,y:38.338060363334066,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.85630132871323,y:38.33630441164299,z:0},{x:117.85730068827515,y:38.33537756804774,z:0},{x:117.85936140336415,y:38.33676035574786,z:0},{x:117.85832229368553,y:38.3376918282541,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.85855629355653,y:38.33783470622107,z:0},{x:117.85958575615048,y:38.33688423902323,z:0},{x:117.86157175051618,y:38.3382091085082,z:0},{x:117.86053728151376,y:38.339179537075246,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.86087368785878,y:38.33903595754185,z:0},{x:117.86164215967038,y:38.33831953106332,z:0},{x:117.86319173874287,y:38.339338963731336,z:0},{x:117.86239915470901,y:38.34008079817979,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.86284865097147,y:38.34033487072985,z:0},{x:117.86364335671638,y:38.33964364872039,z:0},{x:117.86604851748031,y:38.34126293042423,z:0},{x:117.86529071654833,y:38.341959934202215,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.86720028810271,y:38.341010581329606,z:0},{x:117.8693350586832,y:38.339017237474145,z:0},{x:117.87339803938839,y:38.3417608632608,z:0},{x:117.8712267649776,y:38.34376646082824,z:0},{x:117.86715040317874,y:38.34104180435669,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.87143103264677,y:38.34389878705648,z:0},{x:117.87359779685013,y:38.34190369931054,z:0},{x:117.87552383623014,y:38.34317429307382,z:0},{x:117.87332107963648,y:38.34518875039634,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.86677980298691,y:38.34143591512744,z:0},{x:117.86696297263316,y:38.341558362908685,z:0},{x:117.86715578925293,y:38.34138041350478,z:0},{x:117.8669729872553,y:38.34125723484525,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.86381084791432,y:38.344090559352985,z:0},{x:117.86566888478987,y:38.345345017019774,z:0},{x:117.86587654547247,y:38.345156709743065,z:0},{x:117.86590655470535,y:38.34517819330554,z:0},{x:117.86882058119967,y:38.34244889983429,z:0},{x:117.86729329456051,y:38.34145893789189,z:0},{x:117.86701654440883,y:38.34169905646433,z:0},{x:117.86656055907869,y:38.34153629382473,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.86902915589329,y:38.3425951401954,z:0},{x:117.87106167842562,y:38.34392106132955,z:0},{x:117.87008593217107,y:38.34481415189956,z:0},{x:117.86986253681219,y:38.3446769341973,z:0},{x:117.86917703976755,y:38.34533914493415,z:0},{x:117.86940205428398,y:38.34545857535945,z:0},{x:117.8677574405399,y:38.346918623960846,z:0},{x:117.86663094162189,y:38.346133346892216,z:0},{x:117.86682635826436,y:38.34594327320798,z:0},{x:117.86645929529269,y:38.34568777981497,z:0},{x:117.86614977093319,y:38.34596826395043,z:0},{x:117.86573836332579,y:38.34567770562819,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.86823016126982,y:38.346844086523085,z:0},{x:117.87124314798042,y:38.344044139678005,z:0},{x:117.87133737072949,y:38.344110793316965,z:0},{x:117.87090924004754,y:38.34449796476248,z:0},{x:117.8713892196596,y:38.34479753611029,z:0},{x:117.87180240483774,y:38.34441790906957,z:0},{x:117.87321055093422,y:38.345377336362496,z:0},{x:117.8701872853787,y:38.34814595860006,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.87329673913776,y:38.34551354636448,z:0},{x:117.87455414890536,y:38.34637194801086,z:0},{x:117.8742432525853,y:38.34667602474912,z:0},{x:117.87486871829977,y:38.34709105814816,z:0},{x:117.8720329153131,y:38.349783114529146,z:0},{x:117.87087813174276,y:38.34900063691482,z:0},{x:117.87110362221858,y:38.34877676512501,z:0},{x:117.87077718209997,y:38.34853961199061,z:0},{x:117.87053220594703,y:38.348768904041286,z:0},{x:117.87012461197376,y:38.34851786912223,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.86986816218801,y:38.34887037271366,z:0},{x:117.8699704001193,y:38.34878261317456,z:0},{x:117.87180344632868,y:38.350012122686984,z:0},{x:117.87170930148044,y:38.350101965316206,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.86768679068417,y:38.347411069440525,z:0},{x:117.86779922128216,y:38.34731524788117,z:0},{x:117.86969340864874,y:38.34857720776515,z:0},{x:117.86959414139125,y:38.34868153267223,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.86556165561366,y:38.34597425237283,z:0},{x:117.8656808526308,y:38.34588943367641,z:0},{x:117.86754042158748,y:38.34714172518803,z:0},{x:117.8674414578807,y:38.347223554330526,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.86334485634724,y:38.3444811046772,z:0},{x:117.86345310599866,y:38.3443985191053,z:0},{x:117.86534908688802,y:38.34566230062003,z:0},{x:117.86525260908381,y:38.34576113950065,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.86073970515645,y:38.342732998467866,z:0},{x:117.86083749928912,y:38.34264388042671,z:0},{x:117.86300339208105,y:38.34409553633558,z:0},{x:117.8629076446241,y:38.34418094999644,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.85866014495426,y:38.34133629198991,z:0},{x:117.8587604752267,y:38.34123842265229,z:0},{x:117.86063950213396,y:38.34250007667369,z:0},{x:117.86053813243167,y:38.34259251648632,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.85641267065125,y:38.33982139732212,z:0},{x:117.85651141170374,y:38.339735256311435,z:0},{x:117.85829905642713,y:38.340935191450924,z:0},{x:117.85819349948932,y:38.341016633872336,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.85460945693109,y:38.338623334781744,z:0},{x:117.85471047776154,y:38.33852313015338,z:0},{x:117.85628182941912,y:38.33957107760147,z:0},{x:117.85617998397184,y:38.339662646815114,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.87686556028109,y:38.345011632451204,z:0},{x:117.87711929862877,y:38.34477443140795,z:0},{x:117.87724864843435,y:38.344857037886854,z:0},{x:117.87699836736844,y:38.34509699425457,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.87565607863336,y:38.345581454642826,z:0},{x:117.87605197302264,y:38.34525171138041,z:0},{x:117.87646319427213,y:38.345525283058386,z:0},{x:117.8760932898962,y:38.34587997998694,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.87451304818582,y:38.3446678955116,z:0},{x:117.87495678769048,y:38.34427725160019,z:0},{x:117.87602047945522,y:38.34495687422833,z:0},{x:117.87555280349967,y:38.34537264449862,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.87451304818582,y:38.3446678955116,z:0},{x:117.87495678769048,y:38.34427725160019,z:0},{x:117.87602047945522,y:38.34495687422833,z:0},{x:117.87555280349967,y:38.34537264449862,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.8738536664782,y:38.34535613686397,z:0},{x:117.87403920690262,y:38.34518273010714,z:0},{x:117.87440250391715,y:38.345432621749325,z:0},{x:117.8742215520863,y:38.34558737174513,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),(n={}).position=[{x:117.874810788369,y:38.34600331628417,z:0},{x:117.87511909034848,y:38.34573191348233,z:0},{x:117.87531723492832,y:38.34586005326149,z:0},{x:117.87501958643135,y:38.346147356439985,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",a.push(n),a),blueList:(i=[],(s={}).position=[{x:117.91325558977526,y:38.36025476920507,z:0},{x:117.91330548023888,y:38.360180508658665,z:0},{x:117.91361976882177,y:38.36032104919778,z:0},{x:117.91356450300334,y:38.36039317839677,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.9163331340741,y:38.3616524578054,z:0},{x:117.91638020643315,y:38.36158076026144,z:0},{x:117.91669331346282,y:38.36171793453234,z:0},{x:117.91663737708285,y:38.36178920378701,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.91991748439105,y:38.36326035664355,z:0},{x:117.92005110000643,y:38.36311216916623,z:0},{x:117.92062966832223,y:38.36338079531484,z:0},{x:117.92050791576534,y:38.36353291480075,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.8619964785429,y:38.3379216766005,z:0},{x:117.86210431100764,y:38.337997330776325,z:0},{x:117.86247947149072,y:38.33765863654268,z:0},{x:117.86236627636032,y:38.337585497925794,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.86351394053803,y:38.338974117724064,z:0},{x:117.86355383390844,y:38.33894182547879,z:0},{x:117.86359862603842,y:38.33897274926188,z:0},{x:117.86356171534156,y:38.339003969947726,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.86379454709076,y:38.339334944388106,z:0},{x:117.86386450226023,y:38.33927487687052,z:0},{x:117.86407902198971,y:38.33941715019149,z:0},{x:117.8640076535366,y:38.33947732280894,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.86786157758233,y:38.33835713703668,z:0},{x:117.86792545406873,y:38.33830502874804,z:0},{x:117.86815165606308,y:38.338458423834595,z:0},{x:117.86809197150913,y:38.33851131679826,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.86326168508282,y:38.34384819710376,z:0},{x:117.86351500294757,y:38.343626665073046,z:0},{x:117.863675449368,y:38.34373387387099,z:0},{x:117.86342330824836,y:38.343962264640325,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.86654165792993,y:38.34112013526752,z:0},{x:117.86673073703736,y:38.340946889585595,z:0},{x:117.86677703831937,y:38.340979287693344,z:0},{x:117.86658104186392,y:38.34115754481654,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.86679874320464,y:38.341289785656755,z:0},{x:117.86689972800217,y:38.341199089453255,z:0},{x:117.86697817618207,y:38.341251041307295,z:0},{x:117.86687988828969,y:38.3413440714021,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.86744992045574,y:38.34151166785958,z:0},{x:117.86751356759315,y:38.341447778921854,z:0},{x:117.86761874204421,y:38.341517539273845,z:0},{x:117.86755533231957,y:38.34158232978242,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.86406827922303,y:38.344745703147936,z:0},{x:117.86435127501124,y:38.34448712658407,z:0},{x:117.86487673471588,y:38.34483626549515,z:0},{x:117.86457177802315,y:38.34507220176251,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.8660050759492,y:38.34532117240705,z:0},{x:117.86609933671562,y:38.34523845164009,z:0},{x:117.86618275364624,y:38.345292547832365,z:0},{x:117.86609718344356,y:38.3453765943684,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.86626862576797,y:38.345894012958965,z:0},{x:117.8664155103434,y:38.34576604606121,z:0},{x:117.86675334936689,y:38.34598039391437,z:0},{x:117.86660613976164,y:38.34611524626997,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.8692060125208,y:38.34527607600632,z:0},{x:117.86959900839078,y:38.34492709520245,z:0},{x:117.86977338319149,y:38.34503509190617,z:0},{x:117.86938864542438,y:38.34538622153931,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.87208511069284,y:38.34297540135686,z:0},{x:117.87244876296154,y:38.34263541314112,z:0},{x:117.87259859339771,y:38.34273867195722,z:0},{x:117.8722341153162,y:38.343069085270756,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.87092492963195,y:38.344492271055195,z:0},{x:117.87129206164201,y:38.34414107657493,z:0},{x:117.87172997077454,y:38.3444581514693,z:0},{x:117.87136340318025,y:38.344797673045676,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.8684397021557,y:38.347322573568285,z:0},{x:117.86859056820357,y:38.34718897325597,z:0},{x:117.86896611219784,y:38.34743655809938,z:0},{x:117.86881797811809,y:38.3475788365311,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.87030622431402,y:38.34823524938049,z:0},{x:117.87039389019344,y:38.3481539566366,z:0},{x:117.87046446716435,y:38.34820176429665,z:0},{x:117.8703763898383,y:38.348282859139,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.87060947013003,y:38.348779923419706,z:0},{x:117.87073031979975,y:38.34868107053377,z:0},{x:117.87095088162536,y:38.34882682040834,z:0},{x:117.87084430818292,y:38.34893165534583,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.87500893732442,y:38.34613646271862,z:0},{x:117.87516884316283,y:38.34599135490143,z:0},{x:117.87552884942481,y:38.34623938833904,z:0},{x:117.8753772841502,y:38.34637557067298,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),(s={}).position=[{x:117.8761320906241,y:38.34606114586739,z:0},{x:117.87648775826842,y:38.345737181798455,z:0},{x:117.87663943536609,y:38.345844705404026,z:0},{x:117.87629137895262,y:38.34616438137758,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=35,s.strokeColor="rgba(150,221,15,0.5)",i.push(s),i),wallList:(c=[],(l={}).position=[{x:117.92535294644314,y:38.364284982261594,z:0},{x:117.9248491434382,y:38.3648413920849,z:0},{x:117.92285911706301,y:38.36396961169537,z:0},{x:117.91697357437154,y:38.3721035472611,z:0},{x:117.90236646616391,y:38.36533439173905,z:0},{x:117.90855340915424,y:38.35718494637525,z:0},{x:117.92223545394332,y:38.363410215763295,z:0},{x:117.92261603249077,y:38.36303647919584,z:0},{x:117.92535294644314,y:38.364284982261594,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",c.push(l),(l={}).position=[{x:117.85243532889035,y:38.33917876665945,z:0},{x:117.86003819810276,y:38.332304146559,z:0},{x:117.87826028277252,y:38.34439147684976,z:0},{x:117.87748121539931,y:38.34506254355439,z:0},{x:117.87779296951499,y:38.345239954268,z:0},{x:117.87527303683862,y:38.34745071393718,z:0},{x:117.87944330422428,y:38.349420320982766,z:0},{x:117.8769027964796,y:38.35277636593639,z:0},{x:117.87206291446817,y:38.350448063776966,z:0},{x:117.87099326709574,y:38.35134213583073,z:0},{x:117.85243532889035,y:38.33917876665945,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",c.push(l),c)}}r.r(t),r.d(t,{default:()=>o})},5508(e,t,r){"use strict";function o(){var e,t,r,o,a,n,i,s,c,l;return{redList:(e=[],(t={}).position=[{x:119.6486945226887,y:39.93555616569192,z:0},{x:119.64862995554472,y:39.93546555361252,z:0},{x:119.6470134699462,y:39.93505696283068,z:0},{x:119.64694198003833,y:39.93508240839125,z:0},{x:119.6466636756085,y:39.93571173290861,z:0},{x:119.64670455527002,y:39.93576338117595,z:0},{x:119.6475320168227,y:39.935976533009416,z:0},{x:119.64721444349487,y:39.936719162617536,z:0},{x:119.64731980833446,y:39.936866034752896,z:0},{x:119.64800426782426,y:39.93703909711747,z:0},{x:119.64810143100652,y:39.93700064544422,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="035958e685cf4850bc40151c5e0617a6",e.push(t),(t={}).position=[{x:119.6548772761119,y:39.9228850546199,z:0},{x:119.6549125967219,y:39.92286731494369,z:0},{x:119.65497096427545,y:39.922933402109514,z:0},{x:119.65493776234975,y:39.92295125991992,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=25,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="035958e685cf4850bc40151c5e0617a6",e.push(t),(t={}).position=[{x:119.65506369371285,y:39.9227520420715,z:0},{x:119.65510818987268,y:39.922729588534686,z:0},{x:119.65520833890304,y:39.92284340776944,z:0},{x:119.65516338661685,y:39.92286362798783,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=25,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="035958e685cf4850bc40151c5e0617a6",e.push(t),(t={}).position=[{x:119.6565021981373,y:39.918832492153136,z:0},{x:119.65654401151377,y:39.91880960679385,z:0},{x:119.6566664834134,y:39.91894381878896,z:0},{x:119.65662600912985,y:39.91896758959424,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=25,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="035958e685cf4850bc40151c5e0617a6",e.push(t),(t={}).position=[{x:119.65801022407018,y:39.92099380005817,z:0},{x:119.65804082529935,y:39.920996952073665,z:0},{x:119.65802283088775,y:39.92111115010375,z:0},{x:119.65798913168946,y:39.9211076724514,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=25,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="035958e685cf4850bc40151c5e0617a6",e.push(t),(t={}).position=[{x:119.65498638926476,y:39.926397038103964,z:0},{x:119.65502240542675,y:39.92640438036451,z:0},{x:119.65501028634046,y:39.926430940578065,z:0},{x:119.6549759532365,y:39.9264222196015,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=25,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="035958e685cf4850bc40151c5e0617a6",e.push(t),(t={}).position=[{x:119.65561789159023,y:39.92492824969205,z:0},{x:119.65565318560465,y:39.92493632169607,z:0},{x:119.65561280131601,y:39.92503467754043,z:0},{x:119.65557594381741,y:39.925024892659515,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=25,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="035958e685cf4850bc40151c5e0617a6",e.push(t),(t={}).position=[{x:119.64369001437781,y:39.93439612990726,z:0},{x:119.64390473650064,y:39.934240443307814,z:0},{x:119.64557611692629,y:39.935638407235025,z:0},{x:119.64536213220937,y:39.93579094370623,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfo_id="035958e685cf4850bc40151c5e0617a6",e.push(t),(t={}).position=[{x:119.64477092906279,y:39.934375349988166,z:0},{x:119.6447347731601,y:39.93429019600903,z:0},{x:119.64518326712975,y:39.93417074928574,z:0},{x:119.64522090780012,y:39.93425247775267,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=15,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="035958e685cf4850bc40151c5e0617a6",e.push(t),(t={}).position=[{x:119.65099726664901,y:39.9367402194503,z:0},{x:119.64884417479331,y:39.93617886989452,z:0},{x:119.64840458210918,y:39.93719434071025,z:0},{x:119.64906434716885,y:39.93736309489783,z:0},{x:119.64909172292334,y:39.93729491861605,z:0},{x:119.65059293036353,y:39.937678313516464,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="035958e685cf4850bc40151c5e0617a6",e.push(t),(t={}).position=[{x:119.65533647986926,y:39.9350070588947,z:0},{x:119.65453738696962,y:39.93480127296102,z:0},{x:119.65443811783726,y:39.93485489611567,z:0},{x:119.65421014801716,y:39.9353837006808,z:0},{x:119.65507938826796,y:39.93560697962,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="035958e685cf4850bc40151c5e0617a6",e.push(t),(t={}).position=[{x:119.677191724312,y:39.925088036101464,z:0},{x:119.67718868258363,y:39.92534425185962,z:0},{x:119.67692675405378,y:39.92534402308467,z:0},{x:119.6769246651077,y:39.92508640502281,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.67692924079239,y:39.9261531813032,z:0},{x:119.67693304196516,y:39.92600287397723,z:0},{x:119.67718830899688,y:39.926003709110866,z:0},{x:119.6771926015224,y:39.92603986169516,z:0},{x:119.67743084258446,y:39.926034844485905,z:0},{x:119.67742294267498,y:39.92615262958103,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=20.3,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.6769192251826,y:39.927508455366926,z:0},{x:119.67692667004358,y:39.92735021497659,z:0},{x:119.67718193839484,y:39.92735256023288,z:0},{x:119.67718792112694,y:39.92739259336539,z:0},{x:119.67744773162278,y:39.92739952491828,z:0},{x:119.67744365825635,y:39.92751629241874,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=20.3,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.67691987690353,y:39.92885311000832,z:0},{x:119.67692053146415,y:39.92870563844627,z:0},{x:119.67717598500631,y:39.92870907823613,z:0},{x:119.67718143268654,y:39.92874726958381,z:0},{x:119.67741023685986,y:39.92876064020507,z:0},{x:119.67740961697758,y:39.928855855248244,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=20,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.676914873818,y:39.930209906225315,z:0},{x:119.67691597166966,y:39.93005614193678,z:0},{x:119.67717166902486,y:39.93005891249934,z:0},{x:119.67717604024105,y:39.93010307850571,z:0},{x:119.67741875929421,y:39.93010258843805,z:0},{x:119.67741303643459,y:39.93021501951944,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=20,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.67690737608618,y:39.93155745043743,z:0},{x:119.67740698370083,y:39.93155801170299,z:0},{x:119.67740388211654,y:39.931443134860075,z:0},{x:119.6771666493049,y:39.931442007119806,z:0},{x:119.67716659516242,y:39.931407425517854,z:0},{x:119.67690965615199,y:39.93140478358611,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=20,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.6761718489625,y:39.945322985852535,z:0},{x:119.67617416167968,y:39.94483679141097,z:0},{x:119.67676867789409,y:39.94483766330852,z:0},{x:119.67676659912198,y:39.94532749118471,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=23,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.69061655951064,y:39.92543174264159,z:0},{x:119.69061999303051,y:39.925515895933096,z:0},{x:119.69034943903254,y:39.92551872476649,z:0},{x:119.6903466781555,y:39.925429807696936,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=22,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.6906081253628,y:39.92689468233478,z:0},{x:119.69060596330297,y:39.926768513870805,z:0},{x:119.69021769774592,y:39.926770830003235,z:0},{x:119.69022400266276,y:39.926896032287125,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=26,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.69057771473288,y:39.92812742038241,z:0},{x:119.69058119595852,y:39.928233899424676,z:0},{x:119.69021364225141,y:39.928237473144264,z:0},{x:119.69022044979891,y:39.928121906503065,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=26,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.69057892241503,y:39.92948046604163,z:0},{x:119.69057331114419,y:39.92958619495383,z:0},{x:119.69019367486003,y:39.92958273936576,z:0},{x:119.69019695762542,y:39.92947422528157,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=26,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.69057001371608,y:39.93083016647252,z:0},{x:119.69056628953834,y:39.93093734602311,z:0},{x:119.69020790920716,y:39.930933565195375,z:0},{x:119.69021012715385,y:39.93081979698196,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=26,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.69056050126454,y:39.932180265378655,z:0},{x:119.69056058524151,y:39.93228661780497,z:0},{x:119.69019530530505,y:39.93229065406837,z:0},{x:119.69019562306885,y:39.9321753700825,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=27,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.69047882188929,y:39.94261006346534,z:0},{x:119.69026405595869,y:39.942608891611066,z:0},{x:119.69027118715724,y:39.94232004865013,z:0},{x:119.69047840198404,y:39.94232110679712,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.6803189363715,y:39.94241103956289,z:0},{x:119.68031713019577,y:39.94255590144208,z:0},{x:119.67996628736623,y:39.94255241277278,z:0},{x:119.67997872215817,y:39.94240527344419,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=25,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.68018484948698,y:39.94489072604685,z:0},{x:119.68018205206272,y:39.9452835903766,z:0},{x:119.68004555111678,y:39.94528483140071,z:0},{x:119.68004535464644,y:39.94513046681146,z:0},{x:119.6799954556373,y:39.945127432983284,z:0},{x:119.68000108317712,y:39.944890106085744,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=36,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.68055903767895,y:39.92548902663449,z:0},{x:119.68055200706661,y:39.925413256958976,z:0},{x:119.68182534368239,y:39.925410942849275,z:0},{x:119.68182241011193,y:39.92548854252134,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=31,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.68457920711599,y:39.926757113354455,z:0},{x:119.6845865610169,y:39.92685236226703,z:0},{x:119.68383969124048,y:39.92685552498295,z:0},{x:119.68384187139044,y:39.92675180649747,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=31,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.68232697523467,y:39.9280987280073,z:0},{x:119.68232104677028,y:39.928202206490944,z:0},{x:119.68104671944671,y:39.92819860503854,z:0},{x:119.68105214943749,y:39.92809413774571,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=31,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.6817404057598,y:39.929446777432524,z:0},{x:119.68173495570505,y:39.92953961281392,z:0},{x:119.68049286649607,y:39.929538582226854,z:0},{x:119.68049723169445,y:39.92944265243883,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=31,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.68397568145262,y:39.93080450052339,z:0},{x:119.68397143292034,y:39.930907152119644,z:0},{x:119.68271523088518,y:39.93090448613725,z:0},{x:119.68272117937599,y:39.93080171666117,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=31,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.6889929339012,y:39.93217714216805,z:0},{x:119.68899581940671,y:39.932269170486926,z:0},{x:119.6877475135919,y:39.93226670361446,z:0},{x:119.68774410176572,y:39.9321641132751,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=31,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.67942974389926,y:39.92604911043324,z:0},{x:119.67944271983822,y:39.92618628603757,z:0},{x:119.67839441051271,y:39.92618138836684,z:0},{x:119.67838278974727,y:39.92604826794982,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=37,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.68941424519329,y:39.92607682660748,z:0},{x:119.68942571956826,y:39.92620620731446,z:0},{x:119.68840952543647,y:39.92620650871111,z:0},{x:119.68839540451951,y:39.92607567060816,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=35,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.68097691781342,y:39.92740619154202,z:0},{x:119.6809796158669,y:39.92753623051253,z:0},{x:119.68193364756485,y:39.927538487585636,z:0},{x:119.68193756612254,y:39.927406602949205,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=35,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.68778574933756,y:39.92742228373021,z:0},{x:119.68778362125204,y:39.92755302640718,z:0},{x:119.68686415268087,y:39.927551902640154,z:0},{x:119.68686626687582,y:39.92742222240125,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=35,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.68096781070412,y:39.92875618740309,z:0},{x:119.68097167266359,y:39.92888657991112,z:0},{x:119.68190204653577,y:39.92888793523994,z:0},{x:119.6819030356954,y:39.92875827923154,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=37,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.6866185014249,y:39.92877101340245,z:0},{x:119.68661538524523,y:39.928902113930626,z:0},{x:119.68765287317912,y:39.92890360907251,z:0},{x:119.68766112807862,y:39.928772056603314,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=35,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.6833466574443,y:39.93024338658369,z:0},{x:119.68334803959182,y:39.930113459613075,z:0},{x:119.68430101741018,y:39.93011610484242,z:0},{x:119.68429071144864,y:39.93024599317262,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=37,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.68759698485809,y:39.93012236410278,z:0},{x:119.68761185266975,y:39.93025275725586,z:0},{x:119.68655345446628,y:39.93025082609281,z:0},{x:119.68655106382458,y:39.9301205305376,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=35,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.67855583726117,y:39.93158053754484,z:0},{x:119.67855435264649,y:39.931450943319426,z:0},{x:119.6795510334915,y:39.9314546233923,z:0},{x:119.67954450714343,y:39.93158423201546,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=35,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.68819240114007,y:39.93160663393463,z:0},{x:119.688198406917,y:39.93147709549304,z:0},{x:119.68890095834664,y:39.93147876715583,z:0},{x:119.68890123748713,y:39.93160667152368,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=35,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.67719198862997,y:39.92330728839942,z:0},{x:119.67719536469687,y:39.923692987232144,z:0},{x:119.67690211123008,y:39.92370404408877,z:0},{x:119.67690107864394,y:39.92329969258321,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=51.5,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.67720919577268,y:39.92016332440175,z:0},{x:119.67720813606387,y:39.92060161894261,z:0},{x:119.67690813624685,y:39.92059839913164,z:0},{x:119.6769141006385,y:39.92015607953691,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=57,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.67722770464404,y:39.91663225276389,z:0},{x:119.67722070282049,y:39.91730898581202,z:0},{x:119.67692646110551,y:39.917305705376094,z:0},{x:119.67693018047547,y:39.91663309382849,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=37,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.67723537764458,y:39.914491508570904,z:0},{x:119.67723264459404,y:39.91508525674071,z:0},{x:119.67693674263798,y:39.915083647409965,z:0},{x:119.67694279039802,y:39.914487756848025,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=40,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",e.push(t),(t={}).position=[{x:119.63717817432094,y:39.93315552601659,z:0},{x:119.63701636477654,y:39.93303554969879,z:0},{x:119.63722633603182,y:39.93286927216661,z:0},{x:119.63738481210976,y:39.932988249843035,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64309006998202,y:39.93758391135571,z:0},{x:119.64322113322135,y:39.937485130676855,z:0},{x:119.64312983672762,y:39.937413479013735,z:0},{x:119.64300460464773,y:39.93751097481993,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64383146075052,y:39.9370234017959,z:0},{x:119.64373776836887,y:39.9369457938275,z:0},{x:119.64383050840227,y:39.93687588918361,z:0},{x:119.64392469012168,y:39.9369537358937,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.63868192099072,y:39.933059354005586,z:0},{x:119.63856483960558,y:39.93298199854045,z:0},{x:119.63866849205078,y:39.93290723922554,z:0},{x:119.63877800091889,y:39.93299681241285,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.63917312239374,y:39.93260237759178,z:0},{x:119.63898863438887,y:39.93244408022793,z:0},{x:119.6391252925911,y:39.9323566243107,z:0},{x:119.63930465554829,y:39.93250592423885,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64092316316989,y:39.934242361507934,z:0},{x:119.64043199680837,y:39.93382146026002,z:0},{x:119.64078601988375,y:39.93357042859219,z:0},{x:119.64127865739506,y:39.93399838360915,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64064230487544,y:39.93315589612173,z:0},{x:119.6404184384381,y:39.932964794021764,z:0},{x:119.6406740208475,y:39.93277931127462,z:0},{x:119.64090526049007,y:39.93297224859374,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64133835460314,y:39.933180793466626,z:0},{x:119.64099991911094,y:39.93288052110378,z:0},{x:119.64132470961364,y:39.93263276815165,z:0},{x:119.64168298507907,y:39.93293480741707,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64493532944692,y:39.9333481878778,z:0},{x:119.64478452697168,y:39.93328374996364,z:0},{x:119.64489454412818,y:39.93313250745123,z:0},{x:119.6450345835816,y:39.933186495160484,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64362347875914,y:39.93279389812886,z:0},{x:119.64346860034652,y:39.93272613307477,z:0},{x:119.64354726680003,y:39.932597563106604,z:0},{x:119.64371433449139,y:39.932663966601766,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.6400724905418,y:39.93128959144737,z:0},{x:119.63972715784142,y:39.93113931766348,z:0},{x:119.63983800877452,y:39.9309857277459,z:0},{x:119.64018647122845,y:39.931132334470284,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.63932904662096,y:39.93099824962342,z:0},{x:119.63916717549408,y:39.93092792596586,z:0},{x:119.63929420046532,y:39.9307620935155,z:0},{x:119.63944887678493,y:39.930826572757745,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.63869279179106,y:39.930720301017836,z:0},{x:119.63837240526415,y:39.93058386820547,z:0},{x:119.6384709601394,y:39.93043885689938,z:0},{x:119.6387700567435,y:39.93058109853783,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.63801590186786,y:39.930444344506775,z:0},{x:119.63769087411517,y:39.93030400949182,z:0},{x:119.63777727409698,y:39.93016131843035,z:0},{x:119.63809340192994,y:39.93030087125381,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.63729216297342,y:39.930135773823146,z:0},{x:119.63717019660005,y:39.93008644628659,z:0},{x:119.63730370768285,y:39.92989635357973,z:0},{x:119.63741813281274,y:39.929950222907706,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64601342160235,y:39.9331215073377,z:0},{x:119.64573796958105,y:39.93299344915406,z:0},{x:119.64625844655171,y:39.93224739594147,z:0},{x:119.64652570142854,y:39.93240492884099,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64597802582225,y:39.93191227065512,z:0},{x:119.6457815673842,y:39.93180759499427,z:0},{x:119.6463540901865,y:39.93097468238748,z:0},{x:119.64652899374558,y:39.93107159819699,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64538202632461,y:39.93162842465452,z:0},{x:119.64512741164401,y:39.931489476722355,z:0},{x:119.64571465294492,y:39.93065446723399,z:0},{x:119.64590483920256,y:39.930760413244734,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64769970005253,y:39.92827443750849,z:0},{x:119.64741651267887,y:39.92812876546028,z:0},{x:119.64781728631846,y:39.92743696260709,z:0},{x:119.64813138513733,y:39.92759173136771,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64502573383217,y:39.9306412618601,z:0},{x:119.6449212129374,y:39.93059592943096,z:0},{x:119.64548661680894,y:39.929767408015714,z:0},{x:119.64561333891102,y:39.92983148028978,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.6458047353909,y:39.92867238394936,z:0},{x:119.64564416620522,y:39.92858136121738,z:0},{x:119.64593901425167,y:39.92806745903801,z:0},{x:119.64612235675959,y:39.92816369707117,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64522857992004,y:39.92861405216181,z:0},{x:119.64514114118928,y:39.928587120205755,z:0},{x:119.6454991766114,y:39.928055323937464,z:0},{x:119.6455899509187,y:39.92809546837523,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64534140876192,y:39.92774629202338,z:0},{x:119.64515047641558,y:39.92764065976808,z:0},{x:119.64549332135012,y:39.9271138666658,z:0},{x:119.64567702905155,y:39.92723404414447,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.6444691963664,y:39.92809690897997,z:0},{x:119.64437170974276,y:39.928058907275314,z:0},{x:119.6447631337164,y:39.92749756904097,z:0},{x:119.64486245076326,y:39.92754793176648,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64344519660449,y:39.928560597391304,z:0},{x:119.64371330655207,y:39.928206077718386,z:0},{x:119.64392992073647,y:39.92829419773208,z:0},{x:119.64365350379529,y:39.92864888425743,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64256469086227,y:39.929238443669156,z:0},{x:119.64246950726164,y:39.929199896414985,z:0},{x:119.64284625557808,y:39.928659007408854,z:0},{x:119.64294048154088,y:39.92870110395613,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64263565535624,y:39.92836351568634,z:0},{x:119.64252086828387,y:39.928319666821686,z:0},{x:119.64284336814468,y:39.92784614367051,z:0},{x:119.64296075444369,y:39.9278894426127,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64077666793786,y:39.930203091516226,z:0},{x:119.64060882069232,y:39.93014996668138,z:0},{x:119.64118817831375,y:39.92929878580564,z:0},{x:119.64134897678913,y:39.9293699208972,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.6398980583436,y:39.93021424429026,z:0},{x:119.63974085390853,y:39.930165791914526,z:0},{x:119.64032141414243,y:39.929337816097075,z:0},{x:119.64047640913728,y:39.929407174607235,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64266004388863,y:39.926276275200884,z:0},{x:119.64251215413196,y:39.926496725012846,z:0},{x:119.64232847825997,y:39.92641490660097,z:0},{x:119.64199855310564,y:39.926568759185265,z:0},{x:119.64195816580897,y:39.926478331075636,z:0},{x:119.64288741557029,y:39.92607396099376,z:0},{x:119.64295835644164,y:39.92617174400811,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.63917809582115,y:39.92996559278269,z:0},{x:119.63905766970304,y:39.92991602253902,z:0},{x:119.63969991150691,y:39.92899476911833,z:0},{x:119.63981711593776,y:39.929051483431536,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.63890654297103,y:39.92910194338643,z:0},{x:119.63875858771415,y:39.929047567806634,z:0},{x:119.63929067270693,y:39.92827874321235,z:0},{x:119.63944419182701,y:39.928337962089515,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.6409185447528,y:39.92623731689618,z:0},{x:119.6407606521538,y:39.92617142869614,z:0},{x:119.64106141394656,y:39.925757663445445,z:0},{x:119.6412019015453,y:39.92582255209906,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.63772034932575,y:39.929551498904814,z:0},{x:119.63759348274841,y:39.92949826886004,z:0},{x:119.63815644183582,y:39.92864875303301,z:0},{x:119.6383059688919,y:39.928699657476024,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.6501107635655,y:39.92793848425576,z:0},{x:119.65018508750816,y:39.92782349311223,z:0},{x:119.65004857902255,y:39.927768860481606,z:0},{x:119.64997558789446,y:39.927872487157416,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.65000603133967,y:39.92809448598948,z:0},{x:119.65006998719007,y:39.927998648271064,z:0},{x:119.64993853582459,y:39.92794156551734,z:0},{x:119.6498709562194,y:39.92803478765225,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.6495690017353,y:39.927928246020365,z:0},{x:119.6494693374337,y:39.927881308880615,z:0},{x:119.64953991294415,y:39.927780806538486,z:0},{x:119.64963924698627,y:39.92782544362875,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64824012850352,y:39.927358957289336,z:0},{x:119.64810773256032,y:39.92730005712327,z:0},{x:119.64818948004152,y:39.92718095802759,z:0},{x:119.64832338351118,y:39.92723706380837,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64704324025969,y:39.92699748568017,z:0},{x:119.64655590751258,y:39.926802550944444,z:0},{x:119.64677339530343,y:39.926522169695176,z:0},{x:119.64723272216747,y:39.926714509562046,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.6465681771971,y:39.92748754482786,z:0},{x:119.64649102652072,y:39.9274540166949,z:0},{x:119.64654044890965,y:39.92737795876212,z:0},{x:119.64662045488193,y:39.92740850886823,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64584636733753,y:39.926917713671855,z:0},{x:119.64577054592634,y:39.92687891030883,z:0},{x:119.64582373314587,y:39.926792301317505,z:0},{x:119.64590839219001,y:39.92682791237009,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64509855881926,y:39.926490555405216,z:0},{x:119.6449680547532,y:39.926440623722684,z:0},{x:119.64504594307158,y:39.92632672531065,z:0},{x:119.64518815452249,y:39.92638988266031,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64430265681335,y:39.92613060451727,z:0},{x:119.64409642129195,y:39.92604899081121,z:0},{x:119.64415751771882,y:39.92595619978346,z:0},{x:119.64435822597822,y:39.92605035565569,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64309010477515,y:39.925747552682765,z:0},{x:119.64274878565747,y:39.92559651231917,z:0},{x:119.64279660740655,y:39.92551292316686,z:0},{x:119.64316321836954,y:39.925671437388445,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64163172522993,y:39.9251910881601,z:0},{x:119.64149978307822,y:39.925131749244855,z:0},{x:119.64158213300941,y:39.92501050283947,z:0},{x:119.6417142665405,y:39.92507249873975,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64199853296611,y:39.924707573225476,z:0},{x:119.64174194805229,y:39.924584938715675,z:0},{x:119.64188966434673,y:39.92437390271393,z:0},{x:119.64216081542922,y:39.92449716155192,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.63966223422874,y:39.935821485547,z:0},{x:119.63938930918349,y:39.935605873143594,z:0},{x:119.63943507663022,y:39.93556278822379,z:0},{x:119.63955040579637,y:39.93564661768396,z:0},{x:119.64003954504068,y:39.93523611130654,z:0},{x:119.63990933378177,y:39.93514738695409,z:0},{x:119.6400073454649,y:39.93508064968807,z:0},{x:119.64032461776753,y:39.93534791720236,z:0},{x:119.64021222942935,y:39.935428875487176,z:0},{x:119.64013211762841,y:39.935344159917214,z:0},{x:119.63963888512448,y:39.93573436334209,z:0},{x:119.6397027109911,y:39.935782784483656,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.63995231495497,y:39.935221670610936,z:0},{x:119.63963129505116,y:39.93497512696517,z:0},{x:119.63972239648577,y:39.934888087795535,z:0},{x:119.64002579201187,y:39.93514150263576,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.63978726663551,y:39.93400486220813,z:0},{x:119.6401459714321,y:39.934302777950464,z:0},{x:119.64008673317569,y:39.93433781854,z:0},{x:119.640039293572,y:39.93429388590033,z:0},{x:119.63955903262557,y:39.93467409670173,z:0},{x:119.63962471001733,y:39.93472387288219,z:0},{x:119.6395270776524,y:39.93479110684315,z:0},{x:119.63922377742821,y:39.9345525013375,z:0},{x:119.63930228765366,y:39.93446910011658,z:0},{x:119.63945212910147,y:39.93458795602655,z:0},{x:119.63991842789093,y:39.93419957620284,z:0},{x:119.63972911458181,y:39.93405087586348,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.63923982265261,y:39.93456689187178,z:0},{x:119.6389335008154,y:39.93433138715213,z:0},{x:119.63901940397332,y:39.93425963199186,z:0},{x:119.63933439091765,y:39.93449673470659,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",e.push(t),(t={}).position=[{x:119.6485130470308,y:39.92734864868424,z:0},{x:119.6487591389055,y:39.92698040061378,z:0},{x:119.64938885022777,y:39.92727009727881,z:0},{x:119.64916238195713,y:39.927627513369266,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.6468299332701,y:39.92662081480832,z:0},{x:119.64692539111608,y:39.92647693365613,z:0},{x:119.64658916089293,y:39.92633237805585,z:0},{x:119.64650783203956,y:39.92642252678614,z:0},{x:119.64655773188318,y:39.926442019141554,z:0},{x:119.6465623436714,y:39.92644356805706,z:0},{x:119.64644489736834,y:39.92661218751224,z:0},{x:119.64652446735664,y:39.9266453823288,z:0},{x:119.64659470715654,y:39.926516890190854,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64582588535177,y:39.925994757072594,z:0},{x:119.64572279723144,y:39.926099382479656,z:0},{x:119.64612310007908,y:39.9262673820944,z:0},{x:119.64620657859196,y:39.92615659018899,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64350745838702,y:39.92504214885385,z:0},{x:119.6433106260609,y:39.925316496915485,z:0},{x:119.64378077651662,y:39.925498772168865,z:0},{x:119.64395834204231,y:39.92521944707684,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64299168975069,y:39.92522289603178,z:0},{x:119.64241796501042,y:39.924987208247124,z:0},{x:119.64260959948555,y:39.92466534148793,z:0},{x:119.64319536646471,y:39.92490547927229,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64255371570886,y:39.9234228297287,z:0},{x:119.64280361771588,y:39.92305298587594,z:0},{x:119.64338970628604,y:39.92329041451105,z:0},{x:119.643022433718,y:39.923757504458216,z:0},{x:119.6424739915125,y:39.923531950700124,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64389571797398,y:39.92166732713091,z:0},{x:119.64442883040668,y:39.9209076026962,z:0},{x:119.64462909043634,y:39.92099104120312,z:0},{x:119.64407528593298,y:39.9217516757033,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.6466243597686,y:39.927121214426585,z:0},{x:119.64633329847771,y:39.927006762130375,z:0},{x:119.64647988274851,y:39.92678851894023,z:0},{x:119.64677843086355,y:39.926908036852865,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=35,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.64658660450311,y:39.9273144081299,z:0},{x:119.64648192272821,y:39.92726702700651,z:0},{x:119.6465861270864,y:39.92711518894924,z:0},{x:119.64669147943478,y:39.927157556805426,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="17973964c87346e7a4a737cf252557d9",e.push(t),(t={}).position=[{x:119.67701504813962,y:39.943717091646604,z:0},{x:119.67702964088433,y:39.94335909167368,z:0},{x:119.67782405155486,y:39.943354703241056,z:0},{x:119.67781556414559,y:39.943723775934494,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.67465404026701,y:39.94371839567233,z:0},{x:119.6746512873807,y:39.94332611181681,z:0},{x:119.67502632434825,y:39.94330972203424,z:0},{x:119.67499453825363,y:39.943708740433095,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.67469640500812,y:39.94235405543165,z:0},{x:119.67470472678338,y:39.942233186733084,z:0},{x:119.67494936772778,y:39.942233983772674,z:0},{x:119.67494370314641,y:39.94235188894945,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.6746820718911,y:39.94171585996868,z:0},{x:119.67468005429865,y:39.94158439787692,z:0},{x:119.67491118722312,y:39.94158560044312,z:0},{x:119.67490609710258,y:39.9417169439379,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.67469683386793,y:39.94110773979945,z:0},{x:119.67469886767302,y:39.94099419568185,z:0},{x:119.67493312321375,y:39.94099889219312,z:0},{x:119.67492770588991,y:39.94111108023443,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.67466686448526,y:39.940484507750654,z:0},{x:119.67466535260559,y:39.94034914650905,z:0},{x:119.67488194959645,y:39.94035488412095,z:0},{x:119.67486981928474,y:39.9404810397304,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.67465798719898,y:39.93995883270384,z:0},{x:119.67465907812533,y:39.939868180425584,z:0},{x:119.67488331420499,y:39.93986433206186,z:0},{x:119.67488321028543,y:39.93996413727262,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.67465772247898,y:39.939859938359966,z:0},{x:119.67466957619865,y:39.93975993510844,z:0},{x:119.67488233187498,y:39.93975531852617,z:0},{x:119.67487832580609,y:39.939860771303046,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.67465152481329,y:39.938942703676034,z:0},{x:119.67465474549161,y:39.93873324981661,z:0},{x:119.67489363940066,y:39.938728337482836,z:0},{x:119.67489082128958,y:39.93894621123335,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.67463115154827,y:39.931134029896775,z:0},{x:119.6746600666005,y:39.93094727071715,z:0},{x:119.67492089822294,y:39.93093689783161,z:0},{x:119.67491973272308,y:39.93114149788042,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.67227236488439,y:39.927823418837754,z:0},{x:119.67264236557499,y:39.928265402103726,z:0},{x:119.67199383579518,y:39.928567453783515,z:0},{x:119.67168470457024,y:39.928135521542714,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.67077813829607,y:39.92623747236208,z:0},{x:119.67038995295879,y:39.92643775164406,z:0},{x:119.66995069679976,y:39.92596807758603,z:0},{x:119.67034441379914,y:39.92575881236237,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.66902650747598,y:39.924917908104945,z:0},{x:119.66940879786218,y:39.924715175511665,z:0},{x:119.6696142050935,y:39.92492093272576,z:0},{x:119.66947718361381,y:39.924983015050294,z:0},{x:119.66970827153831,y:39.92523780021682,z:0},{x:119.66944447687517,y:39.92537129562583,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.68038917890358,y:39.94237518029577,z:0},{x:119.68040917264702,y:39.94225733145671,z:0},{x:119.68131829018525,y:39.94226491421408,z:0},{x:119.68131137576925,y:39.942380319740096,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.68641321761177,y:39.94246263897148,z:0},{x:119.68644633180425,y:39.942149628051546,z:0},{x:119.68736677941625,y:39.94217304149907,z:0},{x:119.68742089071831,y:39.942445927031144,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.68273236222396,y:39.941770112644726,z:0},{x:119.68231095481703,y:39.94176766885388,z:0},{x:119.68231168869048,y:39.94163893999718,z:0},{x:119.68282837473687,y:39.94164761124015,z:0},{x:119.6830238826508,y:39.94203540404623,z:0},{x:119.68292845435968,y:39.94205138094646,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.67819838242468,y:39.94114400788611,z:0},{x:119.67904613328298,y:39.94071827838485,z:0},{x:119.67917082555476,y:39.940820927816695,z:0},{x:119.67841465465878,y:39.941304931378156,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.68547554548819,y:39.941141546052684,z:0},{x:119.6854827146252,y:39.94105164434355,z:0},{x:119.68609810023396,y:39.94105663930586,z:0},{x:119.68608794274695,y:39.94114635426501,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.68575423940722,y:39.94051624740637,z:0},{x:119.68574973219646,y:39.94042258842727,z:0},{x:119.6864938256215,y:39.9404192715653,z:0},{x:119.68649137623832,y:39.94051613478864,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.67818195768099,y:39.93988056687641,z:0},{x:119.67817519128077,y:39.939758700544864,z:0},{x:119.67878129150613,y:39.93975926475943,z:0},{x:119.67878527749654,y:39.93988277077734,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.68553025229927,y:39.93990328333673,z:0},{x:119.68551341947911,y:39.93976377648998,z:0},{x:119.68646281430738,y:39.93976149371394,z:0},{x:119.68645713336396,y:39.939909316484105,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.68789350567005,y:39.939933796307656,z:0},{x:119.68789270670973,y:39.93979660336521,z:0},{x:119.68815383508897,y:39.93979369906606,z:0},{x:119.68813242973388,y:39.93992720877464,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.68909200942227,y:39.93991685415341,z:0},{x:119.68909252727012,y:39.9397934026653,z:0},{x:119.68933904968158,y:39.93978922313802,z:0},{x:119.68933558430835,y:39.93991555394723,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.68915486400127,y:39.94131448133303,z:0},{x:119.68934206232105,y:39.941312292918084,z:0},{x:119.68934552991264,y:39.94101620055497,z:0},{x:119.689530579544,y:39.940934957617806,z:0},{x:119.68934852989894,y:39.94074918514049,z:0},{x:119.68935000419437,y:39.940663525398435,z:0},{x:119.68929442667817,y:39.94066581898848,z:0},{x:119.68896900994517,y:39.940282203965516,z:0},{x:119.68882319118333,y:39.94035677489968,z:0},{x:119.68915818944082,y:39.94077265664594,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.68911008957376,y:39.94250859528707,z:0},{x:119.68913135179722,y:39.94231611497896,z:0},{x:119.68935129378785,y:39.94231608858122,z:0},{x:119.68931577243058,y:39.942509907615275,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",e.push(t),(t={}).position=[{x:119.67660956376419,y:39.94442912923503,z:0},{x:119.67660554898092,y:39.943906691823045,z:0},{x:119.67756253723763,y:39.94392792221646,z:0},{x:119.67754652185951,y:39.94444346828261,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67400317580822,y:39.94430573597606,z:0},{x:119.67400934087617,y:39.94420769120954,z:0},{x:119.67420068448509,y:39.94421856651504,z:0},{x:119.6741961242351,y:39.94430458307069,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=40,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67400847596492,y:39.94413510178108,z:0},{x:119.67401038566669,y:39.94399005281667,z:0},{x:119.67424771140364,y:39.943991821171096,z:0},{x:119.67424457119584,y:39.94413687898081,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=40,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67403676651486,y:39.93975663231582,z:0},{x:119.67404345915247,y:39.93965097484092,z:0},{x:119.67426252262665,y:39.93964719845338,z:0},{x:119.67424853001826,y:39.93975393180049,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67402118482624,y:39.93919001371798,z:0},{x:119.67402482424671,y:39.93906595546785,z:0},{x:119.67426939924398,y:39.93906769633629,z:0},{x:119.67426474512406,y:39.939187347075254,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67402624352798,y:39.93863661878261,z:0},{x:119.6740267440594,y:39.938540223672064,z:0},{x:119.67425277900601,y:39.9385299776308,z:0},{x:119.67425271973492,y:39.938638202155374,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67401431715481,y:39.93809546232806,z:0},{x:119.67402913221537,y:39.93790647254353,z:0},{x:119.67427092588947,y:39.937898555408715,z:0},{x:119.67427329428615,y:39.93809302915592,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67404537425111,y:39.937551513669895,z:0},{x:119.67404729177099,y:39.937450646692284,z:0},{x:119.67427069129049,y:39.93745517311628,z:0},{x:119.67426303988911,y:39.93755446362416,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67403677319082,y:39.93700354805282,z:0},{x:119.67404731034843,y:39.93679468991879,z:0},{x:119.67429216315544,y:39.936802954550444,z:0},{x:119.67428690041645,y:39.93700360351397,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67404892409934,y:39.93644022015459,z:0},{x:119.6740503912715,y:39.93633282412491,z:0},{x:119.67428375953702,y:39.93633022070547,z:0},{x:119.6742786203865,y:39.93644569416058,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67402376319724,y:39.93578543105586,z:0},{x:119.67403820683849,y:39.9356398231724,z:0},{x:119.67430934848814,y:39.93562873826661,z:0},{x:119.6743041472789,y:39.93578863638341,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.66943439928224,y:39.93226010880479,z:0},{x:119.6697535939246,y:39.93201742926161,z:0},{x:119.6702543965642,y:39.932433591526284,z:0},{x:119.66993751872396,y:39.93266260740998,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.66637634162826,y:39.929534656366044,z:0},{x:119.66721312740573,y:39.930142278553355,z:0},{x:119.66669761480502,y:39.93048185691759,z:0},{x:119.66590584117158,y:39.92986416800892,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.6656362158629,y:39.9293018652455,z:0},{x:119.66609108364584,y:39.92894945499111,z:0},{x:119.66663991052086,y:39.92935480217378,z:0},{x:119.66614709377063,y:39.929700427287365,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.6744559622135,y:39.936946667071055,z:0},{x:119.6744306400386,y:39.936811188743114,z:0},{x:119.674615861672,y:39.936810343932805,z:0},{x:119.67461073871995,y:39.93694598173972,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67438177095269,y:39.9364313121994,z:0},{x:119.67462679733357,y:39.93642701835229,z:0},{x:119.67462588356997,y:39.93653098054998,z:0},{x:119.67437916720615,y:39.936529923239824,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67519587726909,y:39.93656783334116,z:0},{x:119.67520008154692,y:39.9364323100446,z:0},{x:119.6753808448754,y:39.93643555733009,z:0},{x:119.67536819666432,y:39.93656284697798,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67519701005106,y:39.93568819649011,z:0},{x:119.67520308554028,y:39.93548467843968,z:0},{x:119.67535588619944,y:39.935497118895526,z:0},{x:119.6753685705915,y:39.935687245236004,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67647953240372,y:39.93437044694433,z:0},{x:119.6764829162286,y:39.934261700810325,z:0},{x:119.67674076255342,y:39.934258339868286,z:0},{x:119.67673589127587,y:39.93436552210225,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67617326013273,y:39.93489858306133,z:0},{x:119.6763391063244,y:39.934904004458666,z:0},{x:119.67633443703332,y:39.93502846269453,z:0},{x:119.67617523258227,y:39.93503036909895,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67571128771155,y:39.93635451848584,z:0},{x:119.67571781784078,y:39.9361772125634,z:0},{x:119.67612111442092,y:39.936174506525475,z:0},{x:119.67611530376492,y:39.93635537166259,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67502697308599,y:39.9350347037265,z:0},{x:119.67523291747106,y:39.93503929945077,z:0},{x:119.67523501171671,y:39.93514983937584,z:0},{x:119.67503291280849,y:39.935190182795225,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67506401577917,y:39.93024761788446,z:0},{x:119.67507167103328,y:39.93010989050339,z:0},{x:119.6752428013182,y:39.930105428352284,z:0},{x:119.67523692146331,y:39.93024313239307,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67654923532284,y:39.93025255172316,z:0},{x:119.67655285970243,y:39.93011724463257,z:0},{x:119.67672043186995,y:39.93011958042384,z:0},{x:119.67672210031652,y:39.93024679883491,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67690037204612,y:39.92847520575927,z:0},{x:119.67639818382209,y:39.92845988365567,z:0},{x:119.67645754173665,y:39.92899030667508,z:0},{x:119.67689693196448,y:39.92897405363658,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67629711234358,y:39.9247748283553,z:0},{x:119.67684789745458,y:39.924791252447775,z:0},{x:119.67684626266644,y:39.925323034417886,z:0},{x:119.67630704560294,y:39.925307132246736,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.68949501316943,y:39.9398061000438,z:0},{x:119.689488149474,y:39.939703342615985,z:0},{x:119.68980259754655,y:39.93970332026473,z:0},{x:119.68981244161564,y:39.93928859786939,z:0},{x:119.68971018852262,y:39.939285560779524,z:0},{x:119.68974216819758,y:39.93919646915774,z:0},{x:119.69009291012017,y:39.93920099229254,z:0},{x:119.6900831429703,y:39.939292871488455,z:0},{x:119.68993418373182,y:39.93929705432272,z:0},{x:119.68992630211199,y:39.93968117010374,z:0},{x:119.69009684540035,y:39.93968150414071,z:0},{x:119.69009311671422,y:39.93980224328943,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.68249950649984,y:39.93921034574953,z:0},{x:119.68249019551314,y:39.939126032529735,z:0},{x:119.68322481759365,y:39.939128022399636,z:0},{x:119.6833596891742,y:39.9395143547392,z:0},{x:119.68327075296924,y:39.939529922722265,z:0},{x:119.68310336719289,y:39.93921617253326,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67903413209743,y:39.93867726516059,z:0},{x:119.67904612544557,y:39.93856009502595,z:0},{x:119.68015656115492,y:39.93856736286848,z:0},{x:119.68013505556773,y:39.93868161265978,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.68756355492452,y:39.938698230889585,z:0},{x:119.68755855068241,y:39.9385742692483,z:0},{x:119.68910780141196,y:39.9385826763442,z:0},{x:119.68910441585189,y:39.93869661279348,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.68284344060052,y:39.9381246681121,z:0},{x:119.68283230925005,y:39.93802724246244,z:0},{x:119.68370780071437,y:39.93803400604106,z:0},{x:119.68380736873529,y:39.93841966816338,z:0},{x:119.68372897453057,y:39.938442631810865,z:0},{x:119.68357177227784,y:39.93812676833736,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67938019960019,y:39.93760442462739,z:0},{x:119.67936061872634,y:39.937457322940254,z:0},{x:119.68031094210552,y:39.93746496417084,z:0},{x:119.68030490847137,y:39.937607623642904,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.68828907735747,y:39.93760394308958,z:0},{x:119.6882970097044,y:39.93749131383158,z:0},{x:119.68853705367216,y:39.93748502770907,z:0},{x:119.68846720229791,y:39.937414800410444,z:0},{x:119.68858745500069,y:39.937354222505924,z:0},{x:119.68872945064177,y:39.937484491201296,z:0},{x:119.6888740746485,y:39.937491663252494,z:0},{x:119.6888791515729,y:39.93761026310671,z:0},{x:119.6888134227378,y:39.93760769718276,z:0},{x:119.68903828751009,y:39.93780108701339,z:0},{x:119.68891417777635,y:39.93782894307455,z:0},{x:119.68871729775027,y:39.93761562450819,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67830865700697,y:39.93703307469121,z:0},{x:119.67830094478873,y:39.9369294901895,z:0},{x:119.67924697189473,y:39.93692949041037,z:0},{x:119.679227347839,y:39.93703828408677,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.689510649956,y:39.936492411766466,z:0},{x:119.68950141086557,y:39.93639096171244,z:0},{x:119.69015904921822,y:39.93638773977947,z:0},{x:119.69015938285443,y:39.93650387809148,z:0},{x:119.68992474676813,y:39.93651419046562,z:0},{x:119.68992034780712,y:39.93689929728897,z:0},{x:119.69007882565305,y:39.93689407698099,z:0},{x:119.69006513673502,y:39.936968796915544,z:0},{x:119.68972174293948,y:39.93697500635176,z:0},{x:119.68972523592285,y:39.93690765512379,z:0},{x:119.68977279306073,y:39.93690694922773,z:0},{x:119.68980295872917,y:39.9364944266091,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67718336201091,y:39.93639527844447,z:0},{x:119.67717926444664,y:39.936217156408055,z:0},{x:119.6783121502563,y:39.93622342737746,z:0},{x:119.6782719710783,y:39.93637871357811,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.68601796535889,y:39.93642605673793,z:0},{x:119.68600491016397,y:39.936242955148586,z:0},{x:119.68712375245994,y:39.93623940479041,z:0},{x:119.68711081866104,y:39.93641994177721,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.67854207591421,y:39.93569918450616,z:0},{x:119.67853714343539,y:39.93558118672129,z:0},{x:119.67937597852679,y:39.935584054074624,z:0},{x:119.67960902548438,y:39.93525243454677,z:0},{x:119.67969216178331,y:39.935283427717366,z:0},{x:119.67947725998162,y:39.935583893055764,z:0},{x:119.68057298085208,y:39.93558528976653,z:0},{x:119.68058935368954,y:39.93570620908414,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.68382245110539,y:39.93507464030019,z:0},{x:119.68383279780095,y:39.93491632526437,z:0},{x:119.6849399742013,y:39.93492111715347,z:0},{x:119.684920862424,y:39.935072054756006,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.6870266866767,y:39.93507928044716,z:0},{x:119.6870154347449,y:39.93492777308859,z:0},{x:119.68812805928692,y:39.934931211854796,z:0},{x:119.68811489539902,y:39.935079308783656,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.68626914074225,y:39.93440846794222,z:0},{x:119.68626432190091,y:39.934286416640816,z:0},{x:119.68755955226625,y:39.93428980196584,z:0},{x:119.68754292730897,y:39.9344133995197,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.57794837868383,y:39.90621610081117,z:0},{x:119.57797714561272,y:39.906023341910924,z:0},{x:119.57890401143706,y:39.90610766963662,z:0},{x:119.57887749938368,y:39.90629634978285,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.57777004412755,y:39.90784077369518,z:0},{x:119.57779288204951,y:39.90764400321004,z:0},{x:119.57867375889064,y:39.9076962756994,z:0},{x:119.57863280141595,y:39.907898080365925,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.58178629388196,y:39.90688194009999,z:0},{x:119.58139150256221,y:39.90683629011864,z:0},{x:119.58157613463442,y:39.90496786448259,z:0},{x:119.58199508584232,y:39.904998593338874,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.58153075662504,y:39.90946956165685,z:0},{x:119.58115340781123,y:39.90945491259779,z:0},{x:119.58123248637686,y:39.908324648648566,z:0},{x:119.58165396531444,y:39.90834475838021,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.58272179068321,y:39.91012351746492,z:0},{x:119.58267987433064,y:39.910349427498986,z:0},{x:119.58351826192606,y:39.91040018922563,z:0},{x:119.58352014101105,y:39.9101773886241,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.58494090517677,y:39.91049124700631,z:0},{x:119.5849486086423,y:39.91027629493426,z:0},{x:119.58714161689612,y:39.91042394240106,z:0},{x:119.5871029182166,y:39.91064749333616,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.58754104020055,y:39.909726172971794,z:0},{x:119.58756877554883,y:39.90936621519802,z:0},{x:119.58782931213982,y:39.90937650382861,z:0},{x:119.58776950136193,y:39.90973769420016,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.58771417029139,y:39.90932905123925,z:0},{x:119.58739922891019,y:39.90931777817457,z:0},{x:119.58740605966538,y:39.90916277947625,z:0},{x:119.58772051302427,y:39.90917258310364,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.58750968799109,y:39.90833669248324,z:0},{x:119.58751652005361,y:39.90817095329651,z:0},{x:119.58784320276243,y:39.908187695136064,z:0},{x:119.58783241117493,y:39.90833616855208,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.58755778519638,y:39.907655363610665,z:0},{x:119.58756868592208,y:39.90749306447756,z:0},{x:119.58793428395633,y:39.9075201631986,z:0},{x:119.58791487269662,y:39.90765581159413,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.58758847974278,y:39.90712436600146,z:0},{x:119.5876035293355,y:39.90697285474804,z:0},{x:119.58789393835954,y:39.906981396581465,z:0},{x:119.58788138241827,y:39.90713308993072,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.59061364528691,y:39.90720265468784,z:0},{x:119.590315873064,y:39.90719517530984,z:0},{x:119.59030562120752,y:39.90733869796829,z:0},{x:119.59061925754668,y:39.907352295764014,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.59020535732589,y:39.90798728574176,z:0},{x:119.59022457274544,y:39.90779943770926,z:0},{x:119.59057735682954,y:39.907810688437856,z:0},{x:119.59056386388343,y:39.9080158400453,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.59018663675401,y:39.90859280687636,z:0},{x:119.59020417222895,y:39.90840476791535,z:0},{x:119.59056301718029,y:39.9084125406855,z:0},{x:119.59052897475517,y:39.908609234547725,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.59020609852172,y:39.90917993963887,z:0},{x:119.59021356699351,y:39.90899792814508,z:0},{x:119.59050993277775,y:39.90900735511139,z:0},{x:119.59049522068423,y:39.909201634476716,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.59012147640566,y:39.909797207985434,z:0},{x:119.59013581796991,y:39.90958576645714,z:0},{x:119.59047683539588,y:39.90958699127334,z:0},{x:119.5904520242086,y:39.909800697723604,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.59038546503243,y:39.91013292670908,z:0},{x:119.59010818714563,y:39.910103391534754,z:0},{x:119.5900886175239,y:39.91053637779828,z:0},{x:119.59035825056189,y:39.91054679178431,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.5912334131549,y:39.91126872295081,z:0},{x:119.59125807774444,y:39.91103657016495,z:0},{x:119.59205091772225,y:39.911095330363736,z:0},{x:119.5920133024417,y:39.91131707283845,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.592330633541,y:39.911111051213645,z:0},{x:119.59234028693902,y:39.91133599968114,z:0},{x:119.59402680445447,y:39.911454903015716,z:0},{x:119.59406207917826,y:39.911220256363016,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.59532935919441,y:39.91147612922643,z:0},{x:119.59534658668798,y:39.91130828666537,z:0},{x:119.5959375748285,y:39.911348500420026,z:0},{x:119.59591697469597,y:39.91151325127807,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.58834044763807,y:39.91361975159802,z:0},{x:119.58839924963308,y:39.91362417696634,z:0},{x:119.58844135068217,y:39.91361224730251,z:0},{x:119.58847361520938,y:39.9135874488559,z:0},{x:119.59010959510528,y:39.91366088900707,z:0},{x:119.59035567226401,y:39.91159459683521,z:0},{x:119.59025454296285,y:39.91159011730968,z:0},{x:119.59024129556218,y:39.911673057958346,z:0},{x:119.58995552437656,y:39.91165901683038,z:0},{x:119.5899463316788,y:39.911585026467336,z:0},{x:119.58955776410302,y:39.911653768736,z:0},{x:119.58925964310758,y:39.91177860009067,z:0},{x:119.58794023021943,y:39.912499612693864,z:0},{x:119.58787702888958,y:39.913211469030664,z:0},{x:119.58840121589866,y:39.91324192992364,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.59057633228117,y:39.911294675566545,z:0},{x:119.59058545904558,y:39.91118732694777,z:0},{x:119.59075005963645,y:39.91120155203945,z:0},{x:119.59073690139572,y:39.91130166282408,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),(t={}).position=[{x:119.59021264788893,y:39.91109438173334,z:0},{x:119.59019521206842,y:39.911300007686805,z:0},{x:119.58990475212502,y:39.9112705717281,z:0},{x:119.5899440459836,y:39.91107840440376,z:0}],t.color="rgba(221,0,0,0.4)",t.stretchHeight=30,t.strokeColor="rgba(51,35,108,0.63)",t.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",e.push(t),e),orangeList:(r=[],o={},(o={}).position=[{x:119.65244076267423,y:39.93530573617463,z:0},{x:119.65229128425835,y:39.93526766834254,z:0},{x:119.65233589191487,y:39.93515895516536,z:0},{x:119.6524892178463,y:39.935195646692904,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=17,o.strokeColor="rgba(51,35,108,0.63)",o.corpinfoId="035958e685cf4850bc40151c5e0617a6",r.push(o),(o={}).position=[{x:119.6522859889695,y:39.93509646746143,z:0},{x:119.65230631093252,y:39.93504801536812,z:0},{x:119.6523697484967,y:39.935063209295926,z:0},{x:119.65234563637716,y:39.93511423105747,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=17,o.strokeColor="rgba(51,35,108,0.63)",o.corpinfoId="035958e685cf4850bc40151c5e0617a6",r.push(o),(o={}).position=[{x:119.64437334628414,y:39.93383339279702,z:0},{x:119.6445592346811,y:39.93357224326331,z:0},{x:119.644704756144,y:39.9336400523696,z:0},{x:119.64453028395538,y:39.933892481019605,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=20,o.strokeColor="rgba(51,35,108,0.63)",o.corpinfoId="035958e685cf4850bc40151c5e0617a6",r.push(o),(o={}).position=[{x:119.64440456168681,y:39.934321690165376,z:0},{x:119.64425466191751,y:39.93419731873027,z:0},{x:119.64413609828897,y:39.93428351602963,z:0},{x:119.64428615872794,y:39.934408428016845,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=20,o.strokeColor="rgba(51,35,108,0.63)",r.push(o),(o={}).position=[{x:119.64513003477178,y:39.935144338849454,z:0},{x:119.64526516660584,y:39.935043944401585,z:0},{x:119.64540326803939,y:39.93514354025678,z:0},{x:119.64526381112293,y:39.93525383248512,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=20,o.strokeColor="rgba(51,35,108,0.63)",o.corpinfoId="035958e685cf4850bc40151c5e0617a6",r.push(o),(o={}).position=[{x:119.64435523513254,y:39.9344904041492,z:0},{x:119.64450744702668,y:39.93438749204943,z:0},{x:119.64463027859846,y:39.93449000978896,z:0},{x:119.64448393884038,y:39.93459742295304,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=20,o.strokeColor="rgba(51,35,108,0.63)",o.corpinfoId="035958e685cf4850bc40151c5e0617a6",r.push(o),(o={}).position=[{x:119.65503448880321,y:39.92637794043831,z:0},{x:119.65509015283133,y:39.926392480254194,z:0},{x:119.65501422485877,y:39.926568513120394,z:0},{x:119.6549599245005,y:39.92655471533972,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=17,o.strokeColor="rgba(51,35,108,0.63)",o.corpinfoId="035958e685cf4850bc40151c5e0617a6",r.push(o),(o={}).position=[{x:119.65565401828417,y:39.92493470961027,z:0},{x:119.65570268954862,y:39.92494562149662,z:0},{x:119.6556534973652,y:39.92508034314542,z:0},{x:119.65559999840916,y:39.92506886620076,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=17,o.strokeColor="rgba(51,35,108,0.63)",o.corpinfoId="035958e685cf4850bc40151c5e0617a6",r.push(o),(o={}).position=[{x:119.65483990514292,y:39.92278467000115,z:0},{x:119.65499039261299,y:39.922706279289734,z:0},{x:119.65516247484612,y:39.92289605208885,z:0},{x:119.65501238200747,y:39.92297901255581,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=17,o.strokeColor="rgba(51,35,108,0.63)",o.corpinfoId="035958e685cf4850bc40151c5e0617a6",r.push(o),(o={}).position=[{x:119.65804835057769,y:39.920951228797,z:0},{x:119.65812221746373,y:39.92096048963126,z:0},{x:119.65809304178588,y:39.92112341134131,z:0},{x:119.65802458179039,y:39.92111685860071,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=17,o.strokeColor="rgba(51,35,108,0.63)",o.corpinfoId="035958e685cf4850bc40151c5e0617a6",r.push(o),(o={}).position=[{x:119.65646480385472,y:39.91876666071469,z:0},{x:119.65641626704641,y:39.918710286335646,z:0},{x:119.65669870267627,y:39.918559435904214,z:0},{x:119.65699750006523,y:39.91888961480225,z:0},{x:119.65676036342448,y:39.91901527196699,z:0},{x:119.65651930643986,y:39.91873785382415,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=17,o.strokeColor="rgba(51,35,108,0.63)",o.corpinfoId="035958e685cf4850bc40151c5e0617a6",r.push(o),(o={}).position=[{x:119.67999734168633,y:39.94507414925377,z:0},{x:119.67999658939559,y:39.9450881540915,z:0},{x:119.67676776019547,y:39.945077617907195,z:0},{x:119.67676782669787,y:39.94506470814441,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=20,o.height=18,o.strokeColor="rgba(51,35,108,0.63)",o.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",r.push(o),(o={}).position=[{x:119.68004631312158,y:39.945232355240805,z:0},{x:119.68004687192685,y:39.94524600102893,z:0},{x:119.67676715991885,y:39.945235201812665,z:0},{x:119.67676720877436,y:39.945222916623074,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=20,o.height=18,o.strokeColor="rgba(51,35,108,0.63)",o.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",r.push(o),(o={}).position=[{x:119.67752551239514,y:39.944406234102004,z:0},{x:119.67752482190517,y:39.94438343415068,z:0},{x:119.67899369910414,y:39.94438743616372,z:0},{x:119.6789919797668,y:39.944408291254355,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=17,o.strokeColor="rgba(51,35,108,0.63)",o.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",r.push(o),(o={}).position=[{x:119.67753128306073,y:39.94424903899941,z:0},{x:119.67753217538565,y:39.94421473034085,z:0},{x:119.67900434775387,y:39.94422146321494,z:0},{x:119.67900346550066,y:39.944251410585544,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=17,o.strokeColor="rgba(51,35,108,0.63)",o.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",r.push(o),(o={}).position=[{x:119.67754056599381,y:39.94410748976308,z:0},{x:119.67754138945837,y:39.94407495731505,z:0},{x:119.67900160047216,y:39.94408490071445,z:0},{x:119.67899789336852,y:39.94410849863753,z:0}],o.color="rgba(243,151,1,0.44)",o.stretchHeight=17,o.strokeColor="rgba(51,35,108,0.63)",o.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",r.push(o),r),yellowList:(a=[],(n={}).position=[{x:119.64675261595922,y:39.93588975155907,z:0},{x:119.64670486164115,y:39.93600157720037,z:0},{x:119.64688316669802,y:39.93604981664942,z:0},{x:119.64693400300135,y:39.9359346020678,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=10,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="035958e685cf4850bc40151c5e0617a6",a.push(n),(n={}).position=[{x:119.6537637425757,y:39.93379806517932,z:0},{x:119.65295731420446,y:39.93359861511557,z:0},{x:119.65274069941401,y:39.93410818007418,z:0},{x:119.65353807336304,y:39.93431028339493,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=12,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="035958e685cf4850bc40151c5e0617a6",a.push(n),(n={}).position=[{x:119.65339649843148,y:39.93314233683885,z:0},{x:119.65346224279332,y:39.932974183761,z:0},{x:119.6537191093806,y:39.9330307194225,z:0},{x:119.65365071886094,y:39.93319980702475,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="035958e685cf4850bc40151c5e0617a6",a.push(n),(n={}).position=[{x:119.64715547590552,y:39.93619853339412,z:0},{x:119.64700371135478,y:39.93615573933974,z:0},{x:119.64709583077506,y:39.935958543670694,z:0},{x:119.64724545376124,y:39.935997199295514,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=14,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="035958e685cf4850bc40151c5e0617a6",a.push(n),(n={}).position=[{x:119.64747602291827,y:39.937095127087254,z:0},{x:119.64751644854516,y:39.936996093142625,z:0},{x:119.64800746415632,y:39.937119012938005,z:0},{x:119.64794729648773,y:39.937261484578805,z:0},{x:119.64778774247058,y:39.93721940930273,z:0},{x:119.64780264621291,y:39.93718229322036,z:0},{x:119.64747573175073,y:39.93709170659013,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=11,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="035958e685cf4850bc40151c5e0617a6",a.push(n),(n={}).position=[{x:119.64818411769176,y:39.93740616109522,z:0},{x:119.64821706901344,y:39.93732159466067,z:0},{x:119.648509667995,y:39.93740081522917,z:0},{x:119.64848754006738,y:39.93745026317046,z:0},{x:119.64847070022317,y:39.93744855969521,z:0},{x:119.64845513622338,y:39.93747654069873,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=11,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="035958e685cf4850bc40151c5e0617a6",a.push(n),(n={}).position=[{x:119.64893082342202,y:39.93756038816083,z:0},{x:119.64888910355222,y:39.93766029408344,z:0},{x:119.64842927265528,y:39.93754289686765,z:0},{x:119.64847087528885,y:39.93744841197433,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=11,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="035958e685cf4850bc40151c5e0617a6",a.push(n),(n={}).position=[{x:119.6489858123143,y:39.937595784953494,z:0},{x:119.64903426141252,y:39.93747534921418,z:0},{x:119.64922054679313,y:39.93752251171477,z:0},{x:119.64917066670635,y:39.93764314375353,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=10,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="035958e685cf4850bc40151c5e0617a6",a.push(n),(n={}).position=[{x:119.65107227626761,y:39.93537697573911,z:0},{x:119.65112269759166,y:39.93526161803151,z:0},{x:119.6515278182699,y:39.93536332954129,z:0},{x:119.65147466192138,y:39.93547906802932,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=18,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="035958e685cf4850bc40151c5e0617a6",a.push(n),(n={}).position=[{x:119.65542106009994,y:39.93555795645293,z:0},{x:119.65531601984925,y:39.93553206698612,z:0},{x:119.65541329091548,y:39.93530421355924,z:0},{x:119.65551836892956,y:39.93533293154421,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=12,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="035958e685cf4850bc40151c5e0617a6",a.push(n),(n={}).position=[{x:119.65552801736641,y:39.935323320042194,z:0},{x:119.65541612233632,y:39.935296539448494,z:0},{x:119.65550088419319,y:39.93510312216852,z:0},{x:119.65557788320714,y:39.935122915171796,z:0},{x:119.65553517834054,y:39.93522618868531,z:0},{x:119.65555968993051,y:39.93523617579948,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=12,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="035958e685cf4850bc40151c5e0617a6",a.push(n),(n={}).position=[{x:119.65320764348246,y:39.93280898485063,z:0},{x:119.65327258509362,y:39.93265420614109,z:0},{x:119.65363752102411,y:39.932747218214836,z:0},{x:119.65357295982567,y:39.93290372198591,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=14,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="035958e685cf4850bc40151c5e0617a6",a.push(n),(n={}).position=[{x:119.6567858008791,y:39.924024337567765,z:0},{x:119.65670223654902,y:39.9241165225259,z:0},{x:119.65678111629454,y:39.92415783802315,z:0},{x:119.65686133543122,y:39.92406436422325,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=18,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="035958e685cf4850bc40151c5e0617a6",a.push(n),(n={}).position=[{x:119.64471930628166,y:39.93470277750939,z:0},{x:119.64480164491101,y:39.93464590176776,z:0},{x:119.64508794969686,y:39.93487979893998,z:0},{x:119.64499164460709,y:39.93495268357772,z:0},{x:119.6448456893533,y:39.93483022643145,z:0},{x:119.64486006307838,y:39.934818388113065,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=11,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="035958e685cf4850bc40151c5e0617a6",a.push(n),(n={}).position=[{x:119.64474104631252,y:39.934594609616546,z:0},{x:119.64459345801616,y:39.934700722832694,z:0},{x:119.64447813383478,y:39.93460529612365,z:0},{x:119.64462742333843,y:39.9344997969754,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=14,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="035958e685cf4850bc40151c5e0617a6",a.push(n),(n={}).position=[{x:119.64935438361401,y:39.937549459614864,z:0},{x:119.6493687318305,y:39.93753879762773,z:0},{x:119.64938711332539,y:39.93752787174191,z:0},{x:119.64940619081366,y:39.937523136119175,z:0},{x:119.64943339520136,y:39.93752012319133,z:0},{x:119.64945336235522,y:39.93752239446954,z:0},{x:119.64946918611537,y:39.93752634518904,z:0},{x:119.64948354505654,y:39.937533262349575,z:0},{x:119.64950505830727,y:39.937544315011046,z:0},{x:119.64951992342456,y:39.937564660653116,z:0},{x:119.64952327201254,y:39.937586000444135,z:0},{x:119.64952872214415,y:39.93759598810641,z:0},{x:119.64952247300927,y:39.93762802568568,z:0},{x:119.6495083201998,y:39.937637329420724,z:0},{x:119.64949005539692,y:39.937656362929665,z:0},{x:119.64947348047883,y:39.93766147838313,z:0},{x:119.64945802627136,y:39.93766652317375,z:0},{x:119.64943406173201,y:39.93767021806161,z:0},{x:119.64941526968525,y:39.93767000928212,z:0},{x:119.64939725051501,y:39.93766647797905,z:0},{x:119.64938408170143,y:39.937661647079494,z:0},{x:119.64937519426358,y:39.9376573833488,z:0},{x:119.64936102796199,y:39.93764909182799,z:0},{x:119.64935263812825,y:39.93764069697448,z:0},{x:119.64934487166148,y:39.93763037190978,z:0},{x:119.64933844472527,y:39.937620721829695,z:0},{x:119.64933337190519,y:39.9376058784465,z:0},{x:119.64933213988792,y:39.93758629253377,z:0},{x:119.64933946391547,y:39.93756787897886,z:0},{x:119.64935438361401,y:39.937549459614864,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=17,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="035958e685cf4850bc40151c5e0617a6",a.push(n),(n={}).position=[{x:119.64956155353866,y:39.93766048672987,z:0},{x:119.64956219520462,y:39.937649329806526,z:0},{x:119.64956183107749,y:39.9376442781186,z:0},{x:119.64956698144543,y:39.937630489844835,z:0},{x:119.64957220762724,y:39.937614795848624,z:0},{x:119.64958073895625,y:39.93759972540601,z:0},{x:119.64959706769059,y:39.937590989503455,z:0},{x:119.64961351568665,y:39.93758446305703,z:0},{x:119.64962423516596,y:39.93758015131844,z:0},{x:119.64963849268871,y:39.93757829824769,z:0},{x:119.64964932445719,y:39.937577448723616,z:0},{x:119.64966515491888,y:39.9375791739814,z:0},{x:119.64968306947974,y:39.937579819341344,z:0},{x:119.64970158410439,y:39.93758536380382,z:0},{x:119.6497133099653,y:39.93759114511226,z:0},{x:119.64972298533763,y:39.93759665005036,z:0},{x:119.64973064293838,y:39.93760500735805,z:0},{x:119.64974058488775,y:39.93761225231026,z:0},{x:119.64974685514093,y:39.93762269939289,z:0},{x:119.6497534741057,y:39.93764121446224,z:0},{x:119.64975622950907,y:39.93765017758825,z:0},{x:119.64975501091283,y:39.93766264504111,z:0},{x:119.64975269780864,y:39.93767236443677,z:0},{x:119.64974924267865,y:39.93768157165041,z:0},{x:119.64974091355691,y:39.93769374152715,z:0},{x:119.64972825584509,y:39.93770683261994,z:0},{x:119.64971867546451,y:39.937713394868325,z:0},{x:119.64970087139183,y:39.93771935265264,z:0},{x:119.64968375693836,y:39.93772549831007,z:0},{x:119.64967411808445,y:39.93772707020383,z:0},{x:119.64965828732308,y:39.93772938763026,z:0},{x:119.64964251045897,y:39.93772849786555,z:0},{x:119.6496276173504,y:39.93772526432062,z:0},{x:119.64961299507364,y:39.937720570237865,z:0},{x:119.64960118184581,y:39.93771591775239,z:0},{x:119.64958454495628,y:39.93770563715298,z:0},{x:119.64957419163369,y:39.937690925791884,z:0},{x:119.64956631624672,y:39.93767659571782,z:0},{x:119.64956155353866,y:39.93766048672987,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=17,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="035958e685cf4850bc40151c5e0617a6",a.push(n),(n={}).position=[{x:119.67571193191387,y:39.945497180971614,z:0},{x:119.67572506862477,y:39.94572866358916,z:0},{x:119.67518171247595,y:39.94574085025751,z:0},{x:119.67518208068056,y:39.94547572709497,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=17,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="035958e685cf4850bc40151c5e0617a6",a.push(n),(n={}).position=[{x:119.64545662292429,y:39.93539902676807,z:0},{x:119.64536555403889,y:39.93532285610675,z:0},{x:119.64550696507655,y:39.935225619057896,z:0},{x:119.6455907964595,y:39.935306980732385,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=14,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="035958e685cf4850bc40151c5e0617a6",a.push(n),(n={}).position=[{x:119.67837988120894,y:39.945577980061756,z:0},{x:119.67866945831462,y:39.94557876523195,z:0},{x:119.67866856167583,y:39.94573033747321,z:0},{x:119.67838101482991,y:39.94572551425829,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=20,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",a.push(n),(n={}).position=[{x:119.67638146945725,y:39.9314943804233,z:0},{x:119.67657096095611,y:39.93149393752788,z:0},{x:119.67656858902549,y:39.93183995481393,z:0},{x:119.67637636171396,y:39.93184198307276,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",a.push(n),(n={}).position=[{x:119.677100156669,y:39.91433947906379,z:0},{x:119.6771833513014,y:39.914338783913855,z:0},{x:119.67718443478546,y:39.914485975244304,z:0},{x:119.6770983994313,y:39.91448483770926,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=13,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",a.push(n),(n={}).position=[{x:119.67730438483026,y:39.92431908462055,z:0},{x:119.67750049739695,y:39.924317393282806,z:0},{x:119.67750300503378,y:39.92453569280044,z:0},{x:119.67730095273068,y:39.92453278611813,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=14,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",a.push(n),(n={}).position=[{x:119.67686488410037,y:39.945569129044,z:0},{x:119.67686225977674,y:39.945725321504405,z:0},{x:119.67747526057079,y:39.94572140324657,z:0},{x:119.67748560753881,y:39.94557126173028,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=17,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",a.push(n),(n={}).position=[{x:119.67689679643377,y:39.94543340727261,z:0},{x:119.67689258471772,y:39.94535997908461,z:0},{x:119.6774831880028,y:39.94537077683519,z:0},{x:119.67748443528197,y:39.945444091530476,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=13,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",a.push(n),(n={}).position=[{x:119.67759730388686,y:39.94543828526552,z:0},{x:119.67759727968894,y:39.945361358157285,z:0},{x:119.67822641277739,y:39.94536821042086,z:0},{x:119.67822948729663,y:39.945440868898324,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=15,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",a.push(n),(n={}).position=[{x:119.67819117689767,y:39.94489036153427,z:0},{x:119.67819134848573,y:39.944826312772946,z:0},{x:119.67876922316195,y:39.9448278055437,z:0},{x:119.67877094762429,y:39.94489205529577,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=13,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",a.push(n),(n={}).position=[{x:119.6773899097867,y:39.92803091879639,z:0},{x:119.67738605284924,y:39.927567248049144,z:0},{x:119.6780265766188,y:39.927562762523046,z:0},{x:119.67802993065335,y:39.92803539405898,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=11,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",a.push(n),(n={}).position=[{x:119.67746393315409,y:39.92688469855177,z:0},{x:119.67766402891039,y:39.92688310865093,z:0},{x:119.6776674711235,y:39.927304960620276,z:0},{x:119.67745701971789,y:39.92730361172924,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=28,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",a.push(n),(n={}).position=[{x:119.67744695290219,y:39.930341510674786,z:0},{x:119.6776432266684,y:39.930339500729346,z:0},{x:119.6776332221384,y:39.93073585590139,z:0},{x:119.6774315664271,y:39.930737615765345,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=17,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",a.push(n),(n={}).position=[{x:119.69003137834203,y:39.92883213930327,z:0},{x:119.69022808214932,y:39.928825815014804,z:0},{x:119.69022854448599,y:39.92926119100762,z:0},{x:119.69003103218569,y:39.929260247098284,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=17,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",a.push(n),(n={}).position=[{x:119.67735927104773,y:39.92838542180889,z:0},{x:119.6773462019506,y:39.92874814903245,z:0},{x:119.67785558044474,y:39.92875229834242,z:0},{x:119.67784834212094,y:39.92838066687474,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=13,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",a.push(n),(n={}).position=[{x:119.67734807725795,y:39.929632624246395,z:0},{x:119.67784824791383,y:39.92963934860632,z:0},{x:119.67783942980066,y:39.93002256535318,z:0},{x:119.67734151203285,y:39.93001705073229,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=13,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",a.push(n),(n={}).position=[{x:119.63697325785974,y:39.93289018537584,z:0},{x:119.63706727181246,y:39.93279538832871,z:0},{x:119.63687608212625,y:39.93267489471802,z:0},{x:119.63677968485372,y:39.93278150972408,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="17973964c87346e7a4a737cf252557d9",a.push(n),(n={}).position=[{x:119.6384071633543,y:39.931176226102345,z:0},{x:119.63804249221342,y:39.931022659086,z:0},{x:119.6381554628648,y:39.930882535988424,z:0},{x:119.63851865014485,y:39.931034008954946,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="17973964c87346e7a4a737cf252557d9",a.push(n),(n={}).position=[{x:119.6457111585853,y:39.926457049973024,z:0},{x:119.64580192837343,y:39.926334873636804,z:0},{x:119.64641339652553,y:39.92658177739348,z:0},{x:119.6463187992887,y:39.9267055614263,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=25,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="17973964c87346e7a4a737cf252557d9",a.push(n),(n={}).position=[{x:119.64224052769976,y:39.92495413015942,z:0},{x:119.6421496147193,y:39.92506240579572,z:0},{x:119.64194501850056,y:39.92497226758433,z:0},{x:119.64192104672581,y:39.92500291365993,z:0},{x:119.64179121334293,y:39.92495542345471,z:0},{x:119.64189472194676,y:39.92480905197884,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=25,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="17973964c87346e7a4a737cf252557d9",a.push(n),(n={}).position=[{x:119.64114164438776,y:39.934214284655134,z:0},{x:119.6410527213628,y:39.934138628851215,z:0},{x:119.64108260994952,y:39.934118070752945,z:0},{x:119.64116143739382,y:39.93418305293903,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="17973964c87346e7a4a737cf252557d9",a.push(n),(n={}).position=[{x:119.64116835498754,y:39.934131142404844,z:0},{x:119.64111682883232,y:39.934092058748604,z:0},{x:119.64115324847963,y:39.93406313508518,z:0},{x:119.6412029861413,y:39.93410700000083,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="17973964c87346e7a4a737cf252557d9",a.push(n),(n={}).position=[{x:119.64095844383701,y:39.933368376683454,z:0},{x:119.64080515920536,y:39.93325039252921,z:0},{x:119.6408557062443,y:39.93321385339301,z:0},{x:119.64099508120232,y:39.933337248972244,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="17973964c87346e7a4a737cf252557d9",a.push(n),(n={}).position=[{x:119.6414904004827,y:39.933185264028744,z:0},{x:119.64139230655026,y:39.933105186976846,z:0},{x:119.64144025352836,y:39.93306883154188,z:0},{x:119.6415304234082,y:39.93314626620595,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="17973964c87346e7a4a737cf252557d9",a.push(n),(n={}).position=[{x:119.641651847342,y:39.933064287065534,z:0},{x:119.64155230357078,y:39.93298273571423,z:0},{x:119.64159708498325,y:39.9329482913232,z:0},{x:119.64168939888474,y:39.93303457368176,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="17973964c87346e7a4a737cf252557d9",a.push(n),(n={}).position=[{x:119.641039502737,y:39.93281787118913,z:0},{x:119.64108466436775,y:39.9327809083041,z:0},{x:119.64098158381597,y:39.93270080658552,z:0},{x:119.64094478028538,y:39.93272987344857,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="17973964c87346e7a4a737cf252557d9",a.push(n),(n={}).position=[{x:119.64121303719409,y:39.932692169292736,z:0},{x:119.64111269111164,y:39.932606888693414,z:0},{x:119.64115892165216,y:39.93258528307437,z:0},{x:119.64124762106005,y:39.93266021584018,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="17973964c87346e7a4a737cf252557d9",a.push(n),(n={}).position=[{x:119.64327849418952,y:39.93292182893548,z:0},{x:119.64298888231895,y:39.933336978999215,z:0},{x:119.6432961017299,y:39.93346322454373,z:0},{x:119.64358406724217,y:39.93304397948273,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="17973964c87346e7a4a737cf252557d9",a.push(n),(n={}).position=[{x:119.67441832681492,y:39.943625034920316,z:0},{x:119.67441454642608,y:39.943595003277906,z:0},{x:119.67922490150076,y:39.9436058003515,z:0},{x:119.67922615641874,y:39.94363891743207,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",a.push(n),(n={}).position=[{x:119.67445337772278,y:39.94349004925819,z:0},{x:119.67445636695489,y:39.943449897653636,z:0},{x:119.67925261364591,y:39.94347218486033,z:0},{x:119.67925094362876,y:39.94349302449571,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",a.push(n),(n={}).position=[{x:119.67757281300504,y:39.944343230695075,z:0},{x:119.67783234020752,y:39.94434491764578,z:0},{x:119.67781892372246,y:39.944386495117186,z:0},{x:119.67758491979906,y:39.944387482364945,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",a.push(n),(n={}).position=[{x:119.67825962104446,y:39.94421879397724,z:0},{x:119.67825890462832,y:39.944180506378146,z:0},{x:119.67852291195011,y:39.944177625806,z:0},{x:119.67851754826188,y:39.944218791200214,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",a.push(n),(n={}).position=[{x:119.6775760591165,y:39.94407713227874,z:0},{x:119.67757688335689,y:39.94403830316149,z:0},{x:119.67783696688191,y:39.94403997027849,z:0},{x:119.67783604270151,y:39.94408184125554,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",a.push(n),(n={}).position=[{x:119.67380773930437,y:39.93932673471107,z:0},{x:119.67358241914215,y:39.939324549060466,z:0},{x:119.67359861990666,y:39.93897364946755,z:0},{x:119.67381383021258,y:39.938975822648494,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=25,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",a.push(n),(n={}).position=[{x:119.67556612836583,y:39.938131907250536,z:0},{x:119.67554724909469,y:39.93849973673108,z:0},{x:119.67524126300711,y:39.938503678169745,z:0},{x:119.67524014319437,y:39.93812625651977,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",a.push(n),(n={}).position=[{x:119.67376266855183,y:39.93521172870277,z:0},{x:119.67391091827797,y:39.935109080295426,z:0},{x:119.67429368588478,y:39.935397207110526,z:0},{x:119.6741388865921,y:39.935506263470664,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",a.push(n),(n={}).position=[{x:119.66574492897418,y:39.929020952092365,z:0},{x:119.66572930612566,y:39.92903169690037,z:0},{x:119.66570115094659,y:39.92900972400904,z:0},{x:119.66571726323805,y:39.92899822169829,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",a.push(n),(n={}).position=[{x:119.67658037067456,y:39.93445320627232,z:0},{x:119.67679343076408,y:39.93446055460707,z:0},{x:119.67679570803637,y:39.934928783937984,z:0},{x:119.67657535872682,y:39.93492747349733,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",a.push(n),(n={}).position=[{x:119.67666650228152,y:39.930439097054055,z:0},{x:119.67669163891838,y:39.93059258980291,z:0},{x:119.67610289228969,y:39.930588879151344,z:0},{x:119.67607843236188,y:39.930447807028905,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",a.push(n),(n={}).position=[{x:119.67666732692608,y:39.92472891836422,z:0},{x:119.67661940286659,y:39.92473225073528,z:0},{x:119.6766202117076,y:39.924588931626246,z:0},{x:119.67666749403747,y:39.92460666332876,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",a.push(n),(n={}).position=[{x:119.69027245668434,y:39.93840579126002,z:0},{x:119.69022748562011,y:39.93840637648712,z:0},{x:119.69023011432064,y:39.93832466273663,z:0},{x:119.690274076326,y:39.9383241288491,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",a.push(n),(n={}).position=[{x:119.6902778403753,y:39.93496755850677,z:0},{x:119.69021698649563,y:39.934966511617944,z:0},{x:119.690216658292,y:39.93482638466211,z:0},{x:119.69028093809608,y:39.93482476444804,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",a.push(n),(n={}).position=[{x:119.67618456508535,y:39.93148488106484,z:0},{x:119.67637389769367,y:39.93150331339098,z:0},{x:119.6763721224028,y:39.931835862355605,z:0},{x:119.67617488646428,y:39.93184749359709,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",a.push(n),(n={}).position=[{x:119.6773698277109,y:39.944752073769166,z:0},{x:119.67736568295025,y:39.94455138467522,z:0},{x:119.67788769642412,y:39.94454903099913,z:0},{x:119.6778809202881,y:39.94475104818823,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",a.push(n),(n={}).position=[{x:119.6739869141555,y:39.94486868291236,z:0},{x:119.67398609525529,y:39.94473968422086,z:0},{x:119.67445254336936,y:39.94473366293301,z:0},{x:119.6744529494995,y:39.94487106972324,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",a.push(n),(n={}).position=[{x:119.67368388137605,y:39.94333301067862,z:0},{x:119.67368871520068,y:39.94323990869142,z:0},{x:119.67395891693118,y:39.943242823403644,z:0},{x:119.67395260769769,y:39.943328036553254,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",a.push(n),(n={}).position=[{x:119.66788599088333,y:39.93959386640958,z:0},{x:119.66788066950905,y:39.93944633860358,z:0},{x:119.66852232009764,y:39.939449238492735,z:0},{x:119.6685231957495,y:39.93959552683104,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",a.push(n),(n={}).position=[{x:119.6679657859146,y:39.93915688383715,z:0},{x:119.66796370266778,y:39.939006344417706,z:0},{x:119.66851983041528,y:39.93900673073517,z:0},{x:119.66851923618077,y:39.93916321188756,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",a.push(n),(n={}).position=[{x:119.66698462266285,y:39.93915646453932,z:0},{x:119.66698342931315,y:39.938998246359866,z:0},{x:119.6672231970396,y:39.938995809971146,z:0},{x:119.66722834664796,y:39.939155377172156,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",a.push(n),(n={}).position=[{x:119.57762129092836,y:39.904909585201544,z:0},{x:119.5776043468382,y:39.905065834929246,z:0},{x:119.57726037827852,y:39.90504337655127,z:0},{x:119.57728075230713,y:39.90488517521373,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",a.push(n),(n={}).position=[{x:119.58089413286804,y:39.90781968311673,z:0},{x:119.58086051106018,y:39.90811361481277,z:0},{x:119.58064797029465,y:39.908099102509695,z:0},{x:119.58068585494529,y:39.907809658161966,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",a.push(n),(n={}).position=[{x:119.58375372361348,y:39.91086831970915,z:0},{x:119.58377307233937,y:39.91071330044674,z:0},{x:119.58410398674329,y:39.91073693994377,z:0},{x:119.58408393355384,y:39.910887923283134,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",a.push(n),(n={}).position=[{x:119.5858459014543,y:39.91279324747397,z:0},{x:119.585885423847,y:39.9128202146181,z:0},{x:119.58583209098575,y:39.912860528936804,z:0},{x:119.58579919217068,y:39.91283728874215,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",a.push(n),(n={}).position=[{x:119.58811131040471,y:39.9113960558778,z:0},{x:119.58812045263805,y:39.91129728450784,z:0},{x:119.58841563444604,y:39.911304749266876,z:0},{x:119.58840758802128,y:39.911404383676725,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",a.push(n),(n={}).position=[{x:119.58998576783164,y:39.911639455531166,z:0},{x:119.58999557918521,y:39.91155860552536,z:0},{x:119.59024960538859,y:39.91157366531129,z:0},{x:119.59023838489608,y:39.91166371792177,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",a.push(n),(n={}).position=[{x:119.58848878681765,y:39.912413735926215,z:0},{x:119.58849453471286,y:39.91234495220216,z:0},{x:119.58864967187257,y:39.91235621235559,z:0},{x:119.58863814515584,y:39.912422166749195,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",a.push(n),(n={}).position=[{x:119.58846456488865,y:39.91357380921029,z:0},{x:119.58850059542408,y:39.91332172708902,z:0},{x:119.58871250423724,y:39.91333309599077,z:0},{x:119.5886881507336,y:39.91357814498642,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=35,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",a.push(n),(n={}).position=[{x:119.58848157911251,y:39.9135687213942,z:0},{x:119.58850900294372,y:39.9133139994154,z:0},{x:119.58871237329895,y:39.913331191783236,z:0},{x:119.58868528297792,y:39.913578807722516,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",a.push(n),(n={}).position=[{x:119.59287894457107,y:39.91162551985646,z:0},{x:119.59289065599009,y:39.91150125686028,z:0},{x:119.59316645082575,y:39.911515145803996,z:0},{x:119.59314916473883,y:39.91163964496703,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",a.push(n),(n={}).position=[{x:119.5916231282264,y:39.9158354488722,z:0},{x:119.59162495545567,y:39.91579106796011,z:0},{x:119.59169402720585,y:39.91579336144948,z:0},{x:119.59169527278422,y:39.91583051380903,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",a.push(n),(n={}).position=[{x:119.57793532412884,y:39.9150283701544,z:0},{x:119.57793082011132,y:39.91486595355276,z:0},{x:119.57827419735725,y:39.914860524225894,z:0},{x:119.57827702215134,y:39.91501720983166,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",a.push(n),(n={}).position=[{x:119.5768814619112,y:39.91615597298338,z:0},{x:119.57688671222921,y:39.91598261901582,z:0},{x:119.57758580865955,y:39.915988266954706,z:0},{x:119.57759462451406,y:39.91615628937627,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",a.push(n),(n={}).position=[{x:119.57637249924103,y:39.91615470495081,z:0},{x:119.57638218456381,y:39.915987071624315,z:0},{x:119.57678176441269,y:39.91598848071503,z:0},{x:119.57677519841894,y:39.91615647546411,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",a.push(n),(n={}).position=[{x:119.57728418200385,y:39.91638588406657,z:0},{x:119.57728057418892,y:39.91645333976292,z:0},{x:119.5775235333297,y:39.916453721386226,z:0},{x:119.57751263113698,y:39.916379104249515,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",a.push(n),(n={}).position=[{x:119.58819926777456,y:39.90875117934718,z:0},{x:119.5884366230906,y:39.908760572793,z:0},{x:119.58844586662785,y:39.908679487386785,z:0},{x:119.58820301300807,y:39.90867135334873,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",a.push(n),(n={}).position=[{x:119.58139489698208,y:39.90479133309566,z:0},{x:119.58114434353007,y:39.907045149867976,z:0},{x:119.5814944196634,y:39.90705690082351,z:0},{x:119.58145901633394,y:39.907371976632525,z:0},{x:119.58110848896057,y:39.90735713541166,z:0},{x:119.58072769350422,y:39.910446278434506,z:0},{x:119.58071311755029,y:39.9104936078928,z:0},{x:119.58774148579629,y:39.91089334972256,z:0},{x:119.58801120071716,y:39.90696274630046,z:0},{x:119.59029678465107,y:39.90703745150728,z:0},{x:119.59016309828932,y:39.90860040475735,z:0},{x:119.590055760928,y:39.9085977873849,z:0},{x:119.59004824142835,y:39.90887248515744,z:0},{x:119.59015955854152,y:39.90887247636311,z:0},{x:119.59018394766761,y:39.9111047046446,z:0},{x:119.59018031800419,y:39.91117588947368,z:0},{x:119.59613665188627,y:39.91156584253852,z:0},{x:119.59616366949543,y:39.91134332331312,z:0},{x:119.59034691880366,y:39.91096790140763,z:0},{x:119.59063919936668,y:39.90685432159687,z:0},{x:119.58758052447953,y:39.906725474923306,z:0},{x:119.58732808268614,y:39.91043231756418,z:0},{x:119.58144838135402,y:39.91002889636591,z:0},{x:119.5820364659166,y:39.90484403398539,z:0}],n.color="rgba(255,240,0,0.4)",n.stretchHeight=19,n.strokeColor="rgba(51,35,108,0.63)",n.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",a.push(n),a),blueList:(i=[],(s={}).position=[{x:119.64912437695774,y:39.935699196834754,z:0},{x:119.64918348273837,y:39.935571031771325,z:0},{x:119.64953787002263,y:39.93567247353756,z:0},{x:119.64948487108012,y:39.93578703471035,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=12,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="035958e685cf4850bc40151c5e0617a6",i.push(s),(s={}).position=[{x:119.65230400745084,y:39.93504450554263,z:0},{x:119.65236034107312,y:39.93492165285554,z:0},{x:119.65257105486086,y:39.93497565146784,z:0},{x:119.6524937878445,y:39.935152400882004,z:0},{x:119.6523499865454,y:39.935115495583176,z:0},{x:119.65237263272775,y:39.935059288906196,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=12,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="035958e685cf4850bc40151c5e0617a6",i.push(s),(s={}).position=[{x:119.65732226169033,y:39.92334770808114,z:0},{x:119.65740962315503,y:39.92339324252474,z:0},{x:119.65753389507483,y:39.92325390297927,z:0},{x:119.65744465838374,y:39.92320166521457,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=18,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="035958e685cf4850bc40151c5e0617a6",i.push(s),(s={}).position=[{x:119.67768638865024,y:39.9455769333287,z:0},{x:119.6776828236268,y:39.94577641488915,z:0},{x:119.67779156410361,y:39.94577335457945,z:0},{x:119.67779546944834,y:39.94573774469018,z:0},{x:119.677840506671,y:39.94574092420696,z:0},{x:119.67783769855419,y:39.94572131072665,z:0},{x:119.67838216907172,y:39.94571917849807,z:0},{x:119.67838015361839,y:39.94558669482577,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=23,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67200901599236,y:39.941835619648735,z:0},{x:119.67201738431609,y:39.942112043183265,z:0},{x:119.67139305478653,y:39.94211115957044,z:0},{x:119.67139569615999,y:39.94184560104185,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=82,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.6776025379286,y:39.925010821427016,z:0},{x:119.67760461174765,y:39.9248779657223,z:0},{x:119.67785588350138,y:39.92487896469747,z:0},{x:119.67786371428964,y:39.925014162686416,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.6774877031668,y:39.92890260596362,z:0},{x:119.67768012414821,y:39.92890792997685,z:0},{x:119.67767476768596,y:39.92936128906271,z:0},{x:119.67741906985133,y:39.929364076032954,z:0},{x:119.67742279265507,y:39.92918149016198,z:0},{x:119.6774903859772,y:39.92918374319415,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67628324505276,y:39.93100964720754,z:0},{x:119.67668523352796,y:39.931010508736776,z:0},{x:119.67668306815224,y:39.931153438341504,z:0},{x:119.6762818946619,y:39.931156628245674,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=26,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67796195488943,y:39.92466498409701,z:0},{x:119.67795859062356,y:39.9247811431044,z:0},{x:119.67691832082923,y:39.924766481153206,z:0},{x:119.67692009974613,y:39.92464336666504,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=28,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.68022135850883,y:39.94311380963631,z:0},{x:119.68022366379022,y:39.94333722046525,z:0},{x:119.67994707796517,y:39.94333402777019,z:0},{x:119.67994719211492,y:39.94311470991544,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=26,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67696892665762,y:39.92463198873667,z:0},{x:119.67698069165844,y:39.92463206514674,z:0},{x:119.67701399664483,y:39.91892833354039,z:0},{x:119.67699224971862,y:39.91892758022259,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=19,s.height=15,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67701298964371,y:39.92450862608299,z:0},{x:119.67702695679398,y:39.92450879109374,z:0},{x:119.6770844024392,y:39.91398709380116,z:0},{x:119.6770624181077,y:39.913987033627045,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=19,s.height=15,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67706055361403,y:39.92451760407259,z:0},{x:119.67708206819633,y:39.924517516040815,z:0},{x:119.67712794753359,y:39.91463596518829,z:0},{x:119.67710524751068,y:39.91463644178648,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=19,s.height=15,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67710722303735,y:39.92451740624494,z:0},{x:119.67712896218957,y:39.92451715731904,z:0},{x:119.67716661725284,y:39.91642840529884,z:0},{x:119.6771425567425,y:39.91642837941623,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=19,s.height=15,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67695138095739,y:39.93165368219812,z:0},{x:119.67698672922442,y:39.93165375230437,z:0},{x:119.67701291873739,y:39.925343479632325,z:0},{x:119.6769802749955,y:39.92534369251772,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67697963703917,y:39.92534407753573,z:0},{x:119.67701409348633,y:39.92534382461038,z:0},{x:119.67701015964951,y:39.92600278945478,z:0},{x:119.6769766227447,y:39.926002938792664,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67702237356467,y:39.92600311585235,z:0},{x:119.67705498858943,y:39.92600322325658,z:0},{x:119.67705635637947,y:39.925344129105945,z:0},{x:119.67702058434153,y:39.92534409489051,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67710056129499,y:39.926005947386,z:0},{x:119.67706897541677,y:39.92600587812804,z:0},{x:119.67707233344292,y:39.92534420322235,z:0},{x:119.67710869514649,y:39.925344229559784,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67711520856773,y:39.9260055189497,z:0},{x:119.67715164433997,y:39.92600609235246,z:0},{x:119.67715502403182,y:39.92534424790089,z:0},{x:119.6771202620172,y:39.92534421365138,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67695541266438,y:39.92508930798499,z:0},{x:119.67699478703808,y:39.925088471687786,z:0},{x:119.67699252828687,y:39.92476547209261,z:0},{x:119.67695869004105,y:39.92476529234873,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=16,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67700153593307,y:39.925088487029946,z:0},{x:119.67704116834433,y:39.925087991563906,z:0},{x:119.67704277949481,y:39.92476464838463,z:0},{x:119.67700400940909,y:39.92476352534532,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=16,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.69039908965236,y:39.92551688538451,z:0},{x:119.69042620335357,y:39.9255173412793,z:0},{x:119.69035459261411,y:39.94232458789495,z:0},{x:119.69032121542753,y:39.942324192167995,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.69039803438142,y:39.942330189676326,z:0},{x:119.69036411591325,y:39.942330206413075,z:0},{x:119.6904409078518,y:39.92551779785245,z:0},{x:119.69047394717641,y:39.92551744541017,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.69044184567755,y:39.942330162229794,z:0},{x:119.69040572791224,y:39.942330412824234,z:0},{x:119.69047663419832,y:39.926895152878195,z:0},{x:119.69050505483793,y:39.92689506887889,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.68031360803883,y:39.942436375797335,z:0},{x:119.68031423055561,y:39.942464309908466,z:0},{x:119.68757452683727,y:39.942485915807396,z:0},{x:119.68757335387562,y:39.94245680293458,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=9,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.68031451910984,y:39.94246977150759,z:0},{x:119.68031353880029,y:39.94249941864594,z:0},{x:119.68757777678815,y:39.942519019266946,z:0},{x:119.68757682376653,y:39.94248854685007,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=9,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.68031235745806,y:39.94250329279837,z:0},{x:119.68031392272248,y:39.94253180957037,z:0},{x:119.68757827888734,y:39.942551539831335,z:0},{x:119.68758029846084,y:39.94252394549668,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=9,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.68003184348507,y:39.94489015091673,z:0},{x:119.68006928977594,y:39.94489027476248,z:0},{x:119.68007524398631,y:39.942575975077645,z:0},{x:119.68004583196556,y:39.94257532010903,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=19,s.height=15,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.68007749130342,y:39.94489030472904,z:0},{x:119.68011173447759,y:39.944890421089006,z:0},{x:119.68011888534724,y:39.94257670477271,z:0},{x:119.68008905653572,y:39.9425770550517,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=19,s.height=15,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67927455395422,y:39.94496838809978,z:0},{x:119.67927561593899,y:39.94499385382179,z:0},{x:119.67999849962192,y:39.9449973057853,z:0},{x:119.67999914416775,y:39.94496986701925,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=26,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67927466722888,y:39.94501827155403,z:0},{x:119.6792747549209,y:39.94504462112368,z:0},{x:119.67999736590933,y:39.9450446436603,z:0},{x:119.67999804656249,y:39.94501538175941,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=26,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67927249097022,y:39.94517553897767,z:0},{x:119.67927409938973,y:39.94520186721292,z:0},{x:119.68004540288476,y:39.945203335131616,z:0},{x:119.68004540599372,y:39.945176594508254,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=26,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.68011838246683,y:39.94489044465761,z:0},{x:119.6801547842294,y:39.94489045460076,z:0},{x:119.68016188711002,y:39.94257539491509,z:0},{x:119.68013440234893,y:39.942576544789226,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=19,s.height=15,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67704895804474,y:39.92508880972678,z:0},{x:119.67708679579205,y:39.92508829694439,z:0},{x:119.67708717490125,y:39.924766686390306,z:0},{x:119.67705252089743,y:39.92476576291472,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=16,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67712880373693,y:39.925093031457656,z:0},{x:119.67709548162425,y:39.925093057673315,z:0},{x:119.67709876623884,y:39.92476600071473,z:0},{x:119.67713529772506,y:39.92476617788221,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=16,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67809224714398,y:39.92544497918489,z:0},{x:119.67809136962559,y:39.92542840268896,z:0},{x:119.69035362036416,y:39.92546410160653,z:0},{x:119.69035222193212,y:39.92547753684911,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.height=8,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67702352993717,y:39.92615166049853,z:0},{x:119.6770566612163,y:39.926152831294665,z:0},{x:119.67703292044153,y:39.93170802441127,z:0},{x:119.67699789745396,y:39.931707598598585,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67707027223726,y:39.92615294268521,z:0},{x:119.67710314280808,y:39.92615290627593,z:0},{x:119.67708050346286,y:39.93165414151152,z:0},{x:119.67704450996159,y:39.93165422472582,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67709236124587,y:39.93170795352176,z:0},{x:119.6771274309361,y:39.93170804265281,z:0},{x:119.67715386279116,y:39.926152827098285,z:0},{x:119.67711586609558,y:39.92615284833404,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67797428516886,y:39.92612133383919,z:0},{x:119.6779742235127,y:39.92610160483246,z:0},{x:119.68982769621272,y:39.92613329710027,z:0},{x:119.68982766371523,y:39.92615318441631,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.6780861469888,y:39.926795687015755,z:0},{x:119.67808703928125,y:39.926780769355396,z:0},{x:119.69021832158373,y:39.92682561245546,z:0},{x:119.69021790185036,y:39.926811737020714,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.6779223191644,y:39.927470602650146,z:0},{x:119.67792231161059,y:39.92745434878731,z:0},{x:119.68982039022018,y:39.92748423901589,z:0},{x:119.68982008762192,y:39.92750386745348,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67803728946163,y:39.928145318465035,z:0},{x:119.67803766286956,y:39.928130125644,z:0},{x:119.69021698027359,y:39.928162120760476,z:0},{x:119.69021413444909,y:39.92817692768863,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67803728946163,y:39.928145318465035,z:0},{x:119.67803766286956,y:39.928130125644,z:0},{x:119.69021698027359,y:39.928162120760476,z:0},{x:119.69021413444909,y:39.92817692768863,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.6779609667715,y:39.928820587025314,z:0},{x:119.67796165929096,y:39.92880483518059,z:0},{x:119.68981555925764,y:39.928833577377056,z:0},{x:119.68981536062154,y:39.928853619666974,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67804402455074,y:39.929496585600894,z:0},{x:119.67804412482994,y:39.929482208501895,z:0},{x:119.69019565585782,y:39.92951223606839,z:0},{x:119.69019532172302,y:39.92952754843253,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.6779543493249,y:39.9301735152747,z:0},{x:119.67795483671614,y:39.93015516173988,z:0},{x:119.68980981301564,y:39.93018519322841,z:0},{x:119.68981026566199,y:39.930204802971836,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67804849432797,y:39.930847912562896,z:0},{x:119.67804947338722,y:39.93083261639406,z:0},{x:119.69020924258494,y:39.93086222843734,z:0},{x:119.69020891213438,y:39.93088009599198,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.6779516100394,y:39.93152307409542,z:0},{x:119.6779516659536,y:39.93150631345655,z:0},{x:119.68980415749976,y:39.93153520713391,z:0},{x:119.68980434792263,y:39.931554901600784,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.67805797826166,y:39.932198746803756,z:0},{x:119.67805802533685,y:39.932183496792376,z:0},{x:119.69019546854621,y:39.932214945652376,z:0},{x:119.69019485106308,y:39.93222969086129,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=10,s.strokeColor="rgba(51,35,108,0.63)",s.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",i.push(s),(s={}).position=[{x:119.64566447379012,y:39.93382151745543,z:0},{x:119.6499435492798,y:39.92772374777174,z:0},{x:119.64110237864448,y:39.92417692594859,z:0},{x:119.63690882851834,y:39.93017281339589,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="17973964c87346e7a4a737cf252557d9",i.push(s),(s={}).position=[{x:119.63656520562202,y:39.933671205796976,z:0},{x:119.63815663468836,y:39.932453173454014,z:0},{x:119.64401093012856,y:39.93696954313539,z:0},{x:119.64310306937234,y:39.937636319317235,z:0},{x:119.64067686241225,y:39.93577194647972,z:0},{x:119.63989096094649,y:39.93620910728694,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="17973964c87346e7a4a737cf252557d9",i.push(s),(s={}).position=[{x:119.63754743402133,y:39.93267716217833,z:0},{x:119.63749711176295,y:39.932648883902765,z:0},{x:119.63925160333993,y:39.9309489023301,z:0},{x:119.63930680600298,y:39.93096482591318,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="17973964c87346e7a4a737cf252557d9",i.push(s),(s={}).position=[{x:119.63872992315174,y:39.93296918815291,z:0},{x:119.63869320294106,y:39.93293647507862,z:0},{x:119.6390202757239,y:39.932466759588735,z:0},{x:119.63905664677574,y:39.93249558059047,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="17973964c87346e7a4a737cf252557d9",i.push(s),(s={}).position=[{x:119.63920566671833,y:39.932432628510675,z:0},{x:119.63912404618962,y:39.93237396336053,z:0},{x:119.63986087191985,y:39.931306548060434,z:0},{x:119.63996037806737,y:39.93135317111763,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="17973964c87346e7a4a737cf252557d9",i.push(s),(s={}).position=[{x:119.63964257066128,y:39.93296063648527,z:0},{x:119.63973558445255,y:39.93290286054214,z:0},{x:119.63927007236592,y:39.93250350598812,z:0},{x:119.63917850234678,y:39.932571714637156,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="17973964c87346e7a4a737cf252557d9",i.push(s),(s={}).position=[{x:119.64213396619776,y:39.92447197982941,z:0},{x:119.6420103465287,y:39.92441620428773,z:0},{x:119.64533004850101,y:39.91965624833596,z:0},{x:119.64545188337536,y:39.919703161571434,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="17973964c87346e7a4a737cf252557d9",i.push(s),(s={}).position=[{x:119.64972497925632,y:39.92802812084183,z:0},{x:119.65004815557836,y:39.92815112311206,z:0},{x:119.65027654501807,y:39.92782282798926,z:0},{x:119.64996071224452,y:39.927686696649324,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="17973964c87346e7a4a737cf252557d9",i.push(s),(s={}).position=[{x:119.64041117503392,y:39.9342231454492,z:0},{x:119.64051850511102,y:39.93414533623525,z:0},{x:119.64077682118732,y:39.93436877065894,z:0},{x:119.64066923672407,y:39.93443574092789,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="17973964c87346e7a4a737cf252557d9",i.push(s),(s={}).position=[{x:119.64308077582515,y:39.933940025434715,z:0},{x:119.64330562254763,y:39.934022499582085,z:0},{x:119.64339039768552,y:39.93395687819388,z:0},{x:119.64371653196856,y:39.934079814764715,z:0},{x:119.64393029698927,y:39.933924450220616,z:0},{x:119.64429464587658,y:39.93340687991345,z:0},{x:119.64431037409076,y:39.93329038509608,z:0},{x:119.64369398772905,y:39.93303888892544,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="17973964c87346e7a4a737cf252557d9",i.push(s),(s={}).position=[{x:119.64263405834035,y:39.93361120621648,z:0},{x:119.64268293204054,y:39.93354560072864,z:0},{x:119.64308724300584,y:39.93371062018506,z:0},{x:119.64305121624878,y:39.93377999298185,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="17973964c87346e7a4a737cf252557d9",i.push(s),(s={}).position=[{x:119.67800577797544,y:39.94366940648384,z:0},{x:119.67801157828492,y:39.94363213239409,z:0},{x:119.67825012871306,y:39.94363132963787,z:0},{x:119.67824398194794,y:39.943673273622615,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",i.push(s),(s={}).position=[{x:119.67830505491503,y:39.9434729024242,z:0},{x:119.67830178488147,y:39.94343506924005,z:0},{x:119.67855835261055,y:39.943434951385356,z:0},{x:119.67855610451352,y:39.943469579564336,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",i.push(s),(s={}).position=[{x:119.67750677030915,y:39.94337600030043,z:0},{x:119.67750414959242,y:39.94320222457089,z:0},{x:119.67833166990596,y:39.943208041688045,z:0},{x:119.67831930897769,y:39.94337599747272,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",i.push(s),(s={}).position=[{x:119.6751935182987,y:39.941801241294385,z:0},{x:119.67570849049477,y:39.94180674339908,z:0},{x:119.67570233298274,y:39.9420086747346,z:0},{x:119.67519494297728,y:39.94200901509943,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",i.push(s),(s={}).position=[{x:119.6744283040683,y:39.941100062382795,z:0},{x:119.67463785516298,y:39.94108336357084,z:0},{x:119.67463296707302,y:39.94162581948733,z:0},{x:119.67442828753875,y:39.94162759310322,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",i.push(s),(s={}).position=[{x:119.6758684544244,y:39.94053156935218,z:0},{x:119.67512144871276,y:39.9405311887019,z:0},{x:119.67511165888983,y:39.94096222237271,z:0},{x:119.67585447111213,y:39.94096224850946,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",i.push(s),(s={}).position=[{x:119.67449087703991,y:39.93178506792666,z:0},{x:119.67450724381779,y:39.931284610149376,z:0},{x:119.67465233016013,y:39.93128667115916,z:0},{x:119.6746535040218,y:39.93179085803429,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",i.push(s),(s={}).position=[{x:119.67281595887235,y:39.92897851113215,z:0},{x:119.6728224081734,y:39.92897532752179,z:0},{x:119.67282878518564,y:39.928982053093364,z:0},{x:119.67282272617376,y:39.92898439007236,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",i.push(s),(s={}).position=[{x:119.67081415616018,y:39.92678126697028,z:0},{x:119.67082694536792,y:39.926774302971396,z:0},{x:119.67084042211849,y:39.9267879279168,z:0},{x:119.67082726631183,y:39.92679475667273,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",i.push(s),(s={}).position=[{x:119.66896185883004,y:39.92474176647186,z:0},{x:119.66897570613182,y:39.92473539476075,z:0},{x:119.66898683911936,y:39.924747214664116,z:0},{x:119.66897389106218,y:39.92475413632649,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",i.push(s),(s={}).position=[{x:119.66860339190582,y:39.92417118054609,z:0},{x:119.66867687928762,y:39.92413613363026,z:0},{x:119.6687721893423,y:39.92423532403165,z:0},{x:119.66868795137572,y:39.92426950221459,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",i.push(s),(s={}).position=[{x:119.68783621649946,y:39.94184728622914,z:0},{x:119.6877561010216,y:39.94194987812811,z:0},{x:119.68763528757448,y:39.94190606772886,z:0},{x:119.68770731761731,y:39.94180075033696,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",i.push(s),(s={}).position=[{x:119.68802638372686,y:39.94125069955985,z:0},{x:119.68801499984178,y:39.941569664885314,z:0},{x:119.68781267828008,y:39.94157203721129,z:0},{x:119.68781060974722,y:39.94124846699369,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",i.push(s),(s={}).position=[{x:119.67490790918407,y:39.94240242484619,z:0},{x:119.6748768253067,y:39.93974920451663,z:0},{x:119.69021696344464,y:39.939796231146104,z:0},{x:119.69022796344221,y:39.94116182595927,z:0},{x:119.69012283597573,y:39.941830319463655,z:0},{x:119.69010240131438,y:39.94239582628873,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",i.push(s),(s={}).position=[{x:119.67562113422039,y:39.94359926518197,z:0},{x:119.67469430775604,y:39.9435982164276,z:0},{x:119.67470972266426,y:39.93995973234047,z:0},{x:119.67464929220026,y:39.93996175164868,z:0},{x:119.67469795542517,y:39.931073032011895,z:0},{x:119.6685226334415,y:39.92415758625386,z:0},{x:119.66870418370803,y:39.92408842143489,z:0},{x:119.67490750263453,y:39.93098520941748,z:0},{x:119.67484473223257,y:39.94346069508629,z:0},{x:119.6756198500181,y:39.943470948652326,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",i.push(s),(s={}).position=[{x:119.67460763715643,y:39.935545126195024,z:0},{x:119.67443512187279,y:39.935546347127726,z:0},{x:119.67444259702191,y:39.935120728627915,z:0},{x:119.67460236396796,y:39.93513134965193,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",i.push(s),(s={}).position=[{x:119.67629873420383,y:39.93099851686908,z:0},{x:119.6762933512418,y:39.93118042005154,z:0},{x:119.67589769904696,y:39.93117894055168,z:0},{x:119.67591256154367,y:39.93100036757992,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=30,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",i.push(s),(s={}).position=[{x:119.67507782051187,y:39.94487891998667,z:0},{x:119.67508245432562,y:39.94471998362625,z:0},{x:119.67569985489394,y:39.94472042822285,z:0},{x:119.67569667476477,y:39.944877274527165,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",i.push(s),(s={}).position=[{x:119.66704166382888,y:39.93959833762887,z:0},{x:119.66705321809472,y:39.939447882039325,z:0},{x:119.66740069874093,y:39.93944753606949,z:0},{x:119.66739403736389,y:39.93960397853274,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",i.push(s),(s={}).position=[{x:119.67499037487018,y:39.93974800131876,z:0},{x:119.67498953692898,y:39.93550092802773,z:0},{x:119.67639987127417,y:39.93422228591011,z:0},{x:119.69014445879816,y:39.93424281039873,z:0},{x:119.69013355819042,y:39.93981954731732,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",i.push(s),(s={}).position=[{x:119.67499448301241,y:39.935033825530006,z:0},{x:119.67506999123101,y:39.93007821615478,z:0},{x:119.67650911621227,y:39.93007205411579,z:0},{x:119.67657372094533,y:39.929228088526656,z:0},{x:119.67678960160897,y:39.92923404474077,z:0},{x:119.67678952939828,y:39.93024710926163,z:0},{x:119.67527488202249,y:39.930283749925955,z:0},{x:119.67525328763331,y:39.93159747215857,z:0},{x:119.67541402310347,y:39.9316120243639,z:0},{x:119.67539522994394,y:39.93219800757377,z:0},{x:119.67523450157161,y:39.93220895274638,z:0},{x:119.67519893411327,y:39.93498901778559,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",i.push(s),(s={}).position=[{x:119.67517987603374,y:39.94436007182587,z:0},{x:119.6739215826516,y:39.94435978422898,z:0},{x:119.67400419453864,y:39.9357935976573,z:0},{x:119.66538518533802,y:39.92903618242686,z:0},{x:119.6655386064649,y:39.92892191727982,z:0},{x:119.67411797918862,y:39.93555173400339,z:0},{x:119.67428948499868,y:39.93554258074358,z:0},{x:119.67423531463575,y:39.94398745432029,z:0},{x:119.67519668899402,y:39.94400127601813,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",i.push(s),(s={}).position=[{x:119.66494933328019,y:39.93924343838436,z:0},{x:119.66462677841861,y:39.9392390141618,z:0},{x:119.66462927953022,y:39.93908316240938,z:0},{x:119.66494920433266,y:39.939086119628605,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=20,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",i.push(s),(s={}).position=[{x:119.58117848712533,y:39.90478281604072,z:0},{x:119.57769102651483,y:39.90455517716405,z:0},{x:119.57741612136304,y:39.906240747366816,z:0},{x:119.57652632797468,y:39.90620386680112,z:0},{x:119.57652251664975,y:39.90626066005691,z:0},{x:119.57562523997689,y:39.90622582118535,z:0},{x:119.57484385346122,y:39.906522413226014,z:0},{x:119.5747558255608,y:39.90657349523739,z:0},{x:119.57469882843516,y:39.906630049053696,z:0},{x:119.5746159978121,y:39.906767052577734,z:0},{x:119.57428837799316,y:39.90895685685924,z:0},{x:119.5742956367437,y:39.909021980565264,z:0},{x:119.57430370271337,y:39.90914309353309,z:0},{x:119.5743436263339,y:39.90924115410723,z:0},{x:119.57437552901635,y:39.90931354794999,z:0},{x:119.5744345140718,y:39.90940462561725,z:0},{x:119.57445561392794,y:39.90947637383431,z:0},{x:119.5742579289837,y:39.91146159141958,z:0},{x:119.57427628215413,y:39.91152464870472,z:0},{x:119.57429532245115,y:39.91158216663325,z:0},{x:119.57433042653169,y:39.9116266994055,z:0},{x:119.57437024121619,y:39.9116631549357,z:0},{x:119.57443155622302,y:39.91170098418947,z:0},{x:119.57451567670988,y:39.91173194239271,z:0},{x:119.57457698000444,y:39.9117388705594,z:0},{x:119.57462221192056,y:39.91175878763031,z:0},{x:119.57467533540576,y:39.911773608442765,z:0},{x:119.5788085478417,y:39.91204867240945,z:0},{x:119.57931015784106,y:39.910737662621095,z:0},{x:119.5803273340085,y:39.91072171467438,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",i.push(s),(s={}).position=[{x:119.57997628501828,y:39.914567446147686,z:0},{x:119.57998010533947,y:39.91233041315838,z:0},{x:119.58091006115838,y:39.91197850655835,z:0},{x:119.58118119103648,y:39.91196518810879,z:0},{x:119.58131850163633,y:39.91084633243689,z:0},{x:119.58707000597477,y:39.911212508345365,z:0},{x:119.58693769502496,y:39.91242926680729,z:0},{x:119.58684326758119,y:39.912498356194305,z:0},{x:119.58688757082578,y:39.91254427747327,z:0},{x:119.58679542857561,y:39.912585356909894,z:0},{x:119.58677155660895,y:39.912551733960825,z:0},{x:119.58340191398186,y:39.91457234372247,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",i.push(s),(s={}).position=[{x:119.58000438584654,y:39.915558592750756,z:0},{x:119.58000776714562,y:39.915186148155904,z:0},{x:119.5802720834832,y:39.91518330966353,z:0},{x:119.58026130685201,y:39.915490320289805,z:0},{x:119.58033946620849,y:39.91549036674123,z:0},{x:119.5803389105033,y:39.91541977348386,z:0},{x:119.58092579243042,y:39.91540007097154,z:0},{x:119.58091975575601,y:39.91568673188307,z:0},{x:119.58034976595825,y:39.915679452682234,z:0},{x:119.58035786867623,y:39.915552708753964,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=50,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",i.push(s),(s={}).position=[{x:119.57666702480377,y:39.91569444815642,z:0},{x:119.57667243794168,y:39.915517218952964,z:0},{x:119.57754107776641,y:39.91552127238838,z:0},{x:119.57754511600753,y:39.915686840944886,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",i.push(s),(s={}).position=[{x:119.58774485259829,y:39.91432884979729,z:0},{x:119.58779596395821,y:39.9137796361137,z:0},{x:119.59006650268925,y:39.91392062752697,z:0},{x:119.59002414598744,y:39.914514005816265,z:0},{x:119.58999885239993,y:39.914537235821975,z:0},{x:119.58997402923,y:39.91455270813735,z:0},{x:119.58994591783961,y:39.91456131589446,z:0},{x:119.58805028375012,y:39.91443656989022,z:0},{x:119.5878598631117,y:39.91441232985917,z:0},{x:119.58780505649274,y:39.91438739121363,z:0},{x:119.5877685135281,y:39.914359220326936,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",i.push(s),(s={}).position=[{x:119.58787841545336,y:39.9135750518558,z:0},{x:119.58834820185268,y:39.91360144416197,z:0},{x:119.58836458797202,y:39.91341599217544,z:0},{x:119.58790805442602,y:39.913378975428905,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",i.push(s),(s={}).position=[{x:119.58741574287505,y:39.91227213870339,z:0},{x:119.58748905399753,y:39.911299012900415,z:0},{x:119.5877588225989,y:39.91131703063218,z:0},{x:119.58768844398702,y:39.91228571119009,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",i.push(s),(s={}).position=[{x:119.588116934218,y:39.91127087660731,z:0},{x:119.58882066111585,y:39.91129982365278,z:0},{x:119.58836471595617,y:39.91206990169931,z:0},{x:119.58806846191926,y:39.91206851175068,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",i.push(s),(s={}).position=[{x:119.59003970590835,y:39.91594076925106,z:0},{x:119.59049223993652,y:39.91164498734871,z:0},{x:119.59311071280823,y:39.91180711520396,z:0},{x:119.59256780139754,y:39.91589966164207,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",i.push(s),(s={}).position=[{x:119.5877367670252,y:39.91116651249113,z:0},{x:119.58988879644606,y:39.911241546597026,z:0},{x:119.58989495317415,y:39.911079540188894,z:0},{x:119.59001154033473,y:39.911080075445184,z:0},{x:119.59014714517623,y:39.90891562377501,z:0},{x:119.59003851105763,y:39.90888268926315,z:0},{x:119.59004224306497,y:39.90859390668731,z:0},{x:119.59014552808024,y:39.90859072990763,z:0},{x:119.59028725897647,y:39.9070481938643,z:0},{x:119.58802449275527,y:39.90698400945029,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",i.push(s),(s={}).position=[{x:119.57637145143316,y:39.916361903058295,z:0},{x:119.57638188545043,y:39.9161572833152,z:0},{x:119.5777431096724,y:39.91615735401033,z:0},{x:119.57774518762871,y:39.9159432690818,z:0},{x:119.57917987436204,y:39.91595848977825,z:0},{x:119.57916300336194,y:39.91638780061855,z:0}],s.color="rgba(31,15,221,0.44)",s.stretchHeight=25,s.strokeColor="rgba(150,221,15,0.5)",s.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",i.push(s),i),wallList:(c=[],(l={}).position=[{x:119.64673898627382,y:39.93695049155527,z:0},{x:119.6466249946703,y:39.93709536445492,z:0},{x:119.64336814529418,y:39.93435288739157,z:0},{x:119.64395332173801,y:39.93392605155774,z:0},{x:119.64437571701616,y:39.93330767624788,z:0},{x:119.6449955142525,y:39.933575201730925,z:0},{x:119.64501890455008,y:39.933758658449214,z:0},{x:119.64527635242708,y:39.933788854526696,z:0},{x:119.6456814401741,y:39.93464996664863,z:0},{x:119.64558928095896,y:39.93472617322624,z:0},{x:119.64585213987058,y:39.93499665631861,z:0},{x:119.64577830103536,y:39.93504660092298,z:0},{x:119.64579416578277,y:39.93505804985874,z:0},{x:119.64578170215914,y:39.93517987549591,z:0},{x:119.64643655929397,y:39.936126089461865,z:0},{x:119.64673898627382,y:39.93695049155527,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="035958e685cf4850bc40151c5e0617a6",c.push(l),(l={}).position=[{x:119.65539210674117,y:39.935808889181196,z:0},{x:119.65416524340036,y:39.93548949737263,z:0},{x:119.65445139602654,y:39.93474682196149,z:0},{x:119.65333428940956,y:39.934456497717406,z:0},{x:119.65249497300076,y:39.936400535983665,z:0},{x:119.65149762427879,y:39.9361413977954,z:0},{x:119.65068986362597,y:39.93787480768788,z:0},{x:119.65025821704242,y:39.93775494685622,z:0},{x:119.6501373037934,y:39.93803162904284,z:0},{x:119.64743306990808,y:39.93730745178294,z:0},{x:119.64695113396809,y:39.93684869663789,z:0},{x:119.6465935645408,y:39.936078898651104,z:0},{x:119.64646589478481,y:39.93582437457903,z:0},{x:119.64687205658429,y:39.9349011629655,z:0},{x:119.64897265938434,y:39.935425614244956,z:0},{x:119.64975437606716,y:39.93362794061636,z:0},{x:119.65023138670696,y:39.93244829846609,z:0},{x:119.65260384832806,y:39.93293569229582,z:0},{x:119.65266575329045,y:39.932747559740484,z:0},{x:119.65287952848264,y:39.93268237953425,z:0},{x:119.65429519331823,y:39.92938405147888,z:0},{x:119.65428307444085,y:39.929382695140184,z:0},{x:119.65428095286076,y:39.92938100432816,z:0},{x:119.65432055392105,y:39.92928616074876,z:0},{x:119.65275735367547,y:39.92888987863908,z:0},{x:119.65278380509159,y:39.928817731386545,z:0},{x:119.6543553968586,y:39.92921633451317,z:0},{x:119.65544157649646,y:39.92667564757861,z:0},{x:119.65504008707649,y:39.9265669137436,z:0},{x:119.65498976606163,y:39.926661741915105,z:0},{x:119.65488122470033,y:39.92662972592281,z:0},{x:119.65507576709273,y:39.92618298314935,z:0},{x:119.65518293593118,y:39.926208787318316,z:0},{x:119.65515086925383,y:39.92629745524982,z:0},{x:119.65555536650258,y:39.926413348491366,z:0},{x:119.65606547968754,y:39.92522498388608,z:0},{x:119.6556603920158,y:39.92511782098337,z:0},{x:119.65561724779018,y:39.92521483698615,z:0},{x:119.65550364134022,y:39.92518469552557,z:0},{x:119.65570135181434,y:39.92473872000403,z:0},{x:119.65580417248295,y:39.92476764263632,z:0},{x:119.65577354837917,y:39.92486120823024,z:0},{x:119.65618267239104,y:39.924958815214225,z:0},{x:119.65626346943883,y:39.924766902134394,z:0},{x:119.65615999687158,y:39.92460734490084,z:0},{x:119.65628280272928,y:39.92433271912777,z:0},{x:119.65591018103173,y:39.92393257548641,z:0},{x:119.65585052099604,y:39.92395834775797,z:0},{x:119.65576428956464,y:39.92387491443957,z:0},{x:119.65579490632715,y:39.923862388118316,z:0},{x:119.65564388767758,y:39.92369533841947,z:0},{x:119.65561573294256,y:39.92369822983263,z:0},{x:119.65554283328218,y:39.923628504129006,z:0},{x:119.65557297934814,y:39.92360804465243,z:0},{x:119.65541894407131,y:39.92343924647805,z:0},{x:119.65538554183037,y:39.92345371813129,z:0},{x:119.6546465947787,y:39.922629582159395,z:0},{x:119.65471699636873,y:39.922598015924976,z:0},{x:119.6545696247693,y:39.92242394563676,z:0},{x:119.65449465356419,y:39.922456123672454,z:0},{x:119.65442945228202,y:39.922382731777674,z:0},{x:119.65449228177337,y:39.922336919749206,z:0},{x:119.65435034731571,y:39.92216834561795,z:0},{x:119.65427251010053,y:39.92220841300194,z:0},{x:119.65420359438808,y:39.922138659855584,z:0},{x:119.65423814546809,y:39.92210864642786,z:0},{x:119.65408634981002,y:39.92194178633746,z:0},{x:119.65404703848398,y:39.92196121875863,z:0},{x:119.6539773992039,y:39.92188681954335,z:0},{x:119.65417440253161,y:39.92178546078233,z:0},{x:119.65423972667352,y:39.92185602424866,z:0},{x:119.65417244940143,y:39.92190517913113,z:0},{x:119.65431842068676,y:39.92207184359236,z:0},{x:119.65439646377955,y:39.92203251543256,z:0},{x:119.65446246482837,y:39.9221093329178,z:0},{x:119.65438889508808,y:39.92215092396326,z:0},{x:119.65455247132887,y:39.92231447309467,z:0},{x:119.6546302501788,y:39.92229675182148,z:0},{x:119.6546941281426,y:39.92226600506431,z:0},{x:119.65540644143134,y:39.92305698062615,z:0},{x:119.65535233703582,y:39.92308315739795,z:0},{x:119.65552474122516,y:39.92328446528716,z:0},{x:119.65558563054734,y:39.923251726591715,z:0},{x:119.6558682990863,y:39.92355957905238,z:0},{x:119.65578145816126,y:39.923610705975385,z:0},{x:119.65593482417722,y:39.92378157981118,z:0},{x:119.65595811539265,y:39.92377255379803,z:0},{x:119.65603937332068,y:39.92385176010187,z:0},{x:119.65596566111364,y:39.923876980313196,z:0},{x:119.65634342832337,y:39.92430322014621,z:0},{x:119.65650459229478,y:39.9243065325619,z:0},{x:119.65677979611031,y:39.92401927370884,z:0},{x:119.65688748713713,y:39.92400497029927,z:0},{x:119.65740523009703,y:39.923420118626424,z:0},{x:119.6573046230579,y:39.92336742421721,z:0},{x:119.65746737503103,y:39.92318747361582,z:0},{x:119.65756311528658,y:39.92324342106581,z:0},{x:119.65779423049858,y:39.92295276642276,z:0},{x:119.65808008503447,y:39.92127666293158,z:0},{x:119.65795870695858,y:39.92127129352848,z:0},{x:119.6580340912396,y:39.92086479921096,z:0},{x:119.65815732490171,y:39.92087819166806,z:0},{x:119.65826883963484,y:39.92025677710495,z:0},{x:119.65792145612288,y:39.919853860139604,z:0},{x:119.65772107278235,y:39.91996018377445,z:0},{x:119.65774860481322,y:39.91999119034696,z:0},{x:119.65762179050012,y:39.92005815872244,z:0},{x:119.6575480464112,y:39.919979885387654,z:0},{x:119.6576731477301,y:39.9199175778281,z:0},{x:119.65767246338841,y:39.91991525850105,z:0},{x:119.65769948976391,y:39.91994453217276,z:0},{x:119.6579041323844,y:39.919834270332295,z:0},{x:119.65758121019638,y:39.9194750563902,z:0},{x:119.65755335595287,y:39.919495288458926,z:0},{x:119.65747840826508,y:39.91941506541302,z:0},{x:119.6576129111452,y:39.91935017282795,z:0},{x:119.65751103321216,y:39.91939841984784,z:0},{x:119.65710205641406,y:39.91894101287264,z:0},{x:119.65681101189668,y:39.91909249595107,z:0},{x:119.65687001194742,y:39.91915882796764,z:0},{x:119.65693535564643,y:39.919127385757434,z:0},{x:119.6570087686434,y:39.91920280056184,z:0},{x:119.65688535542319,y:39.919270719042366,z:0},{x:119.65681866377848,y:39.91919041194434,z:0},{x:119.65684061374697,y:39.91917611341617,z:0},{x:119.65678404244805,y:39.91911403354695,z:0},{x:119.65675791025545,y:39.91912740330923,z:0},{x:119.65668676142027,y:39.91904511131528,z:0},{x:119.65669702534994,y:39.91903874986723,z:0},{x:119.65643219307744,y:39.91874876054115,z:0},{x:119.65642049600095,y:39.91875191798267,z:0},{x:119.656350984154,y:39.918673406868834,z:0},{x:119.65637588916056,y:39.918659479214774,z:0},{x:119.65631910016357,y:39.918594619780336,z:0},{x:119.65629183381468,y:39.9186054781755,z:0},{x:119.65622567170213,y:39.91852686952323,z:0},{x:119.65634298611172,y:39.91846243296193,z:0},{x:119.6564135302561,y:39.91854286232652,z:0},{x:119.65635101633933,y:39.918577820116276,z:0},{x:119.65640955872065,y:39.918646534555386,z:0},{x:119.65668334318637,y:39.9184984635419,z:0},{x:119.65645521932045,y:39.9182424864133,z:0},{x:119.6564689013252,y:39.91823509460069,z:0},{x:119.65628854805625,y:39.91802649758608,z:0},{x:119.65636637820194,y:39.91797066998092,z:0},{x:119.65624614277021,y:39.918048086810764,z:0},{x:119.65624525673297,y:39.91804781162629,z:0},{x:119.65617819950499,y:39.917974523830495,z:0},{x:119.6561803522796,y:39.917972247436005,z:0},{x:119.65589686501474,y:39.91759228002331,z:0},{x:119.65569150758927,y:39.91769921573521,z:0},{x:119.65572296005287,y:39.91772653296448,z:0},{x:119.65559402548224,y:39.917798353357675,z:0},{x:119.65552291975328,y:39.9177216708788,z:0},{x:119.65564491049903,y:39.91765097401154,z:0},{x:119.65567858834781,y:39.91768265730419,z:0},{x:119.65587932278041,y:39.917570842142204,z:0},{x:119.65563062809653,y:39.91730391529898,z:0},{x:119.65571902818341,y:39.91725418406506,z:0},{x:119.65571968985934,y:39.917253981983464,z:0},{x:119.65840089006014,y:39.92023356031338,z:0},{x:119.65797245669856,y:39.923005642703174,z:0},{x:119.65664921206977,y:39.92450119206118,z:0},{x:119.65313165672958,y:39.93259912033207,z:0},{x:119.65427122172339,y:39.93289590067117,z:0},{x:119.65365161168606,y:39.934478972788206,z:0},{x:119.65573430550027,y:39.93500458747355,z:0},{x:119.65537968668642,y:39.935813232698884,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="035958e685cf4850bc40151c5e0617a6",c.push(l),(l={}).position=[{x:119.6751067623398,y:39.94583063719891,z:0},{x:119.67512410668246,y:39.945304548031054,z:0},{x:119.67574779346035,y:39.94527766302679,z:0},{x:119.6757526403552,y:39.944790209940294,z:0},{x:119.6791017710196,y:39.94478262222738,z:0},{x:119.67911077815896,y:39.94444906876087,z:0},{x:119.67976859774106,y:39.94445382099361,z:0},{x:119.67977708140097,y:39.94435631469692,z:0},{x:119.68002441469861,y:39.94435330922611,z:0},{x:119.68003905521327,y:39.9433708275193,z:0},{x:119.67987703936873,y:39.94336586074091,z:0},{x:119.67990988030778,y:39.942379637417886,z:0},{x:119.69024348131643,y:39.94241934778651,z:0},{x:119.69033093828355,y:39.93230768268547,z:0},{x:119.67687913510929,y:39.932283287625765,z:0},{x:119.6768688304027,y:39.93212283420026,z:0},{x:119.67636170683372,y:39.93213626602472,z:0},{x:119.6763715826716,y:39.93185137369531,z:0},{x:119.67637469369714,y:39.93126882339741,z:0},{x:119.67613225849209,y:39.931268081843,z:0},{x:119.67613206913929,y:39.93115595898834,z:0},{x:119.67625033529312,y:39.93116842502508,z:0},{x:119.67626235099496,y:39.93063702422077,z:0},{x:119.67673858236019,y:39.93063932064452,z:0},{x:119.67672056560363,y:39.92424314919875,z:0},{x:119.67683015398065,y:39.924227240896364,z:0},{x:119.6768831744748,y:39.91360736976071,z:0},{x:119.6773102464657,y:39.91363477286178,z:0},{x:119.67722221759334,y:39.923435800511314,z:0},{x:119.67927201891189,y:39.92505306425623,z:0},{x:119.69080051151018,y:39.925099029234495,z:0},{x:119.6907502473526,y:39.93279117791108,z:0},{x:119.6904987083243,y:39.932794810969874,z:0},{x:119.6904779497373,y:39.94263048168709,z:0},{x:119.69022801940878,y:39.94262252822251,z:0},{x:119.69025000579295,y:39.942577384823934,z:0},{x:119.68020182700431,y:39.94256839318844,z:0},{x:119.68019935397261,y:39.94544370028587,z:0},{x:119.6801889126522,y:39.94547155193541,z:0},{x:119.67908832634704,y:39.946077032575225,z:0},{x:119.67898925650994,y:39.9460649388611,z:0},{x:119.67897989048451,y:39.94608058249719,z:0},{x:119.6781189299355,y:39.94608981316312,z:0},{x:119.67813920398176,y:39.94585055402323,z:0},{x:119.6751067623398,y:39.94583063719891,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="21590a00ea5e462e9ee44dd332dddc26",c.push(l),(l={}).position=[{x:119.64580222433696,y:39.93860408059994,z:0},{x:119.6430735690051,y:39.93757187741933,z:0},{x:119.63965747104353,y:39.93592734143743,z:0},{x:119.63660556642719,y:39.933640716906545,z:0},{x:119.63646060610786,y:39.933798041677086,z:0},{x:119.63633262083562,y:39.93370182410181,z:0},{x:119.63662520286972,y:39.933386573922604,z:0},{x:119.63669187481052,y:39.93342270358874,z:0},{x:119.63689794642515,y:39.93321932044353,z:0},{x:119.63697125602322,y:39.932928572244066,z:0},{x:119.63657588785017,y:39.932678851941155,z:0},{x:119.636728857648,y:39.93241032459942,z:0},{x:119.63682529645652,y:39.93227915667195,z:0},{x:119.63726624558419,y:39.93226372080231,z:0},{x:119.63730354811383,y:39.932116649120914,z:0},{x:119.63692411642508,y:39.93211739584646,z:0},{x:119.63662551727495,y:39.93101755231486,z:0},{x:119.63456804631848,y:39.93177845902333,z:0},{x:119.63441480397867,y:39.93159452065328,z:0},{x:119.63142176814694,y:39.93161740109835,z:0},{x:119.63147382883676,y:39.93085765707147,z:0},{x:119.63225105636523,y:39.93086032366237,z:0},{x:119.63225018130956,y:39.931107454331126,z:0},{x:119.63304245672644,y:39.93109026704812,z:0},{x:119.63301206763724,y:39.93034509723775,z:0},{x:119.63146608857156,y:39.93033382518046,z:0},{x:119.63152322019157,y:39.92921586438896,z:0},{x:119.63382937275743,y:39.92973453996769,z:0},{x:119.63438760703268,y:39.92851618754936,z:0},{x:119.63477186278234,y:39.92865730834341,z:0},{x:119.63501707734031,y:39.92802823071524,z:0},{x:119.63516345700396,y:39.92773710129009,z:0},{x:119.63727193681616,y:39.92806541908901,z:0},{x:119.6381609429855,y:39.92832268346291,z:0},{x:119.64128492034037,y:39.923714202350716,z:0},{x:119.64213881525545,y:39.92402893190443,z:0},{x:119.64541354060208,y:39.91929249154692,z:0},{x:119.64615425183835,y:39.91958924901539,z:0},{x:119.64308524295913,y:39.924326686255284,z:0},{x:119.65064162339635,y:39.92751657028467,z:0},{x:119.65009820027043,y:39.92825019428598,z:0},{x:119.6496928534688,y:39.928112396653574,z:0},{x:119.64561170848495,y:39.93375388528297,z:0},{x:119.64550385601748,y:39.93370931863437,z:0},{x:119.64440215400387,y:39.93325141155883,z:0},{x:119.64394058832575,y:39.93393630690221,z:0},{x:119.64334275897482,y:39.9343525263746,z:0},{x:119.64285011733118,y:39.93400089855195,z:0},{x:119.64166759628493,y:39.93481943894164,z:0},{x:119.64605283619505,y:39.93841616152306,z:0},{x:119.64580222433696,y:39.93860408059994,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="17973964c87346e7a4a737cf252557d9",c.push(l),(l={}).position=[{x:119.63625753093825,y:39.92939541875477,z:0},{x:119.63522928026349,y:39.92894573907137,z:0},{x:119.6357851057548,y:39.92809876154662,z:0},{x:119.63709025568843,y:39.92862541879735,z:0},{x:119.636573711652,y:39.92945130390509,z:0},{x:119.63625753093825,y:39.92939541875477,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="17973964c87346e7a4a737cf252557d9",c.push(l),(l={}).position=[{x:119.69026709225359,y:39.939959307341425,z:0},{x:119.6902657236923,y:39.94029133125993,z:0},{x:119.69023651601711,y:39.94035327469283,z:0},{x:119.69023475920852,y:39.94117221724672,z:0},{x:119.69009114306948,y:39.941877971096766,z:0},{x:119.6901022334955,y:39.94241453467448,z:0},{x:119.6799738766371,y:39.94238528755357,z:0},{x:119.67994583456115,y:39.94255133536705,z:0},{x:119.67425111079757,y:39.94251425024625,z:0},{x:119.67425068895068,y:39.94232599079531,z:0},{x:119.67430776636726,y:39.94232606238877,z:0},{x:119.67430890025949,y:39.93998637589134,z:0},{x:119.67468013496408,y:39.93997652094425,z:0},{x:119.67472274530567,y:39.934523665371515,z:0},{x:119.67456708022763,y:39.93451754837523,z:0},{x:119.67458029860984,y:39.931942380775645,z:0},{x:119.6744287593331,y:39.931769352494655,z:0},{x:119.67443545823222,y:39.931279125927844,z:0},{x:119.67455872067275,y:39.931019335581254,z:0},{x:119.66831234657174,y:39.92406838688246,z:0},{x:119.66861259045588,y:39.92392036451213,z:0},{x:119.66875715187625,y:39.924075470062974,z:0},{x:119.66867288080569,y:39.924112453996074,z:0},{x:119.67421081633378,y:39.930189002849,z:0},{x:119.67426163797583,y:39.93016634883235,z:0},{x:119.67508450420152,y:39.931071058856645,z:0},{x:119.67509892250125,y:39.93111549248057,z:0},{x:119.6748934944066,y:39.93178842416309,z:0},{x:119.67485785633374,y:39.938621553751254,z:0},{x:119.67492906068301,y:39.93862240131258,z:0},{x:119.674923862998,y:39.93974750301125,z:0},{x:119.67536600278821,y:39.93974405127765,z:0},{x:119.67537766396603,y:39.93974485751214,z:0},{x:119.675379357561,y:39.93976140315004,z:0},{x:119.68961414387958,y:39.93979504415343,z:0},{x:119.68961777023577,y:39.93996373329827,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",c.push(l),(l={}).position=[{x:119.67370329774398,y:39.94017770222777,z:0},{x:119.67308445549457,y:39.94018103861135,z:0},{x:119.67281316623944,y:39.9405488277416,z:0},{x:119.67282166973705,y:39.94074405243442,z:0},{x:119.67368269008601,y:39.94074722853521,z:0},{x:119.67369881283976,y:39.94115092051045,z:0},{x:119.67373311219905,y:39.94114522242944,z:0},{x:119.67375716664344,y:39.941848411646184,z:0},{x:119.67277186773717,y:39.94186580981056,z:0},{x:119.67276554059629,y:39.94197731350795,z:0},{x:119.67266702828661,y:39.94197220383832,z:0},{x:119.67266612538626,y:39.942128442380756,z:0},{x:119.67275110893364,y:39.942121607324516,z:0},{x:119.67276734784532,y:39.94256282356344,z:0},{x:119.6737947298331,y:39.94256298711579,z:0},{x:119.673804723138,y:39.942700333742,z:0},{x:119.67376202388434,y:39.94273465824976,z:0},{x:119.67083054908561,y:39.94267464552883,z:0},{x:119.67080988849493,y:39.94157182518861,z:0},{x:119.6714292669501,y:39.941316848615806,z:0},{x:119.67086238190048,y:39.94060721745596,z:0},{x:119.67071714263551,y:39.940682025750775,z:0},{x:119.67054891391062,y:39.940738363562296,z:0},{x:119.67044063779718,y:39.94076534596536,z:0},{x:119.6703156837744,y:39.94079725269308,z:0},{x:119.66936188837289,y:39.940774255452325,z:0},{x:119.66936420356234,y:39.94002808380482,z:0},{x:119.67173990345138,y:39.94003168657234,z:0},{x:119.6709179111831,y:39.94057546282488,z:0},{x:119.67154592453703,y:39.94133001213521,z:0},{x:119.6730299350026,y:39.9400014966469,z:0},{x:119.67369268809365,y:39.93998810397058,z:0},{x:119.673705341538,y:39.93982301472752,z:0},{x:119.6737033505473,y:39.93982289350188,z:0},{x:119.67192303544185,y:39.9398077994245,z:0},{x:119.67175148360111,y:39.939790343514986,z:0},{x:119.66456816075758,y:39.93975833363009,z:0},{x:119.664453250618,y:39.939607749586585,z:0},{x:119.66439186572751,y:39.93956979152993,z:0},{x:119.66440802490165,y:39.93950895488159,z:0},{x:119.66427602147043,y:39.93948619386303,z:0},{x:119.66400315284689,y:39.939464763272944,z:0},{x:119.66094978491692,y:39.93944853521337,z:0},{x:119.6608549807936,y:39.93944341622934,z:0},{x:119.66079143481092,y:39.93943712251065,z:0},{x:119.66071739990203,y:39.939417752147975,z:0},{x:119.66063509792433,y:39.93939350821414,z:0},{x:119.66000785128125,y:39.93910048677637,z:0},{x:119.65983181477371,y:39.93904479056196,z:0},{x:119.65737890855135,y:39.93899612586272,z:0},{x:119.65721677209804,y:39.93899349552417,z:0},{x:119.65694650946942,y:39.93900720221057,z:0},{x:119.65675308665128,y:39.939052450426736,z:0},{x:119.656668900457,y:39.93906116893998,z:0},{x:119.65659570944408,y:39.93906499482836,z:0},{x:119.65522646388563,y:39.93902564227524,z:0},{x:119.65518757493331,y:39.939041643013645,z:0},{x:119.65503239238394,y:39.93900762791513,z:0},{x:119.65517043018379,y:39.93894299648307,z:0},{x:119.65519258513713,y:39.93893671071023,z:0},{x:119.65650440517946,y:39.93898240658435,z:0},{x:119.65661472259157,y:39.93897041112933,z:0},{x:119.65685756220334,y:39.93892688518211,z:0},{x:119.657041403332,y:39.938911842699916,z:0},{x:119.65965129149647,y:39.938942821291114,z:0},{x:119.65981857790844,y:39.93895487987331,z:0},{x:119.6599284695741,y:39.938972557797065,z:0},{x:119.66070361015022,y:39.939320456703406,z:0},{x:119.66077985662326,y:39.93934853121841,z:0},{x:119.66083187776738,y:39.93935883792567,z:0},{x:119.66092131739309,y:39.939365171381006,z:0},{x:119.66413834548952,y:39.93939463361134,z:0},{x:119.66423368335312,y:39.939401216780944,z:0},{x:119.66569674829395,y:39.939658219154744,z:0},{x:119.66582615813806,y:39.93966938230595,z:0},{x:119.67029110500816,y:39.939693081754434,z:0},{x:119.67031741941908,y:39.93948144343681,z:0},{x:119.6703206966215,y:39.937917956656065,z:0},{x:119.67031303009998,y:39.937872409135174,z:0},{x:119.67037972784804,y:39.937785875447055,z:0},{x:119.6704528830407,y:39.93772003180071,z:0},{x:119.67050038965624,y:39.93775541859222,z:0},{x:119.67046709619018,y:39.937784756504726,z:0},{x:119.6704420533892,y:39.93781458419539,z:0},{x:119.6704216258382,y:39.937849661741296,z:0},{x:119.6704140963825,y:39.93786939256316,z:0},{x:119.67039889813339,y:39.93890756868146,z:0},{x:119.67126731703233,y:39.93890010442436,z:0},{x:119.67126711987896,y:39.939007521528104,z:0},{x:119.67146233806736,y:39.939011992206055,z:0},{x:119.67144844303586,y:39.9391841169731,z:0},{x:119.6718205197606,y:39.93918256832217,z:0},{x:119.67185247496259,y:39.93919281526193,z:0},{x:119.67184456557102,y:39.9397151880153,z:0},{x:119.67195850061309,y:39.93973796764028,z:0},{x:119.67198465574202,y:39.93974252773775,z:0},{x:119.67200257593797,y:39.9397398699041,z:0},{x:119.67199972760534,y:39.93972282610738,z:0},{x:119.6738398694679,y:39.93970355935926,z:0},{x:119.673844360402,y:39.939587630645924,z:0},{x:119.67399694116166,y:39.939588561878686,z:0},{x:119.67398986507254,y:39.939993049707844,z:0},{x:119.67405121087612,y:39.93999377003167,z:0},{x:119.67402225583503,y:39.94251220482564,z:0},{x:119.67381529882577,y:39.94251782062903,z:0},{x:119.67381747055207,y:39.94241881413395,z:0},{x:119.67371187665663,y:39.94240955860221,z:0},{x:119.67375716664344,y:39.941848411646184,z:0},{x:119.67373311219905,y:39.94114522242944,z:0},{x:119.67369881283976,y:39.94115092051045,z:0},{x:119.67368269008601,y:39.94074722853521,z:0},{x:119.67370329774398,y:39.94017770222777,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",c.push(l),(l={}).position=[{x:119.67133011993758,y:39.938485867034636,z:0},{x:119.671334087664,y:39.93833750201712,z:0},{x:119.67131272690669,y:39.93833584110752,z:0},{x:119.67131282992288,y:39.93827135623277,z:0},{x:119.67149778005839,y:39.93826945603901,z:0},{x:119.67150094077938,y:39.93834232433486,z:0},{x:119.67148822307044,y:39.93834431027324,z:0},{x:119.67149634422837,y:39.93849093472964,z:0},{x:119.67133011993758,y:39.938485867034636,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",c.push(l),(l={}).position=[{x:119.67445070629937,y:39.943052352953366,z:0},{x:119.6744505522605,y:39.94367120551439,z:0},{x:119.67471253623953,y:39.94366858620719,z:0},{x:119.67471311178156,y:39.94375187054792,z:0},{x:119.67717264342646,y:39.943739290955854,z:0},{x:119.67717951819668,y:39.94376653025676,z:0},{x:119.6778720481521,y:39.94375547343021,z:0},{x:119.67787138843244,y:39.943827025085355,z:0},{x:119.67937216505322,y:39.9438320454647,z:0},{x:119.67931935988085,y:39.94335435642947,z:0},{x:119.6783979352085,y:39.94333387378132,z:0},{x:119.67840373217408,y:39.94310944881982,z:0},{x:119.67445070629937,y:39.943052352953366,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="97b87eba9f9c49a0a917c1f412016fb1",c.push(l),(l={}).position=[{x:119.67908191594259,y:39.944509199146,z:0},{x:119.67790877806215,y:39.94455939198014,z:0},{x:119.67790121701665,y:39.944745373313125,z:0},{x:119.67732200153608,y:39.944757144787715,z:0},{x:119.67729133801198,y:39.94461547518763,z:0},{x:119.67576849854609,y:39.944642081818884,z:0},{x:119.6757541792955,y:39.94488978166798,z:0},{x:119.67575787306616,y:39.94487506223278,z:0},{x:119.674001345205,y:39.94486033969903,z:0},{x:119.67411712683396,y:39.935771360462276,z:0},{x:119.66529034740455,y:39.928945499100806,z:0},{x:119.66540780380085,y:39.928837367161975,z:0},{x:119.6733762213475,y:39.93492876797454,z:0},{x:119.67465370640592,y:39.9345260073866,z:0},{x:119.67460617920999,y:39.93575197995733,z:0},{x:119.67429433645003,y:39.935798292130265,z:0},{x:119.67422987624647,y:39.94396349577328,z:0},{x:119.67507881569863,y:39.943972360243215,z:0},{x:119.67509094083799,y:39.943851008942566,z:0},{x:119.67612325179566,y:39.94383342548422,z:0},{x:119.67611687523495,y:39.943954622031725,z:0},{x:119.67909787187156,y:39.94394275671244,z:0},{x:119.67908191594259,y:39.944509199146,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",c.push(l),(l={}).position=[{x:119.67333942712318,y:39.93972591302843,z:0},{x:119.67342990898017,y:39.93935872045878,z:0},{x:119.67379014154528,y:39.93935474416131,z:0},{x:119.67378247619273,y:39.9389857506817,z:0},{x:119.67357669239259,y:39.93899684920597,z:0},{x:119.67354732273922,y:39.938998484491805,z:0},{x:119.67401805349402,y:39.93826651860986,z:0},{x:119.67405542593379,y:39.935796601944425,z:0},{x:119.67402942121655,y:39.93572744906576,z:0},{x:119.67316903733861,y:39.93503236292138,z:0},{x:119.67316225381173,y:39.935165061360856,z:0},{x:119.67385796072745,y:39.93571555681515,z:0},{x:119.673995868886,y:39.935937217693144,z:0},{x:119.67387978952642,y:39.93828515029303,z:0},{x:119.67321304392728,y:39.93973720399089,z:0},{x:119.67333942712318,y:39.93972591302843,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",c.push(l),(l={}).position=[{x:119.67494820472794,y:39.93969385299922,z:0},{x:119.67489183237791,y:39.93176001293403,z:0},{x:119.67501012139053,y:39.931559388783704,z:0},{x:119.67507912824402,y:39.931519535916266,z:0},{x:119.67511023019928,y:39.93073996234052,z:0},{x:119.67489643038417,y:39.92997903564829,z:0},{x:119.67630538212238,y:39.92998004815746,z:0},{x:119.67649013297024,y:39.92985895557349,z:0},{x:119.67650151692646,y:39.9243070522985,z:0},{x:119.67675693777412,y:39.924313941497715,z:0},{x:119.67674046404521,y:39.930252026581336,z:0},{x:119.67641641005653,y:39.93023036650402,z:0},{x:119.67641909855394,y:39.93029362761589,z:0},{x:119.67665159968162,y:39.930423962186296,z:0},{x:119.67671221032231,y:39.93048565490223,z:0},{x:119.67669086979767,y:39.930593122055434,z:0},{x:119.67610176623592,y:39.93059346011395,z:0},{x:119.67611852872041,y:39.93044357485748,z:0},{x:119.67612120241019,y:39.93024036054618,z:0},{x:119.67519562461584,y:39.930239860747854,z:0},{x:119.67521304406627,y:39.93144325699733,z:0},{x:119.67588443137484,y:39.93113646544746,z:0},{x:119.67586905717265,y:39.93101203420417,z:0},{x:119.67632723707166,y:39.93098999712726,z:0},{x:119.67629195118745,y:39.93131111416917,z:0},{x:119.67572475598227,y:39.93126752478297,z:0},{x:119.67549404417056,y:39.93136957317272,z:0},{x:119.67551738853264,y:39.93169427305453,z:0},{x:119.67569599956818,y:39.9317042717478,z:0},{x:119.67569344160677,y:39.93193544462283,z:0},{x:119.67540080773882,y:39.93193750185082,z:0},{x:119.67538785929533,y:39.932214593515845,z:0},{x:119.67521166693938,y:39.93222655854835,z:0},{x:119.67522989540174,y:39.93499988669592,z:0},{x:119.67542801195464,y:39.93534736849649,z:0},{x:119.67638655642621,y:39.93426651698974,z:0},{x:119.69013052799365,y:39.934232827219844,z:0},{x:119.69018970954367,y:39.939968247868734,z:0},{x:119.68960746477958,y:39.93995488942554,z:0},{x:119.68960462198662,y:39.939808447838935,z:0},{x:119.68918231188933,y:39.93979962744345,z:0},{x:119.67500373882703,y:39.939688804921786,z:0},{x:119.67494820472794,y:39.93969385299922,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",c.push(l),(l={}).position=[{x:119.67349812056412,y:39.94337686241761,z:0},{x:119.67349868213589,y:39.94335587871971,z:0},{x:119.67345270761886,y:39.94335290041644,z:0},{x:119.67345532946408,y:39.94312348723804,z:0},{x:119.67357094753244,y:39.94312098704141,z:0},{x:119.67357694746218,y:39.94317662570811,z:0},{x:119.6736256814458,y:39.943215636118815,z:0},{x:119.67398181770714,y:39.94320485587065,z:0},{x:119.67395963685965,y:39.94331394109846,z:0},{x:119.67395791782084,y:39.94333284305618,z:0},{x:119.67349812056412,y:39.94337686241761,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",c.push(l),(l={}).position=[{x:119.66661543835632,y:39.93964486620694,z:0},{x:119.66662199643311,y:39.937851776377855,z:0},{x:119.66683429191572,y:39.93784332707287,z:0},{x:119.66682727811558,y:39.93772703403941,z:0},{x:119.66662656882198,y:39.937727759620735,z:0},{x:119.66661799623625,y:39.9373811371402,z:0},{x:119.66788795165245,y:39.937374801898,z:0},{x:119.66788530174328,y:39.938044286211976,z:0},{x:119.6670265694096,y:39.93803995043613,z:0},{x:119.6670266301616,y:39.9389012623889,z:0},{x:119.66828181197336,y:39.938901326954785,z:0},{x:119.66828527679881,y:39.93875346598298,z:0},{x:119.66862116332729,y:39.938755171245816,z:0},{x:119.66862097064958,y:39.939645325729686,z:0},{x:119.66661543835632,y:39.93964486620694,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",c.push(l),(l={}).position=[{x:119.66436604634856,y:39.9393232853991,z:0},{x:119.66437244049611,y:39.93896086444239,z:0},{x:119.665019229578,y:39.938966041829154,z:0},{x:119.66501692305098,y:39.939441472725356,z:0},{x:119.66436604634856,y:39.9393232853991,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",c.push(l),(l={}).position=[{x:119.67251337164645,y:39.94310832978487,z:0},{x:119.67248741125842,y:39.94354645617208,z:0},{x:119.67215762607294,y:39.94364386777649,z:0},{x:119.67194883872331,y:39.94371523423039,z:0},{x:119.67172682841684,y:39.94382516952151,z:0},{x:119.6712543675269,y:39.94408269239913,z:0},{x:119.67047669292809,y:39.943744912178786,z:0},{x:119.67029646382588,y:39.943656070090874,z:0},{x:119.67016294320862,y:39.943597364645676,z:0},{x:119.6701048634384,y:39.94354348985368,z:0},{x:119.66999692354672,y:39.94344010082964,z:0},{x:119.66995636169392,y:39.943375072980395,z:0},{x:119.66993548573,y:39.9430985648467,z:0},{x:119.67024362487076,y:39.94309990694306,z:0},{x:119.67251337164645,y:39.94310832978487,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",c.push(l),(l={}).position=[{x:119.67635254375318,y:39.93213662993375,z:0},{x:119.67620264886968,y:39.93213728456356,z:0},{x:119.67598063501755,y:39.931745048134,z:0},{x:119.67596928492468,y:39.93131693131396,z:0},{x:119.67636856480954,y:39.93126801853143,z:0},{x:119.67635254375318,y:39.93213662993375,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",c.push(l),(l={}).position=[{x:119.67423904018469,y:39.943358813709885,z:0},{x:119.67445027814146,y:39.94337152198125,z:0},{x:119.67445531794358,y:39.94310886752103,z:0},{x:119.6742405319327,y:39.94312463288936,z:0},{x:119.67423904018469,y:39.943358813709885,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="286dcae730aa43ba82c97a676f9d8ee2",c.push(l),(l={}).position=[{x:119.6713182349459,y:39.92703549775599,z:0},{x:119.66876959393859,y:39.92420039298484,z:0},{x:119.6688448215997,y:39.92416090903986,z:0},{x:119.66863751855908,y:39.923929851226696,z:0},{x:119.66894216337846,y:39.92377030040876,z:0},{x:119.67170945373839,y:39.92683812016525,z:0},{x:119.6713182349459,y:39.92703549775599,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",c.push(l),(l={}).position=[{x:119.67521540208294,y:39.93407006952337,z:0},{x:119.67520767210743,y:39.93341501115877,z:0},{x:119.67605933983516,y:39.93340206437196,z:0},{x:119.67598906383137,y:39.93405868977045,z:0},{x:119.67521540208294,y:39.93407006952337,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",c.push(l),(l={}).position=[{x:119.68952567158819,y:39.934033128631825,z:0},{x:119.6895225809118,y:39.933649219825426,z:0},{x:119.68977588197268,y:39.93364921484732,z:0},{x:119.68977874925928,y:39.934035484031405,z:0},{x:119.68952567158819,y:39.934033128631825,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",c.push(l),(l={}).position=[{x:119.57770254425378,y:39.904549519853106,z:0},{x:119.57766833250179,y:39.90481179669068,z:0},{x:119.5772984937207,y:39.90479423576016,z:0},{x:119.57725553511611,y:39.9050808919099,z:0},{x:119.57754416281969,y:39.90510641081224,z:0},{x:119.57741771437918,y:39.90624015952469,z:0},{x:119.5765309787088,y:39.90618906764797,z:0},{x:119.57652357282183,y:39.90624742571758,z:0},{x:119.57566089171713,y:39.90621616915249,z:0},{x:119.57485408416979,y:39.90652021050836,z:0},{x:119.57474738411952,y:39.9065819686316,z:0},{x:119.57469544926343,y:39.90663458248766,z:0},{x:119.57464983251212,y:39.906696985085134,z:0},{x:119.57461181611107,y:39.90677111450941,z:0},{x:119.57429648706962,y:39.90892471108983,z:0},{x:119.57429803791628,y:39.909055334128226,z:0},{x:119.57431195866403,y:39.90915629616341,z:0},{x:119.57435544599039,y:39.90927600759692,z:0},{x:119.57442653313812,y:39.90940752487129,z:0},{x:119.57444459399882,y:39.909469585732644,z:0},{x:119.5742486780843,y:39.911449521491285,z:0},{x:119.57427315346717,y:39.911549951729235,z:0},{x:119.57431532752535,y:39.91161988425218,z:0},{x:119.57438565611884,y:39.91167803266324,z:0},{x:119.5744575138536,y:39.911722236397466,z:0},{x:119.5745729763389,y:39.91176073164958,z:0},{x:119.57467530779724,y:39.911777184421815,z:0},{x:119.57956655477867,y:39.91211729646211,z:0},{x:119.57963188168216,y:39.912078180544135,z:0},{x:119.57975098160794,y:39.911996287914874,z:0},{x:119.57982831069818,y:39.911977341039766,z:0},{x:119.57989336932798,y:39.91196876587837,z:0},{x:119.57995580744547,y:39.91197735755794,z:0},{x:119.58004760329163,y:39.912003812489466,z:0},{x:119.58014211804873,y:39.912038749074306,z:0},{x:119.58026111083389,y:39.91214643011204,z:0},{x:119.58007145217813,y:39.912234414235186,z:0},{x:119.5800100415418,y:39.91228170490535,z:0},{x:119.57991328593032,y:39.91237257562294,z:0},{x:119.57984139858237,y:39.91250368750024,z:0},{x:119.57984136696355,y:39.912545378840825,z:0},{x:119.57982832348813,y:39.91455720971513,z:0},{x:119.57987940357982,y:39.91459779521126,z:0},{x:119.57992383901365,y:39.91462694980002,z:0},{x:119.57996499890724,y:39.914630754116445,z:0},{x:119.58341993915144,y:39.914638823894094,z:0},{x:119.58659306343286,y:39.91272329087496,z:0},{x:119.58660923555581,y:39.912645196497316,z:0},{x:119.5867609209427,y:39.91255160940379,z:0},{x:119.58680892867595,y:39.91259833264443,z:0},{x:119.58689091982811,y:39.91254760000035,z:0},{x:119.5868489027981,y:39.912502087783835,z:0},{x:119.58695449768076,y:39.91243769615427,z:0},{x:119.58697398799362,y:39.91227712792928,z:0},{x:119.58732641436083,y:39.9122249936766,z:0},{x:119.58748013096309,y:39.912276543728915,z:0},{x:119.58773993955026,y:39.912285706726244,z:0},{x:119.58778808145354,y:39.91181428199587,z:0},{x:119.58809926714876,y:39.91182641853889,z:0},{x:119.58807350686376,y:39.9122296038123,z:0},{x:119.58801180776467,y:39.91227825159271,z:0},{x:119.5879587875403,y:39.91229141840513,z:0},{x:119.58790184249425,y:39.91233000608861,z:0},{x:119.58789392459776,y:39.912612760736906,z:0},{x:119.58796079625412,y:39.91260413508922,z:0},{x:119.58808407459205,y:39.912686343692556,z:0},{x:119.58803871216408,y:39.91309116549331,z:0},{x:119.58799847264127,y:39.9130918276384,z:0},{x:119.58797769113062,y:39.91321458859543,z:0},{x:119.58792915867204,y:39.91324562018699,z:0},{x:119.58788849269702,y:39.91351747238029,z:0},{x:119.58783541289534,y:39.913530323910685,z:0},{x:119.58774656872474,y:39.91433206523015,z:0},{x:119.58778128386412,y:39.914372857087905,z:0},{x:119.58784158714116,y:39.914410447399725,z:0},{x:119.58803740356505,y:39.91444294889036,z:0},{x:119.59011811695338,y:39.9145736748028,z:0},{x:119.5899676572724,y:39.915973002901936,z:0},{x:119.59260752632605,y:39.915974596732504,z:0},{x:119.59275743962912,y:39.91468606671474,z:0},{x:119.59304964726697,y:39.91472769338875,z:0},{x:119.59311701054975,y:39.91404803729821,z:0},{x:119.59305299783104,y:39.9138070020192,z:0},{x:119.59308501205894,y:39.91353804463131,z:0},{x:119.593117325707,y:39.91349739883052,z:0},{x:119.59317177600377,y:39.913471069796515,z:0},{x:119.59316456484842,y:39.91347565619897,z:0},{x:119.59323933246293,y:39.912723434813564,z:0},{x:119.59446725604063,y:39.91279876181986,z:0},{x:119.59449330570241,y:39.91259771284533,z:0},{x:119.5960080249933,y:39.91269679147122,z:0},{x:119.59608201400071,y:39.91203776302274,z:0},{x:119.59624135974252,y:39.91187965335392,z:0},{x:119.5962473950665,y:39.91177703503281,z:0},{x:119.59627794306708,y:39.91177793195998,z:0},{x:119.59630226574932,y:39.911365017422945,z:0},{x:119.5903391320645,y:39.910980461490745,z:0},{x:119.59078721931688,y:39.90717571689755,z:0},{x:119.5906211634232,y:39.90688052742102,z:0},{x:119.5875934429692,y:39.90675172287509,z:0},{x:119.58735822144082,y:39.91045255996862,z:0},{x:119.58139260835024,y:39.910061576950966,z:0},{x:119.58198213436056,y:39.904839374516875,z:0},{x:119.57770254425378,y:39.904549519853106,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",c.push(l),(l={}).position=[{x:119.59298373730392,y:39.91404507866786,z:0},{x:119.59292376369237,y:39.91419852437591,z:0},{x:119.5928712917349,y:39.91465288120828,z:0},{x:119.59295973330813,y:39.91465255437798,z:0},{x:119.59301013974607,y:39.914212278421964,z:0},{x:119.59298373730392,y:39.91404507866786,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",c.push(l),(l={}).position=[{x:119.5771684088119,y:39.91462349092898,z:0},{x:119.57713927147974,y:39.914577138738956,z:0},{x:119.57713293802018,y:39.914521419835644,z:0},{x:119.57825573792674,y:39.91361149190688,z:0},{x:119.5778757953059,y:39.91341687870854,z:0},{x:119.57769119943849,y:39.91330948697441,z:0},{x:119.57798846874842,y:39.91294204854844,z:0},{x:119.57814067605722,y:39.91276205824166,z:0},{x:119.57881548519454,y:39.91217689175554,z:0},{x:119.57943246178833,y:39.912216100658554,z:0},{x:119.57954015625585,y:39.91224779383051,z:0},{x:119.57958942096984,y:39.91227606129798,z:0},{x:119.57961172496857,y:39.91230497023632,z:0},{x:119.57960784956228,y:39.91232975387743,z:0},{x:119.57958334806163,y:39.91236330836388,z:0},{x:119.57914551160101,y:39.91269666406057,z:0},{x:119.5791655035689,y:39.912705868899415,z:0},{x:119.5781765386133,y:39.91350108326704,z:0},{x:119.57831318165162,y:39.91356138529511,z:0},{x:119.57957190164741,y:39.91253385508359,z:0},{x:119.57957449201419,y:39.912528203664756,z:0},{x:119.57960013966374,y:39.912529921607245,z:0},{x:119.57963125072804,y:39.91253164182572,z:0},{x:119.57965783303617,y:39.91254313074473,z:0},{x:119.57966522437604,y:39.91255508883683,z:0},{x:119.57967667585528,y:39.9125675309373,z:0},{x:119.57969881901523,y:39.91257363705185,z:0},{x:119.5796844039771,y:39.91455776927595,z:0},{x:119.57967197630964,y:39.91457560440109,z:0},{x:119.57965936544379,y:39.9145923002093,z:0},{x:119.57963202356487,y:39.914594217222096,z:0},{x:119.57960665420882,y:39.91461033828458,z:0},{x:119.5795821555722,y:39.91462670821322,z:0},{x:119.5771684088119,y:39.91462349092898,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",c.push(l),(l={}).position=[{x:119.57753963233583,y:39.914864835231064,z:0},{x:119.57753869188171,y:39.91507333721912,z:0},{x:119.57751370832776,y:39.91509134601802,z:0},{x:119.57683581461778,y:39.91508819810984,z:0},{x:119.57683977877218,y:39.91486220022347,z:0},{x:119.57658558134581,y:39.914737535662354,z:0},{x:119.57659826162889,y:39.91535702225842,z:0},{x:119.57619647571023,y:39.91535929839033,z:0},{x:119.57614427821974,y:39.9163609350092,z:0},{x:119.5791643500892,y:39.91639029494303,z:0},{x:119.57918287601119,y:39.91595536353504,z:0},{x:119.57773832132706,y:39.91593260229147,z:0},{x:119.57773597249323,y:39.915248338133075,z:0},{x:119.57847487731249,y:39.91524568485817,z:0},{x:119.57847206836783,y:39.91479969202527,z:0},{x:119.57921872646062,y:39.914808222228125,z:0},{x:119.57919934838097,y:39.91515399112796,z:0},{x:119.57944649953588,y:39.91515441325411,z:0},{x:119.57968136272581,y:39.915175442307444,z:0},{x:119.5796820130213,y:39.9148200974911,z:0},{x:119.57965539412798,y:39.91477442059368,z:0},{x:119.57963082508083,y:39.91475820141614,z:0},{x:119.5795463579393,y:39.91474283875727,z:0},{x:119.57753694221522,y:39.91473911367813,z:0},{x:119.57753963233583,y:39.914864835231064,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",c.push(l),(l={}).position=[{x:119.58096588997142,y:39.91580650782462,z:0},{x:119.5798744102997,y:39.91580122442531,z:0},{x:119.57983779940136,y:39.91576133393656,z:0},{x:119.57981535945423,y:39.915715977122375,z:0},{x:119.5798152607265,y:39.91560685576033,z:0},{x:119.57983604537385,y:39.91555798281989,z:0},{x:119.5798599804459,y:39.91553644995595,z:0},{x:119.57991602686873,y:39.91552168709078,z:0},{x:119.57992483208933,y:39.91512092068492,z:0},{x:119.57988238075798,y:39.91510730833185,z:0},{x:119.57983961491276,y:39.915070988920235,z:0},{x:119.57981893302639,y:39.91504033242386,z:0},{x:119.57981775311093,y:39.91482077686316,z:0},{x:119.57986347272983,y:39.91476180913979,z:0},{x:119.5799301665784,y:39.914751839326,z:0},{x:119.58211734753233,y:39.91474641543228,z:0},{x:119.58215141728788,y:39.91514896532212,z:0},{x:119.58222765493348,y:39.91515233528519,z:0},{x:119.58238244507862,y:39.91525555234641,z:0},{x:119.58238887575227,y:39.91528881386085,z:0},{x:119.58149803277855,y:39.91582556878131,z:0},{x:119.58096588997142,y:39.91580650782462,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",c.push(l),(l={}).position=[{x:119.58096665484791,y:39.91564888142169,z:0},{x:119.58096985459584,y:39.915429527091455,z:0},{x:119.58099080890604,y:39.91540724210825,z:0},{x:119.58177591655709,y:39.915411035269614,z:0},{x:119.581740143797,y:39.91565351732079,z:0},{x:119.58140893242043,y:39.91565497512015,z:0},{x:119.58139983983244,y:39.9155439593085,z:0},{x:119.58132286400058,y:39.91553867865183,z:0},{x:119.58132220037506,y:39.915648786081825,z:0},{x:119.58096665484791,y:39.91564888142169,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",c.push(l),(l={}).position=[{x:119.5814950059322,y:39.91593272609433,z:0},{x:119.58176002979424,y:39.91605321058016,z:0},{x:119.58111789502505,y:39.91639148854575,z:0},{x:119.58062182928701,y:39.9163998353598,z:0},{x:119.58072747730772,y:39.915995701468,z:0},{x:119.58045298209241,y:39.915994910259236,z:0},{x:119.5804433106188,y:39.915947687268336,z:0},{x:119.5814950059322,y:39.91593272609433,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",c.push(l),(l={}).position=[{x:119.5868666117359,y:39.91437058530902,z:0},{x:119.58604954581068,y:39.914319202417964,z:0},{x:119.58601792222981,y:39.914295569043446,z:0},{x:119.58600356183332,y:39.91426683901706,z:0},{x:119.58601163108501,y:39.91423198192361,z:0},{x:119.5869099737341,y:39.91371941710587,z:0},{x:119.5868666117359,y:39.91437058530902,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",c.push(l),(l={}).position=[{x:119.5863100010502,y:39.91452615480664,z:0},{x:119.58585213866219,y:39.914470448591906,z:0},{x:119.58581076888893,y:39.91475131643492,z:0},{x:119.58579759059006,y:39.9147482439796,z:0},{x:119.58577149410654,y:39.91499276565687,z:0},{x:119.5850486080504,y:39.9149413211928,z:0},{x:119.58505154632525,y:39.91504390732203,z:0},{x:119.5864544483248,y:39.91512268307533,z:0},{x:119.58645199027484,y:39.915082196443294,z:0},{x:119.58649034765855,y:39.915068887337746,z:0},{x:119.58652067791424,y:39.91504773172992,z:0},{x:119.58656291264259,y:39.91502153144058,z:0},{x:119.58656104433238,y:39.91499171702282,z:0},{x:119.58656023573359,y:39.914966797973385,z:0},{x:119.58654537835338,y:39.914942280917195,z:0},{x:119.58652184271943,y:39.91492902589654,z:0},{x:119.58650647116146,y:39.91492195590602,z:0},{x:119.58625180123445,y:39.91492073456429,z:0},{x:119.5863100010502,y:39.91452615480664,z:0}],l.type="wall",l.color="rgba(201,118,243,0)",l.stretchHeight=20,l.strokeColor="rgba(201,118,243,1)",l.corpinfoId="033549ed3bd648e49c8a65eb4993ec2f",c.push(l),c)}}r.r(t),r.d(t,{default:()=>o})},41885(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>b});var o,a=r(41670),n=r(95657),i=r(32879);function s(e){return(s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function c(e){var t=function(e,t){if("object"!=s(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,t||"default");if("object"!=s(o))return o;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"==s(t)?t:t+""}function l(e,t,r){(function(e,t){if(t.has(e))throw TypeError("Cannot initialize the same private elements twice on an object")})(e,t),t.set(e,r)}function d(e,t){return e.get(y(e,t))}function u(e,t,r){return e.set(y(e,t),r),r}function y(e,t,r){if("function"==typeof e?e===t:e.has(t))return arguments.length<3?t:r;throw TypeError("Private element is not present on this object")}var x=window.Cesium,p=new WeakMap,h=new WeakMap,f=new WeakMap,m=new WeakMap,g=new WeakMap,b=(Object.defineProperty(o=function e(){var t,r,o=this;if(!(this instanceof e))throw TypeError("Cannot call a class as a function");l(this,p,void 0),l(this,h,void 0),l(this,f,void 0),t="initMap",r=function(){var e="06494bcf2d4b66df7f3c586cc65af0cb",t=["0","1","2","3","4","5","6","7"];return u(h,o,new x.Viewer("cesiumContainer",{animation:!1,homeButton:!0,geocoder:!0,baseLayerPicker:!1,timeline:!1,fullscreenButton:!0,infoBox:!0,sceneModePicker:!0,navigationInstructionsInitiallyVisible:!1,navigationHelpButton:!1,selectionIndicator:!1,imageryProvider:new x.WebMapTileServiceImageryProvider({url:"https://t{s}.tianditu.gov.cn/img_w/wmts?service=wmts&request=GetTile&version=1.0.0&LAYER=img&tileMatrixSet=w&TileMatrix={TileMatrix}&TileRow={TileRow}&TileCol={TileCol}&style=default&format=tiles&tk=".concat(e),subdomains:t,layer:"tdtImgLayer",style:"default",format:"image/jpeg",tileMatrixSetID:"GoogleMapsCompatible",show:!0})})),d(h,o)._cesiumWidget._creditContainer.style.display="none",d(h,o).imageryLayers.addImageryProvider(new x.WebMapTileServiceImageryProvider({url:"https://t{s}.tianditu.gov.cn/cia_w/wmts?service=wmts&request=GetTile&version=1.0.0&LAYER=cia&tileMatrixSet=w&TileMatrix={TileMatrix}&TileRow={TileRow}&TileCol={TileCol}&style=default.jpg&tk=".concat(e),subdomains:t,layer:"tdtCiaLayer",style:"default",format:"image/jpeg",tileMatrixSetID:"GoogleMapsCompatible",show:!0})),d(m,o).call(o),d(g,o).call(o),u(f,o,new n.default(d(h,o))),u(p,o,new i.default(d(h,o),d(f,o))),{mapMethods:d(f,o),viewer:d(h,o)}},(t=c(t))in this?Object.defineProperty(this,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):this[t]=r,l(this,m,function(){d(h,o).scene.globe.depthTestAgainstTerrain=!0,x.ExperimentalFeatures.enableModelExperimental=!0,(0,a.createObliquePhotography)("http://192.168.192.215:8021/ware/upload/%E6%9B%B9%E5%A6%83%E7%94%B8%E6%B8%AF%E4%B8%9C/%E6%9B%B9%E5%A6%83%E7%94%B8%E6%B8%AF%E4%B8%9C/merge_tile.json",d(h,o)),(0,a.createObliquePhotography)("http://192.168.192.215:8021/ware/upload/%E6%9B%B9%E5%A6%83%E7%94%B8%E6%B8%AF%E8%A5%BF/%E6%9B%B9%E5%A6%83%E7%94%B8%E6%B8%AF%E8%A5%BF/merge_tile.json",d(h,o)),(0,a.createObliquePhotography)("http://192.168.192.215:8021/ware/upload/qhdxys/merge_tile.json",d(h,o)),(0,a.createObliquePhotography)("http://192.168.192.215:8021/ware/upload/qhdgysh/merge_tile.json",d(h,o)),(0,a.createObliquePhotography)("http://192.168.192.215:8021/ware/upload/%E6%B2%A7%E5%B7%9E%E6%B8%AF%E8%A5%BF/%E6%B2%A7%E5%B7%9E%E6%B8%AF%E8%A5%BF/merge_tile.json",d(h,o)),(0,a.createObliquePhotography)("http://192.168.192.215:8021/ware/upload/%E6%B2%A7%E5%B7%9E%E6%B8%AF%E4%B8%9C/%E6%B2%A7%E5%B7%9E%E6%B8%AF%E4%B8%9C/merge_tile.json",d(h,o))}),l(this,g,function(){d(h,o).cesiumWidget.screenSpaceEventHandler.removeInputAction(x.ScreenSpaceEventType.LEFT_DOUBLE_CLICK),d(h,o).cesiumWidget.screenSpaceEventHandler.removeInputAction(x.ScreenSpaceEventType.LEFT_CLICK),new x.ScreenSpaceEventHandler(d(h,o).scene.canvas).setInputAction(function(e){var t,r=d(h,o).scene.pick(e.position);x.defined(r)&&null!=(t=r.id)&&t.id?d(p,o).pointClickEvent(r.id):d(p,o).closePopup()},x.ScreenSpaceEventType.LEFT_CLICK)})},"prototype",{writable:!1}),o)},95657(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>_});let o=r.p+"safetyEval-h5/static/images/dianwei.e659d3c18e308ee4b361bd4eb879f072.png",a=r.p+"safetyEval-h5/static/images/gongsidianwei.deae091e75fad1af355d42961cc5f7c8.png";var n,i=r(1159),s=r(67798),c=r(66212),l=r(5508),d=r(41670),u=r(47),y=r(70284),x=r(66464);function p(e){return(p="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function h(){var e,t,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",a=r.toStringTag||"@@toStringTag";function n(r,o,a,n){var c=Object.create((o&&o.prototype instanceof s?o:s).prototype);return f(c,"_invoke",function(r,o,a){var n,s,c,l=0,d=a||[],u=!1,y={p:0,n:0,v:e,a:x,f:x.bind(e,4),d:function(t,r){return n=t,s=0,c=e,y.n=r,i}};function x(r,o){for(s=r,c=o,t=0;!u&&l&&!a&&t3?(a=p===o)&&(c=n[(s=n[4])?5:(s=3,3)],n[4]=n[5]=e):n[0]<=x&&((a=r<2&&xo||o>p)&&(n[4]=r,n[5]=o,y.n=p,s=0))}if(a||r>1)return i;throw u=!0,o}return function(a,d,p){if(l>1)throw TypeError("Generator is already running");for(u&&1===d&&x(d,p),s=d,c=p;(t=s<2?e:c)||!u;){n||(s?s<3?(s>1&&(y.n=-1),x(s,c)):y.n=c:y.v=c);try{if(l=2,n){if(s||(a="next"),t=n[a]){if(!(t=t.call(n,c)))throw TypeError("iterator result is not an object");if(!t.done)return t;c=t.value,s<2&&(s=0)}else 1===s&&(t=n.return)&&t.call(n),s<2&&(c=TypeError("The iterator does not provide a '"+a+"' method"),s=1);n=e}else if((t=(u=y.n<0)?c:r.call(o,y))!==i)break}catch(t){n=e,s=1,c=t}finally{l=1}}return{value:t,done:u}}}(r,a,n),!0),c}var i={};function s(){}function c(){}function l(){}t=Object.getPrototypeOf;var d=l.prototype=s.prototype=Object.create([][o]?t(t([][o]())):(f(t={},o,function(){return this}),t));function u(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,l):(e.__proto__=l,f(e,a,"GeneratorFunction")),e.prototype=Object.create(d),e}return c.prototype=l,f(d,"constructor",l),f(l,"constructor",c),c.displayName="GeneratorFunction",f(l,a,"GeneratorFunction"),f(d),f(d,a,"Generator"),f(d,o,function(){return this}),f(d,"toString",function(){return"[object Generator]"}),(h=function(){return{w:n,m:u}})()}function f(e,t,r,o){var a=Object.defineProperty;try{a({},"",{})}catch(e){a=0}(f=function(e,t,r,o){function n(t,r){f(e,t,function(e){return this._invoke(t,r,e)})}t?a?a(e,t,{value:r,enumerable:!o,configurable:!o,writable:!o}):e[t]=r:(n("next",0),n("throw",1),n("return",2))})(e,t,r,o)}function m(e,t,r,o,a,n,i){try{var s=e[n](i),c=s.value}catch(e){return void r(e)}s.done?t(c):Promise.resolve(c).then(o,a)}function g(e){return function(){var t=this,r=arguments;return new Promise(function(o,a){var n=e.apply(t,r);function i(e){m(n,o,a,i,s,"next",e)}function s(e){m(n,o,a,i,s,"throw",e)}i(void 0)})}}function b(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,o)}return r}function z(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:N(M,n),t=e.longitude,r=e.latitude,o=e.height;N(S,n).camera.flyTo({destination:(0,d.getPosition)(t,r,o),duration:2}),k(O,n,z({},N(w,n))),k(w,n,{longitude:t,latitude:r,height:o})}),v(this,"returnCurrentCenterPoint",function(){var e=N(w,n),t=e.longitude,r=e.latitude,o=e.height;N(S,n).camera.flyTo({destination:(0,d.getPosition)(t,r,o),duration:2})}),v(this,"returnPreviousCenterPoint",function(){var e=N(O,n),t=e.longitude,r=e.latitude,o=e.height;N(S,n).camera.flyTo({destination:(0,d.getPosition)(t,r,o),duration:2}),k(w,n,{longitude:t,latitude:r,height:o})}),v(this,"changeSceneMode",function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"3d";N(S,n).scene.mode=({"2d":E.SceneMode.COLUMBUS_VIEW,"3d":E.SceneMode.SCENE3D})[e]}),v(this,"addPortPoint",g(h().m(function e(){var t;return h().w(function(e){for(;;)switch(e.n){case 0:return t=[{id:"00002",name:"沧州黄骅港矿石港务有限公司",introduce:"公司现共有10个泊位(10-20万吨级),设计年通过能力6400万吨。堆场面积176万平米,堆存能力740万吨,大型装卸设备44台套。",position:{x:117.91412,y:38.35902},corpinfoId:"f8da1790b1034058ae2efefd69af3284"},{id:"00003",name:"秦皇岛港",introduce:"秦皇岛港分为东、西两个港区,现有生产性泊位50个,年设计通过能力2.26亿吨,经营货类主要包括煤炭、金属矿石、油品及液体化工、集装箱及其他杂货等。",position:{x:119.61254,y:39.92572}},{id:"00004",name:"曹妃甸实业港务",introduce:"公司现共有6个泊位(5-30万吨级),设计年通过能力6550万吨。堆场面积146万平米,堆存能力1350万吨,大型装卸设备23台套。",position:{x:118.51022,y:38.93503},corpinfoId:"8854edee3aa94be496cee676b6d4845a"},{id:"00005",name:"曹妃甸煤炭港务",introduce:"公司现共有5个泊位(5-10万吨级),设计年通过能力5000万吨。堆场面积83万平米,堆存能力373.5万吨,大型装卸设备19台套。",position:{x:118.43701,y:38.9866},corpinfoId:"6aa255d41602497fa0f934a822820df4"}],e.n=1,(0,x.chunkedLoad)(t,10,function(){var e=g(h().m(function e(t){var r,a,i,s,c,l,u,y,x;return h().w(function(e){for(;;)switch(e.n){case 0:return a=(r=(0,d.createEntityCollection)("portEntityCollection")).entities,i=E.Entity,s=t.id,c=t.name,l=(0,d.getPosition)(t.position.x,t.position.y),e.n=1,(0,d.getBillboard)({image:o,name:t.name});case 1:u=e.v,y={data:z(z({},t),{},{mapType:"港口"})},x={id:s,name:c,position:l,billboard:u,monitorItems:y},a.add.call(a,new i(x)),N(S,n).dataSources.add(r);case 2:return e.a(2)}},e)}));return function(t){return e.apply(this,arguments)}}());case 1:return e.n=2,(0,d.addMergedEntityCollection)(N(S,n),"portEntityCollection");case 2:return e.a(2)}},e)}))),v(this,"removePortPoint",function(){(0,d.removeEntityCollection)(N(S,n),"portEntityCollectionMerged")}),v(this,"addBranchOfficePoint",g(h().m(function e(){var t,r,o=arguments;return h().w(function(e){for(;;)switch(e.n){case 0:return o.length>0&&void 0!==o[0]&&o[0],t=o.length>1&&void 0!==o[1]?o[1]:null,u.default.emit(y.changeCoverMaskVisibleMittKey,!0),r=[],r=t?(0,x.filterNull)([t]):(0,x.filterNull)(A),e.n=1,(0,x.chunkedLoad)(r,10,function(){var e=g(h().m(function e(t){var r,o,i,s,c,l,u,y,x;return h().w(function(e){for(;;)switch(e.n){case 0:return o=(r=(0,d.createEntityCollection)("branchOfficeEntityCollection")).entities,i=E.Entity,s=t.corpinfoId,c=t.corpName,l=(0,d.getPosition)(t.longitude,t.latitude),e.n=1,(0,d.getBillboard)({image:a,name:t.corpName});case 1:u=e.v,y={data:z(z({},t),{},{id:t.corpinfoId,mapType:"分公司"})},x={id:s,name:c,position:l,billboard:u,monitorItems:y},o.add.call(o,new i(x)),N(S,n).dataSources.add(r);case 2:return e.a(2)}},e)}));return function(t){return e.apply(this,arguments)}}());case 1:return e.n=2,(0,d.addMergedEntityCollection)(N(S,n),"branchOfficeEntityCollection");case 2:u.default.emit(y.changeCoverMaskVisibleMittKey,!1);case 3:return e.a(2)}},e)}))),v(this,"removeBranchOfficePoint",function(){(0,d.removeEntityCollection)(N(S,n),"branchOfficeEntityCollectionMerged")}),v(this,"addFourColorDiagram",function(e,t){var r={"00003":l.default,"00002":c.default,"00005":i.default,"00004":s.default};if(r[e]){u.default.emit(y.changeCoverMaskVisibleMittKey,!0);var o=r[e](),a=(0,d.createEntityCollection)("fourColorDiagramEntityCollection"),p=[];for(var h in o){var f=o[h];if("wallList"!==h)for(var m=0;m=r});t.billboard.image=r?r.image:d[e.length-2]}),t=e.clustering.pixelRange,e.clustering.pixelRange=0,e.clustering.pixelRange=t}),k(S,this,t)},"prototype",{writable:!1}),n)},41670(e,t,r){"use strict";r.r(t),r.d(t,{addMergedEntityCollection:()=>g,createEntityCollection:()=>p,createId:()=>x,createMergedEntityCollection:()=>m,createObliquePhotography:()=>y,getBillboard:()=>h,getPosition:()=>u,removeEntityCollection:()=>f});var o,a,n=r(66464);function i(){var e,t,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",a=r.toStringTag||"@@toStringTag";function n(r,o,a,n){var i=Object.create((o&&o.prototype instanceof l?o:l).prototype);return s(i,"_invoke",function(r,o,a){var n,i,s,l=0,d=a||[],u=!1,y={p:0,n:0,v:e,a:x,f:x.bind(e,4),d:function(t,r){return n=t,i=0,s=e,y.n=r,c}};function x(r,o){for(i=r,s=o,t=0;!u&&l&&!a&&t3?(a=p===o)&&(s=n[(i=n[4])?5:(i=3,3)],n[4]=n[5]=e):n[0]<=x&&((a=r<2&&xo||o>p)&&(n[4]=r,n[5]=o,y.n=p,i=0))}if(a||r>1)return c;throw u=!0,o}return function(a,d,p){if(l>1)throw TypeError("Generator is already running");for(u&&1===d&&x(d,p),i=d,s=p;(t=i<2?e:s)||!u;){n||(i?i<3?(i>1&&(y.n=-1),x(i,s)):y.n=s:y.v=s);try{if(l=2,n){if(i||(a="next"),t=n[a]){if(!(t=t.call(n,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,i<2&&(i=0)}else 1===i&&(t=n.return)&&t.call(n),i<2&&(s=TypeError("The iterator does not provide a '"+a+"' method"),i=1);n=e}else if((t=(u=y.n<0)?s:r.call(o,y))!==c)break}catch(t){n=e,i=1,s=t}finally{l=1}}return{value:t,done:u}}}(r,a,n),!0),i}var c={};function l(){}function d(){}function u(){}t=Object.getPrototypeOf;var y=u.prototype=l.prototype=Object.create([][o]?t(t([][o]())):(s(t={},o,function(){return this}),t));function x(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,u):(e.__proto__=u,s(e,a,"GeneratorFunction")),e.prototype=Object.create(y),e}return d.prototype=u,s(y,"constructor",u),s(u,"constructor",d),d.displayName="GeneratorFunction",s(u,a,"GeneratorFunction"),s(y),s(y,a,"Generator"),s(y,o,function(){return this}),s(y,"toString",function(){return"[object Generator]"}),(i=function(){return{w:n,m:x}})()}function s(e,t,r,o){var a=Object.defineProperty;try{a({},"",{})}catch(e){a=0}(s=function(e,t,r,o){function n(t,r){s(e,t,function(e){return this._invoke(t,r,e)})}t?a?a(e,t,{value:r,enumerable:!o,configurable:!o,writable:!o}):e[t]=r:(n("next",0),n("throw",1),n("return",2))})(e,t,r,o)}function c(e,t,r,o,a,n,i){try{var s=e[n](i),c=s.value}catch(e){return void r(e)}s.done?t(c):Promise.resolve(c).then(o,a)}function l(e){return function(){var t=this,r=arguments;return new Promise(function(o,a){var n=e.apply(t,r);function i(e){c(n,o,a,i,s,"next",e)}function s(e){c(n,o,a,i,s,"throw",e)}i(void 0)})}}var d=window.Cesium,u=function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return d.Cartesian3.fromDegrees(e,t,r)},y=function(e,t){var r=new d.Cesium3DTileset({url:e,skipLevelOfDetail:!0,baseScreenSpaceError:1024,maximumScreenSpaceError:128,skipScreenSpaceErrorFactor:16,skipLevels:1,immediatelyLoadDesiredLevelOfDetail:!1,loadSiblings:!0,cullWithChildrenBounds:!0,cullRequestsWhileMoving:!0,cullRequestsWhileMovingMultiplier:10,preloadWhenHidden:!0,preferLeaves:!0,maximumMemoryUsage:128,progressiveResolutionHeightFraction:.5,dynamicScreenSpaceErrorDensity:.5,dynamicScreenSpaceErrorFactor:1,dynamicScreenSpaceError:!0});r.readyPromise.then(function(e){var t=d.Cartographic.fromCartesian(e.boundingSphere.center),r=d.Math.toDegrees(t.longitude),o=d.Math.toDegrees(t.latitude),a=d.Cartesian3.fromDegrees(r,o,0),n=d.Cartesian3.fromDegrees(r,o,5),i=d.Cartesian3.subtract(n,a,new d.Cartesian3);e.modelMatrix=d.Matrix4.fromTranslation(i)}),t.scene.primitives.add(r)},x=function(){return d.createGuid()},p=function(e){return new d.CustomDataSource("".concat(e,"_").concat(x()))},h=(o=l(i().m(function e(t){var r,o,a,s,c,l,u;return i().w(function(e){for(;;)switch(e.n){case 0:return r=t.image,a=void 0===(o=t.name)?"":o,e.n=1,(0,n.getBillboardCanvases)(r,a);case 1:return c=(s=e.v).base64,l=s.width,u=s.height,e.a(2,{image:c,width:l,height:u,verticalOrigin:d.VerticalOrigin.BOTTOM,horizontalOrigin:d.HorizontalOrigin.CENTER,heightReference:d.HeightReference.CLAMP_TO_GROUND,disableDepthTestDistance:1/0,clampToGround:!0})}},e)})),function(e){return o.apply(this,arguments)}),f=function(e,t){e.dataSources._dataSources.filter(function(e){return e.name.startsWith("".concat(t,"_"))}).forEach(function(t){e.dataSources.remove(t)})},m=function(e,t){var r=p(t);return e.dataSources._dataSources.filter(function(e){return e.name.startsWith("".concat(t.substring(0,t.indexOf("Merged")),"_"))}).forEach(function(e){e.entities.values.forEach(function(e){r.entities.add(e)})}),r},g=(a=l(i().m(function e(t,r){var o,a,n=arguments;return i().w(function(e){for(;;)switch(e.n){case 0:return o=n.length>2&&void 0!==n[2]?n[2]:"",a=m(t,"".concat(r,"Merged").concat(o?"_".concat(o):"")),e.n=1,t.dataSources.add(a);case 1:return f(t,"".concat(r).concat(o?"_".concat(o):"")),e.a(2,a)}},e)})),function(e,t){return a.apply(this,arguments)})},47(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>o});let o=(0,r(32852).A)()},70284(e,t,r){"use strict";r.r(t),r.d(t,{changeCoverMaskVisibleMittKey:()=>l,changePeopleTrajectorySelectVisibleMittKey:()=>d,clickBackMittKey:()=>i,clickBranchOfficePointMittKey:()=>a,clickMarkPointMittKey:()=>n,clickPortPointMittKey:()=>o,deletePeoplePositionPointMittKey:()=>y,providePeoplePositionListMittKey:()=>u,resetAllBottomUtilsCheckMittKey:()=>c,resetBottomCurrentIndexMittKey:()=>s});var o="clickPortPoint",a="clickBranchOfficePoint",n="clickMarkPoint",i="clickBack",s="resetBottomCurrentIndex",c="resetAllBottomUtilsCheck",l="changeCoverMaskVisible",d="changePeopleTrajectorySelectVisible",u="providePeoplePositionList",y="deletePeoplePositionPoint"},32879(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>E});var o,a=r(24686),n=r(45893),i=r(46365),s=r(41670),c=r(47),l=r(70284);function d(e){return(d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function u(){var e,t,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",a=r.toStringTag||"@@toStringTag";function n(r,o,a,n){var c=Object.create((o&&o.prototype instanceof s?o:s).prototype);return y(c,"_invoke",function(r,o,a){var n,s,c,l=0,d=a||[],u=!1,y={p:0,n:0,v:e,a:x,f:x.bind(e,4),d:function(t,r){return n=t,s=0,c=e,y.n=r,i}};function x(r,o){for(s=r,c=o,t=0;!u&&l&&!a&&t3?(a=p===o)&&(c=n[(s=n[4])?5:(s=3,3)],n[4]=n[5]=e):n[0]<=x&&((a=r<2&&xo||o>p)&&(n[4]=r,n[5]=o,y.n=p,s=0))}if(a||r>1)return i;throw u=!0,o}return function(a,d,p){if(l>1)throw TypeError("Generator is already running");for(u&&1===d&&x(d,p),s=d,c=p;(t=s<2?e:c)||!u;){n||(s?s<3?(s>1&&(y.n=-1),x(s,c)):y.n=c:y.v=c);try{if(l=2,n){if(s||(a="next"),t=n[a]){if(!(t=t.call(n,c)))throw TypeError("iterator result is not an object");if(!t.done)return t;c=t.value,s<2&&(s=0)}else 1===s&&(t=n.return)&&t.call(n),s<2&&(c=TypeError("The iterator does not provide a '"+a+"' method"),s=1);n=e}else if((t=(u=y.n<0)?c:r.call(o,y))!==i)break}catch(t){n=e,s=1,c=t}finally{l=1}}return{value:t,done:u}}}(r,a,n),!0),c}var i={};function s(){}function c(){}function l(){}t=Object.getPrototypeOf;var d=l.prototype=s.prototype=Object.create([][o]?t(t([][o]())):(y(t={},o,function(){return this}),t));function x(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,l):(e.__proto__=l,y(e,a,"GeneratorFunction")),e.prototype=Object.create(d),e}return c.prototype=l,y(d,"constructor",l),y(l,"constructor",c),c.displayName="GeneratorFunction",y(l,a,"GeneratorFunction"),y(d),y(d,a,"Generator"),y(d,o,function(){return this}),y(d,"toString",function(){return"[object Generator]"}),(u=function(){return{w:n,m:x}})()}function y(e,t,r,o){var a=Object.defineProperty;try{a({},"",{})}catch(e){a=0}(y=function(e,t,r,o){function n(t,r){y(e,t,function(e){return this._invoke(t,r,e)})}t?a?a(e,t,{value:r,enumerable:!o,configurable:!o,writable:!o}):e[t]=r:(n("next",0),n("throw",1),n("return",2))})(e,t,r,o)}function x(e,t,r,o,a,n,i){try{var s=e[n](i),c=s.value}catch(e){return void r(e)}s.done?t(c):Promise.resolve(c).then(o,a)}function p(e,t,r){return(t=h(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function h(e){var t=function(e,t){if("object"!=d(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,t||"default");if("object"!=d(o))return o;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"==d(t)?t:t+""}function f(e,t,r){(function(e,t){if(t.has(e))throw TypeError("Cannot initialize the same private elements twice on an object")})(e,t),t.set(e,r)}function m(e,t){return e.get(b(e,t))}function g(e,t,r){return e.set(b(e,t),r),r}function b(e,t,r){if("function"==typeof e?e===t:e.has(t))return arguments.length<3?t:r;throw TypeError("Private element is not present on this object")}var z=new WeakMap,v=new WeakMap,j=new WeakMap,C=new WeakMap,N=new WeakMap,k=new WeakMap,I=new WeakMap,A=new WeakMap,E=(Object.defineProperty(o=function e(t,r){var o,d,y=this;if(!(this instanceof e))throw TypeError("Cannot call a class as a function");f(this,z,void 0),f(this,v,void 0),f(this,j,void 0),p(this,"closePopup",function(){m(v,y)&&(m(v,y).remove(),g(v,y,null))}),p(this,"pointClickEvent",function(e){var t=e.monitorItems.data;(y.closePopup(),"1"===t.isExternalEntry&&"港口"===t.mapType)?m(N,y).call(y,t):("港口"===t.mapType&&m(C,y).call(y,t),"分公司"===t.mapType&&m(k,y).call(y,t),t.mapType.includes("标记点")&&m(A,y).call(y,t))}),f(this,C,function(e){var t=(0,s.getPosition)(e.position.x,e.position.y);g(v,y,new i.default(m(z,y),{component:n.default,position:t,props:{info:e,close:y.closePopup,enter:function(){m(N,y).call(y,e)}}}))}),f(this,N,function(e){y.closePopup(),m(j,y).removePortPoint(),"00003"===e.id?(m(j,y).flyTo({longitude:e.position.x,latitude:e.position.y,height:1e4}),m(j,y).addBranchOfficePoint(),c.default.emit(l.clickPortPointMittKey,e)):(m(j,y).removeFourColorDiagram(),m(j,y).removeWall(),m(j,y).flyTo({longitude:e.position.x,latitude:e.position.y,height:2e3}),m(j,y).addBranchOfficePoint("",{corpName:e.name,corpinfoId:e.corpinfoId,longitude:e.position.x,latitude:e.position.y}),c.default.emit(l.clickPortPointMittKey,e),c.default.emit(l.clickBranchOfficePointMittKey,e),sessionStorage.setItem("mapCurrentBranchOfficeId",e.corpinfoId)),c.default.emit(l.resetBottomCurrentIndexMittKey),c.default.emit(l.resetAllBottomUtilsCheckMittKey)}),f(this,k,(o=u().m(function e(t){var r,o;return u().w(function(e){for(;;)switch(e.n){case 0:if(t.id!==sessionStorage.getItem("mapCurrentBranchOfficeId")){e.n=1;break}return e.a(2);case 1:r={},o=(0,s.getPosition)(t.longitude,t.latitude),g(v,y,new i.default(m(z,y),{component:a.default,position:o,props:{info:r,close:y.closePopup,enter:function(){m(I,y).call(y,t)}}}));case 2:return e.a(2)}},e)}),d=function(){var e=this,t=arguments;return new Promise(function(r,a){var n=o.apply(e,t);function i(e){x(n,r,a,i,s,"next",e)}function s(e){x(n,r,a,i,s,"throw",e)}i(void 0)})},function(e){return d.apply(this,arguments)})),f(this,I,function(e){y.closePopup(),m(j,y).removeBranchOfficePoint(),m(j,y).removeMarkPoint(),m(j,y).addBranchOfficePoint("",e),m(j,y).removeFourColorDiagram(),m(j,y).removeWall(),m(j,y).flyTo({longitude:e.longitude,latitude:e.latitude,height:2e3}),c.default.emit(l.deletePeoplePositionPointMittKey),c.default.emit(l.clickBranchOfficePointMittKey,e),sessionStorage.setItem("mapCurrentBranchOfficeId",e.corpinfoId),c.default.emit(l.resetBottomCurrentIndexMittKey),c.default.emit(l.resetAllBottomUtilsCheckMittKey)}),f(this,A,function(e){c.default.emit(l.clickMarkPointMittKey,e)}),g(z,this,t),g(j,this,r)},"prototype",{writable:!1}),o)},66464(e,t,r){"use strict";function o(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||i(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(){var e,t,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",i=r.toStringTag||"@@toStringTag";function s(r,o,a,i){var s=Object.create((o&&o.prototype instanceof l?o:l).prototype);return n(s,"_invoke",function(r,o,a){var n,i,s,l=0,d=a||[],u=!1,y={p:0,n:0,v:e,a:x,f:x.bind(e,4),d:function(t,r){return n=t,i=0,s=e,y.n=r,c}};function x(r,o){for(i=r,s=o,t=0;!u&&l&&!a&&t3?(a=p===o)&&(s=n[(i=n[4])?5:(i=3,3)],n[4]=n[5]=e):n[0]<=x&&((a=r<2&&xo||o>p)&&(n[4]=r,n[5]=o,y.n=p,i=0))}if(a||r>1)return c;throw u=!0,o}return function(a,d,p){if(l>1)throw TypeError("Generator is already running");for(u&&1===d&&x(d,p),i=d,s=p;(t=i<2?e:s)||!u;){n||(i?i<3?(i>1&&(y.n=-1),x(i,s)):y.n=s:y.v=s);try{if(l=2,n){if(i||(a="next"),t=n[a]){if(!(t=t.call(n,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,i<2&&(i=0)}else 1===i&&(t=n.return)&&t.call(n),i<2&&(s=TypeError("The iterator does not provide a '"+a+"' method"),i=1);n=e}else if((t=(u=y.n<0)?s:r.call(o,y))!==c)break}catch(t){n=e,i=1,s=t}finally{l=1}}return{value:t,done:u}}}(r,a,i),!0),s}var c={};function l(){}function d(){}function u(){}t=Object.getPrototypeOf;var y=u.prototype=l.prototype=Object.create([][o]?t(t([][o]())):(n(t={},o,function(){return this}),t));function x(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,u):(e.__proto__=u,n(e,i,"GeneratorFunction")),e.prototype=Object.create(y),e}return d.prototype=u,n(y,"constructor",u),n(u,"constructor",d),d.displayName="GeneratorFunction",n(u,i,"GeneratorFunction"),n(y),n(y,i,"Generator"),n(y,o,function(){return this}),n(y,"toString",function(){return"[object Generator]"}),(a=function(){return{w:s,m:x}})()}function n(e,t,r,o){var a=Object.defineProperty;try{a({},"",{})}catch(e){a=0}(n=function(e,t,r,o){function i(t,r){n(e,t,function(e){return this._invoke(t,r,e)})}t?a?a(e,t,{value:r,enumerable:!o,configurable:!o,writable:!o}):e[t]=r:(i("next",0),i("throw",1),i("return",2))})(e,t,r,o)}function i(e,t){if(e){if("string"==typeof e)return s(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?s(e,t):void 0}}function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rp,filterNull:()=>y,formatPolygon:()=>x,getBillboardCanvases:()=>g,textFormatter:()=>z,windDirection:()=>b});var d,u,y=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"longitude",r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"latitude";return e.filter(function(e){return e[t]&&e[r]})},x=function(e){var t=[];return e.position.forEach(function(e){t.push(e.x),t.push(e.y)}),t},p=(d=l(a().m(function e(t){var r,o,n,c,l,d,u=arguments;return a().w(function(e){for(;;)switch(e.n){case 0:r=u.length>1&&void 0!==u[1]?u[1]:10,o=u.length>2?u[2]:void 0,n=[],c=0;case 1:if(!(ctypeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(a)||i(a)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}());case 3:c+=r,e.n=1;break;case 4:return e.a(2,n)}},e)})),function(e){return d.apply(this,arguments)}),h=function(e){return new Promise(function(t){if(!e)return void t(null);var r=document.createElement("canvas"),o=r.getContext("2d"),a=window.devicePixelRatio||1,n=14*a,i="Arial, sans-serif",s=Math.round(7*a),c=Math.round(5*a);o.font="".concat(n,"px ").concat(i);var l=Math.ceil(o.measureText(e).width+2*s),d=Math.ceil(n+2*c);r.style.width="".concat(l/a,"px"),r.style.height="".concat(d/a,"px"),r.width=l*a,r.height=d*a,o.scale(a,a),o.font="".concat(n,"px ").concat(i),o.fillStyle="rgba(20, 58, 142, 1)",o.fillRect(0,0,l,d),o.fillStyle="#ffffff",o.textBaseline="top",o.textRendering="geometricPrecision";var u=Math.round(s),y=Math.round(c);o.fillText(e,u,y),t({base64:r.toDataURL(),width:l,height:d})})},f=function(e){return new Promise(function(t,r){var o=new Image;o.crossOrigin="Anonymous",o.src=e,o.onload=function(){var e=document.createElement("canvas"),r=e.getContext("2d");e.width=o.width,e.height=o.height,r.drawImage(o,0,0),t({base64:e.toDataURL(),width:o.width,height:o.height})},o.onerror=function(e){r(Error("Failed to load image: ".concat(e)))}})},m=new Map,g=(u=l(a().m(function e(t,r){var n,i,s,c,l,d,u,y,x,p,g,b,z,v,j,C=arguments;return a().w(function(e){for(;;)switch(e.n){case 0:return n=C.length>2&&void 0!==C[2]?C[2]:5,m.has(t)?i=m.get(t):(i=f(t),m.set(t,i)),e.n=1,Promise.all([i,h(r)]);case 1:if(c=(s=o(e.v,2))[0],l=s[1]){e.n=2;break}return e.a(2,{base64:c.base64,width:c.width,height:c.height});case 2:return u=(d=document.createElement("canvas")).getContext("2d"),y=Math.max(c.width,l.width),x=l.height+c.height+n,d.width=y,d.height=x,p=function(e){return new Promise(function(t,r){var o=new Image;o.onload=function(){return t(o)},o.onerror=r,o.src=e})},e.n=3,Promise.all([p(c.base64),p(l.base64)]);case 3:return b=(g=o(e.v,2))[0],z=g[1],v=(y-l.width)/2,j=(y-c.width)/2,u.drawImage(z,v,0),u.drawImage(b,j,l.height+n,c.width,c.height),e.a(2,{base64:d.toDataURL(),width:y,height:x})}},e)})),function(e,t){return u.apply(this,arguments)}),b=function(e){for(var t=[{directions:"北",minAngle:"348.76",maxAngle:"11.25"},{directions:"北东北",minAngle:"11.26",maxAngle:"33.75"},{directions:"东北",minAngle:"33.76",maxAngle:"56.25"},{directions:"东东北",minAngle:"56.26",maxAngle:"78.75"},{directions:"东",minAngle:"78.76",maxAngle:"101.25"},{directions:"东东南",minAngle:"101.26",maxAngle:"123.75"},{directions:"东南",minAngle:"123.76",maxAngle:"146.25"},{directions:"南东南",minAngle:"146.26",maxAngle:"168.75"},{directions:"南",minAngle:"168.76",maxAngle:"191.25"},{directions:"南西南",minAngle:"191.26",maxAngle:"213.75"},{directions:"西南",minAngle:"213.76",maxAngle:"236.25"},{directions:"西西南",minAngle:"236.26",maxAngle:"258.75"},{directions:"西",minAngle:"258.76",maxAngle:"281.25"},{directions:"西西北",minAngle:"281.26",maxAngle:"303.75"},{directions:"西北",minAngle:"303.76",maxAngle:"326.25"},{directions:"北西北",minAngle:"326.26",maxAngle:"348.75"}],r=0;r=+t[r].minAngle&&+e<=+t[r].maxAngle)return"".concat(t[r].directions,"风");return"静风"};function z(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:4,r="",o=Math.ceil(e.length/t);if(!(o>1))return e;for(var a=0;aec});var o=r(30758),a=r(15501),n=r(82908),i=r.n(n),s=r(67199),c=r(14331),l=r(56396),d=r(41474),u=r(22207),y=r(14171),x=r(94749),p=r(73835),h=r(78501),f=r(43953),m=r(51640),g=r(21121),b=r(70861),z=r(81506),v=r(93067),j=r(58140),C=r(63073),N=r(86070);function k(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rtypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var r,o,a,n,i=[],s=!0,c=!1;try{a=(t=t.call(e)).next,!1;for(;!(s=(r=a.call(t)).done)&&(i.push(r.value),2!==i.length);s=!0);}catch(e){c=!0,o=e}finally{try{if(!s&&null!=t.return&&(n=t.return(),Object(n)!==n))return}finally{if(c)throw o}}return i}}(t)||function(e){if(e){if("string"==typeof e)return k(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?k(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),d=l[0],u=l[1];return(0,N.jsxs)(N.Fragment,{children:[(0,N.jsx)(s.A.Item,{name:r,label:a,valuePropName:"fileList",getValueProps:function(e){return Array.isArray(e)?{fileList:e}:{fileList:e?e.split(",").map(function(e){return{url:e,uid:e,status:"done",name:"附件"}}):[]}},getValueFromEvent:function(e){var t=e.fileList;return(null==t?void 0:t.map(function(e){var t;return{url:(null==(t=e.response)||null==(t=t.data)?void 0:t.url)||e.url,uid:e.uid,status:e.status,name:e.name,percent:e.percent}}))||[]},children:(0,N.jsx)(v.A,{disabled:void 0!==n&&n,listType:"picture-card",maxCount:i,accept:c,action:"".concat(window.process.env.app.API_HOST,"/safetyEval/file/upload"),onPreview:function(e){var t;(t=e.url||e.thumbUrl,/\.(png|jpe?g|gif|bmp|webp|svg)(\?.*)?$/i.test(t||""))?u(e.url||e.thumbUrl):window.open(e.url||e.thumbUrl)},children:(0,N.jsxs)("button",{style:{border:0,background:"none"},type:"button",children:[(0,N.jsx)(C.A,{}),(0,N.jsx)("div",{style:{marginTop:8},children:"上传附件"})]})})}),(0,N.jsx)(j.A,{style:{display:"none"},preview:{visible:!!d,src:d,onVisibleChange:function(e){e||u("")}}})]})}var A=r(51278);function E(e,t){var r="u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=S(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var o=0,a=function(){};return{s:a,n:function(){return o>=e.length?{done:!0}:{done:!1,value:e[o++]}},e:function(e){throw e},f:a}}throw TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var n,i=!0,s=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return i=e.done,e},e:function(e){s=!0,n=e},f:function(){try{i||null==r.return||r.return()}finally{if(s)throw n}}}}function S(e,t){if(e){if("string"==typeof e)return M(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?M(e,t):void 0}}function M(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rtypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var r,o,a,n,i=[],s=!0,c=!1;try{a=(t=t.call(e)).next,!1;for(;!(s=(r=a.call(t)).done)&&(i.push(r.value),2!==i.length);s=!0);}catch(e){c=!0,o=e}finally{try{if(!s&&null!=t.return&&(n=t.return(),Object(n)!==n))return}finally{if(c)throw o}}return i}}(n)||S(n,2)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),s=i[0],c=i[1];c&&(t[s]=c)}}catch(e){a.e(e)}finally{a.f()}}catch(e){}return t}function P(e){if(!e)return{};try{return O(new URL(e,window.location.origin).search)}catch(r){var t=e.indexOf("?");if(-1===t)return{};return O(e.slice(t))}}var _=r(77088);let H=r.p+"safetyEval-h5/static/images/header.3dbd64accf5a5476faced7dc02bbdea2.png",T=r.p+"safetyEval-h5/static/images/auditLook.8c875c22dc23ff046ed878303d4381ea.png",R=r.p+"safetyEval-h5/static/images/audit.5a3a1313ec8ee6a337a74b99d5789001.png",U=r.p+"safetyEval-h5/static/images/successIcon.3d54dc9c6a457b30dcc4124d5664c3d0.png";function D(e){return(D="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function L(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,o)}return r}function F(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:"联系电话",t=!(arguments.length>1)||void 0===arguments[1]||arguments[1];return{required:t,validator:function(r,o){if(!o)return t?Promise.reject(Error("请输入".concat(e))):Promise.resolve();var a=String(o).replace(/\s+/g,"");return B.test(a)?Promise.resolve():Promise.reject(Error("".concat(e,"格式不正确")))}}}function Y(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return{required:t,validator:function(r,o){if(null==o||""===o)return t?Promise.reject(Error("请输入".concat(e))):Promise.resolve();var a=Number(o);return Number.isNaN(a)||a<0?Promise.reject(Error("".concat(e,"应为非负数字"))):Promise.resolve()}}}function V(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return{required:t,validator:function(r,o){if(null==o||""===o)return t?Promise.reject(Error("请输入".concat(e))):Promise.resolve();var a=Number(o);return!Number.isInteger(a)||a<0?Promise.reject(Error("".concat(e,"应为非负整数"))):Promise.resolve()}}}["万州区","涪陵区","渝中区","大渡口区","江北区","沙坪坝区","九龙坡区","南岸区","北碚区","綦江区","大足区","渝北区","巴南区","黔江区","长寿区","江津区","合川区","永川区","南川区","璧山区","铜梁区","潼南区","荣昌区","开州区","梁平区","武隆区","城口县","丰都县","垫江县","忠县","云阳县","奉节县","巫山县","巫溪县","石柱土家族自治县","秀山土家族苗族自治县","酉阳土家族苗族自治县","彭水苗族土家族自治县"].map(function(e){return{label:e,value:e}});var K=[{label:"正常",value:"正常"},{label:"停业",value:"停业"},{label:"注销",value:"注销"}],Q=[{label:"大",value:"大"},{label:"中",value:"中"},{label:"小",value:"小"},{label:"微型",value:"微型"}],$=[{label:"审核备案",value:"审核备案"},{label:"确认备案",value:"确认备案"}],J=[{label:"已备案",value:"已备案"},{label:"未备案",value:"未备案"}],X=[{label:"煤炭开采业",value:"煤炭开采业"},{label:"金属、非金属矿及其他矿采选业",value:"金属、非金属矿及其他矿采选业"},{label:"陆地石油和天然气开采业",value:"陆地石油和天然气开采业"},{label:"陆上油气管道运输业",value:"陆上油气管道运输业"},{label:"石油加工业,化学原料、化学品及医药制造业",value:"石油加工业,化学原料、化学品及医药制造业"},{label:"烟花爆竹制造业",value:"烟花爆竹制造业"},{label:"金属冶炼",value:"金属冶炼"}];function Z(e){return(Z="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function ee(){var e,t,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",a=r.toStringTag||"@@toStringTag";function n(r,o,a,n){var c=Object.create((o&&o.prototype instanceof s?o:s).prototype);return et(c,"_invoke",function(r,o,a){var n,s,c,l=0,d=a||[],u=!1,y={p:0,n:0,v:e,a:x,f:x.bind(e,4),d:function(t,r){return n=t,s=0,c=e,y.n=r,i}};function x(r,o){for(s=r,c=o,t=0;!u&&l&&!a&&t3?(a=p===o)&&(c=n[(s=n[4])?5:(s=3,3)],n[4]=n[5]=e):n[0]<=x&&((a=r<2&&xo||o>p)&&(n[4]=r,n[5]=o,y.n=p,s=0))}if(a||r>1)return i;throw u=!0,o}return function(a,d,p){if(l>1)throw TypeError("Generator is already running");for(u&&1===d&&x(d,p),s=d,c=p;(t=s<2?e:c)||!u;){n||(s?s<3?(s>1&&(y.n=-1),x(s,c)):y.n=c:y.v=c);try{if(l=2,n){if(s||(a="next"),t=n[a]){if(!(t=t.call(n,c)))throw TypeError("iterator result is not an object");if(!t.done)return t;c=t.value,s<2&&(s=0)}else 1===s&&(t=n.return)&&t.call(n),s<2&&(c=TypeError("The iterator does not provide a '"+a+"' method"),s=1);n=e}else if((t=(u=y.n<0)?c:r.call(o,y))!==i)break}catch(t){n=e,s=1,c=t}finally{l=1}}return{value:t,done:u}}}(r,a,n),!0),c}var i={};function s(){}function c(){}function l(){}t=Object.getPrototypeOf;var d=l.prototype=s.prototype=Object.create([][o]?t(t([][o]())):(et(t={},o,function(){return this}),t));function u(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,l):(e.__proto__=l,et(e,a,"GeneratorFunction")),e.prototype=Object.create(d),e}return c.prototype=l,et(d,"constructor",l),et(l,"constructor",c),c.displayName="GeneratorFunction",et(l,a,"GeneratorFunction"),et(d),et(d,a,"Generator"),et(d,o,function(){return this}),et(d,"toString",function(){return"[object Generator]"}),(ee=function(){return{w:n,m:u}})()}function et(e,t,r,o){var a=Object.defineProperty;try{a({},"",{})}catch(e){a=0}(et=function(e,t,r,o){function n(t,r){et(e,t,function(e){return this._invoke(t,r,e)})}t?a?a(e,t,{value:r,enumerable:!o,configurable:!o,writable:!o}):e[t]=r:(n("next",0),n("throw",1),n("return",2))})(e,t,r,o)}function er(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,o)}return r}function eo(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return es(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?es(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function es(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);r0)||void 0===arguments[0]||arguments[0];return F(F({required:e,message:e?"请输入统一社会信用代码":void 0,pattern:W},e?{}:{validateTrigger:"onBlur"}),{},{validator:function(t,r){return r?W.test(r.trim())?Promise.resolve():Promise.reject(Error("统一社会信用代码格式不正确")):e?Promise.reject(Error("请输入统一社会信用代码")):Promise.resolve()}})}(!0)],children:(0,N.jsx)(p.A,{placeholder:"请输入统一社会信用代码",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"safetyIndustryCategoryName",label:"安全生产监管行业类别",rules:[{required:!0,message:"请输入安全生产监管行业类别"}],children:(0,N.jsx)(p.A,{placeholder:"请输入安全生产监管行业类别",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"districtName",label:"属地",rules:[{required:!0,message:"请选择属地"}],children:(0,N.jsx)(h.A,{options:X,placeholder:"请选择属地",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"townStreet",label:"所属镇、街道",rules:[{required:!0,message:"请输入所属镇街道"}],children:(0,N.jsx)(p.A,{placeholder:"请输入所属镇街道",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"villageCommunity",label:"属村(社区)",children:(0,N.jsx)(p.A,{placeholder:"请输入属村(社区)",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"longitude",label:"所在地坐标经度",rules:[function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return{required:e,validator:function(t,r){if(null==r||""===r)return e?Promise.reject(Error("请输入经度")):Promise.resolve();var o=Number(r);return Number.isNaN(o)||o<-180||o>180?Promise.reject(Error("经度格式不正确(-180 ~ 180)")):Promise.resolve()}}}(!1)],children:(0,N.jsx)(f.A,{style:{width:"100%"},min:-180,max:180,precision:6,placeholder:"请输入经度"})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"latitude",label:"所在地坐标纬度",rules:[function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return{required:e,validator:function(t,r){if(null==r||""===r)return e?Promise.reject(Error("请输入纬度")):Promise.resolve();var o=Number(r);return Number.isNaN(o)||o<-90||o>90?Promise.reject(Error("纬度格式不正确(-90 ~ 90)")):Promise.resolve()}}}(!1)],children:(0,N.jsx)(f.A,{style:{width:"100%"},min:-90,max:90,precision:6,placeholder:"请输入纬度"})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"registerAddress",label:"注册地址",rules:[{required:!0,message:"请输入注册地址"}],children:(0,N.jsx)(p.A.TextArea,{rows:3,placeholder:"请输入注册地址"})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"businessAddress",label:"经营地址",rules:[{required:!0,message:"请输入经营地址"}],children:(0,N.jsx)(p.A.TextArea,{rows:3,placeholder:"请输入经营地址"})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"ownershipTypeName",label:"归属类型",children:(0,N.jsx)(p.A,{placeholder:"请输入归属类型",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"economyIndustryCode",label:"国民经济行业分类(GB/T4754-2017)",children:(0,N.jsx)(p.A,{placeholder:"请输入国民经济行业分类",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"legalRepresentative",label:"法定代表人",rules:[{required:!0,message:"请输入法定代表人"}],children:(0,N.jsx)(p.A,{placeholder:"请输入法定代表人",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"legalRepresentativePhone",label:"法定代表人联系电话",rules:[G("法定代表人联系电话",!1)],children:(0,N.jsx)(p.A,{placeholder:"请输入法定代表人联系电话",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"principalName",label:"主要负责人",rules:[{required:!0,message:"请输入主要负责人"}],children:(0,N.jsx)(p.A,{placeholder:"请输入主要负责人",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"principalPhone",label:"主要负责人联系电话",rules:[G("主要负责人联系电话",!0)],children:(0,N.jsx)(p.A,{placeholder:"请输入主要负责人联系电话",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"safetyDeptManager",label:"安全管理部门负责人",children:(0,N.jsx)(p.A,{placeholder:"请输入安全管理部门负责人",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"safetyDeptManagerPhone",label:"安全管理部门负责人联系电话",rules:[G("安全管理部门负责人联系电话",!1)],children:(0,N.jsx)(p.A,{placeholder:"请输入安全管理部门负责人联系电话",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"safetyDeputyManager",label:"主管安全副总",children:(0,N.jsx)(p.A,{placeholder:"请输入主管安全副总",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"safetyDeputyPhone",label:"主管安全副总联系电话",rules:[G("主管安全副总联系电话",!1)],children:(0,N.jsx)(p.A,{placeholder:"请输入主管安全副总联系电话",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"productionDate",label:"投产日期",children:(0,N.jsx)(m.A,{style:{width:"100%"},placeholder:"请选择投产日期"})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"businessStatusName",label:"企业经营状态",children:(0,N.jsx)(p.A,{placeholder:"请输入企业经营状态",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"infoDisclosureUrl",label:"信息公开网址",rules:[function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"网址",t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return{required:t,validator:function(r,o){return o?q.test(String(o).trim())?Promise.resolve():Promise.reject(Error("".concat(e,"格式不正确"))):t?Promise.reject(Error("请输入".concat(e))):Promise.resolve()}}}("信息公开网址",!1)],children:(0,N.jsx)(p.A,{placeholder:"请输入信息公开网址",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"workplaceArea",label:"工作场所建筑面积",rules:[Y("工作场所建筑面积",!1)],children:(0,N.jsx)(f.A,{style:{width:"100%"},min:0,precision:2,placeholder:"请输入工作场所建筑面积"})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"archiveRoomArea",label:"档案室面积",rules:[Y("档案室面积",!1)],children:(0,N.jsx)(f.A,{style:{width:"100%"},min:0,precision:2,placeholder:"请输入档案室面积"})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"fulltimeEvaluatorCount",label:"专职安全评价师数量",rules:[V("专职安全评价师数量",!1)],children:(0,N.jsx)(f.A,{style:{width:"100%"},min:0,precision:0,placeholder:"请输入专职安全评价师数量"})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"registeredEngineerCount",label:"注册安全工程师数量",rules:[V("注册安全工程师数量",!1)],children:(0,N.jsx)(f.A,{style:{width:"100%"},min:0,precision:0,placeholder:"请输入注册安全工程师数量"})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"enterpriseStatusName",label:"企业状态",children:(0,N.jsx)(h.A,{options:K,placeholder:"请选择企业状态",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"enterpriseScaleName",label:"企业规模",children:(0,N.jsx)(h.A,{options:Q,placeholder:"请选择企业规模",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"filingTypeName",label:"备案类型",children:(0,N.jsx)(h.A,{options:$,placeholder:"请选择备案类型",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(s.A.Item,{name:"filingRecordStatusName",label:"备案状态",children:(0,N.jsx)(h.A,{options:J,placeholder:"请选择备案状态",allowClear:!0})})}),(0,N.jsx)(x.A,{span:12,children:(0,N.jsx)(I,{name:"attachmentUrls",label:"上传附件"})})]})}),(0,N.jsx)(l.A,{justify:"center",children:(0,N.jsx)(g.A,{size:16,children:(0,N.jsx)(b.Ay,{loading:S||M,type:"primary",disabled:!D,onClick:function(){return L("submit")},children:"提交"})})})]}),1===j&&(0,N.jsx)("div",{children:(0,N.jsxs)(l.A,{justify:"center",vertical:!0,align:"center",children:[(0,N.jsx)("div",{className:"audit-look",style:{backgroundImage:"url(".concat(R,")")},children:(0,N.jsx)("img",{src:T,className:"audit-look-img"})}),(0,N.jsx)("div",{children:"认证审核中,请耐心等待\xb7\xb7\xb7"})]})}),2===j&&(0,N.jsx)("div",{children:(0,N.jsxs)(l.A,{justify:"center",vertical:!0,align:"center",children:[(0,N.jsx)("img",{src:U}),(0,N.jsx)("div",{children:"审核通过"})]})})]})]})})},65806(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>k});var o=r(35074),a=r(64390),n=r(49535),i=r(61060),s=r(15501),c=r(67199),l=r(14331),d=r(73835),u=r(70861),y=r(30758),x=r(81506),p=r(77088);let h=r.p+"safetyEval-h5/static/images/loginbg.d138957ee61ed67f663e056066722617.jpg",f=r.p+"safetyEval-h5/static/images/logo.29f1619528d3a9c0dfb880d6dcb80ced.png",m=r.p+"safetyEval-h5/static/images/left-img.3cb13f5eadd4eec88a2b87d59799ae50.jpg";var g=r(86070);function b(){var e,t,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",a=r.toStringTag||"@@toStringTag";function n(r,o,a,n){var c=Object.create((o&&o.prototype instanceof s?o:s).prototype);return z(c,"_invoke",function(r,o,a){var n,s,c,l=0,d=a||[],u=!1,y={p:0,n:0,v:e,a:x,f:x.bind(e,4),d:function(t,r){return n=t,s=0,c=e,y.n=r,i}};function x(r,o){for(s=r,c=o,t=0;!u&&l&&!a&&t3?(a=p===o)&&(c=n[(s=n[4])?5:(s=3,3)],n[4]=n[5]=e):n[0]<=x&&((a=r<2&&xo||o>p)&&(n[4]=r,n[5]=o,y.n=p,s=0))}if(a||r>1)return i;throw u=!0,o}return function(a,d,p){if(l>1)throw TypeError("Generator is already running");for(u&&1===d&&x(d,p),s=d,c=p;(t=s<2?e:c)||!u;){n||(s?s<3?(s>1&&(y.n=-1),x(s,c)):y.n=c:y.v=c);try{if(l=2,n){if(s||(a="next"),t=n[a]){if(!(t=t.call(n,c)))throw TypeError("iterator result is not an object");if(!t.done)return t;c=t.value,s<2&&(s=0)}else 1===s&&(t=n.return)&&t.call(n),s<2&&(c=TypeError("The iterator does not provide a '"+a+"' method"),s=1);n=e}else if((t=(u=y.n<0)?c:r.call(o,y))!==i)break}catch(t){n=e,s=1,c=t}finally{l=1}}return{value:t,done:u}}}(r,a,n),!0),c}var i={};function s(){}function c(){}function l(){}t=Object.getPrototypeOf;var d=l.prototype=s.prototype=Object.create([][o]?t(t([][o]())):(z(t={},o,function(){return this}),t));function u(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,l):(e.__proto__=l,z(e,a,"GeneratorFunction")),e.prototype=Object.create(d),e}return c.prototype=l,z(d,"constructor",l),z(l,"constructor",c),c.displayName="GeneratorFunction",z(l,a,"GeneratorFunction"),z(d),z(d,a,"Generator"),z(d,o,function(){return this}),z(d,"toString",function(){return"[object Generator]"}),(b=function(){return{w:n,m:u}})()}function z(e,t,r,o){var a=Object.defineProperty;try{a({},"",{})}catch(e){a=0}(z=function(e,t,r,o){function n(t,r){z(e,t,function(e){return this._invoke(t,r,e)})}t?a?a(e,t,{value:r,enumerable:!o,configurable:!o,writable:!o}):e[t]=r:(n("next",0),n("throw",1),n("return",2))})(e,t,r,o)}function v(e,t,r,o,a,n,i){try{var s=e[n](i),c=s.value}catch(e){return void r(e)}s.done?t(c):Promise.resolve(c).then(o,a)}function j(e){return function(){var t=this,r=arguments;return new Promise(function(o,a){var n=e.apply(t,r);function i(e){v(n,o,a,i,s,"next",e)}function s(e){v(n,o,a,i,s,"throw",e)}i(void 0)})}}function C(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return N(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?N(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function N(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);r0||E,loading:E,onClick:w,children:k>0?"".concat(k,"s后重试"):"获取验证码"})]})}),(0,g.jsxs)(c.A.Item,{children:[(0,g.jsx)(u.Ay,{className:"register-submit-btn",type:"primary",htmlType:"submit",loading:M,children:"注册"}),(0,g.jsx)(u.Ay,{className:"register-submit-btn",loading:M,onClick:function(){return window.location.href="https://gbs-gateway.qhdsafety.com/login/client/ZQAQPJ"},children:"去登录"})]})]})]})]})]})})},69102(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>U});var o=r(30758),a=r(61984),n=r(45259),i=r(61060),s=r(91375),c=r(92304),l=r(1931),d=r(11486),u=r(5084),y=r(15147),x=r(39430),p=r(69016),h=r(26263),f=r(7466),m=r(8258),g=r(86070);function b(e){return(b="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function z(e){return function(e){if(Array.isArray(e))return k(e)}(e)||function(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||N(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function v(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,o)}return r}function j(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||N(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function N(e,t){if(e){if("string"==typeof e)return k(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?k(e,t):void 0}}function k(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rtypeof ResizeObserver?new ResizeObserver(e):null;return t&&t.observe(i.current),window.addEventListener("resize",e),n&&Object.entries(n).forEach(function(e){var t=C(e,2),r=t[0],o=t[1];return s.current.on(r,o)}),function(){n&&s.current&&Object.entries(n).forEach(function(e){var t=C(e,2),r=t[0],o=t[1];return s.current.off(r,o)}),window.removeEventListener("resize",e),t&&t.disconnect(),s.current&&s.current.dispose(),s.current=null}}},[]),(0,o.useEffect)(function(){s.current&&s.current.setOption(t,!0)},[t]),(0,g.jsx)("div",{className:r,ref:i})}function E(e){var t=e.data;return(0,g.jsxs)("header",{className:"cockpit-header",children:[(0,g.jsx)(h.default,{theme:"dark",className:"cockpit-header__back"}),(0,g.jsx)("div",{className:"cockpit-header__deco cockpit-header__deco--left"}),(0,g.jsx)("h1",{children:t.title}),(0,g.jsxs)("div",{className:"cockpit-header__time",children:[(0,g.jsx)(l.A,{}),t.currentTime]}),(0,g.jsx)("div",{className:"cockpit-header__deco cockpit-header__deco--right"})]})}function S(e){var t=e.title,r=e.children,o=e.className;return(0,g.jsxs)("section",{className:"cockpit-panel ".concat(void 0===o?"":o),children:[(0,g.jsxs)("div",{className:"cockpit-panel__title",children:[(0,g.jsx)("span",{className:"cockpit-panel__diamond"}),(0,g.jsx)("span",{children:t}),(0,g.jsx)("i",{})]}),(0,g.jsx)("div",{className:"cockpit-panel__body",children:r})]})}function M(e){var t=e.data,r=(0,o.useMemo)(function(){return{color:["#1aa7ff","#d7a92c"],grid:{left:28,right:10,top:20,bottom:42},legend:{right:8,top:0,itemWidth:10,itemHeight:6,textStyle:{color:"#b9d8ff",fontSize:10}},tooltip:{trigger:"axis",backgroundColor:"rgba(3, 25, 66, .92)",borderColor:"#1aa7ff",textStyle:{color:"#dff7ff"}},xAxis:{type:"category",data:t.industry.map(function(e){return e.name}),axisLabel:{color:"#b9cfff",fontSize:10,interval:0,rotate:0,width:38,overflow:"break"},axisLine:{lineStyle:{color:"#17416e"}},axisTick:{show:!1}},yAxis:{type:"value",max:220,splitNumber:4,axisLabel:{color:"#b9cfff",fontSize:10},splitLine:{lineStyle:{color:"rgba(78, 143, 219, .2)",type:"dashed"}}},series:[{name:"类型数",type:"bar",stack:"total",barWidth:14,data:t.industry.map(function(e){return e.rectification})},{name:"机构数",type:"bar",stack:"total",barWidth:14,data:t.industry.map(function(e){return e.institution})}]}},[t.industry]);return(0,g.jsxs)(S,{title:"资质全生命周期管理",className:"lifecycle-panel",children:[(0,g.jsx)("div",{className:"life-grid",children:t.lifecycleStats.map(function(e,t){return(0,g.jsxs)("div",{className:"life-stat",children:[(0,g.jsx)("span",{className:"life-stat__icon",children:(0,g.jsx)(p.A,{})}),(0,g.jsxs)("div",{children:[(0,g.jsx)("p",{children:e.label}),(0,g.jsx)("strong",{children:e.value})]})]},e.label)})}),(0,g.jsx)("div",{className:"progress-list",children:t.progress.map(function(e){return(0,g.jsxs)("div",{className:"progress-row",children:[(0,g.jsx)("span",{children:e.label}),(0,g.jsx)("div",{className:"progress-track",children:(0,g.jsx)("i",{style:{width:"".concat(e.value,"%"),background:e.color}})}),(0,g.jsxs)("b",{children:[e.value,"%"]})]},e.label)})}),(0,g.jsx)(A,{className:"industry-chart",option:r})]})}function w(e){var t=e.data,r=(0,o.useMemo)(function(){return{color:["#5f8cff","#e96fff","#5fd8ae","#b6a0ff"],tooltip:{trigger:"item",backgroundColor:"rgba(3, 25, 66, .92)",borderColor:"#1aa7ff",textStyle:{color:"#dff7ff"}},legend:{orient:"vertical",right:2,top:"center",itemWidth:10,itemHeight:6,textStyle:{color:"#c6dcff",fontSize:10}},series:[{type:"pie",radius:["46%","70%"],center:["30%","55%"],avoidLabelOverlap:!0,label:{show:!1},data:t.riskPie}]}},[t.riskPie]);return(0,g.jsxs)(S,{title:"风险预警智能研判",className:"risk-panel",children:[(0,g.jsx)("h3",{children:"资质备案类失信统计"}),(0,g.jsx)("div",{className:"risk-grid",children:t.riskItems.map(function(e){return(0,g.jsxs)("div",{className:"risk-item",children:[(0,g.jsx)("span",{children:e.label}),(0,g.jsx)("b",{children:e.value})]},e.label)})}),(0,g.jsx)("h3",{children:"备案机构违法触发统计"}),(0,g.jsx)(A,{className:"risk-pie",option:r})]})}function O(e){var t=e.data;return(0,g.jsx)("div",{className:"kpi-row",children:t.kpis.map(function(e){return(0,g.jsxs)("div",{className:"kpi-card",children:[(0,g.jsx)("p",{children:e.title}),(0,g.jsx)("strong",{children:e.value}),(0,g.jsxs)("span",{children:["同比 ",(0,g.jsxs)("b",{children:["↗ ",e.change]})]})]},e.title)})})}function P(e){var t=e.data,r=C((0,o.useState)("重庆市"),2),a=r[0],n=r[1],i=(0,o.useMemo)(function(){return new Map(t.mapAreaStats.map(function(e){return[e.name,e]}))},[t.mapAreaStats]),s=(0,o.useMemo)(function(){return(m.features||[]).map(function(e,t){var r=e.properties&&e.properties.name;return j(j({},i.get(r)||{name:r,value:18+7*t,projectCount:18+7*t,hiddenDanger:0,institutionCount:0,rectificationRate:"100%"}),{},{name:r})})},[i]),c=i.get(a)||s[0]||t.mapAreaStats[0],l=s.map(function(e){return Number(e.value)||0}),d=Math.max.apply(Math,z(l).concat([100])),u=(0,o.useMemo)(function(){return{tooltip:{trigger:"item",backgroundColor:"rgba(2, 31, 82, .96)",borderColor:"#1aa7ff",borderWidth:1,padding:[8,10],textStyle:{color:"#eaf9ff",fontSize:12},formatter:function(e){var t=e.data||i.get(e.name);return t?["".concat(e.name,""),"评价项目数:".concat(t.projectCount||t.value||0),"备案机构数:".concat(t.institutionCount||0),"隐患数量:".concat(t.hiddenDanger||0),"整改率:".concat(t.rectificationRate||"-")].join("
"):e.name}},visualMap:{min:0,max:d,show:!1,inRange:{color:["#b9ef7c","#ffe178","#ffb16f","#ff8d86","#de8ff0"]}},geo:{map:"chongqing",roam:!0,zoom:1.1,top:10,bottom:0,left:0,right:0,selectedMode:"single",itemStyle:{borderColor:"#31d8ff",borderWidth:1.2,shadowBlur:16,shadowColor:"rgba(0, 179, 255, .52)"},emphasis:{label:{show:!0,color:"#062142",fontWeight:700},itemStyle:{areaColor:"#49f0ce",borderColor:"#f8ffff",borderWidth:1.8}},select:{label:{show:!0,color:"#061a35",fontWeight:700},itemStyle:{areaColor:"#31d6ff",borderColor:"#ffffff",borderWidth:2.2}},label:{show:!0,color:"#244269",fontSize:10}},series:[{name:"区域项目统计",type:"map",map:"chongqing",geoIndex:0,selectedMode:"single",data:s.map(function(e){return j(j({},e),{},{selected:e.name===a})})},{name:"重点乡镇",type:"effectScatter",coordinateSystem:"geo",rippleEffect:{brushType:"stroke",scale:3.2},symbolSize:function(e){return Math.max(8,Math.min(18,e[2]/4))},itemStyle:{color:"#12f4ff",shadowBlur:10,shadowColor:"#12f4ff"},label:{show:!1},data:t.mapScatterPoints.map(function(e){return{name:e.name,value:[].concat(z(e.coord),[e.value])}})}]}},[t.mapScatterPoints,s,d,a,i]),y=(0,o.useMemo)(function(){return{click:function(e){e&&e.name&&n(e.name)}}},[]);return(0,g.jsxs)("div",{className:"map-shell",children:[(0,g.jsx)(A,{className:"map-chart",option:u,events:y}),t.mapScatterPoints.map(function(e,t){return(0,g.jsxs)("div",{className:"map-card map-card--".concat(t+1),children:[(0,g.jsx)("strong",{children:e.name}),(0,g.jsxs)("span",{children:["正在开展评价项目数:",e.value]})]},e.name)}),(0,g.jsxs)("div",{className:"map-summary",children:[(0,g.jsx)("strong",{children:c&&c.name}),(0,g.jsxs)("span",{children:["项目数:",c&&(c.projectCount||c.value)]}),(0,g.jsxs)("span",{children:["隐患:",c&&c.hiddenDanger]}),(0,g.jsxs)("span",{children:["整改率:",c&&c.rectificationRate]})]}),(0,g.jsxs)("ul",{className:"map-legend",children:[(0,g.jsx)("li",{children:"0-10"}),(0,g.jsx)("li",{children:"11-30"}),(0,g.jsx)("li",{children:"31-50"}),(0,g.jsx)("li",{children:"51-100"})]})]})}function _(e){var t=e.data;return(0,g.jsx)(S,{title:"执业全过程管控",className:"todo-panel",children:(0,g.jsx)("div",{className:"todo-grid",children:t.todo.map(function(e,t){var r=I[t]||n.A;return(0,g.jsxs)("div",{className:"todo-item",children:[(0,g.jsx)("span",{children:(0,g.jsx)(r,{})}),(0,g.jsx)("p",{children:e.label}),(0,g.jsx)("b",{children:e.value})]},e.label)})})})}function H(e){var t=e.data,r=(0,o.useMemo)(function(){return{color:["#0da5ff","#29e487"],grid:{left:34,right:12,top:28,bottom:32},legend:{right:0,top:0,itemWidth:14,itemHeight:4,textStyle:{color:"#c6dcff",fontSize:10}},tooltip:{trigger:"axis",backgroundColor:"rgba(3, 25, 66, .92)",borderColor:"#1aa7ff",textStyle:{color:"#dff7ff"}},xAxis:{type:"category",boundaryGap:!1,data:t.reviewLine.xAxis,axisLabel:{color:"#c6dcff",fontSize:10},axisLine:{lineStyle:{color:"#17416e"}},axisTick:{show:!1}},yAxis:{type:"value",min:0,max:100,splitNumber:5,axisLabel:{color:"#c6dcff",fontSize:10},splitLine:{lineStyle:{color:"rgba(78, 143, 219, .22)",type:"dashed"}}},series:[{name:"项目数",type:"line",smooth:!0,symbolSize:5,areaStyle:{opacity:.22},data:t.reviewLine.project},{name:"监督检查数",type:"line",smooth:!0,symbolSize:5,areaStyle:{opacity:.14},data:t.reviewLine.supervision}]}},[t.reviewLine]);return(0,g.jsxs)(S,{title:"评价类型趋势",className:"line-panel",children:[(0,g.jsxs)("div",{className:"period-tabs",children:[(0,g.jsx)("span",{children:"年"}),(0,g.jsx)("span",{children:"季"}),(0,g.jsx)("span",{children:"月"})]}),(0,g.jsx)(A,{className:"line-chart",option:r})]})}function T(e){var t=e.data,r=(0,o.useMemo)(function(){return{color:["#1677ff","#00c089","#ff7a1a","#f7cb16","#ab5fde"],tooltip:{trigger:"item",backgroundColor:"rgba(3, 25, 66, .92)",borderColor:"#1aa7ff",textStyle:{color:"#dff7ff"}},legend:{orient:"vertical",right:0,top:"center",itemWidth:10,itemHeight:8,textStyle:{color:"#c6dcff",fontSize:10}},series:[{type:"pie",radius:["32%","68%"],center:["28%","56%"],label:{show:!1},data:t.reviewPie}]}},[t.reviewPie]);return(0,g.jsxs)(S,{title:"复盘评估改进提效",className:"review-panel",children:[(0,g.jsx)("div",{className:"review-stats",children:t.reviewProgress.map(function(e){return(0,g.jsxs)("div",{className:"review-stat",children:[(0,g.jsx)("span",{children:(0,g.jsx)(y.A,{})}),(0,g.jsxs)("p",{children:[e.label,":",(0,g.jsx)("b",{className:e.danger?"danger":"",children:e.value})]})]},e.label)})}),(0,g.jsx)(A,{className:"review-pie",option:r})]})}function R(e){var t=e.data;return(0,g.jsx)(S,{title:"项目流程",className:"process-panel",children:(0,g.jsx)("div",{className:"process-grid",children:t.process.map(function(e,r){return(0,g.jsxs)("div",{className:"process-node",children:[(0,g.jsx)("strong",{children:e.value}),(0,g.jsx)("span",{children:e.label}),ro});var o={title:"重庆市安全评价在线监管一件事",currentTime:"2025年05月23日 12:30:30",lifecycleStats:[{label:"本年新增备案机构数",value:450},{label:"当前备案机构数",value:265},{label:"本年注销机构数",value:23},{label:"全部备案机构数",value:46},{label:"退出备案评价师数",value:85},{label:"当前备案评价师数",value:125}],progress:[{label:"评价机构备案完成率",value:95,color:"#21d8ff"},{label:"备案机构开展业务率",value:80,color:"#18f7d2"},{label:"备案机构新增率",value:62,color:"#ffd11a"}],industry:[{name:"煤矿开采业",rectification:30,institution:135},{name:"金属",rectification:72,institution:125},{name:"非金属矿及其他矿",rectification:35,institution:140},{name:"陆地石油和天然气",rectification:0,institution:84},{name:"陆上油气管道运输",rectification:100,institution:200},{name:"石油加工业",rectification:30,institution:135},{name:"化学原料",rectification:72,institution:175},{name:"金属冶炼",rectification:70,institution:116}],riskItems:[{label:"重大违法失信数",value:56},{label:"法人资质终止数",value:13},{label:"资质证书有效期届满未延续数",value:43},{label:"评价机构超资质范围执业数",value:45},{label:"经营地址、法人等相关信息变更数",value:24}],riskPie:[{name:"机构违法行为",value:28},{name:"资质维持基础行为",value:25},{name:"过程控制违规行为",value:22},{name:"其他情况",value:25}],kpis:[{title:"备案项目开展评价率",value:"56.3%",change:"3.5%"},{title:"企业评价项目合格率",value:"98.5%",change:"5.6%"},{title:"隐患整改率",value:"99.8%",change:"0.6%"}],mapAreaStats:[{name:"重庆市",value:128,projectCount:985,hiddenDanger:126,institutionCount:265,rectificationRate:"99.8%"},{name:"渝中区",value:88,projectCount:88,hiddenDanger:12,institutionCount:26,rectificationRate:"99.2%"},{name:"江北区",value:76,projectCount:76,hiddenDanger:9,institutionCount:22,rectificationRate:"98.8%"},{name:"南岸区",value:69,projectCount:69,hiddenDanger:8,institutionCount:18,rectificationRate:"98.5%"},{name:"九龙坡区",value:82,projectCount:82,hiddenDanger:11,institutionCount:24,rectificationRate:"98.9%"},{name:"沙坪坝区",value:73,projectCount:73,hiddenDanger:10,institutionCount:20,rectificationRate:"98.6%"},{name:"两江新区",value:94,projectCount:94,hiddenDanger:13,institutionCount:28,rectificationRate:"99.4%"},{name:"万州区",value:65,projectCount:65,hiddenDanger:8,institutionCount:16,rectificationRate:"97.9%"},{name:"涪陵区",value:58,projectCount:58,hiddenDanger:7,institutionCount:14,rectificationRate:"98.1%"},{name:"永川区",value:61,projectCount:61,hiddenDanger:7,institutionCount:15,rectificationRate:"98.3%"},{name:"合川区",value:54,projectCount:54,hiddenDanger:6,institutionCount:13,rectificationRate:"97.8%"},{name:"长寿区",value:52,projectCount:52,hiddenDanger:6,institutionCount:12,rectificationRate:"98.0%"},{name:"璧山区",value:48,projectCount:48,hiddenDanger:5,institutionCount:11,rectificationRate:"98.7%"},{name:"大足区",value:44,projectCount:44,hiddenDanger:5,institutionCount:10,rectificationRate:"97.6%"},{name:"綦江区",value:41,projectCount:41,hiddenDanger:4,institutionCount:9,rectificationRate:"97.2%"},{name:"奉节县",value:36,projectCount:36,hiddenDanger:4,institutionCount:8,rectificationRate:"96.9%"}],mapScatterPoints:[{name:"渝中区",value:88,coord:[106.568955,29.552642]},{name:"江北区",value:76,coord:[106.574271,29.606703]},{name:"九龙坡区",value:82,coord:[106.51107,29.50197]},{name:"万州区",value:65,coord:[108.380246,30.807807]},{name:"涪陵区",value:58,coord:[107.394905,29.703652]}],todo:[{label:"合同签订",value:59},{label:"待风险分析",value:58},{label:"待成立项目组",value:126},{label:"待制定工作计划",value:587},{label:"待初勘",value:54},{label:"待编制检查表",value:487},{label:"待从业告知",value:25},{label:"待现场勘查",value:14},{label:"过程管控",value:156}],reviewLine:{xAxis:["定期检测","现状评价","控制效果评价","预评价","设计专篇","委托检测"],project:[72,48,61,57,45,94],supervision:[54,60,51,38,62,55]},reviewProgress:[{label:"现场检查数",value:56},{label:"现场检查问题数",value:5,danger:!0},{label:"项目复查数",value:45},{label:"现场复查问题数",value:14,danger:!0},{label:"检查机构数",value:36},{label:"检查发现问题数",value:4,danger:!0}],reviewPie:[{name:"评价执行超期未完成数",value:38},{name:"评价现场检查确认风险隐患数",value:12},{name:"复查评估报告数",value:14},{name:"监管检查处罚数",value:21},{name:"项目主要负责人变更数",value:15}],process:[{label:"项目合同签订",value:52},{label:"风险分析",value:58},{label:"成立项目组",value:59},{label:"制定工作计划",value:98},{label:"初勘",value:51},{label:"归档",value:236},{label:"过程管控",value:136},{label:"现场勘查",value:145},{label:"从业告知",value:278},{label:"编制检查表",value:25}]}},35007(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>O});var o=r(30758),a=r(61984),n=r(61060),i=r(53693),s=r(45259),c=r(15147),l=r(91375),d=r(92304),u=r(11486),y=r(13264),x=r(1931),p=r(49835),h=r(65033),f=r(2867),m=r(26263),g=r(86070),b=[{title:"备案整体情况",items:[{label:"已备案机构数",value:985,yoy:"23%",qoq:"5%",yoyUp:!0,qoqUp:!1},{label:"开发评价企业数",value:5846,yoy:"3%",qoq:"1%",yoyUp:!0,qoqUp:!1},{label:"开展业务机构数",value:89512,yoy:"15%",qoq:"2%",yoyUp:!0,qoqUp:!1},{label:"备案评价师数",value:10005,yoy:"10%",qoq:"5%",yoyUp:!1,qoqUp:!1}]},{title:"本年数据统计",items:[{label:"开展评价企业数",value:523,yoy:"23%",qoq:"5%",yoyUp:!0,qoqUp:!1},{label:"评价项目数",value:5600,yoy:"3%",qoq:"1%",yoyUp:!0,qoqUp:!1},{label:"评价服务机构数",value:1200,yoy:"15%",qoq:"2%",yoyUp:!0,qoqUp:!1},{label:"评价服务项目数",value:2500,yoy:"10%",qoq:"5%",yoyUp:!1,qoqUp:!1}]}],z=[{label:"待审核",value:956,color:"#f1f3ff"},{label:"待审核",value:548,color:"#d9f6fb"},{label:"待审核",value:1548,color:"#faf4dc"}],v=[{group:"本地备案机构数",label:"平台备案数",value:2654,icon:n.A,color:"#ffb739",bg:"#fffbe8"},{group:"本地备案机构数",label:"完全备案确认",value:4561,icon:i.A,color:"#3aaef6",bg:"#eefaff"},{group:"异地备案机构数",label:"平台备案数",value:126,icon:n.A,color:"#60ddc7",bg:"#ecfbf8"},{group:"异地备案机构数",label:"完全备案确认",value:254,icon:i.A,color:"#928cf1",bg:"#f3f3ff"}],j=[{label:"项目合同签订",value:5632,icon:s.A,color:"#409eff"},{label:"待风险分析",value:951,icon:c.A,color:"#8d7cf6"},{label:"待成立项目组",value:5632,icon:l.A,color:"#43d2c5"},{label:"待制定工作计划",value:5632,icon:d.A,color:"#ff9f42"},{label:"待初勘",value:5632,icon:u.A,color:"#8b7df3"},{label:"归档",value:651,icon:y.A,color:"#08c7ad"},{label:"过程管控",value:951,icon:x.A,color:"#3ca6f5"},{label:"待现场勘查",value:5632,icon:p.A,color:"#8b7df3"},{label:"待从业告知",value:5632,icon:h.A,color:"#ffb327"},{label:"待编制检查表",value:456,icon:f.A,color:"#8b7df3"}];function C(e){var t=e.option,r=e.className,n=(0,o.useRef)(null),i=(0,o.useRef)(null);return(0,o.useEffect)(function(){if(n.current){i.current=a.Ts(n.current,null,{renderer:"svg"});var e=function(){return i.current&&i.current.resize()},t="u">typeof ResizeObserver?new ResizeObserver(e):null;return t&&t.observe(n.current),window.addEventListener("resize",e),function(){window.removeEventListener("resize",e),t&&t.disconnect(),i.current&&i.current.dispose(),i.current=null}}},[]),(0,o.useEffect)(function(){i.current&&i.current.setOption(t,!0)},[t]),(0,g.jsx)("div",{className:r,ref:n})}function N(e){var t=e.title,r=e.children,o=e.className;return(0,g.jsxs)("section",{className:"supervision-home-card ".concat(void 0===o?"":o),children:[(0,g.jsx)("h3",{children:t}),r]})}function k(e){var t=e.label,r=e.value,o=e.up;return(0,g.jsxs)("span",{children:[t," ",(0,g.jsx)("i",{className:o?"up":"down",children:o?"▲":"▼"})," ",r]})}function I(){return(0,g.jsx)(N,{title:"备案整体情况",className:"overview-card",children:b.map(function(e){return(0,g.jsxs)("div",{className:"overview-group",children:["备案整体情况"!==e.title&&(0,g.jsx)("h3",{children:e.title}),(0,g.jsx)("div",{className:"overview-grid",children:e.items.map(function(e){return(0,g.jsxs)("div",{className:"overview-item",children:[(0,g.jsx)("p",{children:e.label}),(0,g.jsx)("strong",{children:e.value}),(0,g.jsxs)("div",{children:[(0,g.jsx)(k,{label:"同比",value:e.yoy,up:e.yoyUp}),(0,g.jsx)(k,{label:"环比",value:e.qoq,up:e.qoqUp})]})]},e.label)})})]},e.title)})})}function A(){return(0,g.jsx)(N,{title:"待办事项",className:"todo-home-card",children:(0,g.jsx)("div",{className:"todo-home-grid",children:z.map(function(e,t){return(0,g.jsxs)("div",{className:"todo-home-item",style:{background:e.color},children:[(0,g.jsx)("p",{children:e.label}),(0,g.jsx)("strong",{children:e.value})]},"".concat(e.label,"-").concat(t))})})})}function E(e){var t=e.title,r=e.cards;return(0,g.jsx)(N,{title:t,className:"filing-card",children:(0,g.jsx)("div",{className:"filing-grid",children:r.map(function(e){var t=e.icon;return(0,g.jsxs)("div",{className:"filing-item",style:{background:e.bg},children:[(0,g.jsx)("span",{style:{background:e.color},children:(0,g.jsx)(t,{})}),(0,g.jsxs)("div",{children:[(0,g.jsx)("p",{children:e.label}),(0,g.jsx)("strong",{style:{color:e.color},children:e.value})]})]},e.label)})})})}function S(){return(0,g.jsxs)(N,{title:"当前评价状态状态统计",className:"flow-card",children:[(0,g.jsxs)("div",{className:"region-select",children:["请选择县区 ",(0,g.jsx)("span",{children:"⌄"})]}),(0,g.jsxs)("div",{className:"flow-summary",children:[(0,g.jsx)("span",{children:"评价项目合计:228"}),(0,g.jsx)("span",{children:"评价完成:185"}),(0,g.jsx)("span",{children:"正在进行中:21"}),(0,g.jsx)("span",{children:"项目中断:22"})]}),(0,g.jsx)("div",{className:"flow-grid",children:j.map(function(e,t){var r=e.icon;return(0,g.jsxs)("div",{className:"flow-node flow-node-".concat(t+1),children:[(0,g.jsx)("span",{style:{background:e.color},children:(0,g.jsx)(r,{})}),(0,g.jsxs)("div",{children:[(0,g.jsx)("p",{children:e.label}),(0,g.jsx)("strong",{children:e.value})]}),t<4&&(0,g.jsx)("i",{className:"arrow-right"}),4===t&&(0,g.jsx)("i",{className:"arrow-down"}),t>5&&(0,g.jsx)("i",{className:"arrow-left"})]},e.label)})})]})}function M(){var e=(0,o.useMemo)(function(){return{color:["#409eff","#ff9f43"],grid:{left:38,right:16,top:34,bottom:28},legend:{right:8,top:0,itemWidth:14,itemHeight:6,textStyle:{color:"#555",fontSize:12}},tooltip:{trigger:"axis",backgroundColor:"#fff",borderColor:"#edf0f5",textStyle:{color:"#333"}},xAxis:{type:"category",boundaryGap:!1,data:["定期检测","现状评价","控制效果评价","预评价","设计专篇","委托检测"],axisLabel:{color:"#555",fontSize:11},axisTick:{show:!1},axisLine:{lineStyle:{color:"#e6eaf0"}}},yAxis:{type:"value",max:200,splitNumber:4,axisLabel:{color:"#777"},splitLine:{lineStyle:{color:"#eef1f5",type:"dashed"}}},series:[{name:"企业数",type:"line",smooth:!0,symbolSize:6,data:[5,38,52,33,92,78,120,116,132],areaStyle:{color:"rgba(64,158,255,.08)"}},{name:"评价数",type:"line",smooth:!0,symbolSize:6,data:[4,47,31,42,72,75,64,140,121]}]}},[]);return(0,g.jsx)(N,{title:"评价类型分类",className:"chart-card line-home-card",children:(0,g.jsx)(C,{className:"home-line-chart",option:e})})}function w(){var e=(0,o.useMemo)(function(){return{color:["#5b9bff","#ffc75b"],grid:{left:38,right:18,top:38,bottom:36},legend:{right:8,top:0,itemWidth:12,itemHeight:12,textStyle:{color:"#555",fontSize:12}},tooltip:{trigger:"axis",backgroundColor:"#fff",borderColor:"#edf0f5",textStyle:{color:"#333"}},xAxis:{type:"category",data:["矿山开采业","危险化学品行业","烟花爆竹行业","金属冶炼与加工","建筑施工","交通运输业"],axisLabel:{color:"#555",fontSize:11,interval:0},axisTick:{show:!1},axisLine:{lineStyle:{color:"#e6eaf0"}}},yAxis:{type:"value",max:200,splitNumber:4,axisLabel:{color:"#777"},splitLine:{lineStyle:{color:"#eef1f5"}}},series:[{name:"企业数",type:"bar",barWidth:12,data:[158,76,112,108,158,143]},{name:"评价数",type:"bar",barWidth:12,data:[92,136,57,136,123,121]}]}},[]);return(0,g.jsx)(N,{title:"企业类型评价统计",className:"chart-card bar-home-card",children:(0,g.jsx)(C,{className:"home-bar-chart",option:e})})}function O(){return(0,g.jsxs)("div",{className:"supervision-dashboard-page",children:[(0,g.jsx)("div",{className:"supervision-dashboard-toolbar",children:(0,g.jsx)(m.default,{})}),(0,g.jsxs)("div",{className:"supervision-dashboard-grid",children:[(0,g.jsxs)("div",{className:"dashboard-left",children:[(0,g.jsx)(I,{}),(0,g.jsxs)("div",{className:"filing-row",children:[(0,g.jsx)(E,{title:"本地备案机构数",cards:v.slice(0,2)}),(0,g.jsx)(E,{title:"异地备案机构数",cards:v.slice(2)})]}),(0,g.jsx)(S,{})]}),(0,g.jsxs)("div",{className:"dashboard-right",children:[(0,g.jsx)(A,{}),(0,g.jsx)(M,{}),(0,g.jsx)(w,{})]})]})]})}},7864(e,t,r){"use strict";r.r(t),r.d(t,{initEcharts1:()=>a,initEcharts2:()=>n,initEcharts3:()=>i,initEcharts4:()=>s,initEcharts5:()=>c});var o=r(61984),a=function(e,t,r){t.current=o.Ts(e.current);var a="#FF0000",n="#FF7900",i="#FEAD00",s="#0078FF",c={legend:{data:["重大风险","较大风险","一般风险","低风险"],orient:"vertical",right:"20px",y:"center",itemGap:30,formatter:function(e){var t,o;switch(e){case"重大风险":t=r.majorRiskCount,o="major_value";break;case"较大风险":t=r.greaterRiskCount,o="greater_value";break;case"一般风险":t=r.generalRiskCount,o="general_value";break;case"低风险":t=r.lowRiskCount,o="low_value";break;default:t=0,o="default_value"}return"{text|".concat(e,": }{").concat(o,"|").concat(t,"}")},textStyle:{rich:{major_value:{color:a,fontSize:16,fontWeight:"bold",padding:[0,0,0,2]},greater_value:{color:n,fontSize:16,fontWeight:"bold",padding:[0,0,0,2]},general_value:{color:i,fontSize:16,fontWeight:"bold",padding:[0,0,0,2]},low_value:{color:s,fontSize:16,fontWeight:"bold",padding:[0,0,0,2]},default_value:{color:"#999",fontSize:16,fontWeight:"bold",padding:[0,0,0,2]},text:{color:"#000",fontSize:16,padding:[0,0,0,5]}}}},tooltip:{show:!0},series:[{type:"pie",radius:["75%","55%"],center:["35%","50%"],emphasis:{scale:!1},data:[{value:r.majorRiskCount,name:"重大风险",itemStyle:{color:a}},{value:r.greaterRiskCount,name:"较大风险",itemStyle:{color:n}},{value:r.generalRiskCount,name:"一般风险",itemStyle:{color:i}},{value:r.lowRiskCount,name:"低风险",itemStyle:{color:s}}],label:{show:!1}},{type:"pie",radius:["60%","40%"],center:["35%","50%"],emphasis:{scale:!1},z:10,label:{position:"center",formatter:function(){return""}},data:[{value:r.majorRiskCount,name:"重大风险",itemStyle:{color:a,opacity:.5}},{value:r.greaterRiskCount,name:"较大风险",itemStyle:{color:n,opacity:.5}},{value:r.generalRiskCount,name:"一般风险",itemStyle:{color:i,opacity:.5}},{value:r.lowRiskCount,name:"低风险",itemStyle:{color:s,opacity:.5}}],labelLine:{show:!1}},{name:"ring5",type:"custom",coordinateSystem:"none",renderItem:function(e,t){return{type:"arc",shape:{cx:.35*t.getWidth(),cy:.5*t.getHeight(),r:Math.min(t.getWidth(),t.getHeight())/2*.8,startAngle:0*Math.PI/180,endAngle:90*Math.PI/180},style:{stroke:a,fill:"transparent",lineWidth:1.5},silent:!0}},data:[0]},{name:"ring5",type:"custom",coordinateSystem:"none",renderItem:function(e,t){var r=l(.35*t.getWidth(),.5*t.getHeight(),Math.min(t.getWidth(),t.getHeight())/2*.8,0);return{type:"circle",shape:{cx:r.x,cy:r.y,r:4},style:{stroke:a,fill:a},silent:!0}},data:[0]},{name:"ring5",type:"custom",coordinateSystem:"none",renderItem:function(e,t){return{type:"arc",shape:{cx:.35*t.getWidth(),cy:.5*t.getHeight(),r:Math.min(t.getWidth(),t.getHeight())/2*.8,startAngle:180*Math.PI/180,endAngle:270*Math.PI/180},style:{stroke:n,fill:"transparent",lineWidth:1.5},silent:!0}},data:[0]},{name:"ring5",type:"custom",coordinateSystem:"none",renderItem:function(e,t){var r=l(.35*t.getWidth(),.5*t.getHeight(),Math.min(t.getWidth(),t.getHeight())/2*.8,180);return{type:"circle",shape:{cx:r.x,cy:r.y,r:4},style:{stroke:n,fill:n},silent:!0}},data:[0]},{name:"ring5",type:"custom",coordinateSystem:"none",renderItem:function(e,t){return{type:"arc",shape:{cx:.35*t.getWidth(),cy:.5*t.getHeight(),r:Math.min(t.getWidth(),t.getHeight())/2*.85,startAngle:250*Math.PI/180,endAngle:10*Math.PI/180},style:{stroke:i,fill:"transparent",lineWidth:1.5},silent:!0}},data:[0]},{name:"ring5",type:"custom",coordinateSystem:"none",renderItem:function(e,t){var r=l(.35*t.getWidth(),.5*t.getHeight(),Math.min(t.getWidth(),t.getHeight())/2*.85,250);return{type:"circle",shape:{cx:r.x,cy:r.y,r:4},style:{stroke:i,fill:i},silent:!0}},data:[0]},{name:"ring5",type:"custom",coordinateSystem:"none",renderItem:function(e,t){return{type:"arc",shape:{cx:.35*t.getWidth(),cy:.5*t.getHeight(),r:Math.min(t.getWidth(),t.getHeight())/2*.85,startAngle:70*Math.PI/180,endAngle:200*Math.PI/180},style:{stroke:s,fill:"transparent",lineWidth:1.5},silent:!0}},data:[0]},{name:"ring5",type:"custom",coordinateSystem:"none",renderItem:function(e,t){var r=l(.35*t.getWidth(),.5*t.getHeight(),Math.min(t.getWidth(),t.getHeight())/2*.85,70);return{type:"circle",shape:{cx:r.x,cy:r.y,r:4},style:{stroke:s,fill:s},silent:!0}},data:[0]}]};function l(e,t,r,o){return{x:e+r*Math.cos(o*Math.PI/180),y:t+r*Math.sin(o*Math.PI/180)}}t.current.setOption(c)},n=function(e,t,r){t.current=o.Ts(e.current);var a={color:["#F1C416","#0AFCFF"],tooltip:{trigger:"axis",axisPointer:{type:"shadow",label:{backgroundColor:"#6a7985"}}},grid:{left:"3%",right:"4%",bottom:"10%",top:40,padding:"0 0 10 0",containLabel:!0},legend:{right:10,top:10,itemGap:16,itemWidth:18,itemHeight:10,textStyle:{color:"#465683",fontStyle:"normal",fontFamily:"微软雅黑",fontSize:12}},dataZoom:[{type:"slider",height:6,bottom:"6%",show:!0,start:0,end:50,handleSize:3,handleStyle:{color:"#465683"},xAxisIndex:[0],filterMode:"filter",showDetail:!1}],xAxis:[{type:"category",boundaryGap:!0,data:r.map(function(e){return e.name}),axisLabel:{interval:0,margin:15,color:"#465683",fontStyle:"normal",fontFamily:"微软雅黑",fontSize:12},axisTick:{show:!1},axisLine:{lineStyle:{color:"#465683",opacity:.2}},splitLine:{show:!1}}],yAxis:[{type:"value",splitNumber:5,axisLabel:{color:"#465683",fontStyle:"normal",fontFamily:"微软雅黑",fontSize:12},axisLine:{show:!1},axisTick:{show:!1},splitLine:{show:!0,lineStyle:{color:["#465683"],opacity:.06}}}],series:[{name:"已整改",type:"pictorialBar",symbol:"roundRect",symbolOffset:[-5,0],symbolMargin:"1",barWidth:"10%",barMaxWidth:"20%",animationDelay:function(e,t){return 50*t.index},itemStyle:{color:function(){return new o.fA.W4(0,0,1,1,[{offset:0,color:"#FF9600"},{offset:1,color:"#F0E203"}])}},z:1,barGap:0,symbolRepeat:!0,symbolSize:[14,5],data:r.map(function(e){return e.unitCount}),animationEasing:"elasticOut",stack:"2"},{name:"已验收",type:"pictorialBar",symbol:"roundRect",barWidth:"10%",symbolOffset:[5,0],barMaxWidth:"20%",symbolMargin:"1",animationDelay:function(e,t){return 50*t.index},itemStyle:{color:function(){return new o.fA.W4(0,0,1,1,[{offset:0,color:"#19D4FE"},{offset:1,color:"#089FFD"}])}},z:1,barGap:0,symbolRepeat:!0,symbolSize:[14,5],data:r.map(function(e){return e.personnelCount}),animationEasing:"elasticOut",stack:"1"}]};t.current.setOption(a)},i=function(e,t,r){t.current=o.Ts(e.current);var a=["#FF6B6B","","#FFD93D","","#6BCF7F","","#4ECDC4","","#A084CA","","#FF9AA2",""],n=["rgba(255,107,107, 0.6)","","rgba(255,217,61, 0.6)","","rgba(107,207,127, 0.6)","","rgba(78,205,196, 0.6)","","rgba(160,132,202, 0.6)","","rgba(255,154,162, 0.6)",""],i=[];r.forEach(function(e){i.push({value:e.value,name:e.name}),i.push({name:"",value:1,itemStyle:{color:"transparent"}})});var s={tooltip:{trigger:"item"},legend:{show:!0,orient:"vertical",right:"10%",top:"center",textStyle:{color:"#3F4554",fontSize:12},data:r.map(function(e){return e.name})},series:[{type:"pie",zlevel:3,radius:["30%","70%"],center:["25%","50%"],itemStyle:{color:function(e){return a[e.dataIndex]}},label:{show:!1},data:i},{type:"pie",zlevel:1,silent:!0,radius:["73%","80%"],center:["25%","50%"],itemStyle:{color:function(e){return n[e.dataIndex]}},label:{show:!1},data:i},{type:"pie",radius:["85%","86%"],center:["25%","50%"],emphasis:{scale:!1},clockwise:!1,itemStyle:{shadowBlur:1,shadowColor:"rgba(15, 79, 150,1)",color:"rgba(23,138,173,1)"},label:{show:!1},data:[0]}]};t.current.setOption(s)},s=function(e,t,r){t.current=o.Ts(e.current);var a={grid:{containLabel:!0,bottom:"5%",left:"-15%",top:"10%",right:"5%"},xAxis:{type:"value",max:100,axisLabel:{show:!1},axisLine:{show:!1},axisTick:{show:!1},splitLine:{show:!1}},yAxis:[{type:"category",data:r.map(function(e){return e.name}),inverse:!0,position:"left",axisLabel:{show:!1},axisLine:{show:!1},axisTick:{show:!1},splitLine:{show:!1}},{type:"category",data:r.map(function(e){return e.value}),inverse:!0,position:"right",axisLabel:{show:!0,margin:-30,fontSize:14,align:"top",verticalAlign:"bottom",padding:[0,0,10,0],color:"#465683",formatter:function(e){return"".concat(e,"%")}},axisLine:{show:!1},axisTick:{show:!1},splitLine:{show:!1}},{type:"category",inverse:!0,position:"left",axisLine:{show:!1},axisTick:{show:!1},data:r.map(function(e){return e.name}),axisLabel:{show:!0,margin:-2,fontSize:14,align:"top",verticalAlign:"bottom",padding:[0,0,10,0],color:"#465683"}}],series:[{data:r.map(function(e){return e.value}),itemStyle:{color:new o.fA.W4(0,1,1,1,[{offset:0,color:"#0096F8"},{offset:1,color:"#1CD0E7"}]),borderRadius:30},type:"bar",barWidth:10,showBackground:!0,backgroundStyle:{color:"rgba(255,255,255,0.5)",borderRadius:30}}]};t.current.setOption(a)},c=function(e,t,r){t.current=o.Ts(e.current);var a={color:["#007CFA","#009944"],title:[{text:"同比:下降5%",x:10,y:10,textStyle:{fontSize:14,color:"#465683"}},{text:"环比:提升6%",x:150,y:10,textStyle:{fontSize:14,color:"#465683"}}],tooltip:{trigger:"axis"},legend:{right:10,top:10,itemGap:16,itemWidth:18,itemHeight:10,textStyle:{color:"#465683",fontStyle:"normal",fontFamily:"微软雅黑",fontSize:12}},grid:{left:"3%",right:"4%",bottom:"10%",top:40,padding:"0 0 10 0",containLabel:!0},dataZoom:[{type:"slider",height:6,bottom:"6%",show:!0,start:0,end:50,handleSize:3,handleStyle:{color:"#465683"},xAxisIndex:[0],filterMode:"filter",showDetail:!1}],xAxis:[{type:"category",boundaryGap:!0,data:r.map(function(e){return e.department}),axisLabel:{interval:0,margin:15,color:"#465683",fontStyle:"normal",fontFamily:"微软雅黑",fontSize:12},axisTick:{show:!1},axisLine:{lineStyle:{color:"#465683",opacity:.2}},splitLine:{show:!1}}],yAxis:[{type:"value",splitNumber:5,axisLabel:{color:"#465683",fontStyle:"normal",fontFamily:"微软雅黑",fontSize:12},axisLine:{show:!1},axisTick:{show:!1},splitLine:{show:!0,lineStyle:{color:["#465683"],opacity:.06}}}],series:[{name:"同比",type:"line",data:r.map(function(e){return e.yearOnYear})},{name:"环比",type:"line",data:r.map(function(e){return e.monthOnMonth})}]};t.current.setOption(a)}},58638(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>m});var o=r(63667),a=r(47195),n=r(30758),i=r(96370),s=r(98788),c=r(79721),l=r(7864),d=r(86070);function u(){var e,t,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",a=r.toStringTag||"@@toStringTag";function n(r,o,a,n){var c=Object.create((o&&o.prototype instanceof s?o:s).prototype);return y(c,"_invoke",function(r,o,a){var n,s,c,l=0,d=a||[],u=!1,y={p:0,n:0,v:e,a:x,f:x.bind(e,4),d:function(t,r){return n=t,s=0,c=e,y.n=r,i}};function x(r,o){for(s=r,c=o,t=0;!u&&l&&!a&&t3?(a=p===o)&&(c=n[(s=n[4])?5:(s=3,3)],n[4]=n[5]=e):n[0]<=x&&((a=r<2&&xo||o>p)&&(n[4]=r,n[5]=o,y.n=p,s=0))}if(a||r>1)return i;throw u=!0,o}return function(a,d,p){if(l>1)throw TypeError("Generator is already running");for(u&&1===d&&x(d,p),s=d,c=p;(t=s<2?e:c)||!u;){n||(s?s<3?(s>1&&(y.n=-1),x(s,c)):y.n=c:y.v=c);try{if(l=2,n){if(s||(a="next"),t=n[a]){if(!(t=t.call(n,c)))throw TypeError("iterator result is not an object");if(!t.done)return t;c=t.value,s<2&&(s=0)}else 1===s&&(t=n.return)&&t.call(n),s<2&&(c=TypeError("The iterator does not provide a '"+a+"' method"),s=1);n=e}else if((t=(u=y.n<0)?c:r.call(o,y))!==i)break}catch(t){n=e,s=1,c=t}finally{l=1}}return{value:t,done:u}}}(r,a,n),!0),c}var i={};function s(){}function c(){}function l(){}t=Object.getPrototypeOf;var d=l.prototype=s.prototype=Object.create([][o]?t(t([][o]())):(y(t={},o,function(){return this}),t));function x(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,l):(e.__proto__=l,y(e,a,"GeneratorFunction")),e.prototype=Object.create(d),e}return c.prototype=l,y(d,"constructor",l),y(l,"constructor",c),c.displayName="GeneratorFunction",y(l,a,"GeneratorFunction"),y(d),y(d,a,"Generator"),y(d,o,function(){return this}),y(d,"toString",function(){return"[object Generator]"}),(u=function(){return{w:n,m:x}})()}function y(e,t,r,o){var a=Object.defineProperty;try{a({},"",{})}catch(e){a=0}(y=function(e,t,r,o){function n(t,r){y(e,t,function(e){return this._invoke(t,r,e)})}t?a?a(e,t,{value:r,enumerable:!o,configurable:!o,writable:!o}):e[t]=r:(n("next",0),n("throw",1),n("return",2))})(e,t,r,o)}function x(e,t,r,o,a,n,i){try{var s=e[n](i),c=s.value}catch(e){return void r(e)}s.done?t(c):Promise.resolve(c).then(o,a)}function p(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return h(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?h(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);ry});var o=r(30758),a=r(96370);let n=r.p+"safetyEval-h5/static/images/img4.61382ac8137ad6f490ec7f74beceee64.png",i=r.p+"safetyEval-h5/static/images/img5.47cd807ff82d48fed45c33679d399e3e.png",s=r.p+"safetyEval-h5/static/images/img6.ec7aee91d535480175582766da9ae3db.png";var c=r(79721),l=r(86070);function d(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return u(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?u(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);ry});var o=r(30758),a=r(96370),n=r(50824),i=r(36099),s=r(76940),c=r(79721),l=r(86070);function d(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return u(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?u(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);rn});var o=r(86200),a=r(86070);let n=function(e){return(0,a.jsxs)("div",{className:"white_bi_title",children:[(0,a.jsxs)("div",{className:"name",children:[(0,a.jsx)("div",{className:"decoration",children:(0,a.jsx)("img",{src:o.A,alt:""})}),(0,a.jsx)("div",{className:"title",children:e.title})]}),(0,a.jsx)("div",{className:"extra",children:e.extra})]})}},79295(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>u});var o=r(47195),a=r(63263),n=r(3073),i=r(58638),s=r(52453),c=r(51005),l=r(73076),d=r(86070);let u=function(e){return(0,o.A)(function(){a.A.init({dw:1920,dh:1080,el:".white_branch_office",resize:!0})}),(0,d.jsxs)("div",{className:"white_branch_office",style:{backgroundImage:"url(".concat(n.A,")")},children:[(0,d.jsx)(l.default,{history:e.history}),(0,d.jsxs)("div",{className:"white_branch_office_container",children:[(0,d.jsx)(s.default,{}),(0,d.jsx)(i.default,{}),(0,d.jsx)(c.default,{})]})]})}},73076(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>c});let o=r.p+"safetyEval-h5/static/images/back.20195ce5b9c912a40b3003f7216e47f7.png",a=r.p+"safetyEval-h5/static/images/more.62a37889b198ca945cc7f13c6e4c60d6.png",n=r.p+"safetyEval-h5/static/images/title.00d7abc76d288c53144ef3d6eb553891.png",i=r.p+"safetyEval-h5/static/images/titlebg.c691aa01903fe75d3ac75a76c77653c5.png";var s=r(86070);let c=function(e){return(0,s.jsxs)("div",{className:"white_share_header",style:{backgroundImage:"url(".concat(i,")")},children:[(0,s.jsxs)("div",{className:"left",children:[(0,s.jsx)("div",{className:"back",children:(0,s.jsx)("img",{src:o,alt:"",onClick:function(){e.history.goBack()}})}),(0,s.jsx)("div",{className:"list",children:"已安全生产 365 天"}),(0,s.jsx)("div",{className:"list",children:"10~27℃ 多云 星期三"})]}),(0,s.jsx)("div",{className:"title",children:(0,s.jsx)("img",{src:n,alt:""})}),(0,s.jsx)("div",{className:"right",children:(0,s.jsxs)("div",{className:"top",children:[(0,s.jsx)("div",{className:"name",children:"股份公司数据统计"}),(0,s.jsx)("div",{className:"more",children:(0,s.jsx)("img",{src:a,alt:""})}),(0,s.jsxs)("div",{className:"down_main",children:[(0,s.jsx)("div",{className:"list",children:"二公司"}),(0,s.jsx)("div",{className:"list",children:"六公司"}),(0,s.jsx)("div",{className:"list",children:"七公司"}),(0,s.jsx)("div",{className:"list",children:"九公司"})]})]})})]})}},75560(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>y});var o=r(30758),a=r(96370);let n=r.p+"safetyEval-h5/static/images/bg1.45ff55257a17a29d9214430268d00e57.png",i=r.p+"safetyEval-h5/static/images/img1.43734cb64906e6173ea20e90d4609bc7.png",s=r.p+"safetyEval-h5/static/images/img7.a23d6aad70274f5d22612a00492f05b5.png";var c=r(79721),l=r(86070);function d(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return u(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?u(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);ru});var o=r(30758),a=r(96370),n=r(99040),i=r(86200),s=r(79721),c=r(86070);function l(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return d(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?d(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);ry});var o=r(30758),a=r(96370),n=r(50824),i=r(36099),s=r(76940),c=r(79721),l=r(86070);function d(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,a,n,i,s=[],c=!0,l=!1;try{if(n=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=n.call(r)).done)&&(s.push(o.value),s.length!==t);c=!0);}catch(e){l=!0,a=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return u(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?u(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);r"}),(0,l.jsx)("div",{className:"white_share_right_block1_content",children:t.map(function(e,t){return(0,l.jsxs)("div",{className:"item",children:[(0,l.jsx)("img",{src:s.A,alt:""}),(0,l.jsxs)("div",{className:"info",children:[(0,l.jsx)("div",{className:"name",children:e.name}),(0,l.jsx)("div",{className:"num",children:e.num})]})]},t)})})]}),(0,l.jsxs)("div",{className:"block2",children:[(0,l.jsx)(c.default,{title:"封闭区域重点作业",extra:"更多>"}),(0,l.jsxs)("div",{className:"block2_content",children:[(0,l.jsxs)("div",{className:"item",style:{backgroundImage:"url(".concat(n.A,")")},children:[(0,l.jsxs)("div",{className:"title",children:["重点作业",(0,l.jsx)("br",{}),"情况统计"]}),(0,l.jsxs)("div",{className:"content",children:[(0,l.jsxs)("div",{className:"wrap",children:[(0,l.jsx)("div",{className:"name",children:"单项发包作业"}),(0,l.jsx)("div",{className:"num",children:"56"})]}),(0,l.jsxs)("div",{className:"wrap",children:[(0,l.jsx)("div",{className:"name",children:"危险作业"}),(0,l.jsx)("div",{className:"num",children:"56"})]}),(0,l.jsxs)("div",{className:"wrap",children:[(0,l.jsx)("div",{className:"name",children:"三人及以上作业"}),(0,l.jsx)("div",{className:"num",children:"56"})]}),(0,l.jsxs)("div",{className:"wrap",children:[(0,l.jsx)("div",{className:"name",children:"四新作业"}),(0,l.jsx)("div",{className:"num",children:"56"})]})]})]}),(0,l.jsxs)("div",{className:"item",style:{backgroundImage:"url(".concat(i.A,")")},children:[(0,l.jsxs)("div",{className:"title",children:["聚集场所",(0,l.jsx)("br",{}),"情况统计"]}),(0,l.jsxs)("div",{className:"content",children:[(0,l.jsxs)("div",{className:"wrap",children:[(0,l.jsx)("div",{className:"name",children:"聚集场所数"}),(0,l.jsx)("div",{className:"num fc9",children:"56"})]}),(0,l.jsxs)("div",{className:"wrap",children:[(0,l.jsx)("div",{className:"name",children:"聚集场所检查数"}),(0,l.jsx)("div",{className:"num fc9",children:"56"})]}),(0,l.jsxs)("div",{className:"wrap",children:[(0,l.jsx)("div",{className:"name",children:"检查率"}),(0,l.jsx)("div",{className:"num fc9",children:"56"})]})]})]})]})]}),(0,l.jsxs)("div",{className:"block3",children:[(0,l.jsx)(c.default,{title:"相关方单位情况统计",extra:"更多>"}),(0,l.jsxs)("div",{className:"block3_content",children:[(0,l.jsxs)("div",{className:"item",children:[(0,l.jsx)("div",{className:"title",children:"一级相关方"}),(0,l.jsx)("div",{className:"content_main",children:(0,l.jsxs)("div",{className:"table",children:[(0,l.jsxs)("div",{className:"tr",children:[(0,l.jsx)("div",{className:"th",children:"类型"}),(0,l.jsx)("div",{className:"th",children:"单位数"}),(0,l.jsx)("div",{className:"th",children:"人数"})]}),(0,l.jsx)("div",{className:"scroll",children:(0,l.jsx)(a.A,{list:u,step:.5,children:u.map(function(e,t){return(0,l.jsxs)("div",{className:"tr",children:[(0,l.jsx)("div",{className:"td",children:e.type}),(0,l.jsx)("div",{className:"td",children:e.numberOfUnits}),(0,l.jsx)("div",{className:"td",children:e.number})]},t)})})}),(0,l.jsxs)("div",{className:"tr fch",children:[(0,l.jsx)("div",{className:"td",children:"统计"}),(0,l.jsx)("div",{className:"td",children:"43"}),(0,l.jsx)("div",{className:"td",children:"345"})]})]})})]}),(0,l.jsxs)("div",{className:"item",children:[(0,l.jsx)("div",{className:"title",children:"二级相关方"}),(0,l.jsx)("div",{className:"content_main",children:(0,l.jsxs)("div",{className:"table",children:[(0,l.jsxs)("div",{className:"tr",children:[(0,l.jsx)("div",{className:"th",children:"类型"}),(0,l.jsx)("div",{className:"th",children:"单位数"}),(0,l.jsx)("div",{className:"th",children:"人数"})]}),(0,l.jsx)("div",{className:"scroll",children:(0,l.jsx)(a.A,{list:u,step:.5,children:u.map(function(e,t){return(0,l.jsxs)("div",{className:"tr",children:[(0,l.jsx)("div",{className:"td",children:e.type}),(0,l.jsx)("div",{className:"td",children:e.numberOfUnits}),(0,l.jsx)("div",{className:"td",children:e.number})]},t)})})}),(0,l.jsxs)("div",{className:"tr fch",children:[(0,l.jsx)("div",{className:"td",children:"统计"}),(0,l.jsx)("div",{className:"td",children:"43"}),(0,l.jsx)("div",{className:"td",children:"345"})]})]})})]})]})]}),(0,l.jsxs)("div",{className:"block4",children:[(0,l.jsx)(c.default,{title:"相关方处罚统计表",extra:"更多>"}),(0,l.jsx)("div",{className:"block4_content",children:(0,l.jsx)("div",{className:"block4_content_con",children:(0,l.jsxs)("div",{className:"table",children:[(0,l.jsxs)("div",{className:"tr",children:[(0,l.jsx)("div",{className:"th",children:"相关方单位名称"}),(0,l.jsx)("div",{className:"th",children:"被处罚项目数"}),(0,l.jsx)("div",{className:"th",children:"处罚次数"}),(0,l.jsx)("div",{className:"th",children:"处罚金额"})]}),(0,l.jsx)("div",{className:"scroll1",children:(0,l.jsx)(a.A,{list:x,step:.5,children:x.map(function(e,t){return(0,l.jsxs)("div",{className:"tr",children:[(0,l.jsx)("div",{className:"td",children:e.unitName}),(0,l.jsx)("div",{className:"td",children:e.number}),(0,l.jsx)("div",{className:"td",children:e.numberOfItems}),(0,l.jsx)("div",{className:"td",children:e.amount})]},t)})})}),(0,l.jsxs)("div",{className:"tr fch",children:[(0,l.jsx)("div",{className:"td",children:"统计"}),(0,l.jsx)("div",{className:"td",children:"43"}),(0,l.jsx)("div",{className:"td",children:"33"}),(0,l.jsx)("div",{className:"td",children:"345"})]})]})})})]})]})}},72098(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>u});var o=r(47195),a=r(63263),n=r(3073),i=r(73076),s=r(75560),c=r(80029),l=r(44320),d=r(86070);let u=function(e){return(0,o.A)(function(){a.A.init({dw:1920,dh:1080,el:".white_share_office",resize:!0})}),(0,d.jsxs)("div",{className:"white_share_office",style:{backgroundImage:"url(".concat(n.A,")")},children:[(0,d.jsx)(i.default,{history:e.history}),(0,d.jsxs)("div",{className:"white_share_office_content",children:[(0,d.jsx)("div",{className:"left",children:(0,d.jsx)(s.default,{})}),(0,d.jsx)("div",{className:"middle",children:(0,d.jsx)(c.default,{})}),(0,d.jsx)("div",{className:"right",children:(0,d.jsx)(l.default,{})})]})]})}},86270(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>o});let o=function(e){return e.children}},79473(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>j}),r(87578);var o=r(77776),a=r(2429),n=r(7347),i=r(11120),s=r(30758),c=s.createContext({}),l=r(86070);function d(e){return(d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function u(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,o)}return r}function y(e,t){if(!(e instanceof t))throw TypeError("Cannot call a class as a function")}function x(e,t){for(var r=0;ra});var o=r(86070);function a(){return(0,o.jsxs)("h1",{children:["底座微应用模板,技术文档:",(0,o.jsx)("a",{rel:"noreferrer noopener",target:"_blank",href:"https://www.yuque.com/buhangjiecheshen-ymbtb/qc0093/gxdun1dphetcurko",children:"https://www.yuque.com/buhangjiecheshen-ymbtb/qc0093/gxdun1dphetcurko"})]})}},77088(e,t,r){"use strict";r.d(t,{SU:()=>s,_U:()=>c});var o=r(14331);function a(){var e,t,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",i=r.toStringTag||"@@toStringTag";function s(r,o,a,i){var s=Object.create((o&&o.prototype instanceof l?o:l).prototype);return n(s,"_invoke",function(r,o,a){var n,i,s,l=0,d=a||[],u=!1,y={p:0,n:0,v:e,a:x,f:x.bind(e,4),d:function(t,r){return n=t,i=0,s=e,y.n=r,c}};function x(r,o){for(i=r,s=o,t=0;!u&&l&&!a&&t3?(a=p===o)&&(s=n[(i=n[4])?5:(i=3,3)],n[4]=n[5]=e):n[0]<=x&&((a=r<2&&xo||o>p)&&(n[4]=r,n[5]=o,y.n=p,i=0))}if(a||r>1)return c;throw u=!0,o}return function(a,d,p){if(l>1)throw TypeError("Generator is already running");for(u&&1===d&&x(d,p),i=d,s=p;(t=i<2?e:s)||!u;){n||(i?i<3?(i>1&&(y.n=-1),x(i,s)):y.n=s:y.v=s);try{if(l=2,n){if(i||(a="next"),t=n[a]){if(!(t=t.call(n,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,i<2&&(i=0)}else 1===i&&(t=n.return)&&t.call(n),i<2&&(s=TypeError("The iterator does not provide a '"+a+"' method"),i=1);n=e}else if((t=(u=y.n<0)?s:r.call(o,y))!==c)break}catch(t){n=e,i=1,s=t}finally{l=1}}return{value:t,done:u}}}(r,a,i),!0),s}var c={};function l(){}function d(){}function u(){}t=Object.getPrototypeOf;var y=u.prototype=l.prototype=Object.create([][o]?t(t([][o]())):(n(t={},o,function(){return this}),t));function x(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,u):(e.__proto__=u,n(e,i,"GeneratorFunction")),e.prototype=Object.create(y),e}return d.prototype=u,n(y,"constructor",u),n(u,"constructor",d),d.displayName="GeneratorFunction",n(u,i,"GeneratorFunction"),n(y),n(y,i,"Generator"),n(y,o,function(){return this}),n(y,"toString",function(){return"[object Generator]"}),(a=function(){return{w:s,m:x}})()}function n(e,t,r,o){var a=Object.defineProperty;try{a({},"",{})}catch(e){a=0}(n=function(e,t,r,o){function i(t,r){n(e,t,function(e){return this._invoke(t,r,e)})}t?a?a(e,t,{value:r,enumerable:!o,configurable:!o,writable:!o}):e[t]=r:(i("next",0),i("throw",1),i("return",2))})(e,t,r,o)}function i(e,t,r,o,a,n,i){try{var s=e[n](i),c=s.value}catch(e){return void r(e)}s.done?t(c):Promise.resolve(c).then(o,a)}function s(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"操作失败,请稍后重试";return e&&(e.errMessage||e.message||e.respMsg||e.respDesc)||t}function c(e){return l.apply(this,arguments)}function l(){var e;return e=a().m(function e(t){var r,n,i,c,l,d,u,y,x,p,h,f=arguments;return a().w(function(e){for(;;)switch(e.p=e.n){case 0:return i=void 0===(n=(r=f.length>1&&void 0!==f[1]?f[1]:{}).defaultError)?"操作失败,请稍后重试":n,c=r.onSuccess,l=r.onFailure,u=void 0!==(d=r.silent)&&d,e.p=1,e.n=2,t();case 2:var a;if((null==(a=y=e.v)?void 0:a.success)!==!0){e.n=3;break}return null==c||c(y),e.a(2,y);case 3:return x=s(y,i),null==l||l(x),u||o.Ay.error(x),e.a(2,null);case 4:return e.p=4,p=(null==(h=e.v)?void 0:h.message)||i,null==l||l(p),u||o.Ay.error(p),e.a(2,null)}},e,null,[[1,4]])}),(l=function(){var t=this,r=arguments;return new Promise(function(o,a){var n=e.apply(t,r);function s(e){i(n,o,a,s,c,"next",e)}function c(e){i(n,o,a,s,c,"throw",e)}s(void 0)})}).apply(this,arguments)}},28404(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/back2.54f1ace57fa709c92d9e67ed9313d793.png"},55541(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/close.fe8f300f919cb265604bcae11ad71c32.png"},91054(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico19.df3eeb0e0d03ac091a88a9ee14bbe64e.png"},73553(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/icobg.fdc1f46b5a4e79eaf3aee7990e1b57de.png"},71371(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/icon29.ff59cfce3c3048a195205e8a9f11cfa8.png"},89365(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/icon30.ee566a77e3ec1b61a91fe3c5327fb8a8.png"},44775(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/icon32.9be75c03cb57f7d32f0d179c7fae5ead.png"},96278(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/img2.4de8b959d1452e92bf5c5fd951ee5ce6.png"},71057(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/label.71cf31ef6b435a4b27cc293c85328387.png"},38049(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/title.a8c3383caa0bab0c43074c8439a6b67b.png"},7905(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/title_on.d1402c0b5753730403d177253522b56c.png"},10364(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico1.685cb7dc9dab9bf57f21df23365faf90.png"},93766(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico10.b456054b6671f8b58a0e6f681d1c0613.png"},62511(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico11.9cae02a9362c9abd501b7f0ddb8dcec5.png"},40052(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico12.29572145e03b4015099af6c356bfdf7b.png"},61181(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico13.5ab165cb5f4ac3587afa5dfe6889320b.png"},68386(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico14.532bd770644bd116e3b65f29b341b7a9.png"},32043(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico15.bf693ef4e0f8ef15771ebfbb36abb726.png"},66640(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico16.d55031f49316a4e6f274953ee8af9b7c.png"},82393(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico17.1d14b7cd0d720af2fd5cbdc2209c309d.png"},40471(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico19.5189578435372550209281cec42bb9fb.png"},68471(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico2.efc4fc10c1e44cc6ce24f05e50c5c862.png"},22894(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico3.6120c77937da89498763989f733d8ef5.png"},43884(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico30.9ed66ec42dd4248fd8bfa614896710b7.png"},26773(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico31.0dc90bc79cf1797506dfe37492f9a9a2.png"},41022(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico32.fba9bed5a3d9c4fb5e4c3f1135d8511f.png"},12359(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico33.63dca65f6d83da8ce02b158de723b3d1.png"},40609(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico4.e95aa274f714359e8ce1f23ef6cc860c.png"},19480(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico5.8db8d7d65ac47f9cf682658ecc9696fc.png"},65235(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico6.0a9cfe329638bf1a3c772a41d42b4cc2.png"},26378(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico7.7c2b3d733947cc9b39b327a57b2080c0.png"},2973(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico8.901a0418c1cd8e35a7c5c946ffa6e514.png"},69940(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/ico9.2eb824e5afc8fac83bf9e3f20e08713e.png"},20805(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/img10.7dc7d18ab88707c177887e38951f0ef7.png"},7740(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/img11.229637cb138f79d88f3b73eabd0279d6.png"},96209(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/leftbg.681a938723ba4f1ebebf9155da2337b7.png"},86673(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/tablebg1.06326689cf06fecbce83e129908d431c.png"},65562(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/tablebg2.3c34a32c89a3ea8d4c7d6ce90d97b7d1.png"},99040(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/1.5513585de07336a8716a2c3d665ebc10.png"},3073(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/bg.2a4ca3a077b5116018a121bddd851728.png"},50824(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/bg5.c4b2acf65cc0c5474df0d65448c749fa.png"},36099(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/bg6.176f5af4a53d695dc39c887c39ca180c.png"},76940(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/img3.216c551e9673ad264ea09224d8979c50.png"},86200(e,t,r){"use strict";r.d(t,{A:()=>o});let o=r.p+"safetyEval-h5/static/images/titlebg1.012ff56c1d93012604bdd5754aaf4fd7.png"},65044(e,t,r){var o={"./bi/index.js":"94000","./driver/index.js":"91647","./global/index.js":"47662","./register/index.js":"75876"};function a(e){return r(n(e))}function n(e){if(!r.o(o,e)){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return o[e]}a.keys=function(){return Object.keys(o)},a.resolve=n,e.exports=a,a.id=65044},63271(e,t,r){var o={"./bi":"94000","./bi/":"94000","./bi/index":"94000","./bi/index.js":"94000","./driver":"91647","./driver/":"91647","./driver/index":"91647","./driver/index.js":"91647","./global":"47662","./global/":"47662","./global/index":"47662","./global/index.js":"47662","./register":"75876","./register/":"75876","./register/index":"75876","./register/index.js":"75876"};function a(e){return r(n(e))}function n(e){if(!r.o(o,e)){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return o[e]}a.keys=function(){return Object.keys(o)},a.resolve=n,e.exports=a,a.id=63271},2778(e,t,r){var o={"./Container/Driver/components/DriverBack/index.js":"26263","./Container/Driver/index.js":"38004","./Container/Entry/index.js":"37219","./Container/Institution/Dashboard/index.js":"75270","./Container/Institution/index.js":"6601","./Container/Institution/mockData.js":"33027","./Container/Map/components/BottomUtils/branchOfficeUtilsList.js":"32128","./Container/Map/components/BottomUtils/index.js":"26489","./Container/Map/components/BottomUtils/portUtilsList.js":"7183","./Container/Map/components/BottomUtils/useBottomUtilsAnimation.js":"61728","./Container/Map/components/BottomUtils/useBranchOfficeUtilsAnimation.js":"97739","./Container/Map/components/BottomUtils/usePortUtilsAnimation.js":"74292","./Container/Map/components/CenterUtils/index.js":"43440","./Container/Map/components/CenterUtils/useCenterUtilsAnimation.js":"65944","./Container/Map/components/Content/IndexInfo/Bottom/index.js":"58988","./Container/Map/components/Content/IndexInfo/Btn/index.js":"44942","./Container/Map/components/Content/IndexInfo/LeftPanel/echarts.js":"31175","./Container/Map/components/Content/IndexInfo/LeftPanel/index.js":"45406","./Container/Map/components/Content/IndexInfo/RightPanel/index.js":"75528","./Container/Map/components/Content/IndexInfo/Search/index.js":"45188","./Container/Map/components/Content/IndexInfo/Title/index.js":"43281","./Container/Map/components/Content/IndexInfo/index.js":"16099","./Container/Map/components/Content/branchOffice/Camera/index.js":"65953","./Container/Map/components/Content/branchOffice/FengBi/echarts.js":"75283","./Container/Map/components/Content/branchOffice/FengBi/index.js":"93277","./Container/Map/components/Content/branchOffice/IndexLeft/echarts.js":"28557","./Container/Map/components/Content/branchOffice/IndexLeft/index.js":"98788","./Container/Map/components/Content/branchOffice/IndexRight/echarts.js":"87414","./Container/Map/components/Content/branchOffice/IndexRight/index.js":"82504","./Container/Map/components/Content/branchOffice/MenJin/echarts.js":"30897","./Container/Map/components/Content/branchOffice/MenJin/index.js":"1443","./Container/Map/components/Content/branchOffice/QiXiang/index.js":"76248","./Container/Map/components/Content/branchOffice/RenYuan/echarts.js":"80912","./Container/Map/components/Content/branchOffice/RenYuan/index.js":"59238","./Container/Map/components/Content/branchOffice/Title/index.js":"12809","./Container/Map/components/Content/branchOffice/WeiXian/index.js":"15459","./Container/Map/components/Content/branchOffice/XiaoFang/index.js":"35048","./Container/Map/components/Content/branchOffice/ZhongDian/echarts.js":"70256","./Container/Map/components/Content/branchOffice/ZhongDian/index.js":"16678","./Container/Map/components/Content/index.js":"44508","./Container/Map/components/Content/port/FengBi/echarts.js":"93102","./Container/Map/components/Content/port/FengBi/index.js":"42944","./Container/Map/components/Content/port/Index/index.js":"29703","./Container/Map/components/Content/port/MenJin/echarts.js":"51664","./Container/Map/components/Content/port/MenJin/index.js":"39886","./Container/Map/components/Content/port/QiXiang/index.js":"16892","./Container/Map/components/Content/port/RenYuan/index.js":"27983","./Container/Map/components/Content/port/Title/index.js":"70057","./Container/Map/components/Content/port/WeiXian/echarts.js":"5464","./Container/Map/components/Content/port/WeiXian/index.js":"65639","./Container/Map/components/Content/port/XiaoFang/index.js":"90150","./Container/Map/components/Content/port/ZhongDian/index.js":"94505","./Container/Map/components/Content/useContentAnimation.js":"21994","./Container/Map/components/Header/index.js":"12354","./Container/Map/components/Header/useHeaderAnimation.js":"3384","./Container/Map/components/RightUtils/index.js":"38292","./Container/Map/components/RightUtils/useChildMenuAnimation.js":"48298","./Container/Map/components/RightUtils/useRightUtilsAnimation.js":"16980","./Container/Map/components/RightUtils/utilsList.js":"7249","./Container/Map/components/popup/components/BranchOffice.js":"24686","./Container/Map/components/popup/components/Port.js":"45893","./Container/Map/components/popup/js/Coord.js":"2218","./Container/Map/components/popup/js/Popup.js":"58957","./Container/Map/components/popup/js/PopupInfo.js":"46365","./Container/Map/index.js":"76173","./Container/Map/js/TrajectoryPolylineTrailLinkMaterialProperty.js":"29306","./Container/Map/js/WallPolylineTrailLinkMaterialProperty.js":"26360","./Container/Map/js/context.js":"35122","./Container/Map/js/edge/cmt.js":"1159","./Container/Map/js/edge/csy.js":"67798","./Container/Map/js/edge/czks.js":"66212","./Container/Map/js/edge/qhd.js":"5508","./Container/Map/js/initMap.js":"41885","./Container/Map/js/mapMethods.js":"95657","./Container/Map/js/mapUtils.js":"41670","./Container/Map/js/mitt.js":"47","./Container/Map/js/mittKey.js":"70284","./Container/Map/js/pointClickEvent.js":"32879","./Container/Map/js/utils.js":"66464","./Container/Register/index.js":"65806","./Container/RegisterMore/index.js":"21024","./Container/Supervision/Cockpit/index.js":"69102","./Container/Supervision/Cockpit/mockData.js":"7466","./Container/Supervision/Dashboard/index.js":"35007","./Container/White/BranchOffice/components/CenterPanel/echarts.js":"7864","./Container/White/BranchOffice/components/CenterPanel/index.js":"58638","./Container/White/BranchOffice/components/LeftPanel/index.js":"52453","./Container/White/BranchOffice/components/RightPanel/index.js":"51005","./Container/White/BranchOffice/components/Title/index.js":"79721","./Container/White/BranchOffice/index.js":"79295","./Container/White/Share/components/Header/index.js":"73076","./Container/White/Share/components/LeftPanel/index.js":"75560","./Container/White/Share/components/MiddlePanel/index.js":"80029","./Container/White/Share/components/RightPanel/index.js":"44320","./Container/White/Share/index.js":"72098","./Container/White/index.js":"86270","./Container/index.js":"79473","./index.js":"60788"};function a(e){return r(n(e))}function n(e){if(!r.o(o,e)){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return o[e]}a.keys=function(){return Object.keys(o)},a.resolve=n,e.exports=a,a.id=2778},10016(e,t,r){var o={"./pages":"60788","./pages/":"60788","./pages/Container":"79473","./pages/Container/":"79473","./pages/Container/Driver":"38004","./pages/Container/Driver/":"38004","./pages/Container/Driver/components/DriverBack":"26263","./pages/Container/Driver/components/DriverBack/":"26263","./pages/Container/Driver/components/DriverBack/index":"26263","./pages/Container/Driver/components/DriverBack/index.js":"26263","./pages/Container/Driver/components/DriverBack/index.less":"7555","./pages/Container/Driver/index":"38004","./pages/Container/Driver/index.js":"38004","./pages/Container/Driver/index.less":"2852","./pages/Container/Entry":"37219","./pages/Container/Entry/":"37219","./pages/Container/Entry/index":"37219","./pages/Container/Entry/index.js":"37219","./pages/Container/Institution":"6601","./pages/Container/Institution/":"6601","./pages/Container/Institution/Dashboard":"75270","./pages/Container/Institution/Dashboard/":"75270","./pages/Container/Institution/Dashboard/index":"75270","./pages/Container/Institution/Dashboard/index.js":"75270","./pages/Container/Institution/components/EnterpriseTypeChart":"3829","./pages/Container/Institution/components/EnterpriseTypeChart.jsx":"3829","./pages/Container/Institution/components/InfoAlerts":"15909","./pages/Container/Institution/components/InfoAlerts.jsx":"15909","./pages/Container/Institution/components/ProjectCompletionTable":"83300","./pages/Container/Institution/components/ProjectCompletionTable.jsx":"83300","./pages/Container/Institution/components/ProjectTypeChart":"54605","./pages/Container/Institution/components/ProjectTypeChart.jsx":"54605","./pages/Container/Institution/components/StatisticCards":"73175","./pages/Container/Institution/components/StatisticCards.jsx":"73175","./pages/Container/Institution/index":"6601","./pages/Container/Institution/index.css":"78176","./pages/Container/Institution/index.js":"6601","./pages/Container/Institution/mockData":"33027","./pages/Container/Institution/mockData.js":"33027","./pages/Container/Map":"76173","./pages/Container/Map/":"76173","./pages/Container/Map/components/BottomUtils":"26489","./pages/Container/Map/components/BottomUtils/":"26489","./pages/Container/Map/components/BottomUtils/branchOfficeUtilsList":"32128","./pages/Container/Map/components/BottomUtils/branchOfficeUtilsList.js":"32128","./pages/Container/Map/components/BottomUtils/index":"26489","./pages/Container/Map/components/BottomUtils/index.js":"26489","./pages/Container/Map/components/BottomUtils/index.less":"92022","./pages/Container/Map/components/BottomUtils/portUtilsList":"7183","./pages/Container/Map/components/BottomUtils/portUtilsList.js":"7183","./pages/Container/Map/components/BottomUtils/useBottomUtilsAnimation":"61728","./pages/Container/Map/components/BottomUtils/useBottomUtilsAnimation.js":"61728","./pages/Container/Map/components/BottomUtils/useBranchOfficeUtilsAnimation":"97739","./pages/Container/Map/components/BottomUtils/useBranchOfficeUtilsAnimation.js":"97739","./pages/Container/Map/components/BottomUtils/usePortUtilsAnimation":"74292","./pages/Container/Map/components/BottomUtils/usePortUtilsAnimation.js":"74292","./pages/Container/Map/components/CenterUtils":"43440","./pages/Container/Map/components/CenterUtils/":"43440","./pages/Container/Map/components/CenterUtils/index":"43440","./pages/Container/Map/components/CenterUtils/index.js":"43440","./pages/Container/Map/components/CenterUtils/index.less":"84896","./pages/Container/Map/components/CenterUtils/useCenterUtilsAnimation":"65944","./pages/Container/Map/components/CenterUtils/useCenterUtilsAnimation.js":"65944","./pages/Container/Map/components/Content":"44508","./pages/Container/Map/components/Content/":"44508","./pages/Container/Map/components/Content/IndexInfo":"16099","./pages/Container/Map/components/Content/IndexInfo/":"16099","./pages/Container/Map/components/Content/IndexInfo/Bottom":"58988","./pages/Container/Map/components/Content/IndexInfo/Bottom/":"58988","./pages/Container/Map/components/Content/IndexInfo/Bottom/index":"58988","./pages/Container/Map/components/Content/IndexInfo/Bottom/index.js":"58988","./pages/Container/Map/components/Content/IndexInfo/Bottom/index.less":"2498","./pages/Container/Map/components/Content/IndexInfo/Btn":"44942","./pages/Container/Map/components/Content/IndexInfo/Btn/":"44942","./pages/Container/Map/components/Content/IndexInfo/Btn/index":"44942","./pages/Container/Map/components/Content/IndexInfo/Btn/index.js":"44942","./pages/Container/Map/components/Content/IndexInfo/Btn/index.less":"7323","./pages/Container/Map/components/Content/IndexInfo/LeftPanel":"45406","./pages/Container/Map/components/Content/IndexInfo/LeftPanel/":"45406","./pages/Container/Map/components/Content/IndexInfo/LeftPanel/echarts":"31175","./pages/Container/Map/components/Content/IndexInfo/LeftPanel/echarts.js":"31175","./pages/Container/Map/components/Content/IndexInfo/LeftPanel/index":"45406","./pages/Container/Map/components/Content/IndexInfo/LeftPanel/index.js":"45406","./pages/Container/Map/components/Content/IndexInfo/LeftPanel/index.less":"38342","./pages/Container/Map/components/Content/IndexInfo/RightPanel":"75528","./pages/Container/Map/components/Content/IndexInfo/RightPanel/":"75528","./pages/Container/Map/components/Content/IndexInfo/RightPanel/index":"75528","./pages/Container/Map/components/Content/IndexInfo/RightPanel/index.js":"75528","./pages/Container/Map/components/Content/IndexInfo/RightPanel/index.less":"79165","./pages/Container/Map/components/Content/IndexInfo/Search":"45188","./pages/Container/Map/components/Content/IndexInfo/Search/":"45188","./pages/Container/Map/components/Content/IndexInfo/Search/index":"45188","./pages/Container/Map/components/Content/IndexInfo/Search/index.js":"45188","./pages/Container/Map/components/Content/IndexInfo/Search/index.less":"17521","./pages/Container/Map/components/Content/IndexInfo/Title":"43281","./pages/Container/Map/components/Content/IndexInfo/Title/":"43281","./pages/Container/Map/components/Content/IndexInfo/Title/index":"43281","./pages/Container/Map/components/Content/IndexInfo/Title/index.js":"43281","./pages/Container/Map/components/Content/IndexInfo/Title/index.less":"78793","./pages/Container/Map/components/Content/IndexInfo/index":"16099","./pages/Container/Map/components/Content/IndexInfo/index.js":"16099","./pages/Container/Map/components/Content/IndexInfo/index.less":"30408","./pages/Container/Map/components/Content/branchOffice/Camera":"65953","./pages/Container/Map/components/Content/branchOffice/Camera/":"65953","./pages/Container/Map/components/Content/branchOffice/Camera/index":"65953","./pages/Container/Map/components/Content/branchOffice/Camera/index.js":"65953","./pages/Container/Map/components/Content/branchOffice/Camera/index.less":"26950","./pages/Container/Map/components/Content/branchOffice/FengBi":"93277","./pages/Container/Map/components/Content/branchOffice/FengBi/":"93277","./pages/Container/Map/components/Content/branchOffice/FengBi/echarts":"75283","./pages/Container/Map/components/Content/branchOffice/FengBi/echarts.js":"75283","./pages/Container/Map/components/Content/branchOffice/FengBi/index":"93277","./pages/Container/Map/components/Content/branchOffice/FengBi/index.js":"93277","./pages/Container/Map/components/Content/branchOffice/FengBi/index.less":"71766","./pages/Container/Map/components/Content/branchOffice/IndexLeft":"98788","./pages/Container/Map/components/Content/branchOffice/IndexLeft/":"98788","./pages/Container/Map/components/Content/branchOffice/IndexLeft/echarts":"28557","./pages/Container/Map/components/Content/branchOffice/IndexLeft/echarts.js":"28557","./pages/Container/Map/components/Content/branchOffice/IndexLeft/index":"98788","./pages/Container/Map/components/Content/branchOffice/IndexLeft/index.js":"98788","./pages/Container/Map/components/Content/branchOffice/IndexLeft/index.less":"63334","./pages/Container/Map/components/Content/branchOffice/IndexRight":"82504","./pages/Container/Map/components/Content/branchOffice/IndexRight/":"82504","./pages/Container/Map/components/Content/branchOffice/IndexRight/echarts":"87414","./pages/Container/Map/components/Content/branchOffice/IndexRight/echarts.js":"87414","./pages/Container/Map/components/Content/branchOffice/IndexRight/index":"82504","./pages/Container/Map/components/Content/branchOffice/IndexRight/index.js":"82504","./pages/Container/Map/components/Content/branchOffice/IndexRight/index.less":"17743","./pages/Container/Map/components/Content/branchOffice/MenJin":"1443","./pages/Container/Map/components/Content/branchOffice/MenJin/":"1443","./pages/Container/Map/components/Content/branchOffice/MenJin/echarts":"30897","./pages/Container/Map/components/Content/branchOffice/MenJin/echarts.js":"30897","./pages/Container/Map/components/Content/branchOffice/MenJin/index":"1443","./pages/Container/Map/components/Content/branchOffice/MenJin/index.js":"1443","./pages/Container/Map/components/Content/branchOffice/MenJin/index.less":"56824","./pages/Container/Map/components/Content/branchOffice/QiXiang":"76248","./pages/Container/Map/components/Content/branchOffice/QiXiang/":"76248","./pages/Container/Map/components/Content/branchOffice/QiXiang/index":"76248","./pages/Container/Map/components/Content/branchOffice/QiXiang/index.js":"76248","./pages/Container/Map/components/Content/branchOffice/QiXiang/index.less":"75140","./pages/Container/Map/components/Content/branchOffice/RenYuan":"59238","./pages/Container/Map/components/Content/branchOffice/RenYuan/":"59238","./pages/Container/Map/components/Content/branchOffice/RenYuan/echarts":"80912","./pages/Container/Map/components/Content/branchOffice/RenYuan/echarts.js":"80912","./pages/Container/Map/components/Content/branchOffice/RenYuan/index":"59238","./pages/Container/Map/components/Content/branchOffice/RenYuan/index.js":"59238","./pages/Container/Map/components/Content/branchOffice/RenYuan/index.less":"15183","./pages/Container/Map/components/Content/branchOffice/Title":"12809","./pages/Container/Map/components/Content/branchOffice/Title/":"12809","./pages/Container/Map/components/Content/branchOffice/Title/index":"12809","./pages/Container/Map/components/Content/branchOffice/Title/index.js":"12809","./pages/Container/Map/components/Content/branchOffice/Title/index.less":"12749","./pages/Container/Map/components/Content/branchOffice/WeiXian":"15459","./pages/Container/Map/components/Content/branchOffice/WeiXian/":"15459","./pages/Container/Map/components/Content/branchOffice/WeiXian/index":"15459","./pages/Container/Map/components/Content/branchOffice/WeiXian/index.js":"15459","./pages/Container/Map/components/Content/branchOffice/WeiXian/index.less":"42816","./pages/Container/Map/components/Content/branchOffice/XiaoFang":"35048","./pages/Container/Map/components/Content/branchOffice/XiaoFang/":"35048","./pages/Container/Map/components/Content/branchOffice/XiaoFang/index":"35048","./pages/Container/Map/components/Content/branchOffice/XiaoFang/index.js":"35048","./pages/Container/Map/components/Content/branchOffice/XiaoFang/index.less":"41512","./pages/Container/Map/components/Content/branchOffice/ZhongDian":"16678","./pages/Container/Map/components/Content/branchOffice/ZhongDian/":"16678","./pages/Container/Map/components/Content/branchOffice/ZhongDian/echarts":"70256","./pages/Container/Map/components/Content/branchOffice/ZhongDian/echarts.js":"70256","./pages/Container/Map/components/Content/branchOffice/ZhongDian/index":"16678","./pages/Container/Map/components/Content/branchOffice/ZhongDian/index.js":"16678","./pages/Container/Map/components/Content/branchOffice/ZhongDian/index.less":"71019","./pages/Container/Map/components/Content/index":"44508","./pages/Container/Map/components/Content/index.js":"44508","./pages/Container/Map/components/Content/index.less":"68651","./pages/Container/Map/components/Content/port/FengBi":"42944","./pages/Container/Map/components/Content/port/FengBi/":"42944","./pages/Container/Map/components/Content/port/FengBi/echarts":"93102","./pages/Container/Map/components/Content/port/FengBi/echarts.js":"93102","./pages/Container/Map/components/Content/port/FengBi/index":"42944","./pages/Container/Map/components/Content/port/FengBi/index.js":"42944","./pages/Container/Map/components/Content/port/FengBi/index.less":"74427","./pages/Container/Map/components/Content/port/Index":"29703","./pages/Container/Map/components/Content/port/Index/":"29703","./pages/Container/Map/components/Content/port/Index/index":"29703","./pages/Container/Map/components/Content/port/Index/index.js":"29703","./pages/Container/Map/components/Content/port/Index/index.less":"77636","./pages/Container/Map/components/Content/port/MenJin":"39886","./pages/Container/Map/components/Content/port/MenJin/":"39886","./pages/Container/Map/components/Content/port/MenJin/echarts":"51664","./pages/Container/Map/components/Content/port/MenJin/echarts.js":"51664","./pages/Container/Map/components/Content/port/MenJin/index":"39886","./pages/Container/Map/components/Content/port/MenJin/index.js":"39886","./pages/Container/Map/components/Content/port/MenJin/index.less":"85865","./pages/Container/Map/components/Content/port/QiXiang":"16892","./pages/Container/Map/components/Content/port/QiXiang/":"16892","./pages/Container/Map/components/Content/port/QiXiang/index":"16892","./pages/Container/Map/components/Content/port/QiXiang/index.js":"16892","./pages/Container/Map/components/Content/port/QiXiang/index.less":"16939","./pages/Container/Map/components/Content/port/RenYuan":"27983","./pages/Container/Map/components/Content/port/RenYuan/":"27983","./pages/Container/Map/components/Content/port/RenYuan/index":"27983","./pages/Container/Map/components/Content/port/RenYuan/index.js":"27983","./pages/Container/Map/components/Content/port/RenYuan/index.less":"51160","./pages/Container/Map/components/Content/port/Title":"70057","./pages/Container/Map/components/Content/port/Title/":"70057","./pages/Container/Map/components/Content/port/Title/index":"70057","./pages/Container/Map/components/Content/port/Title/index.js":"70057","./pages/Container/Map/components/Content/port/Title/index.less":"57142","./pages/Container/Map/components/Content/port/WeiXian":"65639","./pages/Container/Map/components/Content/port/WeiXian/":"65639","./pages/Container/Map/components/Content/port/WeiXian/echarts":"5464","./pages/Container/Map/components/Content/port/WeiXian/echarts.js":"5464","./pages/Container/Map/components/Content/port/WeiXian/index":"65639","./pages/Container/Map/components/Content/port/WeiXian/index.js":"65639","./pages/Container/Map/components/Content/port/WeiXian/index.less":"74099","./pages/Container/Map/components/Content/port/XiaoFang":"90150","./pages/Container/Map/components/Content/port/XiaoFang/":"90150","./pages/Container/Map/components/Content/port/XiaoFang/index":"90150","./pages/Container/Map/components/Content/port/XiaoFang/index.js":"90150","./pages/Container/Map/components/Content/port/XiaoFang/index.less":"10357","./pages/Container/Map/components/Content/port/ZhongDian":"94505","./pages/Container/Map/components/Content/port/ZhongDian/":"94505","./pages/Container/Map/components/Content/port/ZhongDian/index":"94505","./pages/Container/Map/components/Content/port/ZhongDian/index.js":"94505","./pages/Container/Map/components/Content/port/ZhongDian/index.less":"65416","./pages/Container/Map/components/Content/useContentAnimation":"21994","./pages/Container/Map/components/Content/useContentAnimation.js":"21994","./pages/Container/Map/components/Header":"12354","./pages/Container/Map/components/Header/":"12354","./pages/Container/Map/components/Header/index":"12354","./pages/Container/Map/components/Header/index.js":"12354","./pages/Container/Map/components/Header/index.less":"93947","./pages/Container/Map/components/Header/useHeaderAnimation":"3384","./pages/Container/Map/components/Header/useHeaderAnimation.js":"3384","./pages/Container/Map/components/RightUtils":"38292","./pages/Container/Map/components/RightUtils/":"38292","./pages/Container/Map/components/RightUtils/index":"38292","./pages/Container/Map/components/RightUtils/index.js":"38292","./pages/Container/Map/components/RightUtils/index.less":"20193","./pages/Container/Map/components/RightUtils/useChildMenuAnimation":"48298","./pages/Container/Map/components/RightUtils/useChildMenuAnimation.js":"48298","./pages/Container/Map/components/RightUtils/useRightUtilsAnimation":"16980","./pages/Container/Map/components/RightUtils/useRightUtilsAnimation.js":"16980","./pages/Container/Map/components/RightUtils/utilsList":"7249","./pages/Container/Map/components/RightUtils/utilsList.js":"7249","./pages/Container/Map/components/popup/components":"91029","./pages/Container/Map/components/popup/components/":"91029","./pages/Container/Map/components/popup/components/BranchOffice":"24686","./pages/Container/Map/components/popup/components/BranchOffice.js":"24686","./pages/Container/Map/components/popup/components/Port":"45893","./pages/Container/Map/components/popup/components/Port.js":"45893","./pages/Container/Map/components/popup/components/index":"91029","./pages/Container/Map/components/popup/components/index.less":"91029","./pages/Container/Map/components/popup/js/Coord":"2218","./pages/Container/Map/components/popup/js/Coord.js":"2218","./pages/Container/Map/components/popup/js/Popup":"58957","./pages/Container/Map/components/popup/js/Popup.js":"58957","./pages/Container/Map/components/popup/js/PopupInfo":"46365","./pages/Container/Map/components/popup/js/PopupInfo.js":"46365","./pages/Container/Map/index":"76173","./pages/Container/Map/index.js":"76173","./pages/Container/Map/index.less":"1060","./pages/Container/Map/js/TrajectoryPolylineTrailLinkMaterialProperty":"29306","./pages/Container/Map/js/TrajectoryPolylineTrailLinkMaterialProperty.js":"29306","./pages/Container/Map/js/WallPolylineTrailLinkMaterialProperty":"26360","./pages/Container/Map/js/WallPolylineTrailLinkMaterialProperty.js":"26360","./pages/Container/Map/js/context":"35122","./pages/Container/Map/js/context.js":"35122","./pages/Container/Map/js/edge/cmt":"1159","./pages/Container/Map/js/edge/cmt.js":"1159","./pages/Container/Map/js/edge/csy":"67798","./pages/Container/Map/js/edge/csy.js":"67798","./pages/Container/Map/js/edge/czks":"66212","./pages/Container/Map/js/edge/czks.js":"66212","./pages/Container/Map/js/edge/qhd":"5508","./pages/Container/Map/js/edge/qhd.js":"5508","./pages/Container/Map/js/initMap":"41885","./pages/Container/Map/js/initMap.js":"41885","./pages/Container/Map/js/mapMethods":"95657","./pages/Container/Map/js/mapMethods.js":"95657","./pages/Container/Map/js/mapUtils":"41670","./pages/Container/Map/js/mapUtils.js":"41670","./pages/Container/Map/js/mitt":"47","./pages/Container/Map/js/mitt.js":"47","./pages/Container/Map/js/mittKey":"70284","./pages/Container/Map/js/mittKey.js":"70284","./pages/Container/Map/js/pointClickEvent":"32879","./pages/Container/Map/js/pointClickEvent.js":"32879","./pages/Container/Map/js/utils":"66464","./pages/Container/Map/js/utils.js":"66464","./pages/Container/Register":"65806","./pages/Container/Register/":"65806","./pages/Container/Register/index":"65806","./pages/Container/Register/index.js":"65806","./pages/Container/Register/index.less":"15271","./pages/Container/RegisterMore":"21024","./pages/Container/RegisterMore/":"21024","./pages/Container/RegisterMore/index":"21024","./pages/Container/RegisterMore/index.js":"21024","./pages/Container/RegisterMore/index.less":"47086","./pages/Container/Supervision/Cockpit":"69102","./pages/Container/Supervision/Cockpit/":"69102","./pages/Container/Supervision/Cockpit/data/chongqingGeoJson":"8258","./pages/Container/Supervision/Cockpit/data/chongqingGeoJson.json":"8258","./pages/Container/Supervision/Cockpit/index":"69102","./pages/Container/Supervision/Cockpit/index.css":"41325","./pages/Container/Supervision/Cockpit/index.js":"69102","./pages/Container/Supervision/Cockpit/mockData":"7466","./pages/Container/Supervision/Cockpit/mockData.js":"7466","./pages/Container/Supervision/Dashboard":"35007","./pages/Container/Supervision/Dashboard/":"35007","./pages/Container/Supervision/Dashboard/index":"35007","./pages/Container/Supervision/Dashboard/index.css":"73742","./pages/Container/Supervision/Dashboard/index.js":"35007","./pages/Container/White":"86270","./pages/Container/White/":"86270","./pages/Container/White/BranchOffice":"79295","./pages/Container/White/BranchOffice/":"79295","./pages/Container/White/BranchOffice/components/CenterPanel":"58638","./pages/Container/White/BranchOffice/components/CenterPanel/":"58638","./pages/Container/White/BranchOffice/components/CenterPanel/echarts":"7864","./pages/Container/White/BranchOffice/components/CenterPanel/echarts.js":"7864","./pages/Container/White/BranchOffice/components/CenterPanel/index":"58638","./pages/Container/White/BranchOffice/components/CenterPanel/index.js":"58638","./pages/Container/White/BranchOffice/components/CenterPanel/index.less":"4727","./pages/Container/White/BranchOffice/components/LeftPanel":"52453","./pages/Container/White/BranchOffice/components/LeftPanel/":"52453","./pages/Container/White/BranchOffice/components/LeftPanel/index":"52453","./pages/Container/White/BranchOffice/components/LeftPanel/index.js":"52453","./pages/Container/White/BranchOffice/components/LeftPanel/index.less":"84927","./pages/Container/White/BranchOffice/components/RightPanel":"51005","./pages/Container/White/BranchOffice/components/RightPanel/":"51005","./pages/Container/White/BranchOffice/components/RightPanel/index":"51005","./pages/Container/White/BranchOffice/components/RightPanel/index.js":"51005","./pages/Container/White/BranchOffice/components/RightPanel/index.less":"24954","./pages/Container/White/BranchOffice/components/Title":"79721","./pages/Container/White/BranchOffice/components/Title/":"79721","./pages/Container/White/BranchOffice/components/Title/index":"79721","./pages/Container/White/BranchOffice/components/Title/index.js":"79721","./pages/Container/White/BranchOffice/components/Title/index.less":"17004","./pages/Container/White/BranchOffice/index":"79295","./pages/Container/White/BranchOffice/index.js":"79295","./pages/Container/White/BranchOffice/index.less":"82316","./pages/Container/White/Share":"72098","./pages/Container/White/Share/":"72098","./pages/Container/White/Share/components/Header":"73076","./pages/Container/White/Share/components/Header/":"73076","./pages/Container/White/Share/components/Header/index":"73076","./pages/Container/White/Share/components/Header/index.js":"73076","./pages/Container/White/Share/components/Header/index.less":"81500","./pages/Container/White/Share/components/LeftPanel":"75560","./pages/Container/White/Share/components/LeftPanel/":"75560","./pages/Container/White/Share/components/LeftPanel/index":"75560","./pages/Container/White/Share/components/LeftPanel/index.js":"75560","./pages/Container/White/Share/components/LeftPanel/index.less":"84286","./pages/Container/White/Share/components/MiddlePanel":"80029","./pages/Container/White/Share/components/MiddlePanel/":"80029","./pages/Container/White/Share/components/MiddlePanel/index":"80029","./pages/Container/White/Share/components/MiddlePanel/index.js":"80029","./pages/Container/White/Share/components/MiddlePanel/index.less":"57994","./pages/Container/White/Share/components/RightPanel":"44320","./pages/Container/White/Share/components/RightPanel/":"44320","./pages/Container/White/Share/components/RightPanel/index":"44320","./pages/Container/White/Share/components/RightPanel/index.js":"44320","./pages/Container/White/Share/components/RightPanel/index.less":"80341","./pages/Container/White/Share/index":"72098","./pages/Container/White/Share/index.js":"72098","./pages/Container/White/Share/index.less":"62211","./pages/Container/White/index":"86270","./pages/Container/White/index.js":"86270","./pages/Container/index":"79473","./pages/Container/index.js":"79473","./pages/Container/index.less":"58993","./pages/index":"60788","./pages/index.js":"60788"};function a(e){return r(n(e))}function n(e){if(!r.o(o,e)){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return o[e]}a.keys=function(){return Object.keys(o)},a.resolve=n,e.exports=a,a.id=10016},15703(){},60322(){},8258(e){"use strict";e.exports=JSON.parse('{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":500101,"name":"万州区","center":[108.380246,30.807807],"centroid":[108.406819,30.704054],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":0,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.034778,30.574187],[108.052847,30.572094],[108.062667,30.574429],[108.072537,30.582159],[108.083339,30.579582],[108.088593,30.572617],[108.103863,30.573382],[108.105631,30.591458],[108.111621,30.59343],[108.127187,30.586104],[108.126647,30.577972],[108.120067,30.576965],[108.12645,30.564],[108.143587,30.566215],[108.153063,30.545879],[108.152523,30.535931],[108.163374,30.540805],[108.171378,30.539314],[108.165633,30.524411],[108.175552,30.510633],[108.184537,30.518167],[108.195045,30.514501],[108.207811,30.49766],[108.230496,30.476705],[108.232755,30.45502],[108.241937,30.443773],[108.223622,30.421274],[108.236732,30.409216],[108.254261,30.403529],[108.261479,30.388605],[108.275031,30.405546],[108.296538,30.401109],[108.298944,30.407562],[108.315835,30.425387],[108.317062,30.433129],[108.33248,30.449336],[108.338814,30.470337],[108.344657,30.476987],[108.378734,30.534884],[108.394593,30.536737],[108.404315,30.548295],[108.410404,30.543261],[108.409717,30.532749],[108.402253,30.529688],[108.399553,30.520504],[108.409962,30.517563],[108.412368,30.503059],[108.427786,30.512567],[108.42101,30.497176],[108.424054,30.488956],[108.440994,30.491011],[108.45268,30.495968],[108.455086,30.489319],[108.479146,30.488956],[108.491765,30.501488],[108.513124,30.501407],[108.528297,30.487505],[108.542929,30.491978],[108.55707,30.486014],[108.564926,30.468564],[108.569935,30.470418],[108.581719,30.485893],[108.591245,30.487787],[108.590606,30.494718],[108.598561,30.493872],[108.611376,30.502173],[108.604551,30.510795],[108.621737,30.515468],[108.620116,30.52288],[108.628611,30.525176],[108.649332,30.537824],[108.649725,30.554215],[108.64344,30.562027],[108.639904,30.574751],[108.654487,30.585017],[108.666223,30.5886],[108.690479,30.586708],[108.700004,30.561786],[108.699415,30.544389],[108.711592,30.537864],[108.715815,30.530373],[108.711887,30.523203],[108.726176,30.515548],[108.723966,30.507572],[108.744196,30.494799],[108.761529,30.505315],[108.77292,30.503502],[108.788534,30.51293],[108.799239,30.50592],[108.806948,30.491414],[108.839011,30.50318],[108.853005,30.514984],[108.854429,30.521913],[108.871663,30.532749],[108.893121,30.557799],[108.894643,30.56702],[108.90952,30.581273],[108.869896,30.610979],[108.871565,30.618103],[108.901713,30.646792],[108.899946,30.676438],[108.896312,30.684039],[108.884331,30.687337],[108.883546,30.695661],[108.872007,30.690112],[108.836016,30.678449],[108.828699,30.679414],[108.823347,30.69168],[108.818094,30.693771],[108.785883,30.683516],[108.779254,30.685125],[108.781022,30.697028],[108.79261,30.706558],[108.789762,30.714277],[108.763444,30.713031],[108.766586,30.720548],[108.762609,30.728106],[108.76639,30.74141],[108.754998,30.740044],[108.749842,30.74555],[108.740169,30.775527],[108.74724,30.782116],[108.740808,30.787259],[108.738549,30.808026],[108.733393,30.81405],[108.715177,30.815094],[108.699955,30.811841],[108.698482,30.822885],[108.685127,30.835976],[108.685078,30.845773],[108.671968,30.852116],[108.665977,30.867972],[108.653014,30.89105],[108.634798,30.885271],[108.625419,30.875358],[108.621589,30.888561],[108.623013,30.912837],[108.628169,30.918253],[108.619233,30.926999],[108.61884,30.934741],[108.608578,30.93807],[108.593307,30.920259],[108.566448,30.912396],[108.552602,30.915405],[108.537577,30.958123],[108.523632,30.973159],[108.531243,30.978051],[108.533894,30.996251],[108.51666,30.990559],[108.506643,30.992604],[108.501094,30.98651],[108.50409,30.977289],[108.496626,30.972839],[108.486413,30.977008],[108.460537,30.967426],[108.454743,30.970232],[108.45327,30.988755],[108.455626,30.994728],[108.440356,31.002545],[108.426509,30.998216],[108.41497,30.998897],[108.395674,30.991641],[108.372792,30.969791],[108.355214,30.960408],[108.339649,30.963135],[108.349027,30.939153],[108.360861,30.932976],[108.346277,30.921222],[108.300269,30.901041],[108.29202,30.892976],[108.268402,30.881659],[108.260055,30.872789],[108.243803,30.882261],[108.244294,30.89113],[108.228237,30.881298],[108.231184,30.87612],[108.225488,30.860908],[108.229956,30.856171],[108.218417,30.852839],[108.200102,30.839188],[108.197254,30.833647],[108.18218,30.824211],[108.167106,30.827182],[108.157482,30.834771],[108.152179,30.831278],[108.131704,30.832001],[108.126057,30.840875],[108.122866,30.833487],[108.109608,30.82931],[108.105287,30.841356],[108.096646,30.84782],[108.090115,30.871545],[108.101654,30.878007],[108.081817,30.885712],[108.071751,30.892695],[108.069149,30.888281],[108.041112,30.876522],[108.0363,30.8701],[108.029426,30.884508],[108.009392,30.907662],[108.000849,30.911915],[107.994711,30.908665],[107.986953,30.901924],[107.95597,30.882983],[107.954202,30.872428],[107.929504,30.859342],[107.896508,30.834932],[107.876131,30.813287],[107.88492,30.806138],[107.905592,30.77601],[107.908243,30.762911],[107.918653,30.75829],[107.959112,30.719262],[108.011405,30.709814],[108.03517,30.715362],[108.047544,30.723684],[108.074894,30.723121],[108.086678,30.713714],[108.074844,30.696304],[108.082259,30.677926],[108.079558,30.664532],[108.0554,30.660027],[108.042585,30.662481],[108.025645,30.648844],[108.023091,30.63617],[108.016954,30.629571],[108.025252,30.60289],[108.033697,30.592424],[108.028051,30.587432],[108.034778,30.574187]]]]}},{"type":"Feature","properties":{"adcode":500102,"name":"涪陵区","center":[107.394905,29.703652],"centroid":[107.334026,29.658582],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":1,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.701575,29.615443],[107.698482,29.618614],[107.713752,29.642555],[107.718073,29.65682],[107.696616,29.660315],[107.684733,29.666532],[107.674176,29.663362],[107.670101,29.675064],[107.6565,29.686156],[107.64447,29.687821],[107.630427,29.701714],[107.632784,29.719016],[107.640345,29.740701],[107.625075,29.753896],[107.64226,29.76303],[107.638529,29.772976],[107.638627,29.813274],[107.622669,29.802562],[107.605336,29.808161],[107.605238,29.832423],[107.595369,29.835222],[107.604256,29.852014],[107.613585,29.856111],[107.616973,29.865884],[107.626892,29.874522],[107.613094,29.876955],[107.598707,29.888632],[107.602979,29.897389],[107.59473,29.917657],[107.579361,29.923939],[107.573126,29.933827],[107.57946,29.943877],[107.571898,29.951049],[107.56193,29.946146],[107.546807,29.958585],[107.546905,29.965675],[107.53355,29.968551],[107.523779,29.978678],[107.515186,29.959436],[107.500554,29.960611],[107.498197,29.972481],[107.487443,29.972076],[107.471338,29.989453],[107.466968,29.998606],[107.453171,30.001441],[107.448064,29.999092],[107.421156,29.967944],[107.415755,29.970577],[107.383545,29.926614],[107.387129,29.921993],[107.377505,29.910523],[107.379666,29.899132],[107.369354,29.906794],[107.360762,29.897227],[107.342005,29.892929],[107.335818,29.884415],[107.337193,29.873062],[107.323445,29.852947],[107.313084,29.845809],[107.299827,29.847472],[107.29801,29.839603],[107.272379,29.837291],[107.270857,29.851447],[107.265161,29.847472],[107.240512,29.841347],[107.229317,29.84374],[107.210806,29.840292],[107.206583,29.824958],[107.212279,29.816276],[107.198039,29.809622],[107.186992,29.79473],[107.153111,29.784827],[107.111572,29.76299],[107.102635,29.754546],[107.086726,29.761813],[107.070277,29.758524],[107.070032,29.751217],[107.041406,29.734407],[107.027166,29.717189],[107.009195,29.712762],[107.002223,29.714468],[106.993581,29.679331],[106.975315,29.634142],[106.966624,29.599546],[106.958768,29.582508],[106.953268,29.551311],[106.953612,29.535811],[106.947278,29.510826],[106.945952,29.497029],[106.964415,29.488685],[106.98052,29.488767],[106.993925,29.482579],[107.00453,29.471058],[107.012927,29.487708],[107.019997,29.487057],[107.015873,29.473338],[107.034581,29.467435],[107.034482,29.453103],[107.025055,29.441782],[107.029228,29.410827],[107.034581,29.406713],[107.026381,29.402802],[107.035121,29.391231],[107.051619,29.394205],[107.052552,29.388705],[107.043321,29.378437],[107.07229,29.362829],[107.083387,29.359813],[107.10018,29.361606],[107.114812,29.366741],[107.109166,29.383856],[107.110442,29.391598],[107.125124,29.387564],[107.134158,29.394613],[107.146827,29.396365],[107.142947,29.408179],[107.134846,29.411438],[107.148741,29.419259],[107.155272,29.417304],[107.16082,29.424432],[107.167056,29.420603],[107.173096,29.408342],[107.185911,29.412945],[107.203244,29.411316],[107.199561,29.399135],[107.214439,29.39775],[107.207221,29.385934],[107.20732,29.366293],[107.225487,29.367801],[107.239285,29.364744],[107.241691,29.379415],[107.237713,29.394817],[107.226666,29.406835],[107.227598,29.418159],[107.240512,29.426795],[107.245422,29.424391],[107.260938,29.429035],[107.262264,29.436162],[107.277338,29.440357],[107.30567,29.465318],[107.313526,29.487912],[107.323248,29.497558],[107.328993,29.509321],[107.348683,29.515547],[107.358601,29.51575],[107.365868,29.522383],[107.380599,29.523197],[107.391548,29.530969],[107.427491,29.505658],[107.431762,29.483475],[107.441386,29.491575],[107.450519,29.490028],[107.463826,29.498617],[107.4625,29.502117],[107.475905,29.50635],[107.478507,29.497151],[107.513664,29.461165],[107.532666,29.423047],[107.546562,29.431845],[107.552798,29.447809],[107.56139,29.453062],[107.574206,29.452533],[107.577446,29.462427],[107.595958,29.480951],[107.613143,29.479526],[107.620558,29.483638],[107.615009,29.512373],[107.607546,29.514652],[107.608135,29.532474],[107.629003,29.539147],[107.651197,29.553304],[107.654634,29.562457],[107.666958,29.573804],[107.687532,29.600481],[107.69804,29.605889],[107.701575,29.615443]]]]}},{"type":"Feature","properties":{"adcode":500103,"name":"渝中区","center":[106.56288,29.556742],"centroid":[106.540387,29.549305],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":2,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.588199,29.571242],[106.572487,29.562619],[106.560849,29.567175],[106.545382,29.566483],[106.530407,29.552369],[106.502321,29.557494],[106.494022,29.554809],[106.482778,29.548097],[106.495594,29.546958],[106.500995,29.529789],[106.532272,29.52869],[106.539441,29.540489],[106.556185,29.5411],[106.583731,29.547812],[106.589623,29.556518],[106.588199,29.571242]]]]}},{"type":"Feature","properties":{"adcode":500104,"name":"大渡口区","center":[106.48613,29.481002],"centroid":[106.458637,29.417574],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":3,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.424298,29.426306],[106.423071,29.426591],[106.417522,29.420563],[106.416786,29.430175],[106.410108,29.439176],[106.406965,29.439054],[106.398422,29.440438],[106.393708,29.429361],[106.398471,29.413638],[106.392726,29.408831],[106.398225,29.386016],[106.405738,29.380963],[106.409568,29.368086],[106.39631,29.357286],[106.400877,29.340777],[106.411876,29.342245],[106.435542,29.352965],[106.441926,29.358916],[106.455036,29.380596],[106.469619,29.389153],[106.49196,29.39775],[106.509735,29.397506],[106.528197,29.388338],[106.534924,29.392005],[106.526528,29.411275],[106.498343,29.446913],[106.502075,29.47745],[106.509538,29.481765],[106.521765,29.479974],[106.523729,29.485673],[106.50291,29.494994],[106.480569,29.490273],[106.468097,29.498128],[106.454888,29.483556],[106.462696,29.485266],[106.47065,29.475048],[106.458915,29.472443],[106.451942,29.456401],[106.458767,29.448379],[106.454545,29.430623],[106.457884,29.41983],[106.451402,29.414127],[106.439372,29.417834],[106.430436,29.415512],[106.424298,29.426306]]]]}},{"type":"Feature","properties":{"adcode":500105,"name":"江北区","center":[106.532844,29.575352],"centroid":[106.707043,29.613282],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":4,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.46191,29.608247],[106.451942,29.586452],[106.463432,29.581165],[106.487688,29.555135],[106.494022,29.554809],[106.502321,29.557494],[106.530407,29.552369],[106.545382,29.566483],[106.560849,29.567175],[106.572487,29.562619],[106.588199,29.571242],[106.581177,29.578766],[106.580392,29.590275],[106.589672,29.609344],[106.602242,29.615565],[106.623307,29.614995],[106.633274,29.592023],[106.641916,29.586818],[106.65645,29.591861],[106.672654,29.566321],[106.683652,29.562131],[106.692343,29.564287],[106.709627,29.577627],[106.730937,29.583402],[106.740512,29.589665],[106.748614,29.607718],[106.766977,29.610401],[106.792461,29.604059],[106.801152,29.589055],[106.821087,29.591576],[106.843527,29.57657],[106.85045,29.575431],[106.861547,29.602067],[106.873086,29.615809],[106.893659,29.657064],[106.87775,29.659339],[106.866359,29.646985],[106.850548,29.659908],[106.833706,29.6632],[106.825703,29.659502],[106.819811,29.663647],[106.822118,29.67153],[106.809401,29.674699],[106.806701,29.671123],[106.793001,29.678599],[106.78323,29.669986],[106.782543,29.662428],[106.754162,29.651578],[106.747926,29.655154],[106.749988,29.663606],[106.744735,29.670433],[106.741297,29.662184],[106.73462,29.667263],[106.729906,29.646294],[106.723915,29.640604],[106.712671,29.646945],[106.70948,29.631337],[106.687237,29.623654],[106.648054,29.63719],[106.621834,29.635199],[106.61162,29.639873],[106.602929,29.634386],[106.595613,29.638572],[106.582798,29.633695],[106.579213,29.619061],[106.57337,29.620362],[106.562617,29.603734],[106.562175,29.589543],[106.549851,29.581531],[106.530308,29.587469],[106.506543,29.573032],[106.497754,29.573113],[106.486363,29.585639],[106.485724,29.596984],[106.492009,29.599424],[106.482434,29.613329],[106.478506,29.609751],[106.46191,29.608247]]]]}},{"type":"Feature","properties":{"adcode":500106,"name":"沙坪坝区","center":[106.4542,29.541224],"centroid":[106.368248,29.624462],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":5,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.482778,29.548097],[106.494022,29.554809],[106.487688,29.555135],[106.463432,29.581165],[106.451942,29.586452],[106.46191,29.608247],[106.462843,29.616296],[106.453121,29.620321],[106.45209,29.632109],[106.468293,29.645969],[106.469766,29.657714],[106.457589,29.668889],[106.448603,29.661453],[106.448702,29.652187],[106.424396,29.65747],[106.429061,29.662956],[106.426508,29.680021],[106.433431,29.711706],[106.442073,29.730387],[106.442908,29.743624],[106.431418,29.749146],[106.417768,29.750202],[106.40947,29.738833],[106.39361,29.740457],[106.382758,29.747847],[106.380647,29.744233],[106.366604,29.746994],[106.365327,29.735504],[106.32968,29.732702],[106.327126,29.728519],[106.317797,29.738752],[106.305669,29.736641],[106.297076,29.706467],[106.285636,29.697896],[106.280431,29.703298],[106.278712,29.67669],[106.284506,29.675268],[106.287698,29.663484],[106.2794,29.652553],[106.287649,29.635849],[106.279105,29.637841],[106.273017,29.631215],[106.282493,29.626744],[106.274882,29.612231],[106.265602,29.605889],[106.260005,29.592633],[106.251707,29.559406],[106.253425,29.532841],[106.264031,29.525354],[106.285488,29.532881],[106.293639,29.531254],[106.297322,29.542442],[106.305718,29.538415],[106.312789,29.544883],[106.33405,29.544029],[106.343526,29.554891],[106.356145,29.559772],[106.37392,29.546633],[106.379763,29.546958],[106.379272,29.536584],[106.390762,29.54053],[106.395083,29.547934],[106.403528,29.538903],[106.41384,29.540815],[106.411237,29.505536],[106.407506,29.492918],[106.424544,29.493325],[106.426999,29.498006],[106.44281,29.494139],[106.448063,29.509524],[106.461615,29.52808],[106.460093,29.532108],[106.483466,29.539025],[106.482778,29.548097]]]]}},{"type":"Feature","properties":{"adcode":500107,"name":"九龙坡区","center":[106.480989,29.523492],"centroid":[106.364401,29.428501],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":6,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.253425,29.532841],[106.253278,29.519698],[106.261969,29.516524],[106.260594,29.494262],[106.267026,29.494994],[106.26025,29.466051],[106.262705,29.451596],[106.278565,29.449031],[106.285636,29.441986],[106.298549,29.440764],[106.30724,29.434248],[106.307339,29.426835],[106.320596,29.427976],[106.323002,29.420481],[106.317257,29.415227],[106.329041,29.413679],[106.331005,29.39555],[106.322314,29.38732],[106.314409,29.388827],[106.30891,29.379985],[106.295554,29.378763],[106.294425,29.384549],[106.284359,29.38516],[106.282248,29.368167],[106.275668,29.363236],[106.277829,29.352924],[106.267468,29.350234],[106.261232,29.335519],[106.274539,29.32871],[106.276945,29.322269],[106.289171,29.320679],[106.27994,29.286913],[106.298697,29.256483],[106.311905,29.254769],[106.339844,29.26456],[106.3559,29.27688],[106.384035,29.283039],[106.393217,29.294948],[106.385999,29.312401],[106.395525,29.339351],[106.400877,29.340777],[106.39631,29.357286],[106.409568,29.368086],[106.405738,29.380963],[106.398225,29.386016],[106.392726,29.408831],[106.398471,29.413638],[106.393708,29.429361],[106.398422,29.440438],[106.406965,29.439054],[106.408537,29.441375],[106.410599,29.440397],[106.410108,29.439176],[106.416786,29.430175],[106.417522,29.420563],[106.423071,29.426591],[106.423316,29.427202],[106.423709,29.427691],[106.423955,29.427731],[106.424249,29.426795],[106.424298,29.426306],[106.430436,29.415512],[106.439372,29.417834],[106.451402,29.414127],[106.457884,29.41983],[106.454545,29.430623],[106.458767,29.448379],[106.451942,29.456401],[106.458915,29.472443],[106.47065,29.475048],[106.462696,29.485266],[106.454888,29.483556],[106.468097,29.498128],[106.480569,29.490273],[106.50291,29.494994],[106.523729,29.485673],[106.521765,29.479974],[106.542044,29.472972],[106.552011,29.48726],[106.549851,29.495523],[106.534187,29.505454],[106.532272,29.52869],[106.500995,29.529789],[106.495594,29.546958],[106.482778,29.548097],[106.483466,29.539025],[106.460093,29.532108],[106.461615,29.52808],[106.448063,29.509524],[106.44281,29.494139],[106.426999,29.498006],[106.424544,29.493325],[106.407506,29.492918],[106.411237,29.505536],[106.41384,29.540815],[106.403528,29.538903],[106.395083,29.547934],[106.390762,29.54053],[106.379272,29.536584],[106.379763,29.546958],[106.37392,29.546633],[106.356145,29.559772],[106.343526,29.554891],[106.33405,29.544029],[106.312789,29.544883],[106.305718,29.538415],[106.297322,29.542442],[106.293639,29.531254],[106.285488,29.532881],[106.264031,29.525354],[106.253425,29.532841]]],[[[106.423955,29.427731],[106.423709,29.427691],[106.423316,29.427202],[106.423071,29.426591],[106.424298,29.426306],[106.424249,29.426795],[106.423955,29.427731]]],[[[106.410599,29.440397],[106.408537,29.441375],[106.406965,29.439054],[106.410108,29.439176],[106.410599,29.440397]]]]}},{"type":"Feature","properties":{"adcode":500108,"name":"南岸区","center":[106.560813,29.523992],"centroid":[106.660614,29.535521],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":7,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.801152,29.589055],[106.792461,29.604059],[106.766977,29.610401],[106.748614,29.607718],[106.740512,29.589665],[106.730937,29.583402],[106.709627,29.577627],[106.692343,29.564287],[106.683652,29.562131],[106.672654,29.566321],[106.65645,29.591861],[106.641916,29.586818],[106.633274,29.592023],[106.623307,29.614995],[106.602242,29.615565],[106.589672,29.609344],[106.580392,29.590275],[106.581177,29.578766],[106.588199,29.571242],[106.589623,29.556518],[106.583731,29.547812],[106.556185,29.5411],[106.539441,29.540489],[106.532272,29.52869],[106.534187,29.505454],[106.549851,29.495523],[106.552011,29.48726],[106.56954,29.485144],[106.578772,29.469878],[106.586677,29.473094],[106.59581,29.463974],[106.606808,29.474315],[106.627971,29.465847],[106.642849,29.469959],[106.655321,29.462346],[106.65866,29.46772],[106.673341,29.458437],[106.688808,29.468453],[106.683358,29.476473],[106.69308,29.483353],[106.693276,29.48897],[106.703686,29.487993],[106.705257,29.482254],[106.732115,29.483923],[106.738548,29.486731],[106.764179,29.530928],[106.7712,29.549155],[106.787993,29.576326],[106.801152,29.589055]]]]}},{"type":"Feature","properties":{"adcode":500109,"name":"北碚区","center":[106.437868,29.82543],"centroid":[106.513996,29.861006],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":8,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.648447,30.085559],[106.629101,30.079448],[106.591587,30.047071],[106.598265,30.039582],[106.596546,30.030432],[106.582209,30.022214],[106.572192,30.012698],[106.568706,29.991154],[106.55697,29.961259],[106.544941,29.935246],[106.526773,29.945822],[106.519506,29.927546],[106.505659,29.931234],[106.501338,29.922115],[106.488916,29.908415],[106.479046,29.908172],[106.477131,29.891875],[106.466967,29.882996],[106.465347,29.870832],[106.452581,29.869128],[106.462892,29.88478],[106.458522,29.887456],[106.452777,29.878212],[106.44281,29.883564],[106.46191,29.92402],[106.455281,29.926776],[106.443841,29.906834],[106.433235,29.901889],[106.423414,29.904564],[106.429601,29.892362],[106.423611,29.884334],[106.409077,29.889443],[106.396507,29.898118],[106.390958,29.906672],[106.390909,29.921304],[106.383053,29.92787],[106.339598,29.901767],[106.314409,29.884861],[106.325653,29.872737],[106.329385,29.859639],[106.336407,29.860247],[106.330956,29.848323],[106.342446,29.842523],[106.337585,29.834532],[106.345883,29.836114],[106.34225,29.816804],[106.351284,29.812422],[106.372889,29.814207],[106.344214,29.779307],[106.334197,29.771311],[106.324279,29.774843],[106.31598,29.764898],[106.305669,29.736641],[106.317797,29.738752],[106.327126,29.728519],[106.32968,29.732702],[106.365327,29.735504],[106.366604,29.746994],[106.380647,29.744233],[106.382758,29.747847],[106.39361,29.740457],[106.40947,29.738833],[106.417768,29.750202],[106.431418,29.749146],[106.442908,29.743624],[106.442073,29.730387],[106.433431,29.711706],[106.426508,29.680021],[106.429061,29.662956],[106.424396,29.65747],[106.448702,29.652187],[106.448603,29.661453],[106.457589,29.668889],[106.457147,29.687415],[106.469373,29.697165],[106.487197,29.699399],[106.496134,29.68969],[106.506887,29.685425],[106.514743,29.694281],[106.512337,29.703461],[106.518377,29.71199],[106.536741,29.723321],[106.536741,29.730306],[106.524956,29.742609],[106.520144,29.764614],[106.515676,29.769688],[106.530996,29.775979],[106.532469,29.767333],[106.54116,29.763112],[106.530799,29.758687],[106.532076,29.749471],[106.5417,29.754871],[106.556529,29.754789],[106.57175,29.763355],[106.589181,29.754992],[106.588543,29.76161],[106.604746,29.769322],[106.592864,29.784705],[106.609018,29.799437],[106.601653,29.799843],[106.593011,29.808932],[106.5936,29.79964],[106.584909,29.799599],[106.587217,29.812665],[106.598805,29.816763],[106.598461,29.825607],[106.612848,29.832626],[106.622865,29.831327],[106.620262,29.840252],[106.634109,29.839481],[106.646581,29.849378],[106.64987,29.863857],[106.658512,29.869534],[106.668775,29.900348],[106.67506,29.897713],[106.678889,29.908212],[106.669118,29.912712],[106.679822,29.923615],[106.678497,29.92864],[106.687384,29.935489],[106.674274,29.932206],[106.674225,29.961948],[106.679724,29.97961],[106.677465,29.98601],[106.676385,30.015087],[106.678889,30.026141],[106.670739,30.034805],[106.678153,30.058121],[106.677024,30.063989],[106.648447,30.085559]]]]}},{"type":"Feature","properties":{"adcode":500110,"name":"綦江区","center":[106.651417,29.028091],"centroid":[106.722706,28.87864],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":9,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.057462,28.894785],[107.04337,28.919879],[107.053288,28.919183],[107.057315,28.932771],[107.051275,28.942143],[107.043124,28.945785],[107.02913,28.941284],[107.015971,28.952087],[107.013614,28.969599],[107.022256,28.974058],[107.02967,28.985717],[107.024564,28.995983],[107.01715,28.998724],[107.003892,29.016023],[106.990045,29.021094],[106.979832,29.031766],[106.981158,29.039861],[106.988671,29.043459],[106.977034,29.056009],[106.975266,29.050532],[106.96358,29.058217],[106.954545,29.059239],[106.950421,29.071787],[106.938685,29.041906],[106.926361,29.047793],[106.920567,29.045749],[106.915362,29.054538],[106.906131,29.051758],[106.910256,29.068844],[106.921844,29.100475],[106.911483,29.114775],[106.905542,29.11596],[106.891695,29.131769],[106.885263,29.141817],[106.868028,29.151456],[106.858012,29.149046],[106.849468,29.1575],[106.821235,29.149577],[106.812936,29.165014],[106.809941,29.178161],[106.800121,29.179958],[106.793689,29.169709],[106.788386,29.177181],[106.776405,29.163666],[106.768843,29.161298],[106.767665,29.169587],[106.757894,29.170159],[106.748908,29.176691],[106.729464,29.162604],[106.712377,29.179182],[106.699561,29.177181],[106.686746,29.188042],[106.680313,29.173548],[106.676631,29.176855],[106.668234,29.168158],[106.665092,29.158439],[106.65316,29.16142],[106.656205,29.175385],[106.642603,29.173874],[106.623896,29.160154],[106.604599,29.126908],[106.588395,29.12654],[106.585007,29.131442],[106.574451,29.128215],[106.574205,29.116777],[106.581177,29.110076],[106.578084,29.09312],[106.584418,29.079634],[106.583436,29.071256],[106.589672,29.056663],[106.585695,29.053148],[106.589525,29.030008],[106.59414,29.019131],[106.608773,29.014756],[106.592471,29.005963],[106.585204,29.008294],[106.57833,29.022443],[106.562666,29.016555],[106.557118,29.006004],[106.549703,29.00535],[106.551815,29.024692],[106.544646,29.036386],[106.526331,29.036141],[106.524956,29.044195],[106.514547,29.059852],[106.504825,29.063285],[106.498,29.071624],[106.501044,29.0771],[106.49034,29.083476],[106.484497,29.065738],[106.489849,29.042969],[106.478113,29.024774],[106.475413,29.012179],[106.454447,29.0177],[106.444135,29.038103],[106.463874,29.042069],[106.44281,29.050573],[106.442515,29.039739],[106.427834,29.047588],[106.419732,29.047834],[106.404314,29.035364],[106.398765,29.027023],[106.385803,29.029476],[106.391842,29.022443],[106.397587,28.993693],[106.405738,28.979622],[106.399846,28.962521],[106.408733,28.95401],[106.402792,28.940956],[106.410992,28.922294],[106.411826,28.891182],[106.415264,28.876236],[106.43623,28.870217],[106.446443,28.863337],[106.455723,28.836427],[106.461861,28.831019],[106.47448,28.833027],[106.476199,28.826759],[106.490585,28.806518],[106.508753,28.795864],[106.521126,28.794266],[106.523041,28.78111],[106.533795,28.778733],[106.53404,28.770904],[106.547985,28.769838],[106.561831,28.756064],[106.563894,28.746184],[106.559229,28.731546],[106.56026,28.72072],[106.576857,28.702387],[106.582356,28.702223],[106.587315,28.691517],[106.598068,28.691886],[106.606072,28.685035],[106.619182,28.689178],[106.614272,28.680276],[106.61766,28.667311],[106.626891,28.659269],[106.635238,28.658448],[106.643684,28.664316],[106.651393,28.64942],[106.641179,28.644167],[106.620213,28.645727],[106.618887,28.637272],[106.62861,28.63444],[106.636809,28.623235],[106.636466,28.613219],[106.629641,28.604762],[106.614665,28.609442],[106.607054,28.594292],[106.616825,28.562795],[106.615254,28.549651],[106.600622,28.541353],[106.584615,28.523276],[106.568657,28.523646],[106.560309,28.513374],[106.56792,28.505278],[106.562814,28.497388],[106.568018,28.484031],[106.589181,28.488387],[106.591489,28.499073],[106.584958,28.50684],[106.593404,28.510169],[106.610147,28.497922],[106.632734,28.503553],[106.631114,28.490237],[106.649772,28.47955],[106.661066,28.491881],[106.678349,28.481359],[106.688268,28.484647],[106.696713,28.4784],[106.693276,28.45653],[106.708547,28.450486],[106.716207,28.456365],[106.725241,28.454433],[106.732901,28.46356],[106.746649,28.466643],[106.744833,28.489867],[106.726027,28.518551],[106.723965,28.529891],[106.728187,28.54201],[106.73732,28.553307],[106.754358,28.558318],[106.765161,28.558153],[106.779891,28.56378],[106.780922,28.574869],[106.766634,28.580166],[106.758581,28.588133],[106.759023,28.611084],[106.773901,28.611946],[106.780333,28.625],[106.792559,28.616256],[106.793443,28.606486],[106.800514,28.602134],[106.807732,28.589447],[106.827078,28.598562],[106.833264,28.613219],[106.829287,28.622742],[106.856146,28.622496],[106.866359,28.624507],[106.871515,28.658817],[106.883201,28.69246],[106.862136,28.690983],[106.854722,28.697095],[106.853936,28.706324],[106.862529,28.707555],[106.852905,28.724452],[106.828354,28.737696],[106.824033,28.756146],[106.833363,28.768772],[106.838469,28.765985],[106.845393,28.781028],[106.862333,28.780577],[106.864591,28.77447],[106.874215,28.779716],[106.886392,28.794716],[106.897882,28.80115],[106.905345,28.79611],[106.923071,28.810042],[106.938391,28.792381],[106.94227,28.782135],[106.950224,28.777626],[106.951746,28.766969],[106.967803,28.774101],[106.987885,28.774675],[106.988671,28.790331],[106.981355,28.804347],[106.980814,28.812951],[106.98926,28.829585],[106.983368,28.851173],[106.997853,28.853507],[107.005169,28.859159],[107.019114,28.860675],[107.016118,28.882501],[107.036594,28.88115],[107.04062,28.863869],[107.058689,28.868947],[107.045579,28.874926],[107.052552,28.8911],[107.057462,28.894785]]]]}},{"type":"Feature","properties":{"adcode":500111,"name":"大足区","center":[105.715319,29.700498],"centroid":[105.742721,29.65],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":10,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.482777,29.679127],[105.490683,29.675186],[105.487688,29.663159],[105.496673,29.648652],[105.509243,29.637962],[105.50561,29.609344],[105.517738,29.586493],[105.536642,29.59121],[105.542681,29.586412],[105.542534,29.57413],[105.549703,29.572096],[105.561045,29.588892],[105.580047,29.591617],[105.590899,29.590397],[105.594483,29.575553],[105.602241,29.569941],[105.599983,29.553019],[105.592175,29.549928],[105.59522,29.539432],[105.590015,29.524011],[105.583239,29.515588],[105.593059,29.517744],[105.595711,29.504152],[105.607642,29.508262],[105.619967,29.504803],[105.620556,29.494017],[105.631506,29.485917],[105.629738,29.478386],[105.637152,29.473623],[105.646236,29.486121],[105.639509,29.489052],[105.641179,29.505861],[105.648397,29.494139],[105.662636,29.499431],[105.65311,29.485022],[105.658119,29.481317],[105.657431,29.468168],[105.662194,29.460025],[105.687236,29.446506],[105.714929,29.464259],[105.725486,29.454121],[105.724013,29.449967],[105.735061,29.445162],[105.737663,29.435592],[105.727646,29.422844],[105.73403,29.417386],[105.722835,29.397872],[105.741002,29.397628],[105.728678,29.384875],[105.735159,29.38459],[105.747582,29.372487],[105.767762,29.379578],[105.773507,29.394857],[105.770561,29.408302],[105.802674,29.437139],[105.817895,29.490395],[105.825899,29.51396],[105.834933,29.527917],[105.855016,29.540042],[105.868617,29.537316],[105.876817,29.541791],[105.873969,29.552572],[105.890467,29.570429],[105.924347,29.595805],[105.938243,29.613166],[105.946099,29.626988],[105.953513,29.630199],[105.969815,29.646294],[105.982532,29.671936],[105.997361,29.6645],[106.005659,29.682581],[106.031732,29.722184],[106.036838,29.726692],[106.025987,29.734854],[106.028344,29.749552],[106.014448,29.752841],[106.010913,29.747279],[106.001289,29.748375],[105.997508,29.756819],[105.998588,29.768916],[105.991223,29.781174],[105.976542,29.784746],[105.970601,29.779876],[105.957638,29.781662],[105.944233,29.775979],[105.922334,29.788236],[105.904706,29.785598],[105.906523,29.795582],[105.893806,29.802967],[105.888208,29.790347],[105.893904,29.785882],[105.888012,29.77468],[105.878584,29.769525],[105.868911,29.756982],[105.83076,29.757997],[105.822461,29.762827],[105.820939,29.773381],[105.806945,29.771636],[105.808418,29.783569],[105.789269,29.794121],[105.778368,29.811367],[105.77719,29.801831],[105.763883,29.793512],[105.746354,29.801466],[105.721411,29.78779],[105.713898,29.789129],[105.714684,29.79684],[105.72308,29.809825],[105.735846,29.819319],[105.725339,29.832747],[105.738252,29.845646],[105.738105,29.856516],[105.733146,29.860693],[105.719397,29.856557],[105.720625,29.849662],[105.708939,29.840576],[105.695436,29.843497],[105.690428,29.852298],[105.677759,29.854286],[105.661801,29.84082],[105.656204,29.844389],[105.641473,29.836844],[105.617659,29.845728],[105.605875,29.827879],[105.604107,29.816844],[105.588444,29.823133],[105.580293,29.790753],[105.587511,29.784868],[105.572289,29.768713],[105.576218,29.757388],[105.574941,29.744477],[105.564335,29.737818],[105.56571,29.724012],[105.557952,29.726651],[105.549212,29.737615],[105.542829,29.726529],[105.550341,29.722022],[105.52962,29.707604],[105.538851,29.69489],[105.527951,29.692412],[105.520095,29.703583],[105.49903,29.709553],[105.49029,29.720275],[105.482188,29.718082],[105.473448,29.707523],[105.474234,29.697124],[105.481353,29.692737],[105.482777,29.679127]]]]}},{"type":"Feature","properties":{"adcode":500112,"name":"渝北区","center":[106.512851,29.601451],"centroid":[106.746928,29.810209],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":11,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.893659,29.657064],[106.906082,29.678152],[106.913742,29.684043],[106.930534,29.689],[106.942564,29.705857],[106.945609,29.724743],[106.972222,29.763924],[106.96466,29.774518],[106.958522,29.769485],[106.952532,29.784259],[106.945167,29.784178],[106.952237,29.792214],[106.939913,29.804347],[106.944234,29.812949],[106.942859,29.839765],[106.936574,29.842483],[106.937114,29.851893],[106.944528,29.855908],[106.945461,29.875454],[106.953416,29.88109],[106.962058,29.901929],[106.974529,29.916603],[106.98489,29.934314],[106.970012,29.938326],[106.965691,29.951981],[106.946934,29.953683],[106.942515,29.964824],[106.935248,29.964054],[106.931467,29.975397],[106.909077,29.971873],[106.896654,29.978597],[106.889928,29.987954],[106.88708,29.981392],[106.877947,29.98601],[106.868323,29.978962],[106.864444,29.984916],[106.866506,30.012293],[106.856195,30.013872],[106.861449,30.028165],[106.842054,30.049135],[106.836996,30.049742],[106.830171,30.033955],[106.812495,30.028975],[106.799974,30.030554],[106.797764,30.023145],[106.785587,30.017233],[106.768598,30.017274],[106.764228,30.024602],[106.759416,30.018893],[106.742132,30.025938],[106.73241,30.026829],[106.726076,30.034319],[106.72583,30.057068],[106.698825,30.076535],[106.698726,30.098708],[106.703195,30.118126],[106.689643,30.117802],[106.688857,30.124031],[106.673881,30.12213],[106.668382,30.101742],[106.656352,30.086165],[106.648447,30.085559],[106.677024,30.063989],[106.678153,30.058121],[106.670739,30.034805],[106.678889,30.026141],[106.676385,30.015087],[106.677465,29.98601],[106.679724,29.97961],[106.674225,29.961948],[106.674274,29.932206],[106.687384,29.935489],[106.678497,29.92864],[106.679822,29.923615],[106.669118,29.912712],[106.678889,29.908212],[106.67506,29.897713],[106.668775,29.900348],[106.658512,29.869534],[106.64987,29.863857],[106.646581,29.849378],[106.634109,29.839481],[106.620262,29.840252],[106.622865,29.831327],[106.612848,29.832626],[106.598461,29.825607],[106.598805,29.816763],[106.587217,29.812665],[106.584909,29.799599],[106.5936,29.79964],[106.593011,29.808932],[106.601653,29.799843],[106.609018,29.799437],[106.592864,29.784705],[106.604746,29.769322],[106.588543,29.76161],[106.589181,29.754992],[106.57175,29.763355],[106.556529,29.754789],[106.5417,29.754871],[106.532076,29.749471],[106.530799,29.758687],[106.54116,29.763112],[106.532469,29.767333],[106.530996,29.775979],[106.515676,29.769688],[106.520144,29.764614],[106.524956,29.742609],[106.536741,29.730306],[106.536741,29.723321],[106.518377,29.71199],[106.512337,29.703461],[106.514743,29.694281],[106.506887,29.685425],[106.496134,29.68969],[106.487197,29.699399],[106.469373,29.697165],[106.457147,29.687415],[106.457589,29.668889],[106.469766,29.657714],[106.468293,29.645969],[106.45209,29.632109],[106.453121,29.620321],[106.462843,29.616296],[106.46191,29.608247],[106.478506,29.609751],[106.482434,29.613329],[106.492009,29.599424],[106.485724,29.596984],[106.486363,29.585639],[106.497754,29.573113],[106.506543,29.573032],[106.530308,29.587469],[106.549851,29.581531],[106.562175,29.589543],[106.562617,29.603734],[106.57337,29.620362],[106.579213,29.619061],[106.582798,29.633695],[106.595613,29.638572],[106.602929,29.634386],[106.61162,29.639873],[106.621834,29.635199],[106.648054,29.63719],[106.687237,29.623654],[106.70948,29.631337],[106.712671,29.646945],[106.723915,29.640604],[106.729906,29.646294],[106.73462,29.667263],[106.741297,29.662184],[106.744735,29.670433],[106.749988,29.663606],[106.747926,29.655154],[106.754162,29.651578],[106.782543,29.662428],[106.78323,29.669986],[106.793001,29.678599],[106.806701,29.671123],[106.809401,29.674699],[106.822118,29.67153],[106.819811,29.663647],[106.825703,29.659502],[106.833706,29.6632],[106.850548,29.659908],[106.866359,29.646985],[106.87775,29.659339],[106.893659,29.657064]]]]}},{"type":"Feature","properties":{"adcode":500113,"name":"巴南区","center":[106.519423,29.381919],"centroid":[106.751731,29.371851],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":12,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.552011,29.48726],[106.542044,29.472972],[106.521765,29.479974],[106.509538,29.481765],[106.502075,29.47745],[106.498343,29.446913],[106.526528,29.411275],[106.534924,29.392005],[106.528197,29.388338],[106.509735,29.397506],[106.49196,29.39775],[106.469619,29.389153],[106.455036,29.380596],[106.441926,29.358916],[106.435542,29.352965],[106.440404,29.350153],[106.454496,29.35427],[106.460241,29.360872],[106.478163,29.36022],[106.474431,29.35696],[106.473645,29.335722],[106.486363,29.294336],[106.508655,29.278674],[106.505021,29.268966],[106.511208,29.268069],[106.514056,29.254688],[106.519653,29.251791],[106.515774,29.232042],[106.521225,29.224614],[106.535906,29.221962],[106.539343,29.213717],[106.547788,29.212534],[106.541896,29.192369],[106.545972,29.183265],[106.562372,29.161379],[106.549998,29.153498],[106.550047,29.145493],[106.560997,29.133239],[106.574451,29.128215],[106.585007,29.131442],[106.588395,29.12654],[106.604599,29.126908],[106.623896,29.160154],[106.642603,29.173874],[106.656205,29.175385],[106.65316,29.16142],[106.665092,29.158439],[106.668234,29.168158],[106.676631,29.176855],[106.680313,29.173548],[106.686746,29.188042],[106.699561,29.177181],[106.712377,29.179182],[106.729464,29.162604],[106.748908,29.176691],[106.757894,29.170159],[106.767665,29.169587],[106.768843,29.161298],[106.776405,29.163666],[106.788386,29.177181],[106.793689,29.169709],[106.800121,29.179958],[106.809941,29.178161],[106.812936,29.165014],[106.821235,29.149577],[106.849468,29.1575],[106.858012,29.149046],[106.868028,29.151456],[106.885263,29.141817],[106.891695,29.131769],[106.891744,29.14149],[106.899355,29.155621],[106.909175,29.160562],[106.907751,29.179672],[106.896409,29.180039],[106.895574,29.190491],[106.911385,29.197472],[106.919045,29.180366],[106.945069,29.183142],[106.955527,29.190695],[106.95263,29.197104],[106.961812,29.202738],[106.968392,29.215228],[106.95754,29.228981],[106.954692,29.252199],[106.936132,29.256931],[106.933039,29.279653],[106.92312,29.280673],[106.920616,29.302411],[106.922433,29.310322],[106.919978,29.329893],[106.922531,29.403046],[106.932253,29.399746],[106.936574,29.439339],[106.933039,29.448542],[106.935297,29.464463],[106.945952,29.497029],[106.947278,29.510826],[106.953612,29.535811],[106.953268,29.551311],[106.958768,29.582508],[106.966624,29.599546],[106.975315,29.634142],[106.993581,29.679331],[107.002223,29.714468],[106.998638,29.732539],[106.990144,29.738062],[106.988818,29.748781],[106.993483,29.75824],[106.988131,29.769322],[106.972222,29.763924],[106.945609,29.724743],[106.942564,29.705857],[106.930534,29.689],[106.913742,29.684043],[106.906082,29.678152],[106.893659,29.657064],[106.873086,29.615809],[106.861547,29.602067],[106.85045,29.575431],[106.843527,29.57657],[106.821087,29.591576],[106.801152,29.589055],[106.787993,29.576326],[106.7712,29.549155],[106.764179,29.530928],[106.738548,29.486731],[106.732115,29.483923],[106.705257,29.482254],[106.703686,29.487993],[106.693276,29.48897],[106.69308,29.483353],[106.683358,29.476473],[106.688808,29.468453],[106.673341,29.458437],[106.65866,29.46772],[106.655321,29.462346],[106.642849,29.469959],[106.627971,29.465847],[106.606808,29.474315],[106.59581,29.463974],[106.586677,29.473094],[106.578772,29.469878],[106.56954,29.485144],[106.552011,29.48726]]]]}},{"type":"Feature","properties":{"adcode":500114,"name":"黔江区","center":[108.782577,29.527548],"centroid":[108.708597,29.435532],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":13,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.55869,29.13953],[108.570769,29.124416],[108.598266,29.105705],[108.587169,29.095081],[108.599396,29.086908],[108.60789,29.109014],[108.615206,29.109709],[108.614568,29.095408],[108.625665,29.08699],[108.622179,29.073422],[108.628906,29.072891],[108.646533,29.081841],[108.661313,29.071624],[108.667205,29.078776],[108.662835,29.090382],[108.669856,29.095939],[108.66416,29.103744],[108.668678,29.108156],[108.681984,29.105623],[108.686698,29.109341],[108.698777,29.101619],[108.700397,29.094427],[108.726912,29.080492],[108.747584,29.092384],[108.749008,29.10881],[108.774295,29.110485],[108.775768,29.124008],[108.784852,29.123272],[108.803756,29.129195],[108.812054,29.122047],[108.832087,29.117267],[108.833266,29.109995],[108.847702,29.105214],[108.855656,29.122659],[108.854625,29.133484],[108.882416,29.1791],[108.896607,29.209024],[108.915265,29.215513],[108.925135,29.222615],[108.925871,29.23347],[108.937607,29.244283],[108.954252,29.272066],[108.93903,29.274065],[108.919783,29.283732],[108.915462,29.293561],[108.903432,29.296416],[108.908784,29.312972],[108.919734,29.326305],[108.916591,29.334622],[108.931027,29.369634],[108.93412,29.399461],[108.943646,29.410746],[108.932009,29.431682],[108.921256,29.436895],[108.90957,29.436814],[108.89808,29.441945],[108.886541,29.440601],[108.873971,29.449397],[108.873726,29.462753],[108.866557,29.471058],[108.869846,29.485917],[108.885952,29.498047],[108.888652,29.507041],[108.886983,29.530562],[108.878439,29.53935],[108.886934,29.553101],[108.902106,29.563026],[108.913056,29.574455],[108.899995,29.584866],[108.909177,29.593284],[108.901271,29.604791],[108.897589,29.596496],[108.885903,29.588445],[108.868324,29.598001],[108.885854,29.621134],[108.887916,29.628573],[108.879618,29.639222],[108.869699,29.643002],[108.855754,29.636377],[108.84451,29.658364],[108.83302,29.651293],[108.827325,29.654382],[108.835377,29.668442],[108.828061,29.671286],[108.816473,29.644018],[108.819812,29.632435],[108.813625,29.63154],[108.804394,29.640564],[108.785637,29.633857],[108.780089,29.645522],[108.792266,29.647351],[108.79752,29.660071],[108.794132,29.671205],[108.784655,29.677177],[108.786276,29.691518],[108.760645,29.693549],[108.752592,29.689365],[108.758141,29.678721],[108.765113,29.682256],[108.775964,29.67539],[108.773018,29.661534],[108.783281,29.653772],[108.774541,29.65174],[108.765899,29.661046],[108.763002,29.653366],[108.752641,29.649017],[108.743017,29.655926],[108.740611,29.665719],[108.73359,29.671489],[108.710905,29.679168],[108.718221,29.691924],[108.710365,29.699196],[108.691166,29.68969],[108.684783,29.693509],[108.69313,29.704476],[108.681051,29.721413],[108.686649,29.740051],[108.677565,29.748537],[108.67732,29.761447],[108.681788,29.770459],[108.678449,29.777887],[108.680658,29.800167],[108.670986,29.811813],[108.656942,29.816682],[108.670347,29.819076],[108.666124,29.842726],[108.657728,29.84808],[108.662491,29.852582],[108.633226,29.855908],[108.632686,29.86487],[108.622915,29.867304],[108.60843,29.862964],[108.601409,29.8656],[108.587955,29.85388],[108.588151,29.84808],[108.577349,29.844673],[108.579902,29.831206],[108.56581,29.820861],[108.557463,29.819035],[108.534434,29.787506],[108.522503,29.763761],[108.540081,29.756779],[108.548526,29.749512],[108.547004,29.742569],[108.520244,29.730347],[108.51666,29.735666],[108.504188,29.729413],[108.515285,29.71861],[108.506446,29.708172],[108.526676,29.696759],[108.52373,29.683109],[108.503549,29.67669],[108.504139,29.666288],[108.489997,29.642515],[108.487199,29.624102],[108.499965,29.622069],[108.507036,29.611093],[108.512633,29.614467],[108.516709,29.602148],[108.534974,29.588851],[108.534532,29.572177],[108.548379,29.557575],[108.547643,29.547406],[108.536251,29.540001],[108.515334,29.543948],[108.506054,29.536868],[108.494711,29.515099],[108.501242,29.49996],[108.50954,29.50285],[108.539688,29.491697],[108.561686,29.491657],[108.585549,29.477328],[108.581228,29.464911],[108.59257,29.442963],[108.576367,29.41706],[108.555843,29.412701],[108.552995,29.390539],[108.547201,29.381697],[108.550196,29.371754],[108.561538,29.352598],[108.549705,29.328303],[108.549459,29.315378],[108.560409,29.306081],[108.573568,29.302411],[108.584272,29.285812],[108.583192,29.278063],[108.571948,29.265703],[108.575778,29.252362],[108.568314,29.236245],[108.569247,29.224941],[108.555597,29.218738],[108.548919,29.205064],[108.556775,29.184857],[108.574403,29.164115],[108.570671,29.152313],[108.55869,29.13953]]]]}},{"type":"Feature","properties":{"adcode":500115,"name":"长寿区","center":[107.074854,29.833671],"centroid":[107.140018,29.954649],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":14,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.972222,29.763924],[106.988131,29.769322],[106.993483,29.75824],[106.988818,29.748781],[106.990144,29.738062],[106.998638,29.732539],[107.002223,29.714468],[107.009195,29.712762],[107.027166,29.717189],[107.041406,29.734407],[107.070032,29.751217],[107.070277,29.758524],[107.086726,29.761813],[107.102635,29.754546],[107.111572,29.76299],[107.153111,29.784827],[107.186992,29.79473],[107.198039,29.809622],[107.212279,29.816276],[107.206583,29.824958],[107.210806,29.840292],[107.229317,29.84374],[107.240512,29.841347],[107.265161,29.847472],[107.270857,29.851447],[107.272379,29.837291],[107.29801,29.839603],[107.299827,29.847472],[107.313084,29.845809],[107.323445,29.852947],[107.337193,29.873062],[107.335818,29.884415],[107.342005,29.892929],[107.360762,29.897227],[107.369354,29.906794],[107.379666,29.899132],[107.377505,29.910523],[107.387129,29.921993],[107.383545,29.926614],[107.415755,29.970577],[107.421156,29.967944],[107.448064,29.999092],[107.453171,30.001441],[107.451501,30.008203],[107.46029,30.01533],[107.436329,30.033833],[107.374068,29.973372],[107.362824,29.979853],[107.347995,29.980501],[107.335573,29.97398],[107.325556,29.973007],[107.307094,29.992328],[107.29418,29.997917],[107.294818,30.002696],[107.31112,30.008203],[107.304688,30.0161],[107.31166,30.02023],[107.307879,30.035493],[107.294867,30.044359],[107.27724,30.043144],[107.279204,30.04873],[107.266045,30.055045],[107.26521,30.062006],[107.247534,30.07528],[107.259072,30.075887],[107.269089,30.081148],[107.271741,30.09446],[107.28328,30.091021],[107.29089,30.097939],[107.286766,30.107892],[107.295555,30.122454],[107.291381,30.136327],[107.274098,30.135841],[107.269482,30.145992],[107.288484,30.171303],[107.277044,30.181086],[107.256568,30.205903],[107.228335,30.223805],[107.221068,30.213743],[107.187335,30.181248],[107.16848,30.160306],[107.136466,30.134426],[107.13131,30.121524],[107.106563,30.113838],[107.111032,30.104251],[107.103077,30.090131],[107.093797,30.095391],[107.080147,30.094177],[107.073911,30.080986],[107.084517,30.063868],[107.075286,30.051118],[107.058395,30.043063],[107.0554,30.040553],[107.054221,30.040837],[107.053779,30.043751],[107.050588,30.053426],[107.042486,30.055085],[107.037821,30.047273],[107.042682,30.035007],[107.020636,30.036829],[107.014351,30.051604],[107.005316,30.052495],[106.998295,30.059456],[106.985332,30.084061],[106.966477,30.079894],[106.954889,30.066094],[106.956755,30.06059],[106.948604,30.040149],[106.941877,30.042739],[106.914871,30.033955],[106.913594,30.025574],[106.88433,30.0344],[106.861449,30.028165],[106.856195,30.013872],[106.866506,30.012293],[106.864444,29.984916],[106.868323,29.978962],[106.877947,29.98601],[106.88708,29.981392],[106.889928,29.987954],[106.896654,29.978597],[106.909077,29.971873],[106.931467,29.975397],[106.935248,29.964054],[106.942515,29.964824],[106.946934,29.953683],[106.965691,29.951981],[106.970012,29.938326],[106.98489,29.934314],[106.974529,29.916603],[106.962058,29.901929],[106.953416,29.88109],[106.945461,29.875454],[106.944528,29.855908],[106.937114,29.851893],[106.936574,29.842483],[106.942859,29.839765],[106.944234,29.812949],[106.939913,29.804347],[106.952237,29.792214],[106.945167,29.784178],[106.952532,29.784259],[106.958522,29.769485],[106.96466,29.774518],[106.972222,29.763924]]],[[[107.058395,30.043063],[107.053779,30.043751],[107.054221,30.040837],[107.0554,30.040553],[107.058395,30.043063]]]]}},{"type":"Feature","properties":{"adcode":500116,"name":"江津区","center":[106.253156,29.283387],"centroid":[106.263211,29.029608],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":15,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.830514,28.944271],[105.844262,28.93093],[105.852708,28.927369],[105.875049,28.933958],[105.888061,28.926837],[105.889338,28.909523],[105.909567,28.900189],[105.915607,28.907476],[105.909764,28.920452],[105.920321,28.930643],[105.934511,28.933876],[105.95808,28.952496],[105.961566,28.960107],[105.971877,28.965957],[105.9761,28.959166],[105.988424,28.964198],[105.985969,28.970131],[105.974627,28.973567],[105.984103,28.979008],[106.001535,28.973608],[106.017443,28.952905],[106.02417,28.949714],[106.036102,28.955729],[106.043811,28.954133],[106.047346,28.943575],[106.04003,28.940465],[106.042338,28.929538],[106.03949,28.918651],[106.042534,28.910587],[106.051913,28.906862],[106.062813,28.918201],[106.070522,28.919797],[106.085645,28.9103],[106.087708,28.904201],[106.10126,28.898961],[106.134354,28.90506],[106.149183,28.901949],[106.162538,28.908908],[106.173684,28.92082],[106.191606,28.908663],[106.206926,28.904528],[106.215371,28.891714],[106.225585,28.890568],[106.228089,28.881764],[106.242181,28.86821],[106.253229,28.865753],[106.255586,28.857398],[106.265062,28.846708],[106.260201,28.833641],[106.246698,28.826472],[106.254358,28.819179],[106.24439,28.814631],[106.252394,28.785823],[106.267665,28.779348],[106.273213,28.739788],[106.287698,28.732366],[106.303509,28.709113],[106.307191,28.687907],[106.30616,28.675763],[106.321087,28.665465],[106.311168,28.660048],[106.304049,28.649872],[106.310776,28.639981],[106.329778,28.63403],[106.324524,28.616749],[106.332184,28.603366],[106.340187,28.59889],[106.34662,28.58378],[106.345196,28.573021],[106.339304,28.566368],[106.344803,28.562014],[106.332037,28.553224],[106.338371,28.546858],[106.34225,28.532603],[106.349811,28.540121],[106.363903,28.526892],[106.374313,28.525618],[106.378487,28.533835],[106.373576,28.537656],[106.389829,28.553266],[106.385704,28.560823],[106.399109,28.571173],[106.412956,28.563123],[106.423218,28.562671],[106.43402,28.556675],[106.439471,28.559427],[106.454054,28.549774],[106.453072,28.544721],[106.466918,28.541846],[106.471632,28.532603],[106.483858,28.530589],[106.493384,28.538313],[106.501191,28.534533],[106.504726,28.54468],[106.488867,28.557496],[106.478899,28.574992],[106.466967,28.586408],[106.473842,28.598973],[106.498785,28.585874],[106.508802,28.564889],[106.524711,28.577826],[106.513319,28.577046],[106.494464,28.599999],[106.494955,28.615148],[106.501093,28.617898],[106.501338,28.628735],[106.506641,28.635343],[106.502762,28.661321],[106.520144,28.6621],[106.529719,28.673137],[106.515774,28.688194],[106.510324,28.715183],[106.499325,28.717398],[106.493826,28.73946],[106.462057,28.76123],[106.454201,28.776068],[106.451648,28.79279],[106.462794,28.797216],[106.46029,28.804961],[106.451402,28.808116],[106.453514,28.816967],[106.46844,28.826472],[106.461861,28.831019],[106.455723,28.836427],[106.446443,28.863337],[106.43623,28.870217],[106.415264,28.876236],[106.411826,28.891182],[106.410992,28.922294],[106.402792,28.940956],[106.408733,28.95401],[106.399846,28.962521],[106.405738,28.979622],[106.397587,28.993693],[106.391842,29.022443],[106.385803,29.029476],[106.398765,29.027023],[106.404314,29.035364],[106.419732,29.047834],[106.427834,29.047588],[106.442515,29.039739],[106.44281,29.050573],[106.463874,29.042069],[106.444135,29.038103],[106.454447,29.0177],[106.475413,29.012179],[106.478113,29.024774],[106.489849,29.042969],[106.484497,29.065738],[106.49034,29.083476],[106.501044,29.0771],[106.498,29.071624],[106.504825,29.063285],[106.514547,29.059852],[106.524956,29.044195],[106.526331,29.036141],[106.544646,29.036386],[106.551815,29.024692],[106.549703,29.00535],[106.557118,29.006004],[106.562666,29.016555],[106.57833,29.022443],[106.585204,29.008294],[106.592471,29.005963],[106.608773,29.014756],[106.59414,29.019131],[106.589525,29.030008],[106.585695,29.053148],[106.589672,29.056663],[106.583436,29.071256],[106.584418,29.079634],[106.578084,29.09312],[106.581177,29.110076],[106.574205,29.116777],[106.574451,29.128215],[106.560997,29.133239],[106.550047,29.145493],[106.549998,29.153498],[106.562372,29.161379],[106.545972,29.183265],[106.541896,29.192369],[106.547788,29.212534],[106.539343,29.213717],[106.535906,29.221962],[106.521225,29.224614],[106.515774,29.232042],[106.519653,29.251791],[106.514056,29.254688],[106.511208,29.268069],[106.505021,29.268966],[106.508655,29.278674],[106.486363,29.294336],[106.473645,29.335722],[106.474431,29.35696],[106.478163,29.36022],[106.460241,29.360872],[106.454496,29.35427],[106.440404,29.350153],[106.435542,29.352965],[106.411876,29.342245],[106.400877,29.340777],[106.395525,29.339351],[106.385999,29.312401],[106.393217,29.294948],[106.384035,29.283039],[106.3559,29.27688],[106.339844,29.26456],[106.311905,29.254769],[106.298697,29.256483],[106.27994,29.286913],[106.289171,29.320679],[106.276945,29.322269],[106.274539,29.32871],[106.261232,29.335519],[106.267468,29.350234],[106.277829,29.352924],[106.275668,29.363236],[106.282248,29.368167],[106.284359,29.38516],[106.294425,29.384549],[106.295554,29.378763],[106.30891,29.379985],[106.314409,29.388827],[106.322314,29.38732],[106.331005,29.39555],[106.329041,29.413679],[106.317257,29.415227],[106.323002,29.420481],[106.320596,29.427976],[106.307339,29.426835],[106.30724,29.434248],[106.298549,29.440764],[106.285636,29.441986],[106.278565,29.449031],[106.262705,29.451596],[106.248613,29.429238],[106.245569,29.40989],[106.223621,29.353984],[106.206042,29.334826],[106.195731,29.327447],[106.17663,29.308446],[106.156106,29.301962],[106.152276,29.293684],[106.136416,29.294826],[106.120065,29.278878],[106.113289,29.284018],[106.110442,29.294907],[106.096104,29.291359],[106.084663,29.300331],[106.086382,29.30706],[106.072928,29.321005],[106.043418,29.32549],[106.038164,29.313339],[106.036789,29.284915],[106.031486,29.261868],[106.033156,29.253953],[106.016363,29.242529],[106.004677,29.215513],[105.996673,29.213595],[105.982287,29.193512],[105.96736,29.177671],[105.965347,29.15603],[105.954299,29.151251],[105.958276,29.147943],[105.942858,29.128338],[105.937899,29.127561],[105.93186,29.115102],[105.918848,29.109464],[105.917473,29.098881],[105.909518,29.093855],[105.913888,29.08086],[105.922285,29.078858],[105.919928,29.056132],[105.897145,29.049632],[105.885459,29.037204],[105.882905,29.029722],[105.864492,29.026001],[105.857323,29.012997],[105.858011,28.98678],[105.851677,28.976185],[105.826782,28.964403],[105.824769,28.953396],[105.830514,28.944271]]]]}},{"type":"Feature","properties":{"adcode":500117,"name":"合川区","center":[106.265554,29.990993],"centroid":[106.311538,30.112474],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":16,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.648447,30.085559],[106.656352,30.086165],[106.668382,30.101742],[106.673881,30.12213],[106.67501,30.147165],[106.677613,30.157395],[106.665779,30.158972],[106.662195,30.170171],[106.653995,30.169726],[106.649527,30.176922],[106.639265,30.180156],[106.646973,30.189494],[106.63185,30.186543],[106.633618,30.199679],[106.626989,30.19778],[106.624436,30.211318],[106.632734,30.216208],[106.619133,30.229664],[106.611473,30.228047],[106.609804,30.23532],[106.621686,30.236492],[106.633029,30.24643],[106.642653,30.249863],[106.634845,30.265697],[106.627578,30.265899],[106.623061,30.281609],[106.611669,30.292431],[106.590507,30.294248],[106.586382,30.302969],[106.571603,30.30624],[106.56026,30.315162],[106.547052,30.310358],[106.544842,30.296752],[106.521372,30.300305],[106.509391,30.289363],[106.499865,30.288918],[106.498,30.296025],[106.481845,30.298407],[106.476149,30.306966],[106.472123,30.300022],[106.458964,30.302283],[106.44826,30.299618],[106.4515,30.308137],[106.441042,30.308945],[106.436475,30.303575],[106.444774,30.295702],[106.441877,30.289484],[106.43569,30.295177],[106.428619,30.291543],[106.434708,30.277046],[106.41821,30.278783],[106.407997,30.276117],[106.422138,30.262466],[106.429405,30.261174],[106.427834,30.253782],[106.416786,30.253418],[106.410795,30.24336],[106.401319,30.242673],[106.397391,30.249662],[106.383102,30.254711],[106.390222,30.243683],[106.372545,30.248167],[106.359632,30.241218],[106.34932,30.245258],[106.343968,30.237219],[106.336799,30.237906],[106.335032,30.226391],[106.318681,30.229138],[106.309794,30.2373],[106.300563,30.238552],[106.305816,30.225704],[106.292706,30.220209],[106.296684,30.205135],[106.28431,30.201983],[106.278467,30.195718],[106.279793,30.207924],[106.26192,30.213784],[106.27174,30.204004],[106.264424,30.193536],[106.254358,30.198426],[106.245913,30.196527],[106.249742,30.189736],[106.241788,30.177731],[106.240315,30.18533],[106.232704,30.186139],[106.240315,30.200164],[106.232213,30.212531],[106.212524,30.203115],[106.204471,30.205701],[106.201819,30.213137],[106.192539,30.2154],[106.201083,30.228411],[106.180362,30.232855],[106.178251,30.248611],[106.170542,30.250591],[106.178447,30.256892],[106.179822,30.278661],[106.169069,30.3041],[106.156499,30.313668],[106.149428,30.309469],[106.137153,30.315686],[106.132685,30.323679],[106.124092,30.324769],[106.124828,30.317907],[106.134403,30.308622],[106.131801,30.301799],[106.122324,30.306805],[106.122864,30.313708],[106.114812,30.317341],[106.106072,30.310761],[106.098019,30.323558],[106.088346,30.323154],[106.091047,30.336837],[106.088591,30.345958],[106.079311,30.344344],[106.073517,30.334133],[106.070768,30.341196],[106.061046,30.342003],[106.033745,30.361817],[106.030897,30.374244],[106.01381,30.372347],[106.002222,30.376906],[105.992009,30.36916],[105.97826,30.373477],[105.989063,30.352697],[105.980372,30.342084],[105.981305,30.325051],[105.988277,30.320006],[105.975216,30.30632],[105.967507,30.308379],[105.974872,30.289322],[105.983367,30.289766],[105.98101,30.280156],[105.992107,30.277369],[105.998588,30.280681],[106.009489,30.275754],[106.013466,30.268282],[106.006248,30.260002],[105.995397,30.256892],[105.985724,30.248692],[105.981059,30.233583],[105.995102,30.231845],[106.004039,30.224775],[106.006052,30.213622],[106.019948,30.201417],[106.00669,30.187958],[105.991174,30.177246],[105.973743,30.188079],[105.974381,30.175224],[105.987639,30.164026],[105.976247,30.153109],[105.978801,30.143606],[105.998343,30.129289],[105.994513,30.120108],[105.999472,30.113757],[105.985184,30.101742],[105.989357,30.093125],[105.980814,30.083131],[105.98592,30.070262],[105.981207,30.061359],[105.981501,30.052414],[105.991076,30.033671],[105.998785,30.026627],[106.020439,30.028084],[106.047788,30.01363],[106.046511,30.007474],[106.027362,30.001522],[106.028,29.991883],[106.036495,29.997674],[106.049163,29.997026],[106.075727,30.001643],[106.098215,30.002331],[106.123061,29.998687],[106.118052,29.986982],[106.123306,29.980056],[106.119378,29.966607],[106.112946,29.960813],[106.1127,29.9519],[106.124141,29.936461],[106.134845,29.938771],[106.129198,29.929491],[106.130426,29.921993],[106.146924,29.92787],[106.160574,29.919359],[106.164944,29.921507],[106.165877,29.922399],[106.197744,29.931153],[106.200346,29.936826],[106.208645,29.929126],[106.219005,29.929451],[106.221018,29.920413],[106.239873,29.919116],[106.2384,29.912549],[106.242377,29.910239],[106.244341,29.908253],[106.244783,29.908374],[106.245127,29.908253],[106.245078,29.907685],[106.258139,29.89747],[106.266977,29.895686],[106.27012,29.887334],[106.281658,29.894673],[106.276699,29.873021],[106.265995,29.873913],[106.271593,29.86779],[106.263393,29.852258],[106.26791,29.84443],[106.314409,29.884861],[106.339598,29.901767],[106.383053,29.92787],[106.390909,29.921304],[106.390958,29.906672],[106.396507,29.898118],[106.409077,29.889443],[106.423611,29.884334],[106.429601,29.892362],[106.423414,29.904564],[106.433235,29.901889],[106.443841,29.906834],[106.455281,29.926776],[106.46191,29.92402],[106.44281,29.883564],[106.452777,29.878212],[106.458522,29.887456],[106.462892,29.88478],[106.452581,29.869128],[106.465347,29.870832],[106.466967,29.882996],[106.477131,29.891875],[106.479046,29.908172],[106.488916,29.908415],[106.501338,29.922115],[106.505659,29.931234],[106.519506,29.927546],[106.526773,29.945822],[106.544941,29.935246],[106.55697,29.961259],[106.568706,29.991154],[106.572192,30.012698],[106.582209,30.022214],[106.596546,30.030432],[106.598265,30.039582],[106.591587,30.047071],[106.629101,30.079448],[106.648447,30.085559]]],[[[106.244783,29.908374],[106.244341,29.908253],[106.245078,29.907685],[106.245127,29.908253],[106.244783,29.908374]]]]}},{"type":"Feature","properties":{"adcode":500118,"name":"永川区","center":[105.894714,29.348748],"centroid":[105.872859,29.290183],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":17,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.66514,29.276594],[105.678054,29.273494],[105.689838,29.29193],[105.70506,29.29923],[105.715911,29.29087],[105.69519,29.287362],[105.693963,29.267579],[105.70889,29.238],[105.705845,29.223757],[105.711983,29.218901],[105.70452,29.202411],[105.705796,29.174732],[105.719594,29.172159],[105.729463,29.152558],[105.728825,29.134424],[105.733195,29.130993],[105.742868,29.137569],[105.752099,29.129767],[105.735208,29.122414],[105.729267,29.107748],[105.729905,29.098759],[105.740855,29.088625],[105.745028,29.075465],[105.757795,29.069008],[105.741788,29.039494],[105.747631,29.037899],[105.754063,29.02412],[105.76624,29.013365],[105.76187,28.992998],[105.779105,28.979949],[105.788778,28.977617],[105.801348,28.958184],[105.80886,28.956547],[105.803852,28.947586],[105.796339,28.949632],[105.792706,28.943453],[105.797567,28.935923],[105.810579,28.940874],[105.830514,28.944271],[105.824769,28.953396],[105.826782,28.964403],[105.851677,28.976185],[105.858011,28.98678],[105.857323,29.012997],[105.864492,29.026001],[105.882905,29.029722],[105.885459,29.037204],[105.897145,29.049632],[105.919928,29.056132],[105.922285,29.078858],[105.913888,29.08086],[105.909518,29.093855],[105.917473,29.098881],[105.918848,29.109464],[105.93186,29.115102],[105.937899,29.127561],[105.942858,29.128338],[105.958276,29.147943],[105.954299,29.151251],[105.965347,29.15603],[105.96736,29.177671],[105.982287,29.193512],[105.996673,29.213595],[106.004677,29.215513],[106.016363,29.242529],[106.033156,29.253953],[106.031486,29.261868],[106.036789,29.284915],[106.038164,29.313339],[106.043418,29.32549],[106.049998,29.341878],[106.048377,29.353251],[106.065612,29.375788],[106.067822,29.390946],[106.062666,29.396161],[106.063648,29.418974],[106.073272,29.448868],[106.071799,29.461491],[106.076218,29.470366],[106.078035,29.491168],[106.076709,29.505536],[106.085989,29.530562],[106.089132,29.546388],[106.078526,29.545209],[106.071553,29.536014],[106.038803,29.529179],[106.018769,29.527388],[106.010127,29.520512],[105.995446,29.525801],[105.995446,29.541303],[105.988523,29.542483],[105.981992,29.533369],[105.975363,29.54228],[105.967802,29.53695],[105.956116,29.540734],[105.951156,29.548463],[105.935984,29.549968],[105.938341,29.543744],[105.921303,29.537438],[105.910746,29.539065],[105.903626,29.552531],[105.906572,29.562741],[105.890467,29.570429],[105.873969,29.552572],[105.876817,29.541791],[105.868617,29.537316],[105.855016,29.540042],[105.834933,29.527917],[105.825899,29.51396],[105.817895,29.490395],[105.802674,29.437139],[105.770561,29.408302],[105.773507,29.394857],[105.767762,29.379578],[105.747582,29.372487],[105.735159,29.38459],[105.728678,29.384875],[105.716893,29.372813],[105.709086,29.375625],[105.709283,29.368616],[105.696172,29.364622],[105.691655,29.357652],[105.675501,29.355574],[105.663078,29.346647],[105.653209,29.349052],[105.649575,29.340247],[105.653405,29.33397],[105.645352,29.319252],[105.635974,29.320638],[105.637251,29.298251],[105.645794,29.286506],[105.655664,29.284426],[105.66514,29.276594]]]]}},{"type":"Feature","properties":{"adcode":500119,"name":"南川区","center":[107.098153,29.156646],"centroid":[107.171436,29.13547],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":18,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.057462,28.894785],[107.066546,28.895358],[107.07234,28.879308],[107.063354,28.877055],[107.059819,28.868456],[107.072683,28.866613],[107.08707,28.872264],[107.096694,28.890076],[107.141965,28.887742],[107.146827,28.876236],[107.155861,28.882993],[107.166565,28.880659],[107.178644,28.883361],[107.184095,28.879922],[107.193571,28.888766],[107.198432,28.878407],[107.194013,28.876605],[107.206534,28.868005],[107.19691,28.847405],[107.195142,28.838065],[107.226371,28.836795],[107.216354,28.828151],[107.210609,28.814795],[107.213408,28.795003],[107.21876,28.788733],[107.219202,28.772707],[107.24665,28.761845],[107.253573,28.766805],[107.252395,28.780577],[107.261429,28.792708],[107.277142,28.799183],[107.304639,28.806764],[107.325409,28.809591],[107.345147,28.829585],[107.331988,28.841178],[107.359878,28.849985],[107.367243,28.844988],[107.383447,28.848551],[107.395378,28.86088],[107.391941,28.868497],[107.406131,28.89155],[107.415657,28.88979],[107.41443,28.913248],[107.422875,28.928269],[107.433579,28.933754],[107.441043,28.94378],[107.438784,28.955278],[107.421549,28.954542],[107.412957,28.960148],[107.405542,28.972258],[107.404413,28.981872],[107.396949,28.993325],[107.370435,28.993897],[107.364542,29.010543],[107.378536,29.021912],[107.381041,29.029926],[107.395182,29.039657],[107.390714,29.059075],[107.379862,29.05744],[107.369747,29.091608],[107.374412,29.097574],[107.392285,29.091281],[107.412957,29.095735],[107.427589,29.127357],[107.4215,29.135813],[107.408439,29.138345],[107.408095,29.150271],[107.412318,29.161379],[107.401516,29.175957],[107.401565,29.184694],[107.395378,29.205881],[107.401909,29.218248],[107.399355,29.235714],[107.401025,29.248853],[107.416541,29.264234],[107.421942,29.274636],[107.404069,29.28259],[107.388553,29.281081],[107.391597,29.289279],[107.379764,29.299516],[107.373332,29.298578],[107.38271,29.308609],[107.392039,29.326754],[107.367047,29.341756],[107.350156,29.346892],[107.347308,29.342571],[107.323395,29.339147],[107.318387,29.347789],[107.309893,29.345098],[107.298599,29.352069],[107.293444,29.349704],[107.272428,29.358386],[107.272428,29.37371],[107.263393,29.383571],[107.256176,29.38463],[107.241691,29.379415],[107.239285,29.364744],[107.225487,29.367801],[107.20732,29.366293],[107.207221,29.385934],[107.214439,29.39775],[107.199561,29.399135],[107.203244,29.411316],[107.185911,29.412945],[107.173096,29.408342],[107.167056,29.420603],[107.16082,29.424432],[107.155272,29.417304],[107.148741,29.419259],[107.134846,29.411438],[107.142947,29.408179],[107.146827,29.396365],[107.134158,29.394613],[107.125124,29.387564],[107.110442,29.391598],[107.109166,29.383856],[107.114812,29.366741],[107.10018,29.361606],[107.083387,29.359813],[107.07229,29.362829],[107.043321,29.378437],[107.052552,29.388705],[107.051619,29.394205],[107.035121,29.391231],[107.026381,29.402802],[107.034581,29.406713],[107.029228,29.410827],[107.025055,29.441782],[107.034482,29.453103],[107.034581,29.467435],[107.015873,29.473338],[107.019997,29.487057],[107.012927,29.487708],[107.00453,29.471058],[106.993925,29.482579],[106.98052,29.488767],[106.964415,29.488685],[106.945952,29.497029],[106.935297,29.464463],[106.933039,29.448542],[106.936574,29.439339],[106.932253,29.399746],[106.922531,29.403046],[106.919978,29.329893],[106.922433,29.310322],[106.920616,29.302411],[106.92312,29.280673],[106.933039,29.279653],[106.936132,29.256931],[106.954692,29.252199],[106.95754,29.228981],[106.968392,29.215228],[106.961812,29.202738],[106.95263,29.197104],[106.955527,29.190695],[106.945069,29.183142],[106.919045,29.180366],[106.911385,29.197472],[106.895574,29.190491],[106.896409,29.180039],[106.907751,29.179672],[106.909175,29.160562],[106.899355,29.155621],[106.891744,29.14149],[106.891695,29.131769],[106.905542,29.11596],[106.911483,29.114775],[106.921844,29.100475],[106.910256,29.068844],[106.906131,29.051758],[106.915362,29.054538],[106.920567,29.045749],[106.926361,29.047793],[106.938685,29.041906],[106.950421,29.071787],[106.954545,29.059239],[106.96358,29.058217],[106.975266,29.050532],[106.977034,29.056009],[106.988671,29.043459],[106.981158,29.039861],[106.979832,29.031766],[106.990045,29.021094],[107.003892,29.016023],[107.01715,28.998724],[107.024564,28.995983],[107.02967,28.985717],[107.022256,28.974058],[107.013614,28.969599],[107.015971,28.952087],[107.02913,28.941284],[107.043124,28.945785],[107.051275,28.942143],[107.057315,28.932771],[107.053288,28.919183],[107.04337,28.919879],[107.057462,28.894785]]]]}},{"type":"Feature","properties":{"adcode":500120,"name":"璧山区","center":[106.231126,29.593581],"centroid":[106.191948,29.561371],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":19,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.253425,29.532841],[106.251707,29.559406],[106.260005,29.592633],[106.265602,29.605889],[106.274882,29.612231],[106.282493,29.626744],[106.273017,29.631215],[106.279105,29.637841],[106.287649,29.635849],[106.2794,29.652553],[106.287698,29.663484],[106.284506,29.675268],[106.278712,29.67669],[106.280431,29.703298],[106.285636,29.697896],[106.297076,29.706467],[106.305669,29.736641],[106.31598,29.764898],[106.324279,29.774843],[106.334197,29.771311],[106.344214,29.779307],[106.372889,29.814207],[106.351284,29.812422],[106.34225,29.816804],[106.345883,29.836114],[106.337585,29.834532],[106.342446,29.842523],[106.330956,29.848323],[106.336407,29.860247],[106.329385,29.859639],[106.325653,29.872737],[106.314409,29.884861],[106.26791,29.84443],[106.233048,29.805686],[106.211689,29.791564],[106.194552,29.785395],[106.180559,29.771555],[106.160771,29.759702],[106.169069,29.752557],[106.163422,29.721088],[106.156155,29.70935],[106.169314,29.689893],[106.163226,29.681321],[106.165828,29.675755],[106.156695,29.667304],[106.144813,29.662956],[106.122717,29.638816],[106.113928,29.615687],[106.117561,29.610076],[106.112307,29.601457],[106.104844,29.576041],[106.096251,29.559691],[106.087217,29.552287],[106.089132,29.546388],[106.085989,29.530562],[106.076709,29.505536],[106.078035,29.491168],[106.076218,29.470366],[106.071799,29.461491],[106.073272,29.448868],[106.063648,29.418974],[106.062666,29.396161],[106.067822,29.390946],[106.065612,29.375788],[106.048377,29.353251],[106.049998,29.341878],[106.043418,29.32549],[106.072928,29.321005],[106.086382,29.30706],[106.084663,29.300331],[106.096104,29.291359],[106.110442,29.294907],[106.113289,29.284018],[106.120065,29.278878],[106.136416,29.294826],[106.152276,29.293684],[106.156106,29.301962],[106.17663,29.308446],[106.195731,29.327447],[106.206042,29.334826],[106.223621,29.353984],[106.245569,29.40989],[106.248613,29.429238],[106.262705,29.451596],[106.26025,29.466051],[106.267026,29.494994],[106.260594,29.494262],[106.261969,29.516524],[106.253278,29.519698],[106.253425,29.532841]]]]}},{"type":"Feature","properties":{"adcode":500151,"name":"铜梁区","center":[106.054948,29.839944],"centroid":[106.0332,29.81109],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":20,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.981207,30.061359],[105.973105,30.072771],[105.95862,30.076778],[105.959209,30.071234],[105.949438,30.060832],[105.939274,30.063342],[105.943006,30.074511],[105.934511,30.080703],[105.933333,30.088027],[105.917571,30.093934],[105.907554,30.091951],[105.897783,30.079003],[105.904608,30.073662],[105.895475,30.065123],[105.901711,30.057392],[105.900336,30.045775],[105.891498,30.044156],[105.883691,30.049256],[105.872103,30.045411],[105.869648,30.032983],[105.875491,30.027356],[105.866702,30.009864],[105.870335,30.00549],[105.886784,30.006462],[105.904019,29.995649],[105.915656,29.993179],[105.907849,29.98038],[105.91104,29.961624],[105.924347,29.963123],[105.925034,29.956478],[105.934953,29.954493],[105.941385,29.935691],[105.931712,29.927546],[105.95042,29.908172],[105.945657,29.893051],[105.933185,29.88778],[105.926606,29.877928],[105.930681,29.872373],[105.923169,29.865763],[105.910058,29.868561],[105.90888,29.879955],[105.88266,29.890659],[105.875638,29.897551],[105.870434,29.89078],[105.860319,29.896902],[105.846177,29.895402],[105.837241,29.878293],[105.824769,29.881861],[105.818926,29.855583],[105.809253,29.844714],[105.807387,29.833031],[105.790987,29.827879],[105.778368,29.811367],[105.789269,29.794121],[105.808418,29.783569],[105.806945,29.771636],[105.820939,29.773381],[105.822461,29.762827],[105.83076,29.757997],[105.868911,29.756982],[105.878584,29.769525],[105.888012,29.77468],[105.893904,29.785882],[105.888208,29.790347],[105.893806,29.802967],[105.906523,29.795582],[105.904706,29.785598],[105.922334,29.788236],[105.944233,29.775979],[105.957638,29.781662],[105.970601,29.779876],[105.976542,29.784746],[105.991223,29.781174],[105.998588,29.768916],[105.997508,29.756819],[106.001289,29.748375],[106.010913,29.747279],[106.014448,29.752841],[106.028344,29.749552],[106.025987,29.734854],[106.036838,29.726692],[106.031732,29.722184],[106.005659,29.682581],[105.997361,29.6645],[105.982532,29.671936],[105.969815,29.646294],[105.953513,29.630199],[105.946099,29.626988],[105.938243,29.613166],[105.924347,29.595805],[105.890467,29.570429],[105.906572,29.562741],[105.903626,29.552531],[105.910746,29.539065],[105.921303,29.537438],[105.938341,29.543744],[105.935984,29.549968],[105.951156,29.548463],[105.956116,29.540734],[105.967802,29.53695],[105.975363,29.54228],[105.981992,29.533369],[105.988523,29.542483],[105.995446,29.541303],[105.995446,29.525801],[106.010127,29.520512],[106.018769,29.527388],[106.038803,29.529179],[106.071553,29.536014],[106.078526,29.545209],[106.089132,29.546388],[106.087217,29.552287],[106.096251,29.559691],[106.104844,29.576041],[106.112307,29.601457],[106.117561,29.610076],[106.113928,29.615687],[106.122717,29.638816],[106.144813,29.662956],[106.156695,29.667304],[106.165828,29.675755],[106.163226,29.681321],[106.169314,29.689893],[106.156155,29.70935],[106.163422,29.721088],[106.169069,29.752557],[106.160771,29.759702],[106.180559,29.771555],[106.194552,29.785395],[106.211689,29.791564],[106.233048,29.805686],[106.26791,29.84443],[106.263393,29.852258],[106.271593,29.86779],[106.265995,29.873913],[106.276699,29.873021],[106.281658,29.894673],[106.27012,29.887334],[106.266977,29.895686],[106.258139,29.89747],[106.245078,29.907685],[106.244341,29.908253],[106.242377,29.910239],[106.24115,29.90955],[106.240757,29.909428],[106.240119,29.909347],[106.239971,29.909631],[106.240119,29.910928],[106.239873,29.91109],[106.239529,29.911131],[106.23894,29.911212],[106.2384,29.91182],[106.238302,29.912144],[106.2384,29.912549],[106.239873,29.919116],[106.221018,29.920413],[106.219005,29.929451],[106.208645,29.929126],[106.200346,29.936826],[106.197744,29.931153],[106.165877,29.922399],[106.166123,29.921142],[106.166074,29.920777],[106.165926,29.920696],[106.165533,29.92094],[106.165435,29.921102],[106.165141,29.921426],[106.164944,29.921507],[106.160574,29.919359],[106.146924,29.92787],[106.130426,29.921993],[106.129198,29.929491],[106.134845,29.938771],[106.124141,29.936461],[106.1127,29.9519],[106.112946,29.960813],[106.119378,29.966607],[106.123306,29.980056],[106.118052,29.986982],[106.123061,29.998687],[106.098215,30.002331],[106.075727,30.001643],[106.049163,29.997026],[106.036495,29.997674],[106.028,29.991883],[106.027362,30.001522],[106.046511,30.007474],[106.047788,30.01363],[106.020439,30.028084],[105.998785,30.026627],[105.991076,30.033671],[105.981501,30.052414],[105.981207,30.061359]]],[[[106.2384,29.912549],[106.238302,29.912144],[106.2384,29.91182],[106.23894,29.911212],[106.239529,29.911131],[106.239873,29.91109],[106.240119,29.910928],[106.239971,29.909631],[106.240119,29.909347],[106.240757,29.909428],[106.24115,29.90955],[106.242377,29.910239],[106.2384,29.912549]]],[[[106.165877,29.922399],[106.164944,29.921507],[106.165141,29.921426],[106.165435,29.921102],[106.165533,29.92094],[106.165926,29.920696],[106.166074,29.920777],[106.166123,29.921142],[106.165877,29.922399]]]]}},{"type":"Feature","properties":{"adcode":500152,"name":"潼南区","center":[105.841818,30.189554],"centroid":[105.814632,30.143351],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":21,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.733146,29.860693],[105.738105,29.856516],[105.738252,29.845646],[105.725339,29.832747],[105.735846,29.819319],[105.72308,29.809825],[105.714684,29.79684],[105.713898,29.789129],[105.721411,29.78779],[105.746354,29.801466],[105.763883,29.793512],[105.77719,29.801831],[105.778368,29.811367],[105.790987,29.827879],[105.807387,29.833031],[105.809253,29.844714],[105.818926,29.855583],[105.824769,29.881861],[105.837241,29.878293],[105.846177,29.895402],[105.860319,29.896902],[105.870434,29.89078],[105.875638,29.897551],[105.88266,29.890659],[105.90888,29.879955],[105.910058,29.868561],[105.923169,29.865763],[105.930681,29.872373],[105.926606,29.877928],[105.933185,29.88778],[105.945657,29.893051],[105.95042,29.908172],[105.931712,29.927546],[105.941385,29.935691],[105.934953,29.954493],[105.925034,29.956478],[105.924347,29.963123],[105.91104,29.961624],[105.907849,29.98038],[105.915656,29.993179],[105.904019,29.995649],[105.886784,30.006462],[105.870335,30.00549],[105.866702,30.009864],[105.875491,30.027356],[105.869648,30.032983],[105.872103,30.045411],[105.883691,30.049256],[105.891498,30.044156],[105.900336,30.045775],[105.901711,30.057392],[105.895475,30.065123],[105.904608,30.073662],[105.897783,30.079003],[105.907554,30.091951],[105.917571,30.093934],[105.933333,30.088027],[105.934511,30.080703],[105.943006,30.074511],[105.939274,30.063342],[105.949438,30.060832],[105.959209,30.071234],[105.95862,30.076778],[105.973105,30.072771],[105.981207,30.061359],[105.98592,30.070262],[105.980814,30.083131],[105.989357,30.093125],[105.985184,30.101742],[105.999472,30.113757],[105.994513,30.120108],[105.998343,30.129289],[105.978801,30.143606],[105.976247,30.153109],[105.987639,30.164026],[105.974381,30.175224],[105.973743,30.188079],[105.991174,30.177246],[106.00669,30.187958],[106.019948,30.201417],[106.006052,30.213622],[106.004039,30.224775],[105.995102,30.231845],[105.981059,30.233583],[105.985724,30.248692],[105.995397,30.256892],[106.006248,30.260002],[106.013466,30.268282],[106.009489,30.275754],[105.998588,30.280681],[105.992107,30.277369],[105.98101,30.280156],[105.983367,30.289766],[105.974872,30.289322],[105.967507,30.308379],[105.975216,30.30632],[105.988277,30.320006],[105.981305,30.325051],[105.980372,30.342084],[105.989063,30.352697],[105.97826,30.373477],[105.970257,30.378883],[105.940894,30.372267],[105.939568,30.380537],[105.925575,30.385338],[105.917031,30.395987],[105.901515,30.386346],[105.899011,30.396027],[105.905983,30.397036],[105.905296,30.406433],[105.876522,30.399536],[105.886784,30.392639],[105.877602,30.386669],[105.869108,30.401513],[105.873772,30.408692],[105.862332,30.406353],[105.846227,30.392437],[105.839107,30.399698],[105.846128,30.411152],[105.836946,30.41583],[105.831103,30.429016],[105.820154,30.437524],[105.802183,30.427927],[105.792313,30.427282],[105.795456,30.418491],[105.782787,30.403086],[105.770708,30.404054],[105.760299,30.384571],[105.770021,30.37618],[105.751854,30.357136],[105.756224,30.347088],[105.74984,30.339703],[105.735012,30.336676],[105.741493,30.319158],[105.729905,30.316897],[105.714831,30.322791],[105.711738,30.315848],[105.718612,30.307733],[105.711001,30.294208],[105.711787,30.282255],[105.722982,30.275552],[105.734963,30.277046],[105.730102,30.265818],[105.735159,30.261537],[105.720969,30.263193],[105.723866,30.254751],[105.701475,30.257862],[105.67334,30.252772],[105.667203,30.265697],[105.660672,30.264324],[105.645745,30.273371],[105.622668,30.273856],[105.620163,30.261779],[105.610589,30.255882],[105.62036,30.248934],[105.618739,30.23536],[105.636269,30.219724],[105.655418,30.220815],[105.662342,30.210066],[105.645549,30.206873],[105.642406,30.186422],[105.632832,30.183754],[105.618052,30.185694],[105.607888,30.178297],[105.595122,30.183673],[105.5799,30.173446],[105.567036,30.183188],[105.546904,30.180722],[105.536445,30.164834],[105.536151,30.152907],[105.549605,30.151734],[105.556086,30.144779],[105.558197,30.151977],[105.571406,30.161559],[105.582159,30.162974],[105.59684,30.157112],[105.593207,30.144738],[105.569982,30.134304],[105.574155,30.130422],[105.580244,30.129694],[105.582699,30.12755],[105.583141,30.12395],[105.598068,30.109227],[105.606759,30.109712],[105.619721,30.104129],[105.640835,30.101338],[105.637496,30.093691],[105.639264,30.076413],[105.649231,30.074592],[105.660476,30.066296],[105.674617,30.071274],[105.676728,30.056057],[105.683455,30.052859],[105.68699,30.038975],[105.699413,30.043144],[105.705354,30.035776],[105.721312,30.042051],[105.728039,30.027194],[105.742033,30.03359],[105.743359,30.027113],[105.75367,30.01861],[105.74876,30.005895],[105.732508,29.998768],[105.723326,29.976005],[105.731034,29.95664],[105.721116,29.950563],[105.714978,29.930747],[105.702507,29.923939],[105.715027,29.911171],[105.711639,29.899497],[105.717433,29.893578],[105.73403,29.893578],[105.735257,29.871967],[105.733146,29.860693]]],[[[105.583141,30.12395],[105.582699,30.12755],[105.580244,30.129694],[105.574155,30.130422],[105.583141,30.12395]]]]}},{"type":"Feature","properties":{"adcode":500153,"name":"荣昌区","center":[105.594061,29.403627],"centroid":[105.506727,29.464817],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":22,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.66514,29.276594],[105.655664,29.284426],[105.645794,29.286506],[105.637251,29.298251],[105.635974,29.320638],[105.645352,29.319252],[105.653405,29.33397],[105.649575,29.340247],[105.653209,29.349052],[105.663078,29.346647],[105.675501,29.355574],[105.691655,29.357652],[105.696172,29.364622],[105.709283,29.368616],[105.709086,29.375625],[105.716893,29.372813],[105.728678,29.384875],[105.741002,29.397628],[105.722835,29.397872],[105.73403,29.417386],[105.727646,29.422844],[105.737663,29.435592],[105.735061,29.445162],[105.724013,29.449967],[105.725486,29.454121],[105.714929,29.464259],[105.687236,29.446506],[105.662194,29.460025],[105.657431,29.468168],[105.658119,29.481317],[105.65311,29.485022],[105.662636,29.499431],[105.648397,29.494139],[105.641179,29.505861],[105.639509,29.489052],[105.646236,29.486121],[105.637152,29.473623],[105.629738,29.478386],[105.631506,29.485917],[105.620556,29.494017],[105.619967,29.504803],[105.607642,29.508262],[105.595711,29.504152],[105.593059,29.517744],[105.583239,29.515588],[105.590015,29.524011],[105.59522,29.539432],[105.592175,29.549928],[105.599983,29.553019],[105.602241,29.569941],[105.594483,29.575553],[105.590899,29.590397],[105.580047,29.591617],[105.561045,29.588892],[105.549703,29.572096],[105.542534,29.57413],[105.542681,29.586412],[105.536642,29.59121],[105.517738,29.586493],[105.50561,29.609344],[105.509243,29.637962],[105.496673,29.648652],[105.487688,29.663159],[105.490683,29.675186],[105.482777,29.679127],[105.475658,29.674699],[105.436377,29.676974],[105.420615,29.688309],[105.400532,29.67157],[105.389681,29.676487],[105.383887,29.669823],[105.393167,29.650724],[105.377553,29.643287],[105.380794,29.628248],[105.369648,29.621053],[105.365965,29.627516],[105.354377,29.626703],[105.346766,29.620199],[105.341611,29.60292],[105.335522,29.595195],[105.325653,29.595927],[105.329826,29.604384],[105.320988,29.60971],[105.320644,29.601782],[105.311315,29.593365],[105.317649,29.578156],[105.298647,29.572503],[105.289759,29.552613],[105.294326,29.53398],[105.304686,29.531254],[105.318877,29.512413],[105.323247,29.495157],[105.321234,29.475984],[105.331299,29.47175],[105.338026,29.461857],[105.336111,29.455546],[105.324622,29.450008],[105.334147,29.441416],[105.345588,29.448501],[105.360417,29.444225],[105.362037,29.454691],[105.373821,29.458274],[105.389534,29.452818],[105.399207,29.438972],[105.387471,29.438361],[105.388797,29.431886],[105.371759,29.423862],[105.373281,29.420766],[105.39631,29.422884],[105.413544,29.418567],[105.417031,29.423373],[105.427293,29.418852],[105.431466,29.408179],[105.443103,29.399094],[105.443693,29.386382],[105.432203,29.379659],[105.438586,29.370816],[105.434805,29.363114],[105.418602,29.352313],[105.422972,29.326509],[105.420075,29.316968],[105.436573,29.319496],[105.44929,29.317498],[105.454691,29.329077],[105.466476,29.321576],[105.466083,29.313421],[105.474283,29.309996],[105.466427,29.305592],[105.465395,29.292379],[105.459307,29.290136],[105.488866,29.278185],[105.509145,29.285404],[105.50939,29.274677],[105.518425,29.264438],[105.537869,29.272882],[105.55584,29.273576],[105.558295,29.27847],[105.583288,29.270353],[105.596005,29.274473],[105.609508,29.27276],[105.607986,29.255748],[105.614173,29.258359],[105.619771,29.27174],[105.6318,29.280388],[105.644076,29.270965],[105.63946,29.261582],[105.647611,29.25326],[105.666515,29.252933],[105.671622,29.260889],[105.664698,29.269048],[105.66514,29.276594]]]]}},{"type":"Feature","properties":{"adcode":500154,"name":"开州区","center":[108.413317,31.167735],"centroid":[108.382659,31.271013],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":23,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.542831,31.673626],[108.546464,31.666701],[108.532814,31.669129],[108.519066,31.665706],[108.513272,31.656193],[108.506692,31.657307],[108.494564,31.649545],[108.486168,31.639871],[108.468786,31.636169],[108.46525,31.61837],[108.456461,31.628882],[108.442664,31.6337],[108.423072,31.621277],[108.417916,31.610087],[108.402646,31.603874],[108.388357,31.586906],[108.393611,31.576349],[108.377948,31.570413],[108.391795,31.560452],[108.388652,31.546385],[108.381139,31.542599],[108.347603,31.545189],[108.33906,31.537896],[108.346572,31.525141],[108.345345,31.514936],[108.323298,31.502378],[108.311415,31.506684],[108.295998,31.503494],[108.281709,31.507282],[108.276995,31.501181],[108.259564,31.502497],[108.254801,31.498829],[108.236683,31.506365],[108.226764,31.505846],[108.218417,31.496197],[108.190478,31.491492],[108.193326,31.468202],[108.206829,31.464293],[108.210806,31.467883],[108.223131,31.46517],[108.225586,31.453004],[108.210561,31.435769],[108.216551,31.427031],[108.216306,31.411188],[108.203392,31.395382],[108.182868,31.393027],[108.175257,31.382608],[108.157826,31.376659],[108.154143,31.37075],[108.158906,31.360289],[108.171182,31.356975],[108.180609,31.349227],[108.185519,31.338005],[108.180462,31.325782],[108.162834,31.31971],[108.16141,31.313757],[108.146533,31.30277],[108.111916,31.286586],[108.094485,31.275036],[108.092374,31.265764],[108.080589,31.261446],[108.066399,31.261766],[108.059967,31.254971],[108.040866,31.253611],[108.021422,31.245736],[108.031635,31.23682],[108.027903,31.221984],[108.040081,31.218625],[108.076268,31.231822],[108.071113,31.218345],[108.080737,31.218945],[108.089919,31.201867],[108.085696,31.188107],[108.070278,31.177785],[108.069443,31.169383],[108.055253,31.156658],[108.056628,31.145652],[108.045629,31.145893],[108.0363,31.139929],[108.035318,31.128962],[108.025743,31.116351],[108.014744,31.115271],[108.009294,31.108785],[108.01386,31.098735],[108.024712,31.089244],[108.028984,31.061728],[108.050245,31.059966],[108.059869,31.053196],[108.053289,31.040736],[108.043321,31.035407],[108.033599,31.036128],[108.011062,31.023666],[108.003795,31.025389],[107.995889,31.004308],[107.983123,30.984225],[107.971535,30.982421],[107.943547,30.989437],[107.937409,30.968669],[107.936329,30.952749],[107.938735,30.940035],[107.948261,30.919056],[107.957345,30.919858],[107.971535,30.911794],[107.982435,30.913239],[107.994711,30.908665],[108.000849,30.911915],[108.009392,30.907662],[108.029426,30.884508],[108.0363,30.8701],[108.041112,30.876522],[108.069149,30.888281],[108.071751,30.892695],[108.081817,30.885712],[108.101654,30.878007],[108.090115,30.871545],[108.096646,30.84782],[108.105287,30.841356],[108.109608,30.82931],[108.122866,30.833487],[108.126057,30.840875],[108.131704,30.832001],[108.152179,30.831278],[108.157482,30.834771],[108.167106,30.827182],[108.18218,30.824211],[108.197254,30.833647],[108.200102,30.839188],[108.218417,30.852839],[108.229956,30.856171],[108.225488,30.860908],[108.231184,30.87612],[108.228237,30.881298],[108.244294,30.89113],[108.243803,30.882261],[108.260055,30.872789],[108.268402,30.881659],[108.29202,30.892976],[108.300269,30.901041],[108.346277,30.921222],[108.360861,30.932976],[108.349027,30.939153],[108.339649,30.963135],[108.355214,30.960408],[108.372792,30.969791],[108.395674,30.991641],[108.41497,30.998897],[108.418015,31.006072],[108.432156,31.012725],[108.451256,31.013527],[108.474334,31.022544],[108.48003,31.037811],[108.476691,31.052795],[108.486217,31.057322],[108.488181,31.064733],[108.511995,31.074145],[108.510964,31.07791],[108.53031,31.083838],[108.539934,31.082957],[108.537921,31.095491],[108.558887,31.089404],[108.547544,31.105261],[108.562619,31.115791],[108.562717,31.130443],[108.567823,31.140529],[108.576956,31.142851],[108.601851,31.160099],[108.598414,31.170943],[108.583585,31.174864],[108.578036,31.180065],[108.587759,31.185066],[108.588741,31.201587],[108.596646,31.230622],[108.618643,31.252212],[108.622768,31.259488],[108.631262,31.257249],[108.643489,31.268721],[108.63632,31.283509],[108.654586,31.289184],[108.659054,31.298535],[108.639806,31.31955],[108.63578,31.329896],[108.644176,31.339482],[108.683261,31.34084],[108.698237,31.343956],[108.701527,31.348988],[108.696567,31.359011],[108.709186,31.374983],[108.693474,31.377418],[108.694554,31.387199],[108.712525,31.394584],[108.729956,31.390752],[108.736389,31.395742],[108.731528,31.403285],[108.740022,31.407676],[108.742084,31.420087],[108.757797,31.430941],[108.759908,31.438602],[108.752298,31.443749],[108.740071,31.441834],[108.726617,31.455118],[108.703098,31.463814],[108.697255,31.476737],[108.69971,31.491652],[108.694554,31.499347],[108.703982,31.503972],[108.721707,31.503255],[108.730055,31.499746],[108.748026,31.505208],[108.761087,31.503893],[108.766881,31.513621],[108.769483,31.529845],[108.777094,31.543635],[108.794034,31.551366],[108.801399,31.574078],[108.820303,31.574596],[108.824133,31.578899],[108.837096,31.574237],[108.853398,31.578939],[108.865133,31.592801],[108.877997,31.602799],[108.894888,31.606025],[108.895821,31.614587],[108.887719,31.625657],[108.893268,31.632187],[108.892728,31.642578],[108.898227,31.65484],[108.888407,31.654999],[108.879421,31.663835],[108.865378,31.671079],[108.860517,31.681068],[108.840533,31.684371],[108.809894,31.685764],[108.794525,31.684251],[108.782888,31.688828],[108.770612,31.682142],[108.758141,31.664313],[108.755342,31.647077],[108.742281,31.640906],[108.736192,31.633302],[108.728974,31.634457],[108.714686,31.627648],[108.701183,31.634098],[108.69151,31.625259],[108.683899,31.627449],[108.67673,31.62275],[108.65542,31.626095],[108.649381,31.621715],[108.64123,31.625179],[108.640101,31.637005],[108.624388,31.651655],[108.608725,31.650421],[108.576809,31.664114],[108.574501,31.67088],[108.561833,31.669726],[108.542831,31.673626]]]]}},{"type":"Feature","properties":{"adcode":500155,"name":"梁平区","center":[107.800034,30.672168],"centroid":[107.719234,30.658344],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":24,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.876131,30.813287],[107.849861,30.792601],[107.831399,30.798426],[107.817749,30.798024],[107.799189,30.814934],[107.783722,30.819311],[107.775375,30.814853],[107.763836,30.817102],[107.755341,30.829551],[107.757452,30.840232],[107.752788,30.850751],[107.760349,30.862272],[107.750038,30.864801],[107.749547,30.873471],[107.737714,30.88499],[107.715864,30.887839],[107.704128,30.872227],[107.691951,30.874756],[107.670445,30.851996],[107.647465,30.823247],[107.633766,30.817785],[107.616138,30.828588],[107.614665,30.839148],[107.598266,30.844729],[107.584075,30.840473],[107.577594,30.848141],[107.560654,30.849868],[107.556529,30.846295],[107.535465,30.84766],[107.526626,30.839429],[107.523288,30.848222],[107.514793,30.854926],[107.482926,30.838305],[107.492108,30.833165],[107.489997,30.821118],[107.498982,30.810757],[107.490193,30.810757],[107.493778,30.803688],[107.47777,30.799792],[107.47345,30.785772],[107.460339,30.784165],[107.466379,30.774041],[107.453809,30.77167],[107.44556,30.778179],[107.446837,30.770103],[107.43957,30.759776],[107.44502,30.752503],[107.439029,30.747077],[107.425674,30.746756],[107.437065,30.721031],[107.458621,30.704788],[107.460929,30.687498],[107.456559,30.682712],[107.469718,30.677604],[107.477427,30.664774],[107.499179,30.660148],[107.516806,30.647838],[107.515431,30.642045],[107.493728,30.618988],[107.485332,30.598341],[107.46741,30.586305],[107.460241,30.571329],[107.42754,30.547611],[107.442859,30.535287],[107.433825,30.523565],[107.419929,30.516475],[107.408734,30.521551],[107.404855,30.516112],[107.425527,30.510835],[107.446837,30.49766],[107.463629,30.481984],[107.480029,30.478599],[107.496036,30.494638],[107.509097,30.495363],[107.516266,30.489198],[107.527559,30.490487],[107.533452,30.500843],[107.544352,30.498869],[107.55157,30.50322],[107.553436,30.491092],[107.562225,30.487949],[107.570523,30.47731],[107.593994,30.475174],[107.610197,30.48009],[107.611719,30.47211],[107.629298,30.485611],[107.637743,30.483032],[107.636957,30.470498],[107.660772,30.470136],[107.670346,30.464493],[107.673538,30.453851],[107.656205,30.431193],[107.661803,30.420387],[107.679479,30.438612],[107.695241,30.460986],[107.715716,30.482589],[107.741347,30.517885],[107.748123,30.521269],[107.757894,30.514058],[107.767911,30.513736],[107.777535,30.506121],[107.77783,30.497821],[107.796488,30.484805],[107.796488,30.479204],[107.80621,30.470861],[107.817455,30.471466],[107.810629,30.482428],[107.818142,30.497539],[107.819173,30.50882],[107.814017,30.521631],[107.829239,30.544671],[107.826145,30.554417],[107.860713,30.559088],[107.870386,30.547248],[107.885411,30.549544],[107.891352,30.54608],[107.886884,30.539556],[107.88546,30.512124],[107.897883,30.502938],[107.909422,30.502938],[107.916001,30.495323],[107.924839,30.494074],[107.939864,30.485893],[107.942025,30.498828],[107.953711,30.51434],[107.958621,30.531017],[107.972615,30.521913],[107.985676,30.531017],[107.990243,30.538871],[108.003795,30.542174],[108.029622,30.561544],[108.034778,30.574187],[108.028051,30.587432],[108.033697,30.592424],[108.025252,30.60289],[108.016954,30.629571],[108.023091,30.63617],[108.025645,30.648844],[108.042585,30.662481],[108.0554,30.660027],[108.079558,30.664532],[108.082259,30.677926],[108.074844,30.696304],[108.086678,30.713714],[108.074894,30.723121],[108.047544,30.723684],[108.03517,30.715362],[108.011405,30.709814],[107.959112,30.719262],[107.918653,30.75829],[107.908243,30.762911],[107.905592,30.77601],[107.88492,30.806138],[107.876131,30.813287]]]]}},{"type":"Feature","properties":{"adcode":500156,"name":"武隆区","center":[107.75655,29.32376],"centroid":[107.709628,29.373158],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":25,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.401565,29.184694],[107.405444,29.188613],[107.428473,29.191144],[107.441435,29.203962],[107.463973,29.195431],[107.462353,29.176855],[107.473106,29.170975],[107.486707,29.174242],[107.514891,29.194206],[107.532224,29.195471],[107.549557,29.210085],[107.553387,29.218697],[107.565711,29.220982],[107.575139,29.20784],[107.575237,29.189062],[107.580147,29.183591],[107.583437,29.16828],[107.590164,29.165299],[107.585057,29.158357],[107.589231,29.150026],[107.601015,29.147821],[107.600622,29.15897],[107.606711,29.165463],[107.616924,29.163013],[107.629936,29.165585],[107.641573,29.16093],[107.659446,29.16289],[107.66362,29.147535],[107.698629,29.141245],[107.707565,29.154151],[107.718515,29.156152],[107.727206,29.175712],[107.724751,29.182203],[107.739383,29.189021],[107.751609,29.199635],[107.76089,29.189021],[107.760251,29.177712],[107.767911,29.17514],[107.775227,29.162808],[107.781905,29.161992],[107.795162,29.146473],[107.808567,29.142838],[107.810629,29.138345],[107.799974,29.106195],[107.78981,29.082372],[107.785244,29.04722],[107.823543,29.034219],[107.838421,29.040597],[107.849567,29.039289],[107.874707,29.057031],[107.873086,29.074852],[107.883938,29.078163],[107.889486,29.085151],[107.883889,29.106195],[107.895133,29.117185],[107.892727,29.134138],[107.899896,29.166361],[107.903775,29.172282],[107.898865,29.184245],[107.911975,29.190328],[107.934905,29.185102],[107.94286,29.178243],[107.960143,29.188695],[107.970111,29.198492],[107.973057,29.210166],[107.986756,29.217799],[107.997804,29.236857],[108.006446,29.229267],[108.010325,29.247792],[107.99697,29.26248],[107.998983,29.273943],[107.996282,29.288545],[108.003304,29.315174],[107.992059,29.325408],[107.984301,29.339188],[107.983319,29.350397],[107.976641,29.36344],[107.988426,29.38027],[107.992796,29.397383],[107.989653,29.416856],[108.004286,29.428424],[108.002763,29.442108],[108.013075,29.448786],[108.013959,29.469674],[108.017347,29.483719],[108.015432,29.504559],[108.055793,29.531783],[108.074059,29.549073],[108.075826,29.557982],[108.066988,29.566687],[108.066153,29.575472],[108.075876,29.577627],[108.084026,29.588892],[108.076563,29.605726],[108.067872,29.614223],[108.056039,29.621581],[108.046513,29.622679],[108.024368,29.619467],[108.000259,29.626256],[107.979784,29.627435],[107.969129,29.620321],[107.961715,29.608978],[107.949881,29.601701],[107.948703,29.623126],[107.934218,29.655723],[107.922974,29.655235],[107.905543,29.662428],[107.897146,29.661493],[107.87073,29.667995],[107.857472,29.667629],[107.845786,29.660233],[107.842938,29.653569],[107.845246,29.628695],[107.839943,29.607393],[107.831743,29.59243],[107.832283,29.581247],[107.838863,29.570185],[107.835671,29.558877],[107.828551,29.556192],[107.825851,29.545005],[107.818928,29.554647],[107.80729,29.554606],[107.80351,29.563433],[107.791774,29.560952],[107.795801,29.567744],[107.7685,29.579254],[107.781267,29.582142],[107.772576,29.585883],[107.767862,29.597635],[107.757403,29.602636],[107.732263,29.585598],[107.716404,29.596659],[107.709431,29.60906],[107.701575,29.615443],[107.69804,29.605889],[107.687532,29.600481],[107.666958,29.573804],[107.654634,29.562457],[107.651197,29.553304],[107.629003,29.539147],[107.608135,29.532474],[107.607546,29.514652],[107.615009,29.512373],[107.620558,29.483638],[107.613143,29.479526],[107.595958,29.480951],[107.577446,29.462427],[107.574206,29.452533],[107.56139,29.453062],[107.552798,29.447809],[107.546562,29.431845],[107.532666,29.423047],[107.513664,29.461165],[107.478507,29.497151],[107.475905,29.50635],[107.4625,29.502117],[107.463826,29.498617],[107.450519,29.490028],[107.441386,29.491575],[107.431762,29.483475],[107.427491,29.505658],[107.391548,29.530969],[107.380599,29.523197],[107.365868,29.522383],[107.358601,29.51575],[107.348683,29.515547],[107.328993,29.509321],[107.323248,29.497558],[107.313526,29.487912],[107.30567,29.465318],[107.277338,29.440357],[107.262264,29.436162],[107.260938,29.429035],[107.245422,29.424391],[107.240512,29.426795],[107.227598,29.418159],[107.226666,29.406835],[107.237713,29.394817],[107.241691,29.379415],[107.256176,29.38463],[107.263393,29.383571],[107.272428,29.37371],[107.272428,29.358386],[107.293444,29.349704],[107.298599,29.352069],[107.309893,29.345098],[107.318387,29.347789],[107.323395,29.339147],[107.347308,29.342571],[107.350156,29.346892],[107.367047,29.341756],[107.392039,29.326754],[107.38271,29.308609],[107.373332,29.298578],[107.379764,29.299516],[107.391597,29.289279],[107.388553,29.281081],[107.404069,29.28259],[107.421942,29.274636],[107.416541,29.264234],[107.401025,29.248853],[107.399355,29.235714],[107.401909,29.218248],[107.395378,29.205881],[107.401565,29.184694]]]]}},{"type":"Feature","properties":{"adcode":500229,"name":"城口县","center":[108.6649,31.946293],"centroid":[108.735105,31.881846],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":26,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.281611,31.716876],[109.2795,31.723479],[109.283085,31.739627],[109.27076,31.749291],[109.2713,31.756607],[109.256177,31.758635],[109.254655,31.766905],[109.263689,31.773544],[109.281268,31.777917],[109.274786,31.791075],[109.274835,31.800455],[109.255293,31.803038],[109.239875,31.811304],[109.232363,31.809436],[109.213606,31.817503],[109.196224,31.817543],[109.191854,31.827953],[109.199563,31.842494],[109.190921,31.855681],[109.167009,31.87534],[109.131901,31.891343],[109.124585,31.892137],[109.114225,31.905556],[109.069935,31.938936],[109.05982,31.941356],[109.039345,31.96072],[109.035122,31.958061],[109.020883,31.963219],[108.988427,31.979404],[108.978213,31.978135],[108.968295,31.982538],[108.95273,31.979682],[108.937116,31.988924],[108.91831,31.988249],[108.902401,31.984918],[108.873529,32.000227],[108.837881,32.038805],[108.810581,32.047169],[108.788682,32.048318],[108.776259,32.055096],[108.767961,32.065519],[108.751708,32.074158],[108.752543,32.08759],[108.747731,32.099831],[108.726421,32.106803],[108.714833,32.103713],[108.674717,32.103396],[108.66691,32.111913],[108.654045,32.117418],[108.646975,32.128666],[108.606024,32.155155],[108.592178,32.160223],[108.583978,32.172217],[108.551031,32.176096],[108.509736,32.201187],[108.492944,32.194935],[108.479342,32.182073],[108.457296,32.181479],[108.434022,32.192085],[108.425282,32.187416],[108.406378,32.196201],[108.39916,32.194064],[108.379175,32.177521],[108.369404,32.173325],[108.38821,32.157531],[108.390862,32.151315],[108.406623,32.141337],[108.414872,32.126369],[108.423465,32.117339],[108.431616,32.101693],[108.439276,32.094721],[108.452091,32.091036],[108.44944,32.072969],[108.429995,32.061358],[108.412712,32.070116],[108.395183,32.066311],[108.373774,32.077169],[108.362825,32.070037],[108.344608,32.068253],[108.344804,32.060526],[108.35978,32.053748],[108.364298,32.047248],[108.362874,32.036783],[108.340091,32.023106],[108.32919,32.01926],[108.33847,32.009506],[108.361401,31.998085],[108.369502,31.989876],[108.367146,31.984521],[108.3505,31.971947],[108.337488,31.981705],[108.3259,31.984957],[108.307094,31.997252],[108.297176,31.988527],[108.283919,31.986068],[108.282151,31.979206],[108.265849,31.983728],[108.267175,31.973097],[108.259368,31.966869],[108.275817,31.957625],[108.28603,31.938856],[108.282691,31.917742],[108.289516,31.910955],[108.299484,31.911272],[108.30842,31.905953],[108.326244,31.881615],[108.33523,31.876452],[108.340974,31.863546],[108.353741,31.856396],[108.370779,31.852742],[108.386197,31.853894],[108.384135,31.848611],[108.394741,31.826523],[108.441436,31.807608],[108.455135,31.813927],[108.462501,31.812814],[108.464072,31.803674],[108.454399,31.791075],[108.456314,31.783999],[108.478213,31.777917],[108.488574,31.780302],[108.489261,31.774737],[108.515727,31.7611],[108.535269,31.757681],[108.506103,31.734815],[108.518673,31.726184],[108.524761,31.69973],[108.514794,31.69412],[108.532225,31.677168],[108.542831,31.673626],[108.561833,31.669726],[108.574501,31.67088],[108.576809,31.664114],[108.608725,31.650421],[108.624388,31.651655],[108.640101,31.637005],[108.64123,31.625179],[108.649381,31.621715],[108.65542,31.626095],[108.67673,31.62275],[108.683899,31.627449],[108.69151,31.625259],[108.701183,31.634098],[108.714686,31.627648],[108.728974,31.634457],[108.736192,31.633302],[108.742281,31.640906],[108.755342,31.647077],[108.758141,31.664313],[108.770612,31.682142],[108.782888,31.688828],[108.794525,31.684251],[108.809894,31.685764],[108.840533,31.684371],[108.860517,31.681068],[108.865378,31.671079],[108.879421,31.663835],[108.888407,31.654999],[108.898227,31.65484],[108.906182,31.661248],[108.91448,31.660731],[108.918113,31.652929],[108.937607,31.652969],[108.954792,31.66288],[108.955529,31.654601],[108.992649,31.652969],[109.000407,31.657029],[109.00134,31.671039],[109.007331,31.673188],[109.0008,31.686758],[109.007036,31.691135],[109.038117,31.690777],[109.052013,31.696507],[109.06149,31.704743],[109.092473,31.699531],[109.122965,31.700167],[109.133325,31.705936],[109.148154,31.703669],[109.158514,31.69396],[109.16696,31.700207],[109.178253,31.69587],[109.209187,31.69412],[109.224261,31.688629],[109.228533,31.690817],[109.222542,31.701242],[109.227403,31.717035],[109.225145,31.724951],[109.266734,31.714927],[109.281611,31.716876]]]]}},{"type":"Feature","properties":{"adcode":500230,"name":"丰都县","center":[107.73248,29.866424],"centroid":[107.830885,29.884753],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":27,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.701575,29.615443],[107.709431,29.60906],[107.716404,29.596659],[107.732263,29.585598],[107.757403,29.602636],[107.767862,29.597635],[107.772576,29.585883],[107.781267,29.582142],[107.7685,29.579254],[107.795801,29.567744],[107.791774,29.560952],[107.80351,29.563433],[107.80729,29.554606],[107.818928,29.554647],[107.825851,29.545005],[107.828551,29.556192],[107.835671,29.558877],[107.838863,29.570185],[107.832283,29.581247],[107.831743,29.59243],[107.839943,29.607393],[107.845246,29.628695],[107.842938,29.653569],[107.845786,29.660233],[107.857472,29.667629],[107.87073,29.667995],[107.897146,29.661493],[107.905543,29.662428],[107.922974,29.655235],[107.934218,29.655723],[107.948703,29.623126],[107.949881,29.601701],[107.961715,29.608978],[107.969129,29.620321],[107.979784,29.627435],[108.000259,29.626256],[108.024368,29.619467],[108.046513,29.622679],[108.056039,29.621581],[108.067872,29.614223],[108.078773,29.618817],[108.082161,29.611377],[108.098757,29.600684],[108.114175,29.599302],[108.117366,29.603449],[108.132391,29.603815],[108.153652,29.599749],[108.163374,29.603612],[108.167499,29.617679],[108.178547,29.619183],[108.182033,29.625972],[108.17894,29.647839],[108.168186,29.648083],[108.156107,29.644872],[108.149921,29.647636],[108.143587,29.659218],[108.156304,29.669579],[108.156157,29.676121],[108.174962,29.686075],[108.179529,29.699602],[108.169168,29.7087],[108.181051,29.734286],[108.17457,29.735463],[108.172213,29.745533],[108.178252,29.749877],[108.187925,29.743909],[108.204129,29.765182],[108.208204,29.764938],[108.217484,29.777887],[108.194112,29.790712],[108.18547,29.801628],[108.194014,29.812665],[108.190626,29.819441],[108.177859,29.822443],[108.172998,29.837656],[108.167008,29.838305],[108.14997,29.83011],[108.145992,29.846377],[108.122915,29.851771],[108.108823,29.848851],[108.099199,29.840657],[108.084125,29.838873],[108.058936,29.857246],[108.072488,29.870953],[108.071456,29.877157],[108.059869,29.889726],[108.042536,29.893456],[108.035907,29.90197],[108.049999,29.906226],[108.046316,29.912387],[108.036005,29.912225],[108.024908,29.934962],[108.014695,29.9472],[107.993336,29.96689],[108.002027,29.977544],[108.009687,29.978476],[108.018034,29.971589],[108.03247,29.990222],[108.024859,30.010957],[108.018476,30.014804],[108.02702,30.029056],[108.01661,30.042132],[108.007575,30.043508],[107.998492,30.053871],[107.987297,30.047921],[107.967558,30.055611],[107.948457,30.066458],[107.936378,30.069008],[107.908243,30.105748],[107.906525,30.112544],[107.895919,30.120067],[107.88109,30.103199],[107.87451,30.09976],[107.862186,30.113879],[107.84446,30.119865],[107.831939,30.108782],[107.81878,30.112058],[107.812937,30.118935],[107.819026,30.13394],[107.842103,30.155009],[107.845688,30.162974],[107.838617,30.168675],[107.811759,30.178337],[107.808567,30.184239],[107.794377,30.185816],[107.788436,30.190747],[107.765898,30.198224],[107.757502,30.21047],[107.758336,30.217016],[107.769139,30.224573],[107.769924,30.236572],[107.762019,30.240936],[107.745128,30.236774],[107.742084,30.225502],[107.734129,30.221098],[107.728728,30.23132],[107.721314,30.230189],[107.721216,30.21835],[107.704963,30.216491],[107.705356,30.224209],[107.714685,30.221421],[107.705945,30.230876],[107.709284,30.237946],[107.691264,30.234916],[107.675502,30.22336],[107.668088,30.22631],[107.666762,30.234754],[107.673145,30.238754],[107.675944,30.252812],[107.662588,30.261052],[107.656402,30.259598],[107.651884,30.241622],[107.642801,30.239562],[107.632882,30.213097],[107.626548,30.20655],[107.61005,30.209136],[107.605729,30.198628],[107.595909,30.198063],[107.604501,30.187392],[107.597922,30.179631],[107.581227,30.174941],[107.569983,30.166937],[107.572978,30.144374],[107.568706,30.139077],[107.582897,30.131595],[107.579361,30.119582],[107.570425,30.122252],[107.55815,30.114566],[107.55756,30.098344],[107.535268,30.088512],[107.528296,30.082888],[107.53954,30.072407],[107.539295,30.064192],[107.5308,30.059699],[107.491372,30.013306],[107.491322,30.004964],[107.483908,29.992693],[107.471338,29.989453],[107.487443,29.972076],[107.498197,29.972481],[107.500554,29.960611],[107.515186,29.959436],[107.523779,29.978678],[107.53355,29.968551],[107.546905,29.965675],[107.546807,29.958585],[107.56193,29.946146],[107.571898,29.951049],[107.57946,29.943877],[107.573126,29.933827],[107.579361,29.923939],[107.59473,29.917657],[107.602979,29.897389],[107.598707,29.888632],[107.613094,29.876955],[107.626892,29.874522],[107.616973,29.865884],[107.613585,29.856111],[107.604256,29.852014],[107.595369,29.835222],[107.605238,29.832423],[107.605336,29.808161],[107.622669,29.802562],[107.638627,29.813274],[107.638529,29.772976],[107.64226,29.76303],[107.625075,29.753896],[107.640345,29.740701],[107.632784,29.719016],[107.630427,29.701714],[107.64447,29.687821],[107.6565,29.686156],[107.670101,29.675064],[107.674176,29.663362],[107.684733,29.666532],[107.696616,29.660315],[107.718073,29.65682],[107.713752,29.642555],[107.698482,29.618614],[107.701575,29.615443]]]]}},{"type":"Feature","properties":{"adcode":500231,"name":"垫江县","center":[107.348692,30.330012],"centroid":[107.437814,30.253308],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":28,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.453171,30.001441],[107.466968,29.998606],[107.471338,29.989453],[107.483908,29.992693],[107.491322,30.004964],[107.491372,30.013306],[107.5308,30.059699],[107.539295,30.064192],[107.53954,30.072407],[107.528296,30.082888],[107.535268,30.088512],[107.55756,30.098344],[107.55815,30.114566],[107.570425,30.122252],[107.579361,30.119582],[107.582897,30.131595],[107.568706,30.139077],[107.572978,30.144374],[107.569983,30.166937],[107.581227,30.174941],[107.597922,30.179631],[107.604501,30.187392],[107.595909,30.198063],[107.584861,30.202185],[107.577299,30.221461],[107.56851,30.219198],[107.571505,30.208166],[107.563649,30.19875],[107.550097,30.19681],[107.54828,30.208651],[107.553583,30.213177],[107.544794,30.221057],[107.545825,30.227643],[107.554271,30.229583],[107.558395,30.244046],[107.573862,30.244693],[107.57342,30.256367],[107.567282,30.268201],[107.573322,30.274784],[107.587119,30.275188],[107.581767,30.287586],[107.597824,30.29445],[107.597283,30.313224],[107.572242,30.321257],[107.569836,30.326868],[107.583093,30.341801],[107.595025,30.351083],[107.602488,30.367869],[107.622767,30.384652],[107.631262,30.398568],[107.650362,30.406917],[107.661803,30.420387],[107.656205,30.431193],[107.673538,30.453851],[107.670346,30.464493],[107.660772,30.470136],[107.636957,30.470498],[107.637743,30.483032],[107.629298,30.485611],[107.611719,30.47211],[107.610197,30.48009],[107.593994,30.475174],[107.570523,30.47731],[107.562225,30.487949],[107.553436,30.491092],[107.55157,30.50322],[107.544352,30.498869],[107.533452,30.500843],[107.527559,30.490487],[107.516266,30.489198],[107.509097,30.495363],[107.496036,30.494638],[107.480029,30.478599],[107.463629,30.481984],[107.446837,30.49766],[107.425527,30.510835],[107.404855,30.516112],[107.388848,30.49089],[107.381237,30.485329],[107.360025,30.45627],[107.34554,30.425508],[107.341367,30.41212],[107.34284,30.401674],[107.33901,30.387072],[107.31878,30.364278],[107.304197,30.354594],[107.288779,30.337564],[107.277535,30.311246],[107.264866,30.289766],[107.255979,30.263799],[107.239432,30.237582],[107.228335,30.223805],[107.256568,30.205903],[107.277044,30.181086],[107.288484,30.171303],[107.269482,30.145992],[107.274098,30.135841],[107.291381,30.136327],[107.295555,30.122454],[107.286766,30.107892],[107.29089,30.097939],[107.28328,30.091021],[107.271741,30.09446],[107.269089,30.081148],[107.259072,30.075887],[107.247534,30.07528],[107.26521,30.062006],[107.266045,30.055045],[107.279204,30.04873],[107.27724,30.043144],[107.294867,30.044359],[107.307879,30.035493],[107.31166,30.02023],[107.304688,30.0161],[107.31112,30.008203],[107.294818,30.002696],[107.29418,29.997917],[107.307094,29.992328],[107.325556,29.973007],[107.335573,29.97398],[107.347995,29.980501],[107.362824,29.979853],[107.374068,29.973372],[107.436329,30.033833],[107.46029,30.01533],[107.451501,30.008203],[107.453171,30.001441]]]]}},{"type":"Feature","properties":{"adcode":500233,"name":"忠县","center":[108.037518,30.291537],"centroid":[107.914786,30.335722],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":29,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.223622,30.421274],[108.241937,30.443773],[108.232755,30.45502],[108.230496,30.476705],[108.207811,30.49766],[108.195045,30.514501],[108.184537,30.518167],[108.175552,30.510633],[108.165633,30.524411],[108.171378,30.539314],[108.163374,30.540805],[108.152523,30.535931],[108.153063,30.545879],[108.143587,30.566215],[108.12645,30.564],[108.120067,30.576965],[108.126647,30.577972],[108.127187,30.586104],[108.111621,30.59343],[108.105631,30.591458],[108.103863,30.573382],[108.088593,30.572617],[108.083339,30.579582],[108.072537,30.582159],[108.062667,30.574429],[108.052847,30.572094],[108.034778,30.574187],[108.029622,30.561544],[108.003795,30.542174],[107.990243,30.538871],[107.985676,30.531017],[107.972615,30.521913],[107.958621,30.531017],[107.953711,30.51434],[107.942025,30.498828],[107.939864,30.485893],[107.924839,30.494074],[107.916001,30.495323],[107.909422,30.502938],[107.897883,30.502938],[107.88546,30.512124],[107.886884,30.539556],[107.891352,30.54608],[107.885411,30.549544],[107.870386,30.547248],[107.860713,30.559088],[107.826145,30.554417],[107.829239,30.544671],[107.814017,30.521631],[107.819173,30.50882],[107.818142,30.497539],[107.810629,30.482428],[107.817455,30.471466],[107.80621,30.470861],[107.796488,30.479204],[107.796488,30.484805],[107.77783,30.497821],[107.777535,30.506121],[107.767911,30.513736],[107.757894,30.514058],[107.748123,30.521269],[107.741347,30.517885],[107.715716,30.482589],[107.695241,30.460986],[107.679479,30.438612],[107.661803,30.420387],[107.650362,30.406917],[107.631262,30.398568],[107.622767,30.384652],[107.602488,30.367869],[107.595025,30.351083],[107.583093,30.341801],[107.569836,30.326868],[107.572242,30.321257],[107.597283,30.313224],[107.597824,30.29445],[107.581767,30.287586],[107.587119,30.275188],[107.573322,30.274784],[107.567282,30.268201],[107.57342,30.256367],[107.573862,30.244693],[107.558395,30.244046],[107.554271,30.229583],[107.545825,30.227643],[107.544794,30.221057],[107.553583,30.213177],[107.54828,30.208651],[107.550097,30.19681],[107.563649,30.19875],[107.571505,30.208166],[107.56851,30.219198],[107.577299,30.221461],[107.584861,30.202185],[107.595909,30.198063],[107.605729,30.198628],[107.61005,30.209136],[107.626548,30.20655],[107.632882,30.213097],[107.642801,30.239562],[107.651884,30.241622],[107.656402,30.259598],[107.662588,30.261052],[107.675944,30.252812],[107.673145,30.238754],[107.666762,30.234754],[107.668088,30.22631],[107.675502,30.22336],[107.691264,30.234916],[107.709284,30.237946],[107.705945,30.230876],[107.714685,30.221421],[107.705356,30.224209],[107.704963,30.216491],[107.721216,30.21835],[107.721314,30.230189],[107.728728,30.23132],[107.734129,30.221098],[107.742084,30.225502],[107.745128,30.236774],[107.762019,30.240936],[107.769924,30.236572],[107.769139,30.224573],[107.758336,30.217016],[107.757502,30.21047],[107.765898,30.198224],[107.788436,30.190747],[107.794377,30.185816],[107.808567,30.184239],[107.811759,30.178337],[107.838617,30.168675],[107.845688,30.162974],[107.842103,30.155009],[107.819026,30.13394],[107.812937,30.118935],[107.81878,30.112058],[107.831939,30.108782],[107.84446,30.119865],[107.862186,30.113879],[107.87451,30.09976],[107.88109,30.103199],[107.895919,30.120067],[107.906525,30.112544],[107.908243,30.105748],[107.936378,30.069008],[107.948457,30.066458],[107.967558,30.055611],[107.987297,30.047921],[107.998492,30.053871],[108.00733,30.057028],[108.010571,30.071355],[108.021569,30.078032],[108.029622,30.089119],[108.034974,30.084183],[108.031144,30.072326],[108.037233,30.067591],[108.0554,30.072043],[108.083928,30.111209],[108.092374,30.129532],[108.075777,30.153917],[108.061587,30.157071],[108.070965,30.163702],[108.072438,30.175144],[108.085549,30.17862],[108.107595,30.207439],[108.120705,30.200568],[108.129887,30.210268],[108.119379,30.211803],[108.127383,30.223684],[108.124879,30.227199],[108.10843,30.219198],[108.101948,30.223482],[108.105533,30.232653],[108.097038,30.237259],[108.093994,30.253459],[108.103716,30.246995],[108.114273,30.251399],[108.121933,30.245824],[108.125861,30.235845],[108.129494,30.244531],[108.126303,30.255357],[108.141475,30.265495],[108.142212,30.273654],[108.129003,30.281125],[108.131606,30.288918],[108.127334,30.299982],[108.147318,30.297115],[108.147466,30.302606],[108.163473,30.321055],[108.163031,30.325294],[108.145894,30.334254],[108.127874,30.333487],[108.117072,30.329169],[108.094731,30.344667],[108.084419,30.343093],[108.084665,30.350115],[108.096449,30.358831],[108.12262,30.359799],[108.133128,30.362624],[108.152965,30.395019],[108.174619,30.410144],[108.186403,30.413854],[108.208351,30.408611],[108.223622,30.421274]]]]}},{"type":"Feature","properties":{"adcode":500235,"name":"云阳县","center":[108.697698,30.930529],"centroid":[108.856912,31.036349],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":30,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.90952,30.581273],[108.919488,30.589365],[108.943842,30.601843],[108.967509,30.624823],[108.978017,30.629813],[108.987494,30.623294],[108.999229,30.632066],[109.009737,30.627238],[109.021766,30.642366],[109.01558,30.648884],[109.022945,30.663567],[109.017544,30.675232],[109.024565,30.683154],[109.018919,30.696706],[109.030801,30.706598],[109.019655,30.711784],[109.018575,30.718297],[109.047348,30.730277],[109.047839,30.745309],[109.056579,30.754834],[109.059575,30.764598],[109.048821,30.777215],[109.044059,30.809873],[109.050785,30.814171],[109.05054,30.824773],[109.043224,30.831278],[109.051767,30.843524],[109.054615,30.860908],[109.0773,30.869096],[109.086531,30.858178],[109.108283,30.860145],[109.135485,30.866688],[109.130477,30.879732],[109.150118,30.878247],[109.144029,30.902165],[109.15547,30.907622],[109.162197,30.905776],[109.160969,30.916809],[109.151934,30.924151],[109.150609,30.936265],[109.157581,30.940637],[109.186306,30.936907],[109.200545,30.932936],[109.201822,30.927962],[109.215472,30.920781],[109.218762,30.926317],[109.220333,30.945369],[109.218221,30.963857],[109.211642,30.96935],[109.217583,30.982421],[109.238009,31.006432],[109.251021,31.029276],[109.244884,31.032201],[109.239875,31.04314],[109.228778,31.046866],[109.225243,31.053837],[109.214637,31.047907],[109.197648,31.053276],[109.190774,31.066335],[109.165045,31.068057],[109.145748,31.056921],[109.131557,31.054077],[109.119528,31.058123],[109.095271,31.061007],[109.096646,31.078391],[109.093946,31.09437],[109.100034,31.102579],[109.100231,31.121636],[109.080246,31.128641],[109.056187,31.132604],[109.055008,31.155537],[109.048576,31.164341],[109.048969,31.186787],[109.067431,31.179465],[109.074305,31.189467],[109.092816,31.192387],[109.092571,31.211986],[109.087464,31.225703],[109.072685,31.247015],[109.068069,31.27008],[109.062717,31.276355],[109.042978,31.283349],[109.033305,31.290862],[109.055057,31.326301],[109.050294,31.340721],[109.055352,31.357054],[109.05162,31.367117],[109.029181,31.370032],[109.020146,31.375781],[108.992207,31.380812],[108.983418,31.385762],[108.971487,31.380812],[108.962452,31.385722],[108.948409,31.382728],[108.936035,31.390991],[108.927197,31.386001],[108.916837,31.387399],[108.908146,31.383566],[108.900142,31.387558],[108.88988,31.383566],[108.886394,31.372148],[108.892826,31.364641],[108.89042,31.354738],[108.893268,31.342358],[108.887572,31.336007],[108.869896,31.339562],[108.865035,31.343716],[108.837096,31.346432],[108.834739,31.35382],[108.823053,31.356815],[108.822071,31.370271],[108.83248,31.375302],[108.816866,31.390233],[108.798748,31.396859],[108.795752,31.403086],[108.809894,31.417414],[108.800221,31.425155],[108.779205,31.435251],[108.759908,31.438602],[108.757797,31.430941],[108.742084,31.420087],[108.740022,31.407676],[108.731528,31.403285],[108.736389,31.395742],[108.729956,31.390752],[108.712525,31.394584],[108.694554,31.387199],[108.693474,31.377418],[108.709186,31.374983],[108.696567,31.359011],[108.701527,31.348988],[108.698237,31.343956],[108.683261,31.34084],[108.644176,31.339482],[108.63578,31.329896],[108.639806,31.31955],[108.659054,31.298535],[108.654586,31.289184],[108.63632,31.283509],[108.643489,31.268721],[108.631262,31.257249],[108.622768,31.259488],[108.618643,31.252212],[108.596646,31.230622],[108.588741,31.201587],[108.587759,31.185066],[108.578036,31.180065],[108.583585,31.174864],[108.598414,31.170943],[108.601851,31.160099],[108.576956,31.142851],[108.567823,31.140529],[108.562717,31.130443],[108.562619,31.115791],[108.547544,31.105261],[108.558887,31.089404],[108.537921,31.095491],[108.539934,31.082957],[108.53031,31.083838],[108.510964,31.07791],[108.511995,31.074145],[108.488181,31.064733],[108.486217,31.057322],[108.476691,31.052795],[108.48003,31.037811],[108.474334,31.022544],[108.451256,31.013527],[108.432156,31.012725],[108.418015,31.006072],[108.41497,30.998897],[108.426509,30.998216],[108.440356,31.002545],[108.455626,30.994728],[108.45327,30.988755],[108.454743,30.970232],[108.460537,30.967426],[108.486413,30.977008],[108.496626,30.972839],[108.50409,30.977289],[108.501094,30.98651],[108.506643,30.992604],[108.51666,30.990559],[108.533894,30.996251],[108.531243,30.978051],[108.523632,30.973159],[108.537577,30.958123],[108.552602,30.915405],[108.566448,30.912396],[108.593307,30.920259],[108.608578,30.93807],[108.61884,30.934741],[108.619233,30.926999],[108.628169,30.918253],[108.623013,30.912837],[108.621589,30.888561],[108.625419,30.875358],[108.634798,30.885271],[108.653014,30.89105],[108.665977,30.867972],[108.671968,30.852116],[108.685078,30.845773],[108.685127,30.835976],[108.698482,30.822885],[108.699955,30.811841],[108.715177,30.815094],[108.733393,30.81405],[108.738549,30.808026],[108.740808,30.787259],[108.74724,30.782116],[108.740169,30.775527],[108.749842,30.74555],[108.754998,30.740044],[108.76639,30.74141],[108.762609,30.728106],[108.766586,30.720548],[108.763444,30.713031],[108.789762,30.714277],[108.79261,30.706558],[108.781022,30.697028],[108.779254,30.685125],[108.785883,30.683516],[108.818094,30.693771],[108.823347,30.69168],[108.828699,30.679414],[108.836016,30.678449],[108.872007,30.690112],[108.883546,30.695661],[108.884331,30.687337],[108.896312,30.684039],[108.899946,30.676438],[108.901713,30.646792],[108.871565,30.618103],[108.869896,30.610979],[108.90952,30.581273]]]]}},{"type":"Feature","properties":{"adcode":500236,"name":"奉节县","center":[109.465774,31.019967],"centroid":[109.349632,30.952293],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":31,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.103668,30.565812],[109.113488,30.548658],[109.12483,30.538912],[109.124389,30.531702],[109.139463,30.534562],[109.141181,30.525096],[109.150609,30.527392],[109.164799,30.538187],[109.17133,30.547007],[109.192787,30.546282],[109.222788,30.569597],[109.247731,30.583205],[109.227845,30.58087],[109.227551,30.585661],[109.251169,30.592907],[109.278813,30.610174],[109.299534,30.630577],[109.313577,30.610174],[109.32816,30.616091],[109.323299,30.604137],[109.314509,30.59979],[109.344265,30.577126],[109.361156,30.554739],[109.361058,30.550994],[109.342252,30.529567],[109.337145,30.520826],[109.341564,30.512728],[109.342841,30.494718],[109.352072,30.487183],[109.368668,30.500279],[109.380846,30.518288],[109.393808,30.531138],[109.418114,30.560014],[109.428032,30.57616],[109.437852,30.598059],[109.449342,30.603735],[109.456511,30.613797],[109.465889,30.619511],[109.48278,30.623173],[109.493337,30.637176],[109.514696,30.655401],[109.528739,30.663929],[109.537921,30.663969],[109.541407,30.65166],[109.533698,30.641562],[109.538756,30.638424],[109.562865,30.646752],[109.574109,30.646872],[109.577104,30.655321],[109.588005,30.664693],[109.581622,30.670847],[109.590656,30.693409],[109.602244,30.698838],[109.62542,30.702657],[109.649038,30.71894],[109.660773,30.73727],[109.656698,30.76046],[109.659153,30.761987],[109.649725,30.778782],[109.644226,30.794128],[109.646435,30.803929],[109.636517,30.821922],[109.628661,30.820998],[109.607203,30.838225],[109.608087,30.846214],[109.615256,30.848222],[109.61506,30.861951],[109.588839,30.865885],[109.585648,30.871384],[109.569543,30.873712],[109.561392,30.893698],[109.574207,30.900961],[109.594584,30.902044],[109.594879,30.905415],[109.612752,30.90389],[109.609904,30.91693],[109.603079,30.922345],[109.59812,30.936465],[109.601557,30.941639],[109.596941,30.95327],[109.601999,30.962814],[109.60082,30.977129],[109.61177,30.986911],[109.612555,30.995971],[109.598611,31.010841],[109.605829,31.017655],[109.662737,31.042338],[109.685127,31.053516],[109.72107,31.074346],[109.724507,31.090125],[109.744442,31.100616],[109.753428,31.113389],[109.764819,31.11495],[109.758289,31.129242],[109.769533,31.143771],[109.770564,31.16166],[109.760646,31.175144],[109.742773,31.178185],[109.727944,31.171743],[109.703688,31.169903],[109.692493,31.172584],[109.668629,31.185466],[109.64511,31.177905],[109.63033,31.189147],[109.624389,31.190027],[109.622523,31.204747],[109.631951,31.217505],[109.629545,31.225703],[109.61668,31.229662],[109.588201,31.223384],[109.581572,31.225743],[109.569346,31.244456],[109.561883,31.243976],[109.55712,31.251053],[109.530409,31.253891],[109.518526,31.250333],[109.512487,31.243217],[109.497069,31.244816],[109.493533,31.249454],[109.479638,31.251772],[109.462698,31.250693],[109.450766,31.246535],[109.45003,31.238979],[109.435741,31.231981],[109.431617,31.240058],[109.415511,31.245496],[109.393857,31.242897],[109.387867,31.248654],[109.39042,31.262326],[109.376623,31.276236],[109.374757,31.286427],[109.354134,31.286826],[109.355853,31.295578],[109.334396,31.306925],[109.326392,31.324064],[109.322415,31.34779],[109.272577,31.355657],[109.266292,31.35985],[109.242085,31.362126],[109.235014,31.356975],[109.224114,31.362206],[109.213606,31.358332],[109.197206,31.362126],[109.176534,31.361527],[109.138137,31.366279],[109.123357,31.37083],[109.102735,31.364162],[109.079117,31.370112],[109.065712,31.364681],[109.05162,31.367117],[109.055352,31.357054],[109.050294,31.340721],[109.055057,31.326301],[109.033305,31.290862],[109.042978,31.283349],[109.062717,31.276355],[109.068069,31.27008],[109.072685,31.247015],[109.087464,31.225703],[109.092571,31.211986],[109.092816,31.192387],[109.074305,31.189467],[109.067431,31.179465],[109.048969,31.186787],[109.048576,31.164341],[109.055008,31.155537],[109.056187,31.132604],[109.080246,31.128641],[109.100231,31.121636],[109.100034,31.102579],[109.093946,31.09437],[109.096646,31.078391],[109.095271,31.061007],[109.119528,31.058123],[109.131557,31.054077],[109.145748,31.056921],[109.165045,31.068057],[109.190774,31.066335],[109.197648,31.053276],[109.214637,31.047907],[109.225243,31.053837],[109.228778,31.046866],[109.239875,31.04314],[109.244884,31.032201],[109.251021,31.029276],[109.238009,31.006432],[109.217583,30.982421],[109.211642,30.96935],[109.218221,30.963857],[109.220333,30.945369],[109.218762,30.926317],[109.215472,30.920781],[109.201822,30.927962],[109.200545,30.932936],[109.186306,30.936907],[109.157581,30.940637],[109.150609,30.936265],[109.151934,30.924151],[109.160969,30.916809],[109.162197,30.905776],[109.15547,30.907622],[109.144029,30.902165],[109.150118,30.878247],[109.130477,30.879732],[109.135485,30.866688],[109.108283,30.860145],[109.086531,30.858178],[109.0773,30.869096],[109.054615,30.860908],[109.051767,30.843524],[109.043224,30.831278],[109.05054,30.824773],[109.050785,30.814171],[109.044059,30.809873],[109.048821,30.777215],[109.059575,30.764598],[109.056579,30.754834],[109.047839,30.745309],[109.047348,30.730277],[109.018575,30.718297],[109.019655,30.711784],[109.030801,30.706598],[109.018919,30.696706],[109.024565,30.683154],[109.017544,30.675232],[109.022945,30.663567],[109.01558,30.648884],[109.021766,30.642366],[109.045728,30.653189],[109.049165,30.645545],[109.070181,30.640274],[109.088053,30.646631],[109.096646,30.638745],[109.111917,30.646108],[109.120951,30.635768],[109.121737,30.628726],[109.112506,30.61271],[109.105926,30.610738],[109.105534,30.585661],[109.102686,30.580146],[109.101114,30.579542],[109.106123,30.570765],[109.103668,30.565812]]],[[[109.101114,30.579542],[109.102686,30.580146],[109.105534,30.585661],[109.105926,30.610738],[109.09316,30.609007],[109.083585,30.598261],[109.092865,30.578737],[109.098659,30.579099],[109.101114,30.579542]]],[[[109.098659,30.579099],[109.092865,30.578737],[109.103668,30.565812],[109.106123,30.570765],[109.098659,30.579099]]]]}},{"type":"Feature","properties":{"adcode":500237,"name":"巫山县","center":[109.878928,31.074843],"centroid":[109.901246,31.115189],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":32,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.659153,30.761987],[109.685373,30.768657],[109.692149,30.778902],[109.702117,30.783643],[109.702657,30.770264],[109.718124,30.778661],[109.716601,30.80168],[109.729613,30.815376],[109.759074,30.832804],[109.780777,30.848583],[109.797619,30.855609],[109.81942,30.860225],[109.856099,30.880254],[109.878244,30.889163],[109.894545,30.899797],[109.905642,30.899797],[109.932304,30.887679],[109.940897,30.889685],[109.943696,30.87897],[109.958377,30.877445],[109.975956,30.888682],[109.995056,30.887839],[110.008215,30.883585],[110.005024,30.870381],[110.017937,30.855328],[110.019607,30.829592],[110.03198,30.820476],[110.039198,30.820516],[110.042488,30.80666],[110.052996,30.799591],[110.082309,30.799591],[110.089527,30.816058],[110.095861,30.82156],[110.095812,30.829873],[110.115306,30.845492],[110.124095,30.868133],[110.144324,30.897229],[110.151837,30.912316],[110.145601,30.922145],[110.153899,30.953832],[110.163769,30.961371],[110.161657,30.968308],[110.173245,30.979895],[110.172165,30.98659],[110.163572,30.991641],[110.136075,30.986751],[110.140986,31.00503],[110.140151,31.030638],[110.120854,31.032001],[110.126648,31.054678],[110.13308,31.059806],[110.122131,31.072904],[110.120117,31.088844],[110.12871,31.095131],[110.135437,31.106262],[110.145847,31.108144],[110.146927,31.116912],[110.161264,31.116111],[110.180218,31.121676],[110.1894,31.129482],[110.186895,31.145332],[110.198876,31.156538],[110.196912,31.163581],[110.186404,31.169583],[110.180218,31.179585],[110.176535,31.198067],[110.178008,31.204867],[110.169612,31.227943],[110.174866,31.243497],[110.171428,31.250573],[110.162443,31.251932],[110.156158,31.277315],[110.163965,31.30321],[110.159644,31.315355],[110.151739,31.317872],[110.157975,31.333491],[110.14732,31.34783],[110.14948,31.354299],[110.140053,31.368315],[110.145307,31.381331],[110.140004,31.390472],[110.127384,31.393386],[110.11889,31.400651],[110.115158,31.412265],[110.108824,31.408314],[110.100084,31.411268],[110.089773,31.408674],[110.053978,31.410909],[110.049411,31.41877],[110.034484,31.430822],[110.033502,31.439679],[110.020687,31.442073],[110.003649,31.453642],[109.996382,31.469359],[109.987789,31.474663],[109.967903,31.474304],[109.954744,31.468401],[109.94291,31.475341],[109.938049,31.458748],[109.94183,31.448456],[109.937804,31.440836],[109.940553,31.427869],[109.935005,31.414381],[109.922828,31.394664],[109.911878,31.392149],[109.890126,31.392069],[109.853496,31.382209],[109.830468,31.388317],[109.821384,31.387638],[109.803315,31.378336],[109.789223,31.377857],[109.785638,31.361088],[109.775425,31.361527],[109.775032,31.354179],[109.761431,31.346951],[109.749892,31.35362],[109.730006,31.356176],[109.720972,31.349746],[109.71503,31.338644],[109.716945,31.332013],[109.711446,31.31959],[109.713803,31.299094],[109.698679,31.302171],[109.690676,31.296577],[109.662443,31.294499],[109.644373,31.310641],[109.626893,31.295937],[109.61285,31.295018],[109.597776,31.268442],[109.602833,31.262686],[109.587366,31.260967],[109.569346,31.244456],[109.581572,31.225743],[109.588201,31.223384],[109.61668,31.229662],[109.629545,31.225703],[109.631951,31.217505],[109.622523,31.204747],[109.624389,31.190027],[109.63033,31.189147],[109.64511,31.177905],[109.668629,31.185466],[109.692493,31.172584],[109.703688,31.169903],[109.727944,31.171743],[109.742773,31.178185],[109.760646,31.175144],[109.770564,31.16166],[109.769533,31.143771],[109.758289,31.129242],[109.764819,31.11495],[109.753428,31.113389],[109.744442,31.100616],[109.724507,31.090125],[109.72107,31.074346],[109.685127,31.053516],[109.662737,31.042338],[109.605829,31.017655],[109.598611,31.010841],[109.612555,30.995971],[109.61177,30.986911],[109.60082,30.977129],[109.601999,30.962814],[109.596941,30.95327],[109.601557,30.941639],[109.59812,30.936465],[109.603079,30.922345],[109.609904,30.91693],[109.612752,30.90389],[109.594879,30.905415],[109.594584,30.902044],[109.574207,30.900961],[109.561392,30.893698],[109.569543,30.873712],[109.585648,30.871384],[109.588839,30.865885],[109.61506,30.861951],[109.615256,30.848222],[109.608087,30.846214],[109.607203,30.838225],[109.628661,30.820998],[109.636517,30.821922],[109.646435,30.803929],[109.644226,30.794128],[109.649725,30.778782],[109.659153,30.761987]]]]}},{"type":"Feature","properties":{"adcode":500238,"name":"巫溪县","center":[109.628912,31.3966],"centroid":[109.35337,31.503107],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":33,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.94291,31.475341],[109.942174,31.483238],[109.957248,31.490774],[109.961323,31.499268],[109.98229,31.512504],[109.965595,31.50788],[109.945267,31.506684],[109.934907,31.517727],[109.923859,31.521474],[109.894594,31.519162],[109.878194,31.528848],[109.869209,31.530124],[109.860174,31.543555],[109.83798,31.555272],[109.822071,31.553757],[109.801007,31.541443],[109.788584,31.55045],[109.765457,31.549653],[109.760204,31.547182],[109.735309,31.546106],[109.718909,31.556985],[109.727502,31.570731],[109.746406,31.577982],[109.745326,31.596426],[109.76423,31.602998],[109.737421,31.628683],[109.740416,31.635173],[109.740612,31.663636],[109.731872,31.673148],[109.728091,31.688828],[109.731086,31.700446],[109.709531,31.701122],[109.696028,31.70709],[109.693376,31.716558],[109.683016,31.71978],[109.659005,31.716956],[109.644913,31.720854],[109.617024,31.711585],[109.606172,31.714688],[109.580394,31.72869],[109.572096,31.726343],[109.549755,31.730002],[109.501095,31.717155],[109.491029,31.720973],[109.477134,31.720218],[109.472714,31.714649],[109.459703,31.715205],[109.45656,31.722008],[109.4462,31.722883],[109.425872,31.718786],[109.420274,31.720655],[109.411632,31.708244],[109.389487,31.705101],[109.361254,31.708642],[109.3232,31.70888],[109.302038,31.71067],[109.281611,31.716876],[109.266734,31.714927],[109.225145,31.724951],[109.227403,31.717035],[109.222542,31.701242],[109.228533,31.690817],[109.224261,31.688629],[109.209187,31.69412],[109.178253,31.69587],[109.16696,31.700207],[109.158514,31.69396],[109.148154,31.703669],[109.133325,31.705936],[109.122965,31.700167],[109.092473,31.699531],[109.06149,31.704743],[109.052013,31.696507],[109.038117,31.690777],[109.007036,31.691135],[109.0008,31.686758],[109.007331,31.673188],[109.00134,31.671039],[109.000407,31.657029],[108.992649,31.652969],[108.955529,31.654601],[108.954792,31.66288],[108.937607,31.652969],[108.918113,31.652929],[108.91448,31.660731],[108.906182,31.661248],[108.898227,31.65484],[108.892728,31.642578],[108.893268,31.632187],[108.887719,31.625657],[108.895821,31.614587],[108.894888,31.606025],[108.877997,31.602799],[108.865133,31.592801],[108.853398,31.578939],[108.837096,31.574237],[108.824133,31.578899],[108.820303,31.574596],[108.801399,31.574078],[108.794034,31.551366],[108.777094,31.543635],[108.769483,31.529845],[108.766881,31.513621],[108.761087,31.503893],[108.748026,31.505208],[108.730055,31.499746],[108.721707,31.503255],[108.703982,31.503972],[108.694554,31.499347],[108.69971,31.491652],[108.697255,31.476737],[108.703098,31.463814],[108.726617,31.455118],[108.740071,31.441834],[108.752298,31.443749],[108.759908,31.438602],[108.779205,31.435251],[108.800221,31.425155],[108.809894,31.417414],[108.795752,31.403086],[108.798748,31.396859],[108.816866,31.390233],[108.83248,31.375302],[108.822071,31.370271],[108.823053,31.356815],[108.834739,31.35382],[108.837096,31.346432],[108.865035,31.343716],[108.869896,31.339562],[108.887572,31.336007],[108.893268,31.342358],[108.89042,31.354738],[108.892826,31.364641],[108.886394,31.372148],[108.88988,31.383566],[108.900142,31.387558],[108.908146,31.383566],[108.916837,31.387399],[108.927197,31.386001],[108.936035,31.390991],[108.948409,31.382728],[108.962452,31.385722],[108.971487,31.380812],[108.983418,31.385762],[108.992207,31.380812],[109.020146,31.375781],[109.029181,31.370032],[109.05162,31.367117],[109.065712,31.364681],[109.079117,31.370112],[109.102735,31.364162],[109.123357,31.37083],[109.138137,31.366279],[109.176534,31.361527],[109.197206,31.362126],[109.213606,31.358332],[109.224114,31.362206],[109.235014,31.356975],[109.242085,31.362126],[109.266292,31.35985],[109.272577,31.355657],[109.322415,31.34779],[109.326392,31.324064],[109.334396,31.306925],[109.355853,31.295578],[109.354134,31.286826],[109.374757,31.286427],[109.376623,31.276236],[109.39042,31.262326],[109.387867,31.248654],[109.393857,31.242897],[109.415511,31.245496],[109.431617,31.240058],[109.435741,31.231981],[109.45003,31.238979],[109.450766,31.246535],[109.462698,31.250693],[109.479638,31.251772],[109.493533,31.249454],[109.497069,31.244816],[109.512487,31.243217],[109.518526,31.250333],[109.530409,31.253891],[109.55712,31.251053],[109.561883,31.243976],[109.569346,31.244456],[109.587366,31.260967],[109.602833,31.262686],[109.597776,31.268442],[109.61285,31.295018],[109.626893,31.295937],[109.644373,31.310641],[109.662443,31.294499],[109.690676,31.296577],[109.698679,31.302171],[109.713803,31.299094],[109.711446,31.31959],[109.716945,31.332013],[109.71503,31.338644],[109.720972,31.349746],[109.730006,31.356176],[109.749892,31.35362],[109.761431,31.346951],[109.775032,31.354179],[109.775425,31.361527],[109.785638,31.361088],[109.789223,31.377857],[109.803315,31.378336],[109.821384,31.387638],[109.830468,31.388317],[109.853496,31.382209],[109.890126,31.392069],[109.911878,31.392149],[109.922828,31.394664],[109.935005,31.414381],[109.940553,31.427869],[109.937804,31.440836],[109.94183,31.448456],[109.938049,31.458748],[109.94291,31.475341]]]]}},{"type":"Feature","properties":{"adcode":500240,"name":"石柱土家族自治县","center":[108.112448,29.99853],"centroid":[108.298494,30.093676],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":34,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.424054,30.488956],[108.42101,30.497176],[108.427786,30.512567],[108.412368,30.503059],[108.409962,30.517563],[108.399553,30.520504],[108.402253,30.529688],[108.409717,30.532749],[108.410404,30.543261],[108.404315,30.548295],[108.394593,30.536737],[108.378734,30.534884],[108.344657,30.476987],[108.338814,30.470337],[108.33248,30.449336],[108.317062,30.433129],[108.315835,30.425387],[108.298944,30.407562],[108.296538,30.401109],[108.275031,30.405546],[108.261479,30.388605],[108.254261,30.403529],[108.236732,30.409216],[108.223622,30.421274],[108.208351,30.408611],[108.186403,30.413854],[108.174619,30.410144],[108.152965,30.395019],[108.133128,30.362624],[108.12262,30.359799],[108.096449,30.358831],[108.084665,30.350115],[108.084419,30.343093],[108.094731,30.344667],[108.117072,30.329169],[108.127874,30.333487],[108.145894,30.334254],[108.163031,30.325294],[108.163473,30.321055],[108.147466,30.302606],[108.147318,30.297115],[108.127334,30.299982],[108.131606,30.288918],[108.129003,30.281125],[108.142212,30.273654],[108.141475,30.265495],[108.126303,30.255357],[108.129494,30.244531],[108.125861,30.235845],[108.121933,30.245824],[108.114273,30.251399],[108.103716,30.246995],[108.093994,30.253459],[108.097038,30.237259],[108.105533,30.232653],[108.101948,30.223482],[108.10843,30.219198],[108.124879,30.227199],[108.127383,30.223684],[108.119379,30.211803],[108.129887,30.210268],[108.120705,30.200568],[108.107595,30.207439],[108.085549,30.17862],[108.072438,30.175144],[108.070965,30.163702],[108.061587,30.157071],[108.075777,30.153917],[108.092374,30.129532],[108.083928,30.111209],[108.0554,30.072043],[108.037233,30.067591],[108.031144,30.072326],[108.034974,30.084183],[108.029622,30.089119],[108.021569,30.078032],[108.010571,30.071355],[108.00733,30.057028],[107.998492,30.053871],[108.007575,30.043508],[108.01661,30.042132],[108.02702,30.029056],[108.018476,30.014804],[108.024859,30.010957],[108.03247,29.990222],[108.018034,29.971589],[108.009687,29.978476],[108.002027,29.977544],[107.993336,29.96689],[108.014695,29.9472],[108.024908,29.934962],[108.036005,29.912225],[108.046316,29.912387],[108.049999,29.906226],[108.035907,29.90197],[108.042536,29.893456],[108.059869,29.889726],[108.071456,29.877157],[108.072488,29.870953],[108.058936,29.857246],[108.084125,29.838873],[108.099199,29.840657],[108.108823,29.848851],[108.122915,29.851771],[108.145992,29.846377],[108.14997,29.83011],[108.167008,29.838305],[108.172998,29.837656],[108.177859,29.822443],[108.190626,29.819441],[108.194014,29.812665],[108.18547,29.801628],[108.194112,29.790712],[108.217484,29.777887],[108.208204,29.764938],[108.204129,29.765182],[108.187925,29.743909],[108.178252,29.749877],[108.172213,29.745533],[108.17457,29.735463],[108.181051,29.734286],[108.169168,29.7087],[108.179529,29.699602],[108.174962,29.686075],[108.156157,29.676121],[108.156304,29.669579],[108.143587,29.659218],[108.149921,29.647636],[108.156107,29.644872],[108.168186,29.648083],[108.169267,29.658445],[108.195143,29.666979],[108.208891,29.685343],[108.205847,29.69948],[108.22156,29.712153],[108.217975,29.716336],[108.225193,29.725514],[108.22097,29.732499],[108.227992,29.747076],[108.239384,29.745289],[108.245669,29.750892],[108.27071,29.733149],[108.295752,29.729007],[108.298895,29.734773],[108.30513,29.72588],[108.315785,29.722793],[108.326391,29.711747],[108.350156,29.721047],[108.358013,29.720763],[108.373922,29.712803],[108.368078,29.726042],[108.365918,29.748537],[108.36091,29.756819],[108.383987,29.795501],[108.3942,29.816479],[108.368177,29.818913],[108.372841,29.834127],[108.371466,29.84159],[108.391598,29.853231],[108.386933,29.860004],[108.392777,29.863492],[108.402793,29.855908],[108.433776,29.880077],[108.453122,29.871683],[108.457394,29.865438],[108.468049,29.864181],[108.489163,29.867466],[108.495693,29.876914],[108.509049,29.878617],[108.517052,29.865479],[108.516169,29.885631],[108.524221,29.896821],[108.524074,29.911658],[108.515874,29.930383],[108.519458,29.943512],[108.534238,29.971833],[108.542634,29.99735],[108.528886,30.00545],[108.530703,30.043104],[108.526185,30.04954],[108.531783,30.055085],[108.524221,30.058647],[108.516414,30.05298],[108.516267,30.064232],[108.525252,30.073824],[108.532323,30.073702],[108.533207,30.084183],[108.546071,30.104372],[108.561489,30.144132],[108.56748,30.155697],[108.552258,30.163338],[108.553829,30.174537],[108.568904,30.225623],[108.56743,30.23435],[108.573519,30.237178],[108.58167,30.255882],[108.567332,30.254872],[108.562029,30.26287],[108.545237,30.269978],[108.54617,30.276279],[108.537921,30.278581],[108.533305,30.292108],[108.52486,30.294733],[108.526382,30.305271],[108.51499,30.315162],[108.498394,30.316332],[108.48273,30.33603],[108.46908,30.343819],[108.459898,30.359799],[108.451011,30.355603],[108.432696,30.35411],[108.421943,30.366457],[108.403284,30.374728],[108.399454,30.389412],[108.420912,30.394131],[108.425331,30.399052],[108.421697,30.410547],[108.430486,30.415628],[108.421206,30.4295],[108.411779,30.436919],[108.421796,30.448852],[108.421206,30.464372],[108.414332,30.475818],[108.424054,30.488956]]]]}},{"type":"Feature","properties":{"adcode":500241,"name":"秀山土家族苗族自治县","center":[108.996043,28.444772],"centroid":[109.018121,28.491722],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":35,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.723377,28.491963],[108.729416,28.470918],[108.749106,28.461052],[108.746749,28.450239],[108.773509,28.438315],[108.779303,28.427418],[108.763296,28.398585],[108.762805,28.385791],[108.783084,28.380402],[108.777732,28.367441],[108.777929,28.347236],[108.76143,28.324557],[108.770072,28.314965],[108.763738,28.305619],[108.741053,28.294914],[108.725783,28.280296],[108.7276,28.259827],[108.737567,28.251424],[108.739678,28.226252],[108.749548,28.22757],[108.758681,28.220236],[108.758533,28.196046],[108.765309,28.192131],[108.773313,28.213478],[108.796636,28.22378],[108.807389,28.242855],[108.821776,28.245121],[108.826539,28.22551],[108.836212,28.20738],[108.855116,28.199879],[108.864445,28.206143],[108.897245,28.219536],[108.91227,28.21558],[108.919488,28.217764],[108.933187,28.207874],[108.927884,28.20025],[108.929407,28.190565],[108.956609,28.182321],[108.979539,28.171274],[108.985775,28.161339],[109.001537,28.16138],[109.009786,28.167893],[109.014647,28.17923],[109.013812,28.199591],[109.026186,28.220154],[109.038215,28.217434],[109.041603,28.20536],[109.06144,28.200126],[109.070033,28.191471],[109.086384,28.184712],[109.089477,28.196252],[109.101409,28.201404],[109.096106,28.22106],[109.085353,28.232803],[109.081523,28.24854],[109.088004,28.261392],[109.095959,28.261804],[109.117563,28.278607],[109.11614,28.288614],[109.126844,28.296932],[109.14123,28.320564],[109.137744,28.33423],[109.150805,28.344684],[109.151689,28.350528],[109.138579,28.358635],[109.144766,28.36382],[109.153113,28.38106],[109.153653,28.39731],[109.157139,28.403398],[109.154291,28.417588],[109.164946,28.414997],[109.168383,28.432064],[109.176731,28.43153],[109.180708,28.439466],[109.176583,28.446169],[109.192394,28.464423],[109.191756,28.470877],[109.215521,28.48214],[109.229613,28.474906],[109.274344,28.494676],[109.271988,28.51399],[109.280384,28.5204],[109.274688,28.524837],[109.27459,28.539217],[109.288928,28.546324],[109.29482,28.566286],[109.304738,28.579017],[109.3205,28.579797],[109.309354,28.598808],[109.306604,28.62069],[109.300172,28.626436],[109.287013,28.626806],[109.278469,28.612439],[109.258878,28.605583],[109.249401,28.608662],[109.236144,28.619417],[109.201478,28.598439],[109.186355,28.610632],[109.181395,28.621716],[109.193131,28.636205],[109.202902,28.63797],[109.221069,28.649133],[109.251758,28.660828],[109.270907,28.671783],[109.266194,28.680194],[109.252936,28.691558],[109.265015,28.699474],[109.271497,28.698941],[109.28495,28.713871],[109.294672,28.71912],[109.28824,28.727322],[109.300663,28.739665],[109.297668,28.748152],[109.278469,28.751514],[109.273019,28.760902],[109.256177,28.765616],[109.261333,28.774962],[109.241299,28.776519],[109.241888,28.794266],[109.246406,28.801683],[109.245817,28.812992],[109.239679,28.827168],[109.242674,28.85105],[109.234032,28.863828],[109.235505,28.880372],[109.211004,28.882788],[109.197943,28.875131],[109.197599,28.870217],[109.175896,28.8515],[109.166223,28.852402],[109.157188,28.844824],[109.147908,28.84552],[109.130919,28.832453],[109.117465,28.83106],[109.111622,28.824669],[109.104502,28.826595],[109.093455,28.819261],[109.092718,28.809305],[109.106712,28.816311],[109.105681,28.805699],[109.094338,28.79234],[109.05982,28.768198],[109.062128,28.759385],[109.05653,28.741879],[109.044991,28.719325],[109.01941,28.690696],[108.999622,28.699228],[108.990636,28.67884],[108.982633,28.682327],[108.961126,28.630213],[108.954252,28.610016],[108.936723,28.616913],[108.915314,28.621962],[108.895379,28.614737],[108.881484,28.621716],[108.854821,28.613136],[108.839256,28.604146],[108.819174,28.60082],[108.815295,28.593471],[108.799877,28.583657],[108.785981,28.562096],[108.785294,28.54924],[108.775964,28.544968],[108.763984,28.545707],[108.753329,28.532972],[108.730889,28.517853],[108.723377,28.491963]]]]}},{"type":"Feature","properties":{"adcode":500242,"name":"酉阳土家族苗族自治县","center":[108.767201,28.839828],"centroid":[108.800321,28.89987],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":36,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.235505,28.880372],[109.239924,28.892042],[109.256864,28.907721],[109.25544,28.926141],[109.261038,28.950532],[109.272331,28.970949],[109.284165,28.972299],[109.292463,28.987639],[109.292365,29.004695],[109.295458,29.016391],[109.304836,29.020808],[109.319616,29.04256],[109.312251,29.066351],[109.301154,29.070643],[109.287847,29.07101],[109.266194,29.079552],[109.257748,29.086745],[109.237273,29.086704],[109.22593,29.113508],[109.232559,29.120086],[109.228533,29.129972],[109.215521,29.145289],[109.203098,29.151823],[109.18007,29.171955],[109.16254,29.180693],[109.154488,29.172363],[109.138824,29.169505],[109.123014,29.191267],[109.122965,29.199268],[109.110395,29.215105],[109.118545,29.232409],[109.141967,29.270475],[109.129986,29.282468],[109.106467,29.288545],[109.10465,29.293154],[109.113881,29.314196],[109.108725,29.319333],[109.114568,29.332787],[109.110002,29.342693],[109.112506,29.360995],[109.101704,29.373506],[109.090361,29.378681],[109.080786,29.390661],[109.06419,29.401743],[109.053191,29.40272],[109.039934,29.389805],[109.033453,29.378233],[109.034729,29.360261],[109.009786,29.36022],[108.999425,29.363929],[108.994761,29.355085],[108.985088,29.350479],[108.986168,29.336742],[108.97237,29.32924],[108.956069,29.330953],[108.919734,29.326305],[108.908784,29.312972],[108.903432,29.296416],[108.915462,29.293561],[108.919783,29.283732],[108.93903,29.274065],[108.954252,29.272066],[108.937607,29.244283],[108.925871,29.23347],[108.925135,29.222615],[108.915265,29.215513],[108.896607,29.209024],[108.882416,29.1791],[108.854625,29.133484],[108.855656,29.122659],[108.847702,29.105214],[108.833266,29.109995],[108.832087,29.117267],[108.812054,29.122047],[108.803756,29.129195],[108.784852,29.123272],[108.775768,29.124008],[108.774295,29.110485],[108.749008,29.10881],[108.747584,29.092384],[108.726912,29.080492],[108.700397,29.094427],[108.698777,29.101619],[108.686698,29.109341],[108.681984,29.105623],[108.668678,29.108156],[108.66416,29.103744],[108.669856,29.095939],[108.662835,29.090382],[108.667205,29.078776],[108.661313,29.071624],[108.646533,29.081841],[108.628906,29.072891],[108.622179,29.073422],[108.625665,29.08699],[108.614568,29.095408],[108.615206,29.109709],[108.60789,29.109014],[108.599396,29.086908],[108.587169,29.095081],[108.598266,29.105705],[108.570769,29.124416],[108.55869,29.13953],[108.534631,29.133975],[108.528198,29.128338],[108.527167,29.117798],[108.518329,29.100148],[108.505464,29.095326],[108.492109,29.095245],[108.473008,29.08462],[108.464858,29.087521],[108.456314,29.071951],[108.447279,29.066187],[108.434906,29.070643],[108.424987,29.057277],[108.415756,29.051268],[108.394446,29.053107],[108.373627,29.044849],[108.348143,29.027228],[108.331989,29.010911],[108.326686,29.000932],[108.312103,28.997497],[108.322954,28.953969],[108.339943,28.947872],[108.346916,28.941488],[108.350549,28.930316],[108.350353,28.907107],[108.357423,28.893393],[108.355312,28.870831],[108.346425,28.856333],[108.355165,28.831634],[108.354232,28.814263],[108.382416,28.805781],[108.386492,28.801642],[108.388996,28.785823],[108.385264,28.772216],[108.375051,28.767092],[108.372498,28.760164],[108.347259,28.736302],[108.347898,28.710262],[108.340238,28.689671],[108.332529,28.679579],[108.344019,28.673425],[108.35217,28.676091],[108.39096,28.651759],[108.421697,28.643346],[108.43903,28.633989],[108.461371,28.634153],[108.471142,28.627791],[108.491274,28.630582],[108.500996,28.626642],[108.502715,28.637601],[108.517985,28.639981],[108.524614,28.647122],[108.53851,28.652703],[108.548723,28.64782],[108.561146,28.649174],[108.564828,28.661156],[108.574796,28.660336],[108.586482,28.64704],[108.585303,28.639653],[108.596155,28.64035],[108.609019,28.633619],[108.623259,28.641418],[108.632343,28.638914],[108.636025,28.621757],[108.618889,28.606527],[108.604453,28.589529],[108.610934,28.539381],[108.58933,28.538601],[108.576858,28.533794],[108.573224,28.528124],[108.578036,28.509018],[108.574943,28.497676],[108.589182,28.473837],[108.586776,28.463066],[108.597235,28.456817],[108.602833,28.438849],[108.609952,28.435683],[108.608823,28.407306],[108.587415,28.404961],[108.577545,28.390193],[108.576367,28.364314],[108.580099,28.343285],[108.598021,28.34205],[108.606466,28.336576],[108.611573,28.324557],[108.630771,28.328014],[108.639855,28.333201],[108.647466,28.331101],[108.667352,28.334436],[108.677418,28.345795],[108.670102,28.354396],[108.659103,28.350322],[108.657041,28.362215],[108.664701,28.38287],[108.693523,28.395171],[108.696813,28.404591],[108.690921,28.410555],[108.688318,28.422318],[108.669856,28.431489],[108.663915,28.444318],[108.641476,28.455707],[108.645256,28.468616],[108.658661,28.47803],[108.671133,28.475276],[108.688613,28.482469],[108.701428,28.482469],[108.709727,28.501087],[108.723377,28.491963],[108.730889,28.517853],[108.753329,28.532972],[108.763984,28.545707],[108.775964,28.544968],[108.785294,28.54924],[108.785981,28.562096],[108.799877,28.583657],[108.815295,28.593471],[108.819174,28.60082],[108.839256,28.604146],[108.854821,28.613136],[108.881484,28.621716],[108.895379,28.614737],[108.915314,28.621962],[108.936723,28.616913],[108.954252,28.610016],[108.961126,28.630213],[108.982633,28.682327],[108.990636,28.67884],[108.999622,28.699228],[109.01941,28.690696],[109.044991,28.719325],[109.05653,28.741879],[109.062128,28.759385],[109.05982,28.768198],[109.094338,28.79234],[109.105681,28.805699],[109.106712,28.816311],[109.092718,28.809305],[109.093455,28.819261],[109.104502,28.826595],[109.111622,28.824669],[109.117465,28.83106],[109.130919,28.832453],[109.147908,28.84552],[109.157188,28.844824],[109.166223,28.852402],[109.175896,28.8515],[109.197599,28.870217],[109.197943,28.875131],[109.211004,28.882788],[109.235505,28.880372]]]]}},{"type":"Feature","properties":{"adcode":500243,"name":"彭水苗族土家族自治县","center":[108.166551,29.293856],"centroid":[108.266309,29.353956],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":37,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.312103,28.997497],[108.326686,29.000932],[108.331989,29.010911],[108.348143,29.027228],[108.373627,29.044849],[108.394446,29.053107],[108.415756,29.051268],[108.424987,29.057277],[108.434906,29.070643],[108.447279,29.066187],[108.456314,29.071951],[108.464858,29.087521],[108.473008,29.08462],[108.492109,29.095245],[108.505464,29.095326],[108.518329,29.100148],[108.527167,29.117798],[108.528198,29.128338],[108.534631,29.133975],[108.55869,29.13953],[108.570671,29.152313],[108.574403,29.164115],[108.556775,29.184857],[108.548919,29.205064],[108.555597,29.218738],[108.569247,29.224941],[108.568314,29.236245],[108.575778,29.252362],[108.571948,29.265703],[108.583192,29.278063],[108.584272,29.285812],[108.573568,29.302411],[108.560409,29.306081],[108.549459,29.315378],[108.549705,29.328303],[108.561538,29.352598],[108.550196,29.371754],[108.547201,29.381697],[108.552995,29.390539],[108.555843,29.412701],[108.576367,29.41706],[108.59257,29.442963],[108.581228,29.464911],[108.585549,29.477328],[108.561686,29.491657],[108.539688,29.491697],[108.50954,29.50285],[108.501242,29.49996],[108.494711,29.515099],[108.506054,29.536868],[108.515334,29.543948],[108.536251,29.540001],[108.547643,29.547406],[108.548379,29.557575],[108.534532,29.572177],[108.534974,29.588851],[108.516709,29.602148],[108.512633,29.614467],[108.507036,29.611093],[108.499965,29.622069],[108.487199,29.624102],[108.489997,29.642515],[108.504139,29.666288],[108.503549,29.67669],[108.52373,29.683109],[108.526676,29.696759],[108.506446,29.708172],[108.489506,29.723199],[108.467656,29.729697],[108.460487,29.740904],[108.437115,29.740782],[108.438588,29.75617],[108.445462,29.76437],[108.444235,29.776913],[108.421304,29.774153],[108.416984,29.787344],[108.425478,29.804185],[108.424496,29.815302],[108.408882,29.820658],[108.404561,29.834451],[108.393169,29.83583],[108.3942,29.816479],[108.383987,29.795501],[108.36091,29.756819],[108.365918,29.748537],[108.368078,29.726042],[108.373922,29.712803],[108.358013,29.720763],[108.350156,29.721047],[108.326391,29.711747],[108.315785,29.722793],[108.30513,29.72588],[108.298895,29.734773],[108.295752,29.729007],[108.27071,29.733149],[108.245669,29.750892],[108.239384,29.745289],[108.227992,29.747076],[108.22097,29.732499],[108.225193,29.725514],[108.217975,29.716336],[108.22156,29.712153],[108.205847,29.69948],[108.208891,29.685343],[108.195143,29.666979],[108.169267,29.658445],[108.168186,29.648083],[108.17894,29.647839],[108.182033,29.625972],[108.178547,29.619183],[108.167499,29.617679],[108.163374,29.603612],[108.153652,29.599749],[108.132391,29.603815],[108.117366,29.603449],[108.114175,29.599302],[108.098757,29.600684],[108.082161,29.611377],[108.078773,29.618817],[108.067872,29.614223],[108.076563,29.605726],[108.084026,29.588892],[108.075876,29.577627],[108.066153,29.575472],[108.066988,29.566687],[108.075826,29.557982],[108.074059,29.549073],[108.055793,29.531783],[108.015432,29.504559],[108.017347,29.483719],[108.013959,29.469674],[108.013075,29.448786],[108.002763,29.442108],[108.004286,29.428424],[107.989653,29.416856],[107.992796,29.397383],[107.988426,29.38027],[107.976641,29.36344],[107.983319,29.350397],[107.984301,29.339188],[107.992059,29.325408],[108.003304,29.315174],[107.996282,29.288545],[107.998983,29.273943],[107.99697,29.26248],[108.010325,29.247792],[108.006446,29.229267],[107.997804,29.236857],[107.986756,29.217799],[107.973057,29.210166],[107.970111,29.198492],[107.960143,29.188695],[107.94286,29.178243],[107.934905,29.185102],[107.911975,29.190328],[107.898865,29.184245],[107.903775,29.172282],[107.899896,29.166361],[107.892727,29.134138],[107.895133,29.117185],[107.883889,29.106195],[107.889486,29.085151],[107.883938,29.078163],[107.873086,29.074852],[107.874707,29.057031],[107.849567,29.039289],[107.838421,29.040597],[107.823543,29.034219],[107.821186,29.005758],[107.810433,28.984285],[107.82811,28.976144],[107.842005,28.964648],[107.867538,28.960475],[107.872006,28.983058],[107.883054,28.986535],[107.887571,29.000114],[107.885215,29.008417],[107.908783,29.007353],[107.931124,29.035241],[107.949292,29.033729],[107.993925,29.033851],[108.02427,29.038676],[108.034532,29.046771],[108.035956,29.054047],[108.070474,29.086418],[108.109854,29.076078],[108.130624,29.063326],[108.132686,29.054088],[108.150068,29.053311],[108.171427,29.06537],[108.197745,29.070643],[108.204718,29.056786],[108.215029,29.056132],[108.230398,29.046975],[108.224653,29.031562],[108.24228,29.028372],[108.256962,29.041987],[108.260203,29.063735],[108.268648,29.077795],[108.270612,29.090913],[108.28657,29.089197],[108.301939,29.083067],[108.307193,29.077509],[108.297863,29.047179],[108.309795,29.018436],[108.308715,29.003386],[108.312103,28.997497]]]]}}]}')}},s={};function c(e){var t=s[e];if(void 0!==t)return t.exports;var r=s[e]={exports:{}};return i[e].call(r.exports,r,r.exports,c),r.exports}c.m=i,c.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return c.d(t,{a:t}),t},t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,c.t=function(r,o){if(1&o&&(r=this(r)),8&o||"object"==typeof r&&r&&(4&o&&r.__esModule||16&o&&"function"==typeof r.then))return r;var a=Object.create(null);c.r(a);var n={};e=e||[null,t({}),t([]),t(t)];for(var i=2&o&&r;("object"==typeof i||"function"==typeof i)&&!~e.indexOf(i);i=t(i))Object.getOwnPropertyNames(i).forEach(e=>{n[e]=()=>r[e]});return n.default=()=>r,c.d(a,n),a},c.d=(e,t)=>{for(var r in t)c.o(t,r)&&!c.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},c.g=(()=>{if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}})(),c.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),c.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r=[],c.O=(e,t,o,a)=>{if(t){a=a||0;for(var n=r.length;n>0&&r[n-1][2]>a;n--)r[n]=r[n-1];r[n]=[t,o,a];return}for(var i=1/0,n=0;n=a)&&Object.keys(c.O).every(e=>c.O[e](t[l]))?t.splice(l--,1):(s=!1,a0===o[e],a=(e,t)=>{var r,a,[n,i,s]=t,l=0;if(n.some(e=>0!==o[e])){for(r in i)c.o(i,r)&&(c.m[r]=i[r]);if(s)var d=s(c)}for(e&&e(t);lc(99682));return c.O(l)})()); \ No newline at end of file