From 4eda52ac89587515d6a20574c0711fe22de0a8c0 Mon Sep 17 00:00:00 2001 From: wbfsa Date: Tue, 25 Aug 2020 20:21:47 +0800 Subject: [PATCH 01/19] fix(websocket bux): bug --- src/controllers/server.js | 5 ++++- src/index.html | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/controllers/server.js b/src/controllers/server.js index 6ef4891..a66814d 100644 --- a/src/controllers/server.js +++ b/src/controllers/server.js @@ -124,7 +124,10 @@ const server = { let msg = pako.gzip(encodeURIComponent(JSON.stringify(d)), { to: "string" }); - _this.websocket.send(msg); + if(_this.websocket!=null){ + _this.websocket.send(msg); + } + }, websocket: null, wxErrorCount: 0, diff --git a/src/index.html b/src/index.html index 205e4b8..9d07bf7 100644 --- a/src/index.html +++ b/src/index.html @@ -37,6 +37,8 @@ allowEdit:true, forceCalculation:false, plugins: ['chart'], + allowUpdate:true, + updateUrl:"www.baidu.com", data: [sheetCell,sheetFormula,sheetConditionFormat,sheetTable,sheetSparkline,sheetComment,sheetPivotTableData,sheetPivotTable,sheetChart] }) From 1e33eff17a8983aca8582065f6ee1cdc53ac559c Mon Sep 17 00:00:00 2001 From: lrz <1414556676@qq.com> Date: Thu, 27 Aug 2020 17:56:50 +0800 Subject: [PATCH 02/19] docs(doc): doc sheet, config --- README-zh.md | 3 + README.md | 5 +- docs/zh/guide/cell.md | 9 ++ docs/zh/guide/config.md | 221 ++++++++++++++++++++++++++-------------- docs/zh/guide/sheet.md | 12 ++- src/global/draw.js | 2 +- src/index.html | 2 +- 7 files changed, 173 insertions(+), 81 deletions(-) diff --git a/README-zh.md b/README-zh.md index ebc83e7..2531f3e 100644 --- a/README-zh.md +++ b/README-zh.md @@ -171,7 +171,10 @@ npm run build [英文社群](./README.md) ## 贡献者和感谢 +- [@wbfsa](https://github.com/wbfsa) - [@wpxp123456](https://github.com/wpxp123456) +- [@swen-xiong](https://github.com/swen-xiong) +- [@tonytonychopper123](https://github.com/tonytonychopper123) - [@Dushusir](https://github.com/Dushusir) ## 版权信息 diff --git a/README.md b/README.md index 8bcf504..2fc6d0a 100644 --- a/README.md +++ b/README.md @@ -154,7 +154,7 @@ Create a table }) ``` -## Join the co-construction +## Co-construction If you want to implement an important function for Luckysheet, you need to write an RFC document first, follow Luckysheet's [RFC](https://github.com/mengshukeji/Luckysheet-rfcs) to operate, and submit the code after community discussion and improvement. @@ -169,7 +169,10 @@ If you want to implement an important function for Luckysheet, you need to write [Chinese community](./README-zh.md) ## Authors and acknowledgment +- [@wbfsa](https://github.com/wbfsa) - [@wpxp123456](https://github.com/wpxp123456) +- [@swen-xiong](https://github.com/swen-xiong) +- [@tonytonychopper123](https://github.com/tonytonychopper123) - [@Dushusir](https://github.com/Dushusir) ## License diff --git a/docs/zh/guide/cell.md b/docs/zh/guide/cell.md index b048210..3751860 100644 --- a/docs/zh/guide/cell.md +++ b/docs/zh/guide/cell.md @@ -147,6 +147,15 @@ + + ae + allowEdit + 是否允许编辑 + + 0: 只读,不可编辑 1:可以编辑,默认为 1 + + + 一个规范的单元格对象如下: diff --git a/docs/zh/guide/config.md b/docs/zh/guide/config.md index dc908d4..4fb5ccf 100644 --- a/docs/zh/guide/config.md +++ b/docs/zh/guide/config.md @@ -22,48 +22,59 @@ luckysheet.create(options) 这里的`options`配置项会作用于整个表格,特别的,单个sheet的配置则需要在`options.data`数组中,分别设置对应更详细的参数,参考[工作表配置](/zh/guide/sheet.html) +针对个性化的需求,除了允许配置名称栏([showinfobar](#showinfobar))、工具栏([showtoolbar](#showtoolbar))、底部sheet页([showsheetbar](#showsheetbar))、底部计数栏([showstatisticBar](#showstatisticBar))之外, +Luckysheet开放了更细致的自定义配置选项,分别有 + +- 自定义工具栏([showtoolbarConfig](#showtoolbarConfig)) +- 自定义底部sheet页([showsheetbarConfig](#showsheetbarConfig)) +- 自定义计数栏([showstatisticBarConfig](#showstatisticBarConfig)) +- 自定义添加行和回到顶部([sheetBottomConfig](#sheetBottomConfig)) +- 自定义单元格右键菜单([cellRightClickConfig](#cellRightClickConfig)) +- 自定义sheet页右击菜单([sheetRightClickConfig](#sheetRightClickConfig)) + + ## 配置项 以下为所有支持的设置参数 -- [container](#container) -- [title](#title) -- [lang](#lang) -- [gridKey](#gridKey) -- [loadUrl](#loadUrl) -- [loadSheetUrl](#loadSheetUrl) -- [allowUpdate](#allowUpdate) -- [updateUrl](#updateUrl) -- [updateImageUrl](#updateImageUrl) -- [data](#data) -- [plugins](#plugins) -- [column](#column) -- [row](#row) -- [autoFormatw](#autoFormatw) -- [accuracy](#accuracy) -- [allowCopy](#allowCopy) -- [showtoolbar](#showtoolbar) -- [showtoolbarConfig](#showtoolbarConfig) -- [showinfobar](#showinfobar) -- [showsheetbar](#showsheetbar) -- [showsheetbarConfig](#showsheetbarConfig) -- [showstatisticBar](#showstatisticBar) -- [showstatisticBarConfig](#showstatisticBarConfig) -- [allowEdit](#allowEdit) -- [enableAddRow](#enableAddRow) -- [enableAddCol](#enableAddCol) -- [userInfo](#userInfo) -- [userMenuItem](#userMenuItem) -- [myFolderUrl](#myFolderUrl) -- [devicePixelRatio](#devicePixelRatio) -- [functionButton](#functionButton) -- [showConfigWindowResize](#showConfigWindowResize) -- [enablePage](#enablePage) -- [fullscreenmode](#fullscreenmode) -- [beforeCreateDom](#beforeCreateDom) -- [fireMousedown](#fireMousedown) -- [forceCalculation](#forceCalculation) -- [rightClickConfig](#rightClickConfig) +- 容器ID [container](#container) +- 工作簿名称 [title](#title) +- 语言 [lang](#lang) +- 唯一key [gridKey](#gridKey) +- 加载整个工作簿 [loadUrl](#loadUrl) +- 加载其它页celldata [loadSheetUrl](#loadSheetUrl) +- 允许更新 [allowUpdate](#allowUpdate) +- 更新地址 [updateUrl](#updateUrl) +- 缩略图更新地址 [updateImageUrl](#updateImageUrl) +- 工作表配置 [data](#data) +- 插件 [plugins](#plugins) +- 列数 [column](#column) +- 行数 [row](#row) +- 亿万格式 [autoFormatw](#autoFormatw) +- 精度 [accuracy](#accuracy) +- 允许复制 [allowCopy](#allowCopy) +- 工具栏 [showtoolbar](#showtoolbar) +- 自定义工具栏[showtoolbarConfig](#showtoolbarConfig) +- 名称栏 [showinfobar](#showinfobar) +- 底部sheet页 [showsheetbar](#showsheetbar) +- 自定义底部sheet页 [showsheetbarConfig](#showsheetbarConfig) +- 底部计数栏 [showstatisticBar](#showstatisticBar) +- 自定义计数栏 [showstatisticBarConfig](#showstatisticBarConfig) +- 自定义添加行和回到顶部 [sheetBottomConfig](#sheetBottomConfig) +- 允许编辑 [allowEdit](#allowEdit) +- 允许增加行 [enableAddRow](#enableAddRow) +- 允许增加列 [enableAddCol](#enableAddCol) +- 用户信息 [userInfo](#userInfo) +- 用户信息菜单 [userMenuItem](#userMenuItem) +- 返回按钮链接 [myFolderUrl](#myFolderUrl) +- 比例 [devicePixelRatio](#devicePixelRatio) +- 功能按钮 [functionButton](#functionButton) +- 自动缩进界面 [showConfigWindowResize](#showConfigWindowResize) +- 加载下一页 [enablePage](#enablePage) +- 全屏模式 [fullscreenmode](#fullscreenmode) +- 刷新公式 [forceCalculation](#forceCalculation) +- 自定义单元格右键菜单 [cellRightClickConfig](#cellRightClickConfig) +- 自定义sheet页右击菜单 [sheetRightClickConfig](#sheetRightClickConfig) ### container - 类型:String @@ -74,7 +85,7 @@ luckysheet.create(options) ### title - 类型:String - 默认值:"Luckysheet Demo" -- 作用:表格的名称 +- 作用:工作簿名称 ------------ ### lang @@ -167,7 +178,7 @@ luckysheet.create(options) - 作用:是否第二列显示工具栏 ------------ -#### showtoolbarConfig +### showtoolbarConfig - 类型:Object - 默认值:{} - 作用:自定义配置工具栏 @@ -218,13 +229,13 @@ luckysheet.create(options) ### showsheetbar - 类型:Boolean - 默认值:true -- 作用:是否显示底部表格名称区域 +- 作用:是否显示底部sheet页按钮 ------------ ### showsheetbarConfig - 类型:Object - 默认值:{} -- 作用:自定义配置底部表格名称区域 +- 作用:自定义配置底部sheet页按钮 - 格式: ```json { @@ -252,6 +263,18 @@ luckysheet.create(options) zoom: false // 缩放 } +------------ +### sheetBottomConfig +- 类型:Object +- 默认值:{} +- 作用:sheet页下方的添加行按钮和回到顶部按钮配置 +- 格式: + ```json + { + addRow: false, // 添加行按钮 + backTop: false // 回到顶部 + } + ------------ ### allowEdit - 类型:Boolean @@ -318,18 +341,6 @@ luckysheet.create(options) - 默认值:true - 作用:是否全屏模式。非全屏模式下,标记框不会强制选中 ------------- -### beforeCreateDom -- 类型:Function -- 默认值:null -- 作用:表格创建之前自定义方法 - ------------- -### fireMousedown -- 类型:Function -- 默认值:null -- 作用:单元格数据下钻自定义方法 - ------------ ### forceCalculation - 类型:Boolean @@ -343,33 +354,54 @@ luckysheet.create(options) ⚠️提醒,公式较多时会有性能问题,慎用! ------------ -### rightClickConfig +### cellRightClickConfig - 类型:Object - 默认值:{} -- 作用:自定义配置右击菜单 +- 作用:自定义配置单元格右击菜单 - 格式: ```json { - copy:false, // '复制' - copyAs:false, // '复制为' - paste:false, // '粘贴', - insert:false, // '插入', - delete:false, // '删除', - hide:false, // '隐藏', - deleteCell:false, // '删除单元格', - clear:false, // '清除内容', - matrix:false, // '矩阵操作选区', - sort:false, // '排序选区', - filter:false, //'筛选选区', - chart:false, // '图表生成', + copy: false, // '复制' + copyAs: false, // '复制为' + paste: false, // '粘贴' + insert: false, // '插入' + delete: false, // '删除' + hide: false, // '隐藏' + deleteCell: false, // '删除单元格' + clear: false, // '清除内容' + matrix: false, // '矩阵操作选区' + sort: false, // '排序选区' + filter: false, //'筛选选区' + chart: false // '图表生成' } +------------ +### sheetRightClickConfig +- 类型:Object +- 默认值:{} +- 作用:自定义配置sheet页右击菜单 +- 格式: + ```json + { + delete: false, // '删除' + copy: false, // '复制' + rename: false, //重命名 + color: false, //更改颜色 + hide: false, //隐藏 + show: false, //取消隐藏 + left: false, //向左移 + right: false //向右移 + } + +------------ + ## 钩子函数 钩子函数应用于二次开发时,会在各个常用鼠标或者键盘操作时植入钩子,调用开发者传入的函数,起到扩展Luckysheet功能的作用。 -钩子函数统一配置在`options.hook`下,可以分别针对单元格、sheet页、表格创建配置hook +钩子函数统一配置在`options.hook`下,可以分别针对单元格、sheet页、表格创建配置hook。 +------------ ### cellHover - 类型:Function - 默认值:null @@ -380,38 +412,75 @@ luckysheet.create(options) - {Object} [v]: 单元格对象 ------------ - ### cellClickBefore - 类型:Function - 默认值:null - 作用:点击单元格前触发,即在点击单元格的时候,最先触发这个方法 ------------ - -### cellClickAfter +### cellClicked - 类型:Function - 默认值:null - 作用:点击单元格后触发,即在点击单元格的时候,最后触发这个方法 ------------ +### cellEditBefore +- 类型:Function +- 默认值:null +- 作用:双击单元格后触发,即在双击单元格编辑内容的时候,最先触发这个方法 + +------------ +### cellEdited +- 类型:Function +- 默认值:null +- 作用:双击单元格后触发,即在双击单元格编辑内容的时候,最后触发这个方法 +------------ ### sheetClickBefore - 类型:Function - 默认值:null - 作用:点击sheet页前触发 ------------ - -### sheetClickAfter +### sheetClicked - 类型:Function - 默认值:null - 作用:点击sheet页后触发 ------------ +### workbookCreateBefore +- 类型:Function +- 默认值:null +- 作用:表格创建之前触发。旧的钩子函数叫做`beforeCreateDom` -### sheetClickAfter +------------ +### workbookCreated - 类型:Function - 默认值:null -- 作用:点击sheet页后触发 +- 作用:表格创建之后触发 ------------ +### workbookUpdated +- 类型:Function +- 默认值:null +- 作用:表格创建之后触发 + +------------ +### workbookDestroyBefore +- 类型:Function +- 默认值:null +- 作用:表格创建之后触发 + +------------ +### workbookDestroyed +- 类型:Function +- 默认值:null +- 作用:表格创建之后触发 + +------------ +### fireMousedown +- 类型:Function +- 默认值:null +- 作用:单元格数据下钻自定义方法 + +------------ \ No newline at end of file diff --git a/docs/zh/guide/sheet.md b/docs/zh/guide/sheet.md index 41ce8f4..90560e7 100644 --- a/docs/zh/guide/sheet.md +++ b/docs/zh/guide/sheet.md @@ -37,8 +37,9 @@ options.data示例如下: "luckysheet_alternateformat_save": [], //交替颜色 "luckysheet_alternateformat_save_modelCustom": [], //自定义交替颜色 "luckysheet_conditionformat_save": {},//条件格式 - "frozen": {}, //冻结行列 + "frozen": {}, //冻结行列配置 "chart": [], //图表配置 + "allowEdit": true, //是否允许编辑 }, { "name": "Sheet2", @@ -723,6 +724,12 @@ options.data示例如下: - 默认值:[] - 作用: 图表配置 +------------ +### allowEdit +- 类型:Boolean +- 默认值:true +- 作用: 此sheet页是否允许编辑 + ------------ ## 调试信息 @@ -765,7 +772,8 @@ Luckysheet在初始化完成之后进行的一系列操作,会将更多本地 "luckysheet_alternateformat_save": [], //交替颜色 "luckysheet_alternateformat_save_modelCustom": [], //自定义交替颜色 "luckysheet_conditionformat_save": {},//条件格式 - "freezen": {}, //冻结行列 + "frozen": {}, //冻结行列配置 + "freezen": {}, //冻结行列的渲染数据存储 "chart": [], //图表配置 "visibledatarow": [], //所有行的位置 diff --git a/src/global/draw.js b/src/global/draw.js index 3974103..4da0812 100644 --- a/src/global/draw.js +++ b/src/global/draw.js @@ -716,7 +716,7 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of let end_c = Store.visibledatacolumn[c] - scrollWidth; - //数据透视表\ + //数据透视表 if (!!Store.luckysheetcurrentisPivotTable && pivotTable.drawPivotTable) { if ((c == 0 || c == 5) && r <= 11) { luckysheetTableContent.beginPath(); diff --git a/src/index.html b/src/index.html index 58aff59..205e4b8 100644 --- a/src/index.html +++ b/src/index.html @@ -33,7 +33,7 @@ luckysheet.create({ container: 'luckysheet', - lang: 'zh', + lang: 'en', allowEdit:true, forceCalculation:false, plugins: ['chart'], From 4232dfc7832846013e623d13f6157ee1e371bda3 Mon Sep 17 00:00:00 2001 From: wpxp123456 <2677556700@qq.com> Date: Fri, 28 Aug 2020 17:45:37 +0800 Subject: [PATCH 03/19] feat(image insert): image insert image insert --- src/controllers/constant.js | 55 ++++++ src/controllers/handler.js | 169 +++++++++++++++++- src/controllers/imageCtrl.js | 283 ++++++++++++++++++++++++++++++ src/css/luckysheet-core.css | 218 +++++++++++++++++++++++ src/expendPlugins/chart/plugin.js | 8 +- 5 files changed, 728 insertions(+), 5 deletions(-) create mode 100644 src/controllers/imageCtrl.js diff --git a/src/controllers/constant.js b/src/controllers/constant.js index 3731014..12739a5 100644 --- a/src/controllers/constant.js +++ b/src/controllers/constant.js @@ -127,6 +127,57 @@ const gridHTML = function(){
+
+ + +
\${flow} @@ -1209,6 +1260,10 @@ function menuToolBar (){ ${toolbar.splitColumn} + +
+ 插入图片 +
`; } diff --git a/src/controllers/handler.js b/src/controllers/handler.js index f3182ed..559070e 100644 --- a/src/controllers/handler.js +++ b/src/controllers/handler.js @@ -4,6 +4,7 @@ import luckysheetFreezen from './freezen'; import pivotTable from './pivotTable'; import luckysheetDropCell from './dropCell'; import luckysheetPostil from './postil'; +import imageCtrl from './imageCtrl'; import menuButton from './menuButton'; import conditionformat from './conditionformat'; import alternateformat from './alternateformat'; @@ -1922,6 +1923,119 @@ export default function luckysheetHandler() { // resize chart Store.resizeChart(Store.chartparam.luckysheetCurrentChart) } + //image move + else if (imageCtrl.move) { + let mouse = mouseposition(event.pageX, event.pageY); + let x = mouse[0] + $("#luckysheet-cell-main").scrollLeft(); + let y = mouse[1] + $("#luckysheet-cell-main").scrollTop(); + + let myh = $("#luckysheet-modal-dialog-activeImage").outerHeight(), + myw = $("#luckysheet-modal-dialog-activeImage").outerWidth(); + + let top = y - imageCtrl.moveXY[1], + left = x - imageCtrl.moveXY[0]; + + if (top < 0) { + top = 0; + } + + if (top + myh + 42 + 6 > imageCtrl.currentWinH) { + top = imageCtrl.currentWinH - myh - 42 - 6; + } + + if (left < 0) { + left = 0; + } + + if (left + myw + 22 + 36 > imageCtrl.currentWinW) { + left = imageCtrl.currentWinW - myw - 22 - 36; + } + + $("#luckysheet-modal-dialog-activeImage").css({ "left": left, "top": top }); + } + //image resize + else if (!!imageCtrl.resize) { + let mouse = mouseposition(event.pageX, event.pageY); + let x = mouse[0] + $("#luckysheet-cell-main").scrollLeft(); + let y = mouse[1] + $("#luckysheet-cell-main").scrollTop(); + + if (x < 0 || y < 0) { + return false; + } + + let resizeXY = imageCtrl.resizeXY; + + let topchange = y - resizeXY[1], + leftchange = x - resizeXY[0]; + + let top = resizeXY[5], + height = resizeXY[3], + left = resizeXY[4], + width = resizeXY[2]; + + let resize = imageCtrl.resize; + + if (resize == "lm" || resize == "lt" || resize == "lb") { + left = x; + width = resizeXY[2] - leftchange; + + if (left > resizeXY[2] + resizeXY[4] - 60) { + left = resizeXY[2] + resizeXY[4] - 60; + width = resizeXY[2] - (resizeXY[2] + resizeXY[4] - 60 - resizeXY[0]); + } + else if (left <= 0) { + left = 0; + width = resizeXY[2] + resizeXY[0]; + } + } + + if (resize == "rm" || resize == "rt" || resize == "rb") { + width = resizeXY[2] + leftchange; + + if (width < 60) { + width = 60; + } + else if (width >= imageCtrl.currentWinW - resizeXY[4] - 22 - 36) { + width = imageCtrl.currentWinW - resizeXY[4] - 22 - 36; + } + } + + if (resize == "mt" || resize == "lt" || resize == "rt") { + top = y; + height = resizeXY[3] - topchange; + + if (top > resizeXY[3] + resizeXY[5] - 60) { + top = resizeXY[3] + resizeXY[5] - 60; + height = resizeXY[3] - (resizeXY[3] + resizeXY[5] - 60 - resizeXY[1]); + } + else if (top <= 0) { + top = 0; + height = resizeXY[3] + resizeXY[1]; + } + } + + if (resize == "mb" || resize == "lb" || resize == "rb") { + height = resizeXY[3] + topchange; + + if (height < 60) { + height = 60; + } + else if (height >= imageCtrl.currentWinH - resizeXY[5] - 42 - 6) { + height = imageCtrl.currentWinH - resizeXY[5] - 42 - 6; + } + } + + $("#luckysheet-modal-dialog-activeImage").css({ + "width": width, + "height": height, + "left": left, + "top": top + }); + $("#luckysheet-modal-dialog-activeImage .luckysheet-modal-dialog-content").css({ + "background-size": width + "px " + height + "px", + "background-position": "0px 0px" + }) + } else if (luckysheetPostil.move) { let mouse = mouseposition(event.pageX, event.pageY); let x = mouse[0] + $("#luckysheet-cell-main").scrollLeft(); @@ -2029,7 +2143,8 @@ export default function luckysheetHandler() { } else if (!!formula.rangeMove) { formula.rangeMoveDraging(event, formula.rangeMovexy, formula.rangeMoveObj.data("range"), formula.rangeMoveObj, Store.sheetBarHeight, Store.statisticBarHeight); - } else if (!!Store.chart_selection.rangeResize) { + } + else if (!!Store.chart_selection.rangeResize) { Store.chart_selection.rangeResizeDraging(event, Store.sheetBarHeight, Store.statisticBarHeight); } else if (!!Store.chart_selection.rangeMove) { @@ -2208,6 +2323,16 @@ export default function luckysheetHandler() { formula.rangeResizeDragged(event, formula.rangeResizeObj, formula.rangeResize, formula.rangeResizexy, formula.rangeResizeWinW, formula.rangeResizeWinH); } + //image move + if (imageCtrl.move) { + imageCtrl.moveImgItem(); + } + + //image resize + if (imageCtrl.resize) { + imageCtrl.resizeImgItem(); + } + //批注框 移动 if (luckysheetPostil.move) { luckysheetPostil.move = false; @@ -3414,6 +3539,48 @@ export default function luckysheetHandler() { splitColumn.init(); }); + //菜单栏 插入图片按钮 + $("#luckysheet-insertImg-btn-title").click(function () { + $("#luckysheet-imgUpload").click(); + }); + $("#luckysheet-imgUpload").click(function (e) { + e.stopPropagation(); + }); + $("#luckysheet-imgUpload").on("change", function(e){ + let file = e.currentTarget.files[0]; + let render = new FileReader(); + render.readAsDataURL(file); + + render.onload = function(event){ + let src = event.target.result; + + let rowIndex = Store.luckysheet_select_save[0].row_focus; + let colIndex = Store.luckysheet_select_save[0].column_focus; + let left = colIndex == 0 ? 0 : Store.visibledatacolumn[colIndex - 1]; + let top = rowIndex == 0 ? 0 : Store.visibledatarow[rowIndex - 1]; + + let image = new Image(); + image.onload = function(){ + let width = image.width, + height = image.height; + + let img = { + src: src, + left: left, + top: top, + originWidth: width, + originHeight: height + } + + imageCtrl.addImgItem(img); + $("#luckysheet-imgUpload").val(""); + } + image.src = src; + } + }); + + + //冻结行列 $("#luckysheet-freezen-btn-horizontal").click(function () { if ($.trim($(this).text()) == locale().freezen.freezenCancel) { diff --git a/src/controllers/imageCtrl.js b/src/controllers/imageCtrl.js new file mode 100644 index 0000000..c4fe94a --- /dev/null +++ b/src/controllers/imageCtrl.js @@ -0,0 +1,283 @@ +import { + rowLocation, + colLocation, + mouseposition +} from '../global/location'; +import { setluckysheet_scroll_status } from '../methods/set'; + +const imageCtrl = { + imgItem: { + src: '', //图片url + originWidth: null, //图片原始宽度 + originHeight: null, //图片原始高度 + default: { + width: null, //图片 宽度 + height: null, //图片 高度 + left: null, //图片离表格左边的 位置 + top: null, //图片离表格顶部的 位置 + }, + crop: { + width: null, //图片裁剪后 宽度 + height: null, //图片裁剪后 高度 + offsetLeft: 0, //图片裁剪后离未裁剪时 左边的位移 + offsetTop: 0, //图片裁剪后离未裁剪时 顶部的位移 + } + }, + images: null, + currentImgId: null, + currentWinW: null, + currentWinH: null, + resize: null, + resizeXY: null, + move: false, + moveXY: null, + generateRandomId: function(prefix) { + if(prefix == null){ + prefix = "img"; + } + + let userAgent = window.navigator.userAgent.replace(/[^a-zA-Z0-9]/g, "").split(""); + + let mid = ""; + + for(let i = 0; i < 12; i++){ + mid += userAgent[Math.round(Math.random() * (userAgent.length - 1))]; + } + + let time = new Date().getTime(); + + return prefix + "_" + mid + "_" + time; + }, + modelHtml: function(id, imgItem) { + let src = imgItem.src; + + let width = imgItem.default.width, + height = imgItem.default.height, + left = imgItem.default.left, + top = imgItem.default.top; + + return `
+
+ +
+
`; + }, + init: function() { + let _this = this; + + //image active + $("#luckysheet-image-showBoxs").off("mousedown.active").on("mousedown.active", ".luckysheet-modal-dialog-image", function(e) { + $(this).hide(); + + let id = $(this).attr("id"); + _this.currentImgId = id; + + let item = _this.images[id]; + + let width = item.default.width, + height = item.default.height, + left = item.default.left, + top = item.default.top; + + if(item.crop.width != width || item.crop.height != height){ + width = item.crop.width; + height = item.crop.height; + left = left + item.crop.offsetLeft; + top = top + item.crop.offsetTop; + } + + $("#luckysheet-modal-dialog-activeImage").show().css({ + "width": width, + "height": height, + "left": left, + "top": top + }); + + $("#luckysheet-modal-dialog-activeImage .luckysheet-modal-dialog-content").css({ + "background-image": "url(" + item.src + ")", + "background-size": item.default.width + "px " + item.default.height + "px", + "background-position": -item.crop.offsetLeft + "px " + -item.crop.offsetTop + "px" + }) + + e.stopPropagation(); + }) + + //image move + $("#luckysheet-modal-dialog-activeImage").off("mousedown.move").on("mousedown.move", ".luckysheet-modal-dialog-content", function(e) { + _this.move = true; + + _this.currentWinW = $("#luckysheet-cell-main")[0].scrollWidth; + _this.currentWinH = $("#luckysheet-cell-main")[0].scrollHeight; + + let scrollTop = $("#luckysheet-cell-main").scrollTop(), + scrollLeft = $("#luckysheet-cell-main").scrollLeft(); + + let offset = $("#luckysheet-modal-dialog-activeImage").offset(); + let position = $("#luckysheet-modal-dialog-activeImage").position(); + + _this.moveXY = [ + e.pageX - offset.left, + e.pageY - offset.top, + position.left, + position.top, + scrollLeft, + scrollTop + ]; + + setluckysheet_scroll_status(true); + + e.stopPropagation(); + }) + + //image resize + $("#luckysheet-modal-dialog-activeImage").off("mousedown.resize").on("mousedown.resize", ".luckysheet-modal-dialog-resize-item", function(e) { + _this.currentWinW = $("#luckysheet-cell-main")[0].scrollWidth; + _this.currentWinH = $("#luckysheet-cell-main")[0].scrollHeight; + + _this.resize = $(this).data("type"); + + let scrollTop = $("#luckysheet-cell-main").scrollTop(), + scrollLeft = $("#luckysheet-cell-main").scrollLeft(); + let mouse = mouseposition(e.pageX, e.pageY); + let x = mouse[0] + scrollLeft; + let y = mouse[1] + scrollTop; + + let position = $("#luckysheet-modal-dialog-activeImage").position(); + let width = $("#luckysheet-modal-dialog-activeImage").width(); + let height = $("#luckysheet-modal-dialog-activeImage").height(); + + _this.resizeXY = [ + x, + y, + width, + height, + position.left + scrollLeft, + position.top + scrollTop, + scrollLeft, + scrollTop + ]; + + setluckysheet_scroll_status(true); + + e.stopPropagation(); + }) + + //image crop + $("#luckysheet-modal-dialog-activeImage").off("mousedown.crop").on("mousedown.crop", ".luckysheet-modal-controll-crop", function(e) { + $("#luckysheet-modal-dialog-activeImage").hide(); + + let item = _this.images[_this.currentImgId]; + + let width = item.default.width, + height = item.default.height, + left = item.default.left, + top = item.default.top; + + if(item.crop.width != width || item.crop.height != height){ + width = item.crop.width; + height = item.crop.height; + left = left + item.crop.offsetLeft; + top = top + item.crop.offsetTop; + } + + $("#luckysheet-modal-dialog-cropping").show().css({ + "width": width, + "height": height, + "left": left, + "top": top + }); + + $("#luckysheet-modal-dialog-cropping .cropping-mask").css({ + "width": item.default.width, + "height": item.default.height, + "background-image": "url(" + item.src + ")", + "left": -item.crop.offsetLeft, + "top": -item.crop.offsetTop + }) + + $("#luckysheet-modal-dialog-cropping .cropping-content").css({ + "background-image": "url(" + item.src + ")", + "background-size": item.default.width + "px " + item.default.height + "px", + "background-position": -item.crop.offsetLeft + "px " + -item.crop.offsetTop + "px" + }) + + e.stopPropagation(); + }) + + //image delete + $("#luckysheet-modal-dialog-activeImage").off("mousedown.delete").on("mousedown.delete", ".luckysheet-modal-controll-del", function(e) { + _this.removeImgItem(); + }) + + }, + addImgItem: function(img) { + let _this = this; + + let width, height; + let max = 400; + + if(img.originHeight < img.originWidth){ + height = Math.round(img.originHeight * (max / img.originWidth)); + width = max; + } + else{ + width = Math.round(img.originWidth * (max / img.originHeight)); + height = max; + } + + if(_this.images == null){ + _this.images = {}; + } + + let imgItem = $.extend(true, {}, _this.imgItem); + imgItem.src = img.src; + imgItem.originWidth = img.originWidth; + imgItem.originHeight = img.originHeight; + imgItem.default.width = width; + imgItem.default.height = height; + imgItem.default.left = img.left; + imgItem.default.top = img.top; + imgItem.crop.width = width; + imgItem.crop.height = height; + + let id = _this.generateRandomId(); + let modelHtml = _this.modelHtml(id, imgItem); + + $("#luckysheet-image-showBoxs").append(modelHtml); + + _this.images[id] = imgItem; + + _this.init(); + }, + moveImgItem: function() { + let _this = this; + + _this.move = false; + + let position = $("#luckysheet-modal-dialog-activeImage").position(); + _this.images[_this.currentImgId].left = position.left; + _this.images[_this.currentImgId].top = position.top; + }, + resizeImgItem: function() { + let _this = this; + + _this.resize = null; + + let position = $("#luckysheet-modal-dialog-activeImage").position(); + let width = $("#luckysheet-modal-dialog-activeImage").outerWidth(); + let height = $("#luckysheet-modal-dialog-activeImage").outerHeight(); + + _this.images[_this.currentImgId].width = width; + _this.images[_this.currentImgId].height = height; + _this.images[_this.currentImgId].left = position.left; + _this.images[_this.currentImgId].top = position.top; + }, + removeImgItem: function() { + let _this = this; + + delete _this.images[_this.currentImgId]; + $("#luckysheet-modal-dialog-activeImage").hide(); + }, +} + +export default imageCtrl; \ No newline at end of file diff --git a/src/css/luckysheet-core.css b/src/css/luckysheet-core.css index 9965371..777039e 100644 --- a/src/css/luckysheet-core.css +++ b/src/css/luckysheet-core.css @@ -6397,3 +6397,221 @@ fieldset[disabled] a.btn { background: #FC6666; cursor: pointer; } + +/* 图片 */ +#luckysheet-modal-dialog-activeImage .luckysheet-modal-dialog-content{ + width: 100%; + height: 100%; + position: absolute; + left: 0; + top: 0; + cursor: move; +} +#luckysheet-modal-dialog-cropping::before{ + content: ""; + outline: 1px solid #fff; + position: absolute; + left: 33.3%; + right: 33.3%; + top: 0; + bottom: 0; + z-index: 1; + pointer-events: none; +} +#luckysheet-modal-dialog-cropping::after{ + content: ""; + outline: 1px solid #fff; + position: absolute; + left: 0; + right: 0; + top: 33.3%; + bottom: 33.3%; + z-index: 1; + pointer-events: none; +} +#luckysheet-modal-dialog-cropping .cropping-mask{ + filter: brightness(.5); + position: absolute; + background-size: 100% 100%; + left: 0; + top: 0; +} +#luckysheet-modal-dialog-cropping .cropping-content{ + position: absolute; + overflow: hidden; + background-position: 0 0; + left: 0; + top: 0; + width: 100%; + height: 100%; +} +#luckysheet-modal-dialog-cropping .luckysheet-modal-dialog-resize{ + border: none; + position: absolute; + margin: 0px; + padding: 0px; + top: 0; + left: 0; + bottom: 0; + right: 0; +} +#luckysheet-modal-dialog-cropping .resize-item{ + width: 0; + height: 0; + background: none; + border: none; + position: absolute; + z-index: 3; +} +#luckysheet-modal-dialog-cropping .resize-item::before{ + content: ""; + display: block; + position: absolute; + background: #000; +} +#luckysheet-modal-dialog-cropping .resize-item::after{ + content: ""; + display: block; + position: absolute; + background: #000; +} +#luckysheet-modal-dialog-cropping .lt{ + left: 0; + top: 0; + cursor: nwse-resize; +} +#luckysheet-modal-dialog-cropping .lt::before{ + width: 18px; + height: 4px; + left: 0; + top: 0; + border-right: 2px solid #fff; + border-bottom: 2px solid #fff; +} +#luckysheet-modal-dialog-cropping .lt::after{ + width: 4px; + height: 14px; + left: 0; + top: 4px; + border-right: 2px solid #fff; + border-bottom: 2px solid #fff; +} +#luckysheet-modal-dialog-cropping .mt{ + left: 50%; + top: 0; + cursor: ns-resize; +} +#luckysheet-modal-dialog-cropping .mt::before{ + width: 18px; + height: 4px; + left: -11px; + top: 0; + border-left: 2px solid #fff; + border-right: 2px solid #fff; + border-bottom: 2px solid #fff; +} +#luckysheet-modal-dialog-cropping .rt{ + right: 0; + top: 0; + cursor: nesw-resize; +} +#luckysheet-modal-dialog-cropping .rt::before{ + width: 18px; + height: 4px; + right: 0; + top: 0; + border-left: 2px solid #fff; + border-bottom: 2px solid #fff; +} +#luckysheet-modal-dialog-cropping .rt::after{ + width: 4px; + height: 14px; + right: 0; + top: 4px; + border-left: 2px solid #fff; + border-bottom: 2px solid #fff; +} +#luckysheet-modal-dialog-cropping .lm{ + left: 0; + top: 50%; + cursor: ew-resize; +} +#luckysheet-modal-dialog-cropping .lm::before{ + width: 4px; + height: 18px; + left: 0; + top: -11px; + border-right: 2px solid #fff; + border-top: 2px solid #fff; + border-bottom: 2px solid #fff; +} +#luckysheet-modal-dialog-cropping .rm{ + right: 0; + top: 50%; + cursor: ew-resize; +} +#luckysheet-modal-dialog-cropping .rm::before{ + width: 4px; + height: 18px; + right: 0; + top: -11px; + border-left: 2px solid #fff; + border-top: 2px solid #fff; + border-bottom: 2px solid #fff; +} +#luckysheet-modal-dialog-cropping .lb{ + left: 0; + bottom: 0; + cursor: nesw-resize; +} +#luckysheet-modal-dialog-cropping .lb::before{ + width: 18px; + height: 4px; + left: 0; + bottom: 0; + border-right: 2px solid #fff; + border-top: 2px solid #fff; +} +#luckysheet-modal-dialog-cropping .lb::after{ + width: 4px; + height: 14px; + left: 0; + bottom: 4px; + border-right: 2px solid #fff; + border-top: 2px solid #fff; +} +#luckysheet-modal-dialog-cropping .rb{ + right: 0; + bottom: 0; + cursor: nwse-resize; +} +#luckysheet-modal-dialog-cropping .rb::before{ + width: 18px; + height: 4px; + right: 0; + bottom: 0; + border-left: 2px solid #fff; + border-top: 2px solid #fff; +} +#luckysheet-modal-dialog-cropping .rb::after{ + width: 4px; + height: 14px; + right: 0; + bottom: 4px; + border-left: 2px solid #fff; + border-top: 2px solid #fff; +} +#luckysheet-modal-dialog-cropping .mb{ + left: 50%; + bottom: 0; + cursor: ns-resize; +} +#luckysheet-modal-dialog-cropping .mb::before{ + width: 18px; + height: 4px; + left: -11px; + bottom: 0; + border-left: 2px solid #fff; + border-right: 2px solid #fff; + border-top: 2px solid #fff; +} \ No newline at end of file diff --git a/src/expendPlugins/chart/plugin.js b/src/expendPlugins/chart/plugin.js index 0132c46..adc57b8 100644 --- a/src/expendPlugins/chart/plugin.js +++ b/src/expendPlugins/chart/plugin.js @@ -1387,10 +1387,10 @@ function selectRangeBorderShow(chart_id) { //luckysheet取cell-main,后续扩展到其他的用户自定义元素 $('#luckysheet-cell-main') - .find('.luckysheet-modal-dialog-resize') + .find('.luckysheet-modal-dialog-chart .luckysheet-modal-dialog-resize') .hide() $('#luckysheet-cell-main') - .find('.luckysheet-modal-dialog-controll') + .find('.luckysheet-modal-dialog-chart .luckysheet-modal-dialog-controll') .hide() $t.css('z-index', chartInfo.chartparam.luckysheetCurrentChartZIndexRank++) @@ -1413,7 +1413,7 @@ function selectRangeBorderShow(chart_id) { //选择区域高亮隐藏 function selectRangeBorderHide(settingShow) { - $('#luckysheet-cell-main .luckysheet-modal-dialog-resize, #luckysheet-cell-main .luckysheet-modal-dialog-controll').hide() + $('#luckysheet-cell-main .luckysheet-modal-dialog-chart .luckysheet-modal-dialog-resize, #luckysheet-cell-main .luckysheet-modal-dialog-chart .luckysheet-modal-dialog-controll').hide() $('#luckysheet-cell-main').find('.luckysheet-datavisual-selection-set div').remove() chartInfo.chartparam.luckysheetCurrentChartActive = false @@ -1447,7 +1447,7 @@ function hideChartSettingComponent(refresh) { //隐藏设置界面 $('.chartSetting').hide(); //.luckysheet-modal-dialog-resize为图表显示框的缩放框,.luckysheet-modal-dialog-controll为显示框右边的控制按钮 - $('#luckysheet-cell-main .luckysheet-modal-dialog-resize, #luckysheet-cell-main .luckysheet-modal-dialog-controll').hide() + $('#luckysheet-cell-main .luckysheet-modal-dialog-chart .luckysheet-modal-dialog-resize, #luckysheet-cell-main .luckysheet-modal-dialog-chart .luckysheet-modal-dialog-controll').hide() $('#luckysheet-cell-main').find('.luckysheet-datavisual-selection-set div').remove() From 552e37d2218a16804586413ff4552f7db772ce2a Mon Sep 17 00:00:00 2001 From: lrz <1414556676@qq.com> Date: Fri, 28 Aug 2020 20:46:19 +0800 Subject: [PATCH 04/19] docs(config): config config,readme --- README-zh.md | 16 +- README.md | 17 +- docs/guide/data.md | 8 +- docs/zh/guide/README.md | 2 +- docs/zh/guide/config.md | 53 +++- docs/zh/guide/operate.md | 192 +++++++++++++- docs/zh/guide/sheet.md | 532 ++++++++++++++++++++++++++++++++++++-- src/controllers/server.js | 2 +- 8 files changed, 770 insertions(+), 52 deletions(-) diff --git a/README-zh.md b/README-zh.md index 2531f3e..bb58550 100644 --- a/README-zh.md +++ b/README-zh.md @@ -150,11 +150,17 @@ npm run build ``` ## 加入共建 -如果你想为 Luckysheet 实现一个重要功能,需要先撰写 RFC 文档,按照Luckysheet的 [RFC](https://github.com/mengshukeji/Luckysheet-rfcs) 机制进行操作,在经过社区讨论完善后才可以进行代码的提交。 - -## 联系 -- 欢迎提交 PR 或者 [Issues](https://github.com/mengshukeji/Luckysheet/issues/new/choose) -- Email: mengshu@office2.cn +1. 任何疑问或者建议,欢迎提交[Issues](https://github.com/mengshukeji/Luckysheet/issues/new/choose) +2. 如果您想为 Luckysheet 实现一个重要功能,需要先撰写 RFC 文档,按照Luckysheet的 [RFC](https://github.com/mengshukeji/Luckysheet-rfcs) 机制进行操作,在经过社区讨论完善后才可以进行代码的提交。 +3. 如果您对Luckysheet感兴趣,非常欢迎加入开发组,一起来完善这个插件(下方扫码添加小编微信备注:共建),有4类任务可以认领 + - BUG修复 + - 新功能添加 + - 文档 + - 推广 + + 您将收获: + - Luckysheet官方readme文档贡献者链接 + - 参与大型开源项目,技术和视野提升 ## 交流 diff --git a/README.md b/README.md index 2fc6d0a..b988d9e 100644 --- a/README.md +++ b/README.md @@ -154,13 +154,20 @@ Create a table }) ``` -## Co-construction -If you want to implement an important function for Luckysheet, you need to write an RFC document first, follow Luckysheet's [RFC](https://github.com/mengshukeji/Luckysheet-rfcs) to operate, and submit the code after community discussion and improvement. +## Co-construction -## Contact -- Welcome to submit PR or [Issues](https://github.com/mengshukeji/Luckysheet/issues/new/choose) -- Email: mengshu@office2.cn +1. Any questions or suggestions are welcome to submit [Issues](https://github.com/mengshukeji/Luckysheet/issues/new/choose) +2. If you want to implement an important function for Luckysheet, you need to write an RFC document first, follow Luckysheet's [RFC](https://github.com/mengshukeji/Luckysheet-rfcs) mechanism to operate, and only after community discussion and improvement, you can submit the code. +3. If you are interested in Luckysheet, you are very welcome to join the development team to improve this plugin together (Email: alexads@foxmail.com), there are 4 types of tasks that can be claimed + - BUG + - New features + - Documentation + - Popularize + + You will gain: + - Luckysheet official readme document contributor link + - Participate in large open source projects, improve technology and vision ## Communication diff --git a/docs/guide/data.md b/docs/guide/data.md index 845a08d..9774abf 100644 --- a/docs/guide/data.md +++ b/docs/guide/data.md @@ -26,7 +26,7 @@ "rowlen":{}, //Table row height "columnlen":{}, //Table column width "rowhidden":{}, //hidden rows - "columnhidden":{}, //hidden columns + "colhidden":{}, //hidden columns "borderInfo":{}, //borders }, "celldata": [], //initialize the cell data used @@ -204,15 +204,15 @@ } ``` - ### config.columnhidden + ### config.colhidden - Type:Object - Default:{} - - Usage:Hidden column information, Columns:`columnhidden[Columns]: 0`, + - Usage:Hidden column information, Columns:`colhidden[Columns]: 0`, `key` specify the number of columns,`value` is always `0` - example: ```js - "columnhidden": { + "colhidden": { "30": 0, "31": 0 } diff --git a/docs/zh/guide/README.md b/docs/zh/guide/README.md index e7dfdd4..ec7089a 100644 --- a/docs/zh/guide/README.md +++ b/docs/zh/guide/README.md @@ -171,7 +171,7 @@ luckysheetfile = [ {sheet1设置}, {sheet2设置}, {sheet3设置} ]` "rowlen":{}, //表格行高 "columnlen":{}, //表格列宽 "rowhidden":{}, //隐藏行 - "columnhidden":{}, //隐藏列 + "colhidden":{}, //隐藏列 "borderInfo":{}, //边框 }, "celldata": [], //初始化使用的单元格数据 diff --git a/docs/zh/guide/config.md b/docs/zh/guide/config.md index 4fb5ccf..fe9d623 100644 --- a/docs/zh/guide/config.md +++ b/docs/zh/guide/config.md @@ -395,7 +395,7 @@ Luckysheet开放了更细致的自定义配置选项,分别有 ------------ -## 钩子函数 +## 钩子函数(TODO) 钩子函数应用于二次开发时,会在各个常用鼠标或者键盘操作时植入钩子,调用开发者传入的函数,起到扩展Luckysheet功能的作用。 @@ -416,67 +416,108 @@ Luckysheet开放了更细致的自定义配置选项,分别有 - 类型:Function - 默认值:null - 作用:点击单元格前触发,即在点击单元格的时候,最先触发这个方法 +- 参数: + - {Number} [r]: 单元格所在行数 + - {Number} [c]: 单元格所在列数 + - {Object} [v]: 单元格对象 ------------ ### cellClicked - 类型:Function - 默认值:null - 作用:点击单元格后触发,即在点击单元格的时候,最后触发这个方法 +- 参数: + - {Number} [r]: 单元格所在行数 + - {Number} [c]: 单元格所在列数 + - {Object} [v]: 单元格对象 ------------ ### cellEditBefore - 类型:Function - 默认值:null - 作用:双击单元格后触发,即在双击单元格编辑内容的时候,最先触发这个方法 +- 参数: + - {Number} [r]: 单元格所在行数 + - {Number} [c]: 单元格所在列数 + - {Object} [v]: 单元格对象 ------------ ### cellEdited - 类型:Function - 默认值:null - 作用:双击单元格后触发,即在双击单元格编辑内容的时候,最后触发这个方法 +- 参数: + - {Number} [r]: 单元格所在行数 + - {Number} [c]: 单元格所在列数 + - {Object} [oldV]: 修改前单元格对象 + - {Object} [newV]: 修改后单元格对象 ------------ ### sheetClickBefore - 类型:Function - 默认值:null - 作用:点击sheet页前触发 +- 参数: + - {Number} [i]: sheet页的index + - {Object} [sheet]: sheet页的配置 ------------ ### sheetClicked - 类型:Function - 默认值:null - 作用:点击sheet页后触发 +- 参数: + - {Number} [i]: sheet页的index + - {Object} [sheet]: sheet页的配置 ------------ ### workbookCreateBefore - 类型:Function - 默认值:null - 作用:表格创建之前触发。旧的钩子函数叫做`beforeCreateDom` - +- 参数: + - {Object} [book]: 整个工作簿的配置(options) + ------------ ### workbookCreated - 类型:Function - 默认值:null - 作用:表格创建之后触发 - +- 参数: + - {Object} [book]: 整个工作簿的配置(options) + ------------ ### workbookUpdated - 类型:Function - 默认值:null - 作用:表格创建之后触发 - +- 参数: + - {Object} [book]: 整个工作簿的配置(options) + ------------ ### workbookDestroyBefore - 类型:Function - 默认值:null - 作用:表格创建之后触发 - +- 参数: + - {Object} [book]: 整个工作簿的配置(options) + ------------ ### workbookDestroyed - 类型:Function - 默认值:null - 作用:表格创建之后触发 - +- 参数: + - {Object} [book]: 整个工作簿的配置(options) + +------------ +### updated +- 类型:Function +- 默认值:null +- 作用:每次操作更新后执行的方法,即客户端每执行一次表格操作,Luckysheet将这次操作存到历史记录中后触发,撤销时因为也算一次操作,当然也会触发此钩子函数。 +- 参数: + - {Object} [operate]: 本次操作的历史记录信息,根据不同的操作,会有不同的历史记录,参考源码 [历史记录](https://github.com/mengshukeji/Luckysheet/blob/master/src/controllers/controlHistory.js) + ------------ ### fireMousedown - 类型:Function diff --git a/docs/zh/guide/operate.md b/docs/zh/guide/operate.md index 59288b1..01802f4 100644 --- a/docs/zh/guide/operate.md +++ b/docs/zh/guide/operate.md @@ -8,6 +8,8 @@ 以下为所有的支持传输到后台的操作类型,并且以MongoDB做存储示例,讲解如何做前后端交互。 +注意一点,对象中的i为当前sheet的index值,而不是order。 + ## 单元格刷新 ### 单个单元格刷新 @@ -33,7 +35,7 @@ |参数|说明| | ------------ | ------------ | |t|操作类型表示符号| - |i|当前sheet的索引值| + |i|当前sheet的index值| |v|单元格的值,数字、字符串或着对象格式,对象参考 [单元格属性表](/zh/guide/cell.html#基本单元格)| |r|单元格的行号| |c|单元格的列号| @@ -113,7 +115,7 @@ |t|操作类型表示符号| |i|当前sheet的index值| |v|需要更新value值| - |k|操作的key值,可选 边框:`'borderInfo'` / :行隐藏:`'rowhidden'` / 列隐藏:`'columnhidden'` / 行高:`'rowlen'` / 列宽:`'columnlen'` | + |k|操作的key值,可选 边框:`'borderInfo'` / :行隐藏:`'rowhidden'` / 列隐藏:`'colhidden'` / 行高:`'rowlen'` / 列宽:`'columnlen'` | - **后台更新**: @@ -1079,4 +1081,188 @@ - **后台更新**: - Luckysheet配置,修改title为`"Luckysheet Demo1"` \ No newline at end of file + Luckysheet配置,修改title为`"Luckysheet Demo1"` + +## 图表(TODO) + +图表操作类型有4种,分别为新增图表"add"、移动图表位置"xy"、缩放图表"wh"、修改图表配置"update" + +### 新增图表 + +- **格式**: + + ```json + { + "t": "c", + "i": 0, + "op":"add", + "v": { + "chart_id": "chart_p145W6i73otw_1596209943446", + "width": 400, + "height": 250, + "left": 20, + "top": 120, + "sheetIndex": "Sheet_6az6nei65t1i_1596209937084", + "needRangeShow": true, + "chartOptions": { + "chart_id": "chart_p145W6i73otw_1596209943446", + "chartAllType": "echarts|line|default", + "rangeArray": [ { "row": [ 0, 4 ], "column": [ 0, 7 ] } ], + "rangeColCheck": { "exits": true, "range": [ 0, 0 ] }, + "rangeRowCheck": { "exits": true, "range": [ 0, 0 ] }, + "rangeConfigCheck": false, + "defaultOption": { + "title": { + "show": true, + "text": "默认标题" + } + } + }, + "isShow": true + } + } + ``` + +- **说明**: + + |参数|说明| + | ------------ | ------------ | + |t|操作类型表示符号| + |i|当前sheet的index值| + |op|操作选项| + |v|图表的配置信息| + +- **后台更新**: + + 更新对应sheet页中的图表设置,如果`luckysheetfile[i].chart`为null,则初始化为空数组 `[]` + + ```json + luckysheetfile[0].chart.push(v) + ``` + +### 移动图表位置 + +- **格式**: + + ```json + { + "t": "c", + "i": 0, + "op":"xy", + "v": { + "chart_id": "chart_p145W6i73otw_1596209943446", + "left": 20, + "top": 120 + } + } + ``` + +- **说明**: + + |参数|说明| + | ------------ | ------------ | + |t|操作类型表示符号| + |i|当前sheet的index值| + |op|操作选项| + |v|图表的配置信息| + +- **后台更新**: + + 更新对应sheet页中的图表设置 + + ```js + luckysheetfile[0].chart[v.chart_id].left = v.left; + luckysheetfile[0].chart[v.chart_id].top = v.top; + ``` + +### 缩放图表 + +- **格式**: + + ```json + { + "t": "c", + "i": 0, + "op":"wh", + "v": { + "chart_id": "chart_p145W6i73otw_1596209943446", + "width": 400, + "height": 250, + "left": 20, + "top": 120 + } + } + ``` + +- **说明**: + + |参数|说明| + | ------------ | ------------ | + |t|操作类型表示符号| + |i|当前sheet的index值| + |op|操作选项| + |v|图表的配置信息| + +- **后台更新**: + + 更新对应sheet页中的图表设置 + + ```js + luckysheetfile[0].chart[v.chart_id].left = v.left; + luckysheetfile[0].chart[v.chart_id].top = v.top; + luckysheetfile[0].chart[v.chart_id].width = v.width; + luckysheetfile[0].chart[v.chart_id].height = v.height; + ``` + +### 修改图表配置 + +- **格式**: + + ```json + { + "t": "c", + "i": 0, + "op":"update", + "v": { + "chart_id": "chart_p145W6i73otw_1596209943446", + "width": 400, + "height": 250, + "left": 20, + "top": 120, + "sheetIndex": "Sheet_6az6nei65t1i_1596209937084", + "needRangeShow": true, + "chartOptions": { + "chart_id": "chart_p145W6i73otw_1596209943446", + "chartAllType": "echarts|line|default", + "rangeArray": [ { "row": [ 0, 4 ], "column": [ 0, 7 ] } ], + "rangeColCheck": { "exits": true, "range": [ 0, 0 ] }, + "rangeRowCheck": { "exits": true, "range": [ 0, 0 ] }, + "rangeConfigCheck": false, + "defaultOption": { + "title": { + "show": true, + "text": "默认标题" + } + } + }, + "isShow": true + } + } + ``` + +- **说明**: + + |参数|说明| + | ------------ | ------------ | + |t|操作类型表示符号| + |i|当前sheet的index值| + |op|操作选项| + |v|图表的配置信息| + +- **后台更新**: + + 更新对应sheet页中的图表设置 + + ```js + luckysheetfile[0].chart[v.chart_id] = v; + ``` diff --git a/docs/zh/guide/sheet.md b/docs/zh/guide/sheet.md index 90560e7..4616848 100644 --- a/docs/zh/guide/sheet.md +++ b/docs/zh/guide/sheet.md @@ -23,7 +23,7 @@ options.data示例如下: "rowlen":{}, //表格行高 "columnlen":{}, //表格列宽 "rowhidden":{}, //隐藏行 - "columnhidden":{}, //隐藏列 + "colhidden":{}, //隐藏列 "borderInfo":{}, //边框 }, "scrollLeft": 0, //左右滚动条位置 @@ -40,6 +40,7 @@ options.data示例如下: "frozen": {}, //冻结行列配置 "chart": [], //图表配置 "allowEdit": true, //是否允许编辑 + "zoomRatio":1, // 缩放比例 }, { "name": "Sheet2", @@ -220,16 +221,16 @@ options.data示例如下: } ``` -#### config.columnhidden +#### config.colhidden - 类型:Object - 默认值:{} - 作用:隐藏列 - 格式为:`columnhidden[列数]: 0`, + 格式为:`colhidden[列数]: 0`, `key`指定列数即可,`value`总是为`0` - 示例: ```js - "columnhidden": { + "colhidden": { "30": 0, "31": 0 } @@ -384,11 +385,11 @@ options.data示例如下: - 示例: ```js [{ - "r": 6, - "c": 3, - "index": 1, - "func": [true, 23.75, "=AVERAGE(D3:D6)"], - "color": "w", + "r": 6, //行数 + "c": 3, //列数 + "index": 1, //工作表id + "func": [true, 23.75, "=AVERAGE(D3:D6)"], //公式信息,包含公式计算结果和公式字符串 + "color": "w", //"w":采用深度优先算法 "b":普通计算 "parent": null, "chidren": {}, "times": 0 @@ -422,7 +423,7 @@ options.data示例如下: "row": [0, 12], "column": [0, 4] }, - "pivotDataSheetIndex": 6, //The sheet index where the source data is located + "pivotDataSheetIndex": 6, //源数据所在的sheet页 "column": [{ "index": 3, "name": "subject", @@ -442,7 +443,7 @@ options.data示例如下: "nameindex": 0 }], "showType": "column", - "pivotDatas": [ + "pivotDatas": [ //数据透视表的源数据 ["count:score", "science", "mathematics", "foreign language", "English", "total"], ["Alex", 1, 1, 1, 1, 4], ["Joy", 1, 1, 1, 1, 4], @@ -511,30 +512,30 @@ options.data示例如下: - 示例: ```js [{ - "cellrange": { + "cellrange": { //单元格范围 "row": [1, 6], "column": [1, 5] }, "format": { - "head": { + "head": { //页眉颜色 "fc": "#000", "bc": "#5ed593" }, - "one": { + "one": { //第一种颜色 "fc": "#000", "bc": "#ffffff" }, - "two": { + "two": { //第二种颜色 "fc": "#000", "bc": "#e5fbee" }, - "foot": { + "foot": { //页脚颜色 "fc": "#000", "bc": "#a5efcc" } }, - "hasRowHeader": false, - "hasRowFooter": false + "hasRowHeader": false, //含有页眉 + "hasRowFooter": false //含有页脚 }, { "cellrange": { "row": [1, 6], @@ -571,19 +572,19 @@ options.data示例如下: - 示例: ```js [{ - "head": { + "head": { //页眉颜色 "fc": "#6aa84f", "bc": "#ffffff" }, - "one": { + "one": { //第一种颜色 "fc": "#000", "bc": "#ffffff" }, - "two": { + "two": { //第二种颜色 "fc": "#000", "bc": "#e5fbee" }, - "foot": { + "foot": { //页脚颜色 "fc": "#000", "bc": "#a5efcc" } @@ -604,22 +605,23 @@ options.data示例如下: "colorGradation": 色阶 + API中对此设置也有介绍[API setRangeConditionalFormat](/zh/guide/api.html) - 示例: ```js [ { "type": "default", - "cellrange": [ + "cellrange": [ //应用的范围 { "row": [ 2, 7 ], "column": [ 2, 2 ] } ], - "format": { + "format": { //type 为 default 时 应设置文本颜色和单元格颜色 "textColor": "#000000", "cellColor": "#ff0000" }, - "conditionName": "betweenness", + "conditionName": "betweenness", //类型 "conditionRange": [ { "row": [ 4, 4 ], @@ -722,7 +724,474 @@ options.data示例如下: ### chart - 类型:Array - 默认值:[] -- 作用: 图表配置 +- 作用: 图表配置,参照chartMix的配置格式,允许只设置想要的图表属性,一个完整的配置案例如下。 +- 示例: + :::::: details + ```json + { + "chart_id": "chart_p145W6i73otw_1596209943446", + "width": 400, + "height": 250, + "left": 20, + "top": 120, + "sheetIndex": "Sheet_6az6nei65t1i_1596209937084", + "needRangeShow": true, + "chartOptions": { + "chart_id": "chart_p145W6i73otw_1596209943446", + "chartAllType": "echarts|line|default", + "rangeArray": [ { "row": [ 0, 4 ], "column": [ 0, 7 ] } ], + "rangeColCheck": { "exits": true, "range": [ 0, 0 ] }, + "rangeRowCheck": { "exits": true, "range": [ 0, 0 ] }, + "rangeConfigCheck": false, + "defaultOption": { + "title": { + "show": false, + "text": "默认标题", + "label": { + "fontSize": 12, + "color": "#333", + "fontFamily": "sans-serif", + "fontGroup": [], + "cusFontSize": 12 + }, + "position": { + "value": "left-top", + "offsetX": 40, + "offsetY": 50 + } + }, + "subtitle": { + "show": false, + "text": "", + "label": { + "fontSize": 12, + "color": "#333", + "fontFamily": "sans-serif", + "fontGroup": [], + "cusFontSize": 12 + }, + "distance": { + "value": "auto", + "cusGap": 40 + } + }, + "config": { + "color": "transparent", + "fontFamily": "Sans-serif", + "grid": { + "value": "normal", + "top": 5, + "left": 10, + "right": 20, + "bottom": 10 + } + }, + "legend": { + "show": true, + "selectMode": "multiple", + "selected": [ + { + "seriesName": "衣服", + "isShow": true + }, + { + "seriesName": "食材", + "isShow": true + }, + { + "seriesName": "图书", + "isShow": true + } + ], + "label": { + "fontSize": 12, + "color": "#333", + "fontFamily": "sans-serif", + "fontGroup": [], + "cusFontSize": 12 + }, + "position": { + "value": "left-top", + "offsetX": 40, + "offsetY": 50, + "direction": "horizontal" + }, + "width": { + "value": "auto", + "cusSize": 25 + }, + "height": { + "value": "auto", + "cusSize": 14 + }, + "distance": { + "value": "auto", + "cusGap": 10 + }, + "itemGap": 10, + "data": [ + "Mon", + "Tues", + "Wed", + "Thur", + "Fri", + "Sat", + "Sun" + ] + }, + "tooltip": { + "show": true, + "label": { + "fontSize": 12, + "color": "#333", + "fontFamily": "sans-serif", + "fontGroup": [], + "cusFontSize": 12 + }, + "backgroundColor": "rgba(50,50,50,0.7)", + "triggerOn": "mousemove", + "triggerType": "item", + "axisPointer": { + "type": "line", + "style": { + "color": "#555", + "width": "normal", + "type": "solid" + } + }, + "format": [ + { + "seriesName": "衣服", + "prefix": "", + "suffix": "", + "ratio": 1, + "digit": "auto" + }, + { + "seriesName": "食材", + "prefix": "", + "suffix": "", + "ratio": 1, + "digit": "auto" + }, + { + "seriesName": "图书", + "prefix": "", + "suffix": "", + "ratio": 1, + "digit": "auto" + } + ], + "position": "auto" + }, + "axis": { + "axisType": "xAxisDown", + "xAxisUp": { + "show": false, + "title": { + "showTitle": false, + "text": "", + "nameGap": 15, + "rotate": 0, + "label": { + "fontSize": 12, + "color": "#333", + "fontFamily": "sans-serif", + "fontGroup": [], + "cusFontSize": 12 + }, + "fzPosition": "end" + }, + "name": "显示X轴", + "inverse": false, + "tickLine": { + "show": true, + "width": 1, + "color": "auto" + }, + "tick": { + "show": true, + "position": "outside", + "length": 5, + "width": 1, + "color": "auto" + }, + "tickLabel": { + "show": true, + "label": { + "fontSize": 12, + "color": "#333", + "fontFamily": "sans-serif", + "fontGroup": [], + "cusFontSize": 12 + }, + "rotate": 0, + "prefix": "", + "suffix": "", + "optimize": 0, + "distance": 0, + "min": "auto", + "max": "auto", + "ratio": 1, + "digit": "auto" + }, + "netLine": { + "show": false, + "width": 1, + "type": "solid", + "color": "auto", + "interval": { + "value": "auto", + "cusNumber": 0 + } + }, + "netArea": { + "show": false, + "interval": { + "value": "auto", + "cusNumber": 0 + }, + "colorOne": "auto", + "colorTwo": "auto" + }, + "axisLine": { + "onZero": false + } + }, + "xAxisDown": { + "show": true, + "title": { + "showTitle": false, + "text": "", + "nameGap": 15, + "rotate": 0, + "label": { + "fontSize": 12, + "color": "#333", + "fontFamily": "sans-serif", + "fontGroup": [], + "cusFontSize": 12 + }, + "fzPosition": "end" + }, + "name": "显示X轴", + "inverse": false, + "tickLine": { + "show": true, + "width": 1, + "color": "auto" + }, + "tick": { + "show": true, + "position": "outside", + "length": 5, + "width": 1, + "color": "auto" + }, + "tickLabel": { + "show": true, + "label": { + "fontSize": 12, + "color": "#333", + "fontFamily": "sans-serif", + "fontGroup": [], + "cusFontSize": 12 + }, + "rotate": 0, + "prefix": "", + "suffix": "", + "optimize": 0, + "distance": 0, + "min": null, + "max": null, + "ratio": 1, + "digit": "auto" + }, + "netLine": { + "show": false, + "width": 1, + "type": "solid", + "color": "auto", + "interval": { + "value": "auto", + "cusNumber": 0 + } + }, + "netArea": { + "show": false, + "interval": { + "value": "auto", + "cusNumber": 0 + }, + "colorOne": "auto", + "colorTwo": "auto" + }, + "data": [ + "BUS", + "UBER", + "TAXI", + "SUBWAY" + ], + "type": "category" + }, + "yAxisLeft": { + "show": true, + "title": { + "showTitle": false, + "text": "", + "nameGap": 15, + "rotate": 0, + "label": { + "fontSize": 12, + "color": "#333", + "fontFamily": "sans-serif", + "fontGroup": [], + "cusFontSize": 12 + }, + "fzPosition": "end" + }, + "name": "显示Y轴", + "inverse": false, + "tickLine": { + "show": true, + "width": 1, + "color": "auto" + }, + "tick": { + "show": true, + "position": "outside", + "length": 5, + "width": 1, + "color": "auto" + }, + "tickLabel": { + "show": true, + "label": { + "fontSize": 12, + "color": "#333", + "fontFamily": "sans-serif", + "fontGroup": [], + "cusFontSize": 12 + }, + "rotate": 0, + "formatter": { + "prefix": "", + "suffix": "", + "ratio": 1, + "digit": "auto" + }, + "split": 5, + "min": null, + "max": null, + "prefix": "", + "suffix": "", + "ratio": 1, + "digit": "auto", + "distance": 0 + }, + "netLine": { + "show": false, + "width": 1, + "type": "solid", + "color": "auto", + "interval": { + "value": "auto", + "cusNumber": 0 + } + }, + "netArea": { + "show": false, + "interval": { + "value": "auto", + "cusNumber": 0 + }, + "colorOne": "auto", + "colorTwo": "auto" + }, + "type": "value" + }, + "yAxisRight": { + "show": false, + "title": { + "showTitle": false, + "text": "", + "nameGap": 15, + "rotate": 0, + "label": { + "fontSize": 12, + "color": "#333", + "fontFamily": "sans-serif", + "fontGroup": [], + "cusFontSize": 12 + }, + "fzPosition": "end" + }, + "name": "显示Y轴", + "inverse": false, + "tickLine": { + "show": true, + "width": 1, + "color": "auto" + }, + "tick": { + "show": true, + "position": "outside", + "length": 5, + "width": 1, + "color": "auto" + }, + "tickLabel": { + "show": true, + "label": { + "fontSize": 12, + "color": "#333", + "fontFamily": "sans-serif", + "fontGroup": [], + "cusFontSize": 12 + }, + "rotate": 0, + "formatter": { + "prefix": "", + "suffix": "", + "ratio": 1, + "digit": "auto" + }, + "split": 5, + "min": null, + "max": null, + "prefix": "", + "suffix": "", + "ratio": 1, + "digit": "auto", + "distance": 0 + }, + "netLine": { + "show": false, + "width": 1, + "type": "solid", + "color": "auto", + "interval": { + "value": "auto", + "cusNumber": 0 + } + }, + "netArea": { + "show": false, + "interval": { + "value": "auto", + "cusNumber": 0 + }, + "colorOne": "auto", + "colorTwo": "auto" + } + } + } + } + }, + "isShow": true + } + ``` + ::: ------------ ### allowEdit @@ -730,6 +1199,12 @@ options.data示例如下: - 默认值:true - 作用: 此sheet页是否允许编辑 +------------ +### zoomRatio +- 类型:Number +- 默认值:1 +- 作用: 此sheet页的缩放比例,为0~1之间的二位小数数字。比如`0.1`、`0.56` + ------------ ## 调试信息 @@ -758,7 +1233,7 @@ Luckysheet在初始化完成之后进行的一系列操作,会将更多本地 "rowlen":{}, //表格行高 "columnlen":{}, //表格列宽 "rowhidden":{}, //隐藏行 - "columnhidden":{}, //隐藏列 + "colhidden":{}, //隐藏列 "borderInfo":{}, //边框 }, "scrollLeft": 0, //左右滚动条位置 @@ -775,6 +1250,9 @@ Luckysheet在初始化完成之后进行的一系列操作,会将更多本地 "frozen": {}, //冻结行列配置 "freezen": {}, //冻结行列的渲染数据存储 "chart": [], //图表配置 + "allowEdit": true, //是否允许编辑 + "zoomRatio":1, // 缩放比例 + "visibledatarow": [], //所有行的位置 "visibledatacolumn": [], //所有列的位置 diff --git a/src/controllers/server.js b/src/controllers/server.js index ccc4840..0ed0545 100644 --- a/src/controllers/server.js +++ b/src/controllers/server.js @@ -657,7 +657,7 @@ const server = { $("#luckysheet-sheets-item" + index).show(); } } - else if(type == "c"){ //图表操作 + else if(type == "c"){ //图表操作 TODO let op = item.op, cid = item.cid; if(op == "add"){ //插入 From cbd90140e0aae293b40724bce692b861047d47c3 Mon Sep 17 00:00:00 2001 From: liuyang Date: Fri, 28 Aug 2020 21:32:58 +0800 Subject: [PATCH 05/19] fix(store cache): bug fix --- src/controllers/sheetmanage.js | 14 ++++++++------ src/global/createdom.js | 2 -- src/index.html | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/controllers/sheetmanage.js b/src/controllers/sheetmanage.js index d618271..ae27a66 100644 --- a/src/controllers/sheetmanage.js +++ b/src/controllers/sheetmanage.js @@ -695,6 +695,7 @@ const sheetmanage = { let execF = function(){ _this.mergeCalculation(file["index"]); + editor.webWorkerFlowDataCache(Store.flowdata);//worker存数据 _this.storeSheetParam(); _this.restoreselect(); _this.CacheNotLoadControll = []; @@ -981,10 +982,11 @@ const sheetmanage = { } let load = file["load"]; - if (load != null) { + if (load != null) { + _this.mergeCalculation(index); _this.setSheetParam(true); _this.showSheet(); - _this.mergeCalculation(index); + setTimeout(function () { formula.execFunctionGroup(); luckysheetrefreshgrid(); @@ -998,10 +1000,10 @@ const sheetmanage = { file["data"] = data; file["load"] = "1"; - + _this.mergeCalculation(index); _this.setSheetParam(); _this.showSheet(); - _this.mergeCalculation(index); + setTimeout(function () { _this.restoreCache(); formula.execFunctionGroupForce(luckysheetConfigsetting.forceCalculation); @@ -1041,10 +1043,10 @@ const sheetmanage = { file["data"] = data; file["load"] = "1"; - + _this.mergeCalculation(index); _this.setSheetParam(); _this.showSheet(); - _this.mergeCalculation(index); + setTimeout(function () { _this.restoreCache(); formula.execFunctionGroupForce(luckysheetConfigsetting.forceCalculation); diff --git a/src/global/createdom.js b/src/global/createdom.js index a603965..4531bcd 100644 --- a/src/global/createdom.js +++ b/src/global/createdom.js @@ -50,8 +50,6 @@ export default function luckysheetcreatedom(colwidth, rowheight, data, menu, tit else { Store.flowdata = data; } - - editor.webWorkerFlowDataCache(Store.flowdata);//worker存数据 let flowHTML = flow; if(Store.config == null){ diff --git a/src/index.html b/src/index.html index 205e4b8..501f9e7 100644 --- a/src/index.html +++ b/src/index.html @@ -37,7 +37,7 @@ allowEdit:true, forceCalculation:false, plugins: ['chart'], - data: [sheetCell,sheetFormula,sheetConditionFormat,sheetTable,sheetSparkline,sheetComment,sheetPivotTableData,sheetPivotTable,sheetChart] + data: [{"name":"Sheet1","config":{"rowlen":{"0":16,"1":51,"2":15,"3":24,"4":24,"5":24,"41":24},"customHeight":{"0":1,"2":1},"borderInfo":[{"rangeType":"cell","value":{"row_index":1,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":3,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":4,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":5,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":6,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":7,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":8,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":10,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":11,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":12,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":13,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":14,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":15,"l":{"style":1,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":2,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":3,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":4,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":6,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":7,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":8,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":9,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":10,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":11,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":12,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":14,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":15,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":2,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":3,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":7,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":8,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":9,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":10,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":11,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":12,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":13,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":15,"l":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":2,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":3,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":7,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":10,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":11,"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":14,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":15,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":1,"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":3,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":7,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":9,"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":10,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":12,"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":13,"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":14,"l":{"style":1,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":3,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":7,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":11,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":12,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":13,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":14,"l":{"style":1,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":42,"col_index":15,"b":{"style":8,"color":"#000000"}}}],"merge":{"4_5":{"r":4,"c":5,"rs":2,"cs":1},"4_6":{"r":4,"c":6,"rs":2,"cs":1},"4_7":{"r":4,"c":7,"rs":1,"cs":4},"1_1":{"r":1,"c":1,"rs":1,"cs":15},"4_14":{"r":4,"c":14,"rs":2,"cs":1},"4_15":{"r":4,"c":15,"rs":2,"cs":1},"3_14":{"r":3,"c":14,"rs":1,"cs":2},"4_11":{"r":4,"c":11,"rs":1,"cs":3},"3_5":{"r":3,"c":5,"rs":1,"cs":9},"3_2":{"r":3,"c":2,"rs":3,"cs":1},"3_3":{"r":3,"c":3,"rs":1,"cs":2},"3_1":{"r":3,"c":1,"rs":3,"cs":1},"4_3":{"r":4,"c":3,"rs":2,"cs":1},"4_4":{"r":4,"c":4,"rs":2,"cs":1}}},"index":"sheet_Whle5_1598615264259","status":"1","order":"1","luckysheet_select_save":[{"row":[10,10],"column":[24,24],"sheetIndex":1}],"zoomRatio":0.85,"showGridLines":"0","defaultColWidth":77,"defaultRowHeight":23,"celldata":[{"r":1,"c":1,"v":{"v":"6月预收未承保情况(边际NBV)","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":2,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":3,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":4,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":5,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":6,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":7,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":8,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":9,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":10,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":11,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":12,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":13,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":14,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":15,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":1,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":2,"c":2,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":2,"c":3,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":2,"c":4,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":2,"c":5,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":2,"c":6,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":2,"c":7,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":2,"c":8,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":2,"c":13,"v":{"fs":18,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":15,"v":{"v":"单位:万元","ct":{"fa":"General","t":"s"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":3,"c":1,"v":{"v":"分公司","bg":"#70AD47","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":2,"v":{"v":"6月预收\r\n边际NBV","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":3,"v":{"v":"6月预收且承保","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0,"tb":2}},{"r":3,"c":4,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0,"tb":2}},{"r":3,"c":5,"v":{"v":"6月预收未承保","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":6,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":7,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":8,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":9,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":10,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":11,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":12,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":13,"v":{"ct":{"fa":"0"},"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":14,"v":{"v":"6月11日未承保","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":15,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":1,"v":{"bg":"#70AD47","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":2,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":3,"v":{"v":"承保边际NBV","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":4,"v":{"v":"承保占比","bg":"#70AD47","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":5,"v":{"v":"未承保合计","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1}},{"r":4,"c":6,"v":{"v":"未承保占比","bg":"#ED7D31","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":7,"v":{"v":"按核保状态分","bg":"#ED7D31","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":8,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":9,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":10,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":11,"v":{"v":"按险种分","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":12,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":13,"v":{"ct":{"fa":"0"},"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":14,"v":{"v":"占比","fs":26,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":15,"v":{"v":"相对18日改善","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":1,"v":{"bg":"#70AD47","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":2,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":3,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":4,"v":{"bg":"#70AD47","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":5,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1}},{"r":5,"c":6,"v":{"bg":"#ED7D31","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":7,"v":{"v":"待核销问题件","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":8,"v":{"v":"待缴费","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":9,"v":{"v":"待人工核保","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":10,"v":{"v":"其他","ct":{"fa":"0","t":"s"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":11,"v":{"v":"年金险","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":12,"v":{"v":"健康险","ct":{"fa":"0","t":"s"},"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":13,"v":{"v":"其他产品","ct":{"fa":"0","t":"s"},"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":14,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":15,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":1,"v":{"v":"四川","ct":{"fa":"0","t":"s"},"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":2,"v":{"v":"15513.306087319999"}},{"r":6,"c":3,"v":{"v":"7975.0572941199998","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":6,"c":4,"v":{"v":"0.51407851100407997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":5,"v":{"v":"7538.2487932000004","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":6,"v":{"v":"0.48592148899592003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":6,"c":7,"v":{"v":"584.28600268000002","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":6,"c":8,"v":{"v":"6468.6144707200001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":9,"v":{"v":"474.77969839999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":10,"v":{"v":"10.5686214","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":11,"v":{"v":"6538.0091116000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":12,"v":{"v":"882.78873199999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":13,"v":{"v":"117.4509496","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":14,"v":{"v":"0.7","ct":{"fa":"General"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1}},{"r":6,"c":15,"v":{"v":"-21pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":1,"v":{"v":"山东","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":2,"v":{"v":"10268.6916284","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":3,"v":{"v":"8121.7153339200004","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":4,"v":{"v":"0.79092017053641595","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":5,"v":{"v":"2146.97629448","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":6,"v":{"v":"0.209079829463584","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":7,"v":{"v":"719.42281644000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":8,"v":{"v":"1170.15913456","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":7,"c":9,"v":{"v":"252.29603548","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":7,"c":10,"v":{"v":"5.0983080000000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":11,"v":{"v":"972.94512699999996","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":12,"v":{"v":"1129.0451923999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":7,"c":13,"v":{"v":"44.985975080000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":7,"c":14,"v":{"v":"0.26","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":7,"c":15,"v":{"v":"-5pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":1,"v":{"v":"湖北","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":2,"v":{"v":"6943.1292498800003","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":3,"v":{"v":"5295.4755914400002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":4,"v":{"v":"0.76269293006917904","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":5,"v":{"v":"1647.6536584400001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":6,"v":{"v":"0.23730706993082101","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":7,"v":{"v":"273.05797303999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":8,"v":{"v":"1014.3135326399999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":8,"c":9,"v":{"v":"354.06907316000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":8,"c":10,"v":{"v":"6.2130796000000004","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":11,"v":{"v":"177.7726648","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":12,"v":{"v":"1438.3255881600001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":8,"c":13,"v":{"v":"31.555405480000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":8,"c":14,"v":{"v":"0.39","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":8,"c":15,"v":{"v":"-15pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":1,"v":{"v":"江苏","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":2,"v":{"v":"3972.9344929200001","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":3,"v":{"v":"2413.11638812","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":4,"v":{"v":"0.60738891930393402","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":5,"v":{"v":"1559.8181047999999","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":6,"v":{"v":"0.39261108069606598","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":7,"v":{"v":"78.298838799999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":8,"v":{"v":"1386.0483236800001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":9,"c":9,"v":{"v":"90.592293519999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":9,"c":10,"v":{"v":"4.8786487999999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":11,"v":{"v":"1107.9353776","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":12,"v":{"v":"430.65476560000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":9,"c":13,"v":{"v":"21.2279616","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":9,"c":14,"v":{"v":"0.4","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":9,"c":15,"v":{"v":"-1pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":1,"v":{"v":"浙江","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":2,"v":{"v":"3725.64395896","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":3,"v":{"v":"2831.7360207199999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":4,"v":{"v":"0.76006619309658097","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":5,"v":{"v":"893.90793824000002","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":6,"v":{"v":"0.23993380690341901","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":7,"v":{"v":"87.322710760000007","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":8,"v":{"v":"725.53090947999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":10,"c":9,"v":{"v":"78.214689199999995","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":10,"c":10,"v":{"v":"2.8396287999999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":11,"v":{"v":"651.23580159999995","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":12,"v":{"v":"231.6351014","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":10,"c":13,"v":{"v":"11.03703524","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":10,"c":14,"v":{"v":"0.51","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":10,"c":15,"v":{"v":"-27pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":1,"v":{"v":"黑龙江","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":2,"v":{"v":"5751.5947139999998","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":3,"v":{"v":"4944.7351718800001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":4,"v":{"v":"0.85971550809099695","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":5,"v":{"v":"806.85954212000001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":6,"v":{"v":"0.140284491909003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":7,"v":{"v":"201.14314211999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":8,"v":{"v":"302.07827916000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":11,"c":9,"v":{"v":"301.12931404","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":11,"c":10,"v":{"v":"2.5088067999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":11,"v":{"v":"67.099401999999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":12,"v":{"v":"698.68704663999995","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":11,"c":13,"v":{"v":"41.073093479999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":11,"c":14,"v":{"v":"0.21","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":11,"c":15,"v":{"v":"-7pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":1,"v":{"v":"青岛","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":2,"v":{"v":"2225.8450987199999","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":3,"v":{"v":"1429.5247108000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":4,"v":{"v":"0.64223908106726102","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":5,"v":{"v":"796.32038792000003","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":6,"v":{"v":"0.35776091893273898","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":7,"v":{"v":"60.458246320000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":8,"v":{"v":"665.69881396000005","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":12,"c":9,"v":{"v":"67.144115240000005","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":12,"c":10,"v":{"v":"3.0192123999999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":11,"v":{"v":"537.90933199999995","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":12,"v":{"v":"243.6335516","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":12,"c":13,"v":{"v":"14.77750432","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":12,"c":14,"v":{"v":"0.37","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":12,"c":15,"v":{"v":"-1pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":1,"v":{"v":"河北","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":2,"v":{"v":"3402.3939713200002","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":3,"v":{"v":"2663.5966042","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":4,"v":{"v":"0.78285954732238905","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":5,"v":{"v":"738.79736711999999","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":6,"v":{"v":"0.21714045267761101","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":7,"v":{"v":"108.79733032","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":8,"v":{"v":"540.78665876000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":13,"c":9,"v":{"v":"86.961382040000004","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":13,"c":10,"v":{"v":"2.2519960000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":11,"v":{"v":"105.4891032","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":12,"v":{"v":"618.5906708","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":13,"c":13,"v":{"v":"14.71759312","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":13,"c":14,"v":{"v":"0.42","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":13,"c":15,"v":{"v":"-20pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":1,"v":{"v":"广东","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":2,"v":{"v":"2917.4635942","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":3,"v":{"v":"2215.8682728799999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":4,"v":{"v":"0.75951873993739205","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":5,"v":{"v":"701.59532132000004","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":6,"v":{"v":"0.240481260062608","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":7,"v":{"v":"134.86446716","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":8,"v":{"v":"438.08337291999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":14,"c":9,"v":{"v":"126.38502219999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":14,"c":10,"v":{"v":"2.26245904","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":11,"v":{"v":"197.70700160000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":12,"v":{"v":"482.04097999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":14,"c":13,"v":{"v":"21.847339720000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":14,"c":14,"v":{"v":"0.4","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":14,"c":15,"v":{"v":"-16pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":1,"v":{"v":"云南","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":2,"v":{"v":"2646.5098760800001","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":3,"v":{"v":"1998.7585980399999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":4,"v":{"v":"0.75524320392884903","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":5,"v":{"v":"647.75127803999999","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":6,"v":{"v":"0.244756796071151","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":7,"v":{"v":"180.80675448","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":8,"v":{"v":"294.71467203999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":15,"c":9,"v":{"v":"169.09769312","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":15,"c":10,"v":{"v":"3.1321583999999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":11,"v":{"v":"156.0036264","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":12,"v":{"v":"426.26624720000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":15,"c":13,"v":{"v":"65.481404440000006","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":15,"c":14,"v":{"v":"0.43","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":15,"c":15,"v":{"v":"-19pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":1,"v":{"v":"河南","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":2,"v":{"v":"3598.8466131199998","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":3,"v":{"v":"2993.6286928","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":4,"v":{"v":"0.83183003184586701","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":5,"v":{"v":"605.21792031999996","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":6,"v":{"v":"0.16816996815413299","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":7,"v":{"v":"112.47826132","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":8,"v":{"v":"356.17894660000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":16,"c":9,"v":{"v":"132.40186439999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":16,"c":10,"v":{"v":"4.1588479999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":11,"v":{"v":"130.73512239999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":12,"v":{"v":"457.36288639999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":16,"c":13,"v":{"v":"17.119911519999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":16,"c":14,"v":{"v":"0.33","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":16,"c":15,"v":{"v":"-16pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":1,"v":{"v":"重庆","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":2,"v":{"v":"2075.3975083199998","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":3,"v":{"v":"1536.3577628","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":4,"v":{"v":"0.74027156563547003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":5,"v":{"v":"539.03974552","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":6,"v":{"v":"0.25972843436453003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":7,"v":{"v":"106.20855880000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":8,"v":{"v":"283.91852116000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":17,"c":9,"v":{"v":"147.01662396","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":17,"c":10,"v":{"v":"1.8960416","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":11,"v":{"v":"163.9229808","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":12,"v":{"v":"324.09780319999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":17,"c":13,"v":{"v":"51.018961519999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":17,"c":14,"v":{"v":"0.37","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":17,"c":15,"v":{"v":"-11pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":1,"v":{"v":"安徽","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":2,"v":{"v":"2715.9577661200001","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":3,"v":{"v":"2186.4714934799999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":4,"v":{"v":"0.80504620534051197","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":5,"v":{"v":"529.48627264000004","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":6,"v":{"v":"0.19495379465948801","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":7,"v":{"v":"55.339156879999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":8,"v":{"v":"427.58976752000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":18,"c":9,"v":{"v":"43.912936240000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":18,"c":10,"v":{"v":"2.644412","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":11,"v":{"v":"91.313329600000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":12,"v":{"v":"422.09739680000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":18,"c":13,"v":{"v":"16.075546240000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":18,"c":14,"v":{"v":"0.34","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":18,"c":15,"v":{"v":"-15pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":1,"v":{"v":"江西","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":2,"v":{"v":"3645.3488738800002","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":3,"v":{"v":"3131.9888545200001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":4,"v":{"v":"0.85917396739763996","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":5,"v":{"v":"513.36001936000002","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":6,"v":{"v":"0.14082603260236001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":7,"v":{"v":"82.378249400000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":8,"v":{"v":"303.57025828000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":19,"c":9,"v":{"v":"124.82065168","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":19,"c":10,"v":{"v":"2.5908600000000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":11,"v":{"v":"122.2856032","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":12,"v":{"v":"320.2509144","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":19,"c":13,"v":{"v":"70.823501759999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":19,"c":14,"v":{"v":"0.31","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":19,"c":15,"v":{"v":"-17pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":1,"v":{"v":"深圳","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":2,"v":{"v":"1792.49366224","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":3,"v":{"v":"1303.00626644","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":4,"v":{"v":"0.72692377880527104","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":5,"v":{"v":"489.4873958","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":6,"v":{"v":"0.27307622119472902","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":7,"v":{"v":"44.193504879999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":8,"v":{"v":"409.02241371999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":20,"c":9,"v":{"v":"34.590277200000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":20,"c":10,"v":{"v":"1.6812","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":11,"v":{"v":"293.12928319999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":12,"v":{"v":"174.22545439999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":20,"c":13,"v":{"v":"22.132658200000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":20,"c":14,"v":{"v":"0.53","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":20,"c":15,"v":{"v":"-26pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":1,"v":{"v":"辽宁","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":2,"v":{"v":"2829.0884206000001","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":3,"v":{"v":"2351.2437609600001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":4,"v":{"v":"0.83109589076093404","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":5,"v":{"v":"477.84465963999997","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":6,"v":{"v":"0.16890410923906601","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":7,"v":{"v":"81.604184520000004","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":8,"v":{"v":"299.75112156","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":21,"c":9,"v":{"v":"92.760522359999996","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":21,"c":10,"v":{"v":"3.7288312000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":11,"v":{"v":"118.5186976","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":12,"v":{"v":"350.41360520000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":21,"c":13,"v":{"v":"8.9123568399999993","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":21,"c":14,"v":{"v":"0.27","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":21,"c":15,"v":{"v":"-10pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":1,"v":{"v":"北京","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":2,"v":{"v":"1996.79746092","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":3,"v":{"v":"1632.3999836800001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":4,"v":{"v":"0.81750904417110604","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":5,"v":{"v":"364.39747724","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":6,"v":{"v":"0.18249095582889399","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":7,"v":{"v":"37.342216039999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":8,"v":{"v":"282.35082399999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":22,"c":9,"v":{"v":"43.264020799999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":22,"c":10,"v":{"v":"1.4404163999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":11,"v":{"v":"165.48122720000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":12,"v":{"v":"154.01870160000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":22,"c":13,"v":{"v":"44.897548440000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":22,"c":14,"v":{"v":"0.33","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":22,"c":15,"v":{"v":"-15pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":1,"v":{"v":"湖南","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":2,"v":{"v":"1864.9494316","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":3,"v":{"v":"1517.4401915999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":4,"v":{"v":"0.81366291540577595","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":5,"v":{"v":"347.50923999999998","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":6,"v":{"v":"0.18633708459422399","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":7,"v":{"v":"63.802606359999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":8,"v":{"v":"214.4945602","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":23,"c":9,"v":{"v":"67.326989040000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":23,"c":10,"v":{"v":"1.8850844","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":11,"v":{"v":"20.423704799999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":12,"v":{"v":"315.83747920000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":23,"c":13,"v":{"v":"11.248056","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":23,"c":14,"v":{"v":"0.34","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":23,"c":15,"v":{"v":"-15pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":1,"v":{"v":"福建","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":2,"v":{"v":"1317.76404256","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":3,"v":{"v":"1019.6549738799999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":4,"v":{"v":"0.77377659501099405","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":5,"v":{"v":"298.10906868000001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":6,"v":{"v":"0.22622340498900601","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":7,"v":{"v":"63.782823800000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":8,"v":{"v":"207.7246624","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":24,"c":9,"v":{"v":"25.96938248","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":24,"c":10,"v":{"v":"0.63219999999999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":11,"v":{"v":"112.9726284","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":12,"v":{"v":"168.42521400000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":24,"c":13,"v":{"v":"16.711226280000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":24,"c":14,"v":{"v":"0.45","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":24,"c":15,"v":{"v":"-22pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":1,"v":{"v":"陕西","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":2,"v":{"v":"1471.1459523999999","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":3,"v":{"v":"1173.6456493600001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":4,"v":{"v":"0.79777648672134605","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":5,"v":{"v":"297.50030304000001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":6,"v":{"v":"0.20222351327865401","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":7,"v":{"v":"49.766822560000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":8,"v":{"v":"205.43396716000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":25,"c":9,"v":{"v":"41.23985012","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":25,"c":10,"v":{"v":"1.0596631999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":11,"v":{"v":"18.440000000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":12,"v":{"v":"264.89222160000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":25,"c":13,"v":{"v":"14.16808144","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":25,"c":14,"v":{"v":"0.39","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":25,"c":15,"v":{"v":"-19pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":1,"v":{"v":"甘肃","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":2,"v":{"v":"774.16633276000005","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":3,"v":{"v":"525.01503088000004","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":4,"v":{"v":"0.67816825488684795","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":5,"v":{"v":"249.15130188000001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":6,"v":{"v":"0.32183174511315199","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":7,"v":{"v":"22.865210560000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":8,"v":{"v":"203.02882983999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":26,"c":9,"v":{"v":"21.69848708","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":26,"c":10,"v":{"v":"1.5587743999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":11,"v":{"v":"90.468551199999993","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":12,"v":{"v":"151.5952288","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":26,"c":13,"v":{"v":"7.0875218799999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":26,"c":14,"v":{"v":"0.56999999999999995","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":26,"c":15,"v":{"v":"-25pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":1,"v":{"v":"天津","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":2,"v":{"v":"1204.36077664","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":3,"v":{"v":"959.08595276000005","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":4,"v":{"v":"0.796344393941255","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":5,"v":{"v":"245.27482388000001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":6,"v":{"v":"0.203655606058745","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":7,"v":{"v":"33.691207599999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":8,"v":{"v":"183.77019024000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":27,"c":9,"v":{"v":"26.598094039999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":27,"c":10,"v":{"v":"1.2153320000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":11,"v":{"v":"86.479747200000006","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":12,"v":{"v":"153.17321680000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":27,"c":13,"v":{"v":"5.6218598799999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":27,"c":14,"v":{"v":"0.44","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":27,"c":15,"v":{"v":"-24pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":1,"v":{"v":"山西","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":2,"v":{"v":"1776.976868","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":3,"v":{"v":"1549.51288256","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":4,"v":{"v":"0.87199383991080703","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":5,"v":{"v":"227.46398543999999","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":6,"v":{"v":"0.12800616008919299","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":7,"v":{"v":"23.338842799999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":8,"v":{"v":"180.22438260000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":28,"c":9,"v":{"v":"22.493379839999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":28,"c":10,"v":{"v":"1.4073802","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":11,"v":{"v":"47.454368000000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":12,"v":{"v":"174.26583679999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":28,"c":13,"v":{"v":"5.7437806399999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":28,"c":14,"v":{"v":"0.24","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":28,"c":15,"v":{"v":"-11pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":1,"v":{"v":"上海","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":2,"v":{"v":"1004.97309508","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":3,"v":{"v":"831.52101631999994","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":4,"v":{"v":"0.82740624638693205","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":5,"v":{"v":"173.45207876000001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":6,"v":{"v":"0.172593753613068","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":7,"v":{"v":"42.4802392","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":8,"v":{"v":"87.117791519999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":29,"c":9,"v":{"v":"43.506008039999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":29,"c":10,"v":{"v":"0.34804000000000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":11,"v":{"v":"48.030437599999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":12,"v":{"v":"119.5090708","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":29,"c":13,"v":{"v":"5.9125703600000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":29,"c":14,"v":{"v":"0.32","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":29,"c":15,"v":{"v":"-15pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":1,"v":{"v":"新疆","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":2,"v":{"v":"693.74383855999997","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":3,"v":{"v":"527.80977475999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":4,"v":{"v":"0.76081363959292503","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":5,"v":{"v":"165.93406379999999","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":6,"v":{"v":"0.239186360407075","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":7,"v":{"v":"20.538758399999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":8,"v":{"v":"119.83345","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":30,"c":9,"v":{"v":"25.167166999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":30,"c":10,"v":{"v":"0.39468839999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":11,"v":{"v":"49.421368000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":12,"v":{"v":"112.4646668","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":30,"c":13,"v":{"v":"4.0480289999999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":30,"c":14,"v":{"v":"0.31","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":30,"c":15,"v":{"v":"-7pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":1,"v":{"v":"吉林","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":2,"v":{"v":"1817.2486079600001","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":3,"v":{"v":"1652.5701514","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":4,"v":{"v":"0.90938033693427101","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":5,"v":{"v":"164.67845656","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":6,"v":{"v":"9.0619663065728898E-2","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":7,"v":{"v":"32.492592160000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":8,"v":{"v":"70.470394400000004","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":31,"c":9,"v":{"v":"61.136518000000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":31,"c":10,"v":{"v":"0.57895200000000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":11,"v":{"v":"8.3098112000000004","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":12,"v":{"v":"153.22964640000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":31,"c":13,"v":{"v":"3.1389989599999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":31,"c":14,"v":{"v":"0.26","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":31,"c":15,"v":{"v":"-17pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":1,"v":{"v":"苏州","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":2,"v":{"v":"1617.960863","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":3,"v":{"v":"1453.79587436","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":4,"v":{"v":"0.89853587166774396","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":5,"v":{"v":"164.16498863999999","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":6,"v":{"v":"0.101464128332256","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":7,"v":{"v":"15.432004239999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":8,"v":{"v":"100.86740847999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":32,"c":9,"v":{"v":"47.181385919999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":32,"c":10,"v":{"v":"0.68418999999999996","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":11,"v":{"v":"54.879308799999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":12,"v":{"v":"90.061052399999994","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":32,"c":13,"v":{"v":"19.224627439999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":32,"c":14,"v":{"v":"0.06","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":32,"c":15,"v":{"v":"4pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":1,"v":{"v":"宁波","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":2,"v":{"v":"854.27100896000002","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":3,"v":{"v":"703.71573307999995","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":4,"v":{"v":"0.823761693536472","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":5,"v":{"v":"150.55527588000001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":6,"v":{"v":"0.176238306463528","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":7,"v":{"v":"10.331060519999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":8,"v":{"v":"80.217877240000007","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":33,"c":9,"v":{"v":"59.651386119999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":33,"c":10,"v":{"v":"0.35495199999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":11,"v":{"v":"81.248072800000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":12,"v":{"v":"58.717191999999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":33,"c":13,"v":{"v":"10.59001108","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":33,"c":14,"v":{"v":"0.42","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":33,"c":15,"v":{"v":"-24pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":1,"v":{"v":"大连","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":2,"v":{"v":"596.18927780000001","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":3,"v":{"v":"452.60905595999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":4,"v":{"v":"0.75917007033433104","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":5,"v":{"v":"143.58022184000001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":6,"v":{"v":"0.24082992966566899","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":7,"v":{"v":"13.911652800000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":8,"v":{"v":"109.01721864","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":34,"c":9,"v":{"v":"19.997950400000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":34,"c":10,"v":{"v":"0.65339999999999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":11,"v":{"v":"55.406907199999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":12,"v":{"v":"86.984442000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":34,"c":13,"v":{"v":"1.18887264","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":34,"c":14,"v":{"v":"0.45","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":34,"c":15,"v":{"v":"-21pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":1,"v":{"v":"贵州","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":2,"v":{"v":"753.31818004000002","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":3,"v":{"v":"611.13828416000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":4,"v":{"v":"0.81126182847140305","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":5,"v":{"v":"142.17989588","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":6,"v":{"v":"0.18873817152859701","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":7,"v":{"v":"19.799444520000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":8,"v":{"v":"83.872510079999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":35,"c":9,"v":{"v":"37.413649280000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":35,"c":10,"v":{"v":"1.094292","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":11,"v":{"v":"62.559812800000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":12,"v":{"v":"76.597678799999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":35,"c":13,"v":{"v":"3.0224042799999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":35,"c":14,"v":{"v":"0.42","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":35,"c":15,"v":{"v":"-23pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":1,"v":{"v":"广西","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":2,"v":{"v":"1152.89842004","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":3,"v":{"v":"1029.4388031999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":4,"v":{"v":"0.89291370801278702","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":5,"v":{"v":"123.45961684","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":6,"v":{"v":"0.10708629198721301","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":7,"v":{"v":"21.190273479999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":8,"v":{"v":"51.950821159999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":36,"c":9,"v":{"v":"49.0447062","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":36,"c":10,"v":{"v":"1.2738160000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":11,"v":{"v":"3.9321440000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":12,"v":{"v":"117.6142704","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":36,"c":13,"v":{"v":"1.9132024400000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":36,"c":14,"v":{"v":"0.26","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":36,"c":15,"v":{"v":"-15pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":1,"v":{"v":"内蒙古","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":2,"v":{"v":"670.43604731999994","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":3,"v":{"v":"558.48924792000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":4,"v":{"v":"0.833023895645982","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":5,"v":{"v":"111.9467994","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":6,"v":{"v":"0.166976104354018","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":7,"v":{"v":"18.803385599999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":8,"v":{"v":"77.503798200000006","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":37,"c":9,"v":{"v":"15.509355599999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":37,"c":10,"v":{"v":"0.13025999999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":11,"v":{"v":"3.29888","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":12,"v":{"v":"106.383492","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":37,"c":13,"v":{"v":"2.2644274000000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":37,"c":14,"v":{"v":"0.28000000000000003","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":37,"c":15,"v":{"v":"-11pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":1,"v":{"v":"佛山","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":2,"v":{"v":"541.67987768","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":3,"v":{"v":"484.17562371999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":4,"v":{"v":"0.89384088955585905","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":5,"v":{"v":"57.50425396","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":6,"v":{"v":"0.106159110444141","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":7,"v":{"v":"5.7651843999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":8,"v":{"v":"37.147610159999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":9,"v":{"v":"14.5914594","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":10,"v":{"v":"0","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":11,"v":{"v":"23.135263999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":12,"v":{"v":"32.493895999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":13,"v":{"v":"1.8750939600000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":14,"v":{"v":"0.34","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":38,"c":15,"v":{"v":"-23pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":1,"v":{"v":"海南","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":2,"v":{"v":"100.40667648","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":3,"v":{"v":"66.95542528","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":4,"v":{"v":"0.66684236175606204","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":5,"v":{"v":"33.451251200000002","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":6,"v":{"v":"0.33315763824393801","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":7,"v":{"v":"13.556314800000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":8,"v":{"v":"14.584803600000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":39,"c":9,"v":{"v":"5.3101327999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":39,"c":10,"v":{"v":"0","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":11,"v":{"v":"10","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":12,"v":{"v":"22.896640000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":39,"c":13,"v":{"v":"0.55461119999999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":39,"c":14,"v":{"v":"0.16","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":39,"c":15,"v":{"v":"17pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":1,"v":{"v":"青海","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":2,"v":{"v":"95.309014239999996","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":3,"v":{"v":"75.331582600000004","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":4,"v":{"v":"0.79039305149359396","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":5,"v":{"v":"19.977431639999999","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":6,"v":{"v":"0.20960694850640599","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":7,"v":{"v":"6.9849164000000004","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":8,"v":{"v":"10.93202","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":40,"c":9,"v":{"v":"2.0485072400000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":40,"c":10,"v":{"v":"1.1988E-2","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":11,"v":{"v":"0.90888800000000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":12,"v":{"v":"18.589016000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":40,"c":13,"v":{"v":"0.47952763999999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":40,"c":14,"v":{"v":"0.53","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":40,"c":15,"v":{"v":"-32pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":41,"c":1,"v":{"v":"总计","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":41,"c":2,"v":{"v":"94329.241288119985","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":41,"c":3,"v":{"v":"70216.586054599989","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":41,"c":4,"v":{"v":"0.74437772524990309","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":41,"c":5,"v":{"v":"24112.655233519996","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":41,"c":6,"v":{"v":"0.25562227475009697","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":41,"c":7,"v":{"v":"3426.5357541600015","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":41,"c":8,"v":{"v":"17406.602316679993","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":41,"c":9,"v":{"v":"3205.3206216399999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":41,"c":10,"v":{"v":"74.196541040000014","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":41,"c":11,"v":{"v":"12374.862685799999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":41,"c":12,"v":{"v":"11007.864898600003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":41,"c":13,"v":{"v":"729.92764912000007","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":41,"c":14,"v":{"v":"0.43","ct":{"fa":"General"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":41,"c":15,"v":{"v":"-17pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":42,"c":1,"v":{"v":"注:数据截至6月29日9点45;按未承保合计逆序排列;"}},{"r":42,"c":15,"v":{"ct":{"fa":"0"},"fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}}]},{"name":"sql","config":{},"index":"sheet_ahrpp_1598615264344","status":"0","order":"2","luckysheet_select_save":[{"row":[18,18],"column":[2,2],"sheetIndex":2}],"zoomRatio":1,"showGridLines":"1","defaultColWidth":76,"defaultRowHeight":20,"celldata":[{"r":0,"c":0,"v":{"v":"select status_name 核保状态,_x000D_\r\n state 预收保单状态,_x000D_\r\n SUM(nbv_period_prem) nbv_period_prem,_x000D_\r\n SUM(nbv_value) nbv_value,_x000D_\r\n COUNT(DISTINCT send_code) JS_x000D_\r\n_x000D_\r\n from (select ag.organ_id_2,_x000D_\r\n ag.organ_name_2,_x000D_\r\n qy.qy_organ_id_3,_x000D_\r\n qy.qy_organ_name_3,_x000D_\r\n ag.organ_id_4,_x000D_\r\n ag.organ_name_4,_x000D_\r\n ag.organ_id_5,_x000D_\r\n ag.organ_name_5,_x000D_\r\n ag.dept_id_2,_x000D_\r\n ag.dept_name_2,_x000D_\r\n ag.agent_code,_x000D_\r\n ag.agent_name,_x000D_\r\n a.send_code,_x000D_\r\n a.pre_insert_time,_x000D_\r\n tus.status_name,_x000D_\r\n a.state,_x000D_\r\n tup.uw_status,_x000D_\r\n nbv_period_prem,_x000D_\r\n nbv_value,_x000D_\r\n row_number() over(partition by a.send_code order by tup.update_time desc) rn_x000D_\r\n from (select pre.agent_id,_x000D_\r\n pre.send_code,_x000D_\r\n pre.policy_id,_x000D_\r\n pre.p_state_id,_x000D_\r\n tps.state,_x000D_\r\n sum(pre.nbv_period_prem) nbv_period_prem,_x000D_\r\n sum(pre.nbv_value) nbv_value,_x000D_\r\n min(pre.pre_insert_time) pre_insert_time_x000D_\r\n from da_rpt_ind_mk_pre_detail pre_x000D_\r\n left join t_policy_state tps_x000D_\r\n on pre.p_state_id = tps.p_state_id_x000D_\r\n where pre.pre_insert_time >= DATE_x000D_\r\n '2020-06-01'_x000D_\r\n and pre.pre_insert_time < DATE '2020-07-01'_x000D_\r\n --and pre.p_state_id in (14, 6)_x000D_\r\n group by pre.agent_id,_x000D_\r\n pre.send_code,_x000D_\r\n pre.policy_id,_x000D_\r\n pre.p_state_id,_x000D_\r\n tps.state) a_x000D_\r\n join da_rpt_ind_mk_front_agent ag_x000D_\r\n on a.agent_id = ag.agent_id_x000D_\r\n join das_rpt_ind_mk_qy_organ qy_x000D_\r\n on ag.organ_id_3 = qy.organ_id_3_x000D_\r\n left join t_uw_policy tup_x000D_\r\n on a.policy_id = tup.policy_id_x000D_\r\n left join t_uw_status tus_x000D_\r\n on tup.uw_status = tus.uw_status_x000D_\r\n where nbv_period_prem > 0_x000D_\r\n AND AG.AGENT_CATE1 IN ('1', 'D')) a_x000D_\r\n where a.rn = 1_x000D_\r\n GROUP BY status_name, state","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":2,"vt":0}}]},{"name":"Sheet2","config":{"rowlen":{"0":24,"1":24,"2":24,"3":23,"4":23,"5":23,"6":23,"7":23,"8":23,"9":23,"10":23,"11":23,"12":23,"13":23,"14":23,"15":23,"16":23,"17":23,"18":23,"19":23,"20":23,"21":23,"22":23,"23":23,"24":23,"25":23,"26":23,"27":23,"28":23,"29":23,"30":23,"31":23,"32":23,"33":23,"34":23,"35":23,"36":23,"37":23,"38":24},"borderInfo":[{"rangeType":"cell","value":{"row_index":0,"col_index":0,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":3,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":4,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":5,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":7,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":10,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":11,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":0,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":2,"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":5,"l":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":6,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":7,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":9,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":10,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":11,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":0,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":2,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":3,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":6,"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":7,"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":8,"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":9,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":0,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":3,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":5,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}}],"merge":{"0_0":{"r":0,"c":0,"rs":3,"cs":1},"0_1":{"r":0,"c":1,"rs":3,"cs":1},"0_2":{"r":0,"c":2,"rs":1,"cs":2},"0_4":{"r":0,"c":4,"rs":1,"cs":9},"1_2":{"r":1,"c":2,"rs":2,"cs":1},"1_3":{"r":1,"c":3,"rs":2,"cs":1},"1_4":{"r":1,"c":4,"rs":2,"cs":1},"1_5":{"r":1,"c":5,"rs":2,"cs":1},"1_6":{"r":1,"c":6,"rs":1,"cs":4},"1_10":{"r":1,"c":10,"rs":1,"cs":3}}},"index":"sheet_0hepp_1598615264345","status":"0","order":"3","luckysheet_select_save":[{"row":[8,8],"column":[5,5],"sheetIndex":3}],"zoomRatio":1,"showGridLines":"1","defaultColWidth":76,"defaultRowHeight":20,"celldata":[{"r":0,"c":0,"v":{"v":"分公司","bg":"#70AD47","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":1,"v":{"v":"6月预收\r\n边际NBV","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":2,"v":{"v":"6月预收且承保","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0,"tb":2}},{"r":0,"c":3,"v":{"bg":"#E2EFDA","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":4,"v":{"v":"6月预收未承保","bg":"#E2EFDA","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":5,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":6,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":7,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":8,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":9,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":10,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":11,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":12,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":0,"v":{"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":1,"v":{"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0,"tb":2}},{"r":1,"c":2,"v":{"v":"承保边际NBV","bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":3,"v":{"v":"承保占比","bg":"#E2EFDA","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":4,"v":{"v":"未承保合计","bg":"#E2EFDA","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":5,"v":{"v":"未承保占比","bg":"#FCE4D6","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":6,"v":{"v":"按核保状态分","bg":"#E2EFDA","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":7,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":8,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":9,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":10,"v":{"v":"按险种分","bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":11,"v":{"ct":{"fa":"0"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":12,"v":{"ct":{"fa":"0"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":0,"v":{"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":1,"v":{"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0,"tb":2}},{"r":2,"c":2,"v":{"bg":"#E2EFDA","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":3,"v":{"bg":"#E2EFDA","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":4,"v":{"bg":"#FCE4D6","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":5,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":6,"v":{"v":"待核销问题件","ct":{"fa":"0","t":"s"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":7,"v":{"v":"待缴费","ct":{"fa":"0","t":"s"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":8,"v":{"v":"待人工核保","ct":{"fa":"0","t":"s"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":9,"v":{"v":"其他","bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":10,"v":{"v":"年金险","bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":11,"v":{"v":"健康险","bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":12,"v":{"v":"其他产品","bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":0,"v":{"v":"四川","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":1,"v":{"v":"7940","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":2,"v":{"v":"2419","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":3,"v":{"v":"0.3","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":4,"v":{"v":"5521","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":5,"v":{"v":"0.7","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":6,"v":{"v":"267","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":7,"v":{"v":"5071","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":8,"v":{"v":"175","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":9,"v":{"v":"7","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":10,"v":{"v":"5198","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":11,"v":{"v":"285","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":12,"v":{"v":"38","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":0,"v":{"v":"山东","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":1,"v":{"v":"3909","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":2,"v":{"v":"2875","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":3,"v":{"v":"0.74","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":4,"v":{"v":"1034","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":5,"v":{"v":"0.26","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":6,"v":{"v":"273","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":7,"v":{"v":"639","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":8,"v":{"v":"117","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":9,"v":{"v":"6","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":10,"v":{"v":"121","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":11,"v":{"v":"881","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":12,"v":{"v":"32","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":0,"v":{"v":"湖北","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":1,"v":{"v":"1747","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":2,"v":{"v":"1063","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":3,"v":{"v":"0.61","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":4,"v":{"v":"683","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":5,"v":{"v":"0.39","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":6,"v":{"v":"156","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":7,"v":{"v":"426","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":8,"v":{"v":"98","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":9,"v":{"v":"4","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":10,"v":{"v":"85","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":11,"v":{"v":"588","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":12,"v":{"v":"11","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":0,"v":{"v":"浙江","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":6,"c":1,"v":{"v":"1123","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":2,"v":{"v":"554","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":3,"v":{"v":"0.49","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":4,"v":{"v":"568","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":5,"v":{"v":"0.51","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":6,"v":{"v":"37","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":7,"v":{"v":"460","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":8,"v":{"v":"32","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":9,"v":{"v":"39","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":10,"v":{"v":"438","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":11,"v":{"v":"124","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":12,"v":{"v":"7","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":0,"v":{"v":"河北","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":7,"c":1,"v":{"v":"1208","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":2,"v":{"v":"701","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":3,"v":{"v":"0.57999999999999996","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":4,"v":{"v":"508","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":5,"v":{"v":"0.42","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":6,"v":{"v":"91","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":7,"v":{"v":"382","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":8,"v":{"v":"32","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":9,"v":{"v":"2","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":10,"v":{"v":"27","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":11,"v":{"v":"472","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":12,"v":{"v":"9","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":0,"v":{"v":"江苏","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":8,"c":1,"v":{"v":"1188","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":2,"v":{"v":"713","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":3,"v":{"v":"0.6","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":4,"v":{"v":"475","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":5,"v":{"v":"0.4","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":6,"v":{"v":"95","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":7,"v":{"v":"333","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":8,"v":{"v":"46","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":9,"v":{"v":"2","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":10,"v":{"v":"164","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":11,"v":{"v":"297","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":12,"v":{"v":"14","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":0,"v":{"v":"江西","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":9,"c":1,"v":{"v":"1353","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":2,"v":{"v":"933","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":3,"v":{"v":"0.69","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":4,"v":{"v":"420","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":5,"v":{"v":"0.31","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":6,"v":{"v":"113","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":7,"v":{"v":"252","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":8,"v":{"v":"54","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":9,"v":{"v":"1","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":10,"v":{"v":"101","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":11,"v":{"v":"302","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":12,"v":{"v":"16","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":0,"v":{"v":"深圳","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":10,"c":1,"v":{"v":"724","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":2,"v":{"v":"337","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":3,"v":{"v":"0.47","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":4,"v":{"v":"386","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":5,"v":{"v":"0.53","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":6,"v":{"v":"44","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":7,"v":{"v":"308","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":8,"v":{"v":"32","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":9,"v":{"v":"3","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":10,"v":{"v":"260","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":11,"v":{"v":"114","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":12,"v":{"v":"13","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":0,"v":{"v":"广东","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":11,"c":1,"v":{"v":"949","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":2,"v":{"v":"570","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":3,"v":{"v":"0.6","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":4,"v":{"v":"379","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":5,"v":{"v":"0.4","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":6,"v":{"v":"77","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":7,"v":{"v":"244","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":8,"v":{"v":"56","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":9,"v":{"v":"3","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":10,"v":{"v":"46","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":11,"v":{"v":"298","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":12,"v":{"v":"35","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":0,"v":{"v":"黑龙江","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":12,"c":1,"v":{"v":"1741","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":2,"v":{"v":"1367","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":3,"v":{"v":"0.79","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":4,"v":{"v":"374","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":5,"v":{"v":"0.21","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":6,"v":{"v":"145","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":7,"v":{"v":"163","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":8,"v":{"v":"64","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":9,"v":{"v":"2","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":10,"v":{"v":"23","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":11,"v":{"v":"338","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":12,"v":{"v":"13","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":0,"v":{"v":"安徽","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":13,"c":1,"v":{"v":"1091","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":2,"v":{"v":"718","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":3,"v":{"v":"0.66","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":4,"v":{"v":"373","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":5,"v":{"v":"0.34","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":6,"v":{"v":"62","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":7,"v":{"v":"280","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":8,"v":{"v":"30","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":9,"v":{"v":"1","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":10,"v":{"v":"35","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":11,"v":{"v":"329","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":12,"v":{"v":"9","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":0,"v":{"v":"河南","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":14,"c":1,"v":{"v":"1013","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":2,"v":{"v":"684","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":3,"v":{"v":"0.67","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":4,"v":{"v":"329","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":5,"v":{"v":"0.33","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":6,"v":{"v":"78","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":7,"v":{"v":"207","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":8,"v":{"v":"42","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":9,"v":{"v":"2","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":10,"v":{"v":"110","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":11,"v":{"v":"211","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":12,"v":{"v":"8","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":0,"v":{"v":"云南","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":15,"c":1,"v":{"v":"692","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":2,"v":{"v":"393","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":3,"v":{"v":"0.56999999999999995","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":4,"v":{"v":"299","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":5,"v":{"v":"0.43","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":6,"v":{"v":"128","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":7,"v":{"v":"134","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":8,"v":{"v":"35","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":9,"v":{"v":"2","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":10,"v":{"v":"34","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":11,"v":{"v":"252","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":12,"v":{"v":"13","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":0,"v":{"v":"福建","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":16,"c":1,"v":{"v":"629","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":2,"v":{"v":"344","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":3,"v":{"v":"0.55000000000000004","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":4,"v":{"v":"285","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":5,"v":{"v":"0.45","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":6,"v":{"v":"62","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":7,"v":{"v":"196","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":8,"v":{"v":"27","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":9,"v":{"v":"1","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":10,"v":{"v":"107","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":11,"v":{"v":"162","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":12,"v":{"v":"15","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":0,"v":{"v":"湖南","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":17,"c":1,"v":{"v":"715","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":2,"v":{"v":"469","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":3,"v":{"v":"0.66","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":4,"v":{"v":"246","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":5,"v":{"v":"0.34","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":6,"v":{"v":"66","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":7,"v":{"v":"153","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":8,"v":{"v":"26","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":9,"v":{"v":"2","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":10,"v":{"v":"16","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":11,"v":{"v":"224","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":12,"v":{"v":"6","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":0,"v":{"v":"辽宁","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":18,"c":1,"v":{"v":"849","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":2,"v":{"v":"620","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":3,"v":{"v":"0.73","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":4,"v":{"v":"229","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":5,"v":{"v":"0.27","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":6,"v":{"v":"50","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":7,"v":{"v":"140","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":8,"v":{"v":"37","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":9,"v":{"v":"1","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":10,"v":{"v":"40","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":11,"v":{"v":"184","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":12,"v":{"v":"5","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":0,"v":{"v":"陕西","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":19,"c":1,"v":{"v":"555","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":2,"v":{"v":"338","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":3,"v":{"v":"0.61","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":4,"v":{"v":"217","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":5,"v":{"v":"0.39","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":6,"v":{"v":"33","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":7,"v":{"v":"167","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":8,"v":{"v":"16","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":9,"v":{"v":"1","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":10,"v":{"v":"4","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":11,"v":{"v":"202","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":12,"v":{"v":"11","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":0,"v":{"v":"吉林","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":20,"c":1,"v":{"v":"789","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":2,"v":{"v":"584","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":3,"v":{"v":"0.74","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":4,"v":{"v":"205","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":5,"v":{"v":"0.26","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":6,"v":{"v":"63","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":7,"v":{"v":"115","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":8,"v":{"v":"24","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":9,"v":{"v":"2","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":10,"v":{"v":"13","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":11,"v":{"v":"180","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":12,"v":{"v":"12","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":0,"v":{"v":"重庆","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":21,"c":1,"v":{"v":"531","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":2,"v":{"v":"334","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":3,"v":{"v":"0.63","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":4,"v":{"v":"197","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":5,"v":{"v":"0.37","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":6,"v":{"v":"84","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":7,"v":{"v":"76","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":8,"v":{"v":"38","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":10,"v":{"v":"38","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":11,"v":{"v":"148","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":12,"v":{"v":"11","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":0,"v":{"v":"天津","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":22,"c":1,"v":{"v":"417","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":2,"v":{"v":"232","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":3,"v":{"v":"0.56000000000000005","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":4,"v":{"v":"186","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":5,"v":{"v":"0.44","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":6,"v":{"v":"40","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":7,"v":{"v":"120","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":8,"v":{"v":"26","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":10,"v":{"v":"42","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":11,"v":{"v":"139","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":12,"v":{"v":"5","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":0,"v":{"v":"北京","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":23,"c":1,"v":{"v":"554","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":2,"v":{"v":"369","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":3,"v":{"v":"0.67","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":4,"v":{"v":"185","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":5,"v":{"v":"0.33","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":6,"v":{"v":"45","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":7,"v":{"v":"121","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":8,"v":{"v":"18","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":9,"v":{"v":"1","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":10,"v":{"v":"97","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":11,"v":{"v":"86","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":12,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":0,"v":{"v":"宁波","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":24,"c":1,"v":{"v":"370","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":2,"v":{"v":"214","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":3,"v":{"v":"0.57999999999999996","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":4,"v":{"v":"157","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":5,"v":{"v":"0.42","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":6,"v":{"v":"41","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":7,"v":{"v":"100","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":8,"v":{"v":"16","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":10,"v":{"v":"75","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":11,"v":{"v":"75","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":12,"v":{"v":"7","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":0,"v":{"v":"贵州","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":25,"c":1,"v":{"v":"347","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":2,"v":{"v":"203","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":3,"v":{"v":"0.57999999999999996","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":4,"v":{"v":"144","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":5,"v":{"v":"0.42","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":6,"v":{"v":"11","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":7,"v":{"v":"117","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":8,"v":{"v":"9","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":9,"v":{"v":"7","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":10,"v":{"v":"119","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":11,"v":{"v":"24","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":12,"v":{"v":"1","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":0,"v":{"v":"青岛","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":26,"c":1,"v":{"v":"378","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":2,"v":{"v":"238","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":3,"v":{"v":"0.63","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":4,"v":{"v":"139","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":5,"v":{"v":"0.37","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":6,"v":{"v":"33","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":7,"v":{"v":"96","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":8,"v":{"v":"10","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":10,"v":{"v":"46","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":11,"v":{"v":"91","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":12,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":0,"v":{"v":"山西","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":27,"c":1,"v":{"v":"534","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":2,"v":{"v":"407","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":3,"v":{"v":"0.76","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":4,"v":{"v":"127","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":5,"v":{"v":"0.24","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":6,"v":{"v":"24","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":7,"v":{"v":"94","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":8,"v":{"v":"8","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":10,"v":{"v":"15","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":11,"v":{"v":"109","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":12,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":0,"v":{"v":"内蒙古","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":28,"c":1,"v":{"v":"316","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":2,"v":{"v":"227","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":3,"v":{"v":"0.72","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":4,"v":{"v":"89","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":5,"v":{"v":"0.28000000000000003","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":6,"v":{"v":"11","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":7,"v":{"v":"70","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":8,"v":{"v":"8","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":10,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":11,"v":{"v":"82","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":12,"v":{"v":"4","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":0,"v":{"v":"广西","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":29,"c":1,"v":{"v":"334","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":2,"v":{"v":"246","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":3,"v":{"v":"0.74","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":4,"v":{"v":"88","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":5,"v":{"v":"0.26","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":6,"v":{"v":"22","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":7,"v":{"v":"46","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":8,"v":{"v":"19","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":9,"v":{"v":"1","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":10,"v":{"v":"11","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":11,"v":{"v":"73","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":12,"v":{"v":"3","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":0,"v":{"v":"大连","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":30,"c":1,"v":{"v":"172","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":2,"v":{"v":"95","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":3,"v":{"v":"0.55000000000000004","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":4,"v":{"v":"77","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":5,"v":{"v":"0.45","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":6,"v":{"v":"25","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":7,"v":{"v":"39","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":8,"v":{"v":"13","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":10,"v":{"v":"9","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":11,"v":{"v":"66","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":12,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":0,"v":{"v":"甘肃","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":31,"c":1,"v":{"v":"136","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":2,"v":{"v":"59","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":3,"v":{"v":"0.43","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":4,"v":{"v":"77","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":5,"v":{"v":"0.56999999999999995","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":6,"v":{"v":"15","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":7,"v":{"v":"52","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":8,"v":{"v":"11","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":10,"v":{"v":"6","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":11,"v":{"v":"69","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":12,"v":{"v":"3","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":0,"v":{"v":"上海","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":32,"c":1,"v":{"v":"196","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":2,"v":{"v":"133","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":3,"v":{"v":"0.68","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":4,"v":{"v":"63","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":5,"v":{"v":"0.32","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":6,"v":{"v":"22","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":7,"v":{"v":"21","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":8,"v":{"v":"19","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":9,"v":{"v":"1","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":10,"v":{"v":"13","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":11,"v":{"v":"49","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":12,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":0,"v":{"v":"佛山","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":33,"c":1,"v":{"v":"177","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":2,"v":{"v":"117","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":3,"v":{"v":"0.66","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":4,"v":{"v":"59","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":5,"v":{"v":"0.34","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":6,"v":{"v":"7","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":7,"v":{"v":"48","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":8,"v":{"v":"3","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":10,"v":{"v":"46","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":11,"v":{"v":"11","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":12,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":0,"v":{"v":"新疆","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":34,"c":1,"v":{"v":"148","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":2,"v":{"v":"102","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":3,"v":{"v":"0.69","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":4,"v":{"v":"46","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":5,"v":{"v":"0.31","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":6,"v":{"v":"10","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":7,"v":{"v":"21","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":8,"v":{"v":"14","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":10,"v":{"v":"5","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":11,"v":{"v":"40","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":12,"v":{"v":"1","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":0,"v":{"v":"苏州","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":35,"c":1,"v":{"v":"424","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":2,"v":{"v":"399","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":3,"v":{"v":"0.94","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":4,"v":{"v":"25","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":5,"v":{"v":"0.06","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":6,"v":{"v":"9","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":7,"v":{"v":"13","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":8,"v":{"v":"3","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":10,"v":{"v":"1","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":11,"v":{"v":"22","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":12,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":0,"v":{"v":"青海","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":36,"c":1,"v":{"v":"24","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":2,"v":{"v":"11","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":3,"v":{"v":"0.47","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":4,"v":{"v":"13","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":5,"v":{"v":"0.53","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":6,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":7,"v":{"v":"8","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":8,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":10,"v":{"v":"5","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":11,"v":{"v":"8","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":12,"v":{"v":"0","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":0,"v":{"v":"海南","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":37,"c":1,"v":{"v":"18","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":2,"v":{"v":"15","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":3,"v":{"v":"0.84","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":4,"v":{"v":"3","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":5,"v":{"v":"0.16","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":6,"v":{"v":"1","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":7,"v":{"v":"1","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":8,"v":{"v":"1","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":10,"v":{"v":"1","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":11,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":12,"v":{"v":"0","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":0,"v":{"v":"总计","ct":{"fa":"0","t":"s"},"fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":1,"v":{"v":"33289","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":2,"v":{"v":"19083","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":3,"v":{"v":"0.56999999999999995","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":4,"v":{"v":"14206","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":5,"v":{"v":"0.43","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":6,"v":{"v":"2242","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":7,"v":{"v":"10712","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":8,"v":{"v":"1162","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":9,"v":{"v":"91","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":10,"v":{"v":"7353","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":11,"v":{"v":"6537","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":12,"v":{"v":"317","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}}]}] }) }) From 732f6788bcff9ddcf4b0e6bc266b3be9e28eea41 Mon Sep 17 00:00:00 2001 From: liuyang Date: Fri, 28 Aug 2020 21:34:39 +0800 Subject: [PATCH 06/19] fix(demo fix): fix --- src/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.html b/src/index.html index 501f9e7..205e4b8 100644 --- a/src/index.html +++ b/src/index.html @@ -37,7 +37,7 @@ allowEdit:true, forceCalculation:false, plugins: ['chart'], - data: [{"name":"Sheet1","config":{"rowlen":{"0":16,"1":51,"2":15,"3":24,"4":24,"5":24,"41":24},"customHeight":{"0":1,"2":1},"borderInfo":[{"rangeType":"cell","value":{"row_index":1,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":3,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":4,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":5,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":6,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":7,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":8,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":10,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":11,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":12,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":13,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":14,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":15,"l":{"style":1,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":2,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":3,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":4,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":6,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":7,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":8,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":9,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":10,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":11,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":12,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":14,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":15,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":2,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":3,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":7,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":8,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":9,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":10,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":11,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":12,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":13,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":15,"l":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":2,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":3,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":7,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":10,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":11,"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":14,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":15,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":1,"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":3,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":7,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":9,"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":10,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":12,"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":13,"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":14,"l":{"style":1,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":39,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":7,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":11,"l":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":13,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":40,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":3,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":7,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":10,"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":11,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":12,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":13,"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":14,"l":{"style":1,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":41,"col_index":15,"l":{"style":8,"color":"#000000"},"r":{"style":1,"color":"#000000"},"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":42,"col_index":15,"b":{"style":8,"color":"#000000"}}}],"merge":{"4_5":{"r":4,"c":5,"rs":2,"cs":1},"4_6":{"r":4,"c":6,"rs":2,"cs":1},"4_7":{"r":4,"c":7,"rs":1,"cs":4},"1_1":{"r":1,"c":1,"rs":1,"cs":15},"4_14":{"r":4,"c":14,"rs":2,"cs":1},"4_15":{"r":4,"c":15,"rs":2,"cs":1},"3_14":{"r":3,"c":14,"rs":1,"cs":2},"4_11":{"r":4,"c":11,"rs":1,"cs":3},"3_5":{"r":3,"c":5,"rs":1,"cs":9},"3_2":{"r":3,"c":2,"rs":3,"cs":1},"3_3":{"r":3,"c":3,"rs":1,"cs":2},"3_1":{"r":3,"c":1,"rs":3,"cs":1},"4_3":{"r":4,"c":3,"rs":2,"cs":1},"4_4":{"r":4,"c":4,"rs":2,"cs":1}}},"index":"sheet_Whle5_1598615264259","status":"1","order":"1","luckysheet_select_save":[{"row":[10,10],"column":[24,24],"sheetIndex":1}],"zoomRatio":0.85,"showGridLines":"0","defaultColWidth":77,"defaultRowHeight":23,"celldata":[{"r":1,"c":1,"v":{"v":"6月预收未承保情况(边际NBV)","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":2,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":3,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":4,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":5,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":6,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":7,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":8,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":9,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":10,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":11,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":12,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":13,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":14,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":15,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":1,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":2,"c":2,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":2,"c":3,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":2,"c":4,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":2,"c":5,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":2,"c":6,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":2,"c":7,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":2,"c":8,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":2,"c":13,"v":{"fs":18,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":15,"v":{"v":"单位:万元","ct":{"fa":"General","t":"s"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":3,"c":1,"v":{"v":"分公司","bg":"#70AD47","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":2,"v":{"v":"6月预收\r\n边际NBV","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":3,"v":{"v":"6月预收且承保","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0,"tb":2}},{"r":3,"c":4,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0,"tb":2}},{"r":3,"c":5,"v":{"v":"6月预收未承保","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":6,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":7,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":8,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":9,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":10,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":11,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":12,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":13,"v":{"ct":{"fa":"0"},"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":14,"v":{"v":"6月11日未承保","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":15,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":1,"v":{"bg":"#70AD47","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":2,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":3,"v":{"v":"承保边际NBV","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":4,"v":{"v":"承保占比","bg":"#70AD47","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":5,"v":{"v":"未承保合计","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1}},{"r":4,"c":6,"v":{"v":"未承保占比","bg":"#ED7D31","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":7,"v":{"v":"按核保状态分","bg":"#ED7D31","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":8,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":9,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":10,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":11,"v":{"v":"按险种分","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":12,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":13,"v":{"ct":{"fa":"0"},"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":14,"v":{"v":"占比","fs":26,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":15,"v":{"v":"相对18日改善","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":1,"v":{"bg":"#70AD47","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":2,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":3,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":4,"v":{"bg":"#70AD47","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":5,"v":{"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1}},{"r":5,"c":6,"v":{"bg":"#ED7D31","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":7,"v":{"v":"待核销问题件","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":8,"v":{"v":"待缴费","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":9,"v":{"v":"待人工核保","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":10,"v":{"v":"其他","ct":{"fa":"0","t":"s"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":11,"v":{"v":"年金险","bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":12,"v":{"v":"健康险","ct":{"fa":"0","t":"s"},"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":13,"v":{"v":"其他产品","ct":{"fa":"0","t":"s"},"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":14,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":15,"v":{"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":1,"v":{"v":"四川","ct":{"fa":"0","t":"s"},"bg":"#ED7D31","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":2,"v":{"v":"15513.306087319999"}},{"r":6,"c":3,"v":{"v":"7975.0572941199998","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":6,"c":4,"v":{"v":"0.51407851100407997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":5,"v":{"v":"7538.2487932000004","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":6,"v":{"v":"0.48592148899592003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":6,"c":7,"v":{"v":"584.28600268000002","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":6,"c":8,"v":{"v":"6468.6144707200001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":9,"v":{"v":"474.77969839999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":10,"v":{"v":"10.5686214","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":11,"v":{"v":"6538.0091116000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":12,"v":{"v":"882.78873199999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":13,"v":{"v":"117.4509496","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":14,"v":{"v":"0.7","ct":{"fa":"General"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1}},{"r":6,"c":15,"v":{"v":"-21pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":1,"v":{"v":"山东","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":2,"v":{"v":"10268.6916284","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":3,"v":{"v":"8121.7153339200004","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":4,"v":{"v":"0.79092017053641595","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":5,"v":{"v":"2146.97629448","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":6,"v":{"v":"0.209079829463584","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":7,"v":{"v":"719.42281644000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":8,"v":{"v":"1170.15913456","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":7,"c":9,"v":{"v":"252.29603548","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":7,"c":10,"v":{"v":"5.0983080000000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":11,"v":{"v":"972.94512699999996","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":12,"v":{"v":"1129.0451923999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":7,"c":13,"v":{"v":"44.985975080000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":7,"c":14,"v":{"v":"0.26","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":7,"c":15,"v":{"v":"-5pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":1,"v":{"v":"湖北","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":2,"v":{"v":"6943.1292498800003","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":3,"v":{"v":"5295.4755914400002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":4,"v":{"v":"0.76269293006917904","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":5,"v":{"v":"1647.6536584400001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":6,"v":{"v":"0.23730706993082101","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":7,"v":{"v":"273.05797303999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":8,"v":{"v":"1014.3135326399999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":8,"c":9,"v":{"v":"354.06907316000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":8,"c":10,"v":{"v":"6.2130796000000004","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":11,"v":{"v":"177.7726648","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":12,"v":{"v":"1438.3255881600001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":8,"c":13,"v":{"v":"31.555405480000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":8,"c":14,"v":{"v":"0.39","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":8,"c":15,"v":{"v":"-15pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":1,"v":{"v":"江苏","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":2,"v":{"v":"3972.9344929200001","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":3,"v":{"v":"2413.11638812","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":4,"v":{"v":"0.60738891930393402","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":5,"v":{"v":"1559.8181047999999","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":6,"v":{"v":"0.39261108069606598","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":7,"v":{"v":"78.298838799999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":8,"v":{"v":"1386.0483236800001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":9,"c":9,"v":{"v":"90.592293519999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":9,"c":10,"v":{"v":"4.8786487999999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":11,"v":{"v":"1107.9353776","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":12,"v":{"v":"430.65476560000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":9,"c":13,"v":{"v":"21.2279616","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":9,"c":14,"v":{"v":"0.4","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":9,"c":15,"v":{"v":"-1pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":1,"v":{"v":"浙江","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":2,"v":{"v":"3725.64395896","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":3,"v":{"v":"2831.7360207199999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":4,"v":{"v":"0.76006619309658097","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":5,"v":{"v":"893.90793824000002","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":6,"v":{"v":"0.23993380690341901","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":7,"v":{"v":"87.322710760000007","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":8,"v":{"v":"725.53090947999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":10,"c":9,"v":{"v":"78.214689199999995","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":10,"c":10,"v":{"v":"2.8396287999999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":11,"v":{"v":"651.23580159999995","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":12,"v":{"v":"231.6351014","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":10,"c":13,"v":{"v":"11.03703524","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":10,"c":14,"v":{"v":"0.51","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":10,"c":15,"v":{"v":"-27pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":1,"v":{"v":"黑龙江","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":2,"v":{"v":"5751.5947139999998","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":3,"v":{"v":"4944.7351718800001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":4,"v":{"v":"0.85971550809099695","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":5,"v":{"v":"806.85954212000001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":6,"v":{"v":"0.140284491909003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":7,"v":{"v":"201.14314211999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":8,"v":{"v":"302.07827916000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":11,"c":9,"v":{"v":"301.12931404","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":11,"c":10,"v":{"v":"2.5088067999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":11,"v":{"v":"67.099401999999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":12,"v":{"v":"698.68704663999995","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":11,"c":13,"v":{"v":"41.073093479999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":11,"c":14,"v":{"v":"0.21","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":11,"c":15,"v":{"v":"-7pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":1,"v":{"v":"青岛","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":2,"v":{"v":"2225.8450987199999","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":3,"v":{"v":"1429.5247108000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":4,"v":{"v":"0.64223908106726102","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":5,"v":{"v":"796.32038792000003","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":6,"v":{"v":"0.35776091893273898","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":7,"v":{"v":"60.458246320000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":8,"v":{"v":"665.69881396000005","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":12,"c":9,"v":{"v":"67.144115240000005","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":12,"c":10,"v":{"v":"3.0192123999999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":11,"v":{"v":"537.90933199999995","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":12,"v":{"v":"243.6335516","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":12,"c":13,"v":{"v":"14.77750432","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":12,"c":14,"v":{"v":"0.37","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":12,"c":15,"v":{"v":"-1pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":1,"v":{"v":"河北","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":2,"v":{"v":"3402.3939713200002","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":3,"v":{"v":"2663.5966042","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":4,"v":{"v":"0.78285954732238905","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":5,"v":{"v":"738.79736711999999","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":6,"v":{"v":"0.21714045267761101","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":7,"v":{"v":"108.79733032","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":8,"v":{"v":"540.78665876000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":13,"c":9,"v":{"v":"86.961382040000004","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":13,"c":10,"v":{"v":"2.2519960000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":11,"v":{"v":"105.4891032","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":12,"v":{"v":"618.5906708","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":13,"c":13,"v":{"v":"14.71759312","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":13,"c":14,"v":{"v":"0.42","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":13,"c":15,"v":{"v":"-20pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":1,"v":{"v":"广东","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":2,"v":{"v":"2917.4635942","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":3,"v":{"v":"2215.8682728799999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":4,"v":{"v":"0.75951873993739205","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":5,"v":{"v":"701.59532132000004","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":6,"v":{"v":"0.240481260062608","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":7,"v":{"v":"134.86446716","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":8,"v":{"v":"438.08337291999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":14,"c":9,"v":{"v":"126.38502219999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":14,"c":10,"v":{"v":"2.26245904","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":11,"v":{"v":"197.70700160000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":12,"v":{"v":"482.04097999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":14,"c":13,"v":{"v":"21.847339720000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":14,"c":14,"v":{"v":"0.4","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":14,"c":15,"v":{"v":"-16pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":1,"v":{"v":"云南","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":2,"v":{"v":"2646.5098760800001","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":3,"v":{"v":"1998.7585980399999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":4,"v":{"v":"0.75524320392884903","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":5,"v":{"v":"647.75127803999999","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":6,"v":{"v":"0.244756796071151","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":7,"v":{"v":"180.80675448","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":8,"v":{"v":"294.71467203999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":15,"c":9,"v":{"v":"169.09769312","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":15,"c":10,"v":{"v":"3.1321583999999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":11,"v":{"v":"156.0036264","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":12,"v":{"v":"426.26624720000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":15,"c":13,"v":{"v":"65.481404440000006","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":15,"c":14,"v":{"v":"0.43","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":15,"c":15,"v":{"v":"-19pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":1,"v":{"v":"河南","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":2,"v":{"v":"3598.8466131199998","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":3,"v":{"v":"2993.6286928","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":4,"v":{"v":"0.83183003184586701","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":5,"v":{"v":"605.21792031999996","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":6,"v":{"v":"0.16816996815413299","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":7,"v":{"v":"112.47826132","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":8,"v":{"v":"356.17894660000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":16,"c":9,"v":{"v":"132.40186439999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":16,"c":10,"v":{"v":"4.1588479999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":11,"v":{"v":"130.73512239999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":12,"v":{"v":"457.36288639999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":16,"c":13,"v":{"v":"17.119911519999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":16,"c":14,"v":{"v":"0.33","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":16,"c":15,"v":{"v":"-16pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":1,"v":{"v":"重庆","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":2,"v":{"v":"2075.3975083199998","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":3,"v":{"v":"1536.3577628","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":4,"v":{"v":"0.74027156563547003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":5,"v":{"v":"539.03974552","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":6,"v":{"v":"0.25972843436453003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":7,"v":{"v":"106.20855880000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":8,"v":{"v":"283.91852116000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":17,"c":9,"v":{"v":"147.01662396","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":17,"c":10,"v":{"v":"1.8960416","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":11,"v":{"v":"163.9229808","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":12,"v":{"v":"324.09780319999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":17,"c":13,"v":{"v":"51.018961519999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":17,"c":14,"v":{"v":"0.37","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":17,"c":15,"v":{"v":"-11pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":1,"v":{"v":"安徽","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":2,"v":{"v":"2715.9577661200001","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":3,"v":{"v":"2186.4714934799999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":4,"v":{"v":"0.80504620534051197","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":5,"v":{"v":"529.48627264000004","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":6,"v":{"v":"0.19495379465948801","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":7,"v":{"v":"55.339156879999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":8,"v":{"v":"427.58976752000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":18,"c":9,"v":{"v":"43.912936240000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":18,"c":10,"v":{"v":"2.644412","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":11,"v":{"v":"91.313329600000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":12,"v":{"v":"422.09739680000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":18,"c":13,"v":{"v":"16.075546240000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":18,"c":14,"v":{"v":"0.34","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":18,"c":15,"v":{"v":"-15pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":1,"v":{"v":"江西","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":2,"v":{"v":"3645.3488738800002","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":3,"v":{"v":"3131.9888545200001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":4,"v":{"v":"0.85917396739763996","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":5,"v":{"v":"513.36001936000002","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":6,"v":{"v":"0.14082603260236001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":7,"v":{"v":"82.378249400000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":8,"v":{"v":"303.57025828000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":19,"c":9,"v":{"v":"124.82065168","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":19,"c":10,"v":{"v":"2.5908600000000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":11,"v":{"v":"122.2856032","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":12,"v":{"v":"320.2509144","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":19,"c":13,"v":{"v":"70.823501759999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":19,"c":14,"v":{"v":"0.31","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":19,"c":15,"v":{"v":"-17pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":1,"v":{"v":"深圳","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":2,"v":{"v":"1792.49366224","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":3,"v":{"v":"1303.00626644","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":4,"v":{"v":"0.72692377880527104","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":5,"v":{"v":"489.4873958","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":6,"v":{"v":"0.27307622119472902","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":7,"v":{"v":"44.193504879999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":8,"v":{"v":"409.02241371999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":20,"c":9,"v":{"v":"34.590277200000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":20,"c":10,"v":{"v":"1.6812","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":11,"v":{"v":"293.12928319999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":12,"v":{"v":"174.22545439999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":20,"c":13,"v":{"v":"22.132658200000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":20,"c":14,"v":{"v":"0.53","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":20,"c":15,"v":{"v":"-26pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":1,"v":{"v":"辽宁","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":2,"v":{"v":"2829.0884206000001","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":3,"v":{"v":"2351.2437609600001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":4,"v":{"v":"0.83109589076093404","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":5,"v":{"v":"477.84465963999997","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":6,"v":{"v":"0.16890410923906601","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":7,"v":{"v":"81.604184520000004","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":8,"v":{"v":"299.75112156","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":21,"c":9,"v":{"v":"92.760522359999996","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":21,"c":10,"v":{"v":"3.7288312000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":11,"v":{"v":"118.5186976","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":12,"v":{"v":"350.41360520000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":21,"c":13,"v":{"v":"8.9123568399999993","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":21,"c":14,"v":{"v":"0.27","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":21,"c":15,"v":{"v":"-10pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":1,"v":{"v":"北京","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":2,"v":{"v":"1996.79746092","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":3,"v":{"v":"1632.3999836800001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":4,"v":{"v":"0.81750904417110604","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":5,"v":{"v":"364.39747724","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":6,"v":{"v":"0.18249095582889399","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":7,"v":{"v":"37.342216039999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":8,"v":{"v":"282.35082399999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":22,"c":9,"v":{"v":"43.264020799999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":22,"c":10,"v":{"v":"1.4404163999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":11,"v":{"v":"165.48122720000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":12,"v":{"v":"154.01870160000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":22,"c":13,"v":{"v":"44.897548440000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":22,"c":14,"v":{"v":"0.33","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":22,"c":15,"v":{"v":"-15pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":1,"v":{"v":"湖南","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":2,"v":{"v":"1864.9494316","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":3,"v":{"v":"1517.4401915999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":4,"v":{"v":"0.81366291540577595","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":5,"v":{"v":"347.50923999999998","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":6,"v":{"v":"0.18633708459422399","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":7,"v":{"v":"63.802606359999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":8,"v":{"v":"214.4945602","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":23,"c":9,"v":{"v":"67.326989040000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":23,"c":10,"v":{"v":"1.8850844","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":11,"v":{"v":"20.423704799999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":12,"v":{"v":"315.83747920000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":23,"c":13,"v":{"v":"11.248056","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":23,"c":14,"v":{"v":"0.34","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":23,"c":15,"v":{"v":"-15pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":1,"v":{"v":"福建","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":2,"v":{"v":"1317.76404256","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":3,"v":{"v":"1019.6549738799999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":4,"v":{"v":"0.77377659501099405","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":5,"v":{"v":"298.10906868000001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":6,"v":{"v":"0.22622340498900601","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":7,"v":{"v":"63.782823800000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":8,"v":{"v":"207.7246624","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":24,"c":9,"v":{"v":"25.96938248","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":24,"c":10,"v":{"v":"0.63219999999999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":11,"v":{"v":"112.9726284","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":12,"v":{"v":"168.42521400000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":24,"c":13,"v":{"v":"16.711226280000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":24,"c":14,"v":{"v":"0.45","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":24,"c":15,"v":{"v":"-22pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":1,"v":{"v":"陕西","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":2,"v":{"v":"1471.1459523999999","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":3,"v":{"v":"1173.6456493600001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":4,"v":{"v":"0.79777648672134605","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":5,"v":{"v":"297.50030304000001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":6,"v":{"v":"0.20222351327865401","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":7,"v":{"v":"49.766822560000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":8,"v":{"v":"205.43396716000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":25,"c":9,"v":{"v":"41.23985012","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":25,"c":10,"v":{"v":"1.0596631999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":11,"v":{"v":"18.440000000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":12,"v":{"v":"264.89222160000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":25,"c":13,"v":{"v":"14.16808144","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":25,"c":14,"v":{"v":"0.39","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":25,"c":15,"v":{"v":"-19pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":1,"v":{"v":"甘肃","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":2,"v":{"v":"774.16633276000005","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":3,"v":{"v":"525.01503088000004","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":4,"v":{"v":"0.67816825488684795","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":5,"v":{"v":"249.15130188000001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":6,"v":{"v":"0.32183174511315199","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":7,"v":{"v":"22.865210560000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":8,"v":{"v":"203.02882983999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":26,"c":9,"v":{"v":"21.69848708","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":26,"c":10,"v":{"v":"1.5587743999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":11,"v":{"v":"90.468551199999993","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":12,"v":{"v":"151.5952288","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":26,"c":13,"v":{"v":"7.0875218799999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":26,"c":14,"v":{"v":"0.56999999999999995","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":26,"c":15,"v":{"v":"-25pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":1,"v":{"v":"天津","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":2,"v":{"v":"1204.36077664","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":3,"v":{"v":"959.08595276000005","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":4,"v":{"v":"0.796344393941255","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":5,"v":{"v":"245.27482388000001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":6,"v":{"v":"0.203655606058745","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":7,"v":{"v":"33.691207599999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":8,"v":{"v":"183.77019024000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":27,"c":9,"v":{"v":"26.598094039999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":27,"c":10,"v":{"v":"1.2153320000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":11,"v":{"v":"86.479747200000006","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":12,"v":{"v":"153.17321680000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":27,"c":13,"v":{"v":"5.6218598799999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":27,"c":14,"v":{"v":"0.44","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":27,"c":15,"v":{"v":"-24pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":1,"v":{"v":"山西","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":2,"v":{"v":"1776.976868","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":3,"v":{"v":"1549.51288256","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":4,"v":{"v":"0.87199383991080703","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":5,"v":{"v":"227.46398543999999","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":6,"v":{"v":"0.12800616008919299","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":7,"v":{"v":"23.338842799999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":8,"v":{"v":"180.22438260000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":28,"c":9,"v":{"v":"22.493379839999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":28,"c":10,"v":{"v":"1.4073802","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":11,"v":{"v":"47.454368000000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":12,"v":{"v":"174.26583679999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":28,"c":13,"v":{"v":"5.7437806399999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":28,"c":14,"v":{"v":"0.24","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":28,"c":15,"v":{"v":"-11pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":1,"v":{"v":"上海","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":2,"v":{"v":"1004.97309508","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":3,"v":{"v":"831.52101631999994","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":4,"v":{"v":"0.82740624638693205","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":5,"v":{"v":"173.45207876000001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":6,"v":{"v":"0.172593753613068","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":7,"v":{"v":"42.4802392","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":8,"v":{"v":"87.117791519999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":29,"c":9,"v":{"v":"43.506008039999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":29,"c":10,"v":{"v":"0.34804000000000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":11,"v":{"v":"48.030437599999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":12,"v":{"v":"119.5090708","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":29,"c":13,"v":{"v":"5.9125703600000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":29,"c":14,"v":{"v":"0.32","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":29,"c":15,"v":{"v":"-15pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":1,"v":{"v":"新疆","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":2,"v":{"v":"693.74383855999997","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":3,"v":{"v":"527.80977475999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":4,"v":{"v":"0.76081363959292503","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":5,"v":{"v":"165.93406379999999","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":6,"v":{"v":"0.239186360407075","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":7,"v":{"v":"20.538758399999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":8,"v":{"v":"119.83345","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":30,"c":9,"v":{"v":"25.167166999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":30,"c":10,"v":{"v":"0.39468839999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":11,"v":{"v":"49.421368000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":12,"v":{"v":"112.4646668","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":30,"c":13,"v":{"v":"4.0480289999999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":30,"c":14,"v":{"v":"0.31","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":30,"c":15,"v":{"v":"-7pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":1,"v":{"v":"吉林","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":2,"v":{"v":"1817.2486079600001","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":3,"v":{"v":"1652.5701514","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":4,"v":{"v":"0.90938033693427101","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":5,"v":{"v":"164.67845656","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":6,"v":{"v":"9.0619663065728898E-2","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":7,"v":{"v":"32.492592160000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":8,"v":{"v":"70.470394400000004","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":31,"c":9,"v":{"v":"61.136518000000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":31,"c":10,"v":{"v":"0.57895200000000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":11,"v":{"v":"8.3098112000000004","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":12,"v":{"v":"153.22964640000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":31,"c":13,"v":{"v":"3.1389989599999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":31,"c":14,"v":{"v":"0.26","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":31,"c":15,"v":{"v":"-17pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":1,"v":{"v":"苏州","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":2,"v":{"v":"1617.960863","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":3,"v":{"v":"1453.79587436","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":4,"v":{"v":"0.89853587166774396","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":5,"v":{"v":"164.16498863999999","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":6,"v":{"v":"0.101464128332256","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":7,"v":{"v":"15.432004239999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":8,"v":{"v":"100.86740847999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":32,"c":9,"v":{"v":"47.181385919999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":32,"c":10,"v":{"v":"0.68418999999999996","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":11,"v":{"v":"54.879308799999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":12,"v":{"v":"90.061052399999994","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":32,"c":13,"v":{"v":"19.224627439999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":32,"c":14,"v":{"v":"0.06","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":32,"c":15,"v":{"v":"4pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":1,"v":{"v":"宁波","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":2,"v":{"v":"854.27100896000002","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":3,"v":{"v":"703.71573307999995","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":4,"v":{"v":"0.823761693536472","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":5,"v":{"v":"150.55527588000001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":6,"v":{"v":"0.176238306463528","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":7,"v":{"v":"10.331060519999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":8,"v":{"v":"80.217877240000007","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":33,"c":9,"v":{"v":"59.651386119999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":33,"c":10,"v":{"v":"0.35495199999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":11,"v":{"v":"81.248072800000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":12,"v":{"v":"58.717191999999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":33,"c":13,"v":{"v":"10.59001108","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":33,"c":14,"v":{"v":"0.42","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":33,"c":15,"v":{"v":"-24pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":1,"v":{"v":"大连","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":2,"v":{"v":"596.18927780000001","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":3,"v":{"v":"452.60905595999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":4,"v":{"v":"0.75917007033433104","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":5,"v":{"v":"143.58022184000001","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":6,"v":{"v":"0.24082992966566899","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":7,"v":{"v":"13.911652800000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":8,"v":{"v":"109.01721864","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":34,"c":9,"v":{"v":"19.997950400000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":34,"c":10,"v":{"v":"0.65339999999999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":11,"v":{"v":"55.406907199999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":12,"v":{"v":"86.984442000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":34,"c":13,"v":{"v":"1.18887264","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":34,"c":14,"v":{"v":"0.45","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":34,"c":15,"v":{"v":"-21pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":1,"v":{"v":"贵州","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":2,"v":{"v":"753.31818004000002","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":3,"v":{"v":"611.13828416000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":4,"v":{"v":"0.81126182847140305","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":5,"v":{"v":"142.17989588","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":6,"v":{"v":"0.18873817152859701","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":7,"v":{"v":"19.799444520000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":8,"v":{"v":"83.872510079999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":35,"c":9,"v":{"v":"37.413649280000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":35,"c":10,"v":{"v":"1.094292","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":11,"v":{"v":"62.559812800000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":12,"v":{"v":"76.597678799999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":35,"c":13,"v":{"v":"3.0224042799999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":35,"c":14,"v":{"v":"0.42","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":35,"c":15,"v":{"v":"-23pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":1,"v":{"v":"广西","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":2,"v":{"v":"1152.89842004","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":3,"v":{"v":"1029.4388031999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":4,"v":{"v":"0.89291370801278702","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":5,"v":{"v":"123.45961684","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":6,"v":{"v":"0.10708629198721301","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":7,"v":{"v":"21.190273479999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":8,"v":{"v":"51.950821159999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":36,"c":9,"v":{"v":"49.0447062","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":36,"c":10,"v":{"v":"1.2738160000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":11,"v":{"v":"3.9321440000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":12,"v":{"v":"117.6142704","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":36,"c":13,"v":{"v":"1.9132024400000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":36,"c":14,"v":{"v":"0.26","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":36,"c":15,"v":{"v":"-15pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":1,"v":{"v":"内蒙古","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":2,"v":{"v":"670.43604731999994","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":3,"v":{"v":"558.48924792000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":4,"v":{"v":"0.833023895645982","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":5,"v":{"v":"111.9467994","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":6,"v":{"v":"0.166976104354018","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":7,"v":{"v":"18.803385599999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":8,"v":{"v":"77.503798200000006","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":37,"c":9,"v":{"v":"15.509355599999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":37,"c":10,"v":{"v":"0.13025999999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":11,"v":{"v":"3.29888","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":12,"v":{"v":"106.383492","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":37,"c":13,"v":{"v":"2.2644274000000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":37,"c":14,"v":{"v":"0.28000000000000003","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":37,"c":15,"v":{"v":"-11pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":1,"v":{"v":"佛山","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":2,"v":{"v":"541.67987768","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":3,"v":{"v":"484.17562371999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":4,"v":{"v":"0.89384088955585905","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":5,"v":{"v":"57.50425396","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":6,"v":{"v":"0.106159110444141","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":7,"v":{"v":"5.7651843999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":8,"v":{"v":"37.147610159999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":9,"v":{"v":"14.5914594","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":10,"v":{"v":"0","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":11,"v":{"v":"23.135263999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":12,"v":{"v":"32.493895999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":13,"v":{"v":"1.8750939600000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":14,"v":{"v":"0.34","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":38,"c":15,"v":{"v":"-23pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":1,"v":{"v":"海南","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":2,"v":{"v":"100.40667648","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":3,"v":{"v":"66.95542528","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":4,"v":{"v":"0.66684236175606204","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":5,"v":{"v":"33.451251200000002","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":6,"v":{"v":"0.33315763824393801","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":7,"v":{"v":"13.556314800000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":8,"v":{"v":"14.584803600000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":39,"c":9,"v":{"v":"5.3101327999999999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":39,"c":10,"v":{"v":"0","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":11,"v":{"v":"10","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":39,"c":12,"v":{"v":"22.896640000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":39,"c":13,"v":{"v":"0.55461119999999997","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":39,"c":14,"v":{"v":"0.16","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":39,"c":15,"v":{"v":"17pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":1,"v":{"v":"青海","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":2,"v":{"v":"95.309014239999996","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":3,"v":{"v":"75.331582600000004","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":4,"v":{"v":"0.79039305149359396","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":5,"v":{"v":"19.977431639999999","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":6,"v":{"v":"0.20960694850640599","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":7,"v":{"v":"6.9849164000000004","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":8,"v":{"v":"10.93202","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":40,"c":9,"v":{"v":"2.0485072400000002","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":40,"c":10,"v":{"v":"1.1988E-2","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":11,"v":{"v":"0.90888800000000003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":40,"c":12,"v":{"v":"18.589016000000001","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":40,"c":13,"v":{"v":"0.47952763999999998","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":40,"c":14,"v":{"v":"0.53","ct":{"fa":"0%"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":40,"c":15,"v":{"v":"-32pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":41,"c":1,"v":{"v":"总计","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":41,"c":2,"v":{"v":"94329.241288119985","ct":{"fa":"0"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":41,"c":3,"v":{"v":"70216.586054599989","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":41,"c":4,"v":{"v":"0.74437772524990309","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":41,"c":5,"v":{"v":"24112.655233519996","bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":41,"c":6,"v":{"v":"0.25562227475009697","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":41,"c":7,"v":{"v":"3426.5357541600015","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":41,"c":8,"v":{"v":"17406.602316679993","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":41,"c":9,"v":{"v":"3205.3206216399999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":41,"c":10,"v":{"v":"74.196541040000014","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":41,"c":11,"v":{"v":"12374.862685799999","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","ht":0,"vt":0}},{"r":41,"c":12,"v":{"v":"11007.864898600003","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":41,"c":13,"v":{"v":"729.92764912000007","ct":{"fa":"0"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":41,"c":14,"v":{"v":"0.43","ct":{"fa":"General"},"fs":11,"fc":"#FFFFFF","ff":"微软雅黑"}},{"r":41,"c":15,"v":{"v":"-17pt","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":42,"c":1,"v":{"v":"注:数据截至6月29日9点45;按未承保合计逆序排列;"}},{"r":42,"c":15,"v":{"ct":{"fa":"0"},"fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}}]},{"name":"sql","config":{},"index":"sheet_ahrpp_1598615264344","status":"0","order":"2","luckysheet_select_save":[{"row":[18,18],"column":[2,2],"sheetIndex":2}],"zoomRatio":1,"showGridLines":"1","defaultColWidth":76,"defaultRowHeight":20,"celldata":[{"r":0,"c":0,"v":{"v":"select status_name 核保状态,_x000D_\r\n state 预收保单状态,_x000D_\r\n SUM(nbv_period_prem) nbv_period_prem,_x000D_\r\n SUM(nbv_value) nbv_value,_x000D_\r\n COUNT(DISTINCT send_code) JS_x000D_\r\n_x000D_\r\n from (select ag.organ_id_2,_x000D_\r\n ag.organ_name_2,_x000D_\r\n qy.qy_organ_id_3,_x000D_\r\n qy.qy_organ_name_3,_x000D_\r\n ag.organ_id_4,_x000D_\r\n ag.organ_name_4,_x000D_\r\n ag.organ_id_5,_x000D_\r\n ag.organ_name_5,_x000D_\r\n ag.dept_id_2,_x000D_\r\n ag.dept_name_2,_x000D_\r\n ag.agent_code,_x000D_\r\n ag.agent_name,_x000D_\r\n a.send_code,_x000D_\r\n a.pre_insert_time,_x000D_\r\n tus.status_name,_x000D_\r\n a.state,_x000D_\r\n tup.uw_status,_x000D_\r\n nbv_period_prem,_x000D_\r\n nbv_value,_x000D_\r\n row_number() over(partition by a.send_code order by tup.update_time desc) rn_x000D_\r\n from (select pre.agent_id,_x000D_\r\n pre.send_code,_x000D_\r\n pre.policy_id,_x000D_\r\n pre.p_state_id,_x000D_\r\n tps.state,_x000D_\r\n sum(pre.nbv_period_prem) nbv_period_prem,_x000D_\r\n sum(pre.nbv_value) nbv_value,_x000D_\r\n min(pre.pre_insert_time) pre_insert_time_x000D_\r\n from da_rpt_ind_mk_pre_detail pre_x000D_\r\n left join t_policy_state tps_x000D_\r\n on pre.p_state_id = tps.p_state_id_x000D_\r\n where pre.pre_insert_time >= DATE_x000D_\r\n '2020-06-01'_x000D_\r\n and pre.pre_insert_time < DATE '2020-07-01'_x000D_\r\n --and pre.p_state_id in (14, 6)_x000D_\r\n group by pre.agent_id,_x000D_\r\n pre.send_code,_x000D_\r\n pre.policy_id,_x000D_\r\n pre.p_state_id,_x000D_\r\n tps.state) a_x000D_\r\n join da_rpt_ind_mk_front_agent ag_x000D_\r\n on a.agent_id = ag.agent_id_x000D_\r\n join das_rpt_ind_mk_qy_organ qy_x000D_\r\n on ag.organ_id_3 = qy.organ_id_3_x000D_\r\n left join t_uw_policy tup_x000D_\r\n on a.policy_id = tup.policy_id_x000D_\r\n left join t_uw_status tus_x000D_\r\n on tup.uw_status = tus.uw_status_x000D_\r\n where nbv_period_prem > 0_x000D_\r\n AND AG.AGENT_CATE1 IN ('1', 'D')) a_x000D_\r\n where a.rn = 1_x000D_\r\n GROUP BY status_name, state","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":2,"vt":0}}]},{"name":"Sheet2","config":{"rowlen":{"0":24,"1":24,"2":24,"3":23,"4":23,"5":23,"6":23,"7":23,"8":23,"9":23,"10":23,"11":23,"12":23,"13":23,"14":23,"15":23,"16":23,"17":23,"18":23,"19":23,"20":23,"21":23,"22":23,"23":23,"24":23,"25":23,"26":23,"27":23,"28":23,"29":23,"30":23,"31":23,"32":23,"33":23,"34":23,"35":23,"36":23,"37":23,"38":24},"borderInfo":[{"rangeType":"cell","value":{"row_index":0,"col_index":0,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":2,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":3,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":4,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":5,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":6,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":7,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":9,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":10,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":11,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":0,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":0,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":2,"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":3,"l":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":5,"l":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":6,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":7,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":8,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":9,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":10,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":11,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":1,"col_index":12,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":0,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":2,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":3,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":4,"l":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":5,"r":{"style":8,"color":"#000000"},"t":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":6,"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":7,"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":8,"t":{"style":1,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":9,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":2,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":3,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":4,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":5,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":6,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":7,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":8,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":9,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":10,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":11,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":12,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":13,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":14,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":15,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":16,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":17,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":18,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":19,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":20,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":21,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":22,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":23,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":24,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":25,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":26,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":27,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":28,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":29,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":30,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":31,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":32,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":33,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":34,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":35,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":36,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":0,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":3,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":5,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":37,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":0,"b":{"style":1,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":1,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":2,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":3,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":4,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":5,"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":6,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":7,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":8,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":9,"l":{"style":8,"color":"#000000"},"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":10,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":11,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}},{"rangeType":"cell","value":{"row_index":38,"col_index":12,"r":{"style":8,"color":"#000000"},"b":{"style":8,"color":"#000000"}}}],"merge":{"0_0":{"r":0,"c":0,"rs":3,"cs":1},"0_1":{"r":0,"c":1,"rs":3,"cs":1},"0_2":{"r":0,"c":2,"rs":1,"cs":2},"0_4":{"r":0,"c":4,"rs":1,"cs":9},"1_2":{"r":1,"c":2,"rs":2,"cs":1},"1_3":{"r":1,"c":3,"rs":2,"cs":1},"1_4":{"r":1,"c":4,"rs":2,"cs":1},"1_5":{"r":1,"c":5,"rs":2,"cs":1},"1_6":{"r":1,"c":6,"rs":1,"cs":4},"1_10":{"r":1,"c":10,"rs":1,"cs":3}}},"index":"sheet_0hepp_1598615264345","status":"0","order":"3","luckysheet_select_save":[{"row":[8,8],"column":[5,5],"sheetIndex":3}],"zoomRatio":1,"showGridLines":"1","defaultColWidth":76,"defaultRowHeight":20,"celldata":[{"r":0,"c":0,"v":{"v":"分公司","bg":"#70AD47","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":1,"v":{"v":"6月预收\r\n边际NBV","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":2,"v":{"v":"6月预收且承保","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0,"tb":2}},{"r":0,"c":3,"v":{"bg":"#E2EFDA","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":4,"v":{"v":"6月预收未承保","bg":"#E2EFDA","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":5,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":6,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":7,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":8,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":9,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":10,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":11,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":0,"c":12,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":0,"v":{"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":1,"v":{"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0,"tb":2}},{"r":1,"c":2,"v":{"v":"承保边际NBV","bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":3,"v":{"v":"承保占比","bg":"#E2EFDA","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":4,"v":{"v":"未承保合计","bg":"#E2EFDA","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":5,"v":{"v":"未承保占比","bg":"#FCE4D6","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":6,"v":{"v":"按核保状态分","bg":"#E2EFDA","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":7,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":8,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":9,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":10,"v":{"v":"按险种分","bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":11,"v":{"ct":{"fa":"0"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":1,"c":12,"v":{"ct":{"fa":"0"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":0,"v":{"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":1,"v":{"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0,"tb":2}},{"r":2,"c":2,"v":{"bg":"#E2EFDA","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":3,"v":{"bg":"#E2EFDA","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":4,"v":{"bg":"#FCE4D6","fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":5,"v":{"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":6,"v":{"v":"待核销问题件","ct":{"fa":"0","t":"s"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":7,"v":{"v":"待缴费","ct":{"fa":"0","t":"s"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":8,"v":{"v":"待人工核保","ct":{"fa":"0","t":"s"},"bg":"#000000","fs":11,"fc":"#FFFFFF","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":9,"v":{"v":"其他","bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":10,"v":{"v":"年金险","bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":11,"v":{"v":"健康险","bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":2,"c":12,"v":{"v":"其他产品","bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":0,"v":{"v":"四川","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":3,"c":1,"v":{"v":"7940","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":2,"v":{"v":"2419","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":3,"v":{"v":"0.3","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":4,"v":{"v":"5521","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":5,"v":{"v":"0.7","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":6,"v":{"v":"267","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":7,"v":{"v":"5071","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":8,"v":{"v":"175","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":9,"v":{"v":"7","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":10,"v":{"v":"5198","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":11,"v":{"v":"285","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":3,"c":12,"v":{"v":"38","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":0,"v":{"v":"山东","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":4,"c":1,"v":{"v":"3909","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":2,"v":{"v":"2875","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":3,"v":{"v":"0.74","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":4,"v":{"v":"1034","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":5,"v":{"v":"0.26","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":6,"v":{"v":"273","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":7,"v":{"v":"639","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":8,"v":{"v":"117","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":9,"v":{"v":"6","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":10,"v":{"v":"121","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":11,"v":{"v":"881","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":4,"c":12,"v":{"v":"32","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":0,"v":{"v":"湖北","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":5,"c":1,"v":{"v":"1747","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":2,"v":{"v":"1063","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":3,"v":{"v":"0.61","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":4,"v":{"v":"683","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":5,"v":{"v":"0.39","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":6,"v":{"v":"156","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":7,"v":{"v":"426","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":8,"v":{"v":"98","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":9,"v":{"v":"4","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":10,"v":{"v":"85","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":11,"v":{"v":"588","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":5,"c":12,"v":{"v":"11","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":0,"v":{"v":"浙江","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":6,"c":1,"v":{"v":"1123","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":2,"v":{"v":"554","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":3,"v":{"v":"0.49","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":4,"v":{"v":"568","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":5,"v":{"v":"0.51","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":6,"v":{"v":"37","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":7,"v":{"v":"460","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":8,"v":{"v":"32","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":9,"v":{"v":"39","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":10,"v":{"v":"438","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":11,"v":{"v":"124","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":6,"c":12,"v":{"v":"7","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":0,"v":{"v":"河北","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":7,"c":1,"v":{"v":"1208","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":2,"v":{"v":"701","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":3,"v":{"v":"0.57999999999999996","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":4,"v":{"v":"508","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":5,"v":{"v":"0.42","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":6,"v":{"v":"91","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":7,"v":{"v":"382","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":8,"v":{"v":"32","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":9,"v":{"v":"2","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":10,"v":{"v":"27","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":11,"v":{"v":"472","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":7,"c":12,"v":{"v":"9","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":0,"v":{"v":"江苏","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":8,"c":1,"v":{"v":"1188","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":2,"v":{"v":"713","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":3,"v":{"v":"0.6","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":4,"v":{"v":"475","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":5,"v":{"v":"0.4","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":6,"v":{"v":"95","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":7,"v":{"v":"333","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":8,"v":{"v":"46","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":9,"v":{"v":"2","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":10,"v":{"v":"164","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":11,"v":{"v":"297","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":8,"c":12,"v":{"v":"14","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":0,"v":{"v":"江西","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":9,"c":1,"v":{"v":"1353","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":2,"v":{"v":"933","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":3,"v":{"v":"0.69","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":4,"v":{"v":"420","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":5,"v":{"v":"0.31","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":6,"v":{"v":"113","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":7,"v":{"v":"252","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":8,"v":{"v":"54","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":9,"v":{"v":"1","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":10,"v":{"v":"101","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":11,"v":{"v":"302","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":9,"c":12,"v":{"v":"16","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":0,"v":{"v":"深圳","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":10,"c":1,"v":{"v":"724","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":2,"v":{"v":"337","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":3,"v":{"v":"0.47","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":4,"v":{"v":"386","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":5,"v":{"v":"0.53","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":6,"v":{"v":"44","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":7,"v":{"v":"308","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":8,"v":{"v":"32","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":9,"v":{"v":"3","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":10,"v":{"v":"260","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":11,"v":{"v":"114","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":10,"c":12,"v":{"v":"13","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":0,"v":{"v":"广东","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":11,"c":1,"v":{"v":"949","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":2,"v":{"v":"570","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":3,"v":{"v":"0.6","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":4,"v":{"v":"379","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":5,"v":{"v":"0.4","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":6,"v":{"v":"77","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":7,"v":{"v":"244","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":8,"v":{"v":"56","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":9,"v":{"v":"3","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":10,"v":{"v":"46","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":11,"v":{"v":"298","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":11,"c":12,"v":{"v":"35","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":0,"v":{"v":"黑龙江","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":12,"c":1,"v":{"v":"1741","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":2,"v":{"v":"1367","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":3,"v":{"v":"0.79","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":4,"v":{"v":"374","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":5,"v":{"v":"0.21","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":6,"v":{"v":"145","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":7,"v":{"v":"163","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":8,"v":{"v":"64","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":9,"v":{"v":"2","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":10,"v":{"v":"23","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":11,"v":{"v":"338","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":12,"c":12,"v":{"v":"13","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":0,"v":{"v":"安徽","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":13,"c":1,"v":{"v":"1091","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":2,"v":{"v":"718","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":3,"v":{"v":"0.66","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":4,"v":{"v":"373","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":5,"v":{"v":"0.34","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":6,"v":{"v":"62","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":7,"v":{"v":"280","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":8,"v":{"v":"30","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":9,"v":{"v":"1","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":10,"v":{"v":"35","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":11,"v":{"v":"329","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":13,"c":12,"v":{"v":"9","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":0,"v":{"v":"河南","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":14,"c":1,"v":{"v":"1013","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":2,"v":{"v":"684","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":3,"v":{"v":"0.67","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":4,"v":{"v":"329","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":5,"v":{"v":"0.33","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":6,"v":{"v":"78","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":7,"v":{"v":"207","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":8,"v":{"v":"42","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":9,"v":{"v":"2","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":10,"v":{"v":"110","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":11,"v":{"v":"211","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":14,"c":12,"v":{"v":"8","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":0,"v":{"v":"云南","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":15,"c":1,"v":{"v":"692","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":2,"v":{"v":"393","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":3,"v":{"v":"0.56999999999999995","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":4,"v":{"v":"299","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":5,"v":{"v":"0.43","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":6,"v":{"v":"128","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":7,"v":{"v":"134","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":8,"v":{"v":"35","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":9,"v":{"v":"2","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":10,"v":{"v":"34","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":11,"v":{"v":"252","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":15,"c":12,"v":{"v":"13","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":0,"v":{"v":"福建","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":16,"c":1,"v":{"v":"629","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":2,"v":{"v":"344","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":3,"v":{"v":"0.55000000000000004","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":4,"v":{"v":"285","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":5,"v":{"v":"0.45","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":6,"v":{"v":"62","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":7,"v":{"v":"196","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":8,"v":{"v":"27","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":9,"v":{"v":"1","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":10,"v":{"v":"107","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":11,"v":{"v":"162","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":16,"c":12,"v":{"v":"15","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":0,"v":{"v":"湖南","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":17,"c":1,"v":{"v":"715","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":2,"v":{"v":"469","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":3,"v":{"v":"0.66","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":4,"v":{"v":"246","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":5,"v":{"v":"0.34","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":6,"v":{"v":"66","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":7,"v":{"v":"153","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":8,"v":{"v":"26","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":9,"v":{"v":"2","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":10,"v":{"v":"16","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":11,"v":{"v":"224","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":17,"c":12,"v":{"v":"6","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":0,"v":{"v":"辽宁","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":18,"c":1,"v":{"v":"849","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":2,"v":{"v":"620","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":3,"v":{"v":"0.73","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":4,"v":{"v":"229","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":5,"v":{"v":"0.27","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":6,"v":{"v":"50","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":7,"v":{"v":"140","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":8,"v":{"v":"37","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":9,"v":{"v":"1","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":10,"v":{"v":"40","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":11,"v":{"v":"184","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":18,"c":12,"v":{"v":"5","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":0,"v":{"v":"陕西","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":19,"c":1,"v":{"v":"555","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":2,"v":{"v":"338","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":3,"v":{"v":"0.61","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":4,"v":{"v":"217","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":5,"v":{"v":"0.39","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":6,"v":{"v":"33","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":7,"v":{"v":"167","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":8,"v":{"v":"16","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":9,"v":{"v":"1","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":10,"v":{"v":"4","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":11,"v":{"v":"202","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":19,"c":12,"v":{"v":"11","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":0,"v":{"v":"吉林","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":20,"c":1,"v":{"v":"789","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":2,"v":{"v":"584","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":3,"v":{"v":"0.74","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":4,"v":{"v":"205","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":5,"v":{"v":"0.26","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":6,"v":{"v":"63","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":7,"v":{"v":"115","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":8,"v":{"v":"24","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":9,"v":{"v":"2","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":10,"v":{"v":"13","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":11,"v":{"v":"180","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":20,"c":12,"v":{"v":"12","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":0,"v":{"v":"重庆","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":21,"c":1,"v":{"v":"531","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":2,"v":{"v":"334","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":3,"v":{"v":"0.63","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":4,"v":{"v":"197","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":5,"v":{"v":"0.37","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":6,"v":{"v":"84","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":7,"v":{"v":"76","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":8,"v":{"v":"38","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":10,"v":{"v":"38","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":11,"v":{"v":"148","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":21,"c":12,"v":{"v":"11","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":0,"v":{"v":"天津","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":22,"c":1,"v":{"v":"417","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":2,"v":{"v":"232","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":3,"v":{"v":"0.56000000000000005","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":4,"v":{"v":"186","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":5,"v":{"v":"0.44","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":6,"v":{"v":"40","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":7,"v":{"v":"120","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":8,"v":{"v":"26","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":10,"v":{"v":"42","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":11,"v":{"v":"139","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":22,"c":12,"v":{"v":"5","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":0,"v":{"v":"北京","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":23,"c":1,"v":{"v":"554","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":2,"v":{"v":"369","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":3,"v":{"v":"0.67","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":4,"v":{"v":"185","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":5,"v":{"v":"0.33","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":6,"v":{"v":"45","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":7,"v":{"v":"121","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":8,"v":{"v":"18","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":9,"v":{"v":"1","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":10,"v":{"v":"97","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":11,"v":{"v":"86","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":23,"c":12,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":0,"v":{"v":"宁波","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":24,"c":1,"v":{"v":"370","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":2,"v":{"v":"214","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":3,"v":{"v":"0.57999999999999996","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":4,"v":{"v":"157","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":5,"v":{"v":"0.42","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":6,"v":{"v":"41","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":7,"v":{"v":"100","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":8,"v":{"v":"16","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":10,"v":{"v":"75","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":11,"v":{"v":"75","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":24,"c":12,"v":{"v":"7","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":0,"v":{"v":"贵州","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":25,"c":1,"v":{"v":"347","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":2,"v":{"v":"203","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":3,"v":{"v":"0.57999999999999996","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":4,"v":{"v":"144","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":5,"v":{"v":"0.42","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":6,"v":{"v":"11","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":7,"v":{"v":"117","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":8,"v":{"v":"9","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":9,"v":{"v":"7","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":10,"v":{"v":"119","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":11,"v":{"v":"24","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":25,"c":12,"v":{"v":"1","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":0,"v":{"v":"青岛","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":26,"c":1,"v":{"v":"378","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":2,"v":{"v":"238","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":3,"v":{"v":"0.63","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":4,"v":{"v":"139","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":5,"v":{"v":"0.37","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":6,"v":{"v":"33","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":7,"v":{"v":"96","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":8,"v":{"v":"10","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":10,"v":{"v":"46","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":11,"v":{"v":"91","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":26,"c":12,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":0,"v":{"v":"山西","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":27,"c":1,"v":{"v":"534","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":2,"v":{"v":"407","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":3,"v":{"v":"0.76","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":4,"v":{"v":"127","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":5,"v":{"v":"0.24","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":6,"v":{"v":"24","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":7,"v":{"v":"94","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":8,"v":{"v":"8","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":10,"v":{"v":"15","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":11,"v":{"v":"109","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":27,"c":12,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":0,"v":{"v":"内蒙古","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":28,"c":1,"v":{"v":"316","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":2,"v":{"v":"227","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":3,"v":{"v":"0.72","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":4,"v":{"v":"89","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":5,"v":{"v":"0.28000000000000003","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":6,"v":{"v":"11","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":7,"v":{"v":"70","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":8,"v":{"v":"8","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":10,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":11,"v":{"v":"82","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":28,"c":12,"v":{"v":"4","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":0,"v":{"v":"广西","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":29,"c":1,"v":{"v":"334","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":2,"v":{"v":"246","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":3,"v":{"v":"0.74","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":4,"v":{"v":"88","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":5,"v":{"v":"0.26","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":6,"v":{"v":"22","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":7,"v":{"v":"46","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":8,"v":{"v":"19","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":9,"v":{"v":"1","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":10,"v":{"v":"11","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":11,"v":{"v":"73","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":29,"c":12,"v":{"v":"3","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":0,"v":{"v":"大连","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":30,"c":1,"v":{"v":"172","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":2,"v":{"v":"95","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":3,"v":{"v":"0.55000000000000004","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":4,"v":{"v":"77","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":5,"v":{"v":"0.45","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":6,"v":{"v":"25","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":7,"v":{"v":"39","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":8,"v":{"v":"13","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":10,"v":{"v":"9","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":11,"v":{"v":"66","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":30,"c":12,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":0,"v":{"v":"甘肃","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":31,"c":1,"v":{"v":"136","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":2,"v":{"v":"59","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":3,"v":{"v":"0.43","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":4,"v":{"v":"77","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":5,"v":{"v":"0.56999999999999995","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":6,"v":{"v":"15","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":7,"v":{"v":"52","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":8,"v":{"v":"11","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":10,"v":{"v":"6","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":11,"v":{"v":"69","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":31,"c":12,"v":{"v":"3","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":0,"v":{"v":"上海","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":32,"c":1,"v":{"v":"196","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":2,"v":{"v":"133","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":3,"v":{"v":"0.68","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":4,"v":{"v":"63","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":5,"v":{"v":"0.32","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":6,"v":{"v":"22","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":7,"v":{"v":"21","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":8,"v":{"v":"19","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":9,"v":{"v":"1","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":10,"v":{"v":"13","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":11,"v":{"v":"49","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":32,"c":12,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":0,"v":{"v":"佛山","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":33,"c":1,"v":{"v":"177","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":2,"v":{"v":"117","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":3,"v":{"v":"0.66","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":4,"v":{"v":"59","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":5,"v":{"v":"0.34","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":6,"v":{"v":"7","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":7,"v":{"v":"48","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":8,"v":{"v":"3","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":10,"v":{"v":"46","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":11,"v":{"v":"11","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":33,"c":12,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":0,"v":{"v":"新疆","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":34,"c":1,"v":{"v":"148","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":2,"v":{"v":"102","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":3,"v":{"v":"0.69","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":4,"v":{"v":"46","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":5,"v":{"v":"0.31","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":6,"v":{"v":"10","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":7,"v":{"v":"21","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":8,"v":{"v":"14","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":10,"v":{"v":"5","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":11,"v":{"v":"40","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":34,"c":12,"v":{"v":"1","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":0,"v":{"v":"苏州","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":35,"c":1,"v":{"v":"424","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":2,"v":{"v":"399","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":3,"v":{"v":"0.94","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":4,"v":{"v":"25","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":5,"v":{"v":"0.06","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":6,"v":{"v":"9","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":7,"v":{"v":"13","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":8,"v":{"v":"3","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":10,"v":{"v":"1","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":11,"v":{"v":"22","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":35,"c":12,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":0,"v":{"v":"青海","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":36,"c":1,"v":{"v":"24","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":2,"v":{"v":"11","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":3,"v":{"v":"0.47","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":4,"v":{"v":"13","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":5,"v":{"v":"0.53","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":6,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":7,"v":{"v":"8","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":8,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":10,"v":{"v":"5","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":11,"v":{"v":"8","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":36,"c":12,"v":{"v":"0","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":0,"v":{"v":"海南","ct":{"fa":"0","t":"s"},"bg":"#FCE4D6","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":37,"c":1,"v":{"v":"18","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":2,"v":{"v":"15","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":3,"v":{"v":"0.84","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":4,"v":{"v":"3","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":5,"v":{"v":"0.16","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":6,"v":{"v":"1","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":7,"v":{"v":"1","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":8,"v":{"v":"1","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":9,"v":{"v":"0","fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":10,"v":{"v":"1","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":11,"v":{"v":"2","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":37,"c":12,"v":{"v":"0","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","ht":0,"vt":0}},{"r":38,"c":0,"v":{"v":"总计","ct":{"fa":"0","t":"s"},"fs":11,"fc":"#C00000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":1,"v":{"v":"33289","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":2,"v":{"v":"19083","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":3,"v":{"v":"0.56999999999999995","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":4,"v":{"v":"14206","ct":{"fa":"0%"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":5,"v":{"v":"0.43","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":6,"v":{"v":"2242","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":7,"v":{"v":"10712","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":8,"v":{"v":"1162","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":9,"v":{"v":"91","fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":10,"v":{"v":"7353","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":11,"v":{"v":"6537","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}},{"r":38,"c":12,"v":{"v":"317","ct":{"fa":"0"},"fs":11,"fc":"#000000","ff":"微软雅黑","bl":1,"ht":0,"vt":0}}]}] + data: [sheetCell,sheetFormula,sheetConditionFormat,sheetTable,sheetSparkline,sheetComment,sheetPivotTableData,sheetPivotTable,sheetChart] }) }) From bbaafe0d68d670b7621d616db5f91394ded8f573 Mon Sep 17 00:00:00 2001 From: wbfsa Date: Sun, 30 Aug 2020 14:39:04 +0800 Subject: [PATCH 07/19] fix(fix bugs): fix --- src/config.js | 2 + src/controllers/luckysheetConfigsetting.js | 3 + src/controllers/server.js | 15 ++-- src/controllers/sheetmanage.js | 91 ++++++++++++---------- src/core.js | 3 + src/demoData/sheetCell.js | 2 + src/demoData/sheetFormula.js | 40 +++++----- src/global/createdom.js | 4 + src/global/draw.js | 45 ++++++----- src/global/extend.js | 16 ++-- src/global/formula.js | 46 +++++------ src/global/getRowlen.js | 16 ++-- src/global/getdata.js | 43 ++++++++++ src/global/refresh.js | 4 +- src/global/rhchInit.js | 6 +- src/store/index.js | 3 + 16 files changed, 206 insertions(+), 133 deletions(-) diff --git a/src/config.js b/src/config.js index d224d2d..3ee1d32 100644 --- a/src/config.js +++ b/src/config.js @@ -54,4 +54,6 @@ export default { forceCalculation:false,//强制刷新公式,公式较多会有性能问题,慎用 rowHeaderWidth: 46, columeHeaderHeight: 20, + defaultColWidth:73, + defaultRowHeight:19, } \ No newline at end of file diff --git a/src/controllers/luckysheetConfigsetting.js b/src/controllers/luckysheetConfigsetting.js index 757f831..656d1c0 100644 --- a/src/controllers/luckysheetConfigsetting.js +++ b/src/controllers/luckysheetConfigsetting.js @@ -29,6 +29,9 @@ const luckysheetConfigsetting = { fireMousedown: null, plugins:[], forceCalculation:false,//强制刷新公式,公式较多会有性能问题,慎用 + + defaultColWidth:73, + defaultRowHeight:19, } export default luckysheetConfigsetting; \ No newline at end of file diff --git a/src/controllers/server.js b/src/controllers/server.js index 340a906..d0aa867 100644 --- a/src/controllers/server.js +++ b/src/controllers/server.js @@ -404,7 +404,6 @@ const server = { } let r = value.r, c = value.c; - let func = value.func; let calcChain = file["calcChain"] == null ? [] : file["calcChain"]; @@ -418,13 +417,13 @@ const server = { } } } - else if(op == "update"){ - for(let a = 0; a < calcChain.length; a++){ - if(r == calcChain[a].r && c == calcChain[a].c && index == calcChain[a].index){ - calcChain[a].func = func; - } - } - } + // else if(op == "update"){ + // for(let a = 0; a < calcChain.length; a++){ + // if(r == calcChain[a].r && c == calcChain[a].c && index == calcChain[a].index){ + // calcChain[a].func = func; + // } + // } + // } setTimeout(function () { luckysheetrefreshgrid(); diff --git a/src/controllers/sheetmanage.js b/src/controllers/sheetmanage.js index ae27a66..cdf7b94 100644 --- a/src/controllers/sheetmanage.js +++ b/src/controllers/sheetmanage.js @@ -1,6 +1,6 @@ import { isEditMode } from '../global/validate'; import cleargridelement from '../global/cleargridelement'; -import { getcellvalue, datagridgrowth } from '../global/getdata'; +import { getcellvalue, datagridgrowth,getcellFormula } from '../global/getdata'; import { setcellvalue } from '../global/setdata'; import luckysheetcreatedom from '../global/createdom'; import tooltip from '../global/tooltip'; @@ -598,14 +598,7 @@ const sheetmanage = { return data; }, - initialjfFile: function(menu, title) { - let _this = this; - - _this.getCurSheet(); - let file = Store.luckysheetfile[_this.getSheetIndex(Store.currentSheetIndex)]; - _this.nulldata = datagridgrowth([], Store.defaultrowNum, Store.defaultcolumnNum); - let data = _this.buildGridData(file); - + sheetParamRestore: function(file, data) { Store.luckysheet_select_save = file["luckysheet_select_save"]; if(Store.luckysheet_select_save == null || Store.luckysheet_select_save.length == 0){ if(data[0] != null && data[0][0] != null && data[0][0].mc != null){ @@ -627,6 +620,43 @@ const sheetmanage = { Store.zoomRatio = file["zoomRatio"] == null ? 1 : file["zoomRatio"]; + if(file["defaultRowHeight"]!=null){ + Store.defaultrowlen = parseFloat(file["defaultRowHeight"]); + } + else{ + Store.defaultrowlen = luckysheetConfigsetting["defaultRowHeight"]; + } + + if(file["defaultColWidth"]!=null){ + Store.defaultcollen = parseFloat(file["defaultColWidth"]); + } + else{ + Store.defaultcollen = luckysheetConfigsetting["defaultColWidth"]; + } + + if(file["showGridLines"]!=null){ + let showGridLines = file["showGridLines"]; + if(showGridLines==0 || showGridLines==false){ + Store.showGridLines = false; + } + else{ + Store.showGridLines = true; + } + } + else{ + Store.showGridLines = true; + } + }, + initialjfFile: function(menu, title) { + let _this = this; + + _this.getCurSheet(); + let file = Store.luckysheetfile[_this.getSheetIndex(Store.currentSheetIndex)]; + _this.nulldata = datagridgrowth([], Store.defaultrowNum, Store.defaultcolumnNum); + let data = _this.buildGridData(file); + + this.sheetParamRestore(file, data); + let r2 = Store.luckysheet_select_save[0].row[1], c2 = Store.luckysheet_select_save[0].column[1]; @@ -833,25 +863,7 @@ const sheetmanage = { luckysheetPostil.buildAllPs(Store.flowdata); - Store.config = file["config"]; - - Store.luckysheet_select_save = file["luckysheet_select_save"]; - if(Store.luckysheet_select_save == null || Store.luckysheet_select_save.length == 0){ - if(Store.flowdata[0] != null && Store.flowdata[0][0] != null && Store.flowdata[0][0].mc != null){ - Store.luckysheet_select_save = [{ - "row": [0, Store.flowdata[0][0].mc.rs - 1], - "column": [0, Store.flowdata[0][0].mc.cs - 1] - }]; - } - else{ - Store.luckysheet_select_save = [{ - "row": [0, 0], - "column": [0, 0] - }]; - } - } - - Store.luckysheet_selection_range = file["luckysheet_selection_range"] == null ? [] : file["luckysheet_selection_range"]; + this.sheetParamRestore(file, Store.flowdata); if(file["freezen"] == null){ luckysheetFreezen.freezenhorizontaldata = null; @@ -862,13 +874,6 @@ const sheetmanage = { luckysheetFreezen.freezenverticaldata = file["freezen"].vertical == null ? null : file["freezen"].vertical.freezenverticaldata; } - if(file["zoomRatio"] != null){ - Store.zoomRatio = file["zoomRatio"]; - } - else{ - Store.zoomRatio = 1; - } - createFilterOptions(file["filter_select"], file["filter"]); rhchInit(Store.flowdata.length, Store.flowdata[0].length); @@ -908,7 +913,11 @@ const sheetmanage = { mergeCalculationSheet:{}, mergeCalculation:function(index){ let file = Store.luckysheetfile[this.getSheetIndex(index)]; - let config = file.config, data = file.data, mergeConfig = config.merge; + let config = file.config, data = file.data; + if(config==null){ + return; + } + let mergeConfig = config.merge; if(mergeConfig==null || index in this.mergeCalculationSheet || file["autoCalculationMerge"]===false){ return; } @@ -1080,9 +1089,10 @@ const sheetmanage = { let dataNameList = {}; for(let i = 0; i < calchain.length; i++){ let f = calchain[i]; - let dataindex = f.index, func = f.func; + let dataindex = f.index; + let formulaTxt = getcellFormula(f.r, f.c, dataindex); - formula.functionParser(func[2], (str)=>{ + formula.functionParser(formulaTxt, (str)=>{ if(str.indexOf("!")>-1){ let name = str.substr(0, str.indexOf('!')); dataNameList[name] = true; @@ -1142,7 +1152,7 @@ const sheetmanage = { return ret; }, showSheet: function() { - changeSheetContainerSize(); + // changeSheetContainerSize(); $("#luckysheet-cell-flow_0").css({ "width": Store.ch_width, "top": "-1px" }); //width更新 $("#luckysheet-sheettable_0").css({ "width": Store.ch_width - 1, "height": Store.rh_height }); $("#luckysheetrowHeader_0").css("height", Store.rh_height); @@ -1523,13 +1533,12 @@ const sheetmanage = { } let r = value.r, c = value.c; - let func = value.func; if(op == "del" ){ formula.delFunctionGroup(r, c, index); } else { - formula.insertUpdateFunctionGroup(r, c, func, index); + formula.insertUpdateFunctionGroup(r, c, index); } } else if(type == "cg"){ diff --git a/src/core.js b/src/core.js index 402a6c5..393da8a 100644 --- a/src/core.js +++ b/src/core.js @@ -92,6 +92,9 @@ luckysheet.create = function (setting) { luckysheetConfigsetting.rowHeaderWidth = extendsetting.rowHeaderWidth; luckysheetConfigsetting.columeHeaderHeight = extendsetting.columeHeaderHeight; + luckysheetConfigsetting.defaultColWidth = extendsetting.defaultColWidth; + luckysheetConfigsetting.defaultRowHeight = extendsetting.defaultRowHeight; + // Register plugins initPlugins(extendsetting.plugins , extendsetting.data); diff --git a/src/demoData/sheetCell.js b/src/demoData/sheetCell.js index 8923485..9bb103a 100644 --- a/src/demoData/sheetCell.js +++ b/src/demoData/sheetCell.js @@ -1171,6 +1171,8 @@ const sheetCell = { }, "index": "0", "zoomRatio":1, + // "defaultColWidth":20, + // "showGridLines":0, "chart": [], "status": "1", "order": "0", diff --git a/src/demoData/sheetFormula.js b/src/demoData/sheetFormula.js index 9749d1e..70ce9b4 100644 --- a/src/demoData/sheetFormula.js +++ b/src/demoData/sheetFormula.js @@ -6399,7 +6399,7 @@ const sheetFormula = { "r": 6, "c": 3, "index": 1, - "func": [true, 23.75, "=AVERAGE(D3:D6)"], + // "func": [true, 23.75, "=AVERAGE(D3:D6)"], "color": "w", "parent": null, "chidren": {}, @@ -6408,7 +6408,7 @@ const sheetFormula = { "r": 7, "c": 3, "index": 1, - "func": [true, 30, "=MAX(D3:D6)"], + // "func": [true, 30, "=MAX(D3:D6)"], "color": "w", "parent": null, "chidren": {}, @@ -6417,7 +6417,7 @@ const sheetFormula = { "r": 8, "c": 3, "index": 1, - "func": [true, 17, "=MIN(D3:D6)"], + // "func": [true, 17, "=MIN(D3:D6)"], "color": "w", "parent": null, "chidren": {}, @@ -6426,7 +6426,7 @@ const sheetFormula = { "r": 5, "c": 9, "index": 1, - "func": [true, "J2", "=INDIRECT(\"I2\")"], + // "func": [true, "J2", "=INDIRECT(\"I2\")"], "color": "w", "parent": null, "chidren": {}, @@ -6435,7 +6435,7 @@ const sheetFormula = { "r": 6, "c": 9, "index": 1, - "func": [true, 1, "=INDIRECT(I2)"], + // "func": [true, 1, "=INDIRECT(I2)"], "color": "w", "parent": null, "chidren": {}, @@ -6444,7 +6444,7 @@ const sheetFormula = { "r": 7, "c": 9, "index": 1, - "func": [true, "I", "=INDIRECT(\"I\"&(1+2))"], + // "func": [true, "I", "=INDIRECT(\"I\"&(1+2))"], "color": "w", "parent": null, "chidren": {}, @@ -6453,7 +6453,7 @@ const sheetFormula = { "r": 8, "c": 9, "index": 1, - "func": [true, 1, "=INDIRECT(I4&J3)"], + // "func": [true, 1, "=INDIRECT(I4&J3)"], "color": "w", "parent": null, "chidren": {}, @@ -6462,7 +6462,7 @@ const sheetFormula = { "r": 16, "c": 7, "index": 1, - "func": [true, 152, "=SUBTOTAL(9,OFFSET(F15,ROW(F15:F18)-ROW(F15),1,3))"], + // "func": [true, 152, "=SUBTOTAL(9,OFFSET(F15,ROW(F15:F18)-ROW(F15),1,3))"], "color": "w", "parent": null, "chidren": {}, @@ -6471,7 +6471,7 @@ const sheetFormula = { "r": 17, "c": 7, "index": 1, - "func": [true, 541, "=SUBTOTAL(9,OFFSET(G15,ROW(G15:G18)-ROW(G15),1,3))"], + // "func": [true, 541, "=SUBTOTAL(9,OFFSET(G15,ROW(G15:G18)-ROW(G15),1,3))"], "color": "w", "parent": null, "chidren": {}, @@ -6480,7 +6480,7 @@ const sheetFormula = { "r": 22, "c": 8, "index": 1, - "func": [true, "dumpling", "=INDEX(D21:D25,MATCH(\"dumpling\",D21:D25),1)"], + // "func": [true, "dumpling", "=INDEX(D21:D25,MATCH(\"dumpling\",D21:D25),1)"], "color": "w", "parent": null, "chidren": {}, @@ -6489,7 +6489,7 @@ const sheetFormula = { "r": 38, "c": 6, "index": 1, - "func": [true, 1, "=SUM(IF((C31:C39=\"Fax\")+(D31:D39=\"Jones\")<>2,1,0))"], + // "func": [true, 1, "=SUM(IF((C31:C39=\"Fax\")+(D31:D39=\"Jones\")<>2,1,0))"], "color": "w", "parent": null, "chidren": {}, @@ -6498,7 +6498,7 @@ const sheetFormula = { "r": 30, "c": 6, "index": 1, - "func": [true, "#NAME?", "=SUM((C31:C39=\"Fax\")*(D31:D39=\"Brown\")*(E31:E39))"], + // "func": [true, "#NAME?", "=SUM((C31:C39=\"Fax\")*(D31:D39=\"Brown\")*(E31:E39))"], "color": "w", "parent": null, "chidren": {}, @@ -6507,7 +6507,7 @@ const sheetFormula = { "r": 32, "c": 6, "index": 1, - "func": [true, "#NAME?", "=SUM((C31:C39=\"Fax\")*(D31:D39=\"Brown\"))"], + // "func": [true, "#NAME?", "=SUM((C31:C39=\"Fax\")*(D31:D39=\"Brown\"))"], "color": "w", "parent": null, "chidren": {}, @@ -6516,7 +6516,7 @@ const sheetFormula = { "r": 34, "c": 6, "index": 1, - "func": [true, 1, "=SUM(IF((C31:C39=\"Fax\")+(D31:D39=\"Jones\"),1,0))"], + // "func": [true, 1, "=SUM(IF((C31:C39=\"Fax\")+(D31:D39=\"Jones\"),1,0))"], "color": "w", "parent": null, "chidren": {}, @@ -6525,7 +6525,7 @@ const sheetFormula = { "r": 36, "c": 6, "index": 1, - "func": [true, 1, "=SUM(IF(MOD((C31:C39=\"Fax\")+(D31:D39=\"Jones\"),2),1,0))"], + // "func": [true, 1, "=SUM(IF(MOD((C31:C39=\"Fax\")+(D31:D39=\"Jones\"),2),1,0))"], "color": "w", "parent": null, "chidren": {}, @@ -6534,7 +6534,7 @@ const sheetFormula = { "r": 9, "c": 9, "index": 1, - "func": [true, 1, "=INDIRECT(\"Formula!\"&I2)"], + // "func": [true, 1, "=INDIRECT(\"Formula!\"&I2)"], "color": "w", "parent": null, "chidren": {}, @@ -6543,7 +6543,7 @@ const sheetFormula = { "r": 10, "c": 9, "index": 1, - "func": [true, "J2", "=INDIRECT(\"Formula!I2\")"], + // "func": [true, "J2", "=INDIRECT(\"Formula!I2\")"], "color": "w", "parent": null, "chidren": {}, @@ -6552,7 +6552,7 @@ const sheetFormula = { "r": 14, "c": 7, "index": 1, - "func": [true, 207, "=SUBTOTAL(9,OFFSET($D$15,ROW($D$15:$D$18)-ROW($D$15),1,3))"], + // "func": [true, 207, "=SUBTOTAL(9,OFFSET($D$15,ROW($D$15:$D$18)-ROW($D$15),1,3))"], "color": "w", "parent": null, "chidren": {}, @@ -6561,7 +6561,7 @@ const sheetFormula = { "r": 15, "c": 7, "index": 1, - "func": [true, 182, "=SUBTOTAL(9,OFFSET(E15,ROW(E15:E18)-ROW(E15),1,3))"], + // "func": [true, 182, "=SUBTOTAL(9,OFFSET(E15,ROW(E15:E18)-ROW(E15),1,3))"], "color": "w", "parent": null, "chidren": {}, @@ -6570,7 +6570,7 @@ const sheetFormula = { "r": 23, "c": 8, "index": 1, - "func": [true, false, "=ISNA(MATCH(D21:D25,C21:C27,0))"], + // "func": [true, false, "=ISNA(MATCH(D21:D25,C21:C27,0))"], "color": "w", "parent": null, "chidren": {}, diff --git a/src/global/createdom.js b/src/global/createdom.js index 4531bcd..499dc13 100644 --- a/src/global/createdom.js +++ b/src/global/createdom.js @@ -110,6 +110,10 @@ export default function luckysheetcreatedom(colwidth, rowheight, data, menu, tit $("body").append(replaceHtml(filtersubmenuHTML(), { "menuid": "filter" })); $("body").append(sheetconfigHTML()); + $("#luckysheet-rows-h").width((Store.rowHeaderWidth-1.5)); + $("#luckysheet-cols-h-c").height((Store.columeHeaderHeight-1.5)); + $("#luckysheet-left-top").css({width:Store.rowHeaderWidth-1.5, height:Store.columeHeaderHeight-1.5}); + //批注 luckysheetPostil.buildAllPs(Store.flowdata); } \ No newline at end of file diff --git a/src/global/draw.js b/src/global/draw.js index 4da0812..bbc1ee9 100644 --- a/src/global/draw.js +++ b/src/global/draw.js @@ -623,7 +623,7 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of if((r + "_" + c) in dynamicArray_compute){//动态数组公式 value = dynamicArray_compute[r + "_" + c].v; } - + cellRender(r, c, start_r, start_c, end_r, end_c, value,luckysheetTableContent,af_compute, cf_compute,offsetLeft,offsetTop,dynamicArray_compute,cellOverflowMap, dataset_col_st, dataset_col_ed,scrollHeight,scrollWidth,bodrder05); } } @@ -653,6 +653,8 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of r = margeMaindata.r; c = margeMaindata.c; + let mainCell = Store.flowdata[r][c]; + if (c == 0) { start_c = -scrollWidth; } @@ -667,8 +669,8 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of start_r = Store.visibledatarow[r - 1] - scrollHeight - 1; } - end_r = Store.visibledatarow[r+margeMaindata.rs-1] - scrollHeight; - end_c = Store.visibledatacolumn[c+margeMaindata.cs-1] - scrollWidth; + end_r = Store.visibledatarow[r+mainCell["mc"].rs-1] - scrollHeight; + end_c = Store.visibledatacolumn[c+mainCell["mc"].cs-1] - scrollWidth; if(value == null || value.toString().length == 0){ nullCellRender(r, c, start_r, start_c, end_r, end_c,luckysheetTableContent,af_compute, cf_compute,offsetLeft,offsetTop,dynamicArray_compute,cellOverflowMap, dataset_col_st, dataset_col_ed,scrollHeight,scrollWidth,bodrder05, true); @@ -687,7 +689,6 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of if((r + "_" + c) in dynamicArray_compute){//动态数组公式 value = dynamicArray_compute[r + "_" + c].v; } - cellRender(r, c, start_r, start_c, end_r, end_c, value, luckysheetTableContent,af_compute, cf_compute,offsetLeft,offsetTop,dynamicArray_compute,cellOverflowMap, dataset_col_st, dataset_col_ed,scrollHeight,scrollWidth,bodrder05, true); } } @@ -997,7 +998,7 @@ let nullCellRender = function(r, c, start_r, start_c, end_r, end_c,luckysheetTab } if(fillStyle==null){ - luckysheetTableContent.fillStyle = "rgba(255,255,255)"; + luckysheetTableContent.fillStyle = "#FFFFFF"; } else{ luckysheetTableContent.fillStyle = fillStyle; @@ -1063,7 +1064,7 @@ let nullCellRender = function(r, c, start_r, start_c, end_r, end_c,luckysheetTab //即溢出单元格跨此单元格,此单元格不绘制右边框 if(!cellOverflow_colInObj.colIn || cellOverflow_colInObj.colLast){ //右边框 - if(!Store.luckysheetcurrentisPivotTable && !fillStyle){ + if(!Store.luckysheetcurrentisPivotTable && !fillStyle && Store.showGridLines){ luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( (end_c + offsetLeft - 2 + bodrder05), @@ -1082,7 +1083,7 @@ let nullCellRender = function(r, c, start_r, start_c, end_r, end_c,luckysheetTab } //下边框 - if(!Store.luckysheetcurrentisPivotTable && !fillStyle){ + if(!Store.luckysheetcurrentisPivotTable && !fillStyle && Store.showGridLines){ luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( (start_c + offsetLeft - 2), @@ -1137,7 +1138,7 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee } if(fillStyle==null){ - luckysheetTableContent.fillStyle = "rgba(255,255,255)"; + luckysheetTableContent.fillStyle = "#FFFFFF"; } else{ luckysheetTableContent.fillStyle = fillStyle; @@ -1162,7 +1163,7 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee //若单元格有批注(单元格右上角红色小三角标示) if(cell.ps != null){ - let ps_w = 5*Store.zoomRatio, ps_h = 5*Store.zoomRatio; //红色小三角宽高 + let ps_w = 8*Store.zoomRatio, ps_h = 8*Store.zoomRatio; //红色小三角宽高 luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( @@ -1401,13 +1402,15 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee horizonAlignPos = (pos_x + cellWidth - space_width) - textMetrics; } - let verticalAlignPos = (pos_y + cellHeight - space_height) - oneLineTextHeight; //默认为2,下对齐 - let verticalAlignPos_text = (pos_y + cellHeight - space_height) ; //文本垂直方向基准线 + let verticalCellHeight = cellHeight>oneLineTextHeight?cellHeight:oneLineTextHeight; + + let verticalAlignPos = (pos_y + verticalCellHeight - space_height) - oneLineTextHeight; //默认为2,下对齐 + let verticalAlignPos_text = (pos_y + verticalCellHeight - space_height) ; //文本垂直方向基准线 luckysheetTableContent.textBaseline = "bottom"; if(verticalAlign == "0"){ //居中对齐 - verticalAlignPos = (pos_y + cellHeight / 2) - (oneLineTextHeight / 2); + verticalAlignPos = (pos_y + verticalCellHeight / 2) - (oneLineTextHeight / 2); - verticalAlignPos_text = (pos_y + cellHeight / 2) ; + verticalAlignPos_text = (pos_y + verticalCellHeight / 2) ; luckysheetTableContent.textBaseline = "middle"; } else if(verticalAlign == "1"){ //上对齐 @@ -1910,7 +1913,7 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee if(cellOverflow_bd_r_render){ //右边框 - if(!Store.luckysheetcurrentisPivotTable && !fillStyle){ + if(!Store.luckysheetcurrentisPivotTable && !fillStyle && Store.showGridLines){ luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( (end_c + offsetLeft - 2 + bodrder05), @@ -1928,7 +1931,7 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee } //下边框 - if(!Store.luckysheetcurrentisPivotTable && !fillStyle){ + if(!Store.luckysheetcurrentisPivotTable && !fillStyle && Store.showGridLines){ luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( (start_c + offsetLeft - 2), @@ -2009,15 +2012,16 @@ let cellOverflowRender = function(r, c, stc, edc,luckysheetTableContent,scrollHe horizonAlignPos = (pos_x + cellWidth - space_width) - textMetrics; } + let verticalCellHeight = cellHeight>oneLineTextHeight?cellHeight:oneLineTextHeight; //溢出单元格 垂直对齐 let verticalAlign = menuButton.checkstatus(Store.flowdata, r, c, "vt"); - let verticalAlignPos = (pos_y + cellHeight - space_height) - oneLineTextHeight; //默认为2,下对齐 - let verticalAlignPos_text = (pos_y + cellHeight - space_height) ; //文本垂直方向基准线 + let verticalAlignPos = (pos_y + verticalCellHeight - space_height) - oneLineTextHeight; //默认为2,下对齐 + let verticalAlignPos_text = (pos_y + verticalCellHeight - space_height) ; //文本垂直方向基准线 luckysheetTableContent.textBaseline = "bottom"; if(verticalAlign == "0"){ //居中对齐 - verticalAlignPos = (pos_y + cellHeight / 2) - (oneLineTextHeight / 2); + verticalAlignPos = (pos_y + verticalCellHeight / 2) - (oneLineTextHeight / 2); - verticalAlignPos_text = (pos_y + cellHeight / 2) ; + verticalAlignPos_text = (pos_y + verticalCellHeight / 2) ; luckysheetTableContent.textBaseline = "middle"; } else if(verticalAlign == "1"){ //上对齐 @@ -2147,7 +2151,8 @@ function getCellOverflowMap(canvas, col_st, col_ed, row_st, row_end){ edc = c; } - if(((stc >= col_st && stc <= col_ed) || (edc >= col_st && edc <= col_ed)) && stc < edc){ + // if(((stc >= col_st && stc <= col_ed) || (edc >= col_st && edc <= col_ed)) && stc < edc){ + if(((stc <= col_ed) || (edc >= col_st)) && stc < edc){ map[r + '_' + c] = { r: r, stc: stc, diff --git a/src/global/extend.js b/src/global/extend.js index 3734cf1..7f10000 100644 --- a/src/global/extend.js +++ b/src/global/extend.js @@ -95,7 +95,7 @@ function luckysheetextendtable(type, index, value, direction) { if(calcChain != null && calcChain.length > 0){ for(let i = 0; i < calcChain.length; i++){ let calc = $.extend(true, {}, calcChain[i]); - let calc_r = calc.r, calc_c = calc.c, calc_i = calc.index, calc_funcStr = calc.func[2]; + let calc_r = calc.r, calc_c = calc.c, calc_i = calc.index, calc_funcStr = getcellFormula(calc_r, calc_c, calc_i); if(type == "row"){ let functionStr = "=" + formula.functionStrChange(calc_funcStr, "add", "row", direction, index, value); @@ -104,7 +104,7 @@ function luckysheetextendtable(type, index, value, direction) { d[calc_r][calc_c].f = functionStr; } - calc.func[2] = functionStr; + // calc.func[2] = functionStr; if(direction == "lefttop"){ if(calc_r >= index){ @@ -126,7 +126,7 @@ function luckysheetextendtable(type, index, value, direction) { d[calc_r][calc_c].f = functionStr; } - calc.func[2] = functionStr; + // calc.func[2] = functionStr; if(direction == "lefttop"){ if(calc_c >= index){ @@ -882,7 +882,7 @@ function luckysheetdeletetable(type, st, ed) { if(calcChain != null && calcChain.length > 0){ for(let i = 0; i < calcChain.length; i++){ let calc = $.extend(true, {}, calcChain[i]); - let calc_r = calc.r, calc_c = calc.c, calc_i = calc.index, calc_funcStr = calc.func[2]; + let calc_r = calc.r, calc_c = calc.c, calc_i = calc.index, calc_funcStr = getcellFormula(calc_r, calc_c, calc_i); if(type == "row"){ if(calc_r < st || calc_r > ed){ @@ -892,7 +892,7 @@ function luckysheetdeletetable(type, st, ed) { d[calc_r][calc_c].f = functionStr; } - calc.func[2] = functionStr; + // calc.func[2] = functionStr; if(calc_r > ed){ calc.r = calc_r - slen; @@ -909,7 +909,7 @@ function luckysheetdeletetable(type, st, ed) { d[calc_r][calc_c].f = functionStr; } - calc.func[2] = functionStr; + // calc.func[2] = functionStr; if(calc_c > ed){ calc.c = calc_c - slen; @@ -1531,7 +1531,7 @@ function luckysheetDeleteCell(type, str, edr, stc, edc) { if(calcChain != null && calcChain.length > 0){ for(let i = 0; i < calcChain.length; i++){ let calc = $.extend(true, {}, calcChain[i]); - let calc_r = calc.r, calc_c = calc.c, calc_i = calc.index, calc_funcStr = calc.func[2]; + let calc_r = calc.r, calc_c = calc.c, calc_i = calc.index, calc_funcStr = getcellFormula(calc_r, calc_c, calc_i); if((calc_r < str || calc_r > edr) && (calc_c < stc || calc_c > edc)){ let functionStr; @@ -1555,7 +1555,7 @@ function luckysheetDeleteCell(type, str, edr, stc, edc) { d[calc_r][calc_c].f = functionStr; } - calc.func[2] = functionStr; + // calc.func[2] = functionStr; newCalcChain.push(calc); } diff --git a/src/global/formula.js b/src/global/formula.js index 46e0db4..a9a92df 100644 --- a/src/global/formula.js +++ b/src/global/formula.js @@ -10,7 +10,7 @@ import { seletedHighlistByindex, luckysheet_count_show } from '../controllers/se import { isRealNum, isRealNull, valueIsError, isEditMode } from './validate'; import { isdatetime, isdatatype } from './datecontroll'; import { getCellTextSplitArr } from '../global/getRowlen'; -import { getcellvalue } from './getdata'; +import { getcellvalue,getcellFormula } from './getdata'; import { setcellvalue } from './setdata'; import { genarate, valueShowEs } from './format'; import editor from './editor'; @@ -3845,7 +3845,7 @@ const luckysheetformula = { i++; } - console.log(function_str); + // console.log(function_str); return function_str; }, addFunctionGroup: function(r, c, func, index) { @@ -3887,7 +3887,7 @@ const luckysheetformula = { return file.calcChain; }, - updateFunctionGroup: function(r, c, func, index) { + updateFunctionGroup: function(r, c, index) { if (index == null) { index = Store.currentSheetIndex; } @@ -3900,7 +3900,6 @@ const luckysheetformula = { for (let i = 0; i < calcChain.length; i++) { let calc = calcChain[i]; if (calc.r == r && calc.c == c && calc.index == index) { - calcChain[i].func = func; server.saveParam("fc", index, JSON.stringify(calc), { "op": "update", "pos": i @@ -3912,15 +3911,16 @@ const luckysheetformula = { setluckysheetfile(luckysheetfile); }, - insertUpdateFunctionGroup: function(r, c, func, index) { + insertUpdateFunctionGroup: function(r, c, index) { if (index == null) { index = Store.currentSheetIndex; } - if (func == null) { - this.delFunctionGroup(r, c, index); - return; - } + // let func = getcellFormula(r, c, index); + // if (func == null || func.length==0) { + // this.delFunctionGroup(r, c, index); + // return; + // } let luckysheetfile = getluckysheetfile(); let file = luckysheetfile[getSheetIndex(index)]; @@ -3933,7 +3933,6 @@ const luckysheetformula = { for (let i = 0; i < calcChain.length; i++) { let calc = calcChain[i]; if (calc.r == r && calc.c == c && calc.index == index) { - calc.func = func; server.saveParam("fc", index, JSON.stringify(calc), { "op": "update", "pos": i @@ -3945,8 +3944,7 @@ const luckysheetformula = { let cc = { "r": r, "c": c, - "index": index, - "func": func + "index": index }; calcChain.push(cc); file.calcChain = calcChain; @@ -4487,8 +4485,8 @@ const luckysheetformula = { let item = group[i]; let cell = luckysheetfile[getSheetIndex(item["index"])].data[item.r][item.c]; - - if(cell != null && cell.f != null && cell.f == item.func[2]){ + let calc_funcStr = getcellFormula(item.r, item.c, item.index, _this.execFunctionGroupData); + if(cell != null && cell.f != null && cell.f == calc_funcStr){ if(!(item instanceof Object)){ item = eval('('+ item +')'); } @@ -4505,10 +4503,10 @@ const luckysheetformula = { _this.isFunctionRangeSave = true; } else if (origin_r != null && origin_c != null) { - _this.isFunctionRange(item.func[2], origin_r, origin_c); + _this.isFunctionRange(calc_funcStr, origin_r, origin_c); } else { - _this.isFunctionRange(item.func[2]); + _this.isFunctionRange(calc_funcStr); } if (_this.isFunctionRangeSave) { @@ -4529,7 +4527,7 @@ const luckysheetformula = { for (let i = 0; i < group.length; i++) { let item = group[i]; - + let calc_funcStr = getcellFormula(item.r, item.c, item.index, _this.execFunctionGroupData); item.color = "w"; item.parent = null; item.chidren = {}; @@ -4541,7 +4539,7 @@ const luckysheetformula = { _this.isFunctionRangeSave = true; } else{ - _this.isFunctionRange(item.func[2], cell.r, cell.c); + _this.isFunctionRange(calc_funcStr, cell.r, cell.c); } if (_this.isFunctionRangeSave) { @@ -4562,7 +4560,9 @@ const luckysheetformula = { } _this.isFunctionRangeSave = false; - _this.isFunctionRange(vertex1[name].func[2], u.r, u.c); + let item = vertex1[name]; + let calc_funcStr = getcellFormula(item.r, item.c, item.index, _this.execFunctionGroupData); + _this.isFunctionRange(calc_funcStr, u.r, u.c); if (_this.isFunctionRangeSave) { let v = vertex1[name]; @@ -4613,8 +4613,8 @@ const luckysheetformula = { u.color = "b"; window.luckysheet_getcelldata_cache = null; - - let v = _this.execfunction(u.func[2], u.r, u.c); + let calc_funcStr = getcellFormula(u.r, u.c, u.index, _this.execFunctionGroupData); + let v = _this.execfunction(calc_funcStr, u.r, u.c); let value = _this.execFunctionGroupData[u.r][u.c]; if(value == null){ @@ -4787,7 +4787,7 @@ const luckysheetformula = { if (isrefresh) { _this.execFunctionGroup(r, c, result); } - _this.insertUpdateFunctionGroup(r, c, [true, result, txt]); + _this.insertUpdateFunctionGroup(r, c); } return [true, result, txt]; @@ -4920,7 +4920,7 @@ const luckysheetformula = { } if(!notInsertFunc){ - _this.insertUpdateFunctionGroup(r, c, [true, result, txt]); + _this.insertUpdateFunctionGroup(r, c); } } diff --git a/src/global/getRowlen.js b/src/global/getRowlen.js index 9b7725a..4250ea1 100644 --- a/src/global/getRowlen.js +++ b/src/global/getRowlen.js @@ -43,7 +43,7 @@ function rowlenByRange(d, r1, r2, cfg) { let textMetrics = measureText.width; //文本宽度 let oneLineTextHeight = measureText.actualBoundingBoxDescent + measureText.actualBoundingBoxAscent; - + let spaceHeight = Math.ceil(oneLineTextHeight/3); let computeRowlen; //计算行高 let word_space_height = oneLineTextHeight/3; if(cell.tb == "2"){ @@ -54,10 +54,10 @@ function rowlenByRange(d, r1, r2, cfg) { let strArr = []; //文本截断数组 strArr = getCellTextSplitArr(value, strArr, cellWidth, canvas); - computeRowlen = (oneLineTextHeight+word_space_height) * strArr.length + 4; + computeRowlen = (oneLineTextHeight+word_space_height) * strArr.length + spaceHeight; } else{ - computeRowlen = oneLineTextHeight + 4; + computeRowlen = oneLineTextHeight + spaceHeight; } } else if(cell.tr != null){ @@ -66,25 +66,25 @@ function rowlenByRange(d, r1, r2, cfg) { if(tr == "0"){ //无旋转 - computeRowlen = oneLineTextHeight + 4; + computeRowlen = oneLineTextHeight + spaceHeight; } else if(tr == "1" || tr == "2"){ //向下倾斜(45 旋转)----向上倾斜(-45 旋转) - computeRowlen = 0.707 * (textMetrics + oneLineTextHeight) + 4; + computeRowlen = 0.707 * (textMetrics + oneLineTextHeight) + spaceHeight; } else if(tr == "3"){ //竖排文字 - computeRowlen = value.length * oneLineTextHeight + 4; + computeRowlen = value.length * oneLineTextHeight + spaceHeight; } else if(tr == "4" || tr == "5"){ //向下90(90 旋转)----向上90(-90 旋转) - computeRowlen = textMetrics + 4; + computeRowlen = textMetrics + spaceHeight; } computeRowlen = Math.round(computeRowlen); } else{ - computeRowlen = oneLineTextHeight + 4; + computeRowlen = oneLineTextHeight + spaceHeight; } //比较计算高度和当前高度取最大高度 diff --git a/src/global/getdata.js b/src/global/getdata.js index 1ccb405..5fa8401 100644 --- a/src/global/getdata.js +++ b/src/global/getdata.js @@ -4,6 +4,7 @@ import server from '../controllers/server'; import formula from './formula'; import editor from './editor'; import { dynamicArrayCompute } from './dynamicArray'; +import sheetmanage from '../controllers/sheetmanage'; import Store from '../store'; //Get selection range value @@ -218,4 +219,46 @@ export function datagridgrowth(data, addr, addc, iscallback) { } return data; +} + + +//Get the formula of the cell +export function getcellFormula(r, c, i, data) { + let cell; + if(data!=null){ + cell = data[r][c]; + } + else{ + cell = getOrigincell(r,c,i); + } + + + if(cell==null){ + return null; + } + + return cell.f; +} + + +export function getOrigincell(r, c, i) { + if(r==null || c==null){ + return; + } + let data; + if (i == null) { + data = Store.flowdata; + } + else{ + let sheet = sheetmanage.getSheetByIndex(i); + data = sheet.data; + } + + if(data==null){ + return; + } + + return data[r][c]; + + } \ No newline at end of file diff --git a/src/global/refresh.js b/src/global/refresh.js index a6b7d7b..c360fd7 100644 --- a/src/global/refresh.js +++ b/src/global/refresh.js @@ -363,7 +363,7 @@ function jfrefreshgrid_adRC(data, cfg, ctrlType, ctrlValue, calc, filterObj, cf, for(let i = 0; i < calc.length; i++){ let clc = calc[i]; - let clc_r = clc.r, clc_c = clc.c, clc_i = clc.index, clc_funcStr = clc.func[2]; + let clc_r = clc.r, clc_c = clc.c, clc_i = clc.index, clc_funcStr = getcellFormula(clc_r, clc_c, clc_i); let clc_result = formula.execfunction(clc_funcStr, clc_r, clc_c, null, true); clc.func = clc_result; @@ -567,7 +567,7 @@ function jfrefreshgrid_deleteCell(data, cfg, ctrl, calc, filterObj, cf){ for(let i = 0; i < calc.length; i++){ let clc = calc[i]; - let clc_r = clc.r, clc_c = clc.c, clc_i = clc.index, clc_funcStr = clc.func[2]; + let clc_r = clc.r, clc_c = clc.c, clc_i = clc.index, clc_funcStr = getcellFormula(clc_r, clc_c, clc_i); let clc_result = formula.execfunction(clc_funcStr, clc_r, clc_c, null, true); clc.func = clc_result; diff --git a/src/global/rhchInit.js b/src/global/rhchInit.js index f8622b3..70c0f62 100644 --- a/src/global/rhchInit.js +++ b/src/global/rhchInit.js @@ -69,9 +69,9 @@ export default function rhchInit(rowheight, colwidth) { Store.visibledatacolumn.push(Store.ch_width);//列的临时长度分布 - if(maxColumnlen < firstcolumnlen + 1){ - maxColumnlen = firstcolumnlen + 1; - } + // if(maxColumnlen < firstcolumnlen + 1){ + // maxColumnlen = firstcolumnlen + 1; + // } } // Store.ch_width += 120; diff --git a/src/store/index.js b/src/store/index.js index 20ec8fc..43e4e40 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -26,6 +26,7 @@ const Store = { sheetBarHeight: 27, statisticBarHeight: 23, luckysheetTableContentHW: [0, 0], + defaultcollen: 73, defaultrowlen: 19, @@ -121,6 +122,8 @@ const Store = { visibledatacolumn_unique:null, visibledatarow_unique:null, + + showGridLines:true, } export default Store; \ No newline at end of file From f07e25d0010775b71c1e73cd3ed2db6413d661ca Mon Sep 17 00:00:00 2001 From: wbfsa Date: Sun, 30 Aug 2020 21:53:47 +0800 Subject: [PATCH 08/19] fix(a few bug fix): fix --- src/controllers/handler.js | 18 +++++++++--------- src/controllers/server.js | 7 ++++++- src/controllers/updateCell.js | 4 +++- src/core.js | 2 ++ src/global/createdom.js | 2 ++ src/global/draw.js | 4 +++- src/global/method.js | 4 ++++ src/index.html | 1 + 8 files changed, 30 insertions(+), 12 deletions(-) diff --git a/src/controllers/handler.js b/src/controllers/handler.js index c0b93b1..b696df1 100644 --- a/src/controllers/handler.js +++ b/src/controllers/handler.js @@ -1115,7 +1115,7 @@ export default function luckysheetHandler() { }); //表格mousemove - $(document).mousemove(function (event) { + $(document).on("mousemove.luckysheetEvent",function (event) { luckysheetPostil.overshow(event); //有批注显示 window.cancelAnimationFrame(Store.jfautoscrollTimeout); @@ -2181,7 +2181,7 @@ export default function luckysheetHandler() { } }); //表格mouseup - $(document).mouseup(function (event) { + $(document).on("mouseup.luckysheetEvent",function (event) { //数据窗格主体 if (Store.luckysheet_select_status) { clearTimeout(Store.countfuncTimeout); @@ -3505,7 +3505,7 @@ export default function luckysheetHandler() { }); //截图下载 - $(document).on("click", "a.download", function () { + $(document).on("click.luckysheetEvent", "a.download", function () { let dataURI = $("#luckysheet-confirm-screenshot-save img").attr("src"); const locale_screenshot = _locale.screenshot; let binStr = atob(dataURI.split(",")[1]), @@ -3673,9 +3673,9 @@ export default function luckysheetHandler() { } } - $(document).on("visibilitychange webkitvisibilitychange msvisibilitychange", copychange).mouseleave(function () { + $(document).on("visibilitychange.luckysheetEvent webkitvisibilitychange.luckysheetEvent msvisibilitychange.luckysheetEvent", copychange).on("mouseleave.luckysheetEvent", function () { Store.iscopyself = false; - }).mousedown(function (event) { + }).on("mousedown.luckysheetEvent", function (event) { //有批注在编辑时 luckysheetPostil.removeActivePs(); @@ -3722,7 +3722,7 @@ export default function luckysheetHandler() { //模态框拖动 - $(document).on("mousedown", "div.luckysheet-modal-dialog", function (e) { + $(document).on("mousedown.luckysheetEvent", "div.luckysheet-modal-dialog", function (e) { if (!$(e.target).is(".luckysheet-modal-dialog")) { return; } @@ -3735,7 +3735,7 @@ export default function luckysheetHandler() { }); //模态框关闭 - $(document).on("click", ".luckysheet-modal-dialog-title-close, .luckysheet-model-close-btn", function (e) { + $(document).on("click.luckysheetEvent", ".luckysheet-modal-dialog-title-close, .luckysheet-model-close-btn", function (e) { //选择文本颜色和单元格颜色弹出框取消 if ($("#textcolorselect").is(":visible") || $("#cellcolorselect").is(":visible")) { $("#luckysheet-conditionformat-dialog").show(); @@ -3931,7 +3931,7 @@ export default function luckysheetHandler() { let dpi_y = document.getElementById('testdpidiv').offsetHeight * Store.devicePixelRatio; //粘贴事件处理 - $(document).on("paste", function (e) { + $(document).on("paste.luckysheetEvent", function (e) { if (isEditMode()) {//此模式下禁用粘贴 return; } @@ -4081,7 +4081,7 @@ export default function luckysheetHandler() { let bg = $td.css("background-color"); if (bg == "rgba(0, 0, 0, 0)") { - bg = "rgba(255,255,255)"; + bg = null; } cell.bg = bg; diff --git a/src/controllers/server.js b/src/controllers/server.js index d0aa867..086e246 100644 --- a/src/controllers/server.js +++ b/src/controllers/server.js @@ -53,7 +53,12 @@ const server = { let v_row = []; for(let c = c1; c <= c2; c++){ - v_row.push(data[r][c]); + if(data[r]==null){ + v_row.push(null); + } + else{ + v_row.push(data[r][c]); + } } v.push(v_row); diff --git a/src/controllers/updateCell.js b/src/controllers/updateCell.js index e169f58..1d18577 100644 --- a/src/controllers/updateCell.js +++ b/src/controllers/updateCell.js @@ -205,7 +205,9 @@ export function luckysheetupdateCell(row_index1, col_index1, d, cover, isnotfocu export function setCenterInputPosition(row_index, col_index, d){ - + if(row_index==null ||col_index==null){ + return; + } let cell = d[row_index][col_index]; if(cell==null){ return; diff --git a/src/core.js b/src/core.js index 393da8a..a7730c1 100644 --- a/src/core.js +++ b/src/core.js @@ -95,6 +95,8 @@ luckysheet.create = function (setting) { luckysheetConfigsetting.defaultColWidth = extendsetting.defaultColWidth; luckysheetConfigsetting.defaultRowHeight = extendsetting.defaultRowHeight; + luckysheetConfigsetting.title = extendsetting.title; + // Register plugins initPlugins(extendsetting.plugins , extendsetting.data); diff --git a/src/global/createdom.js b/src/global/createdom.js index 499dc13..52e5fd7 100644 --- a/src/global/createdom.js +++ b/src/global/createdom.js @@ -116,4 +116,6 @@ export default function luckysheetcreatedom(colwidth, rowheight, data, menu, tit //批注 luckysheetPostil.buildAllPs(Store.flowdata); + + $("#luckysheet_info_detail_input").val(luckysheetConfigsetting.title); } \ No newline at end of file diff --git a/src/global/draw.js b/src/global/draw.js index bbc1ee9..b655281 100644 --- a/src/global/draw.js +++ b/src/global/draw.js @@ -1144,8 +1144,10 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee luckysheetTableContent.fillStyle = fillStyle; } - let borderfix = menuButton.borderfix(Store.flowdata, r, c); + + let borderfix = menuButton.borderfix(Store.flowdata, r, c); + // console.log(value, fillStyle,borderfix); let cellsize = [ (start_c + offsetLeft + borderfix[0]), (start_r + offsetTop + borderfix[1]), diff --git a/src/global/method.js b/src/global/method.js index 812d993..ba7b27d 100644 --- a/src/global/method.js +++ b/src/global/method.js @@ -160,6 +160,10 @@ const method = { $("#luckysheet-modal-dialog-mask, #luckysheetTextSizeTest, #luckysheet-icon-morebtn-div").remove(); $("#luckysheet-input-box").parent().remove(); $("#luckysheet-formula-help-c").remove(); + $(".chartSetting").remove(); + + //document event release + $(document).off(".luckysheetEvent"); //参数重置 Store.jfredo = []; diff --git a/src/index.html b/src/index.html index 9d07bf7..dfd82b7 100644 --- a/src/index.html +++ b/src/index.html @@ -33,6 +33,7 @@ luckysheet.create({ container: 'luckysheet', + title:"hehehahahehe ", lang: 'en', allowEdit:true, forceCalculation:false, From c430d6625a23b0f4b8ef903ae62e82833ed0618f Mon Sep 17 00:00:00 2001 From: wbfsa Date: Sun, 30 Aug 2020 23:28:46 +0800 Subject: [PATCH 09/19] fix(hide row and column fix): add lines --- src/global/draw.js | 132 +++++++++++++++++++++++++++++++++++---------- 1 file changed, 105 insertions(+), 27 deletions(-) diff --git a/src/global/draw.js b/src/global/draw.js index b655281..0beac0c 100644 --- a/src/global/draw.js +++ b/src/global/draw.js @@ -63,7 +63,7 @@ function luckysheetDrawgridRowTitle(scrollHeight, drawHeight, offsetTop) { let end_r, start_r; let bodrder05 = 0.5;//Default 0.5 - + let preEndR; for (let r = dataset_row_st; r <= dataset_row_ed; r++) { if (r == 0) { start_r = -scrollHeight - 1; @@ -123,19 +123,55 @@ function luckysheetDrawgridRowTitle(scrollHeight, drawHeight, offsetTop) { luckysheetTableContent.closePath(); //行标题栏横线,horizen - luckysheetTableContent.beginPath(); - luckysheetTableContent.moveTo( - -1, - (end_r + offsetTop - 2 + bodrder05) - ); - luckysheetTableContent.lineTo( - (Store.rowHeaderWidth - 1) , - (end_r + offsetTop - 2 + bodrder05) - ); - // luckysheetTableContent.lineWidth = 1; - // luckysheetTableContent.strokeStyle = luckysheetdefaultstyle.strokeStyle; - luckysheetTableContent.closePath(); - luckysheetTableContent.stroke(); + if (Store.config["rowhidden"] != null && Store.config["rowhidden"][r] == null && Store.config["rowhidden"][r+1] != null) { + luckysheetTableContent.beginPath(); + luckysheetTableContent.moveTo( + -1, + (end_r + offsetTop - 4 + bodrder05) + ); + luckysheetTableContent.lineTo( + (Store.rowHeaderWidth - 1) , + (end_r + offsetTop - 4 + bodrder05) + ); + // luckysheetTableContent.lineWidth = 1; + // luckysheetTableContent.strokeStyle = luckysheetdefaultstyle.strokeStyle; + luckysheetTableContent.closePath(); + luckysheetTableContent.stroke(); + } + else if(Store.config["rowhidden"]==null || Store.config["rowhidden"][r] == null){ + luckysheetTableContent.beginPath(); + luckysheetTableContent.moveTo( + -1, + (end_r + offsetTop - 2 + bodrder05) + ); + luckysheetTableContent.lineTo( + (Store.rowHeaderWidth - 1) , + (end_r + offsetTop - 2 + bodrder05) + ); + + // luckysheetTableContent.lineWidth = 1; + // luckysheetTableContent.strokeStyle = luckysheetdefaultstyle.strokeStyle; + luckysheetTableContent.closePath(); + luckysheetTableContent.stroke(); + + } + + if (Store.config["rowhidden"] != null && Store.config["rowhidden"][r-1] != null && preEndR!=null) { + luckysheetTableContent.beginPath(); + luckysheetTableContent.moveTo( + -1, + (preEndR + offsetTop + bodrder05) + ); + luckysheetTableContent.lineTo( + (Store.rowHeaderWidth - 1) , + (preEndR + offsetTop + bodrder05) + ); + luckysheetTableContent.closePath(); + luckysheetTableContent.stroke(); + } + + preEndR = end_r; + } //行标题栏竖线 @@ -210,6 +246,7 @@ function luckysheetDrawgridColumnTitle(scrollWidth, drawWidth, offsetLeft) { let end_c, start_c; let bodrder05 = 0.5;//Default 0.5 + let preEndC; for (let c = dataset_col_st; c <= dataset_col_ed; c++) { if (c == 0) { start_c = -scrollWidth; @@ -252,19 +289,54 @@ function luckysheetDrawgridColumnTitle(scrollWidth, drawWidth, offsetLeft) { } //列标题栏竖线 vertical - luckysheetTableContent.beginPath(); - luckysheetTableContent.moveTo( - (end_c + offsetLeft - 2 + bodrder05) , - 0 - ); - luckysheetTableContent.lineTo( - (end_c + offsetLeft - 2 + bodrder05) , - (Store.columeHeaderHeight - 2) - ); - luckysheetTableContent.lineWidth = 1; - luckysheetTableContent.strokeStyle = luckysheetdefaultstyle.strokeStyle; - luckysheetTableContent.closePath(); - luckysheetTableContent.stroke(); + if (Store.config["colhidden"] != null && Store.config["colhidden"][c] == null && Store.config["colhidden"][c+1] != null) { + luckysheetTableContent.beginPath(); + luckysheetTableContent.moveTo( + (end_c + offsetLeft - 4 + bodrder05) , + 0 + ); + luckysheetTableContent.lineTo( + (end_c + offsetLeft - 4 + bodrder05) , + (Store.columeHeaderHeight - 2) + ); + luckysheetTableContent.lineWidth = 1; + luckysheetTableContent.strokeStyle = luckysheetdefaultstyle.strokeStyle; + luckysheetTableContent.closePath(); + luckysheetTableContent.stroke(); + } + else if(Store.config["colhidden"]==null || Store.config["colhidden"][c] == null) { + luckysheetTableContent.beginPath(); + luckysheetTableContent.moveTo( + (end_c + offsetLeft - 2 + bodrder05) , + 0 + ); + luckysheetTableContent.lineTo( + (end_c + offsetLeft - 2 + bodrder05) , + (Store.columeHeaderHeight - 2) + ); + + luckysheetTableContent.lineWidth = 1; + luckysheetTableContent.strokeStyle = luckysheetdefaultstyle.strokeStyle; + luckysheetTableContent.closePath(); + luckysheetTableContent.stroke(); + } + + if (Store.config["colhidden"] != null && Store.config["colhidden"][c-1] != null && preEndC!=null) { + luckysheetTableContent.beginPath(); + luckysheetTableContent.moveTo( + (preEndC + offsetLeft + bodrder05) , + 0 + ); + luckysheetTableContent.lineTo( + (preEndC + offsetLeft + bodrder05) , + (Store.columeHeaderHeight - 2) + ); + // luckysheetTableContent.lineWidth = 1; + // luckysheetTableContent.strokeStyle = luckysheetdefaultstyle.strokeStyle; + luckysheetTableContent.closePath(); + luckysheetTableContent.stroke(); + } + //horizen luckysheetTableContent.beginPath(); @@ -281,6 +353,8 @@ function luckysheetDrawgridColumnTitle(scrollWidth, drawWidth, offsetLeft) { // luckysheetTableContent.strokeStyle = luckysheetdefaultstyle.strokeStyle; luckysheetTableContent.stroke(); luckysheetTableContent.closePath(); + + preEndC = end_c; } //列标题栏横线 @@ -2086,6 +2160,10 @@ function getCellOverflowMap(canvas, col_st, col_ed, row_st, row_end){ for(let c = 0; c < data[r].length; c++){ let cell = data[r][c]; + if (Store.config["colhidden"] != null && Store.config["colhidden"][c] != null) { + continue + } + if(cell != null && !isRealNull(cell.v) && cell.mc == null && cell.tb == '1'){ let fontset = luckysheetfontformat(cell); canvas.font = fontset; From d285d9fb5e3ff74385debaf493ad6125173644a4 Mon Sep 17 00:00:00 2001 From: wbfsa Date: Sun, 30 Aug 2020 23:48:58 +0800 Subject: [PATCH 10/19] fix(blank border position): fix --- src/global/draw.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/global/draw.js b/src/global/draw.js index 0beac0c..e2b180f 100644 --- a/src/global/draw.js +++ b/src/global/draw.js @@ -1142,11 +1142,11 @@ let nullCellRender = function(r, c, start_r, start_c, end_r, end_c,luckysheetTab luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( (end_c + offsetLeft - 2 + bodrder05), - (start_r + offsetTop - 2) + (start_r + offsetTop) ); luckysheetTableContent.lineTo( (end_c + offsetLeft - 2 + bodrder05), - (end_r + offsetTop - 2) + (end_r + offsetTop) ); luckysheetTableContent.lineWidth = 1; @@ -1160,11 +1160,11 @@ let nullCellRender = function(r, c, start_r, start_c, end_r, end_c,luckysheetTab if(!Store.luckysheetcurrentisPivotTable && !fillStyle && Store.showGridLines){ luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( - (start_c + offsetLeft - 2), + (start_c + offsetLeft - 1), (end_r + offsetTop - 2 + bodrder05) ); luckysheetTableContent.lineTo( - (end_c + offsetLeft - 2), + (end_c + offsetLeft - 1), (end_r + offsetTop - 2 + bodrder05) ); luckysheetTableContent.lineWidth = 1; @@ -1993,11 +1993,11 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( (end_c + offsetLeft - 2 + bodrder05), - (start_r + offsetTop - 2) + (start_r + offsetTop) ); luckysheetTableContent.lineTo( (end_c + offsetLeft - 2 + bodrder05), - (end_r + offsetTop - 2) + (end_r + offsetTop) ); luckysheetTableContent.lineWidth = 1; luckysheetTableContent.strokeStyle = luckysheetdefaultstyle.strokeStyle; @@ -2010,11 +2010,11 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee if(!Store.luckysheetcurrentisPivotTable && !fillStyle && Store.showGridLines){ luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( - (start_c + offsetLeft - 2), + (start_c + offsetLeft - 1), (end_r + offsetTop - 2 + bodrder05) ); luckysheetTableContent.lineTo( - (end_c + offsetLeft - 2), + (end_c + offsetLeft - 1), (end_r + offsetTop - 2 + bodrder05) ); luckysheetTableContent.lineWidth = 1; From 33245124be8972d1e011c047caf657275ac76916 Mon Sep 17 00:00:00 2001 From: wbfsa Date: Mon, 31 Aug 2020 00:19:36 +0800 Subject: [PATCH 11/19] fix(filter option bug): position error --- src/controllers/sheetmanage.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/controllers/sheetmanage.js b/src/controllers/sheetmanage.js index cdf7b94..995a77a 100644 --- a/src/controllers/sheetmanage.js +++ b/src/controllers/sheetmanage.js @@ -873,10 +873,12 @@ const sheetmanage = { luckysheetFreezen.freezenhorizontaldata = file["freezen"].horizontal == null ? null : file["freezen"].horizontal.freezenhorizontaldata; luckysheetFreezen.freezenverticaldata = file["freezen"].vertical == null ? null : file["freezen"].vertical.freezenverticaldata; } - - createFilterOptions(file["filter_select"], file["filter"]); rhchInit(Store.flowdata.length, Store.flowdata[0].length); + + createFilterOptions(file["filter_select"], file["filter"]); + + }, restoreselect: function() { let index = this.getSheetIndex(Store.currentSheetIndex); From e101b91c4a4a427a83ef727f2e8c2e8166124485 Mon Sep 17 00:00:00 2001 From: wbfsa Date: Mon, 31 Aug 2020 00:29:04 +0800 Subject: [PATCH 12/19] fix(update demo): fix --- src/index.html | 1 - 1 file changed, 1 deletion(-) diff --git a/src/index.html b/src/index.html index dfd82b7..9d07bf7 100644 --- a/src/index.html +++ b/src/index.html @@ -33,7 +33,6 @@ luckysheet.create({ container: 'luckysheet', - title:"hehehahahehe ", lang: 'en', allowEdit:true, forceCalculation:false, From 3d174260e27793d1634c5f15b83a4aa9ca4100de Mon Sep 17 00:00:00 2001 From: wbfsa Date: Mon, 31 Aug 2020 00:31:57 +0800 Subject: [PATCH 13/19] fix(demo fix): fix --- src/index.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/index.html b/src/index.html index 9d07bf7..205e4b8 100644 --- a/src/index.html +++ b/src/index.html @@ -37,8 +37,6 @@ allowEdit:true, forceCalculation:false, plugins: ['chart'], - allowUpdate:true, - updateUrl:"www.baidu.com", data: [sheetCell,sheetFormula,sheetConditionFormat,sheetTable,sheetSparkline,sheetComment,sheetPivotTableData,sheetPivotTable,sheetChart] }) From 5a95304289714d130501faae352dc07fb21dbf68 Mon Sep 17 00:00:00 2001 From: liuyang Date: Mon, 31 Aug 2020 22:20:38 +0800 Subject: [PATCH 14/19] fix(several bug and new feature): formula calculation , quotePrefix add --- src/controllers/sheetmanage.js | 41 +++++++++++++++++++++++++++------- src/core.js | 2 ++ src/global/draw.js | 26 +++++++++++++++++++-- src/global/formula.js | 24 +++++++++++++++----- src/global/setdata.js | 6 +++++ src/store/index.js | 1 + 6 files changed, 84 insertions(+), 16 deletions(-) diff --git a/src/controllers/sheetmanage.js b/src/controllers/sheetmanage.js index 995a77a..8b6f137 100644 --- a/src/controllers/sheetmanage.js +++ b/src/controllers/sheetmanage.js @@ -442,7 +442,7 @@ const sheetmanage = { return true; } }, - createSheetbydata: function(data, isrenew) { + createSheetbydata: function(data, isrenew, isBefore=true) { let _this = this; let colorset = ''; @@ -452,13 +452,15 @@ const sheetmanage = { $("#luckysheet-sheet-container-c").append(replaceHtml(sheetHTML, { "index": data.index, "active": "", "name": data.name, "order": data.order, "style": "", "colorset": colorset })); - let previndex = data.order; - if(previndex >= Store.luckysheetfile.length){ - previndex = Store.luckysheetfile.length - 1; - $("#luckysheet-sheets-item" + data.index).insertAfter($("#luckysheet-sheets-item" + Store.luckysheetfile[previndex].index)); - } - else{ - $("#luckysheet-sheets-item" + data.index).insertBefore($("#luckysheet-sheets-item" + Store.luckysheetfile[previndex].index)); + if(isBefore){ + let previndex = data.order; + if(previndex >= Store.luckysheetfile.length){ + previndex = Store.luckysheetfile.length - 1; + $("#luckysheet-sheets-item" + data.index).insertAfter($("#luckysheet-sheets-item" + Store.luckysheetfile[previndex].index)); + } + else{ + $("#luckysheet-sheets-item" + data.index).insertBefore($("#luckysheet-sheets-item" + Store.luckysheetfile[previndex].index)); + } } Store.luckysheetfile.push(data); @@ -1011,6 +1013,29 @@ const sheetmanage = { file["data"] = data; file["load"] = "1"; + + let sheetindexset = _this.checkLoadSheetIndex(file); + let sheetindex = []; + + for(let i = 0; i < sheetindexset.length; i++){ + let item = sheetindexset[i]; + + if(item == file["index"]){ + continue; + } + + sheetindex.push(item); + } + + for(let i = 0;i Date: Mon, 31 Aug 2020 22:29:19 +0800 Subject: [PATCH 15/19] fix(green label size fix): fix n= --- src/global/draw.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/global/draw.js b/src/global/draw.js index 4dd8256..29a1701 100644 --- a/src/global/draw.js +++ b/src/global/draw.js @@ -1239,7 +1239,7 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee //若单元格有批注(单元格右上角红色小三角标示) if(cell.ps != null){ - let ps_w = 6*Store.zoomRatio, ps_h = 6*Store.zoomRatio; //红色小三角宽高 + let ps_w = 8*Store.zoomRatio, ps_h = 8*Store.zoomRatio; //红色小三角宽高 luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( @@ -1265,15 +1265,15 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( - (start_c + offsetLeft + ps_w), + (start_c + offsetLeft + ps_w-1), (start_r + offsetTop) ); luckysheetTableContent.lineTo( - (start_c + offsetLeft), + (start_c + offsetLeft-1), (start_r + offsetTop) ); luckysheetTableContent.lineTo( - (start_c + offsetLeft), + (start_c + offsetLeft-1), (start_r + offsetTop + ps_h) ); luckysheetTableContent.fillStyle = "#487f1e"; From a9fef0c917578dae5402f1087a817c5ada01275d Mon Sep 17 00:00:00 2001 From: lrz <1414556676@qq.com> Date: Tue, 1 Sep 2020 09:48:31 +0800 Subject: [PATCH 16/19] docs(readme): readme 1. readme Luckyexcel link 2. setCellFormat --- README-zh.md | 6 +++++- README.md | 6 +++++- docs/zh/guide/api.md | 41 ++++++++++++++++++++++++++++++++++++++--- 3 files changed, 48 insertions(+), 5 deletions(-) diff --git a/README-zh.md b/README-zh.md index bb58550..ebe5d23 100644 --- a/README-zh.md +++ b/README-zh.md @@ -16,6 +16,10 @@ ![演示](/docs/.vuepress/public/img/LuckysheetDemo.gif) +## 插件 +- excel导入导出库: [Luckyexcel](https://github.com/mengshukeji/Luckyexcel) +- 图表插件: [chartMix](https://github.com/mengshukeji/chartMix) + ## 特性 ### 🛠️格式设置 @@ -85,6 +89,7 @@ + **矩阵计算** (通过右键菜单进行支持:对选区内的数据进行转置、旋转、数值计算) + **截图** (把选区的内容进行截图展示) + **复制到其他格式** (右键菜单的"复制为", 支持复制为json、array、对角线数据、去重等) ++ **EXCEL,CSV,TXT 导入及导出** (专为Luckysheet打造的导入导出插件,支持密码、水印、公式等的本地导入导出) ### ⏱️未来开发计划 + **插入图表和svg形状** (支持JPG,PNG,SVG,Pen tool的插入、修改和删除,并且随表格的变动而产生变化) @@ -93,7 +98,6 @@ + **单元格内多样式** (Alt+Enter单元格内换行、上标、下标、单元格内科定义每个文字的不同样式) + **树形菜单** (类似excel中的分级显示(分组)) + **表格新功能** (类似excel中表格的筛选器和切片器) -+ **EXCEL,CSV,TXT 导入及导出** (专为Luckysheet打造的导入导出插件,支持密码、水印、公式等的本地导入导出) + **文档** (完善文档和API) + **敬请期待...** (可以提出好的建议给我们) diff --git a/README.md b/README.md index b988d9e..c3003d8 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,10 @@ English| [简体中文](./README-zh.md) ![Demo](/docs/.vuepress/public/img/LuckysheetDemo.gif) +## Plugins +- Excel import and export library: [Luckyexcel](https://github.com/mengshukeji/Luckyexcel) +- Chart plugin: [chartMix](https://github.com/mengshukeji/chartMix) + ## Features ### 🛠️Formatting @@ -91,6 +95,7 @@ English| [简体中文](./README-zh.md) + **Matrix operation** (Operate selection through the right-click menu: transpose, rotate, numerical calculation) + **Screenshot** (Take a screenshot with selection) + **Copy to** (In the right-click menu, copy selection to json, array etc.) ++ **EXCEL,CSV,TXT import/export** (Specially adapted to Luckysheet) ### ⏱️Coming soon + **Insert picture and Shapes** (JPG,PNG,SVG,Pen tool and so on) @@ -99,7 +104,6 @@ English| [简体中文](./README-zh.md) + **Cell segmentation style** (Alt+Enter line break, sub,super, in-cell style) + **Tree menu** (Just like the outline (group) function of excel) + **Table new Features** (filter, slicer) -+ **EXCEL,CSV,TXT import/export** (Specially adapted to Luckysheet) + **Documentation** (Improve documentation and API) + **More...** (Please advise us) diff --git a/docs/zh/guide/api.md b/docs/zh/guide/api.md index f7e209e..726f1a4 100644 --- a/docs/zh/guide/api.md +++ b/docs/zh/guide/api.md @@ -66,9 +66,9 @@ Luckysheet针对常用的数据操作需求,开放了主要功能的API,开 - {Number} [row]: 单元格所在行数;从0开始的整数,0表示第一行 - {Number} [column]: 单元格所在列数;从0开始的整数,0表示第一列 - {String} [attr]: 属性类型,参考 [单元格属性表](/zh/guide/cell.html)的属性值 - - {String | Number | Object} [value]: 具体的设置值,一个属性会对应多个值,参考 [单元格属性表](/zh/guide/cell.html)的值示例,特殊情况:如果属性类型`attr`是单元格格式`ct`,则设置值`value`应提供`ct.fa`,比如设置A1单元格的格式为百分比格式: + - {String | Number | Object} [value]: 具体的设置值,一个属性会对应多个值,参考 [单元格属性表](/zh/guide/cell.html)的值示例,如果属性类型`attr`是单元格格式`ct`,则设置值`value`应提供ct对象,如:`{fa:"General", t:"g"}`,比如设置A1单元格的格式为百分比格式: - `luckysheet.setCellFormat(0, 0, "ct", "0.00%")` + `luckysheet.setCellFormat(0, 0, "ct", {fa:"0.00%", t:"n"})` - {PlainObject} [setting]: 可选参数 + {Number} [order]: 工作表索引;默认值为当前工作表索引 @@ -143,7 +143,7 @@ Luckysheet针对常用的数据操作需求,开放了主要功能的API,开 - **示例**: - 当前工作表查找`"value"`字符串并替换为`"out"` - `luckysheet.replaces("value", "out)` + `luckysheet.replace("value", "out")` ------------ @@ -1810,6 +1810,41 @@ Luckysheet针对常用的数据操作需求,开放了主要功能的API,开 `luckysheet.setSheetMove("left")` - 第二个工作表移动到第四个工作表的索引位置 `luckysheet.setSheetMove(3,{order:1})` +------------ + +### setSheetOrder(orderList [,setting]) + +- **参数**: + + - {Array} [orderList]: 工作表顺序,设置工作表的index和order来指定位置,如: + + ```json + [ + {index:'sheet_01',order: 2}, + {index:'sheet_02',order: 1}, + {index:'sheet_03',order: 0}, + ] + ``` + 数组中顺序并不重要,关键是指定sheet index和order的对应关系。 + + - {PlainObject} [setting]: 可选参数 + + {Function} [success]: 操作结束的回调函数 + +- **说明**: + + 重新排序所有工作表的位置,指定工作表顺序的数组。 + + +- **示例**: + + - 重排工作表,此工作簿含有3个工作表 + ```js + luckysheet.setSheetOrder([ + {index:'sheet_01',order: 2}, + {index:'sheet_02',order: 1}, + {index:'sheet_03',order: 0}, + ]) + ``` ------------ From 2eb85a750cee11b98c806fda3ee8f9e7ba18fc3c Mon Sep 17 00:00:00 2001 From: lrz <1414556676@qq.com> Date: Tue, 1 Sep 2020 17:42:47 +0800 Subject: [PATCH 17/19] docs(api): api api --- docs/zh/guide/api.md | 54 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 53 insertions(+), 1 deletion(-) diff --git a/docs/zh/guide/api.md b/docs/zh/guide/api.md index 726f1a4..cdbc594 100644 --- a/docs/zh/guide/api.md +++ b/docs/zh/guide/api.md @@ -50,7 +50,9 @@ Luckysheet针对常用的数据操作需求,开放了主要功能的API,开 - **说明**: - 设置某个单元格的值,也可以设置整个单元格对象,用于同时设置多个单元格属性 + 设置某个单元格的值,也可以设置整个单元格对象,用于同时设置多个单元格属性。 + + 如果需要更新公式,也可以在这里赋值,Luckysheet在内部会主动把这个公式做计算并加入到公式链中,最后重刷界面。 - **示例**: @@ -59,6 +61,54 @@ Luckysheet针对常用的数据操作需求,开放了主要功能的API,开 ------------ +### clearCell(row, column [,setting]) + +- **参数**: + + - {Number} [row]: 单元格所在行数;从0开始的整数,0表示第一行 + - {Number} [column]: 单元格所在列数;从0开始的整数,0表示第一列 + - {PlainObject} [setting]: 可选参数 + + {Number} [order]: 工作表索引;默认值为当前工作表索引 + + {Function} [success]: 操作结束的回调函数 + +- **说明**: + + 清除指定工作表指定单元格的内容,返回清除掉的数据,不同于删除单元格的功能,不需要设定单元格移动情况 + +- **示例**: + + - 清空单元格`B2`内容 + `luckysheet.clearCell(1,1)` + +------------ + +### deleteCell(move, row, column [,setting]) + +- **参数**: + - {String} [move]: 删除后,右侧还是下方的单元格移动 + + `move`可能的值有: + + + `"left"`: 右侧单元格左移 + + `"up"`: 下方单元格上移 + + - {Number} [row]: 单元格所在行数;从0开始的整数,0表示第一行 + - {Number} [column]: 单元格所在列数;从0开始的整数,0表示第一列 + - {PlainObject} [setting]: 可选参数 + + {Number} [order]: 工作表索引;默认值为当前工作表索引 + + {Function} [success]: 操作结束的回调函数 + +- **说明**: + + 删除指定工作表指定单元格,返回删除掉的数据,同时,指定是右侧单元格左移还是下方单元格上移 + +- **示例**: + + - 删除当前单元格并且在删除后,右侧单元格左移 + `luckysheet.deleteCell('left')` + +------------ + ### setCellFormat(row, column, attr, value [,setting]) - **参数**: @@ -910,6 +960,8 @@ Luckysheet针对常用的数据操作需求,开放了主要功能的API,开 将一个单元格数组数据赋值到指定的区域,数据格式同`getRangeValue`方法取到的数据。 + 注意一点,通常`getRangeValue`方法只是取得选区数据,但是不包含边框和合并单元格信息,当执行`setRangeValue`的时候,会动态判断上一步是否执行过`getRangeValue`,如果执行过,会将边框和合并单元格信息一并从Luckysheet配置中取得。 + - **示例**: + 赋值到当前选区 From 3250ef69606d24518d7b615806c1210c2ce0a684 Mon Sep 17 00:00:00 2001 From: liuyang Date: Tue, 1 Sep 2020 19:14:11 +0800 Subject: [PATCH 18/19] fix(add button bug): fix --- src/function/func.js | 3 +++ src/function/functionImplementation.js | 6 +++--- src/global/extend.js | 2 +- src/global/refresh.js | 1 + 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/function/func.js b/src/function/func.js index 6abfc1a..673d38e 100644 --- a/src/function/func.js +++ b/src/function/func.js @@ -93,6 +93,9 @@ function luckysheet_compareWith() { else if(sp == "-" && fp == null){ fp = 0; } + else if(sp == "/" && (tp == 0 || tp == null)){ + return error.d; + } //计算result function booleanOperation(a, operator, b){ diff --git a/src/function/functionImplementation.js b/src/function/functionImplementation.js index 17981f8..3df4cdd 100644 --- a/src/function/functionImplementation.js +++ b/src/function/functionImplementation.js @@ -7,7 +7,7 @@ import formula from '../global/formula'; import func_methods from '../global/func_methods'; import editor from '../global/editor'; import { isdatetime, diff, isdatatype } from '../global/datecontroll'; -import { isRealNum, isRealNull, valueIsError } from '../global/validate'; +import { isRealNum, isRealNull, valueIsError,error } from '../global/validate'; import { jfrefreshgrid } from '../global/refresh'; import { genarate, update } from '../global/format'; import { orderbydata } from '../global/sort'; @@ -19496,7 +19496,7 @@ const functionImplementation = { //结果为 TRUE var value_if_true = func_methods.getFirstValue(arguments[1], "text"); - if(valueIsError(value_if_true)){ + if(valueIsError(value_if_true) && value_if_false!=error.d){ return value_if_true; } @@ -19504,7 +19504,7 @@ const functionImplementation = { var value_if_false = ""; if(arguments.length == 3){ value_if_false = func_methods.getFirstValue(arguments[2], "text"); - if(valueIsError(value_if_false)){ + if(valueIsError(value_if_false) && value_if_false!=error.d){ return value_if_false; } } diff --git a/src/global/extend.js b/src/global/extend.js index 7f10000..12b0877 100644 --- a/src/global/extend.js +++ b/src/global/extend.js @@ -1,7 +1,7 @@ import editor from './editor'; import formula from './formula'; import { jfrefreshgrid_adRC, jfrefreshgrid_deleteCell, jfrefreshgrid_rhcw } from './refresh'; -import { datagridgrowth } from './getdata'; +import { datagridgrowth, getcellFormula } from './getdata'; import { setcellvalue } from './setdata'; import conditionformat from '../controllers/conditionformat'; import luckysheetFreezen from '../controllers/freezen'; diff --git a/src/global/refresh.js b/src/global/refresh.js index c360fd7..512448e 100644 --- a/src/global/refresh.js +++ b/src/global/refresh.js @@ -2,6 +2,7 @@ import rhchInit from './rhchInit'; import formula from './formula'; import editor from './editor'; import { setcellvalue } from './setdata'; +import { getcellFormula } from './getdata'; import { computeRowlenArr } from './getRowlen'; import { luckysheetDrawMain, From aa3304b9bf193388a9fb0f967ceffb43dbd47f7f Mon Sep 17 00:00:00 2001 From: liuyang Date: Wed, 2 Sep 2020 19:36:52 +0800 Subject: [PATCH 19/19] refactor: inlinestr add --- src/global/draw.js | 111 +++++++++++++++++++++++++-------------------- src/index.html | 42 ++++++++++++++++- 2 files changed, 102 insertions(+), 51 deletions(-) diff --git a/src/global/draw.js b/src/global/draw.js index 29a1701..0444363 100644 --- a/src/global/draw.js +++ b/src/global/draw.js @@ -1568,63 +1568,74 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee //自动换行 // luckysheetTableContent.textBaseline = 'top'; //textBaseline以top计算 - let strArr = [];//文本截断数组 - strArr = getCellTextSplitArr(value.toString(), strArr, (cellWidth - space_width * 2), luckysheetTableContent); - let word_space_height = oneLineTextHeight/3; - for(let i = 0; i < strArr.length; i++){ - let strV = strArr[i]; + if(cell.ct!=null && cell.ct.t=="inlineStr" && cell.ct.sharedStrings!=null && cell.ct.sharedStrings.length>0){ + let strArr = [],lineMaxHeight=[]; + let sharedStrings = cell.ct.sharedStrings; + for(let i=0;i