From 83485d0fd0a2a06d7ef705f0f71250802fd7b5df Mon Sep 17 00:00:00 2001 From: xichaoyin Date: Thu, 4 Jan 2024 17:42:14 +0800 Subject: [PATCH 01/17] =?UTF-8?q?fix:=20=E7=9A=AE=E8=82=A4=E7=B3=BB?= =?UTF-8?q?=E7=BB=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api_s2c/heroskin/ApiTakeOff.ts | 20 + src/api_s2c/heroskin/ApiUplv.ts | 36 + src/api_s2c/heroskin/ApiWear.ts | 28 + src/cross/protocols/serviceProto.ts | 21 + src/json/attr.json | 52 +- src/json/clsl_com.json5 | 33 +- src/json/diaoluo.json | 72 +- src/json/huodong.json5 | 2526 ++++++++- src/json/pay.json | 231 + src/json/playerChatFrame.json | 18 +- src/json/playerModel.json | 4 + src/json/renown_level.json | 632 ++- src/json/tanxian.json | 5400 +++++++++++++++++++ src/json/tuisonglibao.json | 4 +- src/json/xstask.json | 148 +- src/jsonType.ts | 30 +- src/lng.ts | 3 + src/module/mongodb.ts | 112 +- src/monopoly/protocols/serviceProto.ts | 14 + src/public/heroskin.ts | 49 + src/public/player.ts | 167 +- src/shared/protocols/hero/PtlGetList.ts | 2 + src/shared/protocols/heroskin/PtlTakeOff.ts | 7 + src/shared/protocols/heroskin/PtlUplv.ts | 6 + src/shared/protocols/heroskin/PtlWear.ts | 6 + src/shared/protocols/serviceProto.ts | 517 +- src/shared/protocols/user/PtlLogin.ts | 7 +- src/shared/public/hero.ts | 38 +- 28 files changed, 9464 insertions(+), 719 deletions(-) create mode 100644 src/api_s2c/heroskin/ApiTakeOff.ts create mode 100644 src/api_s2c/heroskin/ApiUplv.ts create mode 100644 src/api_s2c/heroskin/ApiWear.ts create mode 100644 src/public/heroskin.ts create mode 100644 src/shared/protocols/heroskin/PtlTakeOff.ts create mode 100644 src/shared/protocols/heroskin/PtlUplv.ts create mode 100644 src/shared/protocols/heroskin/PtlWear.ts diff --git a/src/api_s2c/heroskin/ApiTakeOff.ts b/src/api_s2c/heroskin/ApiTakeOff.ts new file mode 100644 index 0000000..e097c0e --- /dev/null +++ b/src/api_s2c/heroskin/ApiTakeOff.ts @@ -0,0 +1,20 @@ +import { ApiCall } from "tsrpc"; +import { ReqTakeOff, ResTakeOff } from "../../shared/protocols/heroskin/PtlTakeOff"; +import { HeroFun } from "../../public/hero"; + +export default async function (call: ApiCall) { + let hero = await HeroFun.getHero(call, call.req.heroOid); + if (!hero) { // 英雄不存在 + call.error(lng.hero_1); + return; + } + + if (!hero.skin) { // 没有穿戴皮肤 + call.error(lng.hero_22); + return; + } + + HeroFun.changeHeroAttr(call, hero, { skin: "" }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/heroskin/ApiUplv.ts b/src/api_s2c/heroskin/ApiUplv.ts new file mode 100644 index 0000000..d8ed43b --- /dev/null +++ b/src/api_s2c/heroskin/ApiUplv.ts @@ -0,0 +1,36 @@ +import { ApiCall } from "tsrpc"; +import HeroSkinFun from "../../public/heroskin"; +import { PlayerFun } from "../../public/player"; +import { ReqUplv, ResUplv } from "../../shared/protocols/heroskin/PtlUplv"; + + +export default async function (call: ApiCall) { + let skin = HeroSkinFun.getHeroSkin(call); + if (!skin[call.req.skid]) {// 皮肤未获得 + call.error(lng.hero_20); + } + + let cur_lv = skin[call.req.skid]; + let skinconf = G.gc.heroSkin[skin.skid]; + + let need = []; + for (let i = 0; i < call.req.lv; i++) { + need.concat( + G.gc.heroSkinLv[skinconf.colour][cur_lv + i].need + ) + } + + // 检测消耗 + await PlayerFun.checkNeedIsMeet(call, need); + + // 扣除消耗 + await PlayerFun.cutNeed(call, need); + + // 更新等级 + skin[call.req.skid] = cur_lv + call.req.lv; + + // 更新skinlv + HeroSkinFun.updateHeroSkinLv(call, { [call.req.skid]: cur_lv + call.req.lv }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/heroskin/ApiWear.ts b/src/api_s2c/heroskin/ApiWear.ts new file mode 100644 index 0000000..ed42a15 --- /dev/null +++ b/src/api_s2c/heroskin/ApiWear.ts @@ -0,0 +1,28 @@ +import { ApiCall } from "tsrpc"; +import { HeroFun } from "../../public/hero"; +import HeroSkinFun from "../../public/heroskin"; +import { ReqWear, ResWear } from "../../shared/protocols/heroskin/PtlWear"; + +export default async function (call: ApiCall) { + let hero = await HeroFun.getHero(call, call.req.heroOid); + if (!hero) { // 英雄不存在 + call.error(lng.hero_1); + return; + } + + let skin = HeroSkinFun.getHeroSkin(call); + if (!skin || !skin[call.req.skid]) { // 皮肤不存在 + call.error(lng.hero_20); + return; + } + + let skinconf = G.gc.heroSkin[skin.skid]; + if (skinconf.heroid != hero.heroId) { // 皮肤不属于该英雄 + call.error(lng.hero_21); + return; + } + + HeroFun.changeHeroAttr(call, hero, { skin: call.req.skid }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/cross/protocols/serviceProto.ts b/src/cross/protocols/serviceProto.ts index f403b19..52471c8 100644 --- a/src/cross/protocols/serviceProto.ts +++ b/src/cross/protocols/serviceProto.ts @@ -1316,6 +1316,20 @@ export const serviceProto: ServiceProto = { } }, "optional": true + }, + { + "id": 38, + "name": "heroskin", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true } ] }, @@ -1707,6 +1721,13 @@ export const serviceProto: ServiceProto = { } } } + }, + { + "id": 8, + "name": "skin", + "type": { + "type": "String" + } } ] }, diff --git a/src/json/attr.json b/src/json/attr.json index 592ff4e..9c823e1 100644 --- a/src/json/attr.json +++ b/src/json/attr.json @@ -2,7 +2,7 @@ "jinbi": { "id": "jinbi", "name": "intr_attr_name_1", - "undefined": "美金", + "undefined": "通用货币,能购买大多数商品", "colour": 3, "icon": "icon_jinbi", "sicon": "icon_jinbi", @@ -12,7 +12,7 @@ "rmbmoney": { "id": "rmbmoney", "name": "intr_attr_name_2", - "undefined": "钻石", + "undefined": "稀有货币,没有人可以抗拒它", "colour": 5, "icon": "icon_zuanshi", "sicon": "icon_zuanshi", @@ -22,7 +22,7 @@ "nexp": { "id": "nexp", "name": "intr_attr_name_3", - "undefined": "主角经验", + "undefined": "用于提升主角等级", "colour": 4, "icon": "icon_zjjy", "sicon": "icon_zjjy", @@ -32,7 +32,7 @@ "rongyu": { "id": "rongyu", "name": "intr_attr_name_4", - "undefined": "荣誉勋章", + "undefined": "荣誉的象征,可以在荣誉商店兑换道具", "colour": 4, "icon": "icon_rongyu", "sicon": "icon_rongyu", @@ -42,7 +42,7 @@ "payExp": { "id": "payExp", "name": "intr_attr_name_5", - "undefined": "VIP经验", + "undefined": "稀有货币,没有人可以抗拒它", "colour": 5, "icon": "icon_gzjy", "sicon": "icon_gzjy", @@ -52,7 +52,7 @@ "guijinshu": { "id": "guijinshu", "name": "intr_attr_name_6", - "undefined": "贵金属", + "undefined": "通过精炼饰品获得的稀有贵金属,可以在饰品商店兑换饰品", "colour": 3, "icon": "icon_xyjsh", "sicon": "icon_xyjsh", @@ -62,7 +62,7 @@ "shilifrd": { "id": "shilifrd", "name": "intr_attr_name_11", - "undefined": "势力繁荣度", + "undefined": "势力的繁荣度越高,势力等级越高", "colour": 4, "icon": "icon_slfrd", "sicon": "icon_slfrd", @@ -72,7 +72,7 @@ "clsl_sd": { "id": "clsl_sd", "name": "intr_attr_name_12", - "undefined": "丛林狩猎胜点", + "undefined": "丛林狩猎的段位胜点,胜点数量足够后可进阶", "colour": 5, "icon": "icon_clsl_xx", "sicon": "icon_clsl_xx", @@ -82,7 +82,7 @@ "nahanzhuwei": { "id": "nahanzhuwei", "name": "tlsd_guess_name_1", - "undefined": "呐喊助威", + "undefined": "参与竞猜后获得莱微碎片*1和美金*500000", "colour": 5, "icon": "icon_heroBox_11", "sicon": "icon_heroBox_11", @@ -92,7 +92,7 @@ "aidebaobao": { "id": "aidebaobao", "name": "tlsd_guess_name_2", - "undefined": "爱的抱抱", + "undefined": "参与竞猜后获得莱微碎片*1,配件蓝图*1和美金*800000", "colour": 5, "icon": "icon_heroBox_11", "sicon": "icon_heroBox_11", @@ -102,7 +102,7 @@ "woweishenkuang": { "id": "woweishenkuang", "name": "tlsd_guess_name_3", - "undefined": "我为神狂", + "undefined": "参与竞猜后获得莱微碎片*1,配件蓝图*3和美金*1000000", "colour": 5, "icon": "icon_heroBox_11", "sicon": "icon_heroBox_11", @@ -112,7 +112,7 @@ "shengdanExp": { "id": "shengdanExp", "name": "intr_attr_name_13", - "undefined": "圣诞战令经验", + "undefined": "一年一度的圣诞庆典获得的圣诞欢乐值,可以提升庆典圣诞树奖励进度", "colour": 5, "icon": "icon_sdhd_item_1", "sicon": "icon_sdhd_item_1", @@ -122,7 +122,7 @@ "shengdanBullet": { "id": "shengdanBullet", "name": "intr_attr_name_14", - "undefined": "圣诞打靶币", + "undefined": "圣诞活动获得的庆典喷漆,可以在“百发百中”兑换射击次数", "colour": 5, "icon": "icon_chegaipq", "sicon": "icon_chegaipq", @@ -132,7 +132,7 @@ "jingxuanbi": { "id": "jingxuanbi", "name": "intr_attr_name_15", - "undefined": "每日精选兑换币", + "undefined": "只能在黑市使用的票券,可以在黑市里的每日精选兑换商店购买稀有道具", "colour": 4, "icon": "icon_hspj", "sicon": "icon_hspj", @@ -142,7 +142,7 @@ "weiwang": { "id": "weiwang", "name": "intr_attr_name_16", - "undefined": "影响力", + "undefined": "影响力提升了周围同伴的信任,可以在影响力系统中提升属性值", "colour": 4, "icon": "icon_weiwang", "sicon": "icon_weiwang", @@ -152,11 +152,31 @@ "yuandanyouxi": { "id": "yuandanyouxi", "name": "intr_attr_name_17", - "undefined": "元旦游戏币", + "undefined": "在新年活动中获得的庆典币,可以在机遇礼盒兑换游玩次数", "colour": 5, "icon": "icon_xnjb", "sicon": "icon_xnjb", "describe": "intr_attr_describe_17", "advancedEffects": "ani_xiangzikuang" + }, + "huangqijinbi": { + "id": "huangqijinbi", + "name": "intr_attr_name_18", + "undefined": "在黄旗酒馆活动中获得的庆典币,可以在黄旗招募中兑换招募次数", + "colour": 5, + "icon": "icon_hqjb", + "sicon": "icon_hqjb", + "describe": "intr_attr_describe_18", + "advancedEffects": "ani_xiangzikuang" + }, + "huangqiduihuan": { + "id": "huangqiduihuan", + "name": "intr_attr_name_19", + "undefined": "在黄旗酒馆活动中获得的兑换票券,可以在神秘兑换中购买商品", + "colour": 5, + "icon": "icon_hqdhq", + "sicon": "icon_hqdhq", + "describe": "intr_attr_describe_19", + "advancedEffects": "ani_xiangzikuang" } } \ No newline at end of file diff --git a/src/json/clsl_com.json5 b/src/json/clsl_com.json5 index c57676d..51137da 100644 --- a/src/json/clsl_com.json5 +++ b/src/json/clsl_com.json5 @@ -1,11 +1,18 @@ { - //赛区划分按照周三23:50的时候王者玩家100个一组 - //赛区划分时间周三23:50 - divideTime: 258600, - //挑战时间周一08:00——周六22:00 + //赛区划分 + divide: [ + { day: [1, 30], group: 0 }, + { day: [31, 60], group: 1 }, + { day: [61, 120], group: 2 }, + { day: [121, 210], group: 3 }, + { day: [211, 99999999], group: 4 }, + ], + //赛区划分时间 + divideTime: 0, + //挑战时间 fightTime: [28800, 511200], - //发奖时间周六22:05 - prizeTime: 511500, + //发奖时间 + prizeTime: 598200, //胜场奖励 fightWinPrize: [ { total: 5, prize: [{ a: 'attr', t: 'clsl_sd', n: 1 },{ a: 'item', t: '37', n: 1 }], star: 1 }, @@ -32,13 +39,13 @@ ], //段位奖励 danPrize: [ - { star: 49, title: "clsl_7", prize: [{ a: 'item', t: '605', n:3 },{ a: 'item', t: '29', n:10 },{ a: 'item', t: '631', n:3 },{ a: 'item', t: '40', n:1 }] }, - { star: 39, title: "clsl_6", prize: [{ a: 'item', t: '605', n:2 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '631', n:2 }] }, - { star: 29, title: "clsl_5", prize: [{ a: 'item', t: '606', n:3 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '631', n:1 }] }, - { star: 21, title: "clsl_4", prize: [{ a: 'item', t: '606', n:2 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:1000 }] }, - { star: 13, title: "clsl_3", prize: [{ a: 'item', t: '606', n:1 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:800 }] }, - { star: 7, title: "clsl_2", prize: [{ a: 'item', t: '29', n:10 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:600 }] }, - { star: 0, title: "clsl_1", prize: [{ a: 'item', t: '29', n:5 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:400 }] } + { star: 49, prize: [{ a: 'item', t: '605', n:3 },{ a: 'item', t: '29', n:10 },{ a: 'item', t: '631', n:3 },{ a: 'item', t: '40', n:1 }] }, + { star: 39, prize: [{ a: 'item', t: '605', n:2 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '631', n:2 }] }, + { star: 29, prize: [{ a: 'item', t: '606', n:3 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '631', n:1 }] }, + { star: 21, prize: [{ a: 'item', t: '606', n:2 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:1000 }] }, + { star: 13, prize: [{ a: 'item', t: '606', n:1 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:800 }] }, + { star: 7, prize: [{ a: 'item', t: '29', n:10 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:600 }] }, + { star: 0, prize: [{ a: 'item', t: '29', n:5 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:400 }] } ], //王者排名邮件信息 email_rank: { diff --git a/src/json/diaoluo.json b/src/json/diaoluo.json index 1f1bad9..d352940 100644 --- a/src/json/diaoluo.json +++ b/src/json/diaoluo.json @@ -2774,7 +2774,7 @@ "id": 4003, "a": "item", "t": 28, - "n": 1, + "n": 100, "p": 6 }, { @@ -4505,82 +4505,12 @@ } ], "10021": [ - { - "id": 10021, - "a": "hero", - "t": 4001, - "n": 1, - "p": 20 - }, - { - "id": 10021, - "a": "hero", - "t": 4002, - "n": 1, - "p": 20 - }, - { - "id": 10021, - "a": "hero", - "t": 4003, - "n": 1, - "p": 20 - }, - { - "id": 10021, - "a": "hero", - "t": 4004, - "n": 1, - "p": 20 - }, - { - "id": 10021, - "a": "hero", - "t": 4005, - "n": 1, - "p": 20 - }, - { - "id": 10021, - "a": "hero", - "t": 4007, - "n": 1, - "p": 20 - }, - { - "id": 10021, - "a": "hero", - "t": 4009, - "n": 1, - "p": 20 - }, - { - "id": 10021, - "a": "hero", - "t": 4011, - "n": 1, - "p": 20 - }, { "id": 10021, "a": "hero", "t": 4012, "n": 1, "p": 20 - }, - { - "id": 10021, - "a": "hero", - "t": 4014, - "n": 1, - "p": 20 - }, - { - "id": 10021, - "a": "hero", - "t": 4015, - "n": 1, - "p": 20 } ], "20001": [ diff --git a/src/json/huodong.json5 b/src/json/huodong.json5 index e701f4a..0d50fa0 100644 --- a/src/json/huodong.json5 +++ b/src/json/huodong.json5 @@ -2652,8 +2652,301 @@ } } }, - - + + { + "hdid" : 102, // 唯一活动id 人才计划 + "htype" : 1, // 后端唯一识别标识(1:养成目标) + "stype" : 101, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 28, // 活动开始天数 + "rtime" : 35, // 活动显示结束天数 + "etime" : 35, // 活动实际结束 + "name": "intr_ychd_title_3", + "icon": "dfry_rcjh", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //轮数抽卡 mfmid 168318 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr2: 'intr_yczm_tips_3', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_3', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab2: 'intr_ychd_tab_name_4', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '2': '9', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 0}], + free: true, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '4', 'n': 5} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_2_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '4', 'n': 5},{'a': 'item', 't': '4', 'n': 5} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_2_2', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '4', 'n': 10},{'a': 'item', 't': '4', 'n': 10} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_2_3', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '4', 'n': 25},{'a': 'item', 't': '4', 'n': 25} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_4', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '4', 'n': 50},{'a': 'item', 't': '4', 'n': 50} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_5', + buyNum: 10, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '4', 'n': 100},{'a': 'item', 't': '4', 'n': 100} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [[2],5], + tasklist:{ + '2': { + '2001': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 50, + 'cond': [], + 'stype': 118 + }, + '2002': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 100, + 'cond': [], + 'stype': 118 + }, + '2003': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 200, + 'cond': [], + 'stype': 118 + }, + '2004': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 250, + 'cond': [], + 'stype': 118 + }, + '2005': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 300, + 'cond': [], + 'stype': 118 + }, + '2006': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 400, + 'cond': [], + 'stype': 118 + }, + '2007': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 500, + 'cond': [], + 'stype': 118 + } + } + } + } + }, + { + "hdid" : 103, // 唯一活动id 人才计划 + "htype" : 1, // 后端唯一识别标识(1:养成目标) + "stype" : 101, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 42, // 活动开始天数 + "rtime" : 49, // 活动显示结束天数 + "etime" : 49, // 活动实际结束 + "name": "intr_ychd_title_3", + "icon": "dfry_rcjh", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //轮数抽卡 mfmid 168318 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr2: 'intr_yczm_tips_3', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_3', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab2: 'intr_ychd_tab_name_4', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '2': '9', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 0}], + free: true, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '4', 'n': 5} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_2_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '4', 'n': 5},{'a': 'item', 't': '4', 'n': 5} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_2_2', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '4', 'n': 10},{'a': 'item', 't': '4', 'n': 10} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_2_3', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '4', 'n': 25},{'a': 'item', 't': '4', 'n': 25} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_4', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '4', 'n': 50},{'a': 'item', 't': '4', 'n': 50} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_5', + buyNum: 10, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '4', 'n': 100},{'a': 'item', 't': '4', 'n': 100} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [[2],5], + tasklist:{ + '2': { + '2001': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 50, + 'cond': [], + 'stype': 118 + }, + '2002': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 100, + 'cond': [], + 'stype': 118 + }, + '2003': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 200, + 'cond': [], + 'stype': 118 + }, + '2004': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 250, + 'cond': [], + 'stype': 118 + }, + '2005': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 300, + 'cond': [], + 'stype': 118 + }, + '2006': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 400, + 'cond': [], + 'stype': 118 + }, + '2007': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 500, + 'cond': [], + 'stype': 118 + } + } + } + } + }, { "hdid" : 2000, // 唯一活动id 掉落兑换活动 "htype" : 2, // 后端唯一识别标识 @@ -2777,6 +3070,132 @@ } } }, + + { + "hdid" : 2002, // 唯一活动id 掉落兑换活动 + "htype" : 2, // 后端唯一识别标识 + "stype" : 200, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 35, // 活动开始天数 + "rtime" : 42, // 活动显示结束天数 + "etime" : 42, // 活动实际结束 + "name": "diaoluoduihuan", + "icon": "icon_ywtx", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //对应mfm 14701 + diaoluo: [ + //掉落的物品 + { + a: 'item', + t: '50', + n: 4, + p: 10, + s: 3600 + } + + ], + tiaozhuan: 3, + event: { + itemId: '50', + duihuan: [ + { need: [{a: 'item', t: '50', n: 6000}], prize: [{a: 'item', t: '610', n: 1}], num: 2 }, + { need: [{a: 'item', t: '50', n: 3500}], prize: [{a: 'item', t: '600', n: 80},{a: 'item', t: '12', n: 20000}], num: 4 }, + { need: [{a: 'item', t: '50', n: 1200}], prize: [{a: 'item', t: '600', n: 20},{a: 'item', t: '609', n: 1},{a: 'item', t: '4', n: 20}], num: 1 }, + { need: [{a: 'item', t: '50', n: 1500}], prize: [{a: 'item', t: '611', n: 1},{a: 'item', t: '624', n: 50}], num: 1 }, + { need: [{a: 'item', t: '50', n: 350}], prize: [{a: 'item', t: '607', n: 20}], num: 1 }, + { need: [{a: 'item', t: '50', n: 350}], prize: [{a: 'item', t: '600', n: 5}], num: 1 }, + { need: [{a: 'item', t: '50', n: 100}], prize: [{a: 'item', t: '4', n: 1}], num: 99 }, + { need: [{a: 'item', t: '50', n: 10}], prize: [{a: 'item', t: '12', n: 25}], num: 99 }, + { need: [{a: 'item', t: '50', n: 2}], prize: [{a: 'item', t: '2', n: 10}], num: 99 }, + ], + shop: [ + { need: [{a: 'attr', t: 'rmbmoney', n: 0}], prize: [{a: 'attr', t: 'rmbmoney', n: 500}], num: 1, free: true }, + { need: [{a: 'attr', t: 'rmbmoney', n: 800}], prize: [{a: 'item', t: '4', n: 5},{a: 'item', t: '2', n: 1000}], num: 1, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 2250}], prize: [{a: 'item', t: '4', n: 10},{a: 'item', t: '12', n: 2000}], num: 1, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '12', n: 6000}], num: 1, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '2', n: 12000}], num: 3, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '9', n: 6000}], num: 3, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '10', n: 300}], num: 3, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '612', n: 20}], num: 3, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 20000}], prize: [{a: 'item', t: '607', n: 40},{a: 'item', t: '600', n: 40}], num: 4, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '624', n: 20}], num: 3, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '629', n: 20}], num: 3, free: false }, + ], + gift: [ + { payId: '', num: 1, prize: [{a: 'item', t: '50', n: 20}, {a: 'attr', t: 'rmbmoney', n: 200}], free: true }, + { payId: 'duihuan_1_1', prize: [{a: 'item', t: '50', n: 50}, {a: 'attr', t: 'rmbmoney', n: 600}], free: false }, + { payId: 'duihuan_1_2', prize: [{a: 'item', t: '50', n: 100}, {a: 'attr', t: 'rmbmoney', n: 1360}], free: false }, + { payId: 'duihuan_1_3', prize: [{a: 'item', t: '50', n: 200}, {a: 'attr', t: 'rmbmoney', n: 2560}], free: false }, + { payId: 'duihuan_1_4', prize: [{a: 'item', t: '50', n: 600}, {a: 'attr', t: 'rmbmoney', n: 6560}], free: false }, + { payId: 'duihuan_1_5', prize: [{a: 'item', t: '50', n: 1200}, {a: 'attr', t: 'rmbmoney', n: 12960}], free: false }, + ] + } + } + }, + + { + "hdid" : 2003, // 唯一活动id 掉落兑换活动 + "htype" : 2, // 后端唯一识别标识 + "stype" : 200, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 49, // 活动开始天数 + "rtime" : 56, // 活动显示结束天数 + "etime" : 56, // 活动实际结束 + "name": "diaoluoduihuan", + "icon": "icon_ywtx", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //对应mfm 14701 + diaoluo: [ + //掉落的物品 + { + a: 'item', + t: '50', + n: 4, + p: 10, + s: 3600 + } + + ], + tiaozhuan: 3, + event: { + itemId: '50', + duihuan: [ + { need: [{a: 'item', t: '50', n: 6000}], prize: [{a: 'item', t: '610', n: 1}], num: 2 }, + { need: [{a: 'item', t: '50', n: 3500}], prize: [{a: 'item', t: '600', n: 80},{a: 'item', t: '12', n: 20000}], num: 4 }, + { need: [{a: 'item', t: '50', n: 1200}], prize: [{a: 'item', t: '600', n: 20},{a: 'item', t: '609', n: 1},{a: 'item', t: '4', n: 20}], num: 1 }, + { need: [{a: 'item', t: '50', n: 1500}], prize: [{a: 'item', t: '611', n: 1},{a: 'item', t: '624', n: 50}], num: 1 }, + { need: [{a: 'item', t: '50', n: 350}], prize: [{a: 'item', t: '607', n: 20}], num: 1 }, + { need: [{a: 'item', t: '50', n: 350}], prize: [{a: 'item', t: '600', n: 5}], num: 1 }, + { need: [{a: 'item', t: '50', n: 100}], prize: [{a: 'item', t: '4', n: 1}], num: 99 }, + { need: [{a: 'item', t: '50', n: 10}], prize: [{a: 'item', t: '12', n: 25}], num: 99 }, + { need: [{a: 'item', t: '50', n: 2}], prize: [{a: 'item', t: '2', n: 10}], num: 99 }, + ], + shop: [ + { need: [{a: 'attr', t: 'rmbmoney', n: 0}], prize: [{a: 'attr', t: 'rmbmoney', n: 500}], num: 1, free: true }, + { need: [{a: 'attr', t: 'rmbmoney', n: 800}], prize: [{a: 'item', t: '4', n: 5},{a: 'item', t: '2', n: 1000}], num: 1, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 2250}], prize: [{a: 'item', t: '4', n: 10},{a: 'item', t: '12', n: 2000}], num: 1, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '12', n: 6000}], num: 1, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '2', n: 12000}], num: 3, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '9', n: 6000}], num: 3, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '10', n: 300}], num: 3, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '612', n: 20}], num: 3, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 20000}], prize: [{a: 'item', t: '607', n: 40},{a: 'item', t: '600', n: 40}], num: 4, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '624', n: 20}], num: 3, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '629', n: 20}], num: 3, free: false }, + ], + gift: [ + { payId: '', num: 1, prize: [{a: 'item', t: '50', n: 20}, {a: 'attr', t: 'rmbmoney', n: 200}], free: true }, + { payId: 'duihuan_1_1', prize: [{a: 'item', t: '50', n: 50}, {a: 'attr', t: 'rmbmoney', n: 600}], free: false }, + { payId: 'duihuan_1_2', prize: [{a: 'item', t: '50', n: 100}, {a: 'attr', t: 'rmbmoney', n: 1360}], free: false }, + { payId: 'duihuan_1_3', prize: [{a: 'item', t: '50', n: 200}, {a: 'attr', t: 'rmbmoney', n: 2560}], free: false }, + { payId: 'duihuan_1_4', prize: [{a: 'item', t: '50', n: 600}, {a: 'attr', t: 'rmbmoney', n: 6560}], free: false }, + { payId: 'duihuan_1_5', prize: [{a: 'item', t: '50', n: 1200}, {a: 'attr', t: 'rmbmoney', n: 12960}], free: false }, + ] + } + } + }, { "hdid" : 3000, // 唯一活动id 传说之路 @@ -2797,13 +3216,13 @@ { idx: 0,total: 3, type: 'jieji', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1'}, { idx: 1,total: 50, type: 'lv', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_2' }, { idx: 2,total: 4, type: 'jieji', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1' }, - { idx: 3,total: 100, type: 'lv', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_2' }, + { idx: 3,total: 90, type: 'lv', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_2' }, { idx: 4,total: 5, type: 'jieji', prize: [{a: 'item', t: '1', n: 800000}], des:'intr_cszl_des_1' }, - { idx: 5,total: 150, type: 'lv', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_2' }, + { idx: 5,total: 130, type: 'lv', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_2' }, { idx: 6,total: 6, type: 'jieji', prize: [{a: 'item', t: '1', n: 1200000}], des:'intr_cszl_des_1' }, - { idx: 7,total: 200, type: 'lv', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_2' }, + { idx: 7,total: 170, type: 'lv', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_2' }, { idx: 8,total: 7, type: 'jieji', prize: [{a: 'item', t: '1', n: 2000000}], des:'intr_cszl_des_1' }, - { idx: 9,total: 250, type: 'lv', prize: [{a: 'item', t: '5001', n: 20}], des:'intr_cszl_des_2' } + { idx: 9,total: 210, type: 'lv', prize: [{a: 'item', t: '5001', n: 20}], des:'intr_cszl_des_2' } ], //宝箱 box: { total: 10, prize: [{a: 'item', t: '610', n: 1}] } @@ -2825,16 +3244,16 @@ hid: '5002', //任务 task: [ - { idx: 0,total: 3, type: 'jieji', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1'}, - { idx: 1,total: 50, type: 'lv', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_2' }, - { idx: 2,total: 4, type: 'jieji', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1' }, - { idx: 3,total: 100, type: 'lv', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_2' }, - { idx: 4,total: 5, type: 'jieji', prize: [{a: 'item', t: '1', n: 800000}], des:'intr_cszl_des_1' }, - { idx: 5,total: 150, type: 'lv', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_2' }, - { idx: 6,total: 6, type: 'jieji', prize: [{a: 'item', t: '1', n: 1200000}], des:'intr_cszl_des_1' }, - { idx: 7,total: 200, type: 'lv', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_2' }, - { idx: 8,total: 7, type: 'jieji', prize: [{a: 'item', t: '1', n: 2000000}], des:'intr_cszl_des_1' }, - { idx: 9,total: 250, type: 'lv', prize: [{a: 'item', t: '5002', n: 20}], des:'intr_cszl_des_2' } + { idx: 0,total: 80, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1'}, + { idx: 1,total: 4, type: 'jieji', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_2' }, + { idx: 2,total: 120, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1' }, + { idx: 3,total: 5, type: 'jieji', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_2' }, + { idx: 4,total: 160, type: 'lv', prize: [{a: 'item', t: '1', n: 800000}], des:'intr_cszl_des_1' }, + { idx: 5,total: 6, type: 'jieji', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_2' }, + { idx: 6,total: 200, type: 'lv', prize: [{a: 'item', t: '1', n: 1200000}], des:'intr_cszl_des_1' }, + { idx: 7,total: 7, type: 'jieji', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_2' }, + { idx: 8,total: 240, type: 'lv', prize: [{a: 'item', t: '1', n: 2000000}], des:'intr_cszl_des_1' }, + { idx: 9,total: 8, type: 'jieji', prize: [{a: 'item', t: '5002', n: 20}], des:'intr_cszl_des_2' } ], //宝箱 box: { total: 10, prize: [{a: 'item', t: '610', n: 1}] } @@ -2856,16 +3275,16 @@ hid: '5004', //任务 task: [ - { idx: 0,total: 3, type: 'jieji', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1'}, - { idx: 1,total: 50, type: 'lv', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_2' }, - { idx: 2,total: 4, type: 'jieji', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1' }, - { idx: 3,total: 100, type: 'lv', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_2' }, - { idx: 4,total: 5, type: 'jieji', prize: [{a: 'item', t: '1', n: 800000}], des:'intr_cszl_des_1' }, - { idx: 5,total: 150, type: 'lv', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_2' }, - { idx: 6,total: 6, type: 'jieji', prize: [{a: 'item', t: '1', n: 1200000}], des:'intr_cszl_des_1' }, - { idx: 7,total: 200, type: 'lv', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_2' }, - { idx: 8,total: 7, type: 'jieji', prize: [{a: 'item', t: '1', n: 2000000}], des:'intr_cszl_des_1' }, - { idx: 9,total: 250, type: 'lv', prize: [{a: 'item', t: '5004', n: 20}], des:'intr_cszl_des_2' } + { idx: 0,total: 100, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1'}, + { idx: 1,total: 5, type: 'jieji', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_2' }, + { idx: 2,total: 140, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1' }, + { idx: 3,total: 6, type: 'jieji', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_2' }, + { idx: 4,total: 180, type: 'lv', prize: [{a: 'item', t: '1', n: 800000}], des:'intr_cszl_des_1' }, + { idx: 5,total: 7, type: 'jieji', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_2' }, + { idx: 6,total: 220, type: 'lv', prize: [{a: 'item', t: '1', n: 1200000}], des:'intr_cszl_des_1' }, + { idx: 7,total: 8, type: 'jieji', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_2' }, + { idx: 8,total: 260, type: 'lv', prize: [{a: 'item', t: '1', n: 2000000}], des:'intr_cszl_des_1' }, + { idx: 9,total: 9, type: 'jieji', prize: [{a: 'item', t: '5004', n: 20}], des:'intr_cszl_des_2' } ], //宝箱 box: { total: 10, prize: [{a: 'item', t: '610', n: 1}] } @@ -4921,5 +5340,2058 @@ } } } - } + }, + { + "hdid" : 15000, // 唯一活动id 黄旗酒馆(活动结束需要清掉货币) + "htype" : 15, + "stype" : 1500, + "ttype" : 4, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 60, + "rtime" : 90, + "etime" : 90, + "name" : "hqjgtips_1", + "icon" : "icon_xfdj", + "showtime" : "根据玩家注册时间,游戏返回时复写", + "data" : { + //展示干部皮肤ID + "show": 1, + //任务 + "task" : { + "day1" : + { + "1": { + "pval" : 1, + "stype" : "128", + "cond": [], + "tiaozhuan": 4, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_1" + } + }, + "2": { + "pval" : 300, + "stype" : "116", + "cond": [], + "tiaozhuan": 5, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 3 + }, + { + "a" : "item", + "t" : "600", + "n" : 5 + }, + { + "a" : "item", + "t" : "1", + "n" : 500000 + } + ], + "des" : "intr_cszl_des_2" + }, + "3": { + "pval" : 1000, + "stype" : "116", + "cond": [], + "tiaozhuan": 2, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 300 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 5 + }, + { + "a" : "item", + "t" : "600", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 1000000 + } + ], + "des" : "intr_cszl_des_3" + }, + "4": { + "pval" : 2000, + "stype" : "116", + "cond": [], + "tiaozhuan": 1, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 150 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "6", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_4" + }, + "5": { + "pval" : 3, + "stype" : "142", + "cond": [2], + "tiaozhuan": 6, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "2", + "n" : 500 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_5" + }, + "6": { + "pval" : 3, + "stype" : "122", + "cond": [], + "tiaozhuan": 7, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "12", + "n" : 400 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_6" + }, + "7": { + "pval" : 1, + "stype" : "155", + "cond": [], + "tiaozhuan": 8, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_7" + }, + "8": { + "pval" : 1, + "stype" : "127", + "cond": [], + "tiaozhuan": 10, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "21", + "n" : 50 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_8" + }, + "9": { + "pval" : 1, + "stype" : "154", + "cond": [], + "tiaozhuan": 11, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "jinbi", + "n" : 100000 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_9" + }, + }, + "day2" : + { + "1": { + "pval" : 1, + "stype" : "128", + "cond": [], + "tiaozhuan": 4, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_1" + }, + "2": { + "pval" : 300, + "stype" : "116", + "cond": [], + "tiaozhuan": 5, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 3 + }, + { + "a" : "item", + "t" : "600", + "n" : 5 + }, + { + "a" : "item", + "t" : "1", + "n" : 500000 + } + ], + "des" : "intr_cszl_des_2" + }, + "3": { + "pval" : 1000, + "stype" : "116", + "cond": [], + "tiaozhuan": 2, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 300 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 5 + }, + { + "a" : "item", + "t" : "600", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 1000000 + } + ], + "des" : "intr_cszl_des_3" + }, + "4": { + "pval" : 2000, + "stype" : "116", + "cond": [], + "tiaozhuan": 1, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 150 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "6", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_4" + }, + "5": { + "pval" : 3, + "stype" : "142", + "cond": [2], + "tiaozhuan": 6, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "2", + "n" : 500 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_5" + }, + "6": { + "pval" : 3, + "stype" : "122", + "cond": [], + "tiaozhuan": 7, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "12", + "n" : 400 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_6" + }, + "7": { + "pval" : 1, + "stype" : "155", + "cond": [], + "tiaozhuan": 8, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_7" + }, + "8": { + "pval" : 1, + "stype" : "127", + "cond": [], + "tiaozhuan": 10, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "21", + "n" : 50 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_8" + }, + "9": { + "pval" : 1, + "stype" : "154", + "cond": [], + "tiaozhuan": 11, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "jinbi", + "n" : 100000 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_9" + }, + }, + "day3" : + { + "1": { + "pval" : 1, + "stype" : "128", + "cond": [], + "tiaozhuan": 4, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_1" + }, + "2": { + "pval" : 300, + "stype" : "116", + "cond": [], + "tiaozhuan": 5, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 3 + }, + { + "a" : "item", + "t" : "600", + "n" : 5 + }, + { + "a" : "item", + "t" : "1", + "n" : 500000 + } + ], + "des" : "intr_cszl_des_2" + }, + "3": { + "pval" : 1000, + "stype" : "116", + "cond": [], + "tiaozhuan": 2, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 300 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 5 + }, + { + "a" : "item", + "t" : "600", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 1000000 + } + ], + "des" : "intr_cszl_des_3" + }, + "4": { + "pval" : 2000, + "stype" : "116", + "cond": [], + "tiaozhuan": 1, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 150 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "6", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_4" + }, + "5": { + "pval" : 3, + "stype" : "142", + "cond": [2], + "tiaozhuan": 6, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "2", + "n" : 500 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_5" + }, + "6": { + "pval" : 3, + "stype" : "122", + "cond": [], + "tiaozhuan": 7, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "12", + "n" : 400 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_6" + }, + "7": { + "pval" : 1, + "stype" : "155", + "cond": [], + "tiaozhuan": 8, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_7" + }, + "8": { + "pval" : 1, + "stype" : "127", + "cond": [], + "tiaozhuan": 10, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "21", + "n" : 50 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_8" + }, + "9": { + "pval" : 1, + "stype" : "154", + "cond": [], + "tiaozhuan": 11, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "jinbi", + "n" : 100000 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_9" + }, + }, + "day4" : + { + "1": { + "pval" : 1, + "stype" : "128", + "cond": [], + "tiaozhuan": 4, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_1" + }, + "2": { + "pval" : 300, + "stype" : "116", + "cond": [], + "tiaozhuan": 5, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 3 + }, + { + "a" : "item", + "t" : "600", + "n" : 5 + }, + { + "a" : "item", + "t" : "1", + "n" : 500000 + } + ], + "des" : "intr_cszl_des_2" + }, + "3": { + "pval" : 1000, + "stype" : "116", + "cond": [], + "tiaozhuan": 2, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 300 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 5 + }, + { + "a" : "item", + "t" : "600", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 1000000 + } + ], + "des" : "intr_cszl_des_3" + }, + "4": { + "pval" : 2000, + "stype" : "116", + "cond": [], + "tiaozhuan": 1, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 150 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "6", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_4" + }, + "5": { + "pval" : 3, + "stype" : "142", + "cond": [2], + "tiaozhuan": 6, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "2", + "n" : 500 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_5" + }, + "6": { + "pval" : 3, + "stype" : "122", + "cond": [], + "tiaozhuan": 7, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "12", + "n" : 400 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_6" + }, + "7": { + "pval" : 1, + "stype" : "155", + "cond": [], + "tiaozhuan": 8, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_7" + }, + "8": { + "pval" : 1, + "stype" : "127", + "cond": [], + "tiaozhuan": 10, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "21", + "n" : 50 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_8" + }, + "9": { + "pval" : 1, + "stype" : "154", + "cond": [], + "tiaozhuan": 11, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "jinbi", + "n" : 100000 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_9" + }, + }, + "day5" : + { + "1": { + "pval" : 1, + "stype" : "128", + "cond": [], + "tiaozhuan": 4, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_1" + }, + "2": { + "pval" : 300, + "stype" : "116", + "cond": [], + "tiaozhuan": 5, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 3 + }, + { + "a" : "item", + "t" : "600", + "n" : 5 + }, + { + "a" : "item", + "t" : "1", + "n" : 500000 + } + ], + "des" : "intr_cszl_des_2" + }, + "3": { + "pval" : 1000, + "stype" : "116", + "cond": [], + "tiaozhuan": 2, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 300 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 5 + }, + { + "a" : "item", + "t" : "600", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 1000000 + } + ], + "des" : "intr_cszl_des_3" + }, + "4": { + "pval" : 2000, + "stype" : "116", + "cond": [], + "tiaozhuan": 1, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 150 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "6", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_4" + }, + "5": { + "pval" : 3, + "stype" : "142", + "cond": [2], + "tiaozhuan": 6, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "2", + "n" : 500 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_5" + }, + "6": { + "pval" : 3, + "stype" : "122", + "cond": [], + "tiaozhuan": 7, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "12", + "n" : 400 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_6" + }, + "7": { + "pval" : 1, + "stype" : "155", + "cond": [], + "tiaozhuan": 8, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_7" + }, + "8": { + "pval" : 1, + "stype" : "127", + "cond": [], + "tiaozhuan": 10, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "21", + "n" : 50 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_8" + }, + "9": { + "pval" : 1, + "stype" : "154", + "cond": [], + "tiaozhuan": 11, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "jinbi", + "n" : 100000 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_9" + }, + }, + "day6" : + { + "1": { + "pval" : 1, + "stype" : "128", + "cond": [], + "tiaozhuan": 4, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_1" + }, + "2": { + "pval" : 300, + "stype" : "116", + "cond": [], + "tiaozhuan": 5, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 3 + }, + { + "a" : "item", + "t" : "600", + "n" : 5 + }, + { + "a" : "item", + "t" : "1", + "n" : 500000 + } + ], + "des" : "intr_cszl_des_2" + }, + "3": { + "pval" : 1000, + "stype" : "116", + "cond": [], + "tiaozhuan": 2, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 300 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 5 + }, + { + "a" : "item", + "t" : "600", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 1000000 + } + ], + "des" : "intr_cszl_des_3" + }, + "4": { + "pval" : 2000, + "stype" : "116", + "cond": [], + "tiaozhuan": 1, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 150 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "6", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_4" + }, + "5": { + "pval" : 3, + "stype" : "142", + "cond": [2], + "tiaozhuan": 6, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "2", + "n" : 500 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_5" + }, + "6": { + "pval" : 3, + "stype" : "122", + "cond": [], + "tiaozhuan": 7, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "12", + "n" : 400 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_6" + }, + "7": { + "pval" : 1, + "stype" : "155", + "cond": [], + "tiaozhuan": 8, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_7" + }, + "8": { + "pval" : 1, + "stype" : "127", + "cond": [], + "tiaozhuan": 10, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "21", + "n" : 50 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_8" + }, + "9": { + "pval" : 1, + "stype" : "154", + "cond": [], + "tiaozhuan": 11, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "jinbi", + "n" : 100000 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_9" + }, + }, + "day7" : + { + "1": { + "pval" : 1, + "stype" : "128", + "cond": [], + "tiaozhuan": 4, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_1" + }, + "2": { + "pval" : 300, + "stype" : "116", + "cond": [], + "tiaozhuan": 5, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 3 + }, + { + "a" : "item", + "t" : "600", + "n" : 5 + }, + { + "a" : "item", + "t" : "1", + "n" : 500000 + } + ], + "des" : "intr_cszl_des_2" + }, + "3": { + "pval" : 1000, + "stype" : "116", + "cond": [], + "tiaozhuan": 2, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 300 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 5 + }, + { + "a" : "item", + "t" : "600", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 1000000 + } + ], + "des" : "intr_cszl_des_3" + }, + "4": { + "pval" : 2000, + "stype" : "116", + "cond": [], + "tiaozhuan": 1, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 150 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "6", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_4" + }, + "5": { + "pval" : 3, + "stype" : "142", + "cond": [2], + "tiaozhuan": 6, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "2", + "n" : 500 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_5" + }, + "6": { + "pval" : 3, + "stype" : "122", + "cond": [], + "tiaozhuan": 7, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "12", + "n" : 400 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_6" + }, + "7": { + "pval" : 1, + "stype" : "155", + "cond": [], + "tiaozhuan": 8, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_7" + }, + "8": { + "pval" : 1, + "stype" : "127", + "cond": [], + "tiaozhuan": 10, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "21", + "n" : 50 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_8" + }, + "9": { + "pval" : 1, + "stype" : "154", + "cond": [], + "tiaozhuan": 11, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "jinbi", + "n" : 100000 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_9" + }, + } + }, + //抽卡 + "chouka": [ + //P是权重 + //gailv是显示的概率 + {"a": "item", "t":"1", "n": 10000000, "p": 10, "gailv": 10}, + {"a": "item", "t":"12", "n": 1000, "p": 10, "gailv": 10}, + {"a": "item", "t":"2", "n": 2000, "p": 10, "gailv": 10}, + {"a": "item", "t":"18", "n": 100, "p": 10, "gailv": 10}, + {"a": "item", "t":"18", "n": 200, "p": 10, "gailv": 10}, + {"a": "item", "t":"18", "n": 300, "p": 10, "gailv": 10}, + {"a": "item", "t":"18", "n": 400, "p": 10, "gailv": 10} + ], + //抽卡货币 + "huobi": {"a": "attr", "t":"huangqijiuguan", "n": 1}, + //抽卡次数奖励 + "choukajiangli": [ + {"num": 30, + "prize":[ + { + "a": "item", "t":"1", "n": 10000000 + } + ] + }, + {"num": 40, + "dlz": [ + { + "1": {"a": "attr", "t":"jinbi", "n": 100000}, + "2": {"a": "item", "t":"1", "n": 50000} + } + ] + }, + {"num": 50, + "dlz": [ + { + "1": {"a": "attr", "t":"jinbi", "n": 200000}, + "2": {"a": "item", "t":"1", "n": 40000} + } + ] + }, + {"num": 60, + "prize":[ + { + "a": "item", "t":"1", "n": 10000000 + } + ] + }, + {"num": 70, + "dlz": [ + { + "1": {"a": "attr", "t":"jinbi", "n": 130000}, + "2": {"a": "item", "t":"1", "n": 60000} + } + ] + }, + ], + //抽卡保底 + "baodi": + {"num": 20, + "prize":[ + { + "a": "item", "t":"1", "n": 123456 + } + ] + }, + //黄旗礼包 + "gift": [ + { + "id": 1, + "free": true, + "payId": "", + "buynum": 1, + "prize": [{"a": "attr", "t":"rmbmoney", "n": 5}] + }, + { + "id": 2, + "free": false, + "payId": "hqjg_libao_1", + "buynum": 2, + "prize": [{"a": "attr", "t":"rmbmoney", "n": 10},{"a": "item", "t":"1", "n": 100}] + }, + { + "id": 3, + "free": false, + "payId": "hqjg_libao_2", + "buynum": 3, + "prize": [{"a": "attr", "t":"rmbmoney", "n": 50},{"a": "item", "t":"1", "n": 30}] + }, + { + "id": 4, + "free": false, + "payId": "hqjg_libao_3", + "buynum": 5, + "prize": [{"a": "attr", "t":"rmbmoney", "n": 1000},{"a": "item", "t":"2", "n": 100}] + }, + { + "id": 5, + "free": false, + "payId": "hqjg_libao_4", + "buynum": 10, + "prize": [{"a": "attr", "t":"rmbmoney", "n": 10000},{"a": "item", "t":"1", "n": 50}] + }, + ], + //兑换商店 + "duihuan": [ + {id:1, need: [{a: 'attr', t: 'huangqiduihuan', n: 1000}], prize: [{a: 'item', t: '610', n: 1},{a: 'item', t: '2', n: 500},{a: 'item', t: '1', n: 1000}], buyNum: 2 }, + {id:2, need: [{a: 'attr', t: 'huangqiduihuan', n: 2000}], prize: [{a: 'item', t: '610', n: 2},{a: 'item', t: '2', n: 600},{a: 'item', t: '1', n: 550}], buyNum: 1 }, + {id:3, need: [{a: 'attr', t: 'huangqiduihuan', n: 3000}], prize: [{a: 'item', t: '610', n: 3},{a: 'item', t: '2', n: 700},{a: 'item', t: '1', n: 230}], buyNum: 1 }, + {id:4, need: [{a: 'attr', t: 'huangqiduihuan', n: 4000}], prize: [{a: 'item', t: '610', n: 4},{a: 'item', t: '2', n: 800},{a: 'item', t: '1', n: 690}], buyNum: 3 }, + {id:5, need: [{a: 'attr', t: 'huangqiduihuan', n: 5000}], prize: [{a: 'item', t: '610', n: 5},{a: 'item', t: '2', n: 900},{a: 'item', t: '1', n: 3300}], buyNum: 5 }, + {id:6, need: [{a: 'attr', t: 'huangqiduihuan', n: 6000}], prize: [{a: 'item', t: '610', n: 6},{a: 'item', t: '2', n: 1000},{a: 'item', t: '1', n: 130}], buyNum: 6 } + ], + //boss表的ID + "bossId": 17001, + //boss挑战等级奖励 + "bossLvReward": [ + {lv:1, "need": 10000, prize: [{a: 'item', t: '610', n: 1},{a: 'item', t: '2', n: 500},{a: 'item', t: '1', n: 1000}]}, + {lv:2, "need": 20000, prize: [{a: 'item', t: '610', n: 2},{a: 'item', t: '2', n: 600},{a: 'item', t: '1', n: 550}]}, + {lv:3, "need": 50000, prize: [{a: 'item', t: '610', n: 3},{a: 'item', t: '2', n: 700},{a: 'item', t: '1', n: 230}]}, + {lv:4, "need": 100000, prize: [{a: 'item', t: '610', n: 4},{a: 'item', t: '2', n: 800},{a: 'item', t: '1', n: 690}]}, + {lv:5, "need": 1000000, prize: [{a: 'item', t: '610', n: 5},{a: 'item', t: '2', n: 900},{a: 'item', t: '1', n: 3300}]}, + {lv:6, "need": 10000000, prize: [{a: 'item', t: '610', n: 6},{a: 'item', t: '2', n: 1000},{a: 'item', t: '1', n: 130}]} + ], + //boss挑战等级奖励邮件标题 + "bossLvReward_title": "email_title_hqjg_dps", + //boss挑战等级奖励邮件内容 + "bossLvReward_des": "email_content_hqjg_dps", + //boss挑战任务(每日刷新) + "bossTask": [ + {id:1, "need": 100000, prize: [{a: 'item', t: '610', n: 1},{a: 'item', t: '2', n: 100},{a: 'item', t: '1', n: 1000}]}, + {id:2, "need": 200000, prize: [{a: 'item', t: '610', n: 2},{a: 'item', t: '2', n: 200},{a: 'item', t: '1', n: 2000}]}, + {id:3, "need": 300000, prize: [{a: 'item', t: '610', n: 3},{a: 'item', t: '2', n: 300},{a: 'item', t: '1', n: 3000}]}, + {id:4, "need": 400000, prize: [{a: 'item', t: '610', n: 4},{a: 'item', t: '2', n: 400},{a: 'item', t: '1', n: 4000}]}, + {id:5, "need": 500000, prize: [{a: 'item', t: '610', n: 5},{a: 'item', t: '2', n: 500},{a: 'item', t: '1', n: 5000}]}, + {id:6, "need": 600000, prize: [{a: 'item', t: '610', n: 6},{a: 'item', t: '2', n: 600},{a: 'item', t: '1', n: 6000}]}, + {id:7, "need": 700000, prize: [{a: 'item', t: '610', n: 7},{a: 'item', t: '2', n: 700},{a: 'item', t: '1', n: 7000}]}, + {id:8, "need": 800000, prize: [{a: 'item', t: '610', n: 8},{a: 'item', t: '2', n: 800},{a: 'item', t: '1', n: 8000}]} + ], + //BOSS挑战排行奖励 + "bossRank": [ + { + id: '1', + rank:[1,1], + prize: [{'a': 'item', 't': '13', 'n': 600}, + {'a': 'item', 't': '1', 'n': 100} + ] + }, + { + id: '2', + rank:[2,2], + prize: [{'a': 'item', 't': '13', 'n': 700}, + {'a': 'item', 't': '1', 'n': 200} + ] + }, + { + id: '3', + rank:[3,3], + prize: [{'a': 'item', 't': '13', 'n': 800}, + {'a': 'item', 't': '1', 'n': 300} + ] + }, + { + id: '4', + rank:[4,10], + prize: [{'a': 'item', 't': '13', 'n': 900}, + {'a': 'item', 't': '1', 'n': 400} + ] + }, + { + id: '5', + rank:[11,30], + prize: [{'a': 'item', 't': '13', 'n': 1000}, + {'a': 'item', 't': '1', 'n': 500} + ] + }, + { + id: '6', + rank:[31,9999], + prize: [{'a': 'item', 't': '13', 'n': 50}, + {'a': 'item', 't': '1', 'n': 600} + ] + } + ], + //boss排行邮件标题 + "bossRank_title": "email_title_hqjg_rank", + //boss排行邮件内容 + "bossRank_des": "email_content_hqjg_rank" + } ] \ No newline at end of file diff --git a/src/json/pay.json b/src/json/pay.json index d8cd45d..e450174 100644 --- a/src/json/pay.json +++ b/src/json/pay.json @@ -915,6 +915,37 @@ "front": {}, "currency": "CNY" }, + "lv10": { + "id": "lv10", + "money": 0.5, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 5 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + }, + { + "a": "hero", + "t": "4012", + "n": 1 + } + ], + "firstPayPrize": [], + "name": "pay_name_lv10", + "undefined": "等级豪礼(等级10)", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, "lv15": { "id": "lv15", "money": 0.5, @@ -6673,5 +6704,205 @@ "needVip": 0, "front": {}, "currency": "CNY" + }, + "hqjg_libao_1": { + "id": "hqjg_libao_1", + "money": 0.5, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 5 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_hqjg_libao_1", + "undefined": "黄旗酒馆_1", + "time": -1, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "hqjg_libao_2": { + "id": "hqjg_libao_2", + "money": 1, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 10 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_hqjg_libao_2", + "undefined": "黄旗酒馆_2", + "time": -1, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "hqjg_libao_3": { + "id": "hqjg_libao_3", + "money": 6, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 60 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_hqjg_libao_3", + "undefined": "黄旗酒馆_3", + "time": -1, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "hqjg_libao_4": { + "id": "hqjg_libao_4", + "money": 18, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 180 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_hqjg_libao_4", + "undefined": "黄旗酒馆_4", + "time": -1, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "hqjg_libao_5": { + "id": "hqjg_libao_5", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_hqjg_libao_5", + "undefined": "黄旗酒馆_5", + "time": -1, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "hqjg_libao_6": { + "id": "hqjg_libao_6", + "money": 68, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 680 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_hqjg_libao_6", + "undefined": "黄旗酒馆_6", + "time": -1, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "hqjg_libao_7": { + "id": "hqjg_libao_7", + "money": 128, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 1280 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_hqjg_libao_7", + "undefined": "黄旗酒馆_7", + "time": -1, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "hqjg_libao_8": { + "id": "hqjg_libao_8", + "money": 198, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 1980 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_hqjg_libao_8", + "undefined": "黄旗酒馆_8", + "time": -1, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "hqjg_libao_9": { + "id": "hqjg_libao_9", + "money": 328, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 3280 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_hqjg_libao_9", + "undefined": "黄旗酒馆_9", + "time": -1, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "hqjg_libao_10": { + "id": "hqjg_libao_10", + "money": 648, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 6480 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_hqjg_libao_10", + "undefined": "黄旗酒馆_10", + "time": -1, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" } } \ No newline at end of file diff --git a/src/json/playerChatFrame.json b/src/json/playerChatFrame.json index 6646f7b..a20cc0d 100644 --- a/src/json/playerChatFrame.json +++ b/src/json/playerChatFrame.json @@ -2,12 +2,12 @@ "1": { "id": 1, "name": "playerChatFrame_name_1", + "undefined": "玩家初始默认聊天框", "img": "lt_dhk1", "cond": [ "lv", 1 ], - "undefined": "进入游戏默认获得", "intr": "playerChatFrame_des_1", "sort": 1, "buff": { @@ -19,12 +19,12 @@ "2": { "id": 2, "name": "playerChatFrame_name_2", + "undefined": "主角等级达到30级获得,解锁后防御加成+1%", "img": "lt_dhk3", "cond": [ "lv", 30 ], - "undefined": "角色等级达到30级获得", "intr": "playerChatFrame_des_2", "sort": 2, "buff": { @@ -36,12 +36,12 @@ "3": { "id": 3, "name": "playerChatFrame_name_3", + "undefined": "主角等级达到50级获得,解锁后防御加成+1%", "img": "lt_dhk4", "cond": [ "lv", 50 ], - "undefined": "角色等级达到50级获得", "intr": "playerChatFrame_des_3", "sort": 3, "buff": { @@ -53,12 +53,12 @@ "4": { "id": 4, "name": "playerChatFrame_name_4", + "undefined": "图鉴数量达到30个获得,解锁后防御加成+1%", "img": "lt_dhk5", "cond": [ "tujianLv", 7 ], - "undefined": "图鉴数量达到30个获得", "intr": "playerChatFrame_des_4", "sort": 5, "buff": { @@ -70,12 +70,12 @@ "5": { "id": 5, "name": "playerChatFrame_name_5", + "undefined": "VIP5获得,解锁后攻击加成+1%", "img": "lt_dhk7", "cond": [ "vip", 5 ], - "undefined": "VIP5获得", "intr": "playerChatFrame_des_5", "sort": 4, "buff": { @@ -87,12 +87,12 @@ "6": { "id": 6, "name": "playerChatFrame_name_6", + "undefined": "跨服势力战最高品质据点第一势力成员,解锁后攻击加成+1%、生命加成+1%(限时7天)", "img": "lt_dhk11", "cond": [ "time", 604800 ], - "undefined": "跨服势力战最高品质据点第一势力成员", "intr": "playerChatFrame_des_6", "sort": 6, "buff": { @@ -105,12 +105,12 @@ "7": { "id": 7, "name": "playerChatFrame_name_7", + "undefined": "名望等级达到七阶获得,解锁后防御加成+1%", "img": "lt_dhk13", "cond": [ "renown", 61 ], - "undefined": "名望等级达到七阶获得", "intr": "playerChatFrame_des_7", "sort": 7, "buff": { @@ -122,12 +122,12 @@ "8": { "id": 8, "name": "playerChatFrame_name_8", + "undefined": "圣诞庆典活动获得,解锁后防御加成+1%", "img": "lt_dhk14", "cond": [ "time", -1 ], - "undefined": "圣诞庆典获得", "intr": "playerChatFrame_des_8", "sort": 8, "buff": { @@ -139,12 +139,12 @@ "9": { "id": 9, "name": "playerChatFrame_name_9", + "undefined": "新年庆典活动获得,解锁后防御加成+1%", "img": "lt_dhk15", "cond": [ "time", -1 ], - "undefined": "新年庆典获得", "intr": "playerChatFrame_des_9", "sort": 9, "buff": { diff --git a/src/json/playerModel.json b/src/json/playerModel.json index 634d211..2ed78b7 100644 --- a/src/json/playerModel.json +++ b/src/json/playerModel.json @@ -3,6 +3,7 @@ "id": 1, "type": 1, "name": "playerModel_name_1", + "undefined": "主角初始默认的男形象", "head": 10001, "img": "zhu_10001", "cond": [ @@ -20,6 +21,7 @@ "id": 2, "type": 1, "name": "playerModel_name_2", + "undefined": "主角初始默认的女形象", "head": 10002, "img": "zhu_10002", "cond": [ @@ -37,6 +39,7 @@ "id": 3, "type": 1, "name": "playerModel_name_3", + "undefined": "圣诞庆典活动获得,解锁后防御加成+2%", "head": 100011, "img": 100011, "cond": [ @@ -56,6 +59,7 @@ "id": 4, "type": 1, "name": "playerModel_name_4", + "undefined": "圣诞庆典活动获得,解锁后攻击加成+2%", "head": 100021, "img": 100021, "cond": [ diff --git a/src/json/renown_level.json b/src/json/renown_level.json index 1857a5b..feb1c00 100644 --- a/src/json/renown_level.json +++ b/src/json/renown_level.json @@ -3,360 +3,600 @@ "id": 1, "renownlevel": 1, "maxlevel": 250, - "cost": 5, - "atk": 2, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 2 + } + ], + "atk": 1.2, "def": 1, - "hp": 8 + "hp": 4 }, "2": { "id": 2, "renownlevel": 2, - "maxlevel": 500, - "cost": 6, - "atk": 2, + "maxlevel": 750, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 2 + } + ], + "atk": 1.2, "def": 1, - "hp": 9 + "hp": 4 }, "3": { "id": 3, "renownlevel": 3, - "maxlevel": 750, - "cost": 7, - "atk": 2, + "maxlevel": 1500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 2 + } + ], + "atk": 1.2, "def": 1, - "hp": 10 + "hp": 4 }, "4": { "id": 4, "renownlevel": 4, - "maxlevel": 1000, - "cost": 9, - "atk": 4, - "def": 2, - "hp": 11 + "maxlevel": 2500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 2 + } + ], + "atk": 1.2, + "def": 1, + "hp": 4 }, "5": { "id": 5, "renownlevel": 5, - "maxlevel": 1250, - "cost": 11, - "atk": 4, - "def": 2, - "hp": 12 + "maxlevel": 3750, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 2 + } + ], + "atk": 1.2, + "def": 1, + "hp": 4 }, "6": { "id": 6, "renownlevel": 6, - "maxlevel": 1500, - "cost": 13, - "atk": 4, - "def": 2, - "hp": 13 + "maxlevel": 5250, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 2 + } + ], + "atk": 1.2, + "def": 1, + "hp": 4 }, "7": { "id": 7, "renownlevel": 7, - "maxlevel": 1750, - "cost": 15, - "atk": 6, - "def": 3, - "hp": 14 + "maxlevel": 7000, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 2 + } + ], + "atk": 1.2, + "def": 1, + "hp": 4 }, "8": { "id": 8, "renownlevel": 8, - "maxlevel": 2000, - "cost": 17, - "atk": 6, - "def": 3, - "hp": 15 + "maxlevel": 9000, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 2 + } + ], + "atk": 1.2, + "def": 1, + "hp": 4 }, "9": { "id": 9, "renownlevel": 9, - "maxlevel": 2500, - "cost": 19, - "atk": 6, - "def": 3, - "hp": 16 + "maxlevel": 11500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 2 + } + ], + "atk": 1.2, + "def": 1, + "hp": 4 }, "10": { "id": 10, "renownlevel": 10, - "maxlevel": 3000, - "cost": 21, - "atk": 8, - "def": 4, - "hp": 17 + "maxlevel": 14500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 2 + } + ], + "atk": 1.2, + "def": 1, + "hp": 4 }, "11": { "id": 11, "renownlevel": 11, - "maxlevel": 3500, - "cost": 23, - "atk": 8, - "def": 4, - "hp": 18 + "maxlevel": 18000, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 2 + } + ], + "atk": 1.2, + "def": 1, + "hp": 5 }, "12": { "id": 12, "renownlevel": 12, - "maxlevel": 4000, - "cost": 25, - "atk": 8, - "def": 4, - "hp": 19 + "maxlevel": 22000, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 2 + } + ], + "atk": 1.2, + "def": 1, + "hp": 5 }, "13": { "id": 13, "renownlevel": 13, - "maxlevel": 4500, - "cost": 27, - "atk": 10, - "def": 5, - "hp": 20 + "maxlevel": 26500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 2 + } + ], + "atk": 1.2, + "def": 1, + "hp": 5 }, "14": { "id": 14, "renownlevel": 14, - "maxlevel": 5000, - "cost": 30, - "atk": 10, - "def": 5, - "hp": 21 + "maxlevel": 31500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 2 + } + ], + "atk": 1.2, + "def": 1, + "hp": 5 }, "15": { "id": 15, "renownlevel": 15, - "maxlevel": 5000, - "cost": 33, - "atk": 10, - "def": 5, - "hp": 21 + "maxlevel": 36500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 2 + } + ], + "atk": 1.2, + "def": 1, + "hp": 5 }, "16": { "id": 16, "renownlevel": 16, - "maxlevel": 5000, - "cost": 36, - "atk": 12, - "def": 6, - "hp": 22 + "maxlevel": 41500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 5 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 6 }, "17": { "id": 17, "renownlevel": 17, - "maxlevel": 5000, - "cost": 39, - "atk": 12, - "def": 6, - "hp": 22 + "maxlevel": 46500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 9 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 6 }, "18": { "id": 18, "renownlevel": 18, - "maxlevel": 5000, - "cost": 42, - "atk": 12, - "def": 6, - "hp": 22 + "maxlevel": 51500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 13 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 6 }, "19": { "id": 19, "renownlevel": 19, - "maxlevel": 5000, - "cost": 45, - "atk": 14, - "def": 7, - "hp": 23 + "maxlevel": 56500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 17 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 6 }, "20": { "id": 20, "renownlevel": 20, - "maxlevel": 5000, - "cost": 48, - "atk": 14, - "def": 7, - "hp": 23 + "maxlevel": 61500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 21 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 6 }, "21": { "id": 21, "renownlevel": 21, - "maxlevel": 5000, - "cost": 51, - "atk": 14, - "def": 7, - "hp": 23 + "maxlevel": 66500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 23 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 7 }, "22": { "id": 22, "renownlevel": 22, - "maxlevel": 5000, - "cost": 54, - "atk": 14, - "def": 7, - "hp": 23 + "maxlevel": 71500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 25 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 7 }, "23": { "id": 23, "renownlevel": 23, - "maxlevel": 5000, - "cost": 57, - "atk": 16, - "def": 8, - "hp": 24 + "maxlevel": 76500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 27 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 7 }, "24": { "id": 24, "renownlevel": 24, - "maxlevel": 5000, - "cost": 60, - "atk": 16, - "def": 8, - "hp": 24 + "maxlevel": 81500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 29 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 7 }, "25": { "id": 25, "renownlevel": 25, - "maxlevel": 5000, - "cost": 63, - "atk": 16, - "def": 8, - "hp": 24 + "maxlevel": 86500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 30 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 7 }, "26": { "id": 26, "renownlevel": 26, - "maxlevel": 5000, - "cost": 66, - "atk": 16, - "def": 8, - "hp": 24 + "maxlevel": 91500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 32 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 8 }, "27": { "id": 27, "renownlevel": 27, - "maxlevel": 5000, - "cost": 69, - "atk": 16, - "def": 8, - "hp": 24 + "maxlevel": 96500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 34 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 8 }, "28": { "id": 28, "renownlevel": 28, - "maxlevel": 5000, - "cost": 72, - "atk": 18, - "def": 9, - "hp": 25 + "maxlevel": 101500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 36 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 8 }, "29": { "id": 29, "renownlevel": 29, - "maxlevel": 5000, - "cost": 75, - "atk": 18, - "def": 9, - "hp": 25 + "maxlevel": 106500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 38 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 8 }, "30": { "id": 30, "renownlevel": 30, - "maxlevel": 5000, - "cost": 78, - "atk": 18, - "def": 9, - "hp": 25 + "maxlevel": 111500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 40 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 8 }, "31": { "id": 31, "renownlevel": 31, - "maxlevel": 5000, - "cost": 81, - "atk": 18, - "def": 9, - "hp": 25 + "maxlevel": 116500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 42 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 8 }, "32": { "id": 32, "renownlevel": 32, - "maxlevel": 5000, - "cost": 84, - "atk": 18, - "def": 9, - "hp": 25 + "maxlevel": 121500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 44 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 8 }, "33": { "id": 33, "renownlevel": 33, - "maxlevel": 5000, - "cost": 87, - "atk": 18, - "def": 10, - "hp": 25 + "maxlevel": 126500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 46 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 8 }, "34": { "id": 34, "renownlevel": 34, - "maxlevel": 5000, - "cost": 90, - "atk": 18, - "def": 10, - "hp": 25 + "maxlevel": 131500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 48 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 8 }, "35": { "id": 35, "renownlevel": 35, - "maxlevel": 5000, - "cost": 93, - "atk": 18, - "def": 10, - "hp": 25 + "maxlevel": 136500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 50 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 8 }, "36": { "id": 36, "renownlevel": 36, - "maxlevel": 5000, - "cost": 97, - "atk": 18, - "def": 10, - "hp": 25 + "maxlevel": 141500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 52 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 8 }, "37": { "id": 37, "renownlevel": 37, - "maxlevel": 5000, - "cost": 101, - "atk": 18, - "def": 10, - "hp": 25 + "maxlevel": 146500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 54 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 8 }, "38": { "id": 38, "renownlevel": 38, - "maxlevel": 5000, - "cost": 105, - "atk": 18, - "def": 10, - "hp": 25 + "maxlevel": 151500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 56 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 8 }, "39": { "id": 39, "renownlevel": 39, - "maxlevel": 5000, - "cost": 109, - "atk": 18, - "def": 10, - "hp": 25 + "maxlevel": 156500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 58 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 8 }, "40": { "id": 40, "renownlevel": 40, - "maxlevel": 5000, - "cost": 113, - "atk": 18, - "def": 10, - "hp": 25 + "maxlevel": 161500, + "cost": [ + { + "a": "attr", + "t": "weiwang", + "n": 60 + } + ], + "atk": 1.4, + "def": 1.2, + "hp": 8 } } \ No newline at end of file diff --git a/src/json/tanxian.json b/src/json/tanxian.json index ee794db..d9ed972 100644 --- a/src/json/tanxian.json +++ b/src/json/tanxian.json @@ -16,6 +16,11 @@ "a": "attr", "t": "nexp", "n": 2.05 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -63,6 +68,11 @@ "a": "attr", "t": "nexp", "n": 3.01 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -110,6 +120,11 @@ "a": "attr", "t": "nexp", "n": 3.97 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -155,6 +170,11 @@ "a": "attr", "t": "nexp", "n": 4.93 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -200,6 +220,11 @@ "a": "attr", "t": "nexp", "n": 5.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -245,6 +270,11 @@ "a": "attr", "t": "nexp", "n": 6.85 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -290,6 +320,11 @@ "a": "attr", "t": "nexp", "n": 7.81 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -335,6 +370,11 @@ "a": "attr", "t": "nexp", "n": 8.77 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -380,6 +420,11 @@ "a": "attr", "t": "nexp", "n": 9.73 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -425,6 +470,11 @@ "a": "attr", "t": "nexp", "n": 10.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -470,6 +520,11 @@ "a": "attr", "t": "nexp", "n": 11.65 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -517,6 +572,11 @@ "a": "attr", "t": "nexp", "n": 12.61 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -564,6 +624,11 @@ "a": "attr", "t": "nexp", "n": 14.07 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -611,6 +676,11 @@ "a": "attr", "t": "nexp", "n": 15.53 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -659,6 +729,11 @@ "a": "attr", "t": "nexp", "n": 16.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -707,6 +782,11 @@ "a": "attr", "t": "nexp", "n": 18.45 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -755,6 +835,11 @@ "a": "attr", "t": "nexp", "n": 19.91 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -803,6 +888,11 @@ "a": "attr", "t": "nexp", "n": 21.37 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -851,6 +941,11 @@ "a": "attr", "t": "nexp", "n": 22.83 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -899,6 +994,11 @@ "a": "attr", "t": "nexp", "n": 24.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -947,6 +1047,11 @@ "a": "attr", "t": "nexp", "n": 26.75 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -996,6 +1101,11 @@ "a": "attr", "t": "nexp", "n": 29.21 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1045,6 +1155,11 @@ "a": "attr", "t": "nexp", "n": 31.67 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1094,6 +1209,11 @@ "a": "attr", "t": "nexp", "n": 34.13 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1143,6 +1263,11 @@ "a": "attr", "t": "nexp", "n": 36.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1192,6 +1317,11 @@ "a": "attr", "t": "nexp", "n": 39.05 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1241,6 +1371,11 @@ "a": "attr", "t": "nexp", "n": 41.51 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1290,6 +1425,11 @@ "a": "attr", "t": "nexp", "n": 43.97 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1339,6 +1479,11 @@ "a": "attr", "t": "nexp", "n": 46.43 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1388,6 +1533,11 @@ "a": "attr", "t": "nexp", "n": 48.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1437,6 +1587,11 @@ "a": "attr", "t": "nexp", "n": 51.35 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1486,6 +1641,11 @@ "a": "attr", "t": "nexp", "n": 53.81 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1535,6 +1695,11 @@ "a": "attr", "t": "nexp", "n": 56.27 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1584,6 +1749,11 @@ "a": "attr", "t": "nexp", "n": 58.73 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1633,6 +1803,11 @@ "a": "attr", "t": "nexp", "n": 60.91 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1682,6 +1857,11 @@ "a": "attr", "t": "nexp", "n": 63.23 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1731,6 +1911,11 @@ "a": "attr", "t": "nexp", "n": 63.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1780,6 +1965,11 @@ "a": "attr", "t": "nexp", "n": 64.67 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1829,6 +2019,11 @@ "a": "attr", "t": "nexp", "n": 65.53 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1878,6 +2073,11 @@ "a": "attr", "t": "nexp", "n": 67.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1927,6 +2127,11 @@ "a": "attr", "t": "nexp", "n": 70.16 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -1976,6 +2181,11 @@ "a": "attr", "t": "nexp", "n": 72.47 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2025,6 +2235,11 @@ "a": "attr", "t": "nexp", "n": 74.77 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2074,6 +2289,11 @@ "a": "attr", "t": "nexp", "n": 77.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2123,6 +2343,11 @@ "a": "attr", "t": "nexp", "n": 79.4 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2172,6 +2397,11 @@ "a": "attr", "t": "nexp", "n": 81.71 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2221,6 +2451,11 @@ "a": "attr", "t": "nexp", "n": 84.03 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2270,6 +2505,11 @@ "a": "attr", "t": "nexp", "n": 86.33 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2319,6 +2559,11 @@ "a": "attr", "t": "nexp", "n": 88.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2368,6 +2613,11 @@ "a": "attr", "t": "nexp", "n": 90.96 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2417,6 +2667,11 @@ "a": "attr", "t": "nexp", "n": 93.27 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2466,6 +2721,11 @@ "a": "attr", "t": "nexp", "n": 95.57 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2515,6 +2775,11 @@ "a": "attr", "t": "nexp", "n": 97.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2564,6 +2829,11 @@ "a": "attr", "t": "nexp", "n": 100.2 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2613,6 +2883,11 @@ "a": "attr", "t": "nexp", "n": 102.51 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2662,6 +2937,11 @@ "a": "attr", "t": "nexp", "n": 104.83 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2711,6 +2991,11 @@ "a": "attr", "t": "nexp", "n": 107.13 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2760,6 +3045,11 @@ "a": "attr", "t": "nexp", "n": 109.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2809,6 +3099,11 @@ "a": "attr", "t": "nexp", "n": 111.76 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2858,6 +3153,11 @@ "a": "attr", "t": "nexp", "n": 113.77 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2907,6 +3207,11 @@ "a": "attr", "t": "nexp", "n": 115.23 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -2956,6 +3261,11 @@ "a": "attr", "t": "nexp", "n": 116.67 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3005,6 +3315,11 @@ "a": "attr", "t": "nexp", "n": 118.11 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3054,6 +3369,11 @@ "a": "attr", "t": "nexp", "n": 119.56 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3103,6 +3423,11 @@ "a": "attr", "t": "nexp", "n": 121 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3152,6 +3477,11 @@ "a": "attr", "t": "nexp", "n": 122.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3201,6 +3531,11 @@ "a": "attr", "t": "nexp", "n": 123.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3250,6 +3585,11 @@ "a": "attr", "t": "nexp", "n": 125.33 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3299,6 +3639,11 @@ "a": "attr", "t": "nexp", "n": 126.77 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3348,6 +3693,11 @@ "a": "attr", "t": "nexp", "n": 128.23 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3397,6 +3747,11 @@ "a": "attr", "t": "nexp", "n": 129.67 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3446,6 +3801,11 @@ "a": "attr", "t": "nexp", "n": 131.11 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3495,6 +3855,11 @@ "a": "attr", "t": "nexp", "n": 132.56 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3544,6 +3909,11 @@ "a": "attr", "t": "nexp", "n": 134 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3593,6 +3963,11 @@ "a": "attr", "t": "nexp", "n": 135.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3642,6 +4017,11 @@ "a": "attr", "t": "nexp", "n": 136.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3691,6 +4071,11 @@ "a": "attr", "t": "nexp", "n": 138.33 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3740,6 +4125,11 @@ "a": "attr", "t": "nexp", "n": 139.77 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3789,6 +4179,11 @@ "a": "attr", "t": "nexp", "n": 141.22 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3838,6 +4233,11 @@ "a": "attr", "t": "nexp", "n": 142.66 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3887,6 +4287,11 @@ "a": "attr", "t": "nexp", "n": 144.1 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3936,6 +4341,11 @@ "a": "attr", "t": "nexp", "n": 145.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -3985,6 +4395,11 @@ "a": "attr", "t": "nexp", "n": 146.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4034,6 +4449,11 @@ "a": "attr", "t": "nexp", "n": 148.43 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4083,6 +4503,11 @@ "a": "attr", "t": "nexp", "n": 149.87 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4132,6 +4557,11 @@ "a": "attr", "t": "nexp", "n": 151.32 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4181,6 +4611,11 @@ "a": "attr", "t": "nexp", "n": 152.76 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4230,6 +4665,11 @@ "a": "attr", "t": "nexp", "n": 154.2 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4279,6 +4719,11 @@ "a": "attr", "t": "nexp", "n": 155.65 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4328,6 +4773,11 @@ "a": "attr", "t": "nexp", "n": 157.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4377,6 +4827,11 @@ "a": "attr", "t": "nexp", "n": 158.53 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4426,6 +4881,11 @@ "a": "attr", "t": "nexp", "n": 159.97 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4475,6 +4935,11 @@ "a": "attr", "t": "nexp", "n": 161.42 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4524,6 +4989,11 @@ "a": "attr", "t": "nexp", "n": 162.86 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4573,6 +5043,11 @@ "a": "attr", "t": "nexp", "n": 164.3 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4622,6 +5097,11 @@ "a": "attr", "t": "nexp", "n": 165.75 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4671,6 +5151,11 @@ "a": "attr", "t": "nexp", "n": 167.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4720,6 +5205,11 @@ "a": "attr", "t": "nexp", "n": 168.63 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4769,6 +5259,11 @@ "a": "attr", "t": "nexp", "n": 170.08 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4818,6 +5313,11 @@ "a": "attr", "t": "nexp", "n": 171.52 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4867,6 +5367,11 @@ "a": "attr", "t": "nexp", "n": 172.96 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4916,6 +5421,11 @@ "a": "attr", "t": "nexp", "n": 174.4 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -4965,6 +5475,11 @@ "a": "attr", "t": "nexp", "n": 175.85 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -5014,6 +5529,11 @@ "a": "attr", "t": "nexp", "n": 177.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -5063,6 +5583,11 @@ "a": "attr", "t": "nexp", "n": 177.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -5112,6 +5637,11 @@ "a": "attr", "t": "nexp", "n": 178.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -5161,6 +5691,11 @@ "a": "attr", "t": "nexp", "n": 179.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -5210,6 +5745,11 @@ "a": "attr", "t": "nexp", "n": 179.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -5259,6 +5799,11 @@ "a": "attr", "t": "nexp", "n": 180.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -5308,6 +5853,11 @@ "a": "attr", "t": "nexp", "n": 181.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -5357,6 +5907,11 @@ "a": "attr", "t": "nexp", "n": 181.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -5406,6 +5961,11 @@ "a": "attr", "t": "nexp", "n": 182.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -5455,6 +6015,11 @@ "a": "attr", "t": "nexp", "n": 183.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -5504,6 +6069,11 @@ "a": "attr", "t": "nexp", "n": 183.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -5553,6 +6123,11 @@ "a": "attr", "t": "nexp", "n": 184.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -5602,6 +6177,11 @@ "a": "attr", "t": "nexp", "n": 185.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -5651,6 +6231,11 @@ "a": "attr", "t": "nexp", "n": 185.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -5700,6 +6285,11 @@ "a": "attr", "t": "nexp", "n": 186.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -5749,6 +6339,11 @@ "a": "attr", "t": "nexp", "n": 187.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -5798,6 +6393,11 @@ "a": "attr", "t": "nexp", "n": 187.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.1 } ], "dlz": [], @@ -5847,6 +6447,11 @@ "a": "attr", "t": "nexp", "n": 188.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.12 } ], "dlz": [], @@ -5896,6 +6501,11 @@ "a": "attr", "t": "nexp", "n": 188.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.12 } ], "dlz": [], @@ -5945,6 +6555,11 @@ "a": "attr", "t": "nexp", "n": 189.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.12 } ], "dlz": [], @@ -5994,6 +6609,11 @@ "a": "attr", "t": "nexp", "n": 190.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.12 } ], "dlz": [], @@ -6043,6 +6663,11 @@ "a": "attr", "t": "nexp", "n": 190.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.12 } ], "dlz": [], @@ -6092,6 +6717,11 @@ "a": "attr", "t": "nexp", "n": 191.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.12 } ], "dlz": [], @@ -6141,6 +6771,11 @@ "a": "attr", "t": "nexp", "n": 192.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.12 } ], "dlz": [], @@ -6190,6 +6825,11 @@ "a": "attr", "t": "nexp", "n": 192.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.12 } ], "dlz": [], @@ -6239,6 +6879,11 @@ "a": "attr", "t": "nexp", "n": 193.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.12 } ], "dlz": [], @@ -6288,6 +6933,11 @@ "a": "attr", "t": "nexp", "n": 194.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.12 } ], "dlz": [], @@ -6337,6 +6987,11 @@ "a": "attr", "t": "nexp", "n": 194.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.14 } ], "dlz": [], @@ -6386,6 +7041,11 @@ "a": "attr", "t": "nexp", "n": 195.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.14 } ], "dlz": [], @@ -6435,6 +7095,11 @@ "a": "attr", "t": "nexp", "n": 196.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.14 } ], "dlz": [], @@ -6484,6 +7149,11 @@ "a": "attr", "t": "nexp", "n": 196.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.14 } ], "dlz": [], @@ -6533,6 +7203,11 @@ "a": "attr", "t": "nexp", "n": 197.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.14 } ], "dlz": [], @@ -6582,6 +7257,11 @@ "a": "attr", "t": "nexp", "n": 198.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.14 } ], "dlz": [], @@ -6631,6 +7311,11 @@ "a": "attr", "t": "nexp", "n": 198.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.14 } ], "dlz": [], @@ -6680,6 +7365,11 @@ "a": "attr", "t": "nexp", "n": 199.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.14 } ], "dlz": [], @@ -6729,6 +7419,11 @@ "a": "attr", "t": "nexp", "n": 200.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.14 } ], "dlz": [], @@ -6778,6 +7473,11 @@ "a": "attr", "t": "nexp", "n": 200.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.16 } ], "dlz": [], @@ -6827,6 +7527,11 @@ "a": "attr", "t": "nexp", "n": 201.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.16 } ], "dlz": [], @@ -6876,6 +7581,11 @@ "a": "attr", "t": "nexp", "n": 201.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.16 } ], "dlz": [], @@ -6925,6 +7635,11 @@ "a": "attr", "t": "nexp", "n": 202.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.16 } ], "dlz": [], @@ -6974,6 +7689,11 @@ "a": "attr", "t": "nexp", "n": 203.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.16 } ], "dlz": [], @@ -7023,6 +7743,11 @@ "a": "attr", "t": "nexp", "n": 203.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.16 } ], "dlz": [], @@ -7072,6 +7797,11 @@ "a": "attr", "t": "nexp", "n": 204.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.16 } ], "dlz": [], @@ -7121,6 +7851,11 @@ "a": "attr", "t": "nexp", "n": 205.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.16 } ], "dlz": [], @@ -7170,6 +7905,11 @@ "a": "attr", "t": "nexp", "n": 205.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.18 } ], "dlz": [], @@ -7219,6 +7959,11 @@ "a": "attr", "t": "nexp", "n": 206.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.18 } ], "dlz": [], @@ -7268,6 +8013,11 @@ "a": "attr", "t": "nexp", "n": 207.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.18 } ], "dlz": [], @@ -7317,6 +8067,11 @@ "a": "attr", "t": "nexp", "n": 207.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.18 } ], "dlz": [], @@ -7366,6 +8121,11 @@ "a": "attr", "t": "nexp", "n": 208.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.18 } ], "dlz": [], @@ -7415,6 +8175,11 @@ "a": "attr", "t": "nexp", "n": 209.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.18 } ], "dlz": [], @@ -7464,6 +8229,11 @@ "a": "attr", "t": "nexp", "n": 209.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.18 } ], "dlz": [], @@ -7513,6 +8283,11 @@ "a": "attr", "t": "nexp", "n": 210.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.2 } ], "dlz": [], @@ -7562,6 +8337,11 @@ "a": "attr", "t": "nexp", "n": 211.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.2 } ], "dlz": [], @@ -7611,6 +8391,11 @@ "a": "attr", "t": "nexp", "n": 211.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.2 } ], "dlz": [], @@ -7660,6 +8445,11 @@ "a": "attr", "t": "nexp", "n": 212.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.2 } ], "dlz": [], @@ -7709,6 +8499,11 @@ "a": "attr", "t": "nexp", "n": 213.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.2 } ], "dlz": [], @@ -7758,6 +8553,11 @@ "a": "attr", "t": "nexp", "n": 213.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.23 } ], "dlz": [], @@ -7807,6 +8607,11 @@ "a": "attr", "t": "nexp", "n": 214.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.23 } ], "dlz": [], @@ -7856,6 +8661,11 @@ "a": "attr", "t": "nexp", "n": 214.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.23 } ], "dlz": [], @@ -7905,6 +8715,11 @@ "a": "attr", "t": "nexp", "n": 215.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.23 } ], "dlz": [], @@ -7954,6 +8769,11 @@ "a": "attr", "t": "nexp", "n": 216.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.23 } ], "dlz": [], @@ -8003,6 +8823,11 @@ "a": "attr", "t": "nexp", "n": 216.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.23 } ], "dlz": [], @@ -8052,6 +8877,11 @@ "a": "attr", "t": "nexp", "n": 217.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.23 } ], "dlz": [], @@ -8101,6 +8931,11 @@ "a": "attr", "t": "nexp", "n": 218.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.25 } ], "dlz": [], @@ -8150,6 +8985,11 @@ "a": "attr", "t": "nexp", "n": 218.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.25 } ], "dlz": [], @@ -8199,6 +9039,11 @@ "a": "attr", "t": "nexp", "n": 219.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.25 } ], "dlz": [], @@ -8248,6 +9093,11 @@ "a": "attr", "t": "nexp", "n": 220.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.25 } ], "dlz": [], @@ -8297,6 +9147,11 @@ "a": "attr", "t": "nexp", "n": 220.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.25 } ], "dlz": [], @@ -8346,6 +9201,11 @@ "a": "attr", "t": "nexp", "n": 221.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.25 } ], "dlz": [], @@ -8395,6 +9255,11 @@ "a": "attr", "t": "nexp", "n": 222.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.25 } ], "dlz": [], @@ -8444,6 +9309,11 @@ "a": "attr", "t": "nexp", "n": 222.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.27 } ], "dlz": [], @@ -8493,6 +9363,11 @@ "a": "attr", "t": "nexp", "n": 223.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.27 } ], "dlz": [], @@ -8542,6 +9417,11 @@ "a": "attr", "t": "nexp", "n": 224.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.27 } ], "dlz": [], @@ -8591,6 +9471,11 @@ "a": "attr", "t": "nexp", "n": 224.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.27 } ], "dlz": [], @@ -8640,6 +9525,11 @@ "a": "attr", "t": "nexp", "n": 225.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.27 } ], "dlz": [], @@ -8689,6 +9579,11 @@ "a": "attr", "t": "nexp", "n": 226.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.27 } ], "dlz": [], @@ -8738,6 +9633,11 @@ "a": "attr", "t": "nexp", "n": 226.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.3 } ], "dlz": [], @@ -8787,6 +9687,11 @@ "a": "attr", "t": "nexp", "n": 227.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.3 } ], "dlz": [], @@ -8836,6 +9741,11 @@ "a": "attr", "t": "nexp", "n": 227.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.3 } ], "dlz": [], @@ -8885,6 +9795,11 @@ "a": "attr", "t": "nexp", "n": 228.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.3 } ], "dlz": [], @@ -8934,6 +9849,11 @@ "a": "attr", "t": "nexp", "n": 229.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.3 } ], "dlz": [], @@ -8983,6 +9903,11 @@ "a": "attr", "t": "nexp", "n": 229.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.3 } ], "dlz": [], @@ -9032,6 +9957,11 @@ "a": "attr", "t": "nexp", "n": 230.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.3 } ], "dlz": [], @@ -9081,6 +10011,11 @@ "a": "attr", "t": "nexp", "n": 231.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.32 } ], "dlz": [], @@ -9130,6 +10065,11 @@ "a": "attr", "t": "nexp", "n": 231.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.32 } ], "dlz": [], @@ -9179,6 +10119,11 @@ "a": "attr", "t": "nexp", "n": 232.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.32 } ], "dlz": [], @@ -9228,6 +10173,11 @@ "a": "attr", "t": "nexp", "n": 233.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.32 } ], "dlz": [], @@ -9277,6 +10227,11 @@ "a": "attr", "t": "nexp", "n": 233.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.32 } ], "dlz": [], @@ -9326,6 +10281,11 @@ "a": "attr", "t": "nexp", "n": 234.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.32 } ], "dlz": [], @@ -9375,6 +10335,11 @@ "a": "attr", "t": "nexp", "n": 235.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.32 } ], "dlz": [], @@ -9424,6 +10389,11 @@ "a": "attr", "t": "nexp", "n": 235.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.34 } ], "dlz": [], @@ -9473,6 +10443,11 @@ "a": "attr", "t": "nexp", "n": 236.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.34 } ], "dlz": [], @@ -9522,6 +10497,11 @@ "a": "attr", "t": "nexp", "n": 237.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.34 } ], "dlz": [], @@ -9571,6 +10551,11 @@ "a": "attr", "t": "nexp", "n": 237.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.34 } ], "dlz": [], @@ -9620,6 +10605,11 @@ "a": "attr", "t": "nexp", "n": 238.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.34 } ], "dlz": [], @@ -9669,6 +10659,11 @@ "a": "attr", "t": "nexp", "n": 239.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.34 } ], "dlz": [], @@ -9718,6 +10713,11 @@ "a": "attr", "t": "nexp", "n": 239.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.36 } ], "dlz": [], @@ -9767,6 +10767,11 @@ "a": "attr", "t": "nexp", "n": 240.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.36 } ], "dlz": [], @@ -9816,6 +10821,11 @@ "a": "attr", "t": "nexp", "n": 240.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.36 } ], "dlz": [], @@ -9865,6 +10875,11 @@ "a": "attr", "t": "nexp", "n": 241.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.36 } ], "dlz": [], @@ -9914,6 +10929,11 @@ "a": "attr", "t": "nexp", "n": 242.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.36 } ], "dlz": [], @@ -9963,6 +10983,11 @@ "a": "attr", "t": "nexp", "n": 242.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.36 } ], "dlz": [], @@ -10012,6 +11037,11 @@ "a": "attr", "t": "nexp", "n": 243.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.36 } ], "dlz": [], @@ -10061,6 +11091,11 @@ "a": "attr", "t": "nexp", "n": 244.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.38 } ], "dlz": [], @@ -10110,6 +11145,11 @@ "a": "attr", "t": "nexp", "n": 244.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.38 } ], "dlz": [], @@ -10159,6 +11199,11 @@ "a": "attr", "t": "nexp", "n": 245.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.38 } ], "dlz": [], @@ -10208,6 +11253,11 @@ "a": "attr", "t": "nexp", "n": 246.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.38 } ], "dlz": [], @@ -10257,6 +11307,11 @@ "a": "attr", "t": "nexp", "n": 246.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.38 } ], "dlz": [], @@ -10306,6 +11361,11 @@ "a": "attr", "t": "nexp", "n": 247.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.38 } ], "dlz": [], @@ -10355,6 +11415,11 @@ "a": "attr", "t": "nexp", "n": 248.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.38 } ], "dlz": [], @@ -10404,6 +11469,11 @@ "a": "attr", "t": "nexp", "n": 248.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.4 } ], "dlz": [], @@ -10453,6 +11523,11 @@ "a": "attr", "t": "nexp", "n": 249.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.4 } ], "dlz": [], @@ -10502,6 +11577,11 @@ "a": "attr", "t": "nexp", "n": 250.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.4 } ], "dlz": [], @@ -10551,6 +11631,11 @@ "a": "attr", "t": "nexp", "n": 250.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.4 } ], "dlz": [], @@ -10600,6 +11685,11 @@ "a": "attr", "t": "nexp", "n": 251.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.4 } ], "dlz": [], @@ -10649,6 +11739,11 @@ "a": "attr", "t": "nexp", "n": 252.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.4 } ], "dlz": [], @@ -10698,6 +11793,11 @@ "a": "attr", "t": "nexp", "n": 252.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.43 } ], "dlz": [], @@ -10747,6 +11847,11 @@ "a": "attr", "t": "nexp", "n": 253.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.43 } ], "dlz": [], @@ -10796,6 +11901,11 @@ "a": "attr", "t": "nexp", "n": 253.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.43 } ], "dlz": [], @@ -10845,6 +11955,11 @@ "a": "attr", "t": "nexp", "n": 254.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.43 } ], "dlz": [], @@ -10894,6 +12009,11 @@ "a": "attr", "t": "nexp", "n": 255.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.43 } ], "dlz": [], @@ -10943,6 +12063,11 @@ "a": "attr", "t": "nexp", "n": 255.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.43 } ], "dlz": [], @@ -10992,6 +12117,11 @@ "a": "attr", "t": "nexp", "n": 256.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.43 } ], "dlz": [], @@ -11041,6 +12171,11 @@ "a": "attr", "t": "nexp", "n": 257.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.45 } ], "dlz": [], @@ -11090,6 +12225,11 @@ "a": "attr", "t": "nexp", "n": 257.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.45 } ], "dlz": [], @@ -11139,6 +12279,11 @@ "a": "attr", "t": "nexp", "n": 258.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.45 } ], "dlz": [], @@ -11188,6 +12333,11 @@ "a": "attr", "t": "nexp", "n": 259.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.45 } ], "dlz": [], @@ -11237,6 +12387,11 @@ "a": "attr", "t": "nexp", "n": 259.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.45 } ], "dlz": [], @@ -11286,6 +12441,11 @@ "a": "attr", "t": "nexp", "n": 260.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.45 } ], "dlz": [], @@ -11335,6 +12495,11 @@ "a": "attr", "t": "nexp", "n": 261.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.45 } ], "dlz": [], @@ -11384,6 +12549,11 @@ "a": "attr", "t": "nexp", "n": 261.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.47 } ], "dlz": [], @@ -11433,6 +12603,11 @@ "a": "attr", "t": "nexp", "n": 262.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.47 } ], "dlz": [], @@ -11482,6 +12657,11 @@ "a": "attr", "t": "nexp", "n": 263.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.47 } ], "dlz": [], @@ -11531,6 +12711,11 @@ "a": "attr", "t": "nexp", "n": 263.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.47 } ], "dlz": [], @@ -11580,6 +12765,11 @@ "a": "attr", "t": "nexp", "n": 264.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.47 } ], "dlz": [], @@ -11629,6 +12819,11 @@ "a": "attr", "t": "nexp", "n": 265.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.47 } ], "dlz": [], @@ -11678,6 +12873,11 @@ "a": "attr", "t": "nexp", "n": 265.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -11727,6 +12927,11 @@ "a": "attr", "t": "nexp", "n": 266.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -11776,6 +12981,11 @@ "a": "attr", "t": "nexp", "n": 266.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -11825,6 +13035,11 @@ "a": "attr", "t": "nexp", "n": 267.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -11874,6 +13089,11 @@ "a": "attr", "t": "nexp", "n": 268.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -11923,6 +13143,11 @@ "a": "attr", "t": "nexp", "n": 268.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -11972,6 +13197,11 @@ "a": "attr", "t": "nexp", "n": 269.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12021,6 +13251,11 @@ "a": "attr", "t": "nexp", "n": 270.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12070,6 +13305,11 @@ "a": "attr", "t": "nexp", "n": 270.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12119,6 +13359,11 @@ "a": "attr", "t": "nexp", "n": 271.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12168,6 +13413,11 @@ "a": "attr", "t": "nexp", "n": 272.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12217,6 +13467,11 @@ "a": "attr", "t": "nexp", "n": 272.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12266,6 +13521,11 @@ "a": "attr", "t": "nexp", "n": 273.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12315,6 +13575,11 @@ "a": "attr", "t": "nexp", "n": 274.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12364,6 +13629,11 @@ "a": "attr", "t": "nexp", "n": 274.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12413,6 +13683,11 @@ "a": "attr", "t": "nexp", "n": 275.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12462,6 +13737,11 @@ "a": "attr", "t": "nexp", "n": 276.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12511,6 +13791,11 @@ "a": "attr", "t": "nexp", "n": 276.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12560,6 +13845,11 @@ "a": "attr", "t": "nexp", "n": 277.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12609,6 +13899,11 @@ "a": "attr", "t": "nexp", "n": 278.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12658,6 +13953,11 @@ "a": "attr", "t": "nexp", "n": 278.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12707,6 +14007,11 @@ "a": "attr", "t": "nexp", "n": 279.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12756,6 +14061,11 @@ "a": "attr", "t": "nexp", "n": 279.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12805,6 +14115,11 @@ "a": "attr", "t": "nexp", "n": 280.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12854,6 +14169,11 @@ "a": "attr", "t": "nexp", "n": 281.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12903,6 +14223,11 @@ "a": "attr", "t": "nexp", "n": 281.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -12952,6 +14277,11 @@ "a": "attr", "t": "nexp", "n": 282.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13001,6 +14331,11 @@ "a": "attr", "t": "nexp", "n": 283.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13050,6 +14385,11 @@ "a": "attr", "t": "nexp", "n": 283.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13099,6 +14439,11 @@ "a": "attr", "t": "nexp", "n": 284.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13148,6 +14493,11 @@ "a": "attr", "t": "nexp", "n": 285.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13197,6 +14547,11 @@ "a": "attr", "t": "nexp", "n": 285.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13246,6 +14601,11 @@ "a": "attr", "t": "nexp", "n": 286.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13295,6 +14655,11 @@ "a": "attr", "t": "nexp", "n": 287.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13344,6 +14709,11 @@ "a": "attr", "t": "nexp", "n": 287.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13393,6 +14763,11 @@ "a": "attr", "t": "nexp", "n": 288.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13442,6 +14817,11 @@ "a": "attr", "t": "nexp", "n": 289.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13491,6 +14871,11 @@ "a": "attr", "t": "nexp", "n": 289.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13540,6 +14925,11 @@ "a": "attr", "t": "nexp", "n": 290.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13589,6 +14979,11 @@ "a": "attr", "t": "nexp", "n": 291.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13638,6 +15033,11 @@ "a": "attr", "t": "nexp", "n": 291.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13687,6 +15087,11 @@ "a": "attr", "t": "nexp", "n": 292.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13736,6 +15141,11 @@ "a": "attr", "t": "nexp", "n": 292.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13785,6 +15195,11 @@ "a": "attr", "t": "nexp", "n": 293.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13834,6 +15249,11 @@ "a": "attr", "t": "nexp", "n": 294.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13883,6 +15303,11 @@ "a": "attr", "t": "nexp", "n": 294.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13932,6 +15357,11 @@ "a": "attr", "t": "nexp", "n": 295.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -13981,6 +15411,11 @@ "a": "attr", "t": "nexp", "n": 296.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -14030,6 +15465,11 @@ "a": "attr", "t": "nexp", "n": 296.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -14079,6 +15519,11 @@ "a": "attr", "t": "nexp", "n": 297.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -14128,6 +15573,11 @@ "a": "attr", "t": "nexp", "n": 298.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -14177,6 +15627,11 @@ "a": "attr", "t": "nexp", "n": 298.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -14226,6 +15681,11 @@ "a": "attr", "t": "nexp", "n": 299.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -14275,6 +15735,11 @@ "a": "attr", "t": "nexp", "n": 300.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -14324,6 +15789,11 @@ "a": "attr", "t": "nexp", "n": 300.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -14373,6 +15843,11 @@ "a": "attr", "t": "nexp", "n": 301.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -14422,6 +15897,11 @@ "a": "attr", "t": "nexp", "n": 302.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -14471,6 +15951,11 @@ "a": "attr", "t": "nexp", "n": 302.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -14520,6 +16005,11 @@ "a": "attr", "t": "nexp", "n": 303.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -14569,6 +16059,11 @@ "a": "attr", "t": "nexp", "n": 304.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.5 } ], "dlz": [], @@ -14618,6 +16113,11 @@ "a": "attr", "t": "nexp", "n": 304.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -14667,6 +16167,11 @@ "a": "attr", "t": "nexp", "n": 305.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -14716,6 +16221,11 @@ "a": "attr", "t": "nexp", "n": 305.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -14765,6 +16275,11 @@ "a": "attr", "t": "nexp", "n": 306.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -14814,6 +16329,11 @@ "a": "attr", "t": "nexp", "n": 307.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -14863,6 +16383,11 @@ "a": "attr", "t": "nexp", "n": 307.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -14912,6 +16437,11 @@ "a": "attr", "t": "nexp", "n": 308.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -14961,6 +16491,11 @@ "a": "attr", "t": "nexp", "n": 309.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15010,6 +16545,11 @@ "a": "attr", "t": "nexp", "n": 309.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15059,6 +16599,11 @@ "a": "attr", "t": "nexp", "n": 310.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15108,6 +16653,11 @@ "a": "attr", "t": "nexp", "n": 311.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15157,6 +16707,11 @@ "a": "attr", "t": "nexp", "n": 311.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15206,6 +16761,11 @@ "a": "attr", "t": "nexp", "n": 312.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15255,6 +16815,11 @@ "a": "attr", "t": "nexp", "n": 313.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15304,6 +16869,11 @@ "a": "attr", "t": "nexp", "n": 313.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15353,6 +16923,11 @@ "a": "attr", "t": "nexp", "n": 314.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15402,6 +16977,11 @@ "a": "attr", "t": "nexp", "n": 315.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15451,6 +17031,11 @@ "a": "attr", "t": "nexp", "n": 315.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15500,6 +17085,11 @@ "a": "attr", "t": "nexp", "n": 316.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15549,6 +17139,11 @@ "a": "attr", "t": "nexp", "n": 317.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15598,6 +17193,11 @@ "a": "attr", "t": "nexp", "n": 317.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15647,6 +17247,11 @@ "a": "attr", "t": "nexp", "n": 318.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15696,6 +17301,11 @@ "a": "attr", "t": "nexp", "n": 318.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15745,6 +17355,11 @@ "a": "attr", "t": "nexp", "n": 319.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15794,6 +17409,11 @@ "a": "attr", "t": "nexp", "n": 320.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15843,6 +17463,11 @@ "a": "attr", "t": "nexp", "n": 320.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15892,6 +17517,11 @@ "a": "attr", "t": "nexp", "n": 321.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15941,6 +17571,11 @@ "a": "attr", "t": "nexp", "n": 322.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -15990,6 +17625,11 @@ "a": "attr", "t": "nexp", "n": 322.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -16039,6 +17679,11 @@ "a": "attr", "t": "nexp", "n": 323.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.51 } ], "dlz": [], @@ -16088,6 +17733,11 @@ "a": "attr", "t": "nexp", "n": 324.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -16137,6 +17787,11 @@ "a": "attr", "t": "nexp", "n": 324.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -16186,6 +17841,11 @@ "a": "attr", "t": "nexp", "n": 325.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -16235,6 +17895,11 @@ "a": "attr", "t": "nexp", "n": 326.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -16284,6 +17949,11 @@ "a": "attr", "t": "nexp", "n": 326.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -16333,6 +18003,11 @@ "a": "attr", "t": "nexp", "n": 327.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -16382,6 +18057,11 @@ "a": "attr", "t": "nexp", "n": 328.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -16431,6 +18111,11 @@ "a": "attr", "t": "nexp", "n": 328.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -16480,6 +18165,11 @@ "a": "attr", "t": "nexp", "n": 329.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -16529,6 +18219,11 @@ "a": "attr", "t": "nexp", "n": 330.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -16578,6 +18273,11 @@ "a": "attr", "t": "nexp", "n": 330.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -16627,6 +18327,11 @@ "a": "attr", "t": "nexp", "n": 331.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -16676,6 +18381,11 @@ "a": "attr", "t": "nexp", "n": 331.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -16725,6 +18435,11 @@ "a": "attr", "t": "nexp", "n": 332.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -16774,6 +18489,11 @@ "a": "attr", "t": "nexp", "n": 333.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -16823,6 +18543,11 @@ "a": "attr", "t": "nexp", "n": 333.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -16872,6 +18597,11 @@ "a": "attr", "t": "nexp", "n": 334.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -16921,6 +18651,11 @@ "a": "attr", "t": "nexp", "n": 335.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -16970,6 +18705,11 @@ "a": "attr", "t": "nexp", "n": 335.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -17019,6 +18759,11 @@ "a": "attr", "t": "nexp", "n": 336.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -17068,6 +18813,11 @@ "a": "attr", "t": "nexp", "n": 337.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -17117,6 +18867,11 @@ "a": "attr", "t": "nexp", "n": 337.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -17166,6 +18921,11 @@ "a": "attr", "t": "nexp", "n": 338.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -17215,6 +18975,11 @@ "a": "attr", "t": "nexp", "n": 339.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -17264,6 +19029,11 @@ "a": "attr", "t": "nexp", "n": 339.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -17313,6 +19083,11 @@ "a": "attr", "t": "nexp", "n": 340.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -17362,6 +19137,11 @@ "a": "attr", "t": "nexp", "n": 341.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -17411,6 +19191,11 @@ "a": "attr", "t": "nexp", "n": 341.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -17460,6 +19245,11 @@ "a": "attr", "t": "nexp", "n": 342.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -17509,6 +19299,11 @@ "a": "attr", "t": "nexp", "n": 343.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.52 } ], "dlz": [], @@ -17558,6 +19353,11 @@ "a": "attr", "t": "nexp", "n": 343.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -17607,6 +19407,11 @@ "a": "attr", "t": "nexp", "n": 344.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -17656,6 +19461,11 @@ "a": "attr", "t": "nexp", "n": 344.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -17705,6 +19515,11 @@ "a": "attr", "t": "nexp", "n": 345.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -17754,6 +19569,11 @@ "a": "attr", "t": "nexp", "n": 346.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -17803,6 +19623,11 @@ "a": "attr", "t": "nexp", "n": 346.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -17852,6 +19677,11 @@ "a": "attr", "t": "nexp", "n": 347.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -17901,6 +19731,11 @@ "a": "attr", "t": "nexp", "n": 348.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -17950,6 +19785,11 @@ "a": "attr", "t": "nexp", "n": 348.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -17999,6 +19839,11 @@ "a": "attr", "t": "nexp", "n": 349.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18048,6 +19893,11 @@ "a": "attr", "t": "nexp", "n": 350.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18097,6 +19947,11 @@ "a": "attr", "t": "nexp", "n": 350.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18146,6 +20001,11 @@ "a": "attr", "t": "nexp", "n": 351.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18195,6 +20055,11 @@ "a": "attr", "t": "nexp", "n": 352.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18244,6 +20109,11 @@ "a": "attr", "t": "nexp", "n": 352.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18293,6 +20163,11 @@ "a": "attr", "t": "nexp", "n": 353.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18342,6 +20217,11 @@ "a": "attr", "t": "nexp", "n": 354.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18391,6 +20271,11 @@ "a": "attr", "t": "nexp", "n": 354.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18440,6 +20325,11 @@ "a": "attr", "t": "nexp", "n": 355.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18489,6 +20379,11 @@ "a": "attr", "t": "nexp", "n": 356.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18538,6 +20433,11 @@ "a": "attr", "t": "nexp", "n": 356.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18587,6 +20487,11 @@ "a": "attr", "t": "nexp", "n": 357.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18636,6 +20541,11 @@ "a": "attr", "t": "nexp", "n": 357.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18685,6 +20595,11 @@ "a": "attr", "t": "nexp", "n": 358.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18734,6 +20649,11 @@ "a": "attr", "t": "nexp", "n": 359.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18783,6 +20703,11 @@ "a": "attr", "t": "nexp", "n": 359.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18832,6 +20757,11 @@ "a": "attr", "t": "nexp", "n": 360.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18881,6 +20811,11 @@ "a": "attr", "t": "nexp", "n": 361.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18930,6 +20865,11 @@ "a": "attr", "t": "nexp", "n": 361.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -18979,6 +20919,11 @@ "a": "attr", "t": "nexp", "n": 362.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.53 } ], "dlz": [], @@ -19028,6 +20973,11 @@ "a": "attr", "t": "nexp", "n": 363.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -19077,6 +21027,11 @@ "a": "attr", "t": "nexp", "n": 363.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -19126,6 +21081,11 @@ "a": "attr", "t": "nexp", "n": 364.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -19175,6 +21135,11 @@ "a": "attr", "t": "nexp", "n": 365.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -19224,6 +21189,11 @@ "a": "attr", "t": "nexp", "n": 365.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -19273,6 +21243,11 @@ "a": "attr", "t": "nexp", "n": 366.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -19322,6 +21297,11 @@ "a": "attr", "t": "nexp", "n": 367.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -19371,6 +21351,11 @@ "a": "attr", "t": "nexp", "n": 367.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -19420,6 +21405,11 @@ "a": "attr", "t": "nexp", "n": 368.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -19469,6 +21459,11 @@ "a": "attr", "t": "nexp", "n": 369.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -19518,6 +21513,11 @@ "a": "attr", "t": "nexp", "n": 369.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -19567,6 +21567,11 @@ "a": "attr", "t": "nexp", "n": 370.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -19616,6 +21621,11 @@ "a": "attr", "t": "nexp", "n": 370.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -19665,6 +21675,11 @@ "a": "attr", "t": "nexp", "n": 371.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -19714,6 +21729,11 @@ "a": "attr", "t": "nexp", "n": 372.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -19763,6 +21783,11 @@ "a": "attr", "t": "nexp", "n": 372.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -19812,6 +21837,11 @@ "a": "attr", "t": "nexp", "n": 373.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -19861,6 +21891,11 @@ "a": "attr", "t": "nexp", "n": 374.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -19910,6 +21945,11 @@ "a": "attr", "t": "nexp", "n": 374.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -19959,6 +21999,11 @@ "a": "attr", "t": "nexp", "n": 375.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -20008,6 +22053,11 @@ "a": "attr", "t": "nexp", "n": 376.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -20057,6 +22107,11 @@ "a": "attr", "t": "nexp", "n": 376.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -20106,6 +22161,11 @@ "a": "attr", "t": "nexp", "n": 377.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -20155,6 +22215,11 @@ "a": "attr", "t": "nexp", "n": 378.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -20204,6 +22269,11 @@ "a": "attr", "t": "nexp", "n": 378.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -20253,6 +22323,11 @@ "a": "attr", "t": "nexp", "n": 379.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -20302,6 +22377,11 @@ "a": "attr", "t": "nexp", "n": 380.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -20351,6 +22431,11 @@ "a": "attr", "t": "nexp", "n": 380.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -20400,6 +22485,11 @@ "a": "attr", "t": "nexp", "n": 381.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -20449,6 +22539,11 @@ "a": "attr", "t": "nexp", "n": 382.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.54 } ], "dlz": [], @@ -20498,6 +22593,11 @@ "a": "attr", "t": "nexp", "n": 382.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -20547,6 +22647,11 @@ "a": "attr", "t": "nexp", "n": 383.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -20596,6 +22701,11 @@ "a": "attr", "t": "nexp", "n": 383.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -20645,6 +22755,11 @@ "a": "attr", "t": "nexp", "n": 384.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -20694,6 +22809,11 @@ "a": "attr", "t": "nexp", "n": 385.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -20743,6 +22863,11 @@ "a": "attr", "t": "nexp", "n": 385.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -20792,6 +22917,11 @@ "a": "attr", "t": "nexp", "n": 386.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -20841,6 +22971,11 @@ "a": "attr", "t": "nexp", "n": 387.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -20890,6 +23025,11 @@ "a": "attr", "t": "nexp", "n": 387.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -20939,6 +23079,11 @@ "a": "attr", "t": "nexp", "n": 388.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -20988,6 +23133,11 @@ "a": "attr", "t": "nexp", "n": 389.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21037,6 +23187,11 @@ "a": "attr", "t": "nexp", "n": 389.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21086,6 +23241,11 @@ "a": "attr", "t": "nexp", "n": 390.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21135,6 +23295,11 @@ "a": "attr", "t": "nexp", "n": 391.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21184,6 +23349,11 @@ "a": "attr", "t": "nexp", "n": 391.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21233,6 +23403,11 @@ "a": "attr", "t": "nexp", "n": 392.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21282,6 +23457,11 @@ "a": "attr", "t": "nexp", "n": 393.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21331,6 +23511,11 @@ "a": "attr", "t": "nexp", "n": 393.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21380,6 +23565,11 @@ "a": "attr", "t": "nexp", "n": 394.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21429,6 +23619,11 @@ "a": "attr", "t": "nexp", "n": 395.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21478,6 +23673,11 @@ "a": "attr", "t": "nexp", "n": 395.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21527,6 +23727,11 @@ "a": "attr", "t": "nexp", "n": 396.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21576,6 +23781,11 @@ "a": "attr", "t": "nexp", "n": 396.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21625,6 +23835,11 @@ "a": "attr", "t": "nexp", "n": 397.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21674,6 +23889,11 @@ "a": "attr", "t": "nexp", "n": 398.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21723,6 +23943,11 @@ "a": "attr", "t": "nexp", "n": 398.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21772,6 +23997,11 @@ "a": "attr", "t": "nexp", "n": 399.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21821,6 +24051,11 @@ "a": "attr", "t": "nexp", "n": 400.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21870,6 +24105,11 @@ "a": "attr", "t": "nexp", "n": 400.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21919,6 +24159,11 @@ "a": "attr", "t": "nexp", "n": 401.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.55 } ], "dlz": [], @@ -21968,6 +24213,11 @@ "a": "attr", "t": "nexp", "n": 402.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22017,6 +24267,11 @@ "a": "attr", "t": "nexp", "n": 402.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22066,6 +24321,11 @@ "a": "attr", "t": "nexp", "n": 403.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22115,6 +24375,11 @@ "a": "attr", "t": "nexp", "n": 404.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22164,6 +24429,11 @@ "a": "attr", "t": "nexp", "n": 404.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22213,6 +24483,11 @@ "a": "attr", "t": "nexp", "n": 405.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22262,6 +24537,11 @@ "a": "attr", "t": "nexp", "n": 406.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22311,6 +24591,11 @@ "a": "attr", "t": "nexp", "n": 406.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22360,6 +24645,11 @@ "a": "attr", "t": "nexp", "n": 407.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22409,6 +24699,11 @@ "a": "attr", "t": "nexp", "n": 408.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22458,6 +24753,11 @@ "a": "attr", "t": "nexp", "n": 408.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22507,6 +24807,11 @@ "a": "attr", "t": "nexp", "n": 409.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22556,6 +24861,11 @@ "a": "attr", "t": "nexp", "n": 409.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22605,6 +24915,11 @@ "a": "attr", "t": "nexp", "n": 410.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22654,6 +24969,11 @@ "a": "attr", "t": "nexp", "n": 411.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22703,6 +25023,11 @@ "a": "attr", "t": "nexp", "n": 411.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22752,6 +25077,11 @@ "a": "attr", "t": "nexp", "n": 412.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22801,6 +25131,11 @@ "a": "attr", "t": "nexp", "n": 413.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22850,6 +25185,11 @@ "a": "attr", "t": "nexp", "n": 413.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22899,6 +25239,11 @@ "a": "attr", "t": "nexp", "n": 414.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22948,6 +25293,11 @@ "a": "attr", "t": "nexp", "n": 415.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -22997,6 +25347,11 @@ "a": "attr", "t": "nexp", "n": 415.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -23046,6 +25401,11 @@ "a": "attr", "t": "nexp", "n": 416.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -23095,6 +25455,11 @@ "a": "attr", "t": "nexp", "n": 417.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -23144,6 +25509,11 @@ "a": "attr", "t": "nexp", "n": 417.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -23193,6 +25563,11 @@ "a": "attr", "t": "nexp", "n": 418.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -23242,6 +25617,11 @@ "a": "attr", "t": "nexp", "n": 419.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -23291,6 +25671,11 @@ "a": "attr", "t": "nexp", "n": 419.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -23340,6 +25725,11 @@ "a": "attr", "t": "nexp", "n": 420.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -23389,6 +25779,11 @@ "a": "attr", "t": "nexp", "n": 421.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.56 } ], "dlz": [], @@ -23438,6 +25833,11 @@ "a": "attr", "t": "nexp", "n": 421.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -23487,6 +25887,11 @@ "a": "attr", "t": "nexp", "n": 422.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -23536,6 +25941,11 @@ "a": "attr", "t": "nexp", "n": 422.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -23585,6 +25995,11 @@ "a": "attr", "t": "nexp", "n": 423.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -23634,6 +26049,11 @@ "a": "attr", "t": "nexp", "n": 424.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -23683,6 +26103,11 @@ "a": "attr", "t": "nexp", "n": 424.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -23732,6 +26157,11 @@ "a": "attr", "t": "nexp", "n": 425.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -23781,6 +26211,11 @@ "a": "attr", "t": "nexp", "n": 426.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -23830,6 +26265,11 @@ "a": "attr", "t": "nexp", "n": 426.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -23879,6 +26319,11 @@ "a": "attr", "t": "nexp", "n": 427.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -23928,6 +26373,11 @@ "a": "attr", "t": "nexp", "n": 428.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -23977,6 +26427,11 @@ "a": "attr", "t": "nexp", "n": 428.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -24026,6 +26481,11 @@ "a": "attr", "t": "nexp", "n": 429.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -24075,6 +26535,11 @@ "a": "attr", "t": "nexp", "n": 430.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -24124,6 +26589,11 @@ "a": "attr", "t": "nexp", "n": 430.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -24173,6 +26643,11 @@ "a": "attr", "t": "nexp", "n": 431.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -24222,6 +26697,11 @@ "a": "attr", "t": "nexp", "n": 432.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -24271,6 +26751,11 @@ "a": "attr", "t": "nexp", "n": 432.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -24320,6 +26805,11 @@ "a": "attr", "t": "nexp", "n": 433.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -24369,6 +26859,11 @@ "a": "attr", "t": "nexp", "n": 434.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -24418,6 +26913,11 @@ "a": "attr", "t": "nexp", "n": 434.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -24467,6 +26967,11 @@ "a": "attr", "t": "nexp", "n": 435.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -24516,6 +27021,11 @@ "a": "attr", "t": "nexp", "n": 435.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -24565,6 +27075,11 @@ "a": "attr", "t": "nexp", "n": 436.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -24614,6 +27129,11 @@ "a": "attr", "t": "nexp", "n": 437.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -24663,6 +27183,11 @@ "a": "attr", "t": "nexp", "n": 437.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -24712,6 +27237,11 @@ "a": "attr", "t": "nexp", "n": 438.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -24761,6 +27291,11 @@ "a": "attr", "t": "nexp", "n": 439.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -24810,6 +27345,11 @@ "a": "attr", "t": "nexp", "n": 439.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -24859,6 +27399,11 @@ "a": "attr", "t": "nexp", "n": 440.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.57 } ], "dlz": [], @@ -24908,6 +27453,11 @@ "a": "attr", "t": "nexp", "n": 441.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -24957,6 +27507,11 @@ "a": "attr", "t": "nexp", "n": 441.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25006,6 +27561,11 @@ "a": "attr", "t": "nexp", "n": 442.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25055,6 +27615,11 @@ "a": "attr", "t": "nexp", "n": 443.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25104,6 +27669,11 @@ "a": "attr", "t": "nexp", "n": 443.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25153,6 +27723,11 @@ "a": "attr", "t": "nexp", "n": 444.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25202,6 +27777,11 @@ "a": "attr", "t": "nexp", "n": 445.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25251,6 +27831,11 @@ "a": "attr", "t": "nexp", "n": 445.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25300,6 +27885,11 @@ "a": "attr", "t": "nexp", "n": 446.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25349,6 +27939,11 @@ "a": "attr", "t": "nexp", "n": 447.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25398,6 +27993,11 @@ "a": "attr", "t": "nexp", "n": 447.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25447,6 +28047,11 @@ "a": "attr", "t": "nexp", "n": 582.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25496,6 +28101,11 @@ "a": "attr", "t": "nexp", "n": 583.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25545,6 +28155,11 @@ "a": "attr", "t": "nexp", "n": 584.53 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25594,6 +28209,11 @@ "a": "attr", "t": "nexp", "n": 585.38 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25643,6 +28263,11 @@ "a": "attr", "t": "nexp", "n": 586.22 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25692,6 +28317,11 @@ "a": "attr", "t": "nexp", "n": 587.07 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25741,6 +28371,11 @@ "a": "attr", "t": "nexp", "n": 587.91 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25790,6 +28425,11 @@ "a": "attr", "t": "nexp", "n": 588.76 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25839,6 +28479,11 @@ "a": "attr", "t": "nexp", "n": 589.6 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25888,6 +28533,11 @@ "a": "attr", "t": "nexp", "n": 590.45 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25937,6 +28587,11 @@ "a": "attr", "t": "nexp", "n": 591.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -25986,6 +28641,11 @@ "a": "attr", "t": "nexp", "n": 592.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -26035,6 +28695,11 @@ "a": "attr", "t": "nexp", "n": 592.98 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -26084,6 +28749,11 @@ "a": "attr", "t": "nexp", "n": 593.83 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -26133,6 +28803,11 @@ "a": "attr", "t": "nexp", "n": 594.67 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -26182,6 +28857,11 @@ "a": "attr", "t": "nexp", "n": 595.52 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -26231,6 +28911,11 @@ "a": "attr", "t": "nexp", "n": 619.3 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -26280,6 +28965,11 @@ "a": "attr", "t": "nexp", "n": 620.18 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -26329,6 +29019,11 @@ "a": "attr", "t": "nexp", "n": 621.05 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.58 } ], "dlz": [], @@ -26378,6 +29073,11 @@ "a": "attr", "t": "nexp", "n": 621.93 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -26427,6 +29127,11 @@ "a": "attr", "t": "nexp", "n": 622.81 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -26476,6 +29181,11 @@ "a": "attr", "t": "nexp", "n": 623.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -26525,6 +29235,11 @@ "a": "attr", "t": "nexp", "n": 624.56 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -26574,6 +29289,11 @@ "a": "attr", "t": "nexp", "n": 625.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -26623,6 +29343,11 @@ "a": "attr", "t": "nexp", "n": 626.32 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -26672,6 +29397,11 @@ "a": "attr", "t": "nexp", "n": 627.2 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -26721,6 +29451,11 @@ "a": "attr", "t": "nexp", "n": 628.07 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -26770,6 +29505,11 @@ "a": "attr", "t": "nexp", "n": 628.95 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -26819,6 +29559,11 @@ "a": "attr", "t": "nexp", "n": 629.83 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -26868,6 +29613,11 @@ "a": "attr", "t": "nexp", "n": 630.71 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -26917,6 +29667,11 @@ "a": "attr", "t": "nexp", "n": 631.58 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -26966,6 +29721,11 @@ "a": "attr", "t": "nexp", "n": 632.46 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -27015,6 +29775,11 @@ "a": "attr", "t": "nexp", "n": 656.8 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -27064,6 +29829,11 @@ "a": "attr", "t": "nexp", "n": 657.71 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -27113,6 +29883,11 @@ "a": "attr", "t": "nexp", "n": 658.62 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -27162,6 +29937,11 @@ "a": "attr", "t": "nexp", "n": 659.53 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -27211,6 +29991,11 @@ "a": "attr", "t": "nexp", "n": 660.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -27260,6 +30045,11 @@ "a": "attr", "t": "nexp", "n": 661.35 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -27309,6 +30099,11 @@ "a": "attr", "t": "nexp", "n": 662.26 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -27358,6 +30153,11 @@ "a": "attr", "t": "nexp", "n": 663.17 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -27407,6 +30207,11 @@ "a": "attr", "t": "nexp", "n": 664.08 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -27456,6 +30261,11 @@ "a": "attr", "t": "nexp", "n": 664.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -27505,6 +30315,11 @@ "a": "attr", "t": "nexp", "n": 665.9 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -27554,6 +30369,11 @@ "a": "attr", "t": "nexp", "n": 666.81 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -27603,6 +30423,11 @@ "a": "attr", "t": "nexp", "n": 667.72 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -27652,6 +30477,11 @@ "a": "attr", "t": "nexp", "n": 668.63 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -27701,6 +30531,11 @@ "a": "attr", "t": "nexp", "n": 669.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -27750,6 +30585,11 @@ "a": "attr", "t": "nexp", "n": 670.45 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -27799,6 +30639,11 @@ "a": "attr", "t": "nexp", "n": 695.33 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.59 } ], "dlz": [], @@ -27848,6 +30693,11 @@ "a": "attr", "t": "nexp", "n": 696.28 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -27897,6 +30747,11 @@ "a": "attr", "t": "nexp", "n": 697.22 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -27946,6 +30801,11 @@ "a": "attr", "t": "nexp", "n": 698.16 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -27995,6 +30855,11 @@ "a": "attr", "t": "nexp", "n": 699.1 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28044,6 +30909,11 @@ "a": "attr", "t": "nexp", "n": 700.05 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28093,6 +30963,11 @@ "a": "attr", "t": "nexp", "n": 700.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28142,6 +31017,11 @@ "a": "attr", "t": "nexp", "n": 701.93 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28191,6 +31071,11 @@ "a": "attr", "t": "nexp", "n": 702.87 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28240,6 +31125,11 @@ "a": "attr", "t": "nexp", "n": 703.82 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28289,6 +31179,11 @@ "a": "attr", "t": "nexp", "n": 704.76 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28338,6 +31233,11 @@ "a": "attr", "t": "nexp", "n": 705.7 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28387,6 +31287,11 @@ "a": "attr", "t": "nexp", "n": 706.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28436,6 +31341,11 @@ "a": "attr", "t": "nexp", "n": 707.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28485,6 +31395,11 @@ "a": "attr", "t": "nexp", "n": 708.53 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28534,6 +31449,11 @@ "a": "attr", "t": "nexp", "n": 709.47 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28583,6 +31503,11 @@ "a": "attr", "t": "nexp", "n": 734.91 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28632,6 +31557,11 @@ "a": "attr", "t": "nexp", "n": 735.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28681,6 +31611,11 @@ "a": "attr", "t": "nexp", "n": 736.86 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28730,6 +31665,11 @@ "a": "attr", "t": "nexp", "n": 737.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28779,6 +31719,11 @@ "a": "attr", "t": "nexp", "n": 738.81 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28828,6 +31773,11 @@ "a": "attr", "t": "nexp", "n": 739.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28877,6 +31827,11 @@ "a": "attr", "t": "nexp", "n": 740.76 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28926,6 +31881,11 @@ "a": "attr", "t": "nexp", "n": 741.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -28975,6 +31935,11 @@ "a": "attr", "t": "nexp", "n": 742.71 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -29024,6 +31989,11 @@ "a": "attr", "t": "nexp", "n": 743.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -29073,6 +32043,11 @@ "a": "attr", "t": "nexp", "n": 744.66 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -29122,6 +32097,11 @@ "a": "attr", "t": "nexp", "n": 745.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -29171,6 +32151,11 @@ "a": "attr", "t": "nexp", "n": 746.61 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -29220,6 +32205,11 @@ "a": "attr", "t": "nexp", "n": 747.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -29269,6 +32259,11 @@ "a": "attr", "t": "nexp", "n": 748.56 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.6 } ], "dlz": [], @@ -29318,6 +32313,11 @@ "a": "attr", "t": "nexp", "n": 749.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -29367,6 +32367,11 @@ "a": "attr", "t": "nexp", "n": 750.51 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -29416,6 +32421,11 @@ "a": "attr", "t": "nexp", "n": 776.53 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -29465,6 +32475,11 @@ "a": "attr", "t": "nexp", "n": 777.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -29514,6 +32529,11 @@ "a": "attr", "t": "nexp", "n": 778.55 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -29563,6 +32583,11 @@ "a": "attr", "t": "nexp", "n": 779.56 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -29612,6 +32637,11 @@ "a": "attr", "t": "nexp", "n": 780.56 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -29661,6 +32691,11 @@ "a": "attr", "t": "nexp", "n": 781.57 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -29710,6 +32745,11 @@ "a": "attr", "t": "nexp", "n": 782.58 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -29759,6 +32799,11 @@ "a": "attr", "t": "nexp", "n": 783.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -29808,6 +32853,11 @@ "a": "attr", "t": "nexp", "n": 784.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -29857,6 +32907,11 @@ "a": "attr", "t": "nexp", "n": 785.6 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -29906,6 +32961,11 @@ "a": "attr", "t": "nexp", "n": 786.61 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -29955,6 +33015,11 @@ "a": "attr", "t": "nexp", "n": 787.62 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -30004,6 +33069,11 @@ "a": "attr", "t": "nexp", "n": 788.62 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -30053,6 +33123,11 @@ "a": "attr", "t": "nexp", "n": 789.63 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -30102,6 +33177,11 @@ "a": "attr", "t": "nexp", "n": 790.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -30151,6 +33231,11 @@ "a": "attr", "t": "nexp", "n": 817.18 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -30200,6 +33285,11 @@ "a": "attr", "t": "nexp", "n": 818.22 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -30249,6 +33339,11 @@ "a": "attr", "t": "nexp", "n": 819.26 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -30298,6 +33393,11 @@ "a": "attr", "t": "nexp", "n": 820.3 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -30347,6 +33447,11 @@ "a": "attr", "t": "nexp", "n": 821.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -30396,6 +33501,11 @@ "a": "attr", "t": "nexp", "n": 822.38 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -30445,6 +33555,11 @@ "a": "attr", "t": "nexp", "n": 823.42 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -30494,6 +33609,11 @@ "a": "attr", "t": "nexp", "n": 824.46 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -30543,6 +33663,11 @@ "a": "attr", "t": "nexp", "n": 825.5 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -30592,6 +33717,11 @@ "a": "attr", "t": "nexp", "n": 826.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -30641,6 +33771,11 @@ "a": "attr", "t": "nexp", "n": 827.58 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -30690,6 +33825,11 @@ "a": "attr", "t": "nexp", "n": 828.62 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -30739,6 +33879,11 @@ "a": "attr", "t": "nexp", "n": 829.66 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.61 } ], "dlz": [], @@ -30788,6 +33933,11 @@ "a": "attr", "t": "nexp", "n": 830.7 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -30837,6 +33987,11 @@ "a": "attr", "t": "nexp", "n": 831.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -30886,6 +34041,11 @@ "a": "attr", "t": "nexp", "n": 832.78 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -30935,6 +34095,11 @@ "a": "attr", "t": "nexp", "n": 859.88 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -30984,6 +34149,11 @@ "a": "attr", "t": "nexp", "n": 860.95 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31033,6 +34203,11 @@ "a": "attr", "t": "nexp", "n": 862.03 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31082,6 +34257,11 @@ "a": "attr", "t": "nexp", "n": 863.1 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31131,6 +34311,11 @@ "a": "attr", "t": "nexp", "n": 864.17 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31180,6 +34365,11 @@ "a": "attr", "t": "nexp", "n": 865.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31229,6 +34419,11 @@ "a": "attr", "t": "nexp", "n": 866.32 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31278,6 +34473,11 @@ "a": "attr", "t": "nexp", "n": 867.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31327,6 +34527,11 @@ "a": "attr", "t": "nexp", "n": 868.46 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31376,6 +34581,11 @@ "a": "attr", "t": "nexp", "n": 869.53 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31425,6 +34635,11 @@ "a": "attr", "t": "nexp", "n": 870.61 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31474,6 +34689,11 @@ "a": "attr", "t": "nexp", "n": 871.68 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31523,6 +34743,11 @@ "a": "attr", "t": "nexp", "n": 872.75 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31572,6 +34797,11 @@ "a": "attr", "t": "nexp", "n": 873.82 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31621,6 +34851,11 @@ "a": "attr", "t": "nexp", "n": 874.9 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31670,6 +34905,11 @@ "a": "attr", "t": "nexp", "n": 875.97 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31719,6 +34959,11 @@ "a": "attr", "t": "nexp", "n": 903.62 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31768,6 +35013,11 @@ "a": "attr", "t": "nexp", "n": 904.72 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31817,6 +35067,11 @@ "a": "attr", "t": "nexp", "n": 905.83 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31866,6 +35121,11 @@ "a": "attr", "t": "nexp", "n": 906.93 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31915,6 +35175,11 @@ "a": "attr", "t": "nexp", "n": 908.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -31964,6 +35229,11 @@ "a": "attr", "t": "nexp", "n": 909.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -32013,6 +35283,11 @@ "a": "attr", "t": "nexp", "n": 910.25 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -32062,6 +35337,11 @@ "a": "attr", "t": "nexp", "n": 911.35 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -32111,6 +35391,11 @@ "a": "attr", "t": "nexp", "n": 912.46 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -32160,6 +35445,11 @@ "a": "attr", "t": "nexp", "n": 913.56 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -32209,6 +35499,11 @@ "a": "attr", "t": "nexp", "n": 914.67 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.62 } ], "dlz": [], @@ -32258,6 +35553,11 @@ "a": "attr", "t": "nexp", "n": 915.77 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -32307,6 +35607,11 @@ "a": "attr", "t": "nexp", "n": 916.88 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -32356,6 +35661,11 @@ "a": "attr", "t": "nexp", "n": 917.98 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -32405,6 +35715,11 @@ "a": "attr", "t": "nexp", "n": 919.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -32454,6 +35769,11 @@ "a": "attr", "t": "nexp", "n": 920.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -32503,6 +35823,11 @@ "a": "attr", "t": "nexp", "n": 932.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -32552,6 +35877,11 @@ "a": "attr", "t": "nexp", "n": 933.25 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -32601,6 +35931,11 @@ "a": "attr", "t": "nexp", "n": 934.37 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -32650,6 +35985,11 @@ "a": "attr", "t": "nexp", "n": 935.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -32699,6 +36039,11 @@ "a": "attr", "t": "nexp", "n": 936.61 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -32748,6 +36093,11 @@ "a": "attr", "t": "nexp", "n": 937.73 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -32797,6 +36147,11 @@ "a": "attr", "t": "nexp", "n": 938.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -32846,6 +36201,11 @@ "a": "attr", "t": "nexp", "n": 939.96 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -32895,6 +36255,11 @@ "a": "attr", "t": "nexp", "n": 941.08 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -32944,6 +36309,11 @@ "a": "attr", "t": "nexp", "n": 942.2 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -32993,6 +36363,11 @@ "a": "attr", "t": "nexp", "n": 943.32 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -33042,6 +36417,11 @@ "a": "attr", "t": "nexp", "n": 944.43 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -33091,6 +36471,11 @@ "a": "attr", "t": "nexp", "n": 945.55 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -33140,6 +36525,11 @@ "a": "attr", "t": "nexp", "n": 946.67 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -33189,6 +36579,11 @@ "a": "attr", "t": "nexp", "n": 947.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -33238,6 +36633,11 @@ "a": "attr", "t": "nexp", "n": 948.91 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -33287,6 +36687,11 @@ "a": "attr", "t": "nexp", "n": 961.07 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -33336,6 +36741,11 @@ "a": "attr", "t": "nexp", "n": 962.2 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -33385,6 +36795,11 @@ "a": "attr", "t": "nexp", "n": 963.33 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -33434,6 +36849,11 @@ "a": "attr", "t": "nexp", "n": 964.46 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -33483,6 +36903,11 @@ "a": "attr", "t": "nexp", "n": 965.6 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -33532,6 +36957,11 @@ "a": "attr", "t": "nexp", "n": 966.73 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -33581,6 +37011,11 @@ "a": "attr", "t": "nexp", "n": 967.86 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -33630,6 +37065,11 @@ "a": "attr", "t": "nexp", "n": 968.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -33679,6 +37119,11 @@ "a": "attr", "t": "nexp", "n": 970.12 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.63 } ], "dlz": [], @@ -33728,6 +37173,11 @@ "a": "attr", "t": "nexp", "n": 971.25 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -33777,6 +37227,11 @@ "a": "attr", "t": "nexp", "n": 972.38 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -33826,6 +37281,11 @@ "a": "attr", "t": "nexp", "n": 973.51 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -33875,6 +37335,11 @@ "a": "attr", "t": "nexp", "n": 974.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -33924,6 +37389,11 @@ "a": "attr", "t": "nexp", "n": 975.77 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -33973,6 +37443,11 @@ "a": "attr", "t": "nexp", "n": 976.91 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34022,6 +37497,11 @@ "a": "attr", "t": "nexp", "n": 978.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34071,6 +37551,11 @@ "a": "attr", "t": "nexp", "n": 990.42 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34120,6 +37605,11 @@ "a": "attr", "t": "nexp", "n": 991.57 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34169,6 +37659,11 @@ "a": "attr", "t": "nexp", "n": 992.71 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34218,6 +37713,11 @@ "a": "attr", "t": "nexp", "n": 993.85 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34267,6 +37767,11 @@ "a": "attr", "t": "nexp", "n": 995 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34316,6 +37821,11 @@ "a": "attr", "t": "nexp", "n": 996.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34365,6 +37875,11 @@ "a": "attr", "t": "nexp", "n": 997.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34414,6 +37929,11 @@ "a": "attr", "t": "nexp", "n": 998.43 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34463,6 +37983,11 @@ "a": "attr", "t": "nexp", "n": 999.57 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34512,6 +38037,11 @@ "a": "attr", "t": "nexp", "n": 1000.72 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34561,6 +38091,11 @@ "a": "attr", "t": "nexp", "n": 1001.86 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34610,6 +38145,11 @@ "a": "attr", "t": "nexp", "n": 1003.01 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34659,6 +38199,11 @@ "a": "attr", "t": "nexp", "n": 1004.15 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34708,6 +38253,11 @@ "a": "attr", "t": "nexp", "n": 1005.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34757,6 +38307,11 @@ "a": "attr", "t": "nexp", "n": 1006.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34806,6 +38361,11 @@ "a": "attr", "t": "nexp", "n": 1007.58 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34855,6 +38415,11 @@ "a": "attr", "t": "nexp", "n": 1020.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34904,6 +38469,11 @@ "a": "attr", "t": "nexp", "n": 1021.35 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -34953,6 +38523,11 @@ "a": "attr", "t": "nexp", "n": 1022.5 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -35002,6 +38577,11 @@ "a": "attr", "t": "nexp", "n": 1023.66 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -35051,6 +38631,11 @@ "a": "attr", "t": "nexp", "n": 1024.82 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -35100,6 +38685,11 @@ "a": "attr", "t": "nexp", "n": 1025.97 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -35149,6 +38739,11 @@ "a": "attr", "t": "nexp", "n": 1027.13 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.64 } ], "dlz": [], @@ -35198,6 +38793,11 @@ "a": "attr", "t": "nexp", "n": 1028.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -35247,6 +38847,11 @@ "a": "attr", "t": "nexp", "n": 1029.45 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -35296,6 +38901,11 @@ "a": "attr", "t": "nexp", "n": 1030.6 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -35345,6 +38955,11 @@ "a": "attr", "t": "nexp", "n": 1031.76 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -35394,6 +39009,11 @@ "a": "attr", "t": "nexp", "n": 1032.92 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -35443,6 +39063,11 @@ "a": "attr", "t": "nexp", "n": 1034.07 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -35492,6 +39117,11 @@ "a": "attr", "t": "nexp", "n": 1035.23 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -35541,6 +39171,11 @@ "a": "attr", "t": "nexp", "n": 1036.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -35590,6 +39225,11 @@ "a": "attr", "t": "nexp", "n": 1037.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -35639,6 +39279,11 @@ "a": "attr", "t": "nexp", "n": 1038.7 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -35688,6 +39333,11 @@ "a": "attr", "t": "nexp", "n": 1039.86 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -35737,6 +39387,11 @@ "a": "attr", "t": "nexp", "n": 1041.02 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -35786,6 +39441,11 @@ "a": "attr", "t": "nexp", "n": 1042.17 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -35835,6 +39495,11 @@ "a": "attr", "t": "nexp", "n": 1043.33 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -35884,6 +39549,11 @@ "a": "attr", "t": "nexp", "n": 1044.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -35933,6 +39603,11 @@ "a": "attr", "t": "nexp", "n": 1045.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -35982,6 +39657,11 @@ "a": "attr", "t": "nexp", "n": 1046.8 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -36031,6 +39711,11 @@ "a": "attr", "t": "nexp", "n": 1047.96 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -36080,6 +39765,11 @@ "a": "attr", "t": "nexp", "n": 1049.11 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -36129,6 +39819,11 @@ "a": "attr", "t": "nexp", "n": 1050.27 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -36178,6 +39873,11 @@ "a": "attr", "t": "nexp", "n": 1051.43 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -36227,6 +39927,11 @@ "a": "attr", "t": "nexp", "n": 1052.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -36276,6 +39981,11 @@ "a": "attr", "t": "nexp", "n": 1053.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -36325,6 +40035,11 @@ "a": "attr", "t": "nexp", "n": 1054.9 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -36374,6 +40089,11 @@ "a": "attr", "t": "nexp", "n": 1056.06 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -36423,6 +40143,11 @@ "a": "attr", "t": "nexp", "n": 1057.21 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -36472,6 +40197,11 @@ "a": "attr", "t": "nexp", "n": 1058.37 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -36521,6 +40251,11 @@ "a": "attr", "t": "nexp", "n": 1059.53 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -36570,6 +40305,11 @@ "a": "attr", "t": "nexp", "n": 1060.68 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -36619,6 +40359,11 @@ "a": "attr", "t": "nexp", "n": 1061.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.65 } ], "dlz": [], @@ -36668,6 +40413,11 @@ "a": "attr", "t": "nexp", "n": 1063 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -36717,6 +40467,11 @@ "a": "attr", "t": "nexp", "n": 1064.16 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -36766,6 +40521,11 @@ "a": "attr", "t": "nexp", "n": 1065.31 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -36815,6 +40575,11 @@ "a": "attr", "t": "nexp", "n": 1066.47 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -36864,6 +40629,11 @@ "a": "attr", "t": "nexp", "n": 1067.63 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -36913,6 +40683,11 @@ "a": "attr", "t": "nexp", "n": 1068.78 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -36962,6 +40737,11 @@ "a": "attr", "t": "nexp", "n": 1069.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37011,6 +40791,11 @@ "a": "attr", "t": "nexp", "n": 1071.1 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37060,6 +40845,11 @@ "a": "attr", "t": "nexp", "n": 1072.25 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37109,6 +40899,11 @@ "a": "attr", "t": "nexp", "n": 1073.41 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37158,6 +40953,11 @@ "a": "attr", "t": "nexp", "n": 1074.57 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37207,6 +41007,11 @@ "a": "attr", "t": "nexp", "n": 1075.73 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37256,6 +41061,11 @@ "a": "attr", "t": "nexp", "n": 1076.88 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37305,6 +41115,11 @@ "a": "attr", "t": "nexp", "n": 1078.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37354,6 +41169,11 @@ "a": "attr", "t": "nexp", "n": 1079.2 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37403,6 +41223,11 @@ "a": "attr", "t": "nexp", "n": 1080.35 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37452,6 +41277,11 @@ "a": "attr", "t": "nexp", "n": 1081.51 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37501,6 +41331,11 @@ "a": "attr", "t": "nexp", "n": 1082.67 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37550,6 +41385,11 @@ "a": "attr", "t": "nexp", "n": 1083.82 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37599,6 +41439,11 @@ "a": "attr", "t": "nexp", "n": 1084.98 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37648,6 +41493,11 @@ "a": "attr", "t": "nexp", "n": 1086.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37697,6 +41547,11 @@ "a": "attr", "t": "nexp", "n": 1087.3 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37746,6 +41601,11 @@ "a": "attr", "t": "nexp", "n": 1088.45 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37795,6 +41655,11 @@ "a": "attr", "t": "nexp", "n": 1089.61 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37844,6 +41709,11 @@ "a": "attr", "t": "nexp", "n": 1090.77 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37893,6 +41763,11 @@ "a": "attr", "t": "nexp", "n": 1091.92 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37942,6 +41817,11 @@ "a": "attr", "t": "nexp", "n": 1093.08 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -37991,6 +41871,11 @@ "a": "attr", "t": "nexp", "n": 1094.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -38040,6 +41925,11 @@ "a": "attr", "t": "nexp", "n": 1095.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -38089,6 +41979,11 @@ "a": "attr", "t": "nexp", "n": 1096.55 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.66 } ], "dlz": [], @@ -38138,6 +42033,11 @@ "a": "attr", "t": "nexp", "n": 1097.71 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -38187,6 +42087,11 @@ "a": "attr", "t": "nexp", "n": 1098.87 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -38236,6 +42141,11 @@ "a": "attr", "t": "nexp", "n": 1100.02 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -38285,6 +42195,11 @@ "a": "attr", "t": "nexp", "n": 1101.18 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -38334,6 +42249,11 @@ "a": "attr", "t": "nexp", "n": 1102.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -38383,6 +42303,11 @@ "a": "attr", "t": "nexp", "n": 1103.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -38432,6 +42357,11 @@ "a": "attr", "t": "nexp", "n": 1104.65 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -38481,6 +42411,11 @@ "a": "attr", "t": "nexp", "n": 1105.81 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -38530,6 +42465,11 @@ "a": "attr", "t": "nexp", "n": 1106.96 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -38579,6 +42519,11 @@ "a": "attr", "t": "nexp", "n": 1108.12 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -38628,6 +42573,11 @@ "a": "attr", "t": "nexp", "n": 1109.28 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -38677,6 +42627,11 @@ "a": "attr", "t": "nexp", "n": 1110.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -38726,6 +42681,11 @@ "a": "attr", "t": "nexp", "n": 1111.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -38775,6 +42735,11 @@ "a": "attr", "t": "nexp", "n": 1112.75 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -38824,6 +42789,11 @@ "a": "attr", "t": "nexp", "n": 1113.91 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -38873,6 +42843,11 @@ "a": "attr", "t": "nexp", "n": 1115.06 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -38922,6 +42897,11 @@ "a": "attr", "t": "nexp", "n": 1116.22 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -38971,6 +42951,11 @@ "a": "attr", "t": "nexp", "n": 1117.38 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -39020,6 +43005,11 @@ "a": "attr", "t": "nexp", "n": 1118.53 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -39069,6 +43059,11 @@ "a": "attr", "t": "nexp", "n": 1119.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -39118,6 +43113,11 @@ "a": "attr", "t": "nexp", "n": 1120.85 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -39167,6 +43167,11 @@ "a": "attr", "t": "nexp", "n": 1122.01 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -39216,6 +43221,11 @@ "a": "attr", "t": "nexp", "n": 1123.16 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -39265,6 +43275,11 @@ "a": "attr", "t": "nexp", "n": 1124.32 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -39314,6 +43329,11 @@ "a": "attr", "t": "nexp", "n": 1125.48 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -39363,6 +43383,11 @@ "a": "attr", "t": "nexp", "n": 1126.63 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -39412,6 +43437,11 @@ "a": "attr", "t": "nexp", "n": 1127.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -39461,6 +43491,11 @@ "a": "attr", "t": "nexp", "n": 1128.95 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -39510,6 +43545,11 @@ "a": "attr", "t": "nexp", "n": 1130.1 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -39559,6 +43599,11 @@ "a": "attr", "t": "nexp", "n": 1131.26 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.67 } ], "dlz": [], @@ -39608,6 +43653,11 @@ "a": "attr", "t": "nexp", "n": 1132.42 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -39657,6 +43707,11 @@ "a": "attr", "t": "nexp", "n": 1133.58 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -39706,6 +43761,11 @@ "a": "attr", "t": "nexp", "n": 1134.73 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -39755,6 +43815,11 @@ "a": "attr", "t": "nexp", "n": 1135.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -39804,6 +43869,11 @@ "a": "attr", "t": "nexp", "n": 1137.05 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -39853,6 +43923,11 @@ "a": "attr", "t": "nexp", "n": 1138.2 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -39902,6 +43977,11 @@ "a": "attr", "t": "nexp", "n": 1139.36 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -39951,6 +44031,11 @@ "a": "attr", "t": "nexp", "n": 1140.52 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40000,6 +44085,11 @@ "a": "attr", "t": "nexp", "n": 1141.67 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40049,6 +44139,11 @@ "a": "attr", "t": "nexp", "n": 1142.83 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40098,6 +44193,11 @@ "a": "attr", "t": "nexp", "n": 1143.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40147,6 +44247,11 @@ "a": "attr", "t": "nexp", "n": 1145.15 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40196,6 +44301,11 @@ "a": "attr", "t": "nexp", "n": 1146.3 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40245,6 +44355,11 @@ "a": "attr", "t": "nexp", "n": 1147.46 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40294,6 +44409,11 @@ "a": "attr", "t": "nexp", "n": 1148.62 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40343,6 +44463,11 @@ "a": "attr", "t": "nexp", "n": 1149.77 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40392,6 +44517,11 @@ "a": "attr", "t": "nexp", "n": 1150.93 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40441,6 +44571,11 @@ "a": "attr", "t": "nexp", "n": 1152.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40490,6 +44625,11 @@ "a": "attr", "t": "nexp", "n": 1153.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40539,6 +44679,11 @@ "a": "attr", "t": "nexp", "n": 1154.4 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40588,6 +44733,11 @@ "a": "attr", "t": "nexp", "n": 1155.56 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40637,6 +44787,11 @@ "a": "attr", "t": "nexp", "n": 1156.72 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40686,6 +44841,11 @@ "a": "attr", "t": "nexp", "n": 1157.87 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40735,6 +44895,11 @@ "a": "attr", "t": "nexp", "n": 1159.03 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40784,6 +44949,11 @@ "a": "attr", "t": "nexp", "n": 1160.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40833,6 +45003,11 @@ "a": "attr", "t": "nexp", "n": 1161.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40882,6 +45057,11 @@ "a": "attr", "t": "nexp", "n": 1162.5 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40931,6 +45111,11 @@ "a": "attr", "t": "nexp", "n": 1163.66 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -40980,6 +45165,11 @@ "a": "attr", "t": "nexp", "n": 1164.81 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -41029,6 +45219,11 @@ "a": "attr", "t": "nexp", "n": 1165.97 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.68 } ], "dlz": [], @@ -41078,6 +45273,11 @@ "a": "attr", "t": "nexp", "n": 1167.13 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -41127,6 +45327,11 @@ "a": "attr", "t": "nexp", "n": 1168.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -41176,6 +45381,11 @@ "a": "attr", "t": "nexp", "n": 1169.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -41225,6 +45435,11 @@ "a": "attr", "t": "nexp", "n": 1170.6 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -41274,6 +45489,11 @@ "a": "attr", "t": "nexp", "n": 1171.76 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -41323,6 +45543,11 @@ "a": "attr", "t": "nexp", "n": 1172.91 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -41372,6 +45597,11 @@ "a": "attr", "t": "nexp", "n": 1174.07 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -41421,6 +45651,11 @@ "a": "attr", "t": "nexp", "n": 1175.23 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -41470,6 +45705,11 @@ "a": "attr", "t": "nexp", "n": 1176.38 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -41519,6 +45759,11 @@ "a": "attr", "t": "nexp", "n": 1177.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -41568,6 +45813,11 @@ "a": "attr", "t": "nexp", "n": 1178.7 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -41617,6 +45867,11 @@ "a": "attr", "t": "nexp", "n": 1179.86 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -41666,6 +45921,11 @@ "a": "attr", "t": "nexp", "n": 1181.01 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -41715,6 +45975,11 @@ "a": "attr", "t": "nexp", "n": 1182.17 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -41764,6 +46029,11 @@ "a": "attr", "t": "nexp", "n": 1183.33 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -41813,6 +46083,11 @@ "a": "attr", "t": "nexp", "n": 1184.48 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -41862,6 +46137,11 @@ "a": "attr", "t": "nexp", "n": 1185.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -41911,6 +46191,11 @@ "a": "attr", "t": "nexp", "n": 1186.8 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -41960,6 +46245,11 @@ "a": "attr", "t": "nexp", "n": 1187.95 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -42009,6 +46299,11 @@ "a": "attr", "t": "nexp", "n": 1189.11 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -42058,6 +46353,11 @@ "a": "attr", "t": "nexp", "n": 1190.27 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -42107,6 +46407,11 @@ "a": "attr", "t": "nexp", "n": 1191.43 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -42156,6 +46461,11 @@ "a": "attr", "t": "nexp", "n": 1192.58 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -42205,6 +46515,11 @@ "a": "attr", "t": "nexp", "n": 1193.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -42254,6 +46569,11 @@ "a": "attr", "t": "nexp", "n": 1194.9 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -42303,6 +46623,11 @@ "a": "attr", "t": "nexp", "n": 1196.05 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -42352,6 +46677,11 @@ "a": "attr", "t": "nexp", "n": 1197.21 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -42401,6 +46731,11 @@ "a": "attr", "t": "nexp", "n": 1198.37 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -42450,6 +46785,11 @@ "a": "attr", "t": "nexp", "n": 1199.52 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -42499,6 +46839,11 @@ "a": "attr", "t": "nexp", "n": 1200.68 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.69 } ], "dlz": [], @@ -42548,6 +46893,11 @@ "a": "attr", "t": "nexp", "n": 1201.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -42597,6 +46947,11 @@ "a": "attr", "t": "nexp", "n": 1203 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -42646,6 +47001,11 @@ "a": "attr", "t": "nexp", "n": 1204.15 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -42695,6 +47055,11 @@ "a": "attr", "t": "nexp", "n": 1205.31 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -42744,6 +47109,11 @@ "a": "attr", "t": "nexp", "n": 1206.47 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -42793,6 +47163,11 @@ "a": "attr", "t": "nexp", "n": 1207.62 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -42842,6 +47217,11 @@ "a": "attr", "t": "nexp", "n": 1208.78 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -42891,6 +47271,11 @@ "a": "attr", "t": "nexp", "n": 1209.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -42940,6 +47325,11 @@ "a": "attr", "t": "nexp", "n": 1211.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -42989,6 +47379,11 @@ "a": "attr", "t": "nexp", "n": 1212.25 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -43038,6 +47433,11 @@ "a": "attr", "t": "nexp", "n": 1213.41 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -43087,6 +47487,11 @@ "a": "attr", "t": "nexp", "n": 1214.57 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -43136,6 +47541,11 @@ "a": "attr", "t": "nexp", "n": 1215.72 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -43185,6 +47595,11 @@ "a": "attr", "t": "nexp", "n": 1216.88 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -43234,6 +47649,11 @@ "a": "attr", "t": "nexp", "n": 1218.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -43283,6 +47703,11 @@ "a": "attr", "t": "nexp", "n": 1219.19 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -43332,6 +47757,11 @@ "a": "attr", "t": "nexp", "n": 1220.35 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -43381,6 +47811,11 @@ "a": "attr", "t": "nexp", "n": 1221.51 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -43430,6 +47865,11 @@ "a": "attr", "t": "nexp", "n": 1222.66 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -43479,6 +47919,11 @@ "a": "attr", "t": "nexp", "n": 1223.82 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -43528,6 +47973,11 @@ "a": "attr", "t": "nexp", "n": 1224.98 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.7 } ], "dlz": [], @@ -43577,6 +48027,11 @@ "a": "attr", "t": "nexp", "n": 1226.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.71 } ], "dlz": [], @@ -43626,6 +48081,11 @@ "a": "attr", "t": "nexp", "n": 1227.29 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.71 } ], "dlz": [], @@ -43675,6 +48135,11 @@ "a": "attr", "t": "nexp", "n": 1228.45 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.71 } ], "dlz": [], @@ -43724,6 +48189,11 @@ "a": "attr", "t": "nexp", "n": 1229.61 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.71 } ], "dlz": [], @@ -43773,6 +48243,11 @@ "a": "attr", "t": "nexp", "n": 1230.76 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.71 } ], "dlz": [], @@ -43822,6 +48297,11 @@ "a": "attr", "t": "nexp", "n": 1231.92 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.72 } ], "dlz": [], @@ -43871,6 +48351,11 @@ "a": "attr", "t": "nexp", "n": 1233.08 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.72 } ], "dlz": [], @@ -43920,6 +48405,11 @@ "a": "attr", "t": "nexp", "n": 1234.23 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.72 } ], "dlz": [], @@ -43969,6 +48459,11 @@ "a": "attr", "t": "nexp", "n": 1235.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.72 } ], "dlz": [], @@ -44018,6 +48513,11 @@ "a": "attr", "t": "nexp", "n": 1236.55 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.72 } ], "dlz": [], @@ -44067,6 +48567,11 @@ "a": "attr", "t": "nexp", "n": 1237.71 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.73 } ], "dlz": [], @@ -44116,6 +48621,11 @@ "a": "attr", "t": "nexp", "n": 1238.86 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.73 } ], "dlz": [], @@ -44165,6 +48675,11 @@ "a": "attr", "t": "nexp", "n": 1240.02 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.73 } ], "dlz": [], @@ -44214,6 +48729,11 @@ "a": "attr", "t": "nexp", "n": 1241.18 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.73 } ], "dlz": [], @@ -44263,6 +48783,11 @@ "a": "attr", "t": "nexp", "n": 1242.33 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.73 } ], "dlz": [], @@ -44312,6 +48837,11 @@ "a": "attr", "t": "nexp", "n": 1243.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.74 } ], "dlz": [], @@ -44361,6 +48891,11 @@ "a": "attr", "t": "nexp", "n": 1244.65 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.74 } ], "dlz": [], @@ -44410,6 +48945,11 @@ "a": "attr", "t": "nexp", "n": 1245.8 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.74 } ], "dlz": [], @@ -44459,6 +48999,11 @@ "a": "attr", "t": "nexp", "n": 1246.96 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.74 } ], "dlz": [], @@ -44508,6 +49053,11 @@ "a": "attr", "t": "nexp", "n": 1248.12 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.74 } ], "dlz": [], @@ -44557,6 +49107,11 @@ "a": "attr", "t": "nexp", "n": 1249.28 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.75 } ], "dlz": [], @@ -44606,6 +49161,11 @@ "a": "attr", "t": "nexp", "n": 1250.43 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.75 } ], "dlz": [], @@ -44655,6 +49215,11 @@ "a": "attr", "t": "nexp", "n": 1251.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.75 } ], "dlz": [], @@ -44704,6 +49269,11 @@ "a": "attr", "t": "nexp", "n": 1252.75 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.75 } ], "dlz": [], @@ -44753,6 +49323,11 @@ "a": "attr", "t": "nexp", "n": 1253.9 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.75 } ], "dlz": [], @@ -44802,6 +49377,11 @@ "a": "attr", "t": "nexp", "n": 1255.06 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.76 } ], "dlz": [], @@ -44851,6 +49431,11 @@ "a": "attr", "t": "nexp", "n": 1256.22 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.76 } ], "dlz": [], @@ -44900,6 +49485,11 @@ "a": "attr", "t": "nexp", "n": 1257.37 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.76 } ], "dlz": [], @@ -44949,6 +49539,11 @@ "a": "attr", "t": "nexp", "n": 1258.53 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.76 } ], "dlz": [], @@ -44998,6 +49593,11 @@ "a": "attr", "t": "nexp", "n": 1259.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.76 } ], "dlz": [], @@ -45047,6 +49647,11 @@ "a": "attr", "t": "nexp", "n": 1260.85 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.77 } ], "dlz": [], @@ -45096,6 +49701,11 @@ "a": "attr", "t": "nexp", "n": 1262 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.77 } ], "dlz": [], @@ -45145,6 +49755,11 @@ "a": "attr", "t": "nexp", "n": 1263.16 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.77 } ], "dlz": [], @@ -45194,6 +49809,11 @@ "a": "attr", "t": "nexp", "n": 1264.32 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.77 } ], "dlz": [], @@ -45243,6 +49863,11 @@ "a": "attr", "t": "nexp", "n": 1265.47 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.77 } ], "dlz": [], @@ -45292,6 +49917,11 @@ "a": "attr", "t": "nexp", "n": 1266.63 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.78 } ], "dlz": [], @@ -45341,6 +49971,11 @@ "a": "attr", "t": "nexp", "n": 1267.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.78 } ], "dlz": [], @@ -45390,6 +50025,11 @@ "a": "attr", "t": "nexp", "n": 1268.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.78 } ], "dlz": [], @@ -45439,6 +50079,11 @@ "a": "attr", "t": "nexp", "n": 1270.1 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.78 } ], "dlz": [], @@ -45488,6 +50133,11 @@ "a": "attr", "t": "nexp", "n": 1271.26 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.78 } ], "dlz": [], @@ -45537,6 +50187,11 @@ "a": "attr", "t": "nexp", "n": 1272.42 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.79 } ], "dlz": [], @@ -45586,6 +50241,11 @@ "a": "attr", "t": "nexp", "n": 1273.57 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.79 } ], "dlz": [], @@ -45635,6 +50295,11 @@ "a": "attr", "t": "nexp", "n": 1274.73 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.79 } ], "dlz": [], @@ -45684,6 +50349,11 @@ "a": "attr", "t": "nexp", "n": 1275.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.79 } ], "dlz": [], @@ -45733,6 +50403,11 @@ "a": "attr", "t": "nexp", "n": 1277.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.79 } ], "dlz": [], @@ -45782,6 +50457,11 @@ "a": "attr", "t": "nexp", "n": 1278.2 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.8 } ], "dlz": [], @@ -45831,6 +50511,11 @@ "a": "attr", "t": "nexp", "n": 1279.36 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.8 } ], "dlz": [], @@ -45880,6 +50565,11 @@ "a": "attr", "t": "nexp", "n": 1280.51 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.8 } ], "dlz": [], @@ -45929,6 +50619,11 @@ "a": "attr", "t": "nexp", "n": 1281.67 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.8 } ], "dlz": [], @@ -45978,6 +50673,11 @@ "a": "attr", "t": "nexp", "n": 1282.83 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.8 } ], "dlz": [], @@ -46027,6 +50727,11 @@ "a": "attr", "t": "nexp", "n": 1283.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.81 } ], "dlz": [], @@ -46076,6 +50781,11 @@ "a": "attr", "t": "nexp", "n": 1285.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.81 } ], "dlz": [], @@ -46125,6 +50835,11 @@ "a": "attr", "t": "nexp", "n": 1286.3 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.81 } ], "dlz": [], @@ -46174,6 +50889,11 @@ "a": "attr", "t": "nexp", "n": 1287.46 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.81 } ], "dlz": [], @@ -46223,6 +50943,11 @@ "a": "attr", "t": "nexp", "n": 1288.61 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.81 } ], "dlz": [], @@ -46272,6 +50997,11 @@ "a": "attr", "t": "nexp", "n": 1289.77 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.82 } ], "dlz": [], @@ -46321,6 +51051,11 @@ "a": "attr", "t": "nexp", "n": 1290.93 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.82 } ], "dlz": [], @@ -46370,6 +51105,11 @@ "a": "attr", "t": "nexp", "n": 1292.08 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.82 } ], "dlz": [], @@ -46419,6 +51159,11 @@ "a": "attr", "t": "nexp", "n": 1293.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.82 } ], "dlz": [], @@ -46468,6 +51213,11 @@ "a": "attr", "t": "nexp", "n": 1294.4 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.82 } ], "dlz": [], @@ -46517,6 +51267,11 @@ "a": "attr", "t": "nexp", "n": 1295.56 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.83 } ], "dlz": [], @@ -46566,6 +51321,11 @@ "a": "attr", "t": "nexp", "n": 1296.71 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.83 } ], "dlz": [], @@ -46615,6 +51375,11 @@ "a": "attr", "t": "nexp", "n": 1297.87 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.83 } ], "dlz": [], @@ -46664,6 +51429,11 @@ "a": "attr", "t": "nexp", "n": 1299.03 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.83 } ], "dlz": [], @@ -46713,6 +51483,11 @@ "a": "attr", "t": "nexp", "n": 1300.18 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.83 } ], "dlz": [], @@ -46762,6 +51537,11 @@ "a": "attr", "t": "nexp", "n": 1301.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.84 } ], "dlz": [], @@ -46811,6 +51591,11 @@ "a": "attr", "t": "nexp", "n": 1302.5 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.84 } ], "dlz": [], @@ -46860,6 +51645,11 @@ "a": "attr", "t": "nexp", "n": 1303.65 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.84 } ], "dlz": [], @@ -46909,6 +51699,11 @@ "a": "attr", "t": "nexp", "n": 1304.81 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.84 } ], "dlz": [], @@ -46958,6 +51753,11 @@ "a": "attr", "t": "nexp", "n": 1305.97 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.84 } ], "dlz": [], @@ -47007,6 +51807,11 @@ "a": "attr", "t": "nexp", "n": 1307.13 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.85 } ], "dlz": [], @@ -47056,6 +51861,11 @@ "a": "attr", "t": "nexp", "n": 1308.28 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.85 } ], "dlz": [], @@ -47105,6 +51915,11 @@ "a": "attr", "t": "nexp", "n": 1309.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.85 } ], "dlz": [], @@ -47154,6 +51969,11 @@ "a": "attr", "t": "nexp", "n": 1310.6 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.85 } ], "dlz": [], @@ -47203,6 +52023,11 @@ "a": "attr", "t": "nexp", "n": 1311.75 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.85 } ], "dlz": [], @@ -47252,6 +52077,11 @@ "a": "attr", "t": "nexp", "n": 1312.91 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.86 } ], "dlz": [], @@ -47301,6 +52131,11 @@ "a": "attr", "t": "nexp", "n": 1314.07 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.86 } ], "dlz": [], @@ -47350,6 +52185,11 @@ "a": "attr", "t": "nexp", "n": 1315.22 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.86 } ], "dlz": [], @@ -47399,6 +52239,11 @@ "a": "attr", "t": "nexp", "n": 1316.38 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.86 } ], "dlz": [], @@ -47448,6 +52293,11 @@ "a": "attr", "t": "nexp", "n": 1317.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.86 } ], "dlz": [], @@ -47497,6 +52347,11 @@ "a": "attr", "t": "nexp", "n": 1318.7 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.87 } ], "dlz": [], @@ -47546,6 +52401,11 @@ "a": "attr", "t": "nexp", "n": 1319.85 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.87 } ], "dlz": [], @@ -47595,6 +52455,11 @@ "a": "attr", "t": "nexp", "n": 1321.01 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.87 } ], "dlz": [], @@ -47644,6 +52509,11 @@ "a": "attr", "t": "nexp", "n": 1322.17 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.87 } ], "dlz": [], @@ -47693,6 +52563,11 @@ "a": "attr", "t": "nexp", "n": 1323.32 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.87 } ], "dlz": [], @@ -47742,6 +52617,11 @@ "a": "attr", "t": "nexp", "n": 1324.48 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.88 } ], "dlz": [], @@ -47791,6 +52671,11 @@ "a": "attr", "t": "nexp", "n": 1325.64 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.88 } ], "dlz": [], @@ -47840,6 +52725,11 @@ "a": "attr", "t": "nexp", "n": 1326.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.88 } ], "dlz": [], @@ -47889,6 +52779,11 @@ "a": "attr", "t": "nexp", "n": 1327.95 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.88 } ], "dlz": [], @@ -47938,6 +52833,11 @@ "a": "attr", "t": "nexp", "n": 1329.11 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.88 } ], "dlz": [], @@ -47987,6 +52887,11 @@ "a": "attr", "t": "nexp", "n": 1330.27 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.89 } ], "dlz": [], @@ -48036,6 +52941,11 @@ "a": "attr", "t": "nexp", "n": 1331.42 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.89 } ], "dlz": [], @@ -48085,6 +52995,11 @@ "a": "attr", "t": "nexp", "n": 1332.58 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.89 } ], "dlz": [], @@ -48134,6 +53049,11 @@ "a": "attr", "t": "nexp", "n": 1333.74 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.89 } ], "dlz": [], @@ -48183,6 +53103,11 @@ "a": "attr", "t": "nexp", "n": 1334.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.89 } ], "dlz": [], @@ -48232,6 +53157,11 @@ "a": "attr", "t": "nexp", "n": 1336.05 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.9 } ], "dlz": [], @@ -48281,6 +53211,11 @@ "a": "attr", "t": "nexp", "n": 1337.21 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.9 } ], "dlz": [], @@ -48330,6 +53265,11 @@ "a": "attr", "t": "nexp", "n": 1338.36 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.9 } ], "dlz": [], @@ -48379,6 +53319,11 @@ "a": "attr", "t": "nexp", "n": 1339.52 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.9 } ], "dlz": [], @@ -48428,6 +53373,11 @@ "a": "attr", "t": "nexp", "n": 1340.52 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.9 } ], "dlz": [], @@ -48477,6 +53427,11 @@ "a": "attr", "t": "nexp", "n": 1341.84 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.91 } ], "dlz": [], @@ -48526,6 +53481,11 @@ "a": "attr", "t": "nexp", "n": 1342.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.91 } ], "dlz": [], @@ -48575,6 +53535,11 @@ "a": "attr", "t": "nexp", "n": 1344.15 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.91 } ], "dlz": [], @@ -48624,6 +53589,11 @@ "a": "attr", "t": "nexp", "n": 1345.31 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.91 } ], "dlz": [], @@ -48673,6 +53643,11 @@ "a": "attr", "t": "nexp", "n": 1346.46 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.91 } ], "dlz": [], @@ -48722,6 +53697,11 @@ "a": "attr", "t": "nexp", "n": 1347.62 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.92 } ], "dlz": [], @@ -48771,6 +53751,11 @@ "a": "attr", "t": "nexp", "n": 1348.78 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.92 } ], "dlz": [], @@ -48820,6 +53805,11 @@ "a": "attr", "t": "nexp", "n": 1349.93 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.92 } ], "dlz": [], @@ -48869,6 +53859,11 @@ "a": "attr", "t": "nexp", "n": 1351.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.92 } ], "dlz": [], @@ -48918,6 +53913,11 @@ "a": "attr", "t": "nexp", "n": 1352.25 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.92 } ], "dlz": [], @@ -48967,6 +53967,11 @@ "a": "attr", "t": "nexp", "n": 1353.4 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.93 } ], "dlz": [], @@ -49016,6 +54021,11 @@ "a": "attr", "t": "nexp", "n": 1354.6 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.93 } ], "dlz": [], @@ -49065,6 +54075,11 @@ "a": "attr", "t": "nexp", "n": 1355.7 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.93 } ], "dlz": [], @@ -49114,6 +54129,11 @@ "a": "attr", "t": "nexp", "n": 1356.9 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.93 } ], "dlz": [], @@ -49163,6 +54183,11 @@ "a": "attr", "t": "nexp", "n": 1358 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.93 } ], "dlz": [], @@ -49212,6 +54237,11 @@ "a": "attr", "t": "nexp", "n": 1359.2 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.94 } ], "dlz": [], @@ -49261,6 +54291,11 @@ "a": "attr", "t": "nexp", "n": 1360.3 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.94 } ], "dlz": [], @@ -49310,6 +54345,11 @@ "a": "attr", "t": "nexp", "n": 1361.5 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.94 } ], "dlz": [], @@ -49359,6 +54399,11 @@ "a": "attr", "t": "nexp", "n": 1362.7 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.94 } ], "dlz": [], @@ -49408,6 +54453,11 @@ "a": "attr", "t": "nexp", "n": 1363.8 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.94 } ], "dlz": [], @@ -49457,6 +54507,11 @@ "a": "attr", "t": "nexp", "n": 1365 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.95 } ], "dlz": [], @@ -49506,6 +54561,11 @@ "a": "attr", "t": "nexp", "n": 1366.1 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.95 } ], "dlz": [], @@ -49555,6 +54615,11 @@ "a": "attr", "t": "nexp", "n": 1367.3 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.95 } ], "dlz": [], @@ -49604,6 +54669,11 @@ "a": "attr", "t": "nexp", "n": 1368.4 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.95 } ], "dlz": [], @@ -49653,6 +54723,11 @@ "a": "attr", "t": "nexp", "n": 1369.6 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.95 } ], "dlz": [], @@ -49702,6 +54777,11 @@ "a": "attr", "t": "nexp", "n": 1370.8 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.96 } ], "dlz": [], @@ -49751,6 +54831,11 @@ "a": "attr", "t": "nexp", "n": 1371.9 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.96 } ], "dlz": [], @@ -49800,6 +54885,11 @@ "a": "attr", "t": "nexp", "n": 1373.1 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.96 } ], "dlz": [], @@ -49849,6 +54939,11 @@ "a": "attr", "t": "nexp", "n": 1374.2 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.96 } ], "dlz": [], @@ -49898,6 +54993,11 @@ "a": "attr", "t": "nexp", "n": 1375.4 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.96 } ], "dlz": [], @@ -49947,6 +55047,11 @@ "a": "attr", "t": "nexp", "n": 1376.5 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.97 } ], "dlz": [], @@ -49996,6 +55101,11 @@ "a": "attr", "t": "nexp", "n": 1377.7 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.97 } ], "dlz": [], @@ -50045,6 +55155,11 @@ "a": "attr", "t": "nexp", "n": 1378.9 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.97 } ], "dlz": [], @@ -50094,6 +55209,11 @@ "a": "attr", "t": "nexp", "n": 1380 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.97 } ], "dlz": [], @@ -50143,6 +55263,11 @@ "a": "attr", "t": "nexp", "n": 1381.2 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.97 } ], "dlz": [], @@ -50192,6 +55317,11 @@ "a": "attr", "t": "nexp", "n": 1382.3 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.98 } ], "dlz": [], @@ -50241,6 +55371,11 @@ "a": "attr", "t": "nexp", "n": 1383.5 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.98 } ], "dlz": [], @@ -50290,6 +55425,11 @@ "a": "attr", "t": "nexp", "n": 1384.6 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.98 } ], "dlz": [], @@ -50339,6 +55479,11 @@ "a": "attr", "t": "nexp", "n": 1385.8 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.98 } ], "dlz": [], @@ -50388,6 +55533,11 @@ "a": "attr", "t": "nexp", "n": 1387 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.98 } ], "dlz": [], @@ -50437,6 +55587,11 @@ "a": "attr", "t": "nexp", "n": 1388.1 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.99 } ], "dlz": [], @@ -50486,6 +55641,11 @@ "a": "attr", "t": "nexp", "n": 1389.3 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.99 } ], "dlz": [], @@ -50535,6 +55695,11 @@ "a": "attr", "t": "nexp", "n": 1390.4 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.99 } ], "dlz": [], @@ -50584,6 +55749,11 @@ "a": "attr", "t": "nexp", "n": 1391.6 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.99 } ], "dlz": [], @@ -50633,6 +55803,11 @@ "a": "attr", "t": "nexp", "n": 1392.7 + }, + { + "a": "attr", + "t": "weiwang", + "n": 0.99 } ], "dlz": [], @@ -50682,6 +55857,11 @@ "a": "attr", "t": "nexp", "n": 1393.9 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1 } ], "dlz": [], @@ -50731,6 +55911,11 @@ "a": "attr", "t": "nexp", "n": 1395.1 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1 } ], "dlz": [], @@ -50780,6 +55965,11 @@ "a": "attr", "t": "nexp", "n": 1396.2 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1 } ], "dlz": [], @@ -50829,6 +56019,11 @@ "a": "attr", "t": "nexp", "n": 1397.4 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1 } ], "dlz": [], @@ -50878,6 +56073,11 @@ "a": "attr", "t": "nexp", "n": 1398.5 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1 } ], "dlz": [], @@ -50927,6 +56127,11 @@ "a": "attr", "t": "nexp", "n": 1399.7 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.01 } ], "dlz": [], @@ -50976,6 +56181,11 @@ "a": "attr", "t": "nexp", "n": 1400.8 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.01 } ], "dlz": [], @@ -51025,6 +56235,11 @@ "a": "attr", "t": "nexp", "n": 1402 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.01 } ], "dlz": [], @@ -51074,6 +56289,11 @@ "a": "attr", "t": "nexp", "n": 1403.2 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.01 } ], "dlz": [], @@ -51123,6 +56343,11 @@ "a": "attr", "t": "nexp", "n": 1404.3 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.01 } ], "dlz": [], @@ -51172,6 +56397,11 @@ "a": "attr", "t": "nexp", "n": 1405.5 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.02 } ], "dlz": [], @@ -51221,6 +56451,11 @@ "a": "attr", "t": "nexp", "n": 1406.6 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.02 } ], "dlz": [], @@ -51270,6 +56505,11 @@ "a": "attr", "t": "nexp", "n": 1407.8 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.02 } ], "dlz": [], @@ -51319,6 +56559,11 @@ "a": "attr", "t": "nexp", "n": 1408.9 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.02 } ], "dlz": [], @@ -51368,6 +56613,11 @@ "a": "attr", "t": "nexp", "n": 1410.1 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.02 } ], "dlz": [], @@ -51417,6 +56667,11 @@ "a": "attr", "t": "nexp", "n": 1411.3 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.03 } ], "dlz": [], @@ -51466,6 +56721,11 @@ "a": "attr", "t": "nexp", "n": 1412.4 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.03 } ], "dlz": [], @@ -51515,6 +56775,11 @@ "a": "attr", "t": "nexp", "n": 1413.6 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.03 } ], "dlz": [], @@ -51564,6 +56829,11 @@ "a": "attr", "t": "nexp", "n": 1414.7 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.03 } ], "dlz": [], @@ -51613,6 +56883,11 @@ "a": "attr", "t": "nexp", "n": 1415.9 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.03 } ], "dlz": [], @@ -51662,6 +56937,11 @@ "a": "attr", "t": "nexp", "n": 1417 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.04 } ], "dlz": [], @@ -51711,6 +56991,11 @@ "a": "attr", "t": "nexp", "n": 1418.2 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.04 } ], "dlz": [], @@ -51760,6 +57045,11 @@ "a": "attr", "t": "nexp", "n": 1419.4 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.04 } ], "dlz": [], @@ -51809,6 +57099,11 @@ "a": "attr", "t": "nexp", "n": 1420.5 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.04 } ], "dlz": [], @@ -51858,6 +57153,11 @@ "a": "attr", "t": "nexp", "n": 1421.7 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.04 } ], "dlz": [], @@ -51907,6 +57207,11 @@ "a": "attr", "t": "nexp", "n": 1422.8 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.05 } ], "dlz": [], @@ -51956,6 +57261,11 @@ "a": "attr", "t": "nexp", "n": 1424 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.05 } ], "dlz": [], @@ -52005,6 +57315,11 @@ "a": "attr", "t": "nexp", "n": 1425.1 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.05 } ], "dlz": [], @@ -52054,6 +57369,11 @@ "a": "attr", "t": "nexp", "n": 1426.3 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.05 } ], "dlz": [], @@ -52103,6 +57423,11 @@ "a": "attr", "t": "nexp", "n": 1427.5 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.05 } ], "dlz": [], @@ -52152,6 +57477,11 @@ "a": "attr", "t": "nexp", "n": 1428.6 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.06 } ], "dlz": [], @@ -52201,6 +57531,11 @@ "a": "attr", "t": "nexp", "n": 1429.8 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.06 } ], "dlz": [], @@ -52250,6 +57585,11 @@ "a": "attr", "t": "nexp", "n": 1430.9 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.06 } ], "dlz": [], @@ -52299,6 +57639,11 @@ "a": "attr", "t": "nexp", "n": 1432.1 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.06 } ], "dlz": [], @@ -52348,6 +57693,11 @@ "a": "attr", "t": "nexp", "n": 1433.2 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.06 } ], "dlz": [], @@ -52397,6 +57747,11 @@ "a": "attr", "t": "nexp", "n": 1434.4 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.07 } ], "dlz": [], @@ -52446,6 +57801,11 @@ "a": "attr", "t": "nexp", "n": 1435.6 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.07 } ], "dlz": [], @@ -52495,6 +57855,11 @@ "a": "attr", "t": "nexp", "n": 1436.7 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.07 } ], "dlz": [], @@ -52544,6 +57909,11 @@ "a": "attr", "t": "nexp", "n": 1437.9 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.07 } ], "dlz": [], @@ -52593,6 +57963,11 @@ "a": "attr", "t": "nexp", "n": 1439 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.07 } ], "dlz": [], @@ -52642,6 +58017,11 @@ "a": "attr", "t": "nexp", "n": 1440.2 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.08 } ], "dlz": [], @@ -52691,6 +58071,11 @@ "a": "attr", "t": "nexp", "n": 1441.3 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.08 } ], "dlz": [], @@ -52740,6 +58125,11 @@ "a": "attr", "t": "nexp", "n": 1442.5 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.08 } ], "dlz": [], @@ -52789,6 +58179,11 @@ "a": "attr", "t": "nexp", "n": 1443.7 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.08 } ], "dlz": [], @@ -52838,6 +58233,11 @@ "a": "attr", "t": "nexp", "n": 1444.8 + }, + { + "a": "attr", + "t": "weiwang", + "n": 1.08 } ], "dlz": [], diff --git a/src/json/tuisonglibao.json b/src/json/tuisonglibao.json index 4880ba6..c180fd0 100644 --- a/src/json/tuisonglibao.json +++ b/src/json/tuisonglibao.json @@ -388,10 +388,10 @@ "type": 5, "typeName": "tuisonglibao_name_1", "num": [ - 15 + 10 ], "payId": [ - "lv15" + "lv10" ], "time": 10800, "displayCD": 10800, diff --git a/src/json/xstask.json b/src/json/xstask.json index e89ed6a..d59e98c 100644 --- a/src/json/xstask.json +++ b/src/json/xstask.json @@ -14,9 +14,10 @@ "n": 10000 } ], - "p": 3, + "p": 5, "intr": "intr_xuanshangrenwu_intr_1", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "2": { "id": 2, @@ -33,9 +34,10 @@ "n": 80 } ], - "p": 4, + "p": 3, "intr": "intr_xuanshangrenwu_intr_2", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "3": { "id": 3, @@ -54,7 +56,8 @@ ], "p": 5, "intr": "intr_xuanshangrenwu_intr_3", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "4": { "id": 4, @@ -71,9 +74,10 @@ "n": 30 } ], - "p": 6, + "p": 1, "intr": "intr_xuanshangrenwu_intr_4", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 3 }, "5": { "id": 5, @@ -90,9 +94,10 @@ "n": 20000 } ], - "p": 7, + "p": 3, "intr": "intr_xuanshangrenwu_intr_5", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "6": { "id": 6, @@ -109,9 +114,10 @@ "n": 60 } ], - "p": 8, + "p": 5, "intr": "intr_xuanshangrenwu_intr_4", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 3 }, "7": { "id": 7, @@ -128,9 +134,10 @@ "n": 20000 } ], - "p": 9, + "p": 3, "intr": "intr_xuanshangrenwu_intr_5", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "8": { "id": 8, @@ -147,9 +154,10 @@ "n": 40000 } ], - "p": 10, + "p": 5, "intr": "intr_xuanshangrenwu_intr_6", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "9": { "id": 9, @@ -166,9 +174,10 @@ "n": 110 } ], - "p": 11, + "p": 1, "intr": "intr_xuanshangrenwu_intr_7", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "10": { "id": 10, @@ -185,9 +194,10 @@ "n": 30000 } ], - "p": 12, + "p": 3, "intr": "intr_xuanshangrenwu_intr_8", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "11": { "id": 11, @@ -204,9 +214,10 @@ "n": 30000 } ], - "p": 13, + "p": 5, "intr": "intr_xuanshangrenwu_intr_6", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "12": { "id": 12, @@ -223,9 +234,10 @@ "n": 140 } ], - "p": 14, + "p": 3, "intr": "intr_xuanshangrenwu_intr_7", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "13": { "id": 13, @@ -242,9 +254,10 @@ "n": 60000 } ], - "p": 15, + "p": 3, "intr": "intr_xuanshangrenwu_intr_8", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "14": { "id": 14, @@ -261,9 +274,10 @@ "n": 40000 } ], - "p": 16, + "p": 5, "intr": "intr_xuanshangrenwu_intr_9", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "15": { "id": 15, @@ -280,9 +294,10 @@ "n": 90 } ], - "p": 17, + "p": 2, "intr": "intr_xuanshangrenwu_intr_10", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 3 }, "16": { "id": 16, @@ -299,9 +314,10 @@ "n": 40000 } ], - "p": 18, + "p": 4, "intr": "intr_xuanshangrenwu_intr_8", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "17": { "id": 17, @@ -318,9 +334,10 @@ "n": 50000 } ], - "p": 19, + "p": 5, "intr": "intr_xuanshangrenwu_intr_9", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "18": { "id": 18, @@ -337,9 +354,10 @@ "n": 120 } ], - "p": 20, + "p": 1, "intr": "intr_xuanshangrenwu_intr_10", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 3 }, "19": { "id": 19, @@ -356,9 +374,10 @@ "n": 80000 } ], - "p": 21, + "p": 4, "intr": "intr_xuanshangrenwu_intr_11", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "20": { "id": 20, @@ -375,9 +394,10 @@ "n": 170 } ], - "p": 22, + "p": 4, "intr": "intr_xuanshangrenwu_intr_12", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "21": { "id": 21, @@ -394,9 +414,10 @@ "n": 100000 } ], - "p": 23, + "p": 3, "intr": "intr_xuanshangrenwu_intr_11", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "22": { "id": 22, @@ -413,9 +434,10 @@ "n": 200 } ], - "p": 24, + "p": 2, "intr": "intr_xuanshangrenwu_intr_12", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "23": { "id": 23, @@ -432,9 +454,10 @@ "n": 150 } ], - "p": 25, + "p": 1, "intr": "intr_xuanshangrenwu_intr_13", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 3 }, "24": { "id": 24, @@ -451,9 +474,10 @@ "n": 50000 } ], - "p": 26, + "p": 5, "intr": "intr_xuanshangrenwu_intr_14", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "25": { "id": 25, @@ -470,9 +494,10 @@ "n": 60000 } ], - "p": 27, + "p": 2, "intr": "intr_xuanshangrenwu_intr_15", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "26": { "id": 26, @@ -489,9 +514,10 @@ "n": 60000 } ], - "p": 28, + "p": 5, "intr": "intr_xuanshangrenwu_intr_14", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "27": { "id": 27, @@ -508,9 +534,10 @@ "n": 75000 } ], - "p": 29, + "p": 5, "intr": "intr_xuanshangrenwu_intr_15", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "28": { "id": 28, @@ -527,9 +554,10 @@ "n": 180 } ], - "p": 30, + "p": 1, "intr": "intr_xuanshangrenwu_intr_16", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 3 }, "29": { "id": 29, @@ -546,9 +574,10 @@ "n": 230 } ], - "p": 31, + "p": 2, "intr": "intr_xuanshangrenwu_intr_17", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 }, "30": { "id": 30, @@ -565,8 +594,9 @@ "n": 120000 } ], - "p": 32, + "p": 4, "intr": "intr_xuanshangrenwu_intr_18", - "img": "icon_jinbi" + "img": "icon_jinbi", + "appearNum": 0 } } \ No newline at end of file diff --git a/src/jsonType.ts b/src/jsonType.ts index 59a07a6..13d4b3e 100644 --- a/src/jsonType.ts +++ b/src/jsonType.ts @@ -124,9 +124,9 @@ type gc_clsl_dan = k_v<{ /** 机器人 */ 'npc': number, /** 随机机器人概率*/ - 'pro':number + 'pro': number /** 对手范围 */ - 'fighter':number[] + 'fighter': number[] }>; type gc_com = k_v<{ @@ -1797,6 +1797,28 @@ type gc_push_gift = { } } +type gc_hero_skin = { + [k: string]: { + /**皮肤id*/ + id: number + /**干部id*/ + heroid: number + /**皮肤品质*/ + colour: number + /**摸到重复时转换*/ + zhuanhuan: atn[] + } +} + +type gc_hero_skin_lv = { + [colour: string]: { + [lv: string]: { + buff: { [k: string]: number } + need: { a: string, t: string, n: number }[]; + } + } +} + type gcType = { [key: string]: any armyattr: gc_armyattr @@ -1946,7 +1968,8 @@ type gcType = { kfcb_prize: gc_kfcb_prize yuyuemail: gc_yuyuemail tuisonglibao: gc_push_gift - + heroSkin: gc_hero_skin + heroSkinLv: gc_hero_skin_lv } @@ -1957,4 +1980,3 @@ declare global { export function initGcType() { } - \ No newline at end of file diff --git a/src/lng.ts b/src/lng.ts index dc754fb..f6b4467 100644 --- a/src/lng.ts +++ b/src/lng.ts @@ -239,6 +239,9 @@ class Lng { hero_17 = "hero_17"; hero_18 = "hero_18"; hero_19 = "hero_19"; + hero_20 = "hero_20"; + hero_21 = "hero_21"; + hero_22 = "hero_22"; item_1 = "item_1"; item_2 = "item_2"; diff --git a/src/module/mongodb.ts b/src/module/mongodb.ts index 8bcacc7..664852b 100644 --- a/src/module/mongodb.ts +++ b/src/module/mongodb.ts @@ -1,25 +1,25 @@ -import {ResSyncBtn} from '../shared/protocols/PtlSyncBtn'; -import {payLog} from '../shared/protocols/pay/PtlGetList'; -import {rankType} from '../shared/protocols/rank/PtlOpen'; -import {CollectionChatLog} from './collection_chatlog'; -import {CollectionActionLog} from './collection_actionLog'; -import {CollectionCardlog} from './collection_cardlog'; -import {CollectionCllsCrossGroup, CollectionCllsCrossUser} from './collection_clsl'; -import {CollectionCrosskv} from './collection_crosskv'; -import {CollectionDayPay} from './collection_dayPay'; -import {CollectionDxlt} from './collection_dxlt'; -import {CollectionEmail} from './collection_email'; -import {CollectionEquip} from './collection_equip'; -import {CollectionEvent} from './collection_event'; -import {CollectionFriend} from './collection_friend'; -import {CollectionGanHai} from './collection_ganhai'; -import {CollectionGBTX} from './collection_gbtx'; -import {CollectionGongHui, CollectionGongHuiFb, CollectionGongHuiUser} from './collection_gonghui'; -import {CollectionHbzbUserCross, CollectionHbzbUserZbs} from './collection_hbzb_user_cross'; -import {CollectionHero} from './collection_hero'; -import {CollectionItem} from './collection_item'; -import {CollectionJJC} from './collection_jjc'; -import {CollectionApiWeiXiuChang} from './collection_weixiuchang'; +import { ResSyncBtn } from '../shared/protocols/PtlSyncBtn'; +import { payLog } from '../shared/protocols/pay/PtlGetList'; +import { rankType } from '../shared/protocols/rank/PtlOpen'; +import { CollectionChatLog } from './collection_chatlog'; +import { CollectionActionLog } from './collection_actionLog'; +import { CollectionCardlog } from './collection_cardlog'; +import { CollectionCllsCrossGroup, CollectionCllsCrossUser } from './collection_clsl'; +import { CollectionCrosskv } from './collection_crosskv'; +import { CollectionDayPay } from './collection_dayPay'; +import { CollectionDxlt } from './collection_dxlt'; +import { CollectionEmail } from './collection_email'; +import { CollectionEquip } from './collection_equip'; +import { CollectionEvent } from './collection_event'; +import { CollectionFriend } from './collection_friend'; +import { CollectionGanHai } from './collection_ganhai'; +import { CollectionGBTX } from './collection_gbtx'; +import { CollectionGongHui, CollectionGongHuiFb, CollectionGongHuiUser } from './collection_gonghui'; +import { CollectionHbzbUserCross, CollectionHbzbUserZbs } from './collection_hbzb_user_cross'; +import { CollectionHero } from './collection_hero'; +import { CollectionItem } from './collection_item'; +import { CollectionJJC } from './collection_jjc'; +import { CollectionApiWeiXiuChang } from './collection_weixiuchang'; import { CollectionKbzzApplyUser, @@ -27,39 +27,39 @@ import { CollectionKbzzGroupTroop, CollectionKbzzGroupUser } from './collection_kbzz'; -import {CollectionKuangDong} from './collection_kuangdong'; -import {CollectionLingZhuLaiXi} from './collection_lingzhulaixi'; -import {CollectionMingdao} from './collection_mingdao'; -import {CollectionPlayerInfo} from './collection_palyerInfo'; -import {CollectionPata} from './collection_pata'; -import {CollectionPeiJian} from './collection_peijian'; -import {CollectionPlayAttr} from './collection_playattr'; -import {CollectionRank, CollectionRankList} from './collection_rank'; -import {CollectionRecord} from './collection_record'; -import {CollectionSchedler} from './collection_scheduler'; -import {CollectionShiwu} from './collection_shiwu'; -import {CollectionSlzdGh, CollectionSlzdUser, CollectionSlzdStash} from './collection_slzd'; -import {CollectionTanXian} from './collection_tanxian'; -import {CollectionTask} from './collection_task'; -import {CollectionUser} from './collection_user'; -import {CollectionWanted} from './collection_wanted'; -import {CollectionWjjl} from './collection_wjjl'; -import {CollectionWzryCross} from './collection_wzry_user_cross'; -import {CollectionWzryCrossFight} from './collection_wzryfight'; -import {CollectionWzryCrossFightLOG} from './collection_wzryfightlOG'; -import {CollectionWzryCrossWiner} from './collection_wzrywiner'; -import {CollectionXstask} from './collection_xstask'; -import {CollectionZhanLing} from './collection_zhanling'; -import {CollectionHdinfo} from './collection_hdinfo'; -import {CollectionGiftLog} from "./collection_giftLog"; -import {CollectionLoginLog} from "./collection_loginLog"; -import {CollectionPayLogNew} from "./collection_payLogNew"; -import {CollectionApiCount} from "./collection_apiCount"; -import {CollectionPlayerBehavior} from "./collection_player_behavior"; -import {CollectionRmbuse} from "./collection_rmbuse"; -import {CollectionFightLog} from "./collection_fightLog"; -import {CollectionShop} from "./collection_shop"; -import {CollectionPushGift} from "./collection_pushgift"; +import { CollectionKuangDong } from './collection_kuangdong'; +import { CollectionLingZhuLaiXi } from './collection_lingzhulaixi'; +import { CollectionMingdao } from './collection_mingdao'; +import { CollectionPlayerInfo } from './collection_palyerInfo'; +import { CollectionPata } from './collection_pata'; +import { CollectionPeiJian } from './collection_peijian'; +import { CollectionPlayAttr } from './collection_playattr'; +import { CollectionRank, CollectionRankList } from './collection_rank'; +import { CollectionRecord } from './collection_record'; +import { CollectionSchedler } from './collection_scheduler'; +import { CollectionShiwu } from './collection_shiwu'; +import { CollectionSlzdGh, CollectionSlzdUser, CollectionSlzdStash } from './collection_slzd'; +import { CollectionTanXian } from './collection_tanxian'; +import { CollectionTask } from './collection_task'; +import { CollectionUser } from './collection_user'; +import { CollectionWanted } from './collection_wanted'; +import { CollectionWjjl } from './collection_wjjl'; +import { CollectionWzryCross } from './collection_wzry_user_cross'; +import { CollectionWzryCrossFight } from './collection_wzryfight'; +import { CollectionWzryCrossFightLOG } from './collection_wzryfightlOG'; +import { CollectionWzryCrossWiner } from './collection_wzrywiner'; +import { CollectionXstask } from './collection_xstask'; +import { CollectionZhanLing } from './collection_zhanling'; +import { CollectionHdinfo } from './collection_hdinfo'; +import { CollectionGiftLog } from "./collection_giftLog"; +import { CollectionLoginLog } from "./collection_loginLog"; +import { CollectionPayLogNew } from "./collection_payLogNew"; +import { CollectionApiCount } from "./collection_apiCount"; +import { CollectionPlayerBehavior } from "./collection_player_behavior"; +import { CollectionRmbuse } from "./collection_rmbuse"; +import { CollectionFightLog } from "./collection_fightLog"; +import { CollectionShop } from "./collection_shop"; +import { CollectionPushGift } from "./collection_pushgift"; export type MongodbCollections = { user: CollectionUser; @@ -133,7 +133,7 @@ export type MongodbCollections = { rmbuse: CollectionRmbuse fightLog: CollectionFightLog shop: CollectionShop - pushgift:CollectionPushGift + pushgift: CollectionPushGift huodong_user: CollectionUser; }; \ No newline at end of file diff --git a/src/monopoly/protocols/serviceProto.ts b/src/monopoly/protocols/serviceProto.ts index 3d8d36f..cc7066d 100644 --- a/src/monopoly/protocols/serviceProto.ts +++ b/src/monopoly/protocols/serviceProto.ts @@ -2637,6 +2637,20 @@ export const serviceProto: ServiceProto = { } }, "optional": true + }, + { + "id": 38, + "name": "heroskin", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true } ] }, diff --git a/src/public/heroskin.ts b/src/public/heroskin.ts new file mode 100644 index 0000000..f0e0504 --- /dev/null +++ b/src/public/heroskin.ts @@ -0,0 +1,49 @@ +import { ApiCall } from "tsrpc"; +import { call } from "../public/player"; +import { PlayerFun } from "./player"; + + +export default class HeroSkinFun { + + /** + * 获取英雄皮肤列表 + * @param uid + * @returns + */ + static getHeroSkin(call: call, oids: string | string[] = '') { + return call.conn.gud.heroskin || {}; + } + + /** + * 更新英雄皮肤数据 + * + * 说明 addAttr 会推送msg_s2c/PlayerChange + * addEventMsg 会检测 PlayerChange 如果change的key在player中则触发重算战力操作 + * 所以这个地放更新heroskin数据不需要主动重算战力 + * @param oid + * @param data + * @returns + * */ + static async updateHeroSkinLv(call: ApiCall, change: k_v) { + let skin = this.getHeroSkin(call); + skin = Object.assign(skin, change); + await PlayerFun.addAttr(call, { heroskin: skin }); + } + + /** + * 计算皮肤buff + * @param skid + * @param lv + * @returns {[string]: number} + * */ + static calcBuff(skid: string, lv: number): k_v { + let buff = {}; + let skin = G.gc.heroSkin[skid]; + for (let i = 1; i <= lv; i++) { + for (let k in G.gc.heroSkinLv[skin.colour][i].buff) { + buff[k] = (buff[k] || 0) + G.gc.heroSkinLv[skin.colour][i].buff[k]; + } + } + return buff; + } +} \ No newline at end of file diff --git a/src/public/player.ts b/src/public/player.ts index 2647bce..5c6e168 100644 --- a/src/public/player.ts +++ b/src/public/player.ts @@ -1,24 +1,25 @@ -import {ObjectId, OptionalId} from 'mongodb'; -import {ApiCall, BaseConnection, TsrpcError} from 'tsrpc'; -import {checkPlayerGift} from '../api_s2c/event/xianshilibao/fun'; -import {md_redPoint_check} from '../api_s2c/gongyu/mingdao/ApiOpen'; -import {CollectionPeiJian} from '../module/collection_peijian'; -import {Wjjl} from '../module/collection_wjjl'; -import {MongodbCollections} from '../module/mongodb'; -import {G123} from '../sdk/G123'; -import {ResGetList} from '../shared/protocols/item/PtlGetList'; -import {ResLogin} from '../shared/protocols/user/PtlLogin'; -import {player} from '../shared/protocols/user/type'; -import {HeroShared, otherBuff} from '../shared/public/hero'; -import {PublicShared} from '../shared/public/public'; -import {HeroFun} from './hero'; -import {ShiwuFun} from './shiwu'; -import {UserFun} from './user'; -import {getItemByItemId, getItemNum} from './item'; -import {getGud, setGud} from './gud'; -import {addGameLog} from "../gameLog"; -import {PushGiftFun} from "./pushgift"; +import { ObjectId, OptionalId } from 'mongodb'; +import { ApiCall, BaseConnection, TsrpcError } from 'tsrpc'; +import { checkPlayerGift } from '../api_s2c/event/xianshilibao/fun'; +import { md_redPoint_check } from '../api_s2c/gongyu/mingdao/ApiOpen'; +import { CollectionPeiJian } from '../module/collection_peijian'; +import { Wjjl } from '../module/collection_wjjl'; +import { MongodbCollections } from '../module/mongodb'; +import { G123 } from '../sdk/G123'; +import { ResGetList } from '../shared/protocols/item/PtlGetList'; +import { ResLogin } from '../shared/protocols/user/PtlLogin'; +import { player } from '../shared/protocols/user/type'; +import { HeroShared, otherBuff } from '../shared/public/hero'; +import { PublicShared } from '../shared/public/public'; +import { HeroFun } from './hero'; +import { ShiwuFun } from './shiwu'; +import { UserFun } from './user'; +import { getItemByItemId, getItemNum } from './item'; +import { getGud, setGud } from './gud'; +import { addGameLog } from "../gameLog"; +import { PushGiftFun } from "./pushgift"; import { ActionLog } from './actionLog/actionLog'; +import HeroSkinFun from './heroskin'; export type call = { @@ -70,13 +71,13 @@ export class PlayerFun { if (err) { // 消耗不足 触发推送礼包 PushGiftFun.chkItemGift(call.uid, atn) - throw new TsrpcError('', {code: -104, atn: atn}); + throw new TsrpcError('', { code: -104, atn: atn }); } else { - return {isOk: false, atn: atn}; + return { isOk: false, atn: atn }; } } } - return {isOk: true, atn: null}; + return { isOk: true, atn: null }; } /** @@ -94,7 +95,7 @@ export class PlayerFun { atn: need }; if (args.length < 1) { - throw new TsrpcError('', {code: -104, atn: meet.atn}); + throw new TsrpcError('', { code: -104, atn: meet.atn }); } return await this.checkNeedByArgs(call, ...args); } @@ -117,10 +118,10 @@ export class PlayerFun { all.push(this.addItem(call, item)); } // 记录消耗 - addGameLog(call.uid, call.service.name, call.req, {need: val}) + addGameLog(call.uid, call.service.name, call.req, { need: val }) await Promise.all(all); G.emit('USE_ITEM', call.conn.gud, needArr.map(need => { - return {...need, n: Math.abs(need.n)}; + return { ...need, n: Math.abs(need.n) }; })); } @@ -136,16 +137,18 @@ export class PlayerFun { let equip = prizeList.filter(atn => atn.a == 'equip' && atn.n != 0); let shiwu = prizeList.filter(atn => atn.a == 'shiwu' && atn.n != 0); let peijian = prizeList.filter(atn => atn.a == 'peijian' && atn.n != 0); + let heroskin = prizeList.filter(atn => atn.a == 'heroskin' && atn.n != 0); // 记录获得 - addGameLog(call.uid, call.service.name, call.req, {prize: prizeList}) + addGameLog(call.uid, call.service.name, call.req, { prize: prizeList }) await Promise.all([ attr.length > 0 && this.addAttr(call, attr), item.length > 0 && this.addItem(call, item), hero.length > 0 && this.addHero(call, hero), equip.length > 0 && this.addEquip(call, equip), shiwu.length > 0 && this.addShiwu(call, shiwu), - peijian.length > 0 && this.addPeijian(call, peijian) + peijian.length > 0 && this.addPeijian(call, peijian), + heroskin.length > 0 && this.addHeroskin(call, heroskin), ]); return prizeList; @@ -180,9 +183,9 @@ export class PlayerFun { } } - if( (atn.t == 'rmbmoney' || atn.t == 'jinbi') && atn.n > 0 ){ + if ((atn.t == 'rmbmoney' || atn.t == 'jinbi') && atn.n > 0) { //统计今日获取的金币和钻石 - ActionLog.addDayLog(call.conn.uid, { key: 'got_'+atn.t, val: atn.n }); + ActionLog.addDayLog(call.conn.uid, { key: 'got_' + atn.t, val: atn.n }); } // 增加vip经验的任务监听 @@ -190,7 +193,7 @@ export class PlayerFun { G.emit("Class_task_157", 'Class_task_157', call, atn.n, 0); } all.push(this.changeAttr(call.conn.uid, change)); - all.push(this.upAttr(call, {...atn, n: change[atn.t]})); + all.push(this.upAttr(call, { ...atn, n: change[atn.t] })); //await this.changeAttr(call.conn.uid, change); //await this.upAttr(call, {...atn, n: change[atn.t]}); } @@ -233,17 +236,17 @@ export class PlayerFun { G.mongodb.collection('rmbuse').insertOne(data); // 消费竞赛开启时写入跨服数据库 if (G.huodong.xfjs && !data.isAdd && typeof data.change == 'number') { - G.crossmongodb.collection('rmbuse').updateOne({uid: data.uid, type: `xfjs_${G.huodong.xfjsId}`}, { - $set: {time: G.time}, - $inc: {change: data.change} - }, {upsert: true}); + G.crossmongodb.collection('rmbuse').updateOne({ uid: data.uid, type: `xfjs_${G.huodong.xfjsId}` }, { + $set: { time: G.time }, + $inc: { change: data.change } + }, { upsert: true }); } } static async changeAttr(uid: string, change: Partial) { setGud(uid, change); - G.mongodb.collection('user').updateOne({uid: uid}, {$set: change}); + G.mongodb.collection('user').updateOne({ uid: uid }, { $set: change }); if (G.server.uid_connections[uid]) { checkPlayerGift(G.server.uid_connections[uid].gud, change); @@ -265,9 +268,9 @@ export class PlayerFun { const curLv = call.conn.gud.lv; while (conf[curLv + addLv + 1] && atn.n >= conf[curLv + addLv + 1].need) { addLv++; - G123.sendUserLevelUp({...call.conn.gud, lv: curLv + addLv, nexp: atn.n}); + G123.sendUserLevelUp({ ...call.conn.gud, lv: curLv + addLv, nexp: atn.n }); } - addLv && await this.addAttr(call, {lv: curLv + addLv}); + addLv && await this.addAttr(call, { lv: curLv + addLv }); break; case 'payExp': let addVip = 0; @@ -276,7 +279,7 @@ export class PlayerFun { while (vipConf[curVip + addVip + 1] && atn.n >= vipConf[curVip + addVip + 1].exp) { addVip++; } - addVip && await this.addAttr(call, {vip: curVip + addVip}); + addVip && await this.addAttr(call, { vip: curVip + addVip }); break; } } @@ -287,7 +290,7 @@ export class PlayerFun { static async addItem(call: call, val: atn[]) { for (let atn of val) { let upObj = { - filter: {uid: call.uid, itemId: atn.t}, + filter: { uid: call.uid, itemId: atn.t }, update: { $setOnInsert: { firstTime: G.time, @@ -319,7 +322,7 @@ export class PlayerFun { }; G.mongodb.collection('item').updateOne(upObj.filter, upObj.update, upObj.options); call.addEventMsg('msg_s2c/ItemChange', atn.t, data); - addGameLog(call.uid, "_itemChange", {"additem": 1}, { + addGameLog(call.uid, "_itemChange", { "additem": 1 }, { "filter": upObj.filter, "update": upObj.update, "options": upObj.options @@ -327,10 +330,10 @@ export class PlayerFun { } else { if (item.num + atn.n <= 0) { await Promise.all([ - G.mongodb.collection('item').deleteOne({uid: call.uid, itemId: atn.t}) + G.mongodb.collection('item').deleteOne({ uid: call.uid, itemId: atn.t }) ]); - call.addEventMsg('msg_s2c/ItemChange', atn.t, {num: 0}); - addGameLog(call.uid, "_itemChange", {"delitem": 1}, {"itemId": atn.t}) + call.addEventMsg('msg_s2c/ItemChange', atn.t, { num: 0 }); + addGameLog(call.uid, "_itemChange", { "delitem": 1 }, { "itemId": atn.t }) } else { await Promise.all([ G.mongodb.collection('item').updateOne(upObj.filter, upObj.update, upObj.options) @@ -339,7 +342,7 @@ export class PlayerFun { num: item.num + atn.n, lastTime: upObj.update.$set.lastTime }); - addGameLog(call.uid, "_itemChange", {"attritem": 1}, { + addGameLog(call.uid, "_itemChange", { "attritem": 1 }, { "filter": upObj.filter, "update": upObj.update, "options": upObj.options, @@ -374,7 +377,7 @@ export class PlayerFun { insertData.forEach((v, key) => { let id = result.insertedIds[key].toHexString(); - let {_id, ...ops} = v; + let { _id, ...ops } = v; Wjjl.setVal(call.uid, `has_equip_color_${G.gc.equip[ops.equipId].colour}`, 1, false); @@ -408,10 +411,10 @@ export class PlayerFun { */ static async cutEquip(call: call, _idArr: string[]) { for (let _id of _idArr) { - G.mongodb.collection('equip').deleteOne({uid: call.uid, _id: new ObjectId(_id)}); - call.addEventMsg('msg_s2c/EquipChange', _id, {num: 0}); + G.mongodb.collection('equip').deleteOne({ uid: call.uid, _id: new ObjectId(_id) }); + call.addEventMsg('msg_s2c/EquipChange', _id, { num: 0 }); - addGameLog(call.uid, "_cutEquip", {}, {_id: _id}) + addGameLog(call.uid, "_cutEquip", {}, { _id: _id }) } } @@ -445,7 +448,7 @@ export class PlayerFun { let v = insertData[key] let id = result.insertedIds[key].toHexString(); - let {_id, ...ops} = v; + let { _id, ...ops } = v; call.addEventMsg('msg_s2c/HeroChange', id, { _id: id, @@ -478,9 +481,9 @@ export class PlayerFun { static async cutHero(call: call, _idArr: string[]) { for (let _id of _idArr) { await HeroFun.delHero(call, _id); - G.mongodb.collection('hero').deleteOne({uid: call.uid, _id: new ObjectId(_id)}); - call.addEventMsg('msg_s2c/HeroChange', _id, {num: 0}); - addGameLog(call.uid, "_cutHero", {}, {_id: _id}) + G.mongodb.collection('hero').deleteOne({ uid: call.uid, _id: new ObjectId(_id) }); + call.addEventMsg('msg_s2c/HeroChange', _id, { num: 0 }); + addGameLog(call.uid, "_cutHero", {}, { _id: _id }) } } @@ -495,7 +498,7 @@ export class PlayerFun { colour: v.colour, wearId: '', shiwuId: v.t, - jichu: ShiwuFun.randomJichu({colour: v.colour, shiwuId: v.t}), + jichu: ShiwuFun.randomJichu({ colour: v.colour, shiwuId: v.t }), fujia: [] }; if (v.shiwuBuff) { @@ -515,7 +518,7 @@ export class PlayerFun { insertData.forEach((v, key) => { let id = result.insertedIds[key].toHexString(); - let {_id, ...ops} = v; + let { _id, ...ops } = v; call.addEventMsg('msg_s2c/ShiwuChange', id, { _id: id, ...ops @@ -534,9 +537,9 @@ export class PlayerFun { */ static async cutShiwu(call: call, _idArr: string[]) { for (let _id of _idArr) { - G.mongodb.collection('shiwu').deleteOne({uid: call.uid, _id: new ObjectId(_id)}); - call.addEventMsg('msg_s2c/ShiwuChange', _id, {num: 0}); - addGameLog(call.uid, "_cutShiwu", {}, {_id: _id}) + G.mongodb.collection('shiwu').deleteOne({ uid: call.uid, _id: new ObjectId(_id) }); + call.addEventMsg('msg_s2c/ShiwuChange', _id, { num: 0 }); + addGameLog(call.uid, "_cutShiwu", {}, { _id: _id }) } } @@ -561,7 +564,7 @@ export class PlayerFun { addGameLog(call.uid, "_addPeiJian", {}, insertData) insertData.forEach((v, key) => { - let {_id, uid, ...ops} = v; + let { _id, uid, ...ops } = v; let id = _id.toHexString(); if (G.gc.peijian[v.peijianId].colour != 5) { @@ -569,8 +572,8 @@ export class PlayerFun { lshd[v.peijianId]++; } - G.redis.set('peijian', call.uid, id, {_id: id, ...ops}); - call.addEventMsg('msg_s2c/PeijianChange', id, {_id: id, ...ops}); + G.redis.set('peijian', call.uid, id, { _id: id, ...ops }); + call.addEventMsg('msg_s2c/PeijianChange', id, { _id: id, ...ops }); }); G.mongodb.collection('playerInfo', 'lshd_peijian').updateOne( @@ -591,15 +594,39 @@ export class PlayerFun { return Object.values(result.insertedIds).map(v => G.mongodb.conversionId(v)); } + /** + * 添加皮肤 + * */ + static async addHeroskin(call: call, val: atn[]) { + let prize = []; + let upskin = {}; + let heroskin = HeroSkinFun.getHeroSkin(call); + for (let p of val) { + if (!heroskin[p.t]) { + upskin[p.t] = 1; + } else { + prize.concat(G.gc.heroSkin[p.t].zhuanhuan); + } + } + if (Object.keys(upskin).length > 0) { + this.addAttr(call, Object.assign(heroskin, upskin)); + } + + // 皮肤存在转换为其他奖励 + if (prize.length > 0) { + this.sendPrize(call, prize); + } + } + /** * 删除配件 */ static async cutPeijian(call: call, _idArr: string[]) { for (let _id of _idArr) { G.redis.del('peijian', call.uid, _id); - G.mongodb.collection('peijian').deleteOne({uid: call.uid, _id: new ObjectId(_id)}); - call.addEventMsg('msg_s2c/PeijianChange', _id, {num: 0}); - addGameLog(call.uid, "_cutPeijian", {}, {_id: _id}) + G.mongodb.collection('peijian').deleteOne({ uid: call.uid, _id: new ObjectId(_id) }); + call.addEventMsg('msg_s2c/PeijianChange', _id, { num: 0 }); + addGameLog(call.uid, "_cutPeijian", {}, { _id: _id }) } } @@ -608,7 +635,7 @@ export class PlayerFun { */ static async getAttr(uid: string, where: { ctype: string; }) { let _w = where; - Object.assign(_w, {uid: uid}); + Object.assign(_w, { uid: uid }); const _res = await G.mongodb.collection('playattr').find(_w).toArray(); _res.forEach(v => { if (v._id) { @@ -623,7 +650,7 @@ export class PlayerFun { */ static async getAttrOne(uid: string, where: { ctype: string; }) { let _w = where; - Object.assign(_w, {uid: uid}); + Object.assign(_w, { uid: uid }); const _res = await G.mongodb.collection('playattr').findOne(_w); if (_res) { delete _res['_id']; @@ -639,10 +666,10 @@ export class PlayerFun { time = G.time; } let _zeroTime = PublicShared.getToDayZeroTime(time); - let _tmp = {lasttime: {$gte: _zeroTime, $lte: _zeroTime + 24 * 60 * 60 - 1}}; + let _tmp = { lasttime: { $gte: _zeroTime, $lte: _zeroTime + 24 * 60 * 60 - 1 } }; let _w = where; - Object.assign(_w, {uid: uid, ..._tmp}); + Object.assign(_w, { uid: uid, ..._tmp }); const _res = await G.mongodb.collection('playattr').find(_w).toArray(); _res.forEach(v => { if (v._id) { @@ -657,7 +684,7 @@ export class PlayerFun { */ static async setAttr(uid: string, where: { ctype: string; }, data: {}, islasttime = 1) { let _w = where; - Object.assign(_w, {uid: uid}); + Object.assign(_w, { uid: uid }); if (islasttime == 1) { data["lasttime"] = G.time; @@ -668,7 +695,7 @@ export class PlayerFun { // 加入创建数据时间 data["ctime"] = G.time; } - let _res = await G.mongodb.collection('playattr').updateMany(_w, {$set: data}, {upsert: true}); + let _res = await G.mongodb.collection('playattr').updateMany(_w, { $set: data }, { upsert: true }); return _res; } } \ No newline at end of file diff --git a/src/shared/protocols/hero/PtlGetList.ts b/src/shared/protocols/hero/PtlGetList.ts index 3b180f0..76a0d24 100644 --- a/src/shared/protocols/hero/PtlGetList.ts +++ b/src/shared/protocols/hero/PtlGetList.ts @@ -71,4 +71,6 @@ type heroAddKey = { peijian: { [pos: string]: string; }; + /**皮肤*/ + skin: string; }; \ No newline at end of file diff --git a/src/shared/protocols/heroskin/PtlTakeOff.ts b/src/shared/protocols/heroskin/PtlTakeOff.ts new file mode 100644 index 0000000..55aefc3 --- /dev/null +++ b/src/shared/protocols/heroskin/PtlTakeOff.ts @@ -0,0 +1,7 @@ +export interface ReqTakeOff { + heroOid: string +} + +export interface ResTakeOff { + +} diff --git a/src/shared/protocols/heroskin/PtlUplv.ts b/src/shared/protocols/heroskin/PtlUplv.ts new file mode 100644 index 0000000..58c5ba2 --- /dev/null +++ b/src/shared/protocols/heroskin/PtlUplv.ts @@ -0,0 +1,6 @@ +export interface ReqUplv { + lv: 1; + skid: string; +} + +export interface ResUplv { } diff --git a/src/shared/protocols/heroskin/PtlWear.ts b/src/shared/protocols/heroskin/PtlWear.ts new file mode 100644 index 0000000..c33a1da --- /dev/null +++ b/src/shared/protocols/heroskin/PtlWear.ts @@ -0,0 +1,6 @@ +export interface ReqWear { + skid: string, + heroOid: string, +} + +export interface ResWear { } diff --git a/src/shared/protocols/serviceProto.ts b/src/shared/protocols/serviceProto.ts index 2dc1df9..7d4b973 100644 --- a/src/shared/protocols/serviceProto.ts +++ b/src/shared/protocols/serviceProto.ts @@ -187,6 +187,9 @@ import { ReqRec as ReqRec_12, ResRec as ResRec_12 } from './hero/PtlRec'; import { ReqReset as ReqReset_2, ResReset as ResReset_2 } from './hero/PtlReset'; import { ReqTalent, ResTalent } from './hero/PtlTalent'; import { ReqWeaponUp, ResWeaponUp } from './hero/PtlWeaponUp'; +import { ReqTakeOff as ReqTakeOff_1, ResTakeOff as ResTakeOff_1 } from './heroskin/PtlTakeOff'; +import { ReqUplv, ResUplv } from './heroskin/PtlUplv'; +import { ReqWear as ReqWear_1, ResWear as ResWear_1 } from './heroskin/PtlWear'; import { ReqGet as ReqGet_2, ResGet as ResGet_2 } from './hongdian/PtlGet'; import { ReqGetList as ReqGetList_4, ResGetList as ResGetList_4 } from './item/PtlGetList'; import { ReqUse, ResUse } from './item/PtlUse'; @@ -267,9 +270,9 @@ import { ReqOneKeyLvUp as ReqOneKeyLvUp_1, ResOneKeyLvUp as ResOneKeyLvUp_1 } fr import { ReqOneKeyWear as ReqOneKeyWear_1, ResOneKeyWear as ResOneKeyWear_1 } from './peijian/PtlOneKeyWear'; import { ReqReset as ReqReset_3, ResReset as ResReset_3 } from './peijian/PtlReset'; import { ReqRm, ResRm } from './peijian/PtlRm'; -import { ReqTakeOff as ReqTakeOff_1, ResTakeOff as ResTakeOff_1 } from './peijian/PtlTakeOff'; +import { ReqTakeOff as ReqTakeOff_2, ResTakeOff as ResTakeOff_2 } from './peijian/PtlTakeOff'; import { ReqUnLock, ResUnLock } from './peijian/PtlUnLock'; -import { ReqWear as ReqWear_1, ResWear as ResWear_1 } from './peijian/PtlWear'; +import { ReqWear as ReqWear_2, ResWear as ResWear_2 } from './peijian/PtlWear'; import { ReqDeal, ResDeal } from './peijiancangku/PtlDeal'; import { ReqJump, ResJump } from './peijiancangku/PtlJump'; import { ReqOpen as ReqOpen_51, ResOpen as ResOpen_51 } from './peijiancangku/PtlOpen'; @@ -287,8 +290,8 @@ import { ReqExtract, ResExtract } from './shiwu/PtlExtract'; import { ReqGetList as ReqGetList_7, ResGetList as ResGetList_7 } from './shiwu/PtlGetList'; import { ReqLvUp as ReqLvUp_3, ResLvUp as ResLvUp_3 } from './shiwu/PtlLvUp'; import { ReqRecast, ResRecast } from './shiwu/PtlRecast'; -import { ReqTakeOff as ReqTakeOff_2, ResTakeOff as ResTakeOff_2 } from './shiwu/PtlTakeOff'; -import { ReqWear as ReqWear_2, ResWear as ResWear_2 } from './shiwu/PtlWear'; +import { ReqTakeOff as ReqTakeOff_3, ResTakeOff as ResTakeOff_3 } from './shiwu/PtlTakeOff'; +import { ReqWear as ReqWear_3, ResWear as ResWear_3 } from './shiwu/PtlWear'; import { ReqOpen as ReqOpen_55, ResOpen as ResOpen_55 } from './shootGame/PtlOpen'; import { ReqRec as ReqRec_13, ResRec as ResRec_13 } from './shootGame/PtlRec'; import { ReqBuy as ReqBuy_6, ResBuy as ResBuy_6 } from './shop/PtlBuy'; @@ -1113,6 +1116,18 @@ export interface ServiceType { req: ReqWeaponUp, res: ResWeaponUp }, + "heroskin/TakeOff": { + req: ReqTakeOff_1, + res: ResTakeOff_1 + }, + "heroskin/Uplv": { + req: ReqUplv, + res: ResUplv + }, + "heroskin/Wear": { + req: ReqWear_1, + res: ResWear_1 + }, "hongdian/Get": { req: ReqGet_2, res: ResGet_2 @@ -1318,16 +1333,16 @@ export interface ServiceType { res: ResRm }, "peijian/TakeOff": { - req: ReqTakeOff_1, - res: ResTakeOff_1 + req: ReqTakeOff_2, + res: ResTakeOff_2 }, "peijian/UnLock": { req: ReqUnLock, res: ResUnLock }, "peijian/Wear": { - req: ReqWear_1, - res: ResWear_1 + req: ReqWear_2, + res: ResWear_2 }, "peijiancangku/Deal": { req: ReqDeal, @@ -1398,12 +1413,12 @@ export interface ServiceType { res: ResRecast }, "shiwu/TakeOff": { - req: ReqTakeOff_2, - res: ResTakeOff_2 + req: ReqTakeOff_3, + res: ResTakeOff_3 }, "shiwu/Wear": { - req: ReqWear_2, - res: ResWear_2 + req: ReqWear_3, + res: ResWear_3 }, "shootGame/Open": { req: ReqOpen_55, @@ -2753,6 +2768,21 @@ export const serviceProto: ServiceProto = { }, { "id": 188, + "name": "heroskin/TakeOff", + "type": "api" + }, + { + "id": 189, + "name": "heroskin/Uplv", + "type": "api" + }, + { + "id": 190, + "name": "heroskin/Wear", + "type": "api" + }, + { + "id": 191, "name": "hongdian/Get", "type": "api", "conf": { @@ -2760,117 +2790,117 @@ export const serviceProto: ServiceProto = { } }, { - "id": 189, + "id": 192, "name": "item/GetList", "type": "api" }, { - "id": 190, + "id": 193, "name": "item/Use", "type": "api" }, { - "id": 191, + "id": 194, "name": "jiaotang/Lottery", "type": "api" }, { - "id": 192, + "id": 195, "name": "jiaotang/Open", "type": "api" }, { - "id": 193, + "id": 196, "name": "jiuba/Lottery", "type": "api" }, { - "id": 194, + "id": 197, "name": "jiuba/Open", "type": "api" }, { - "id": 195, + "id": 198, "name": "jjc/BuyFightNum", "type": "api" }, { - "id": 196, + "id": 199, "name": "jjc/Fight", "type": "api" }, { - "id": 197, + "id": 200, "name": "jjc/FightLog", "type": "api" }, { - "id": 198, + "id": 201, "name": "jjc/Open", "type": "api" }, { - "id": 199, + "id": 202, "name": "jjc/Receive", "type": "api" }, { - "id": 200, + "id": 203, "name": "jjc/Refresh", "type": "api" }, { - "id": 201, + "id": 204, "name": "kaifujingsai/Open", "type": "api" }, { - "id": 202, + "id": 205, "name": "kaifujingsai/Receive", "type": "api" }, { - "id": 203, + "id": 206, "name": "kbzz/Apply", "type": "api" }, { - "id": 204, + "id": 207, "name": "kbzz/AutoApply", "type": "api" }, { - "id": 205, + "id": 208, "name": "kbzz/BuyNum", "type": "api" }, { - "id": 206, + "id": 209, "name": "kbzz/Fight", "type": "api" }, { - "id": 207, + "id": 210, "name": "kbzz/FightLog", "type": "api" }, { - "id": 208, + "id": 211, "name": "kbzz/GroupState", "type": "api" }, { - "id": 209, + "id": 212, "name": "kbzz/Open", "type": "api" }, { - "id": 210, + "id": 213, "name": "kbzz/RecPrize", "type": "api" }, { - "id": 211, + "id": 214, "name": "kbzz/Refresh", "type": "api", "conf": { @@ -2878,287 +2908,287 @@ export const serviceProto: ServiceProto = { } }, { - "id": 212, + "id": 215, "name": "kuangdong/AddPkNum", "type": "api" }, { - "id": 213, + "id": 216, "name": "kuangdong/GetPrize", "type": "api" }, { - "id": 214, + "id": 217, "name": "kuangdong/KdInfo", "type": "api" }, { - "id": 215, + "id": 218, "name": "kuangdong/Log", "type": "api" }, { - "id": 216, + "id": 219, "name": "kuangdong/Open", "type": "api" }, { - "id": 217, + "id": 220, "name": "kuangdong/YanShi", "type": "api" }, { - "id": 218, + "id": 221, "name": "kuangdong/ZhanLing", "type": "api" }, { - "id": 219, + "id": 222, "name": "lingzhulaixi/Open", "type": "api" }, { - "id": 220, + "id": 223, "name": "lingzhulaixi/PkBoss", "type": "api" }, { - "id": 221, + "id": 224, "name": "lingzhulaixi/PkRank", "type": "api" }, { - "id": 222, + "id": 225, "name": "lingzhulaixi/SaoDang", "type": "api" }, { - "id": 223, + "id": 226, "name": "meirishilian/Buy", "type": "api" }, { - "id": 224, + "id": 227, "name": "meirishilian/Fight", "type": "api" }, { - "id": 225, + "id": 228, "name": "meirishilian/Open", "type": "api" }, { - "id": 226, + "id": 229, "name": "msg_c2s/BindUid", "type": "msg" }, { - "id": 227, + "id": 230, "name": "msg_c2s/Pay", "type": "msg" }, { - "id": 228, + "id": 231, "name": "msg_c2s/Sync", "type": "msg" }, { - "id": 229, + "id": 232, "name": "msg_s2c/Chat", "type": "msg" }, { - "id": 230, + "id": 233, "name": "msg_s2c/ChatHelp", "type": "msg" }, { - "id": 231, + "id": 234, "name": "msg_s2c/Collection", "type": "msg" }, { - "id": 232, + "id": 235, "name": "msg_s2c/Email", "type": "msg" }, { - "id": 233, + "id": 236, "name": "msg_s2c/EmailDel", "type": "msg" }, { - "id": 234, + "id": 237, "name": "msg_s2c/EquipChange", "type": "msg" }, { - "id": 235, + "id": 238, "name": "msg_s2c/Friend", "type": "msg" }, { - "id": 236, + "id": 239, "name": "msg_s2c/GhChange", "type": "msg" }, { - "id": 237, + "id": 240, "name": "msg_s2c/GongHuiBaoZang", "type": "msg" }, { - "id": 238, + "id": 241, "name": "msg_s2c/HeroChange", "type": "msg" }, { - "id": 239, + "id": 242, "name": "msg_s2c/HongDianChange", "type": "msg" }, { - "id": 240, + "id": 243, "name": "msg_s2c/ItemChange", "type": "msg" }, { - "id": 241, + "id": 244, "name": "msg_s2c/LoginQueue", "type": "msg" }, { - "id": 242, + "id": 245, "name": "msg_s2c/LshdChange", "type": "msg" }, { - "id": 243, + "id": 246, "name": "msg_s2c/NewDay", "type": "msg" }, { - "id": 244, + "id": 247, "name": "msg_s2c/OtherLogin", "type": "msg" }, { - "id": 245, + "id": 248, "name": "msg_s2c/PayChange", "type": "msg" }, { - "id": 246, + "id": 249, "name": "msg_s2c/PayResult", "type": "msg" }, { - "id": 247, + "id": 250, "name": "msg_s2c/PeijianChange", "type": "msg" }, { - "id": 248, + "id": 251, "name": "msg_s2c/PlayerChange", "type": "msg" }, { - "id": 249, + "id": 252, "name": "msg_s2c/Private", "type": "msg" }, { - "id": 250, + "id": 253, "name": "msg_s2c/PushGiftChange", "type": "msg" }, { - "id": 251, + "id": 254, "name": "msg_s2c/SendGift", "type": "msg" }, { - "id": 252, + "id": 255, "name": "msg_s2c/ShiwuChange", "type": "msg" }, { - "id": 253, + "id": 256, "name": "msg_s2c/TaskChange", "type": "msg" }, { - "id": 254, + "id": 257, "name": "msg_s2c/Xianshilibao", "type": "msg" }, { - "id": 255, + "id": 258, "name": "pata/Fight", "type": "api" }, { - "id": 256, + "id": 259, "name": "pata/GetPrize", "type": "api" }, { - "id": 257, + "id": 260, "name": "pata/Open", "type": "api" }, { - "id": 258, + "id": 261, "name": "pata/SaoDang", "type": "api" }, { - "id": 259, + "id": 262, "name": "pay/GetList", "type": "api" }, { - "id": 260, + "id": 263, "name": "peijian/GetList", "type": "api" }, { - "id": 261, + "id": 264, "name": "peijian/JingLian", "type": "api" }, { - "id": 262, + "id": 265, "name": "peijian/JinJie", "type": "api" }, { - "id": 263, + "id": 266, "name": "peijian/LvUp", "type": "api" }, { - "id": 264, + "id": 267, "name": "peijian/OneKeyLvUp", "type": "api" }, { - "id": 265, + "id": 268, "name": "peijian/OneKeyWear", "type": "api" }, { - "id": 266, + "id": 269, "name": "peijian/Reset", "type": "api" }, { - "id": 267, + "id": 270, "name": "peijian/Rm", "type": "api" }, { - "id": 268, + "id": 271, "name": "peijian/TakeOff", "type": "api", "conf": { @@ -3166,32 +3196,32 @@ export const serviceProto: ServiceProto = { } }, { - "id": 269, + "id": 272, "name": "peijian/UnLock", "type": "api" }, { - "id": 270, + "id": 273, "name": "peijian/Wear", "type": "api" }, { - "id": 271, + "id": 274, "name": "peijiancangku/Deal", "type": "api" }, { - "id": 272, + "id": 275, "name": "peijiancangku/Jump", "type": "api" }, { - "id": 273, + "id": 276, "name": "peijiancangku/Open", "type": "api" }, { - "id": 274, + "id": 277, "name": "Bingo", "type": "api", "conf": { @@ -3199,147 +3229,147 @@ export const serviceProto: ServiceProto = { } }, { - "id": 275, + "id": 278, "name": "FightTest", "type": "api" }, { - "id": 276, + "id": 279, "name": "SyncBtn", "type": "api" }, { - "id": 277, + "id": 280, "name": "Test", "type": "api" }, { - "id": 278, + "id": 281, "name": "pushgift/ItemNoEnough", "type": "api" }, { - "id": 279, + "id": 282, "name": "pushgift/Open", "type": "api" }, { - "id": 280, + "id": 283, "name": "qjzzd/Fight", "type": "api" }, { - "id": 281, + "id": 284, "name": "qjzzd/Open", "type": "api" }, { - "id": 282, + "id": 285, "name": "rank/Open", "type": "api" }, { - "id": 283, + "id": 286, "name": "shiwu/Concise", "type": "api" }, { - "id": 284, + "id": 287, "name": "shiwu/Extract", "type": "api" }, { - "id": 285, + "id": 288, "name": "shiwu/GetList", "type": "api" }, { - "id": 286, + "id": 289, "name": "shiwu/LvUp", "type": "api" }, { - "id": 287, + "id": 290, "name": "shiwu/Recast", "type": "api" }, { - "id": 288, + "id": 291, "name": "shiwu/TakeOff", "type": "api" }, { - "id": 289, + "id": 292, "name": "shiwu/Wear", "type": "api" }, { - "id": 290, + "id": 293, "name": "shootGame/Open", "type": "api" }, { - "id": 291, + "id": 294, "name": "shootGame/Rec", "type": "api" }, { - "id": 292, + "id": 295, "name": "shop/Buy", "type": "api" }, { - "id": 293, + "id": 296, "name": "shop/Open", "type": "api" }, { - "id": 294, + "id": 297, "name": "shop/Refresh", "type": "api" }, { - "id": 295, + "id": 298, "name": "sign/GetBoxPrize", "type": "api" }, { - "id": 296, + "id": 299, "name": "sign/GetPrize", "type": "api" }, { - "id": 297, + "id": 300, "name": "sign/Open", "type": "api" }, { - "id": 298, + "id": 301, "name": "slzd/Aim", "type": "api" }, { - "id": 299, + "id": 302, "name": "slzd/BuyNum", "type": "api" }, { - "id": 300, + "id": 303, "name": "slzd/Fight", "type": "api" }, { - "id": 301, + "id": 304, "name": "slzd/FightLog", "type": "api" }, { - "id": 302, + "id": 305, "name": "slzd/MyRank", "type": "api" }, { - "id": 303, + "id": 306, "name": "slzd/Open", "type": "api", "conf": { @@ -3349,77 +3379,77 @@ export const serviceProto: ServiceProto = { } }, { - "id": 304, + "id": 307, "name": "slzd/OpenFort", "type": "api" }, { - "id": 305, + "id": 308, "name": "slzd/Rec", "type": "api" }, { - "id": 306, + "id": 309, "name": "slzd/Refresh", "type": "api" }, { - "id": 307, + "id": 310, "name": "slzd/Slot", "type": "api" }, { - "id": 308, + "id": 311, "name": "tanxian/Event", "type": "api" }, { - "id": 309, + "id": 312, "name": "tanxian/FastGuaJi", "type": "api" }, { - "id": 310, + "id": 313, "name": "tanxian/Fight", "type": "api" }, { - "id": 311, + "id": 314, "name": "tanxian/GuaJi", "type": "api" }, { - "id": 312, + "id": 315, "name": "tanxian/Open", "type": "api" }, { - "id": 313, + "id": 316, "name": "tanxian/Receive", "type": "api" }, { - "id": 314, + "id": 317, "name": "task/AllFinsh", "type": "api" }, { - "id": 315, + "id": 318, "name": "task/Finsh", "type": "api" }, { - "id": 316, + "id": 319, "name": "task/Open", "type": "api" }, { - "id": 317, + "id": 320, "name": "user/CDKEY", "type": "api" }, { - "id": 318, + "id": 321, "name": "user/ChangeInfo", "type": "api", "conf": { @@ -3427,202 +3457,202 @@ export const serviceProto: ServiceProto = { } }, { - "id": 319, + "id": 322, "name": "user/ChangeName", "type": "api" }, { - "id": 320, + "id": 323, "name": "user/Dot", "type": "api" }, { - "id": 321, + "id": 324, "name": "user/Fight", "type": "api" }, { - "id": 322, + "id": 325, "name": "user/GetInfo", "type": "api" }, { - "id": 323, + "id": 326, "name": "user/InfoOpen", "type": "api" }, { - "id": 324, + "id": 327, "name": "user/Login", "type": "api" }, { - "id": 325, + "id": 328, "name": "user/Ping", "type": "api" }, { - "id": 326, + "id": 329, "name": "user/Renown", "type": "api" }, { - "id": 327, + "id": 330, "name": "user/RenownBuy", "type": "api" }, { - "id": 328, + "id": 331, "name": "user/RenownGetPrize", "type": "api" }, { - "id": 329, + "id": 332, "name": "user/RenownOpen", "type": "api" }, { - "id": 330, + "id": 333, "name": "user/Tujian", "type": "api" }, { - "id": 331, + "id": 334, "name": "weixiuchang/Decompose", "type": "api" }, { - "id": 332, + "id": 335, "name": "weixiuchang/Exchange", "type": "api" }, { - "id": 333, + "id": 336, "name": "weixiuchang/Open", "type": "api" }, { - "id": 334, + "id": 337, "name": "weixiuchang/UpLv", "type": "api" }, { - "id": 335, + "id": 338, "name": "weixiuchang/UpStar", "type": "api" }, { - "id": 336, + "id": 339, "name": "wzry/AutoBaoMing", "type": "api" }, { - "id": 337, + "id": 340, "name": "wzry/BaoMing", "type": "api" }, { - "id": 338, + "id": 341, "name": "wzry/catFightLog", "type": "api" }, { - "id": 339, + "id": 342, "name": "wzry/CatGroup", "type": "api" }, { - "id": 340, + "id": 343, "name": "wzry/DldFight", "type": "api" }, { - "id": 341, + "id": 344, "name": "wzry/DldRefre", "type": "api" }, { - "id": 342, + "id": 345, "name": "wzry/JingCai", "type": "api" }, { - "id": 343, + "id": 346, "name": "wzry/JingCaiOpen", "type": "api" }, { - "id": 344, + "id": 347, "name": "wzry/Open", "type": "api" }, { - "id": 345, + "id": 348, "name": "wzry/UpdateFight", "type": "api" }, { - "id": 346, + "id": 349, "name": "wzry/Wzzd", "type": "api" }, { - "id": 347, + "id": 350, "name": "wzry/ZuanShiOpen", "type": "api" }, { - "id": 348, + "id": 351, "name": "xstask/AllGet", "type": "api" }, { - "id": 349, + "id": 352, "name": "xstask/Get", "type": "api" }, { - "id": 350, + "id": 353, "name": "xstask/LvUp", "type": "api" }, { - "id": 351, + "id": 354, "name": "xstask/OnekeyReceive", "type": "api" }, { - "id": 352, + "id": 355, "name": "xstask/Open", "type": "api" }, { - "id": 353, + "id": 356, "name": "xstask/Receive", "type": "api" }, { - "id": 354, + "id": 357, "name": "xstask/Refresh", "type": "api" }, { - "id": 355, + "id": 358, "name": "yongbingzhuzhan/Handle", "type": "api" }, { - "id": 356, + "id": 359, "name": "zhanqianbushu/ChangePos", "type": "api" }, { - "id": 357, + "id": 360, "name": "zhanqianbushu/Select", "type": "api" }, { - "id": 358, + "id": 361, "name": "zhanqianbushu/Up", "type": "api" } @@ -4565,6 +4595,20 @@ export const serviceProto: ServiceProto = { } }, "optional": true + }, + { + "id": 38, + "name": "heroskin", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true } ] }, @@ -5809,6 +5853,20 @@ export const serviceProto: ServiceProto = { } }, "optional": true + }, + { + "id": 38, + "name": "heroskin", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true } ] }, @@ -6200,6 +6258,13 @@ export const serviceProto: ServiceProto = { } } } + }, + { + "id": 8, + "name": "skin", + "type": { + "type": "String" + } } ] }, @@ -14910,6 +14975,13 @@ export const serviceProto: ServiceProto = { } } } + }, + { + "id": 8, + "name": "skin", + "type": { + "type": "String" + } } ] }, @@ -15351,6 +15423,66 @@ export const serviceProto: ServiceProto = { } ] }, + "heroskin/PtlTakeOff/ReqTakeOff": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "heroOid", + "type": { + "type": "String" + } + } + ] + }, + "heroskin/PtlTakeOff/ResTakeOff": { + "type": "Interface" + }, + "heroskin/PtlUplv/ReqUplv": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 1, + "name": "skid", + "type": { + "type": "String" + } + } + ] + }, + "heroskin/PtlUplv/ResUplv": { + "type": "Interface" + }, + "heroskin/PtlWear/ReqWear": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "skid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "heroOid", + "type": { + "type": "String" + } + } + ] + }, + "heroskin/PtlWear/ResWear": { + "type": "Interface" + }, "hongdian/PtlGet/ReqGet": { "type": "Array", "elementType": { @@ -24245,6 +24377,20 @@ export const serviceProto: ServiceProto = { } }, "optional": true + }, + { + "id": 38, + "name": "heroskin", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true } ] }, @@ -24636,6 +24782,13 @@ export const serviceProto: ServiceProto = { } } } + }, + { + "id": 8, + "name": "skin", + "type": { + "type": "String" + } } ] }, diff --git a/src/shared/protocols/user/PtlLogin.ts b/src/shared/protocols/user/PtlLogin.ts index 49f56e3..d6b8e8a 100644 --- a/src/shared/protocols/user/PtlLogin.ts +++ b/src/shared/protocols/user/PtlLogin.ts @@ -1,4 +1,4 @@ -import {gonghuiLevel} from '../gonghui/type'; +import { gonghuiLevel } from '../gonghui/type'; /** * 登录 @@ -193,4 +193,9 @@ export type playerAppend = { chatFrames?: { [id: string]: number; }; + + /**获得的皮肤*/ + heroskin?: { + [skid: string]: number; + } }; \ No newline at end of file diff --git a/src/shared/public/hero.ts b/src/shared/public/hero.ts index dbddc83..e8b2c38 100644 --- a/src/shared/public/hero.ts +++ b/src/shared/public/hero.ts @@ -1,10 +1,11 @@ -import {ResGetList} from '../protocols/hero/PtlGetList'; -import {player} from '../protocols/user/type'; -import {EquipShared} from './equip'; -import {PeijianShared} from './peijian'; -import {PlayerShared} from './player'; -import {PublicShared} from './public'; -import {ShiwuShared} from './shiwu'; +import HeroSkinFun from '../../public/heroskin'; +import { ResGetList } from '../protocols/hero/PtlGetList'; +import { player } from '../protocols/user/type'; +import { EquipShared } from './equip'; +import { PeijianShared } from './peijian'; +import { PlayerShared } from './player'; +import { PublicShared } from './public'; +import { ShiwuShared } from './shiwu'; export type otherBuff = Partial; @@ -31,7 +32,7 @@ export class HeroShared { */ static getHeroBasicAttr(hero: heroDataType, otherBuff: otherBuff = G.otherBuff, pos = 0) { let jiban = 0; - let buff: k_v = {skillArr: []}; + let buff: k_v = { skillArr: [] }; let heroConf = G.gc.hero[hero.heroId]; let heroLv = G.gc.herolv[heroConf.lvup]; let heroGrow = G.gc.herogrow[heroConf.jjup]?.[hero.jieji]; @@ -40,7 +41,7 @@ export class HeroShared { for (let k in heroLv.buff) { let val = heroLv.buff[k]; if (typeof val == 'number') buff[k] = val; - else buff[k] = PublicShared.eval(val, {lv: hero.lv}); + else buff[k] = PublicShared.eval(val, { lv: hero.lv }); // else buff[k] = Math.floor(new Function(`let lv=${hero.lv}; return ${val}`)()); } @@ -135,7 +136,7 @@ export class HeroShared { PublicShared.mergeProperty(buff, PeijianShared.getAttr(p)); let conf = G.gc.peijian[p.peijianId]; if (conf.suit) { - if (!suitObj[conf.suit]) suitObj[conf.suit] = {num: 0, minLv: 0}; + if (!suitObj[conf.suit]) suitObj[conf.suit] = { num: 0, minLv: 0 }; suitObj[conf.suit].num++; if (!suitObj[conf.suit].minLv || p.lv < suitObj[conf.suit].minLv) suitObj[conf.suit].minLv = p.lv; } @@ -273,11 +274,22 @@ export class HeroShared { if (otherBuff?.skills) { for (let [id, lv] of Object.entries(otherBuff.skills)) { if (lv && G.gc.xunlianjihua[id].use == 0) { - PublicShared.mergeProperty(buff, Object.fromEntries([G.gc.xunlianjihua[id].skill].map(k => [k, PublicShared.eval(G.gc.xunlianjihua[id].v[0], {slv: lv})]))); + PublicShared.mergeProperty(buff, Object.fromEntries([G.gc.xunlianjihua[id].skill].map(k => [k, PublicShared.eval(G.gc.xunlianjihua[id].v[0], { slv: lv })]))); } } } + // 计算皮肤buff + if (otherBuff?.heroskin) { + for (let skinId in otherBuff.heroskin) { + let skinConf = G.gc.heroSkin[skinId]; + if (skinConf.heroid != hero.heroId) console; + PublicShared.mergeProperty(buff, HeroSkinFun.calcBuff( + skinId, otherBuff.heroskin[skinId] + )); + } + } + //最后进行加成属性计算 for (let k in buff) { if (k.indexOf('pro') == -1) continue; @@ -368,8 +380,8 @@ export class HeroShared { static getHeroLvUpNeed(id: string | number, lv = 1): atn[] { return [ - {a: 'item', t: '1', n: G.gc.herolvup[lv].expneed}, - {a: 'attr', t: 'jinbi', n: G.gc.herolvup[lv].jinbineed} + { a: 'item', t: '1', n: G.gc.herolvup[lv].expneed }, + { a: 'attr', t: 'jinbi', n: G.gc.herolvup[lv].jinbineed } ]; } From 12d092677ab6dbd62e3e25da933a6cd81bbfb8f9 Mon Sep 17 00:00:00 2001 From: xichaoyin Date: Fri, 5 Jan 2024 19:49:47 +0800 Subject: [PATCH 02/17] =?UTF-8?q?fix:=20=E7=9A=AE=E8=82=A4=E7=A9=BF?= =?UTF-8?q?=E6=88=B4bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api_s2c/heroskin/ApiWear.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api_s2c/heroskin/ApiWear.ts b/src/api_s2c/heroskin/ApiWear.ts index ed42a15..d8a4c56 100644 --- a/src/api_s2c/heroskin/ApiWear.ts +++ b/src/api_s2c/heroskin/ApiWear.ts @@ -16,7 +16,7 @@ export default async function (call: ApiCall) { return; } - let skinconf = G.gc.heroSkin[skin.skid]; + let skinconf = G.gc.heroSkin[call.req.skid]; if (skinconf.heroid != hero.heroId) { // 皮肤不属于该英雄 call.error(lng.hero_21); return; From 04fe3029b3ecdc8cf0254165a55966763065d4d8 Mon Sep 17 00:00:00 2001 From: xichaoyin Date: Fri, 5 Jan 2024 20:09:11 +0800 Subject: [PATCH 03/17] =?UTF-8?q?fix:=20json=E6=A0=BC=E5=BC=8F=E5=AE=9A?= =?UTF-8?q?=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api_s2c/heroskin/ApiWear.ts | 2 +- src/jsonType.ts | 2 +- src/shared/public/hero.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/api_s2c/heroskin/ApiWear.ts b/src/api_s2c/heroskin/ApiWear.ts index d8a4c56..3a43ef7 100644 --- a/src/api_s2c/heroskin/ApiWear.ts +++ b/src/api_s2c/heroskin/ApiWear.ts @@ -17,7 +17,7 @@ export default async function (call: ApiCall) { } let skinconf = G.gc.heroSkin[call.req.skid]; - if (skinconf.heroid != hero.heroId) { // 皮肤不属于该英雄 + if (skinconf.heroId != hero.heroId) { // 皮肤不属于该英雄 call.error(lng.hero_21); return; } diff --git a/src/jsonType.ts b/src/jsonType.ts index 13d4b3e..4e8f553 100644 --- a/src/jsonType.ts +++ b/src/jsonType.ts @@ -1802,7 +1802,7 @@ type gc_hero_skin = { /**皮肤id*/ id: number /**干部id*/ - heroid: number + heroId: number /**皮肤品质*/ colour: number /**摸到重复时转换*/ diff --git a/src/shared/public/hero.ts b/src/shared/public/hero.ts index e8b2c38..d4ad2ff 100644 --- a/src/shared/public/hero.ts +++ b/src/shared/public/hero.ts @@ -283,7 +283,7 @@ export class HeroShared { if (otherBuff?.heroskin) { for (let skinId in otherBuff.heroskin) { let skinConf = G.gc.heroSkin[skinId]; - if (skinConf.heroid != hero.heroId) console; + if (skinConf.heroId != hero.heroId) console; PublicShared.mergeProperty(buff, HeroSkinFun.calcBuff( skinId, otherBuff.heroskin[skinId] )); From 70ad3577f8a2bd6c1f30839fd968adcee0632daf Mon Sep 17 00:00:00 2001 From: xichaoyin Date: Fri, 5 Jan 2024 20:21:17 +0800 Subject: [PATCH 04/17] =?UTF-8?q?fix:=20=E7=9A=AE=E8=82=A4bingo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api_s2c/ApiBingo.ts | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/src/api_s2c/ApiBingo.ts b/src/api_s2c/ApiBingo.ts index 70a8a14..52c00a0 100644 --- a/src/api_s2c/ApiBingo.ts +++ b/src/api_s2c/ApiBingo.ts @@ -1,10 +1,10 @@ -import {ApiCall} from "tsrpc"; -import {HeroFun} from '../public/hero'; -import {PlayerFun} from '../public/player'; -import {defaultUserAppend, UserFun} from '../public/user'; -import {ReqBingo, ResBingo} from "../shared/protocols/PtlBingo"; -import {ReqEmail} from "../monopoly/protocols/PtlEmail"; -import {EmailFun} from "../public/email"; +import { ApiCall } from "tsrpc"; +import { HeroFun } from '../public/hero'; +import { PlayerFun } from '../public/player'; +import { defaultUserAppend, UserFun } from '../public/user'; +import { ReqBingo, ResBingo } from "../shared/protocols/PtlBingo"; +import { ReqEmail } from "../monopoly/protocols/PtlEmail"; +import { EmailFun } from "../public/email"; export default async function (call: ApiCall) { // TODO @@ -72,37 +72,37 @@ export default async function (call: ApiCall) { if (!G.gc.item[shell[1]]) return call.error(`道具id不存在:${shell[1]}`); if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); - await PlayerFun.addItem(call, [{a: 'item', t: shell[1], n: parseInt(shell[2])}]); + await PlayerFun.addItem(call, [{ a: 'item', t: shell[1], n: parseInt(shell[2]) }]); } else if (shell[0] == 'hero') { if (!G.gc.hero[shell[1]]) return call.error(`英雄id不存在:${shell[1]}`); if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); - await PlayerFun.addHero(call, [{a: 'item', t: shell[1], n: parseInt(shell[2])}]); + await PlayerFun.addHero(call, [{ a: 'item', t: shell[1], n: parseInt(shell[2]) }]); } else if (shell[0] == 'equip') { if (!G.gc.equip[shell[1]]) return call.error(`装备id不存在:${shell[1]}`); if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); - await PlayerFun.addEquip(call, [{a: 'equip', t: shell[1], n: parseInt(shell[2])}]); + await PlayerFun.addEquip(call, [{ a: 'equip', t: shell[1], n: parseInt(shell[2]) }]); } else if (shell[0] == 'shiwu') { if (!G.gc.shiwu[shell[1]]) return call.error(`饰物id不存在:${shell[1]}`); if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); if (isNaN(parseInt(shell[3]))) return call.error(`请输入正确的品质`); - await PlayerFun.addShiwu(call, [{a: 'shiwu', t: shell[1], n: parseInt(shell[2]), colour: parseInt(shell[3])}]); + await PlayerFun.addShiwu(call, [{ a: 'shiwu', t: shell[1], n: parseInt(shell[2]), colour: parseInt(shell[3]) }]); } else if (shell[0] == 'peijian') { if (!G.gc.peijian[shell[1]]) return call.error(`配件id不存在:${shell[1]}`); if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); - await PlayerFun.addPeijian(call, [{a: 'peijian', t: shell[1], n: parseInt(shell[2])}]); + await PlayerFun.addPeijian(call, [{ a: 'peijian', t: shell[1], n: parseInt(shell[2]) }]); } else if (shell[0] == 'attr') { if (G.gc.attr[shell[1]] == undefined) return call.error(`道具id不存在:${shell[1]}`); if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); - await PlayerFun.addAttr(call, [{a: 'attr', t: shell[1], n: parseInt(shell[2])}]); + await PlayerFun.addAttr(call, [{ a: 'attr', t: shell[1], n: parseInt(shell[2]) }]); } else if (shell.length == 2) { @@ -141,6 +141,9 @@ export default async function (call: ApiCall) { } if (shell[3]) emailMsg.prize = JSON.parse(shell[3]) EmailFun.addEmail(emailMsg); + } else if (shell[0] == "heroskin") { + PlayerFun.sendPrize(call, [{ a: "heroskin", "t": shell[1], n: 1 }]); } + call.succ('succ'); } \ No newline at end of file From 5ba52ad2c829da0cf1f7fb59961156f46c9fa78a Mon Sep 17 00:00:00 2001 From: xichaoyin Date: Fri, 5 Jan 2024 20:46:46 +0800 Subject: [PATCH 05/17] =?UTF-8?q?fix:=20=E7=9B=AE=E5=BD=95=E7=BB=93?= =?UTF-8?q?=E6=9E=84=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api_s2c/heroskin/ApiUplv.ts | 2 +- src/api_s2c/heroskin/ApiWear.ts | 2 +- src/public/heroskin.ts | 19 +------------------ src/public/player.ts | 1 - src/shared/public/hero.ts | 4 ++-- src/shared/public/heroskin.ts | 21 +++++++++++++++++++++ 6 files changed, 26 insertions(+), 23 deletions(-) create mode 100644 src/shared/public/heroskin.ts diff --git a/src/api_s2c/heroskin/ApiUplv.ts b/src/api_s2c/heroskin/ApiUplv.ts index d8ed43b..b07f8c1 100644 --- a/src/api_s2c/heroskin/ApiUplv.ts +++ b/src/api_s2c/heroskin/ApiUplv.ts @@ -1,7 +1,7 @@ import { ApiCall } from "tsrpc"; -import HeroSkinFun from "../../public/heroskin"; import { PlayerFun } from "../../public/player"; import { ReqUplv, ResUplv } from "../../shared/protocols/heroskin/PtlUplv"; +import HeroSkinFun from "../../public/heroskin"; export default async function (call: ApiCall) { diff --git a/src/api_s2c/heroskin/ApiWear.ts b/src/api_s2c/heroskin/ApiWear.ts index 3a43ef7..5c68082 100644 --- a/src/api_s2c/heroskin/ApiWear.ts +++ b/src/api_s2c/heroskin/ApiWear.ts @@ -1,7 +1,7 @@ import { ApiCall } from "tsrpc"; import { HeroFun } from "../../public/hero"; -import HeroSkinFun from "../../public/heroskin"; import { ReqWear, ResWear } from "../../shared/protocols/heroskin/PtlWear"; +import HeroSkinFun from "../../public/heroskin"; export default async function (call: ApiCall) { let hero = await HeroFun.getHero(call, call.req.heroOid); diff --git a/src/public/heroskin.ts b/src/public/heroskin.ts index f0e0504..a769476 100644 --- a/src/public/heroskin.ts +++ b/src/public/heroskin.ts @@ -1,6 +1,6 @@ import { ApiCall } from "tsrpc"; import { call } from "../public/player"; -import { PlayerFun } from "./player"; +import { PlayerFun } from "../public/player"; export default class HeroSkinFun { @@ -29,21 +29,4 @@ export default class HeroSkinFun { skin = Object.assign(skin, change); await PlayerFun.addAttr(call, { heroskin: skin }); } - - /** - * 计算皮肤buff - * @param skid - * @param lv - * @returns {[string]: number} - * */ - static calcBuff(skid: string, lv: number): k_v { - let buff = {}; - let skin = G.gc.heroSkin[skid]; - for (let i = 1; i <= lv; i++) { - for (let k in G.gc.heroSkinLv[skin.colour][i].buff) { - buff[k] = (buff[k] || 0) + G.gc.heroSkinLv[skin.colour][i].buff[k]; - } - } - return buff; - } } \ No newline at end of file diff --git a/src/public/player.ts b/src/public/player.ts index 5c6e168..dfbe3ff 100644 --- a/src/public/player.ts +++ b/src/public/player.ts @@ -21,7 +21,6 @@ import { PushGiftFun } from "./pushgift"; import { ActionLog } from './actionLog/actionLog'; import HeroSkinFun from './heroskin'; - export type call = { get otherBuff(): otherBuff; uid: string; diff --git a/src/shared/public/hero.ts b/src/shared/public/hero.ts index d4ad2ff..52531a2 100644 --- a/src/shared/public/hero.ts +++ b/src/shared/public/hero.ts @@ -1,7 +1,7 @@ -import HeroSkinFun from '../../public/heroskin'; import { ResGetList } from '../protocols/hero/PtlGetList'; import { player } from '../protocols/user/type'; import { EquipShared } from './equip'; +import HeroSkinShared from './heroskin'; import { PeijianShared } from './peijian'; import { PlayerShared } from './player'; import { PublicShared } from './public'; @@ -284,7 +284,7 @@ export class HeroShared { for (let skinId in otherBuff.heroskin) { let skinConf = G.gc.heroSkin[skinId]; if (skinConf.heroId != hero.heroId) console; - PublicShared.mergeProperty(buff, HeroSkinFun.calcBuff( + PublicShared.mergeProperty(buff, HeroSkinShared.calcBuff( skinId, otherBuff.heroskin[skinId] )); } diff --git a/src/shared/public/heroskin.ts b/src/shared/public/heroskin.ts new file mode 100644 index 0000000..b0cb955 --- /dev/null +++ b/src/shared/public/heroskin.ts @@ -0,0 +1,21 @@ + +export default class HeroSkinShared { + + + /** + * 计算皮肤buff + * @param skid + * @param lv + * @returns {[string]: number} + * */ + static calcBuff(skid: string, lv: number): k_v { + let buff = {}; + let skin = G.gc.heroSkin[skid]; + for (let i = 1; i <= lv; i++) { + for (let k in G.gc.heroSkinLv[skin.colour][i].buff) { + buff[k] = (buff[k] || 0) + G.gc.heroSkinLv[skin.colour][i].buff[k]; + } + } + return buff; + } +} \ No newline at end of file From 1f36269ac9660772203a62744ce1206af13b38aa Mon Sep 17 00:00:00 2001 From: xichaoyin Date: Fri, 5 Jan 2024 21:03:47 +0800 Subject: [PATCH 06/17] fix: bug --- src/public/player.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/public/player.ts b/src/public/player.ts index dfbe3ff..3a8f49c 100644 --- a/src/public/player.ts +++ b/src/public/player.ts @@ -608,9 +608,9 @@ export class PlayerFun { } } if (Object.keys(upskin).length > 0) { - this.addAttr(call, Object.assign(heroskin, upskin)); + this.addAttr(call, { heroskin: Object.assign(heroskin, upskin) }); } - + // 皮肤存在转换为其他奖励 if (prize.length > 0) { this.sendPrize(call, prize); From d987b1143bdb37008d0cb76698314044ba65f1a0 Mon Sep 17 00:00:00 2001 From: xichaoyin Date: Fri, 5 Jan 2024 21:21:03 +0800 Subject: [PATCH 07/17] fix: bug --- src/api_s2c/heroskin/ApiUplv.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api_s2c/heroskin/ApiUplv.ts b/src/api_s2c/heroskin/ApiUplv.ts index b07f8c1..ded894a 100644 --- a/src/api_s2c/heroskin/ApiUplv.ts +++ b/src/api_s2c/heroskin/ApiUplv.ts @@ -11,7 +11,7 @@ export default async function (call: ApiCall) { } let cur_lv = skin[call.req.skid]; - let skinconf = G.gc.heroSkin[skin.skid]; + let skinconf = G.gc.heroSkin[call.req.skid]; let need = []; for (let i = 0; i < call.req.lv; i++) { From 0902ab6cd52bc94fce296cb427b0a9de3ff9e8a5 Mon Sep 17 00:00:00 2001 From: xichaoyin Date: Fri, 5 Jan 2024 21:26:42 +0800 Subject: [PATCH 08/17] fix: bug --- src/api_s2c/heroskin/ApiUplv.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api_s2c/heroskin/ApiUplv.ts b/src/api_s2c/heroskin/ApiUplv.ts index ded894a..714a1c3 100644 --- a/src/api_s2c/heroskin/ApiUplv.ts +++ b/src/api_s2c/heroskin/ApiUplv.ts @@ -30,7 +30,7 @@ export default async function (call: ApiCall) { skin[call.req.skid] = cur_lv + call.req.lv; // 更新skinlv - HeroSkinFun.updateHeroSkinLv(call, { [call.req.skid]: cur_lv + call.req.lv }); + await HeroSkinFun.updateHeroSkinLv(call, { [call.req.skid]: cur_lv + call.req.lv }); call.succ({}); } \ No newline at end of file From 220717f4a48faf0e673f77701075c14645f168ed Mon Sep 17 00:00:00 2001 From: xichaoyin Date: Sat, 6 Jan 2024 16:32:46 +0800 Subject: [PATCH 09/17] fix: bug --- src/api_s2c/heroskin/ApiUplv.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api_s2c/heroskin/ApiUplv.ts b/src/api_s2c/heroskin/ApiUplv.ts index 714a1c3..dc281e2 100644 --- a/src/api_s2c/heroskin/ApiUplv.ts +++ b/src/api_s2c/heroskin/ApiUplv.ts @@ -15,7 +15,7 @@ export default async function (call: ApiCall) { let need = []; for (let i = 0; i < call.req.lv; i++) { - need.concat( + need = need.concat( G.gc.heroSkinLv[skinconf.colour][cur_lv + i].need ) } From a4188eee24723048dbe60467c5c96805fa5cd636 Mon Sep 17 00:00:00 2001 From: xichaoyin Date: Mon, 8 Jan 2024 14:25:23 +0800 Subject: [PATCH 10/17] =?UTF-8?q?fix:=20=E7=9A=AE=E8=82=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api_s2c/heroskin/ApiTakeOff.ts | 2 +- src/api_s2c/heroskin/ApiWear.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api_s2c/heroskin/ApiTakeOff.ts b/src/api_s2c/heroskin/ApiTakeOff.ts index e097c0e..08621a9 100644 --- a/src/api_s2c/heroskin/ApiTakeOff.ts +++ b/src/api_s2c/heroskin/ApiTakeOff.ts @@ -14,7 +14,7 @@ export default async function (call: ApiCall) { return; } - HeroFun.changeHeroAttr(call, hero, { skin: "" }); + await HeroFun.changeHeroAttr(call, hero, { skin: "" }); call.succ({}); } \ No newline at end of file diff --git a/src/api_s2c/heroskin/ApiWear.ts b/src/api_s2c/heroskin/ApiWear.ts index 5c68082..2523361 100644 --- a/src/api_s2c/heroskin/ApiWear.ts +++ b/src/api_s2c/heroskin/ApiWear.ts @@ -22,7 +22,7 @@ export default async function (call: ApiCall) { return; } - HeroFun.changeHeroAttr(call, hero, { skin: call.req.skid }); + await HeroFun.changeHeroAttr(call, hero, { skin: call.req.skid }); call.succ({}); } \ No newline at end of file From e914f3f11bc689b3b5133af955e5ef791000da2a Mon Sep 17 00:00:00 2001 From: xichaoyin Date: Mon, 8 Jan 2024 20:37:46 +0800 Subject: [PATCH 11/17] =?UTF-8?q?feat:=20=E7=9A=AE=E8=82=A4=E5=8D=87?= =?UTF-8?q?=E7=BA=A7=E6=96=B0=E5=A2=9E=E6=9C=AC=E4=BD=93=E7=A2=8E=E7=89=87?= =?UTF-8?q?=E6=B6=88=E8=80=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api_s2c/heroskin/ApiUplv.ts | 2 ++ src/jsonType.ts | 1 + 2 files changed, 3 insertions(+) diff --git a/src/api_s2c/heroskin/ApiUplv.ts b/src/api_s2c/heroskin/ApiUplv.ts index dc281e2..667c448 100644 --- a/src/api_s2c/heroskin/ApiUplv.ts +++ b/src/api_s2c/heroskin/ApiUplv.ts @@ -18,6 +18,8 @@ export default async function (call: ApiCall) { need = need.concat( G.gc.heroSkinLv[skinconf.colour][cur_lv + i].need ) + let conf = G.gc.heroSkin[call.req.skid]; + need.push({ a: "item", "t": conf.heroId, "n": G.gc.heroSkinLv[skinconf.colour][cur_lv + i].suipian }); } // 检测消耗 diff --git a/src/jsonType.ts b/src/jsonType.ts index 4e8f553..bd9211a 100644 --- a/src/jsonType.ts +++ b/src/jsonType.ts @@ -1813,6 +1813,7 @@ type gc_hero_skin = { type gc_hero_skin_lv = { [colour: string]: { [lv: string]: { + suipian: number buff: { [k: string]: number } need: { a: string, t: string, n: number }[]; } From 748da2a3e9a0c4068196a79bd0c82184cfd8c924 Mon Sep 17 00:00:00 2001 From: yushunrui <364203175@qq.com> Date: Thu, 11 Jan 2024 20:49:53 +0800 Subject: [PATCH 12/17] =?UTF-8?q?fix:=E5=A2=9E=E5=8A=A0=E8=8B=B1=E9=9B=84?= =?UTF-8?q?=E7=9A=AE=E8=82=A4=E6=8F=90=E4=BE=9B=E7=9A=84=E5=A4=B4=E5=83=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api_s2c/user/ApiChangeInfo.ts | 3 ++- src/shared/public/user.ts | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/api_s2c/user/ApiChangeInfo.ts b/src/api_s2c/user/ApiChangeInfo.ts index 5bfac14..2bc00b3 100644 --- a/src/api_s2c/user/ApiChangeInfo.ts +++ b/src/api_s2c/user/ApiChangeInfo.ts @@ -20,7 +20,8 @@ export default async function (call: ApiCall) { vip: call.conn.gud.vip, lsyx: call.conn.lshd.hero, model: call.conn.gud.model, - active: active + active: active, + heroskin: call.conn.gud.heroskin }); if (!isMeet && call.req.type != 'headFrame' && call.req.type != 'chatFrame') return call.error(globalThis.lng.user_1); diff --git a/src/shared/public/user.ts b/src/shared/public/user.ts index fe19f59..87e7ba8 100644 --- a/src/shared/public/user.ts +++ b/src/shared/public/user.ts @@ -24,7 +24,7 @@ export class UserShared { * 判断头像之类是否激活 * @param id 请使用 UserShared.getInfo 转化后的id */ - static chechIsActive(fmtId: string, collection: Partial<{ lv: number, vip: number, lsyx: k_v, model: k_v, active: k_v; }>) { + static chechIsActive(fmtId: string, collection: Partial<{ lv: number, vip: number, lsyx: k_v, model: k_v, active: k_v, heroskin: k_v; }>) { const [type, id] = fmtId.split('_'); const jsonName = 'player' + type.slice(0, 1).toLocaleUpperCase() + type.slice(1); @@ -37,6 +37,7 @@ export class UserShared { // else if (conf.cond[0] == 'time') return collection.active[fmtId] == -1 || collection.active[fmtId] > G.time; else if (conf.cond[0] == 'time') return conf.cond[1] == -1 || collection.active?.[fmtId] > G.time; else if (conf.cond[0] == 'model') return Object.values(collection.model).find(i => i.id == conf.cond[1]); + else if (conf.cond[0] == 'heroskin') return collection.heroskin[conf.cond[1]]; else return false; } } \ No newline at end of file From 9484a696b38c00def131471967580996f3cfc610 Mon Sep 17 00:00:00 2001 From: yushunrui <364203175@qq.com> Date: Thu, 11 Jan 2024 21:05:52 +0800 Subject: [PATCH 13/17] =?UTF-8?q?fix:=E6=96=B0=E5=A2=9E=E5=A4=B4=E5=83=8F?= =?UTF-8?q?=E6=BF=80=E6=B4=BB=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/shared/public/user.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/public/user.ts b/src/shared/public/user.ts index 87e7ba8..5310bab 100644 --- a/src/shared/public/user.ts +++ b/src/shared/public/user.ts @@ -37,7 +37,7 @@ export class UserShared { // else if (conf.cond[0] == 'time') return collection.active[fmtId] == -1 || collection.active[fmtId] > G.time; else if (conf.cond[0] == 'time') return conf.cond[1] == -1 || collection.active?.[fmtId] > G.time; else if (conf.cond[0] == 'model') return Object.values(collection.model).find(i => i.id == conf.cond[1]); - else if (conf.cond[0] == 'heroskin') return collection.heroskin[conf.cond[1]]; + else if (conf.cond[0] == 'heroskin') return conf.cond[1] in collection.heroskin; else return false; } } \ No newline at end of file From afb4c24322bdd7e027230fae3cc4fdbc77c7f17e Mon Sep 17 00:00:00 2001 From: xichaoyin Date: Thu, 11 Jan 2024 22:36:38 +0800 Subject: [PATCH 14/17] =?UTF-8?q?feat:=E7=9A=AE=E8=82=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/public/player.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/public/player.ts b/src/public/player.ts index 3a8f49c..498f8f9 100644 --- a/src/public/player.ts +++ b/src/public/player.ts @@ -608,12 +608,12 @@ export class PlayerFun { } } if (Object.keys(upskin).length > 0) { - this.addAttr(call, { heroskin: Object.assign(heroskin, upskin) }); + await this.addAttr(call, { heroskin: Object.assign(heroskin, upskin) }); } // 皮肤存在转换为其他奖励 if (prize.length > 0) { - this.sendPrize(call, prize); + await this.sendPrize(call, prize); } } From 4e12d706fe90518bee5461bd2443e10f373ed215 Mon Sep 17 00:00:00 2001 From: xichaoyin Date: Thu, 11 Jan 2024 22:43:40 +0800 Subject: [PATCH 15/17] =?UTF-8?q?feat=EF=BC=9A=E7=9A=AE=E8=82=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/public/player.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/public/player.ts b/src/public/player.ts index 498f8f9..87e3d43 100644 --- a/src/public/player.ts +++ b/src/public/player.ts @@ -604,9 +604,10 @@ export class PlayerFun { if (!heroskin[p.t]) { upskin[p.t] = 1; } else { - prize.concat(G.gc.heroSkin[p.t].zhuanhuan); + prize = prize.concat(G.gc.heroSkin[p.t].zhuanhuan); } } + if (Object.keys(upskin).length > 0) { await this.addAttr(call, { heroskin: Object.assign(heroskin, upskin) }); } From 002368366976fd9e368890ecac39a841a54dcf68 Mon Sep 17 00:00:00 2001 From: xichaoyin Date: Thu, 11 Jan 2024 23:01:07 +0800 Subject: [PATCH 16/17] =?UTF-8?q?feat:=E7=9A=AE=E8=82=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/shared/protocols/hero/PtlGetList.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/protocols/hero/PtlGetList.ts b/src/shared/protocols/hero/PtlGetList.ts index 76a0d24..ecd9ac2 100644 --- a/src/shared/protocols/hero/PtlGetList.ts +++ b/src/shared/protocols/hero/PtlGetList.ts @@ -72,5 +72,5 @@ type heroAddKey = { [pos: string]: string; }; /**皮肤*/ - skin: string; + skin: string | number; }; \ No newline at end of file From 2bc993ddd33dcdf27906154e856903022403fa9b Mon Sep 17 00:00:00 2001 From: xichaoyin Date: Thu, 11 Jan 2024 23:29:23 +0800 Subject: [PATCH 17/17] =?UTF-8?q?feat:=E7=9A=AE=E8=82=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/shared/public/heroskin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/public/heroskin.ts b/src/shared/public/heroskin.ts index b0cb955..bb878e8 100644 --- a/src/shared/public/heroskin.ts +++ b/src/shared/public/heroskin.ts @@ -12,7 +12,7 @@ export default class HeroSkinShared { let buff = {}; let skin = G.gc.heroSkin[skid]; for (let i = 1; i <= lv; i++) { - for (let k in G.gc.heroSkinLv[skin.colour][i].buff) { + for (let k in (G.gc.heroSkinLv[skin.colour][i]?.buff || {})) { buff[k] = (buff[k] || 0) + G.gc.heroSkinLv[skin.colour][i].buff[k]; } }